/***************************************
*General
****************************************/


body {
    font-family: "Lato", sans-serif;
    color: #D9D9D9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    position: relative;
    font-optical-sizing: auto;
    font-style: normal;
    overflow-x: hidden;
}

.sect-title {
    position: relative;
}

.sect-number.text-right {
    display: flex;
    justify-content: end;
}

.sect-number {
    display: inline-flex;
    position: relative;
}

.sect-number span {
    color: rgba(255, 255, 255, 0.03);
    font-family: "Noto Sans", sans-serif;
    font-size: 150px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.806em;
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
    display: inline-block;
}

.sect-number .line {
    position: absolute;
    background: #3432C9;
    width: 125px;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin-top: 7px;
}

.sect-number .line:before {
    width: 7px;
    height: 7px;
    content: '';
    position: absolute;
    right: -7px;
    top: -3px;
    background: #3432C9;
    border-radius: 50%;
}

.sect-title h1,
.sect-title .h1,
.page-title {
    font-family: "Playfair", serif;
    color: #FFF;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.235em;
    margin-bottom: 36px;
    position: relative;

}

.sect-title h2,
.sect-title .h2,
.sect-title .bloc-title {
    font-family: "Playfair", serif;
    color: #FFF;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.235em;
    margin-bottom: 53px;
    position: relative;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-lines:before,
.grid-lines:after {
    position: absolute;
    top: 0;
    left: 33.3333%;
    width: 1px;
    height: 100%;
    content: '';
    border-right: 1px solid rgba(74, 73, 73, 0.30);
}

.grid-lines:after {
    left: 66.6666%;
}

.grid-lines.color--1:before,
.grid-lines.color--1:after {
    border-color: rgba(255, 255, 255, 0.3);
}

.img-masking {
    -webkit-mask-image: url(/images/img-masking.png);
    mask-image: url(/images/img-masking.png);
    mask-repeat: no-repeat;
    mask-size: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/** Animation **/

@keyframes textrotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

html:not(.no-js) [data-aos=fade-up] {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
}

html:not(.no-js) [data-aos=fade-right] {
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
}

html:not(.no-js) [data-aos=fade-left] {
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
}


/* Preloader */
.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.svg);
    background-size: 140px;
}


/** Slider **/

.slide-controls .swiper-btn-prev,
.slide-controls .swiper-btn-next {
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    position: relative;
    align-items: center;
    justify-content: center;
    background: none;
    min-height: auto;
    height: auto;
    width: auto;
    color: inherit;
    display: inline-flex;
    font: inherit;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: none;
}

.slide-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.slide-controls .swiper-btn-prev,
.slide-controls .swiper-btn-next {
    width: 50px;
    height: 50px;
    display: flex;
    background: none;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 0;
    border: 1px solid #FFF;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    transform: scale(1);
}

.slide-controls .swiper-btn-prev svg path,
.slide-controls .swiper-btn-next svg path {
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.swiper-btn-next:after,
.swiper-btn-prev:after {
    display: none;
}

.slide-controls .swiper-btn-prev:hover,
.slide-controls .swiper-btn-next:hover {
    background-color: transparent;
    transform: scale(0.9);
    border-color: #3432C9;
}

.slide-controls .swiper-btn-prev:hover svg path,
.slide-controls .swiper-btn-next:hover svg path {
    stroke: #3432C9 !important;
}

.slide-controls.swiper-pagination-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 0;
}

.slide-controls.swiper-pagination-bullets .swiper-pagination-bullet {
    width: auto;
    height: 2px;
    margin: 0 !important;
    flex: 1;
    border-radius: 0;
    background-color: #B3B3B3;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    position: relative;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #C2181A;
}


/** Colors **/

.color--1 {
    color: #fff !important;
}

.color--2 {
    color: #3432C9 !important;
}

.color--3 {
    color: #07071A !important;
}

.color--4 {
    color: #0e1421 !important;
}

.color--5 {
    color: #2a2525 !important;
}

.color--6 {
    color: #000 !important;
}

.color--7 {
    color: #F9E8E8 !important;
}


/** Background **/

.background--1 {
    background-color: #fff !important;
}

.background--2 {
    background-color: #3432C9 !important;
}

.background--3 {
    background-color: #07071A !important;
}

.background--4 {
    background-color: #0e1421 !important;
}

.background--5 {
    background-color: #2a2525 !important;
}

.background--6 {
    background-color: #000 !important;
}

.background--7 {
    background-color: #F9E8E8 !important;
}


/** Socials **/

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    text-decoration: none !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #FFF;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.social-link:hover svg path {
    stroke: #3432C9 !important;
}

.social-link:not(:last-child) {
    margin-right: 15px;
}

.social-txt {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    margin-right: 18px;
}

.social-links .social-link:hover {
    border-color: #3432C9;
}

.social-links {
    display: flex;
    align-items: center;
}


/** Variables **/

p {
    margin-bottom: 1.625em;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

figure {
    margin: 0;
}

a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

.form-group {
    margin-bottom: 25px;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

strong,
b {
    font-weight: 700;
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

.img-resp,
img {
    max-width: 100%;
    height: auto;
}

*::-moz-selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

.form-control,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
select {
    font-family: "Lato", sans-serif;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    vertical-align: middle;
    width: 100%;
    text-transform: inherit;
    outline: none;
    height: 52px;
    padding: 13px 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #FFF;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
}

input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #FFF !important;
}

input::placeholder {
    /* Chrome, Firefox, Opera, Safari 110.1+ */
    color: #FFF !important;
    opacity: 1;
    /* Firefox */
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #FFF !important;
}

textarea::placeholder {
    color: #FFF !important;
}


.btn-1,
button,
input[type="submit"],
input[type="button"] {
    font-family: "Playfair", serif;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.625em;
    letter-spacing: normal;
    text-transform: none;
    padding: 8px 30px;
    text-align: center;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    outline: none !important;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-shadow: none;
    border: 1px solid #FFF;
    border-radius: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    z-index: 1;
    height: 42px;
    overflow: hidden;
}

.btn-1:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #fff;
    z-index: -1;
}

.btn-1:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.btn-1 img,
.btn-1 svg {
    margin-left: 8px;
}

.btn-1:hover,
.btn-1:focus,
button:hover,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
    background-color: transparent;
    color: #111;
    outline: none;
}

.btn-1:hover svg path {
    stroke: #111 !important;
}

.text-align-last {
    -moz-text-align-last: center;
    text-align-last: center;
}

.text-hyphens {
    -ms-hyphens: auto;
    hyphens: auto;
}

.bg-gradient {
    background: linear-gradient(90deg, #07071A 0%, #3432C9 100%);
}

.overlay {
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    opacity: 0.4;
}

.opacity-20 {
    opacity: 0.20;
}

.opacity-50 {
    opacity: 0.70;
}

.border-0 {
    border: 0;
}

.offset-right-1 {
    margin-right: 8.333333%;
}

.width-50 {
    width: 50%;
}

.flex--1 {
    -ms-flex: 1;
    flex: 1;
}

.z-index--1 {
    z-index: 1 !important;
}

.z-index--2 {
    z-index: 2 !important;
}

.z-index--auto {
    z-index: auto !important;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.text-normal {
    text-transform: none !important;
}

.text-underline {
    text-decoration: underline !important;
}

.text-transform-none {
    text-transform: none !important;
}

.margin-b-30px {
    margin-bottom: 30px;
}

.margin-b-40px {
    margin-bottom: 40px;
}

.margin-l-neg15px {
    margin-left: -15px;
}

.margin-r-neg15px {
    margin-right: -15px;
}

.margin-b-64px {
    margin-bottom: 64px;
}

.margin-t-64px {
    margin-top: 64px;
}

.border-radius-24px {
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
}

.v-middle {
    transform: translateY(-50%);
    top: 50%;
}

.h-middle {
    transform: translateX(-50%);
    left: 50%;
}

.hv-middle {
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.obj-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.obj-fit-pos-t {
    object-position: top;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-pos-tc {
    background-position: top center;
}

.bg-pos-tl {
    background-position: top left;
}

.bg-pos-bl {
    background-position: bottom left;
}

.bg-pos-tr {
    background-position: top right;
}

.bg-pos-br {
    background-position: bottom right;
}

.bg-pos-center {
    background-position: center center;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.top-0 {
    top: 0 !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.left-0 {
    left: 0 !important;
}

.right-0 {
    right: 0 !important;
}

.width-50 {
    width: 50%;
}

.gap-30px {
    gap: 30px;
}

.column-gap-30px {
    -moz-column-gap: 30px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
}

.column-count-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.txt-stroke {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    color: transparent;
}

/** Transition **/

img,
svg,
svg path {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}


/** Extra Outer **/

body .page {
    position: relative;
    background: #0E1421;
    overflow: hidden;
}

body .site-main {
    background: #0E1421;
}


/***************************************
* Header
****************************************/
.site-navigation__menu,
.site-navigation__inner,
.main-header .site-navigation .menu ul li,
.site-header-menu__inner,
.main-header__wrap {
    position: relative;
}

.main-menu-toggle input[type=checkbox],
.main-menu-toggle {
    display: none;
}

.site-header-menu {
    position: relative;
    z-index: 1;
}

.main-header {
    z-index: 999;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: none;
    position: absolute;
    width: 100%;
}

.main-header .site-navigation .menu>ul>li>a {
    color: #FFF;
    font-family: "Playfair", serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    display: flex;
    text-decoration: none;
    text-align: center;
    align-items: center;
}

.main-header .site-navigation .menu ul ul>li a {
    color: #111;
    font-family: "Playfair", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    display: block;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
}

.main-header .site-navigation .menu>ul>li.active>a,
.main-header .site-navigation .menu>ul>li:hover>a,
.main-header .site-navigation .menu>ul>li.hover>a {
    color: #fff;
}

.main-header .site-navigation .menu ul ul>li.active>a,
.main-header .site-navigation .menu ul ul>li:hover>a,
.main-header .site-navigation .menu ul ul>li.hover>a {
    color: #3432C9;
}

.site-navigation .site-branding {
    position: relative;
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 45px;
}


/** Other links **/

.main-header .other-links {
    display: flex;
    align-items: center;
    gap: 37px;
}

.main-header .other-links a {
    font-family: "Playfair", serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 70px;
    padding: 20px 23px;
}

.main-header .other-links a.menu__client-area-link {
    padding: 10px;
    width: 70px;
    height: 70px;
}

.main-header .other-links asvg path {
    fill: #0E1421 !important;
}

.main-header .other-links a.menu__client-area-link svg {
    margin: 0;
}


/** Header top **/

.main-header__top {}

.main-header__top .other-links {
    border-bottom: 1px solid #fff;
    padding: 10px 0;
    position: relative;
    display: flex;
    justify-content: end;
}

.main-header__top .other-links a {
    font-size: 18px;
    line-height: 1.25em;
    padding: 7px 30px;
    height: 42px;
}

.main-header__top .other-links a.menu__client-area-link {
    padding: 10px;
    width: 42px;
    height: 42px;
}


/***************************************
* Footer
****************************************/

.footer {
    position: relative;
}

.footer-title {
    color: #3432C9;
    font-family: "Playfair", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
    margin-bottom: 17px;
}


/***************************************
* Bloc text / image
****************************************/

.bloc-text {
    font-family: "Lato", sans-serif;
    color: #D9D9D9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    position: relative;
}

.bloc-text p:last-of-type {
    margin-bottom: 0;
}

.bloc-text ul li {
    position: relative;
    padding-left: 23px;
}

.bloc-text ul li:not(:last-child) {
    margin-bottom: 10px;
}

.bloc-text ul li:before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #3432C9;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

.bloc-text h2,
.bloc-text .h2 {
    font-family: "Playfair", serif;
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.235em;
    margin-bottom: 10px;
    position: relative;
}

.page .font-size-20px {
    font-size: 20px;
    line-height: normal;
}

.bloc-text p img,
.bloc-text h2 img {
    display: none;
}