/* -------------------------------------------------
	
	01 . BASE
	02 . WRAPPER
	03 . HEADER
	04 . NAV
	05 . FOOTER
	06 . HERO
	07 . ABOUT
	08 . PARALLAX
	09 . TOOL
	10 . SERVICES
	11 . PORTFOLIO
	12 . CONTACT
	13 . ANIMATIONS
	14 . BACK TO TOP
	15 . BUTTONS
	16 . MARQUEE
	17 . PRELOADER
	18 . FAQ
	19 . xxxxxx
	20 . xxxxxx
	
------------------------------------------------- */

@import url("libs/animate.css");
@import url("libs/icomoon.css");
@import url("libs/kenburns.css");

:root {
    --font-text: "Manrope", sans-serif;
    --font-title: "Cal Sans", sans-serif;

    --color-dark: #1f327b;
    --color-light: #f9fafb;
    --color-primary-1: #388b8e;
    --color-primary-2: #1f327b;
    --color-primary-3: #f9a185;

    --color-grey: #999dad;
    --color-grey-xlight: #e4e5e9;
    --color-grey-light: #cbcdd5;
    --color-grey-dark: #6d738a;

    --line: rgba(255, 255, 255, 0.1);

    --site-width: 1470px;
    --site-width-inner: 1440px;
}

/* DARK */
html[data-theme="dark"] {
    --color-dark: #1f327b;
    --color-light: #f9fafb;
}

/* LIGHT */
html[data-theme="light"] {
    --color-dark: #f9fafb;
    --color-light: #1f327b;

    --color-grey-light: #63687c;
    --color-grey-xlight: #63687c;

    --line: rgba(0, 0, 0, 0.1);
}

/* ////////////////////////////////////////////////////////////////////////////

    01 . BASE

//////////////////////////////////////////////////////////////////////////// */

html {
    margin-right: 0 !important;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* Fix pour le bounce scroll iOS */
    overscroll-behavior-y: none;
    height: 100%;
}

body {
    position: relative;
    color: var(--color-light);
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    height: 100%;
    overflow-x: hidden !important;
    /* Fix pour le bounce scroll iOS */
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility; */
}
/* body.open {
    overflow:hidden;
} */

::selection {
    color: var(--color-dark);
}
::-moz-selection {
    color: var(--color-dark);
}
::selection {
    background-color: var(--color-light);
}
::-moz-selection {
    background-color: var(--color-light);
}

/* SCROLLBAR */
body::-webkit-scrollbar {
    width: 10px;
    background: #ddd;
}
body::-webkit-scrollbar-thumb {
    background: var(--color-primary-1);
    border-radius: 10px;
}

/* TEXTE */
br {
    font-size: 0;
    line-height: 0;
}
strong,
b {
    font-weight: 700 !important;
}

/* IMAGE */
img {
    position: relative;
    max-width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

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

/* PARAGRAPHES */
p {
    margin: 0 0 10px 0;
    padding: 0;
}
p:last-child {
    margin: 0;
}

.btn-link:focus,
.btn-link:hover {
    text-decoration: none;
}

/* SVG */
svg,
svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* LINK */
a {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    color: inherit;
}
a:focus,
.no-touch a:hover {
    text-decoration: none;
    outline: 0;
}
.link {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: inherit;
}
.no-touch .link:hover {
    color: var(--color-primary-1) !important;
}

/* TITLE */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--font-title);
    font-weight: 400;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
.h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: clamp(40px, 5.3vw, 83px);
}
h2,
.h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: clamp(34px, 4.5vw, 62px);
}
h3,
.h3 {
    font-size: clamp(26px, 4vw, 40px);
    line-height: clamp(34px, 4.3vw, 52px);
}
h4,
.h4 {
    font-size: clamp(22px, 3.5vw, 32px);
    line-height: clamp(30px, 3.8vw, 42px);
}
h5,
.h5 {
    font-size: clamp(18px, 2.8vw, 24px);
    line-height: clamp(22px, 3vw, 32px);
}
h6,
.h6 {
    font-size: clamp(18px, 2vw, 20px);
    line-height: clamp(24px, 2.5vw, 27px);
}

/* ////////////////////////////////////////////////////////////////////////////

    02 . WRAPPER

//////////////////////////////////////////////////////////////////////////// */

.wrapper {
    margin-top: -25px;
    background-color: var(--color-dark);
    overflow-x: clip;
}

.section {
    padding: 150px 15px;
    overflow: hidden;
}
.section_inner {
    max-width: var(--site-width-inner);
    margin: 0 auto;
    padding: 0 15px;
}

/* TITLE 1 */
.section_title {
    margin: 0 0 75px 0;
}
.section_title h2 {
    font-size: 48px;
    line-height: 1.3;
}

/* TITLE 2 */
.section_title-2 {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 50px 0;
}
.section_title-2 h2 {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section_title-2 div {
    display: flex;
    align-items: center;
    gap: 5px;
}
.section_title-2 div:first-child {
    margin: 0 0 0 24px;
}
.section_title-2 .cycle-line {
    position: absolute;
    border: 1px solid var(--line);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.section_title-2 div:first-child i {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary-1);
    transform: rotate(90deg);
}

@media only screen and (max-width: 992px) {
    .section {
        max-width: var(--site-width);
        padding: 75px 0;
    }
    .section_title {
        margin: 0 0 50px 0;
    }
    .section_title h2 {
        font-size: 36px;
    }
    .section_title-2 h2 {
        font-size: 14px;
    }
    .section_title-2 div:first-child {
        margin: 0 0 0 20px;
    }
    .section_title-2 .cycle-line {
        width: 40px;
        height: 40px;
    }
    .section_title-2 div:first-child i {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .sm-hide {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .md-hide {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .lg-hide {
        display: none !important;
    }
}
@media (max-width: 1199px) {
    .xl-hide {
        display: none !important;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    03 . HEADER

//////////////////////////////////////////////////////////////////////////// */

.header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header.is-fixed {
    padding: 15px 0;
    background-color: #1f327b;
}
.header.is-fixed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.2);
}
/* html[data-theme='light'] .header.is-fixed::before {
    background-color: rgb(0,0,0,0);
    box-shadow: rgba(0,0,0,.1) 0px 10px 10px -10px;
} */
.header_wrap {
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .header {
        padding: 10px 0;
        background-color: #1f327b;
    }
    .header.is-fixed {
        padding: 10px 0;
    }
    .header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0, 0, 0, 0.2);
    }
    /* html[data-theme='light'] .header::before {
        display: none;
    } */
}

/* LEFT */
.header_left {
    position: relative;
}
.header_left img {
    height: 40px;
    filter: invert(1) brightness(1000%);
    transition: height 0.25s;
}
.header.is-fixed .header_left img {
    height: 34px;
}

@media only screen and (max-width: 992px) {
    .header_left img {
        height: 26px;
    }
    .header.is-fixed .header_left img {
        height: 26px;
    }
}

/* RIGHT */
.header_right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_right a:not(.side-toggle) {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    font-family: var(--font-title);
    font-size: 16px;
    line-height: 1;
    border-radius: 48px;
    background-color: #f9fafb;
    color: #1f327b;
    transition: background-color 0.25s, color 0.25s;
}
.no-touch .header_right a:hover {
    background-color: #1f327b !important;
    color: #f9fafb !important;
}

.header_right a.link {
    background-color: var(--color-primary-1);
    color: #f9fafb;
}
.no-touch .header_right a.link:hover {
    background-color: #1f327b !important;
    color: #f9fafb !important;
}

.header_right a.lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 48px;
    height: 48px;
    padding: 0;
    font-family: var(--font-title);
    font-size: 12px;
    line-height: 1;
    border: none;
    border-radius: 50%;
    border: 1px solid var(--color-grey-dark);
    background-color: transparent;
    color: #cbcdd5;
    transition: color 0.25s, border 0.25s;
}
.no-touch .header_right a.lang:hover {
    background-color: transparent !important;
    color: #f9fafb !important;
    border-color: #f9fafb;
}

/* THEME SWITCH */
.header_theme {
    position: relative;
    display: flex;
    align-items: center;
    width: 48px;
    height: 48px;
}
#theme-toggle {
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
}
#theme-toggle + label {
    content: "";
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-grey-dark);
    transition: all 0.25s ease-in-out;
}
.no-touch #theme-toggle:hover + label {
    border-color: #f9fafb;
}
#theme-toggle + label::before {
    position: absolute;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-family: "Ionicons";
    content: "\f4b7";
    font-size: 24px;
    color: #cbcdd5;
    transition: color 0.2s;
}
#theme-toggle:not(:checked) + label::before {
    content: "\f4b7";
    font-size: 24px;
}
#theme-toggle:checked + label::before {
    content: "\f468";
    font-size: 26px;
}
.no-touch #theme-toggle:hover + label::before {
    color: #f9fafb;
}

@media only screen and (max-width: 992px) {
    .header_theme {
        width: 45px;
        height: 45px;
    }
    #theme-toggle + label::before {
        font-size: 22px;
    }
    #theme-toggle:not(:checked) + label::before {
        font-size: 22px;
    }
    #theme-toggle:checked + label::before {
        font-size: 24px;
    }
}

/* BURGER ICON */
.side-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    border: 1px solid var(--color-grey-dark);
    border-radius: 45px;
    transition: border 0.25s;
}
.side-toggle.open,
.no-touch a.side-toggle:hover {
    background-color: transparent !important;
    border-color: #f9fafb;
}
.side-toggle span {
    background-color: transparent;
    content: "";
    display: block;
    height: 2px;
    position: relative;
    transform-origin: 50% 50%;
    transition: none;
    width: 22px;
    border-radius: 2em;
}
.side-toggle span:before,
.side-toggle span:after {
    background-color: #cbcdd5;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transform-origin: 50% 50%;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
        transform 0.2s linear;
    width: 22px;
    border-radius: 2em;
}
.no-touch a.side-toggle:hover span:before,
.no-touch a.side-toggle:hover span:after {
    background-color: #f9fafb !important;
}
.side-toggle span:before {
    top: 3px;
}
.side-toggle span:after {
    top: -3px;
}
.side-toggle.open span {
    background-color: transparent;
    transition: background-color 0.2s ease-out;
}
.side-toggle.open span:before,
.side-toggle.open span:after {
    transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
}
.side-toggle.open span:before {
    top: 0;
    transform: rotate3d(0, 0, 1, -45deg);
}
.side-toggle.open span:after {
    top: 0;
    transform: rotate3d(0, 0, 1, 45deg);
}

@media only screen and (max-width: 992px) {
    .header_wrap {
        padding: 0 15px;
    }
    .header_right {
        gap: 5px;
    }
    .header_right a:not(.side-toggle) {
        justify-content: center;
        height: 45px;
        width: 45px;
        border-radius: 45px;
        padding: 0;
        font-size: 19px;
    }
    .header_right a:not(.side-toggle) span {
        display: none;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    04 . NAVIGATION

//////////////////////////////////////////////////////////////////////////// */

.side_menu {
    position: fixed;
    z-index: 999;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #1f327b none repeat scroll 0 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
}
.side_menu ::-webkit-scrollbar {
    display: none;
}
.side_menu.show {
    opacity: 1;
    transform: translateX(0);
}
.side_menu-inner {
}
.side_menu-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

/* MENU BODY */
.side_menu .menu_body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 50px;
    height: 100%;
    overflow: hidden;
}

.nav-menu-img {
    overflow: hidden;
    display: flex;
    width: auto;
    border-radius: 20px;
    height: calc(100vh - 200px);
    margin: 30px 0 0 0;
}
.nav-menu-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.side_menu .nav-menu-list {
    display: grid;
    gap: 20px;
    margin: 40px 0 0 0;
}
.nav-menu-list a {
    font-family: var(--font-title);
    font-size: clamp(46px, 8vw, 72px);
    line-height: clamp(38px, 6vw, 76px);
    color: #f9fafb;
    transition: color 0.25s;
}
.nav-menu-list a.active,
.no-touch .nav-menu-list a:hover {
    color: var(--color-primary-1);
}
.nav-menu-list li:last-child {
    display: none;
}

/* MENU FOOTER */
.menu_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 15px 30px;
}
.menu_footer-left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}
.menu_footer-left a {
    font-size: 18px;
    line-height: 1.05;
    font-weight: 500;
    color: #f9fafb;
    /* flex: 1 0 auto; */
}
.menu_footer-left a[href^="tel"] {
    flex: 1 0 auto;
}

.menu_footer-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.menu_footer-right .list-social {
    margin: 0 0 0 auto;
}
.menu_footer-right .list-social a {
    height: 50px;
    width: 50px;
    font-size: 19px;
    background-color: rgb(255, 255, 255, 0.1);
    color: #f9fafb;
}
.menu_footer-right .list-social a:hover {
    background-color: #f9fafb;
    color: var(--color-primary-2);
}

@media only screen and (max-width: 992px) {
    .nav-menu-img {
        display: none;
    }
    .side_menu .nav-menu-list {
        gap: 20px;
        margin: 0;
    }
    .nav-menu-list li:last-child {
        display: flex;
    }
    .menu_footer {
        flex-direction: column;
        padding: 0 15px 15px 15px;
    }
    .menu_footer-left {
        display: none;
    }
    .menu_footer-right {
        gap: 15px;
    }
    .menu_footer-right a.lang {
        font-size: 12px;
    }
    .menu_footer-right .list-social a {
        height: 45px;
        width: 45px;
        font-size: 17px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    05 . FOOTER

//////////////////////////////////////////////////////////////////////////// */

.footer {
    position: relative;
    background-color: rgb(0, 0, 0, 0.2);
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.2);
}
html[data-theme="light"] .footer::before {
    background-color: rgb(0, 0, 0, 0.03);
}
.footer_inner {
    padding: 0 30px;
}

/* -------------------------------------------
    TOP
------------------------------------------- */
.footer_top {
    display: flex;
    justify-content: space-between;
}

.footer_top-item {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 25px;
    padding: 75px 0;
}
.footer_top-item::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    width: 1px;
    height: calc(100% - 60px);
    background-color: var(--line);
}
.footer_top-item:last-child::after {
    display: none;
}
.footer_top-item:not(:first-child) {
    padding: 75px 45px;
}
.footer_top-item:last-child {
    padding: 75px 0 75px 45px;
}

.footer_top-item h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: normal;
}

/* DESC */
.footer_top-item.desc {
    flex: 2;
    align-items: flex-start;
}
.footer_top-item.desc img {
    height: 28px;
    filter: invert(1) brightness(1000%);
}
html[data-theme="light"] .footer_top-item.desc img {
    filter: none;
}

/* CONTACT */
.footer_top-item.contact {
    flex: 2;
    display: flex;
    flex-direction: column;
}
.footer_top-item.contact h3 {
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    margin: 0 0 5px 0;
}
.footer_top-item.contact a {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* LINK */
.footer_top-item.linkfoot {
}
.footer_top-item.linkfoot ul {
    list-style: none;
    margin: 0 !important;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* SOCIAL */
.footer_top-item.social {
}

.list-social {
    display: flex;
    gap: 5px;
}
.list-social a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-light);
    -webkit-transition: background-color 0.25s ease, color.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease;
}
.list-social a:hover {
    background-color: var(--color-primary-1);
    color: var(--color-dark);
}
html[data-theme="light"] .list-social a {
    background-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .list-social a:hover {
    background-color: var(--color-primary-1);
}

/* -------------------------------------------
    BOTTOM
------------------------------------------- */
.footer .footer_bottom {
    border-top: 1px solid var(--line);
    padding: 30px 0 25px 0;
    opacity: 0.65;
}

/* COPYRIGHT */
.footer_bottom-copy {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    font-size: 14px;
    line-height: 1.1;
}

@media only screen and (max-width: 992px) {
    .footer_inner {
        padding: 50px 15px 0 15px;
    }
    .footer_top {
        flex-direction: column;
    }
    .footer_top-item {
        gap: 20px;
        padding: 25px 0 !important;
    }
    .footer_top-item:first-child {
        padding: 0 0 25px 0 !important;
    }
    .footer_top-item:last-child {
        padding: 25px 0 0 0 !important;
    }
    .footer_top-item::after {
        content: "";
        position: absolute;
        top: inherit;
        right: inherit;
        bottom: 0;
        left: 0;
        width: calc(100%);
        height: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }
    .footer_top-item:last-child::after {
        display: none;
    }
    .footer_bottom {
        margin: 25px 0 0 0;
    }
    .footer_bottom-copy {
        flex-direction: column;
        gap: 0;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    06 . HERO

//////////////////////////////////////////////////////////////////////////// */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}
.hero-banner {
    position: relative;
    height: 100vh;
}

/* CONTENT */
.hero-banner .content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 0 30px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: var(--site-width);
    margin: 0 auto;
}

@media only screen and (max-width: 992px) {
    .hero-banner .content-wrap {
        padding: 0 15px;
    }
}

/* BTN */
.hero-banner .btn_wrapper {
    position: relative;
    display: flex;
    margin: 0 auto 60px auto;
}
.hero-banner .btn-view-all {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    border: 1px solid rgb(255, 255, 255, 0.3);
    border-radius: 50%;
    flex-direction: column;
    z-index: 4;
    transform: scale(1.15);
    transition: border 0.3s ease;
}
.no-touch .btn-view-all:hover {
    border-color: var(--color-primary-1);
}
.hero-banner .btn-view-all .text {
    margin: 10px 0 8px 0;
    z-index: 2;
    position: relative;
    font-size: 23px;
    line-height: 1.25;
}
.hero-banner .btn-view-all i {
    font-size: 36px;
    color: #f9fafb;
}
.hero-banner .btn-view-all .text,
.hero-banner .btn-view-all i {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.no-touch .hero-banner .btn-view-all:hover .text,
.no-touch .hero-banner .btn-view-all:hover i {
    color: #f9fafb;
}

@media only screen and (max-width: 992px) {
    .hero-banner {
        padding-bottom: 0;
    }
    .hero-banner .content-wrap {
        z-index: 2;
    }
    .hero-banner .btn_wrapper {
        margin: 0 auto 40px auto;
    }
    .hero-banner .btn-view-all {
        transform: scale(0.9);
    }
    /* .hero-banner .btn-view-all {
        width: 140px;
        height: 140px;
    }
    .hero-banner .btn-view-all .text {
        font-size: 19px;
    }
    .hero-banner .btn-view-all i {
        font-size: 30px;
    } */
}

/* ////////////////////////////////////////////////////////////////////////////

    07 . ABOUT

//////////////////////////////////////////////////////////////////////////// */

.about {
    position: relative;
    /* padding: 100px 15px 150px 15px; */
}
.about::before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70%;
    z-index: 0;
    opacity: 0.16;
    filter: invert(1) brightness(0);
    background-image: url("../img/section/topography.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-mask-image: linear-gradient(to top, transparent 10%, #000 75%);
    mask-image: linear-gradient(to top, transparent 10%, #000 75%);
}
html[data-theme="light"] .about::before {
    opacity: 0.06;
}

@media only screen and (max-width: 992px) {
    .about {
        /* padding: 75px 0; */
    }
}

/* -------------------------------------------
    TEXT INTRO 
------------------------------------------- */
.about .scroll-effect {
}
.scroll-effect .text-change-color div {
    background-clip: text;
    color: transparent;
    color: var(--color-light);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 100%;
    transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.75s;
}
.about .scroll-effect h3 {
    font-family: var(--font-text);
    font-size: 32px;
    line-height: 1.4;
}
.about .scroll-effect h3 strong {
    font-weight: 500;
}

@media only screen and (max-width: 992px) {
    .about .scroll-effect h3 {
        font-size: 23px;
        line-height: 1.45;
    }
}

/* -------------------------------------------
    ABOUT WRAP 
------------------------------------------- */
.about_wrap {
    display: flex;
    align-items: center;
    gap: 100px;
    height: auto;
    margin: 150px 0 0 0;
}

/* IMG */
.about_wrap-img {
    display: flex;
    align-self: stretch;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
}
.about_wrap-img img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 90% center;
    border-radius: 20px;
}

/* CONTENT */
.about_wrap-content {
    padding: 25px 0;
    flex: 2;
}
.about_wrap-content .section_title {
    margin: 0;
}

/* LINE */
.about_wrap-content .line {
    margin: 25px 0 50px 0;
}
.about_wrap-content .line img {
    width: 100%;
}
html[data-theme="light"] .about_wrap-content .line img {
    filter: invert(1) brightness(0);
}

/* PICTO */
.picto_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content;
    gap: 0;
}
.picto_wrap-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
}
.picto_wrap-item:nth-child(odd) {
    border-right: var(--line) solid 1px;
}
.picto_wrap-item:nth-child(1),
.picto_wrap-item:nth-child(2) {
    border-bottom: var(--line) solid 1px;
}
.picto_wrap-item:nth-child(1) {
    padding: 0 50px 50px 0;
}
.picto_wrap-item:nth-child(2) {
    padding: 0 0 50px 50px;
}
.picto_wrap-item:nth-child(3) {
    padding: 50px 50px 0 0;
}
.picto_wrap-item:nth-child(4) {
    padding: 50px 0 0 50px;
}

.picto_wrap-item img {
    height: 50px;
    margin: 0 0 15px 0;
}
html[data-theme="light"] .picto_wrap-item img {
    filter: invert(1);
}
.picto_wrap-item h3 {
    font-size: 32px;
    line-height: 1.05;
    font-weight: normal;
}
.picto_wrap-item p {
    font-size: 18px;
    color: var(--color-grey-xlight);
}

@media only screen and (max-width: 992px) {
    .about_wrap {
        flex-direction: column;
        gap: 75px;
        margin: 75px 0 0 0;
    }
    .about_wrap-img {
        position: relative;
        padding-top: 66.25%;
    }
    .about_wrap-img img {
        position: absolute;
        top: 0;
        left: 0;
    }
    .about_wrap-content {
        padding: 0;
    }
    .about_wrap-content .line {
        margin: 10px 0 50px 0;
    }
    .picto_wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .picto_wrap-item {
        border-right: none !important;
        border-bottom: var(--line) solid 1px !important;
        padding: 35px 0 !important;
    }
    .picto_wrap-item:first-child {
        padding: 0 0 35px 0 !important;
    }
    .picto_wrap-item:last-child {
        padding: 35px 0 0 0 !important;
        border: none !important;
    }
    .picto_wrap-item img {
        height: 40px;
        margin: 0 0 15px 0;
    }
    .picto_wrap-item h3 {
        font-size: 28px;
    }
    .picto_wrap-item p {
        font-size: 17px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    08 . PARALLAX

//////////////////////////////////////////////////////////////////////////// */

.banner-image {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    border-radius: 20px;
    overflow: hidden;
}
.banner-image .parallaxie::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.18);
}
.banner-image .parallaxie {
    position: relative;
    padding-top: 56.25%;
    min-height: 450px;
    max-height: 700px;
    border-radius: 20px;
    overflow: hidden;
    background-size: 100% auto !important;
    background-position: left center !important;
}
.banner-logo {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.banner-logo img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: calc(40%);
    left: calc(35%);
    transform: translate(-50%, -50%) scale(1.08);
    filter: invert(1) brightness(1000%);
    opacity: 0.25;
}
.banner-text {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--font-title);
    font-size: 60px;
    line-height: 1.1;
    color: #f9fafb;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
}

@media (max-width: 992px) {
    .banner-image {
        max-width: 100%;
        padding: 0;
        border-radius: 0;
    }
    .banner-image .parallaxie {
        padding-top: 77%;
        border-radius: 0;
    }
    .banner-text {
        font-size: 36px;
        text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    09 . TOOL

//////////////////////////////////////////////////////////////////////////// */

.tool {
    padding: 150px 15px 0 15px;
}

.grid_tool {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media only screen and (max-width: 992px) {
    .tool {
        padding: 75px 0 0 0;
    }
    .grid_tool {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}

.item_tool {
    display: grid;
    gap: 16px;
}

/* IMG */
.item_tool .img-style {
    border-radius: 20px;
    overflow: hidden;
}
html[data-theme="light"] .item_tool:nth-child(1) .img-style {
    background-color: rgb(0, 0, 0, 0.08);
}
.item_tool .img-style img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
html[data-theme="light"] .item_tool:nth-child(1) .img-style img {
    mix-blend-mode: multiply;
}

/* CONTENT */
.item_tool .content {
    position: relative;
    padding: 35px;
    border-radius: 20px;
    overflow: hidden;
}
.item_tool .content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.3);
}
html[data-theme="light"] .item_tool .content::before {
    background-color: rgb(31, 50, 123, 0.06);
}

.item_tool-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}
.item_tool-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.item_tool-title img {
    order: 2;
    height: 50px;
}
html[data-theme="light"] .item_tool-title img {
    filter: invert(1);
}
.item_tool-title h3 {
    font-size: 36px;
    line-height: 1.05;
    font-weight: normal;
}

.item_tool-wrap ul {
    list-style: none;
    margin: 0 !important;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.item_tool-wrap li {
    display: inline-block;
    font-size: 18px;
    padding: 0 0 0 23px;
    color: var(--color-grey-xlight);
}
.item_tool-wrap li::before {
    position: relative;
    content: "\e907";
    font-family: "Icomoon";
    display: inline-block;
    margin-left: -23px;
    width: 23px;
    top: 0.025em;
    color: var(--color-primary-3);
}

@media only screen and (max-width: 992px) {
    .item_tool:last-child .img-style {
        order: -1;
    }
    .item_tool .content {
        padding: 30px 25px;
    }
    .item_tool-wrap {
        gap: 25px;
        width: 100%;
    }
    .item_tool-title {
        gap: 35px;
    }
    .item_tool-title img {
        height: 40px;
    }
    .item_tool-title h3 {
        font-size: 28px;
    }
    .item_tool-wrap li {
        display: inline-block;
        font-size: 17px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    10 . SERVICES

//////////////////////////////////////////////////////////////////////////// */

.services .wrap-services {
    display: grid;
    gap: 80px;
}

.services .section_title {
    max-width: 80%;
}

@media only screen and (max-width: 992px) {
    .services .wrap-services {
        gap: 50px;
    }
    .services .section_title {
        max-width: 100%;
    }
}

.service-item {
    display: flex;
    justify-content: space-between;
    padding: 0 0 75px 0;
    border-bottom: 1px solid var(--line);
}
.service-item:last-child {
    padding: 0;
    border-bottom: none;
}

/* LEFT */
.service-item .box-left {
    position: relative;
    flex-direction: column;
    display: flex;
    gap: 0;
    flex: 1;
    padding: 0 5% 0 0;
}
.service-item .box-left::before {
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: -20px;
    content: attr(data-num);
    font-family: var(--font-text);
    font-size: calc(16rem + 4vw);
    line-height: 1;
    letter-spacing: -0.075em;
    font-weight: 500;
    text-align: right;
    opacity: 0.04;
}
.service-item h3 {
    position: relative;
    font-size: 42px;
    line-height: 1.05;
    font-weight: normal;
    margin: 0 0 45px 0;
}
.service-item p {
    font-size: 18px;
    line-height: 1.4;
}
.service-item p.lead {
    position: relative;
    font-size: 23px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.service-item ul {
    position: relative;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0 0 25px 0 !important;
    padding: 0;
    gap: 10px;
    max-width: 70%;
}
.service-item li {
    display: inline-block;
    font-size: 19px;
    line-height: 1.4;
    padding: 0 0 0 23px;
    color: var(--color-grey-light);
}
.service-item li::before {
    position: relative;
    content: "\e907";
    font-family: "Icomoon";
    display: inline-block;
    margin-left: -23px;
    width: 23px;
    top: 0.025em;
    color: var(--color-primary-3);
}

/* RIGHT */
.service-item .box-right {
    display: flex;
    justify-content: end;
    align-items: end;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f30;
}
.service-item .box-right .img-style {
    border-radius: 20px;
    overflow: hidden;
    max-width: 500px;
    height: 100%;
    justify-self: stretch;
}
.service-item .box-right .img-style img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .service-item {
        flex-direction: column;
        padding: 0 0 40px 0;
    }
    .service-item .box-left {
        margin: 20px 0 0 0;
        padding: 0;
    }
    .service-item .box-left::before {
        display: none;
    }
    .service-item h3 {
        font-size: 32px;
        margin: 0 0 20px 0;
    }
    .service-item h3 br {
        display: none;
    }
    .service-item p.lead {
        font-size: 21px;
        line-height: 1.35;
        margin: 0 0 15px 0;
    }
    .service-item ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        margin: 0 !important;
        padding: 0;
        gap: 10px;
        max-width: 100%;
    }
    .service-item li {
        font-size: 17px;
    }
    .service-item .box-right {
        order: -1;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        padding-top: 56.25%;
        width: 100%;
    }
    .service-item .box-right .img-style {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    11 . PORTFOLIO

//////////////////////////////////////////////////////////////////////////// */

.section-portfolio .wrap-portfolio {
    position: relative;
}
.grid-sizer {
    width: calc(50% - 15px);
}
.gutter-sizer {
    width: 30px;
}

.portfolio-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(50% - 15px);
    margin: 0 0 60px 0;
}
.portfolio-item:last-child {
    margin: 0;
}

.portfolio-item .img-style {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    overflow: hidden;
    padding-top: 76.25%;
}
.portfolio-item:nth-child(4) .img-style {
    margin: 26% 0 0 0;
}
.portfolio-item:nth-child(3n + 3) .img-style {
    padding-top: 66.25%;
}
.portfolio-item:nth-child(3n + 4) .img-style {
    padding-top: 86.25%;
}
.portfolio-item:nth-child(3n + 5) .img-style {
    padding-top: 56.25%;
}

.portfolio-item .img-style img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    border-radius: 20px;
}

.portfolio-item .content {
    position: unset;
    background-color: unset;
    padding: 20px 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.portfolio-item .content h3 {
    font-size: 34px;
    line-height: 1.05;
}
.portfolio-item .content span {
    font-size: 17px;
    line-height: 1.35;
    color: var(--color-grey-light);
}

@media only screen and (max-width: 992px) {
    .grid-sizer {
        width: 100%;
    }
    .gutter-sizer {
        width: 0;
    }
    .portfolio-item {
        width: 100%;
        margin: 0 0 35px 0;
    }
    .portfolio-item .img-style {
        padding-top: 56.25% !important;
    }
    .portfolio-item:nth-child(4) .img-style {
        margin: 0;
    }
    /* .portfolio-item:nth-child(2) {
        margin: 0 0 0 0;
    }
    .portfolio-item:nth-child(3) {
        grid-column: span 2 / span 2;
    }
    .portfolio-item:nth-child(3) .img-style {
        margin: 0 0 0 0;
    } */
    .portfolio-item .content {
        padding: 15px 0 0 5px;
    }
    .portfolio-item .content h3 {
        font-size: 26px;
    }
    .portfolio-item .content span {
        font-size: 14px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    12 . CONTACT

//////////////////////////////////////////////////////////////////////////// */

.contact .section_title h3 {
    font-family: var(--font-text);
    font-size: 30px;
    line-height: 1.35;
    color: var(--color-grey-light);
}

/* -------------------------------------------
    FORM 
------------------------------------------- */
.contact_form {
    position: relative;
    max-width: 800px;
    /* margin: 0 auto; */
}
.contact_form::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(100% + 100px);
    width: 200%;
    height: calc(100%);
    background-image: linear-gradient(
        135deg,
        transparent 25%,
        var(--color-light) 25%,
        var(--color-light) 50%,
        transparent 50%,
        transparent 75%,
        var(--color-light) 75%,
        var(--color-light) 100%
    );
    background-size: 18px 18px;
    opacity: 0.04;
}

@media only screen and (max-width: 992px) {
    .contact_form::after {
        display: none;
    }
}

.bloc_form {
    position: relative;
}
.bloc_form-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-gap: 25px;
}
.bloc_form-wrap.full {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px;
}

.bloc_form-wrap .bloc_form {
    margin: 0;
}
.bloc_form-wrap .bloc_form.full {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

@media only screen and (max-width: 992px) {
    .bloc_form-wrap {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .bloc_form-wrap .bloc_form.full {
        grid-column: span 1 / span 1;
        grid-row: span 1 / span 1;
        grid-gap: 20px;
    }
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    position: relative;
    display: block;
    border: none;
    border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
    width: 100%;
    font-size: 17px;
    line-height: 55px;
    padding: 0;
    color: var(--color-light);
    background: transparent;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
html[data-theme="light"] input[type="text"],
html[data-theme="light"] input[type="email"],
html[data-theme="light"] input[type="tel"],
html[data-theme="light"] textarea {
    border-bottom: rgba(0, 0, 0, 0.2) solid 1px;
}
textarea {
    position: relative;
    resize: vertical;
    min-height: 175px;
    max-height: 300px;
    font-size: 17px;
    line-height: 1.4;
    padding: 20px 0 0 0;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: none;
    outline: none;
}
::-webkit-input-placeholder {
    color: var(--color-grey-light);
    font-size: 17px;
}
::placeholder {
    color: var(--color-grey-light);
    font: 17px;
}
[hidden] {
    display: none !important;
    color: var(--color-grey-light) !important;
}
.hidden {
    display: none;
    color: var(--color-grey-light) !important;
}

/* SELECT */
select {
    position: relative;
    display: inline-block;
    background: transparent;
    border: none;
    border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
    outline: inherit;
    color: var(--color-light);
    font-size: 17px;
    line-height: 55px;
    padding: 0 40px 0 0;
    border-radius: 0;
    width: 100%;
    letter-spacing: 0;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
html[data-theme="light"] select {
    border-bottom: rgba(0, 0, 0, 0.2) solid 1px;
}
.select-carret {
    position: relative;
    width: 100% !important;
    margin: 0;
}
.select-carret:after {
    content: "";
    position: absolute;
    font-family: "Icomoon";
    content: "\e917";
    pointer-events: none;
    z-index: 1;
    top: calc(50%);
    transform: translateY(-50%);
    right: 0;
    font-size: 20px;
    padding: 0 0 0 15px;
    color: var(--color-grey-light);
}
html[dir="rtl"] .select-carret:after {
    right: inherit;
    left: 0;
}
select:invalid {
    color: var(--color-grey-light);
}
select[disabled] {
    color: var(--color-grey-light);
}
select option {
    color: var(--color-dark);
}
select:required:invalid {
    color: var(--color-grey-light);
}

/* ////////////////////////////////////////////////////////////////////////////

    13 . ANIMATIONS

//////////////////////////////////////////////////////////////////////////// */

.tf-animate-1 {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    -webkit-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
    transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-1.active-animate {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateX(0);
}

.tf-animate-2 {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    -webkit-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
    transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-2.active-animate {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateX(0);
}

.tf-animate-3 {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    -webkit-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
    transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-3.active-animate {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateX(0);
}

.tf-animate-4 {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    -webkit-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
    transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.tf-animate-4.active-animate {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateX(0);
}

/* ////////////////////////////////////////////////////////////////////////////

    14 . BACK TO TOP

//////////////////////////////////////////////////////////////////////////// */

.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: var(--color-dark);
    border: 1px solid var(--line);
}
.progress-wrap::after {
    position: absolute;
    content: "\e919";
    font-family: "icomoon";
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: var(--color-light);
    height: 40px;
    width: 40px;
    cursor: pointer;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
    animation: iconBounce 2s linear 0s infinite;
}
.progress-wrap::after:active {
    animation: goTopToBottom 0.6s forwards;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    box-sizing: border-box;
    stroke: var(--color-primary-1);
    stroke-width: 4;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    transition-duration: 0.4s;
    transition-timing-function: linear;
}

@media only screen and (max-width: 992px) {
    .progress-wrap {
        bottom: 20px;
        right: 20px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    15 . BUTTONS

//////////////////////////////////////////////////////////////////////////// */

.btn-hover-animation-fill {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-hover-animation-fill.btn-link {
    border-bottom: 0;
    padding-bottom: 0;
}
.btn-hover-animation-fill.btn-link:hover {
    opacity: 1;
}
.btn-hover-animation-fill > span {
    display: inline-flex;
    align-items: center;
}
.btn-hover-animation-fill .btn-text {
    margin-left: -13px;
    position: relative;
    z-index: 3;
    transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.btn-hover-animation-fill i {
    font-size: 16px;
    z-index: 3;
    position: relative;
    transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
}
.btn-hover-animation-fill .arr-2 {
    margin-left: 8px;
    line-height: 0;
}
.btn-hover-animation-fill .arr-1 {
    order: -2;
    opacity: 0;
    transition-delay: 0s;
    margin-left: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}
.btn-hover-animation-fill .bg-effect {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--color-primary-1);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.btn-hover-animation-fill:hover .btn-text {
    transition-delay: 0.1s;
    transform: translateX(23px);
    color: #f9fafb;
}
.btn-hover-animation-fill:hover i {
    color: #f9fafb;
}
.btn-hover-animation-fill:hover .arr-2 {
    transition-delay: 0s;
    transform: translateX(10px);
    opacity: 0;
}
.btn-hover-animation-fill:hover .arr-1 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.225s;
}
.btn-hover-animation-fill:hover .bg-effect {
    width: 225%;
    height: calc(var(--button-width) * 2.25);
}

.tf-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    padding: 0 25px;
    font-family: var(--font-title);
    font-size: 20px;
    line-height: 1;
    border-radius: 9999px;
    text-decoration: none !important;
    outline: 0 !important;
    border: none;
    cursor: pointer;
}
.tf-btn i {
    font-size: 24px;
}

.tf-btn.btn-green {
    background-color: var(--color-primary-1);
}
.tf-btn.btn-green .btn-text,
.tf-btn.btn-green i {
    color: #fff;
}

.tf-btn.btn-orange {
    background-color: var(--color-primary-3);
}
.tf-btn.btn-orange .btn-text,
.tf-btn.btn-orange i {
    color: #fff;
}

.tf-btn.style-small {
    height: 40px;
    padding: 0px 24px;
}

.tf-btn-2 {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 167px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid var(--line);
    text-align: center;
    color: var(--color-primary-1);
    padding: 0 33px;
    gap: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tf-btn-2 span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tf-btn-2 i {
    font-size: 32px;
    color: var(--color-primary-1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 767px) {
    .tf-btn-2 {
        max-width: 130px;
    }
}
.tf-btn-2:hover {
    background-color: var(--color-primary-1);
    color: var(--color-primary-2);
}

/* ////////////////////////////////////////////////////////////////////////////

    16 . MARQUEE

//////////////////////////////////////////////////////////////////////////// */

.wrap-partner-infinity {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* height: 250px; */
    margin: 0 0 50px 0;
}
.wrap-partner-infinity .wrap-marquee {
}
.wrap-partner-infinity .marquee-1 {
    position: relative;
    z-index: 1;
    transform: rotate(0deg) translateX(-6px);
    width: calc(100% + 12px);
}
.wrap-partner-infinity .marquee-2 {
    transform: rotate(0deg) translateX(-6px);
    width: calc(100% + 12px);
    /* margin: -65px 0 0 0; */
}

@media only screen and (max-width: 767px) {
    .wrap-partner-infinity {
        height: 125px;
        margin: 25px 0 0 0;
    }
}

/* BANNER MARQUEE ROTATE */
.wrap-partner-infinity .infiniteslide {
    gap: 52.49px;
}
.bg-primary-color {
    background-color: var(--color-primary-1);
    padding: 5px 0;
}
.bg-white-color {
    background-color: var(--color-light);
    padding: 5px 0;
}
.bg-primary-color h2,
.bg-white-color h2 {
    font-size: clamp(36px, 7vw, 72px);
    line-height: 1.05;
}
.text-border {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-light);
    display: inline-block;
}
.text-border-2 {
    color: transparent;
    -webkit-text-stroke: 1.29px var(--color-dark);
    display: inline-block;
}
.text_secondary-color {
    color: var(--color-primary-2);
}
html[data-theme="light"] .text_secondary-color {
    color: var(--color-dark);
}
html[data-theme="light"]
    .wrap-partner-infinity
    .marquee-2
    .text_secondary-color {
    color: var(--color-dark);
}

/* BANNER MARQUEE */
.wrap-banner .marquee-item {
    margin-left: 64px;
}

.wrap-infiniteslide .text {
    font-family: var(--font-title);
    font-size: 56px;
    line-height: 80px;
}
.wrap-infiniteslide img {
    width: 50px;
    height: 50px;
}

/* LOGO PARTNERS */
.partners_wrap {
    padding: 50px 0;
    background-color: #f9fafb;
}
html[data-theme="light"] .partners_wrap {
    padding: 0;
}
.partners_wrap .marquee-item {
    position: relative;
    width: auto;
    height: 55px;
    max-width: 275px;
    display: flex !important;
    justify-content: center;
    align-items: center !important;
    padding: 0 45px;
}
.partners_wrap .marquee-item a {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.partners_wrap .marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media only screen and (max-width: 992px) {
    .partners_wrap .marquee-item {
        height: 70px;
        padding: 0 25px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    17 . PRELOADER

//////////////////////////////////////////////////////////////////////////// */

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999999;
    --preloader-clip: 0;
    clip-path: inset(0 0 0 var(--preloader-clip));
}
.preloader .site-name img {
    width: 45vmin;
    height: 45vmin;
    min-width: 200px;
    min-height: 200px;
    object-fit: contain;
    filter: invert(1) brightness(1000%);
}
.preloader .preloader-gutters {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100%);
    z-index: 2;
    display: flex;
}
.preloader .preloader-gutters .bar {
    width: 12.5%;
    height: 100%;
    background: transparent;
    position: relative;
}
.preloader .preloader-gutters .bar .inner-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-primary-2);
}
.preloader .preloader-overlay {
    background-color: var(--color-light);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    transform: translateX(-100%);
    opacity: 0.2;
}
.preloader .site-name {
    background-color: var(--color-primary-1);
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.preloader .site-name span {
    font-size: 80px;
}

@media only screen and (max-width: 767px) {
    .preloader .site-name span {
        font-size: 40px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////

    18 . FAQ

//////////////////////////////////////////////////////////////////////////// */

.faq {
    padding: 150px 15px 0 15px;
}

.accordion-list {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
}

.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: rgba(138, 146, 149, 0.25) solid 1px;
    padding: 25px 0;
    margin: 0 0 0 0;
}
.accordion-list li:last-child {
    margin: 0;
}
.accordion-list li:first-child {
    border-top: rgba(138, 146, 149, 0.25) solid 1px;
}
.accordion-list li.active {
    display: block;
    padding: 25px 0 35px 0;
}

.accordion-list li h3 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    font-family: var(--font-text);
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
}
.accordion-list li h3 span {
    padding: 0 20px 0 0;
    flex: 1;
}
.accordion-list li h3:after {
    content: "\f30f";
    font-family: "Ionicons";
    position: relative;
    margin-left: auto;
    color: var(--color-primary-3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.25s, color 0.25s;
    font-size: 22px;
}
.no-touch .accordion-list li:hover h3:after,
.accordion-list li.active h3:after {
    transform: rotate(90deg);
}

.accordion-list li div.answer {
    position: relative;
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 30px 60px 0 0;
}
.accordion-list li div.answer p {
    position: relative;
    display: block;
    font-size: 19px;
    margin: 0 0 5px 0;
    color: var(--color-grey-xlight);
}

@media only screen and (max-width: 992px) {
    .faq {
        padding: 75px 0 0 0;
    }
    .accordion-list li {
        padding: 20px 0;
    }
    .accordion-list li.active {
        padding: 20px 0 30px 0;
    }
    .accordion-list li h3 {
        font-size: 19px;
        line-height: 1.3;
    }
    .accordion-list li h3:after {
        font-size: 18px;
    }
    .accordion-list li div.answer {
        padding: 20px 60px 0 0;
    }
    .accordion-list li div.answer p {
        font-size: 17px;
    }
}
