@import "https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700,800&display=swap";
@import "https://fonts.googleapis.com/css?family=Epilogue:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";

/*****************************
  VARIABLES
*****************************/
:root {
    --inter: "Inter", sans-serif;
    --oswald: "Oswald", sans-serif;
    --openSans: "Open Sans", sans-serif;
    --epilogue: "Epilogue", sans-serif;
    --theme-font: var(--openSans);
    --theme-bg: #000000;
    --theme-color: #ffffff;
    --white: #ffffff;
    --black: #000000;
    --color-black: #000000;
    --color-white: #ffffff;
    --primary-color: #ffdc0e;
    --secondary-color: #757575;
    --tertiary-color: #0e0e0e;
    --quaternary-color: #040404;
    --quinary-color: #c1c1c1;
    --senary-color: #191919;
    --septenary-color: #101010;
    --octonary-color: #1a1a1a;
    --nonary-color: #d9d9d9;
    --transition: all 0.3s ease-in-out;
    --bs-form-invalid-color: #ffdc0e !important;
    --bs-danger: #ffdc0e !important;
    --bs-form-invalid-border-color: #ffdc0e !important;
    --shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    --shadow-secondary: 0 0 31px rgba(0, 0, 0, 0.1);
    --bs-gutter-x: 1.875rem;
    --fontSize: 4;
    --fs-s1: 0.813rem;
    --fs-1: 1rem;
    /*--fs-h1: clamp(2.5rem, 3.8vw + 1rem, 5.5rem);
    --fs-h2: 4.25rem;
    --fs-h3: 3rem;
    --fs-h4: 2.25rem;
    --fs-h5: 1.75rem;
    --fs-h6: 1.5rem;*/
    --fs-h1: clamp(2.5rem, 3.8dvw + 1rem, 5.5rem);
    --fs-h2: clamp(2.25rem, 3.5dvw + 0.5rem, 4.25rem);
    --fs-h3: clamp(1.75rem, 2.8dvw + 0.5rem, 3rem);
    --fs-h4: clamp(1.5rem, 2.2dvw + 0.5rem, 2.25rem);
    --fs-h5: clamp(1.25rem, 1.8dvw + 0.5rem, 1.75rem);
    --fs-h6: clamp(1rem, 1.5dvw + 0.3rem, 1.5rem);
    --fs-h7: clamp(1.125rem, 1dvw + 0.3rem, 1.125rem);
    --fs-h8: clamp(1rem, 0.8dvw + 0.25rem, 1rem);
    --fs-h9: clamp(0.875rem, 0.5dvw + 0.25rem, 0.875rem);


    --bar-width: 22px;
    --bar-height: 4px;
    --bar-margin: 2px;
    --bar-borderradius: 15px;
    --bar-arrow-angle-value: 45;
    --bar-transition: cubic-bezier(0.25, 0.01, 0.75, 1);
    --bar-transition-time: 0.3s;
    --bar-offset: calc(var(--bar-height) + var(--bar-margin) * 2);
    --bar-arrow-angle: calc(var(--bar-arrow-angle-value) * 1deg);
    --bar-arrow-offset: calc(var(--bar-height) * 1.2 + var(--bar-margin) * 2);
    --bar-arrow-offsetcenter: calc(50% * var(--bar-arrow-angle-value) / 90);
}

/*****************************
  GLOBAL
*****************************/
/* CORRECTIONS CSS CRITIQUES */
html {
    scrollbar-gutter: stable;
    overflow-x: hidden;
    height: 100%;
}

body {
    margin: 0;
    width: calc(100vw - (100vw - 100%));
    /* Compense la scrollbar */
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: #000;
    /* Couleur de fond unifiée */
}

#smooth-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    backface-visibility: hidden;
}

#smooth-content {
    position: relative;
    min-height: 100vh;
    will-change: transform;
    transform-style: preserve-3d;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #000;
    pointer-events: none;
    transform: translateZ(0);
}

/* Correction pour iOS */
@supports (-webkit-touch-callout: none) {
    #smooth-wrapper {
        height: -webkit-fill-available;
    }
}

body.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background-color: rgb(255 255 255 / 86%);
    mix-blend-mode: multiply;
}

body::-webkit-scrollbar-thumb {
    background-color: #ffdc0e;
    border-bottom: 1px solid #9c9c9cbe;
}

body::-webkit-scrollbar-button {
    background-color: #ffffff;
    border-radius: 1.5px;
    border-bottom: 1px solid #9c9c9cbe;
}



*::-moz-selection {
    background: #ffdc0e;
    color: #ffffff;
    text-shadow: none;
}

::-moz-selection {
    background: #ffdc0e;
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: #ffdc0e;
    color: #ffffff;
    text-shadow: none;
}


.site-content {
    position: relative;
    /*z-index: 2;
     background-color: #000000; */
}

.container-fluid {
    padding-right: inherit;
    padding-left: inherit;
}

.i-review-content-box .i-review-end-container {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    padding: 0;
    text-align: center;
}

/*****************************
  SPECIFIC CONTAINER
*****************************/
/*.container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
}*/


/* PRELOADER */
.origin-bottom {
    transform-origin: bottom
}

.origin-bottom-right {
    transform-origin: bottom right
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-x-full {
    --tw-translate-x: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-x-4 {
    --tw-translate-x: 1rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-16 {
    --tw-translate-y: 4rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-8 {
    --tw-translate-y: 2rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-full {
    --tw-translate-y: 100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-rotate-45 {
    --tw-rotate: -45deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

.loader-container {
    width: 500px;
    height: 100px;
    position: relative;
    z-index: 99
}

.loader-container .circle {
    width: 60px;
    height: 60px;
    position: absolute;
    border-radius: 50%;
    background-color: #e4e4e4;
    left: 15%;
    transform-origin: 50%;
    animation: circle7124 .5s alternate infinite ease
}

@keyframes circle7124 {
    0% {
        top: 120px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7)
    }

    40% {
        height: 60px;
        border-radius: 50%;
        transform: scaleX(1)
    }

    to {
        top: 0%
    }
}

.loader-container .circle:nth-child(2) {
    left: 45%;
    animation-delay: .2s
}

.loader-container .circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s
}

.loader-container .shadow {
    width: 60px;
    height: 4px;
    border-radius: 50%;
    background-color: #494949e6;
    position: absolute;
    top: 120px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow046 .5s alternate infinite ease
}

@keyframes shadow046 {
    0% {
        transform: scaleX(1.5)
    }

    40% {
        transform: scaleX(1);
        opacity: .7
    }

    to {
        transform: scaleX(.2);
        opacity: .4
    }
}

.loader-container .shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

.loader-container .shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s
}


/*****************************
  BOTTOM SCROLL BG
*****************************/
.ol-dark-bottom {
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.986) 8%, rgba(0, 0, 0, 0.950) 15.4%, rgba(0, 0, 0, 0.9) 22.4%, rgba(0, 0, 0, 0.82) 28.9%, rgba(0, 0, 0, 0.743) 35.2%, rgba(0, 0, 0, 0.65) 41.1%, rgba(0, 0, 0, 0.55) 47%, rgba(0, 0, 0, 0.45) 52.8%, rgba(0, 0, 0, 0.35) 58.9%, rgba(0, 0, 0, 0.26) 64.6%, rgba(0, 0, 0, 0.18) 69.9%, rgba(0, 0, 0, 0.1) 77.4%, rgba(0, 0, 0, 0.05) 84.4%, rgba(0, 0, 0, 0.01) 91.82%, rgba(0, 0, 0, 0) 100%)
}

.ol-dark-top,
.ol-dark-bottom {
    position: fixed;
    left: 0;
    height: 3dvh;
    width: 100%;
    z-index: 30;
    pointer-events: none;
}

.ol-dark-top {
    top: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.986) 8%, rgba(0, 0, 0, 0.950) 15.4%, rgba(0, 0, 0, 0.9) 22.4%, rgba(0, 0, 0, 0.82) 28.9%, rgba(0, 0, 0, 0.743) 35.2%, rgba(0, 0, 0, 0.65) 41.1%, rgba(0, 0, 0, 0.55) 47%, rgba(0, 0, 0, 0.45) 52.8%, rgba(0, 0, 0, 0.35) 58.9%, rgba(0, 0, 0, 0.26) 64.6%, rgba(0, 0, 0, 0.18) 69.9%, rgba(0, 0, 0, 0.1) 77.4%, rgba(0, 0, 0, 0.05) 84.4%, rgba(0, 0, 0, 0.01) 91.82%, rgba(0, 0, 0, 0) 100%);
}

.ol-dark-bottom {
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.986) 8%, rgba(0, 0, 0, 0.950) 15.4%, rgba(0, 0, 0, 0.9) 22.4%, rgba(0, 0, 0, 0.82) 28.9%, rgba(0, 0, 0, 0.743) 35.2%, rgba(0, 0, 0, 0.65) 41.1%, rgba(0, 0, 0, 0.55) 47%, rgba(0, 0, 0, 0.45) 52.8%, rgba(0, 0, 0, 0.35) 58.9%, rgba(0, 0, 0, 0.26) 64.6%, rgba(0, 0, 0, 0.18) 69.9%, rgba(0, 0, 0, 0.1) 77.4%, rgba(0, 0, 0, 0.05) 84.4%, rgba(0, 0, 0, 0.01) 91.82%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 768px) {

    .ol-dark-top,
    .ol-dark-bottom {
        display: none
    }
}



/*****************************
  PANELS COLORS
*****************************/

/*.bg-black {
    background: var(--black);
}*/


.btn-black {
    background-color: var(--black) !important;
}

.bg-white {
    background: var(--white);
}

.bg-yellow {
    background: var(--primary-color) !important;
}

.text-yellow {
    color: var(--primary-color);

    &.y-hover:hover {
        color: var(--primary-color);
        text-decoration: underline !important;
    }
}

.section-title .sub-title.text-yellow {
    color: var(--primary-color);
    font-family: var(--epilogue) !important;
}

.text-white {
    color: var(--white);
}

.bg-dark-grey {
    background: #757575;
}

.bg-black-grey {
    background: rgb(255 255 255 / 1%);
}

.bg-grey {
    background: #c1c1c1;
}


/*****************************
  SETTINGS SPEC
*****************************/
.rotate-90 {
    transform: rotate(-90deg);
}

.br-10 {
    border-radius: 10px;
}

.ms-md-6 {
    margin-left: 3rem !important
}




/*****************************
  ELEMENTS
*****************************/
button {
    background-color: rgba(0, 0, 0, 0);
    border: 0px;
    outline: 0px;
}

a,
button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    outline: 0px;
    border: 0px;
    transition: var(--transition);
    cursor: pointer;
}

a i,
button i {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    transition: none;
}

a:hover,
button:hover {
    text-decoration: none;
    border: 0px;
    outline: 0px;
}



a:focus,
button:focus {
    box-shadow: none;
    outline: 0px;
}

ul,
ol {
    list-style-type: none;
    list-style-position: inside;
    margin: 0px;
    padding: 0px;
}

hr,
blockquote,
textarea {
    margin: 0px;
}

input,
textarea {
    border: 0px;
    outline: 0px;
}

input:focus,
textarea:focus {
    box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0px;
}

input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="checkbox"] {
    width: initial;
    height: initial;
}

textarea {
    min-height: 150px;
    resize: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0px;
}

iframe {
    border: 0px;
    width: 100%;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    /*line-height: 1.15;*/
    will-change: transform;
    font-weight: 600;
    text-transform: unset;
    font-family: var(--oswald) !important;
    padding: 0px;
    margin: 0px;
    color: var(--theme-color);
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}

.special-list li {
    font-size: 20px;
}

h1,
.h1 {
    font-size: var(--fs-h1)
}

h2,
.h2 {
    font-size: var(--fs-h2);

    &.-xsmall {
        font-size: 3.5rem;
    }

    &.-xxs {
        font-size: var(--fs-h3);
    }
}

h3,
.h3 {
    font-size: var(--fs-h3);
    word-break: normal;

    &.-xl {
        font-size: 40px;
    }

    /*&.-xs {
        font-size: var(--fs-h4);
    }
    &.-xxs {
        font-size: var(--fs-h5);
    }*/
}

h4,
.h4 {
    font-size: var(--fs-h4);

    /*&.-xs {
        font-size: var(--fs-h5);
    }*/
}

h5,
.h5 {
    font-size: var(--fs-h5);

    /* &.-xs {
        font-size: var(--fs-h6);
    }*/
}

h6,
.h6 {
    font-size: var(--fs-h6)
}

h7,
.h7 {
    font-size: var(--fs-h7)
}

h8,
.h8 {
    font-size: var(--fs-h8)
}

.fs-s1 {
    font-size: 1dvw !important
}

.fs-1 {
    font-size: 1dvw !important
}

.fs-2 {
    font-size: 2dvw !important
}

.fs-3 {
    font-size: 3dvw !important
}

.fs-4 {
    font-size: 4dvw !important
}

.fs-5 {
    font-size: 5dvw !important
}

.fs-6 {
    font-size: 6dvw !important
}

.fs-7 {
    font-size: 7dvw !important
}

.fs-8 {
    font-size: 8dvw !important
}

.fs-9 {
    font-size: 9dvw !important
}

.fs-10 {
    font-size: 10dvw !important
}

.fs-11 {
    font-size: 11dvw !important
}

.fs-12 {
    font-size: 12dvw !important
}

.fs-13 {
    font-size: 13dvw !important
}

.fs-14 {
    font-size: 14dvw !important
}

.fs-15 {
    font-size: 15dvw !important
}

.fs-16 {
    font-size: 16dvw !important
}

.fs-17 {
    font-size: 17dvw !important
}

.fs-18 {
    font-size: 18dvw !important
}

.fs-19 {
    font-size: 19dvw !important
}

.fs-20 {
    font-size: 20dvw !important
}

.fs-25 {
    font-size: 25dvw !important
}

.fs-30 {
    font-size: 30dvw !important
}

.fs-44 {
    font-size: 44dvw !important
}

.fs-50 {
    font-size: 50dvw !important
}

.fw-200 {
    font-weight: 200
}

.fw-300 {
    font-weight: 300
}

.fw-400 {
    font-weight: 400
}

.fw-500 {
    font-weight: 500
}

.fw-700 {
    font-weight: 700
}

.fw-800 {
    font-weight: 800
}

.fw-900 {
    font-weight: 900
}

.fw-bold {
    font-weight: 700
}

.fw-normal {
    font-weight: 400
}

.f-stroke-w {
    -webkit-text-stroke: 1px var(--white);
    -webkit-text-fill-color: transparent;
}

.f-stroke-d {
    -webkit-text-stroke: 1px var(--black);
    -webkit-text-fill-color: transparent;
}


/*---------------- 4. Positions ----------------*/

.align-cc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.align-c {
    display: flex;
    align-items: center;
}

.align-ce {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.align-cs {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.align-sc {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.align-ss {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.align-jc {
    display: flex;
    justify-content: center;
}

.align-ic {
    display: flex;
    align-items: center;
}

.align-ie {
    display: flex;
    align-items: flex-end;
}

.align-jb {
    display: flex;
    justify-content: space-between;
}


.align-se {
    align-self: end;
    padding-bottom: 15px;
}

/*---------------- 5. Preload ----------------*/

.loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111;
    pointer-events: none;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.percentage {
    font-size: clamp(5.72rem, 15.02dvw + 1.97rem, 19.99rem);
}

.loader-text {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.loader-text span {
    font-size: clamp(5.72rem, 27.2dvw + -1.08rem, 31.57rem);
    visibility: hidden;
    display: inline-block;
    letter-spacing: -1.3dvw;
    margin-right: 1.3dvw;
}


.p-15 {
    padding: 0 15px 0 15px !important;
}

p,
th,
td,
/*li,*/
input,
textarea,
select,
label,
blockquote,
span {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    color: var(--theme-color);
    font-family: var(--epilogue);
}

p {
    text-align: justify;
}

.text-center p {
    text-align: center !important;
}

.primary-text {
    font-size: 20px;
    line-height: 30px;
}

.secondary-text {
    font-size: 28px;
    line-height: 38px;
}

.tertiary-text {
    font-size: 16px;
    line-height: 28px;
}

a,
button {
    font-size: 16px;
    line-height: 18px;
    color: var(--theme-color);
    font-weight: 500;
    cursor: pointer;
}

a:hover,
button:hover {
    color: var(--primary-color);
}

h1,
.h1 {
    font-size: 100px;
    line-height: 130px;
}

.light-title {
    font-size: 75px;
    line-height: 85px;
}

.light-title-lg {
    font-size: 30px;
    line-height: 40px;
}


h1 a,
h1 span,
h2 a,
h2 span,
h3 a,
h3 span,
h4 a,
h4 span,
h5 a,
h5 span,
h6 a,
h6 span,
p a,
p span {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
}

img,
.img-fluid {
    max-width: 100%;
    height: auto;
    border: 0px;
    outline: 0px;
    -o-object-fit: cover;
    object-fit: cover;
    /*border-radius: 10px;*/
}

i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    transition: all 0.14s ease-out;
    mix-blend-mode: difference;
}

.cursor-outer.cursor-hover {
    opacity: 0;
    transition: none;
}

.cursor-outer.cursor-big {
    opacity: 0;
}

.mouseCursor {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

.mouseCursor.cursor-big {
    width: 20px;
    height: 20px;
    margin-left: -12px;
    margin-top: -12px;
}


.cursor-inner {
    margin-left: -3px;
    margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--primary-color);
    opacity: 0.8;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    mix-blend-mode: difference;
}

.cursor-inner span {
    color: var(--theme-color);
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.cursor-inner.cursor-big span {
    opacity: 1;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #686363;
    opacity: 0;
}

.unset {
    max-width: unset;
}

.dir-rtl {
    direction: rtl;
}

.bg-img {
    background-color: var(--theme-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#cursor {
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    pointer-events: none;
}



@media (hover: hover) and (pointer: fine) {
    .cursor__circle {
        width: 40px;
        height: 40px;
        margin-top: -50%;
        margin-left: -50%;
        border-radius: 50%;
        border: 1px solid var(--primary-color);
        transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Cursor Text */
    #cursor.text .cursor__circle,
    #cursor.arrow .cursor__circle {
        width: 130px;
        height: 130px;
        border: none;
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.3);
    }

    #cursor.text::after {
        content: "";
        position: absolute;
        left: -50%;
        top: -50%;
        width: 100%;
        height: 100%;
        color: #000000;
        font-size: 18px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #cursor::after {
        content: attr(data-cursor-text) !important;
    }

    /* Cursor Arrow */
    #cursor.arrow::after {
        content: "" !important;
        position: absolute;
        left: -50%;
        top: -50%;
        width: 100%;
        height: 100%;
        color: #000000;
        font-size: 18px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
    }

    #cursor.cursor-link .cursor__circle {
        opacity: 0;
        width: 0;
        height: 0;
    }

    #cursor.cursor-link::after {
        content: normal;
        opacity: 0;
    }

    #cursor.overlay .cursor__circle {
        width: 48px;
        height: 48px;
        background-color: rgba(227, 222, 193, 0.08);
        border-color: transparent;
    }
}

/*Font Weight*/
.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

/* Text Stroke */
.bg-text-stroke {
    color: transparent !important;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff;
    display: block;
}

/* img holder */
.bg-holder {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

.slick-slide {
    margin: 0px 15px;
}

.slick-slide img {
    display: inline-block;
}

.slick-list {
    margin: 0px -15px;
}

.fw-9 {
    font-weight: 900 !important;
}

.fw-7 {
    font-weight: 700;
}

.fw-6 {
    font-weight: 600;
}

.fw-5 {
    font-weight: 500;
}

.fw-4 {
    font-weight: 400;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-tertiary {
    color: var(--tertiary-color);
}

.text-quaternary {
    color: var(--quaternary-color);
}

.text-quinary {
    color: var(--quinary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-tertiary {
    background-color: var(--tertiary-color);
}

.bg-quaternary {
    background-color: var(--quaternary-color);
}

.bg-quinary {
    background-color: var(--quinary-color);
}

.text-stroke {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--primary-color);
    font-family: var(--oswald);
    text-shadow: none;
}

.text-stroke-black {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--black);
    font-family: var(--oswald);
}

#pages .text-stroke-black {
    display: inline-block;

    &.stroke-ball {
        margin-left: 50px;
        transform: scale(0.5);
        opacity: 0;
    }

    &:not(.stroke-ball) {
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

}

.gaper {
    row-gap: 30px;
}

/*================================================
6. Work Process CSS
=================================================*/
.work-process-count {
    counter-reset: count;
}

.work-process-box {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 80px 25px 35px;
    position: relative;
    transition: 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    height: 100%;
}

.work-process-box::before {
    transition: all 0.1s linear;
    content: "0"counter(count);
    counter-increment: count;
    padding: 9px 13px;
    border: 1.5px solid #ececee;
    border-radius: 12px;
    font-size: 38px;
    letter-spacing: 0.38px;
    color: #fff;
    line-height: 1;
    -webkit-text-stroke: 1px var(--color-black);
    position: absolute;
    top: 24px;
    right: 30px;
}

.work-process-box:hover {
    border: 1px solid var(--color-primary-blue);
    transform: translateY(-4px);
}

.work-process-box:hover::before {
    border: 1.5px solid var(--color-primary-blue);
    color: var(--color-primary-blue);
    -webkit-text-stroke: 1px var(--color-primary-blue);
}

/* ------------------------------------------------------------- *
 *  Borders classes
/* ------------------------------------------------------------- */

.border {
    border: 1px solid rgba(132, 132, 132, 0.15) !important;
}

.border-top {
    border-top: 1px solid rgba(132, 132, 132, 0.15) !important;
}

.border-bottom {
    border-bottom: 1px solid rgba(132, 132, 132, 0.15) !important;
}

.border-left {
    border-left: 1px solid rgba(132, 132, 132, 0.15) !important;
}

.border-right {
    border-right: 1px solid rgba(132, 132, 132, 0.15) !important;
}

.bg-black h1,
.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black h5,
.bg-black h6,
.bg-black .h1,
.bg-black .h2,
.bg-black .h3,
.bg-black .h4,
.bg-black .h5,
.bg-black .h6 {
    color: #ffffff;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark .h1,
.bg-dark .h2,
.bg-dark .h3,
.bg-dark .h4,
.bg-dark .h5,
.bg-dark .h6 {
    color: #ffffff;
}

.bg-black p,
.bg-dark p {
    color: #f3f3f3;
}

.text-right {
    margin-left: auto;
    text-align: right;
}

iframe {
    width: 100%;
}

label {
    font-weight: normal;
}



/*----------------------------------*/
/* Container Fluid */
/*----------------------------------*/
.container-fluid.container-space {
    padding: 0 100px;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 100px 85px;
}

.container-xs {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 50px 85px;
}

.container-t-xl {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 160px 85px 80px;
}

.container-xl {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 120px 85px;
}

.container-xxl {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 160px 85px;
}

.services-contact.pageservices {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 100px 85px;
}

.parallax-img-wrapper {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}




@media (max-width: 991px) {
    #home .container:not(.container-footer):not(.banner-container) {
        max-width: 100%;
    }

    #pages .container:not(.banner-container) {
        max-width: 100%;
    }

    footer .container {
        max-width: 90%;
    }
}


/* ------------------------------------------------------------- *
 *  Borders classes
/* ------------------------------------------------------------- */

.border-top {
    border-top: 1px solid rgba(132, 132, 132, 0.15) !important;
}

.border-bottom {
    border-bottom: 1px solid rgba(132, 132, 132, 0.15) !important;
}

.border-left {
    border-left: 1px solid rgba(132, 132, 132, 0.15) !important;
}

.border-right {
    border-right: 1px solid rgba(132, 132, 132, 0.15) !important;
}

/* ------------------------------------ *
 *  Bage borders
/* ------------------------------------ */

.border-top,
.border-bottom,
.border-left,
.border-right {
    position: fixed;
    background-color: #fff;
    z-index: 999999;
}

.border-top {
    top: 0;
    left: 0;
    height: 15px;
    width: 100%;
}

.border-bottom {
    bottom: 0;
    left: 0;
    height: 15px;
    width: 100%;
}

.border-left {
    top: 0;
    left: 0;
    width: 15px;
    min-height: 100dvh;
}

.border-right {
    top: 0;
    right: 0;
    width: 15px;
    min-height: 100dvh;
}

/*top line slide*/
progress {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 15px;
    border: none;
    background: transparent;
    z-index: 99999999;
}

progress::-webkit-progress-bar {
    background: transparent;
}

progress::-webkit-progress-value {
    background: linear-gradient(to left, #ffdc0e, #ffdc0e);
    background-attachment: fixed;
}

progress::-moz-progress-bar {
    background: linear-gradient(to left, #ffdc0e, #ffdc0e);
    background-attachment: fixed;
}

/*----------------------------------*/
/* Section Title */
/*----------------------------------*/
.section-title {
    margin-bottom: 50px;
}

.section-title .sub-title {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 32px;
    line-height: 38px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
    /* background: linear-gradient(60deg,
      var(--primary-color) -20%,
      var(--primary-color) 100%);
  -webkit-background-clip: text;background-clip: text;
  -webkit-text-fill-color: transparent;*/
}

.section-title .title {
    margin-bottom: 25px;

    /* &:not(.contact-title) {
    text-transform: capitalize;
  }*/
}

.section-title p {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 29px;
    color: var(--theme-color);
}

.section-title p+p {
    margin-top: 20px;
}

.section-title.section-title-light .title {
    color: #ffffff;
}

.section-title.section-title-light p {
    color: #ffffff;
}

/* Title in BG Dark */
.bg-dark .section-title p {
    color: var(--theme-color);
}

/*----------------------------------*/
/* Breadcrumb */
/*----------------------------------*/
.breadcrumb {
    margin-top: 18px;
    background: transparent;
    border-radius: 0;
    display: inline-flex;
    padding: 14px 40px;
    justify-content: center;
}

.breadcrumb .breadcrumb-item {
    padding-right: 5px;
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
}

.breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb .breadcrumb-item:before {
    color: #ffffff;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--primary-color);
}

/*----------------------------------*/
/* Dropcaps */
/*----------------------------------*/
.dropcap-style-1 {
    float: left;
    display: block;
    background-color: transparent;
    color: #ffffff;
    font-size: 57px;
    height: 55px;
    line-height: 48px;
    margin: 0;
    text-align: left;
    width: auto !important;
    min-width: 60px;
    padding-right: 5px;
    overflow: visible;
}

.dropcap-style-2 {
    float: left;
    display: block;
    font-size: 47px;
    padding: 0;
    color: #ffffff;
    margin: 0.15em 0.4em 0 0;
    text-align: center;
    font-weight: 500;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    line-height: 64px;
    border-radius: 0;
    background-color: var(--primary-color);
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
}

/*----------------------------------*/
/* Blockquote */
/*----------------------------------*/
blockquote {
    font-size: 20px;
    line-height: 34px;
    padding: 0px 30px;
    margin: 0;
    color: #ffffff;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

blockquote cite {
    display: flex;
    gap: 10px;
    line-height: normal;
    align-items: center;
    color: var(--primary-color);
}

blockquote cite:before {
    content: "";
    width: 30px;
    height: 2px;
    display: inline-block;
    background: var(--primary-color);
}

blockquote .blockquote-name {
    font-weight: 500;
}

/*Blockquote Style 1*/
blockquote.blockquote-style-1 {
    padding: 50px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

blockquote.blockquote-style-1 .blockquote-content {
    display: flex;
}

blockquote.blockquote-style-1 .blockquote-content .quote-icon {
    width: 100px;
    flex: 0 0 100px;
    margin-right: 30px;
}

blockquote.blockquote-style-1 .blockquote-content p {
    color: #d4d6d7;
    font-size: 18px;
    line-height: 28px;
}

blockquote.blockquote-style-1:before {
    position: absolute;
    top: -10px;
    left: 10px;
    height: 100%;
    width: 100%;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/*===============================================*/
/* Responsive CSS */
/*===============================================*/
/*@media (max-width: 1200px) {
    h1 {
        font-size: 62px;
    }

    h2 {
        font-size: 65px;
        line-height: 1.2;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 42px;
        line-height: 52px;
    }

    h3 {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 36px;
        line-height: 46px;
    }

    h3 {
        font-size: 30px;
        line-height: 42px;
    }

    h4 {
        font-size: 28px;
        line-height: normal;
    }

    h5 {
        font-size: 24px;
        line-height: normal;
    }

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


    .breadcrumb {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 44px;
        line-height: 54px;
    }

    h2 {
        font-size: 30px;
        line-height: 40px;
    }

    h3 {
        font-size: 28px;
        line-height: 38px;
    }

    h4 {
        font-size: 24px;
        line-height: 34px;
    }

    h5 {
        font-size: 20px;
        line-height: 30px;
    }

    h6 {
        font-size: 18px;
        line-height: 28px;
    }


    .breadcrumb .breadcrumb-item {
        font-size: 16px;
    }

    blockquote.blockquote-style-1 {
        padding: 20px 30px;
    }

    blockquote.blockquote-style-1 .blockquote-content .quote-icon {
        width: 50px;
        flex: 0 0 50px;
        margin-right: 15px;
    }
}
*/
/*****************************
  Helper Classes
*****************************/
/* color */
.text-primary {
    color: var(--primary-color) !important;
}

.text-light {
    color: #dfdfdf !important;
}

.text-dark {
    color: #000000 !important;
}

.gradient-text-1 {
    background: linear-gradient(60deg,
            var(--primary-color) -20%,
            var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* fill colors for svg */
.fill-dark {
    fill: #000000;
}

.fill-primary {
    fill: var(--primary-color);
}

.fill-light {
    fill: #f6f6f6;
}

.fill-white {
    fill: #ffffff;
}

/* background */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-dark {
    background-color: #000000 !important;
}

.bg-light {
    background-color: #f6f6f6 !important;
}

.bg-black {
    background-color: #000000 !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-primary-gradient {
    background-color: var(--primary-color);
    background-image: linear-gradient(170deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
}

/* Transform Rotate Left */
.rotate-left-1 {
    transform: rotate(1deg);
}

.rotate-left-2 {
    transform: rotate(2deg);
}

.rotate-left-3 {
    transform: rotate(3deg);
}

.rotate-left-4 {
    transform: rotate(4deg);
}

.rotate-left-5 {
    transform: rotate(5deg);
}

/* Transform Rotate Right */
.rotate-right-1 {
    transform: rotate(-1deg);
}

.rotate-right-2 {
    transform: rotate(-2deg);
}

.rotate-right-3 {
    transform: rotate(-3deg);
}

.rotate-right-4 {
    transform: rotate(-4deg);
}

.rotate-right-5 {
    transform: rotate(-5deg);
}

/* Border Radius */
.radius-3 {
    border-radius: 3px;
}

.radius-4 {
    border-radius: 4px;
}

.radius-5 {
    border-radius: 5px;
}

.radius-8 {
    border-radius: 8px;
}

.radius-10 {
    border-radius: 10px;
}

.radius-15 {
    border-radius: 15px;
}

.radius-20 {
    border-radius: 20px;
}

.radius-50 {
    border-radius: 50px;
}

.radius-80 {
    border-radius: 80px;
}

.radius-100 {
    border-radius: 100%;
}

/* Z-Index */
.z-index-1 {
    z-index: 1;
}

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

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5;
}

.z-index-6 {
    z-index: 6;
}

.z-index-7 {
    z-index: 7;
}

.z-index-8 {
    z-index: 8;
}

.z-index-9 {
    z-index: 9;
}

.z-index-10 {
    z-index: 10;
}

.z-index-100 {
    z-index: 100;
}

/*----------------------------*/
/* Section Margin Padding */
/*----------------------------*/

.space-xxl-ptb {
    padding: 180px 0;
}

/*
-webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--black);
    font-family: var(--oswald);*/

.space-ptb:not(.space-logo) {
    padding: 150px 0;
}

.space-ptb.space-logo {
    padding: 11px 0 150px 0;
}

.space-pt {
    padding: 150px 0 0;
}

.space-pb {
    padding: 0 0 150px;
}

.space-medium-ptb {
    padding: 90px 0;
}

.space-xmedium-ptb {
    padding: 107px 0;
}

.space-medium-pt {
    padding: 90px 0 0;
}

.space-medium-pb {
    padding: 0 0 90px;
}

.space-small-ptb {
    padding: 60px 0;
}

.space-xsmall-ptb {
    padding: 30px 0;
}


.space-small-pt {
    padding: 60px 0 0;

    &#sec2 {
        padding-top: 40px;
    }
}

.space-just-pt {
    padding-top: 40px;
}

.space-small-pb {
    padding: 0 0 60px;
}

.padding-start {
    padding-left: 110px;
}

.padding-end {
    padding-right: 110px;
}

.full-width {
    padding: 0 80px;
}

.space-mtb {
    margin: 150px 0;
}

.space-mt {
    margin: 150px 0 0;
}

.space-mb {
    margin: 0 0 150px;
}

.space-medium-mtb {
    margin: 90px 0;
}

.space-medium-mt {
    margin: 90px 0 0;
}

.space-medium-mb {
    margin: 0 0 90px;
}

.space-small-mtb {
    margin: 60px 0;
}

.space-small-mt {
    margin: 60px 0 0;
}

.space-small-mb {
    margin: 0 0 60px;
}

.margin-start {
    margin-left: 110px;
}

.margin-end {
    margin-right: 110px;
}

.full-width {
    margin: 0 80px;
}

/*----------------------------*/
/* Section BG Image */
/*----------------------------*/
.section-bg-half {
    position: relative;
}

.section-bg-half .bg-fixed {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
}

.section-bg-half .bg-fixed.clm-3 {
    width: 25%;
}

.section-bg-half .bg-fixed.clm-4 {
    width: 33.3333%;
}

.section-bg-half .bg-fixed.clm-5 {
    width: 41.6666%;
}

.section-bg-half .bg-fixed.clm-6 {
    width: 50%;
}

.section-bg-half .bg-fixed.clm-7 {
    width: 58.3333%;
}

.section-bg-half .bg-fixed.clm-8 {
    width: 66.6666%;
}

/*----------------------------*/
/* Section BG Effect */
/*----------------------------*/
.section-bg-effect {
    position: relative;
    overflow: hidden;
}

.section-bg-effect:before {
    content: "";
    width: 500px;
    height: 500px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: #ffdcea;
    background: radial-gradient(circle,
            rgba(255, 220, 234, 0.4) 0%,
            rgba(255, 255, 255, 0) 80%);
}

.section-bg-effect:after {
    content: "";
    width: 500px;
    height: 500px;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #bef3e9;
    background: radial-gradient(circle,
            rgba(190, 243, 233, 0.3) 0%,
            rgba(255, 255, 255, 0) 80%);
}

/*-----------------------*/
/* Cursor */
/*-----------------------*/
#cursor {
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    pointer-events: none;
}

/* Ajout d'un point central */
.cursor__dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
    .cursor__circle {
        width: 40px;
        height: 40px;
        margin-top: -50%;
        margin-left: -50%;
        border-radius: 50%;
        border: 2px solid var(--primary-color);
        transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Cursor Text */
    #cursor.text .cursor__circle,
    #cursor.arrow .cursor__circle {
        width: 130px;
        height: 130px;
        border: none;
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.3);
    }

    #cursor.text::after {
        content: "";
        position: absolute;
        left: -50%;
        top: -50%;
        width: 100%;
        height: 100%;
        color: #000000;
        font-size: 18px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #cursor::after {
        content: attr(data-cursor-text) !important;
    }

    /* Cursor Arrow */
    #cursor.arrow::after {
        content: "" !important;
        position: absolute;
        left: -50%;
        top: -50%;
        width: 100%;
        height: 100%;
        color: #000000;
        font-size: 18px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
    }

    #cursor.cursor-link .cursor__circle {
        opacity: 0;
        width: 0;
        height: 0;
    }

    #cursor.cursor-link::after {
        content: normal;
        opacity: 0;
    }

    #cursor.overlay .cursor__circle {
        width: 48px;
        height: 48px;
        background-color: rgba(227, 222, 193, 0.08);
        border-color: transparent;
    }

    /* Effet hover pour liens et boutons */
    #cursor.cursor-hover .cursor__circle {
        transform: scale(1.5);
        background-color: rgba(0, 0, 0, 0.2);
    }

    #cursor.cursor-hover .cursor__dot {
        background-color: rgba(0, 0, 0, 0.8);
    }
}


/*Font Weight*/
.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

/* Text Stroke */
.bg-text-stroke {
    color: transparent !important;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff;
    display: block;
}

/* img holder */
.bg-holder {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

/*=====================================================*/
/* Grid Col - CSS */
/*=====================================================*/

.gap-5 {
    gap: 5rem !important;
}

.gap-xxl {
    gap: 10rem !important;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
}

.grid-justify-center {
    justify-items: center;
}

.grid-align-center {
    align-items: center;
}

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

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

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

.grid-gap-10 {
    grid-gap: 10px;
}

.grid-gap-5 {
    grid-gap: 5;
}

.grid-gap-0 {
    grid-gap: 0;
}

.grid-wrapper.grid-xl-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-wrapper.grid-xl-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-wrapper.grid-xl-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-wrapper.grid-xl-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-wrapper.grid-xl-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-wrapper.grid-xl-6 {
    grid-template-columns: repeat(6, 1fr);
}

@media only screen and (max-width: 1199px) {
    .grid-wrapper.grid-lg-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-wrapper.grid-lg-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-wrapper.grid-lg-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-wrapper.grid-lg-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-wrapper.grid-lg-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-wrapper.grid-lg-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .grid-wrapper.grid-md-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-wrapper.grid-md-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-wrapper.grid-md-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-wrapper.grid-md-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-wrapper.grid-md-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-wrapper.grid-md-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .grid-wrapper.grid-sm-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-wrapper.grid-sm-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-wrapper.grid-sm-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-wrapper.grid-sm-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-wrapper.grid-sm-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-wrapper.grid-sm-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media only screen and (max-width: 575px) {
    .grid-wrapper.grid-xs-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-wrapper.grid-xs-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-wrapper.grid-xs-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-wrapper.grid-xs-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-wrapper.grid-xs-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-wrapper.grid-xs-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}

/*----------------------------*/
/* Rotate CSS */
/*----------------------------*/
.rotate {
    transform: rotate(2deg);
}

/*=====================================================*/
/* Responsive CSS */
/*=====================================================*/
@media (max-width: 1400px) {

    /* Page Section Padding */
    .space-ptb {
        padding: 120px 0;
    }

    .space-pt {
        padding: 120px 0 0;
    }

    .space-pb {
        padding: 0 0 120px;
    }

    .space-mb {
        margin: 0 0 120px;
    }

    .space-medium-ptb {
        padding: 100px 0;
    }

    .space-medium-pt {
        padding: 100px 0 0;
    }

    .space-medium-pb {
        padding: 0 0 100px;
    }

    .space-small-ptb {
        padding: 80px 0;
    }

    .space-small-pt {
        padding: 80px 0 0;
    }

    .space-small-pb {
        padding: 0 0 80px;
    }

    /* Page Section Margin */
    .space-mtb {
        margin: 120px 0;
    }

    .space-mt {
        margin: 120px 0 0;
    }

    .space-mb {
        margin: 0 0 120px;
    }

    .space-medium-mtb {
        margin: 100px 0;
    }

    .space-medium-mt {
        margin: 100px 0 0;
    }

    .space-medium-mb {
        margin: 0 0 100px;
    }

    .space-small-mtb {
        margin: 80px 0;
    }

    .space-small-mt {
        margin: 80px 0 0;
    }

    .space-small-mb {
        margin: 0 0 80px;
    }

    .pagescroll {
        &.parallax-images {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto;
        }

        .image_cont {
            order: -1;
        }

        .parallax-text {
            order: 2;
        }
    }


}

@media (max-width: 1199px) {

    /* Page Section Padding */
    .space-ptb {
        padding: 100px 0;
    }

    .space-pt {
        padding: 100px 0 0;
    }

    .space-pb {
        padding: 0 0 100px;
    }

    .space-mb {
        margin: 0 0 100px;
    }

    .space-medium-ptb {
        padding: 80px 0;
    }

    .space-medium-pt {
        padding: 80px 0 0;
    }

    .space-medium-pb {
        padding: 0 0 80px;
    }

    .space-small-ptb {
        padding: 60px 0;
    }

    .space-small-pt {
        padding: 60px 0 0;
    }

    .space-small-pb {
        padding: 0 0 60px;
    }

    .padding-start {
        padding-left: 40px;
    }

    .padding-end {
        padding-right: 40px;
    }

    .full-width {
        padding: 0 40px;
    }

    /* Page Section Margin */
    .space-mtb {
        margin: 100px 0;
    }

    .space-mt {
        margin: 100px 0 0;
    }

    .space-mb {
        margin: 0 0 100px;
    }

    .space-medium-mtb {
        margin: 80px 0;
    }

    .space-medium-mt {
        margin: 80px 0 0;
    }

    .space-medium-mb {
        margin: 0 0 80px;
    }

    .space-small-mtb {
        margin: 60px 0;
    }

    .space-small-mt {
        margin: 60px 0 0;
    }

    .space-small-mb {
        margin: 0 0 60px;
    }

    .margin-start {
        margin-left: 40px;
    }

    .margin-end {
        margin-right: 40px;
    }
}

@media (max-width: 991px) {

    /* Page Section Padding */
    .space-ptb {
        padding: 90px 0;
    }

    .space-pt {
        padding: 90px 0 0;
    }

    .space-pb {
        padding: 0 0 90px;
    }

    .space-mb {
        margin: 0 0 90px;
    }

    .space-medium-ptb {
        padding: 70px 0;
    }

    .space-medium-pt {
        padding: 70px 0 0;
    }

    .space-medium-pb {
        padding: 0 0 70px;
    }

    .space-small-ptb {
        padding: 50px 0;
    }

    .space-small-pt {
        padding: 50px 0 0;
    }

    .space-small-pb {
        padding: 0 0 50px;
    }

    .padding-start {
        padding-left: 20px;
    }

    .padding-end {
        padding-right: 20px;
    }

    .full-width {
        padding: 0 30px;
    }

    /* Page Section Margin */
    .space-mtb {
        margin: 90px 0;
    }

    .space-mt {
        margin: 90px 0 0;
    }

    .space-mb {
        margin: 0 0 90px;
    }

    .space-medium-mtb {
        margin: 70px 0;
    }

    .space-medium-mt {
        margin: 70px 0 0;
    }

    .space-medium-mb {
        margin: 0 0 70px;
    }

    .space-small-mtb {
        margin: 50px 0;
    }

    .space-small-mt {
        margin: 50px 0 0;
    }

    .space-small-mb {
        margin: 0 0 50px;
    }

    .margin-start {
        margin-left: 20px;
    }

    .margin-end {
        margin-right: 20px;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}

@media (max-width: 767px) {

    /* Page Section Padding */
    .space-ptb {
        padding: 70px 0;
    }

    .space-pt {
        padding: 70px 0 0;
    }

    .space-pb {
        padding: 0 0 70px;
    }

    .space-mb {
        margin: 0 0 70px;
    }

    .space-medium-ptb {
        padding: 50px 0;
    }

    .space-medium-pt {
        padding: 50px 0 0;
    }

    .space-medium-pb {
        padding: 0 0 50px;
    }

    .padding-start {
        padding-left: 0px;
    }

    .padding-end {
        padding-right: 0px;
    }

    /* Page Section Margin */
    .space-mtb {
        margin: 70px 0;
    }

    .space-mt {
        margin: 70px 0 0;
    }

    .space-mb {
        margin: 0 0 70px;
    }

    .space-medium-mtb {
        margin: 50px 0;
    }

    .space-medium-mt {
        margin: 50px 0 0;
    }

    .space-medium-mb {
        margin: 0 0 50px;
    }

    .margin-start {
        margin-left: 0px;
    }

    .margin-end {
        margin-right: 0px;
    }

    .full-width {
        padding: 0 15px;
    }
}

@media (max-width: 575px) {

    /* Page Section Padding */
    .space-ptb {
        padding: 50px 0;
    }

    .space-ptb:not(.space-logo) {
        padding: 100px 0 !important;
    }

    .space-pt {
        padding: 50px 0 0;
    }

    .space-pb {
        padding: 0 0 50px;
    }

    .space-mb {
        margin: 0 0 50px;
    }

    .space-medium-ptb {
        padding: 50px 0;
    }

    .space-medium-pt {
        padding: 50px 0 0;
    }

    .space-medium-pb {
        padding: 0 0 50px;
    }

    .padding-start {
        padding-left: 0px;
    }

    .padding-end {
        padding-right: 0px;
    }

    /* Page Section Margin */
    .space-mtb {
        margin: 50px 0;
    }

    .space-mt {
        margin: 50px 0 0;
    }

    .space-mb {
        margin: 0 0 50px;
    }

    .space-medium-mtb {
        margin: 50px 0;
    }

    .space-medium-mt {
        margin: 50px 0 0;
    }

    .space-medium-mb {
        margin: 0 0 50px;
    }

    .margin-start {
        margin-left: 0px;
    }

    .margin-end {
        margin-right: 0px;
    }

    .full-width {
        padding: 0 15px;
    }

    .section-bg-effect:before {
        width: 400px;
        height: 400px;
    }

    .section-bg-effect:after {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 479px) {
    .section-bg-effect:before {
        width: 300px;
        height: 300px;
    }

    .section-bg-effect:after {
        width: 300px;
        height: 300px;
    }
}

/*****************************
  Accordion
*****************************/
.accordion .accordion-item {
    border: none;
    background-color: inherit;
    margin-bottom: 20px;
}

.accordion .accordion-item .accordion-header {
    overflow: hidden;
    border-radius: 5px;
}

.accordion .accordion-item .accordion-header .accordion-button {
    font-size: 22px;
    padding: 30px 30px;
    padding-right: 75px;
    background-color: inherit;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    background-color: #000000;
}

.accordion .accordion-item .accordion-header .accordion-button:after {
    content: "\2b";
    background-image: inherit;
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border: 1px solid rgb(255 255 255 / 12%);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -19px;
    padding-bottom: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.accordion .accordion-item .accordion-header .accordion-button:before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -22px;
    width: 40px;
    height: 40px;
    border: 1px solid rgb(255 255 255 / 13%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.accordion .accordion-item .accordion-header .accordion-button:hover {
    color: var(--primary-color);
}

.accordion .accordion-item .accordion-header .accordion-button:hover:after {
    color: var(--primary-color);
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    box-shadow: inherit;
    outline: inherit;
    color: #000;
    border-image: linear-gradient(to right,
            var(--primary-color),
            var(--primary-color)) 1;
    background-color: var(--primary-color);
    background: linear-gradient(170deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
    content: "\f068";
    background-image: inherit;
    font-family: "Font Awesome 5 Pro";
    transform: inherit;
    color: #000000;
    background: none;
    border-color: rgba(255, 255, 255, 0.15);
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):before {
    border-color: rgba(255, 255, 255, 0.15);
}

.accordion .accordion-item .accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: inherit;
}

.accordion .accordion-item .accordion-collapse .accordion-body {
    background-color: #000000;
    padding: 30px 30px;
    padding-bottom: 10px;
    color: #d4d6d7;
    font-size: 18px;
}

.accordion .accordion-item:first-of-type {
    border-radius: 0px;
}

.accordion .accordion-item:last-of-type {
    border-radius: 0px;
}

.accordion .accordion-item:last-child {
    margin-bottom: 0px;
}

/*.accordion .accordion-item .accordion-collapse {
    transition: height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion .accordion-item .accordion-collapse .accordion-body {
    padding-top: 0 !important;
    transition: padding 0.3s ease-out; 
}

.accordion .accordion-item .accordion-collapse.show {
    height: auto !important;
    padding-top: 10px !important; 
}
*/
@media (max-width: 991px) {
    .accordion .accordion-item h5.accordion-header .accordion-button {
        font-size: 20px;
        padding: 20px 20px;
        padding-right: 75px;
    }
}

/*****************************
  Address Info
*****************************/
.address-info-wrapper .address-info-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}

.address-info-wrapper .address-info-list {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    flex-direction: column;
    list-style-type: none;
}

.address-info-wrapper .address-info-list li {
    display: flex;
    gap: 20px;
    font-size: 20px;
    align-items: baseline;
}

.address-info-wrapper .address-info-list li i {
    min-width: 20px;
    text-align: center;
}

.address-info-wrapper.address-info-dark .address-info-title {
    color: #ffffff;
}

.address-info-wrapper.address-info-dark .address-info-list li {
    color: #ffffff;
}

/*****************************
  Social Info
*****************************/
.social-info-wrapper .social-info-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-info-wrapper .social-info-title:after {
    content: "";
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
}

.social-info-wrapper .social-info-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style-type: none;
}

.social-info-wrapper .social-info-list a {
    display: inline-block;
    position: relative;
    font-size: 16px;
    line-height: 30px;
    padding: 3px 15px;
    color: #d4d6d7;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.social-info-wrapper .social-info-list a span {
    position: relative;
    z-index: 1;
}

.social-info-wrapper .social-info-list a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
}

.social-info-wrapper .social-info-list a:hover {
    color: #ffffff;
}

.social-info-wrapper .social-info-list a:hover:before {
    opacity: 1;
}

.social-info-wrapper.social-info-dark .social-info-list a {
    color: #ffffff;
    box-shadow: inset 0 0 0 1px #ffffff;
}

/*****************************
  Action box
*****************************/
.action-box {
    display: flex;
}

.action-box .action-box-content span {
    font-size: 90px;
    line-height: normal;
    font-weight: bold;
    color: #ffffff;
    font-family: var(--oswald);
    margin-bottom: 10px;
    display: block;
}

.action-box .action-box-content p {
    font-size: 20px;
    margin-bottom: 0px;
}

.action-box.action-box-02 {
    flex-direction: column;
    align-items: center;
    width: 60%;
    margin: 0 auto;
}

.action-box.action-box-02 .action-box-content {
    margin-bottom: 30px;
}

.action-box.action-box-02 .action-box-content span {
    margin-bottom: 0;
}

.action-box.action-box-03 {
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.action-box.action-box-03 .action-box-content {
    text-align: center;
    margin-bottom: 45px;
}

.action-box.action-box-03 .action-box-content span {
    margin-bottom: 0;
}

.action-box-section .action-box-bg {
    background-color: var(--primary-color);
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
}

.action-box-section .action-box-bg.position-absolute {
    top: 48%;
    right: 0;
    width: calc(100% - 100px);
}

@media (max-width: 1399px) {
    .action-box.action-box-02 {
        width: 80%;
    }

    .action-box-section .action-box-bg {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .action-box-section .action-box-bg.position-absolute {
        top: 38%;
    }
}

@media (max-width: 1199px) {
    .action-box.action-box-02 .action-box-content span {
        font-size: 70px;
    }

    .action-box-section .action-box-bg {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .action-box-section .action-box-bg.position-absolute {
        top: 58%;
    }
}

@media (max-width: 991px) {
    .action-box .action-box-content span {
        font-size: 48px;
    }

    .action-box.action-box-02 .action-box-content span {
        font-size: 48px;
    }

    .action-box-section .action-box-bg {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .action-box {
        flex-direction: column;
    }

    .action-box .action-box-content {
        margin-bottom: 30px;
    }

    .action-box .action-box-content span {
        font-size: 30px;
    }

    .action-box.action-box-02 {
        width: 100%;
    }

    .action-box.action-box-02 .action-box-content span {
        font-size: 30px;
    }

    .action-box-section {
        margin-bottom: 60px;
    }

    .action-box-section .action-box-bg.position-absolute {
        top: 0;
        position: inherit !important;
        width: 95%;
        margin-left: auto;
        margin-top: -50px;
    }
}

/*****************************
  Awards
*****************************/
.awards-wrapper .awards-item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.awards-wrapper .awards-item .item-inner {
    display: flex;
    gap: 100px;
    padding: 25px 0;
    align-items: center;
    background-color: #000000;
}

.awards-wrapper .awards-item .awards-year {
    min-width: 60px;
    margin-right: 50px;
    transition: all 0.3s ease-in-out;
}

.awards-wrapper .awards-item .awards-city {
    min-width: 150px;
    transition: all 0.3s ease-in-out;
}

.awards-wrapper .awards-item .awards-name {
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.awards-wrapper .awards-item .awards-action {
    margin-left: auto;
    transition: all 0.3s ease-in-out;
}

.awards-wrapper .awards-item .gsap-img-animation {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 150px;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.awards-wrapper .awards-item .marquee-wrapper {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.awards-wrapper .awards-item:hover .item-inner .awards-year,
.awards-wrapper .awards-item:hover .item-inner .awards-city,
.awards-wrapper .awards-item:hover .item-inner .awards-name {
    opacity: 0;
    pointer-events: none;
}

.awards-wrapper .awards-item:hover .awards-action {
    z-index: 8;
}

.awards-wrapper .awards-item:hover .marquee-wrapper {
    opacity: 1;
    pointer-events: auto;
}

/*=====================================================*/
/* Responsive CSS */
/*=====================================================*/
@media (max-width: 991px) {
    .awards-wrapper .awards-item .item-inner {
        gap: 60px;
    }

    .awards-wrapper .awards-item .awards-year {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .awards-wrapper .awards-item .item-inner {
        flex-direction: column;
        gap: 15px;
        align-items: normal;
    }

    .awards-wrapper .awards-item .awards-action {
        margin-left: 0;
    }

    .awards-wrapper .awards-item .gsap-img-animation {
        position: absolute;
        left: auto;
        right: 0;
        bottom: 30px;
        top: auto;
        opacity: 1;
        visibility: visible;
        transform: inherit !important;
        z-index: -1;
    }
}



/*================================================
3. Blog CSS
=================================================*/
.blog-wrap {
    padding-top: 60px;
}

.blog-wrap .blog-box {
    padding: 0 20px 20px 20px;
    border-radius: 12px;
    border: 0.5px solid #ddd;
}

.blog-wrap .blog-box .blog-img {
    height: 326px;
    border-radius: 12px;
    margin-top: -60px;
}

.blog-wrap .blog-box .blog-img img {
    transition: all 0.4s linear;
}

.blog-wrap .blog-box .blog-info .h3 a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.blog-wrap .blog-box .blog-info .blog-meta-list li {
    transition: all 0.2s ease-in-out;
    display: inline-flex;
}

.blog-wrap .blog-box .blog-info .blog-meta-list li a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    background-color: #f5f5f6;
    border-radius: 25px;
    padding: 11px 21px;
    color: #000;
}

.blog-wrap .blog-box .blog-info .blog-meta-list li:hover {
    transform: translateY(-4px);
}

.blog-wrap .blog-box:hover .blog-img img {
    transform: scale(1.05);
}

.blog-wrap .blog-box:hover .blog-info .h3 a {
    background-size: 100% 2px;
}

.blog-two-box .blog-two-img {
    height: 460px;
}

.blog-two-box .blog-two-img img {
    transition: 0.9s;
}

@media only screen and (max-width: 991.98px) {
    .blog-two-box .blog-two-img {
        height: 380px;
    }
}

.blog-two-box .blog-two-info .blog-two-title a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.blog-two-box:hover .blog-two-img img {
    transform: scale(1.2) rotate(-2deg);
}

.blog-two-box:hover .blog-two-info .blog-two-title a {
    background-size: 100% 2px;
}

.blog-two-box.blog-three .blog-two-img {
    height: 487px;
}

@media only screen and (max-width: 1199.98px) {
    .blog-two-box.blog-three .blog-two-img {
        height: 350px;
    }
}

.blog-two-box.blog-three .blog-two-info .blg-category {
    border-radius: 50px;
    border: 1px solid var(--color-black);
    padding: 11px 14px;
    line-height: 1;
    white-space: nowrap;
    font-size: 14px;
    transition: all 0.3s;
}

.blog-two-box.blog-three:hover .blog-two-info .blg-category {
    background-color: var(--color-orange);
    border: 1px solid var(--color-orange);
    color: #fff;
}

.single-sidebar .sidebar-title {
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.single-sidebar:not(:last-child) {
    margin-bottom: 35px;
}

.sidebar-search input {
    border: none;
    border-bottom: 1px solid #E9E9E9;
    padding: 0 50px 14px 0;
}

.sidebar-search button svg,
.sidebar-search button i {
    color: #646670;
}

.sidebar-category {
    gap: 15px;
}

.sidebar-category li {
    color: var(--color-black);
    font-size: 18px;
}

.sidebar-category li span {
    float: right;
}

.sidebar-recent-blog .recent-blog-img {
    max-width: 140px;
}

@media only screen and (max-width: 1399.98px) {
    .sidebar-recent-blog .recent-blog-img {
        max-width: 120px;
    }
}

.sidebar-recent-blog .recent-blog-info .recent-blog-title {
    line-height: 160%;
}

.sidebar-tags li {
    border-radius: 50px;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.sidebar-tags li a {
    color: var(--color-black);
    font-size: 18px;
    line-height: 1;
    padding: 8px 14px 9px;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 50px;
}

.sidebar-tags li:hover a {
    background-color: var(--color-secondary-green);
    color: #fff;
}

.page-list li {
    display: inline-flex;
    font-size: 18px;
    line-height: 30px;
    border: 1px solid #9CA5BF;
    color: var(--color-black);
    border-radius: 5px 5px 5px 0px;
    width: 40px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: all 0.4s;
}

.page-list li i {
    -webkit-text-stroke: 1px;
}

.page-list li.active,
.page-list li:hover {
    background-color: var(--color-secondary-green);
    color: #fff;
    border: 1px solid transparent;
}

.blog-single-wrapper p {
    margin-bottom: 18px;
}

.blog-single-wrapper p:nth-last-of-type(1) {
    margin-bottom: 0px;
}

blockquote {
    /*background-color: #E0F8E5;*/
    padding: 20px;
}

blockquote.wp-block-quote p {
    color: var(--color-black);
    font-family: var(--ff-unbounded);
    font-weight: 300;
    font-size: 18px;
    line-height: 177.778%;
}

blockquote.wp-block-quote cite {
    color: var(--color-black);
    font-family: var(--ff-unbounded);
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-single-share.tags {
    padding: 30px 0;
    border-top: 1px solid #ECECEE;
    border-bottom: 1px solid #ECECEE;
}

.comments-wrap .single-comments-box {
    gap: 22px;
}

@media only screen and (max-width: 991.98px) {
    .comments-wrap .single-comments-box {
        gap: 12px;
    }
}

.comments-wrap .single-comments-box:not(:last-child) {
    margin-bottom: 30px;
}

.comments-wrap .single-comments-box:nth-child(even) {
    padding-left: 100px;
}

@media only screen and (max-width: 991.98px) {
    .comments-wrap .single-comments-box:nth-child(even) {
        padding-left: 20px;
    }
}

.comments-wrap .single-comments-box .comments-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 3px;
    overflow: hidden;
    background-color: #F0FCF2;
}

.comments-wrap .single-comments-box .comments-img img {
    border-radius: 50%;
}

.comments-wrap .single-comments-box .comments-info h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 160%;
}

.comments-wrap .single-comments-box .comments-info p {
    font-size: 18px;
    margin: 4px 0 10px;
}

@media only screen and (max-width: 991.98px) {
    .comments-wrap .single-comments-box .comments-info p {
        margin: 4px 0 10px;
    }
}

.comments-wrap .single-comments-box .comments-info .reply-btn {
    gap: 8px;
    transition: all 0.3s;
}


/*****************************
	Blog Post
*****************************/
/* Blog Post Style 1 -------------------------*/
.blog-post-wrapper.blog-style-1 {
    position: relative;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000000;
    border-radius: 10px;
}

.blog-post-wrapper.blog-style-1 .post-meta {
    margin-bottom: 15px;
}

.blog-post-wrapper.blog-style-1 .post-title {
    margin-bottom: 35px;
}

.blog-post-wrapper.blog-style-1 .blog-post-img {
    overflow: hidden;
}

.blog-post-wrapper.blog-style-1 .blog-post-img img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.blog-post-wrapper.blog-style-1 .blog-action-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.blog-post-wrapper.blog-style-1 .blog-action-info .post-category {
    font-family: "Jost", sans-serif;
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-post-wrapper.blog-style-1:before {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    top: 0;
    bottom: 3px;
    margin: -4px;
    z-index: -1;
    opacity: 0;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(to right,
            var(--primary-color),
            var(--primary-color));
}

.blog-post-wrapper.blog-style-1:hover .blog-post-img img {
    transform: scale(1.1);
}

.blog-post-wrapper.blog-style-1:hover .post-title a,
.blog-post-wrapper.blog-style-1:hover .post-title a:hover {
    color: #ffffff;
}

.blog-post-wrapper.blog-style-1:hover .blog-action-info .post-category a:hover {
    color: var(--primary-color);
}

.blog-post-wrapper.blog-style-1:hover:before {
    opacity: 1;
}

.blog-post-wrapper.blog-style-1 .post-title a:hover,
.blog-post-wrapper.blog-style-1 .post-title a:focus {
    color: #ffffff;
}

/*****************************
  Services
*****************************/
.mygradient stop.start-color {
    stop-color: #d4d6d7;
}

.mygradient stop.end-color {
    stop-color: #d4d6d7;
}

.mygradient2 stop.start-color {
    stop-color: var(--primary-color);
}

.mygradient2 stop.end-color {
    stop-color: var(--primary-color);
}

.col-sservices {
    display: none;
}

/* Service Style 1 */
.service-wrapper.service-style-1 {
    position: relative;
    margin: 0;
    padding: 40px 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    /*text-align: center;*/


    /*max-height: 361.19px;*/
    h3:not(.text-yellow) {
        color: var(--white);
    }

    h3.text-yellow {
        color: var(--primary-color);
    }

    &:not(.bg-yellow):not(.bg-white) {
        background: #ffffff0a;
    }

    /*&:not(.bg-yellow) {
        background: #21212147;
        max-height: 443.19px;

        &:hover {
            color: var(--black);

            p {
                color: var(--black);
            }

            h3 {
                color: var(--black);
            }
        }
    }*/



    /*&.bg-yellow {
    min-height: 561.19px;
    min-height: 750px;
  }*/

    &.bg-yellow {
        background: var(--primary-color);
    }

    &.bg-black {
        background: var(--color-black);
    }

    &.bg-white {
        background: var(--color-white);
    }

    /*&:not(.bg-yellow):not(.bg-white) {
    background: #030303;
  }*/
}

.service-wrapper.service-style-1 .service-inner {
    /*padding-left: 4px;*/
    padding-bottom: 4px;
    overflow: hidden;
}

.service-wrapper.service-style-1 .service-icon {
    opacity: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.service-wrapper.service-style-1 .service-icon svg {
    width: 70px;
    fill: url(#mygradient);
    transition: all 0.3s ease-in-out;
}

.service-wrapper.service-style-1 .bg-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.service-wrapper.service-style-1 .bg-icon svg {
    width: 90px;
    fill: url(#mygradient2);
    transition: all 0.3s ease-in-out;
}

.service-wrapper.service-style-1 .service-content .service-title {
    margin-bottom: 20px;
}

.service-wrapper.service-style-1 .service-content p {
    margin-bottom: 0;
}

.service-wrapper.service-style-1 .service-content .service-links {
    opacity: 0;
    margin-top: 20px;
    margin-bottom: -70px;
    transition: all 0.3s ease-in-out;
}

.service-wrapper.service-style-1 .service-content .service-links .btn-arrow {
    border-color: var(--primary-color);
}

.service-wrapper.service-style-1 .service-content .service-links .btn-arrow:after {
    border-color: var(--primary-color);
}

.service-wrapper.service-style-1:not(.bg-yellow):before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    margin: -3px;
    opacity: 0;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(130deg, var(--primary-color), var(--primary-color), var(--primary-color)) 100%;
    border: none;
}

.service-wrapper.service-style-1.bg-yellow:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    margin: -3px;
    opacity: 0;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(130deg, #ffffff, #ffffff, #ffffff) 100%;
    border: none;
}

/*.service-wrapper.service-style-1:hover:before,
.service-wrapper.service-style-1.active:before {
    opacity: 1;
}

.service-wrapper.service-style-1:hover {
    background: transparent !important;
}*/

/*.service-wrapper.service-style-1:hover .service-icon {
  margin-top: -70px;
  opacity: 0;
}*/

/*.service-wrapper.service-style-1:hover .bg-icon {
  opacity: 0.2;
}*/

/*.service-wrapper.service-style-1:hover .service-content .service-links {
  margin-bottom: 0;
  opacity: 1;
}-*/

/* Service Style 2 */
.service-wrapper.service-style-2 {
    position: relative;
    margin: 0;
    padding: 40px;
    min-height: 450px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease-in-out;
}

.service-wrapper.service-style-2 .service-inner {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.service-wrapper.service-style-2 .service-content {
    margin-top: auto;
}

.service-wrapper.service-style-2 .service-content .service-title {
    margin-bottom: 25px;
}

.service-wrapper.service-style-2 .service-icon {
    text-align: right;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.service-wrapper.service-style-2 .service-icon svg {
    width: 80px;
    fill: url(#mygradient);
    transition: all 0.3s ease-in-out;
}

/* Service Top Spacing */
.services.grid-wrapper.service-top-space {
    margin-top: 100px;
}

.service-wrapper.service-style-2.service-bottom-space {
    margin-bottom: 100px;
}

.service-wrapper.service-style-2.service-top-space {
    margin-top: 100px;
}

.service-wrapper.service-style-2.service-bottom-space {
    margin-bottom: 100px;
}

/*Service Single*/
.service-single .service-img img {
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .service-wrapper.service-style-2 {
        padding: 30px;
    }
}

@media (max-width: 991px) {

    .service-wrapper.service-style-2.service-top-space,
    .service-wrapper.service-style-2.service-bottom-space {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .service-wrapper.service-style-1 {
        padding: 40px 20px;
    }

    .service-top-space {
        margin-top: 50px;
    }

    .service-wrapper.service-style-2 {
        min-height: 350px;
    }
}

@media (max-width: 575px) {
    .service-top-space {
        margin-top: 30px;
    }

    .services.grid-wrapper.service-top-space {
        margin-top: 30px;
    }
}

/*****************************
	Services Colors
*****************************/

.bg_light_blue {
    background-color: #f8f7ff !important;
}

.bg_color_gray {
    background-color: #f0efe7 !important;
}

.bg_dp_black {
    background-color: var(--color-black) !important;
}

/*================================================
8. Service CSS
=================================================*/
.services-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 60px 30px 30px;
    height: 100%;
}

@media only screen and (max-width: 1199.98px) {
    .services-box {
        padding: 25px;
    }
}

.services-box .services-info .h3 {
    margin: 50px 0 24px;
}

@media only screen and (max-width: 1199.98px) {
    .services-box .services-info .h3 {
        margin: 30px 0 14px;
    }
}

.services-box .services-info .common-design-btn-two {
    margin-top: 50px;
}

@media only screen and (max-width: 1199.98px) {
    .services-box .services-info .common-design-btn-two {
        margin-top: 30px;
    }
}

.services-box:hover .services-info .common-design-btn-two {
    background-color: var(--color-primary-blue);
    border: 1px solid var(--color-primary-blue);
    color: #fff;
}

.services-box:hover .services-info .common-design-btn-two .button-icon-wrap {
    background-color: #fff;
    border: 1px solid #fff;
}

.service-two-box-wrap .service-two-info-wrap:not(.service-tire) {
    padding: 100px 0 100px;
    position: relative;
}

.service-two-box-wrap .service-two-info-wrap.service-tire {
    padding: 50px 0 50px;
    position: relative;
}

.service-item1 {
    z-index: 1;
    position: relative;
}

.service-item2 {
    z-index: 2;
    position: relative;
}

.service-item3 {
    z-index: 3;
    position: relative;
}

.next__text-slider.slick-initialized.slick-slider {
    margin-bottom: 50px;
}

.service-two-box-wrap .service-two-box .service-two-info-wrap {
    gap: 30px;
}

.service-two-box-wrap .service-two-box .service-two-info-wrap h2 {
    font-size: 96px;
    font-weight: 500;
    position: relative;
    line-height: 1;
    padding-left: 50px;

    &.color-white a {
        color: var(--color-white);
    }

    &.color-black a {
        color: var(--color-black);

        &:hover {
            color: var(--primary-color);
        }

        &:before {
            color: var(--color-black);
        }
    }

    &.color-black::before {
        color: var(--color-black);
    }

    &.color-yellow a {
        color: var(--primary-color);

        &:hover {
            color: var(--color-black);
        }
    }

    &.color-yellow::before {
        color: var(--primary-color);
    }
}

.service-two-box-wrap .service-two-box .service-two-info-wrap h2::before {
    content: "0"counter(count) ".";
    counter-increment: count;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    top: 13px;
    left: 0;
}

@media only screen and (max-width: 991.98px) {
    .service-two-box-wrap .service-two-box .service-two-info-wrap h2 {
        font-size: 60px;
    }
}

.service-two-box-wrap .service-two-box .service-two-info-wrap p {
    max-width: 410px;
    font-size: 20px;
    color: var(--color-black);

    &.color-white {
        color: var(--color-white);
    }
}

.service-two-box-wrap .service-two-box .service-showcases {
    margin-top: 100px;
    gap: 20px;
}

.service-two-box-wrap .service-two-box .service-showcases {
    li {
        position: relative;
    }

    &.color-black li {
        color: var(--color-black);
    }
}

.service-two-box-wrap .service-two-box .service-showcases li:not(:last-child) {
    padding-right: 120px;
    margin-right: 100px;
}

.service-two-box-wrap .service-two-box .service-showcases li:not(:last-child)::before {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, 50%);
    background-color: var(--color-black);
    width: 140px;
    height: 1px;
    content: "";
}

@media only screen and (max-width: 1199.98px) {
    .service-two-box-wrap .service-two-box .service-showcases {
        margin-top: 40px;
    }

    .service-two-box-wrap .service-two-box .service-showcases li:not(:last-child) {
        padding-right: 20px;
        margin-right: 0px;
    }

    .service-two-box-wrap .service-two-box .service-showcases li:not(:last-child)::before {
        width: 20px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .service-two-box-wrap {
        padding: 50px 0 80px;
    }
}

.service-three-box {
    padding: 0px 40px 60px;
}

.service-three-box:not(:last-child) {
    border-bottom: 1px solid var(--color-black);
}

.service-three-box:not(:first-child) {
    padding-top: 90px;
}

@media only screen and (min-width: 992px) {
    .service-three-box:last-child {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 1399.98px) {
    .service-three-box:not(:first-child) {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .service-three-box:not(:first-child) {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 991.98px) {
    .service-three-box {
        padding: 30px;
        border: 1px solid var(--color-black);
    }

    .service-three-box:not(:first-child) {
        padding-top: 30px;
    }

    .service-three-box:not(:last-child) {
        border-bottom: unset;
    }
}

.service-three-box .service-three-title {
    font-size: 74px;
}

.service-three-box .service-three-title .reveal-line-2 {
    padding-bottom: 0;
}

.service-three-box .service-three-title::before {
    content: "/"counter(count);
    counter-increment: count;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    top: 13px;
    left: 101%;
    font-family: var(--ff-inter-sans);
}

@media only screen and (max-width: 1399.98px) {
    .service-three-box .service-three-title {
        font-size: 59px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .service-three-box .service-three-title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 991.98px) {
    .service-three-box .service-three-title {
        font-size: 34px;
    }
}

.service-three-box .service-three-list {
    gap: 50px;
    padding-left: 20px;
    margin: 0;
}

.service-three-box .service-three-list li {
    font-size: 20px;
    color: var(--color-black);
}

@media only screen and (max-width: 1399.98px) {
    .service-three-box .service-three-list {
        gap: 40px;
    }
}

@media only screen and (max-width: 991.98px) {
    .service-three-box .service-three-list {
        gap: 30px;
    }

    .service-three-box .service-three-list li {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) {
    .service-three-box-wrap::before {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--color-black);
        height: 1000%;
        width: 1px;
        content: "";
    }
}

.service-three-pin-wrap {
    padding-top: 100px;
}

@media only screen and (max-width: 1199.98px) {
    .service-three-pin-wrap {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 991.98px) {
    .service-three-pin-wrap {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 991.98px) {
    .service-area-three.section-border-black {
        border-bottom: unset;
    }
}

.service-slide-box-corporate span {
    font-size: 14px;
    line-height: 1;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid #fff;
}

.service-slide-box-corporate h2 {
    font-size: 134px;
}

.service-slide-box-corporate p {
    font-size: 36px;
}

@media only screen and (max-width: 1199.98px) {
    .service-slide-box-corporate h2 {
        font-size: 100px;
    }
}

@media only screen and (max-width: 991.98px) {
    .service-slide-box-corporate h2 {
        font-size: 80px;
    }
}

@media only screen and (max-width: 767.98px) {



    .service-slide-box-corporate h2 {
        font-size: 50px;
    }

    .service-slide-box-corporate p {
        font-size: 24px;
    }
}

.join-service-info-box {
    gap: 20px;
}

.join-service-info-box li {
    font-weight: 500;
    color: var(--color-black);
    font-size: 20px;
    word-break: break-word;
}

.join-service-corporate-slide .service-slide-box-corporate h2,
.join-service-corporate-slide .service-slide-box-corporate p {
    opacity: 0;
    transition: all 0.8s ease-out;
    transform: translate3d(0, 15px, 0);
}

.join-service-corporate-slide .service-slide-box-corporate p {
    transition-delay: 0.4s;
}

.join-service-corporate-slide .swiper-slide-active .service-slide-box-corporate h2,
.join-service-corporate-slide .swiper-slide-active .service-slide-box-corporate p {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
}

.single-service-portfolio-box {
    padding: 100px 0;
    border-top: 1px solid rgba(219, 219, 219, 0.2);
    border-bottom: 1px solid rgba(219, 219, 219, 0.2);
}

.single-service-portfolio-box::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-brown);
    content: "";
    z-index: -1;
    transition: all 0.4s ease-in-out;
    transition-property: transform;
    transform: scaleY(0);
    transform-origin: top;
}

.single-service-portfolio-box .service-portfolio-info-wrap .service-portfolio-info h2 {
    color: var(--color-light-white);
    padding-left: 40px;
    font-size: 74px;
    transition: all 0.3s;
}

.single-service-portfolio-box .service-portfolio-info-wrap .service-portfolio-info h2 .reveal-line-2 {
    padding-bottom: 0;
}

.single-service-portfolio-box .service-portfolio-info-wrap .service-portfolio-info h2::before {
    content: "0"counter(count) "/";
    counter-increment: count;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    top: 15px;
    left: 0;
    font-family: var(--ff-inter-sans);
}

.single-service-portfolio-box .service-portfolio-info-wrap .service-portfolio-info p {
    max-width: 385px;
    color: var(--color-light-white);
    transition: all 0.3s;
}

.single-service-portfolio-box.single-service-portfolio-box-two {
    border-top: 0.5px solid #ddd;
    border-bottom: 0.5px solid #ddd;
}

.single-service-portfolio-box.single-service-portfolio-box-two::before {
    background-color: #f0efe7;
}

.single-service-portfolio-box.single-service-portfolio-box-two .service-portfolio-info-wrap .service-portfolio-info h2 {
    color: var(--color-black);
}

.single-service-portfolio-box.single-service-portfolio-box-two .service-portfolio-info-wrap .service-portfolio-info p {
    color: var(--color-black);
}

@media only screen and (max-width: 1199.98px) {
    .single-service-portfolio-box {
        padding: 70px 0;
    }

    .single-service-portfolio-box .service-portfolio-info-wrap .service-portfolio-info h2 {
        font-size: 60px;
    }
}

@media only screen and (max-width: 991.98px) {
    .single-service-portfolio-box {
        padding: 60px 0;
    }

    .single-service-portfolio-box .service-portfolio-info-wrap .service-portfolio-info h2 {
        font-size: 40px;
    }

    .single-service-portfolio-box .service-portfolio-info-wrap .service-portfolio-info h2::before {
        top: 10px;
    }
}

.single-service-portfolio-box:hover {
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.single-service-portfolio-box:hover.single-service-portfolio-box-two {
    border-top: 0.5px solid #ddd;
    border-bottom: 0.5px solid #ddd;
}

.single-service-portfolio-box:hover::before {
    transform: scaleY(1);
    transform-origin: bottom;
}

.single-service-portfolio-box:hover .service-portfolio-info-wrap .service-portfolio-info h2 {
    color: var(--color-black);
}

.single-service-portfolio-box:hover .service-portfolio-info-wrap .service-portfolio-info p {
    color: var(--color-black);
}

.portfolio-img {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* @media #{$max-lg}{
      height: 400px;
    }
    @media #{$max-md}{
      height: 300px;
    }*/
    &.portfolio-video {
        margin-bottom: -5px;
    }
}


/*================================================
7. Skill CSS
=================================================*/
.skill-img-wrap {
    padding-right: 40px;
    padding-bottom: 30px;

    img {
        border-radius: 12px;
    }

    @media only screen and (max-width: 767.98px) {
        padding-right: 20px;
        padding-bottom: 10px;
    }
}

.skill-info {
    border-radius: 12px;
    border: 1px solid #ececee;
    background: var(--primary-color);
    max-width: 419px;
    padding: 25px;

    .counter-item {
        font-size: 54px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0.54px;
        position: relative;
        margin-right: 17px;
        padding-right: 17px;

        &::before {
            position: absolute;
            content: "";
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 100%;
            width: 1px;
            background-color: #000000;
        }

        em {
            font-style: normal;
            margin-left: -14px;
            font-size: 55px;
        }
    }

    &.fun-fact {
        border-radius: 0px;
        border: unset;
        background: transparent;
        max-width: 100%;
        padding: 0px;
        gap: 30px;

        .counter-item {
            margin-right: 0px;
            padding-right: 0px;

            &::before {
                display: none;
            }
        }

        p {
            max-width: 166px;
        }

        @media only screen and (max-width: 1199.98px) {
            gap: 20px;
        }
    }

    &.contact {
        gap: 20px;

        .counter-item {
            font-size: 35px;

            em {
                font-style: normal;
                margin-left: -12px;
                font-size: 36px;
            }
        }
    }

    @media only screen and (max-width: 767.98px) {
        .counter-item {
            font-size: 40px;

            em {
                font-size: 41px;
            }
        }
    }
}

.skills-box {
    .skill-item {
        &:not(:last-child) {
            margin-bottom: 40px;
        }

        .skills-title {
            font-family: var(--ff-inter-sans);
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .skill-progress {
            height: 8px;
            background-color: rgba(12, 12, 37, 0.1);
            position: relative;

            .progres {
                position: absolute;
                height: 100%;
                width: 40%;
                top: 0;
                left: 0;
                background: var(--color-black);
                transition: all 1.5s;

                &::after {
                    content: attr(data-value);
                    position: absolute;
                    right: 10px;
                    top: -29px;
                    font-family: var(--ff-inter-sans);
                    font-size: 16px;
                    font-weight: 500;
                    color: var(--color-black);
                }
            }
        }
    }
}

.border-section {
    border-top: 1px solid rgba(12, 12, 37, 0.1);
    margin-top: 40px;
    padding-top: 54px;
}


/*----------------------------------------*/
/*  Button CSS START
/*----------------------------------------*/

.cta__area {
    position: relative;
}

.cta__area.cta__area-7 {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.wc-btn-primary,
.wc-btn-black,
.wc-btn-light,
.wc-btn-pink,
.wc-btn-secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: white;
    border: 1px solid white;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 767px) {

    .wc-btn-primary,
    .wc-btn-black,
    .wc-btn-light,
    .wc-btn-pink,
    .wc-btn-secondary {
        padding: 30px;
    }
}

.wc-btn-primary:hover,
.wc-btn-black:hover,
.wc-btn-light:hover,
.wc-btn-pink:hover,
.wc-btn-secondary:hover {
    color: var(--black);
    border: 1px solid var(--primary-color);
}

.wc-btn-primary:hover span,
.wc-btn-black:hover span,
.wc-btn-light:hover span,
.wc-btn-pink:hover span,
.wc-btn-secondary:hover span {
    width: 475px;
    height: 475px;
}

.wc-btn-primary i,
.wc-btn-black i,
.wc-btn-light i,
.wc-btn-pink i,
.wc-btn-secondary i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    padding-left: 5px;
}

.wc-btn-primary span,
.wc-btn-black span,
.wc-btn-light span,
.wc-btn-pink span,
.wc-btn-secondary span {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 100%;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn_wrapper,
#btn_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 50px;
    width: 300px;
    border-radius: 15px;
    /*margin-left: -40px;*/
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .btn_wrapper,
    #btn_wrapper {
        width: 250px;
        height: 50px;
        margin-left: -25px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .btn_wrapper,
    #btn_wrapper {
        width: 190px;
        height: 190px;
        margin-left: -10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .btn_wrapper,
    #btn_wrapper {
        width: 180px;
        height: 180px;
        margin-left: -5px;
    }
}

@media only screen and (max-width: 767px) {

    .btn_wrapper,
    #btn_wrapper {
        height: 175px;
        width: 175px;
        margin-left: -2.5px;
    }
}

.btn-item {
    position: absolute;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .service__top-btn .btn_wrapper,
    .service__top-btn #btn_wrapper {
        width: 170px;
        height: 170px;
    }

    .service__top-btn .btn_wrapper .btn-item,
    .service__top-btn #btn_wrapper .btn-item {
        top: 0;
        left: 0;
    }
}

.about_btn {
    font-size: 20px !important;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .about_btn {
        font-size: 18px !important;
    }
}

.about_btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -10px;
    left: 0;
    background-color: var(--black);
}


/*================================================
PARALLAX
=================================================*/
.parallax-banner,
.parallax-about {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.container-about {
    width: 200%;
    /* 2 sections de largeur totale */
    display: flex;
    flex-direction: row;
    height: 100%;
    /* Prend la hauteur de la vue */
    overflow: hidden;
    /* Cache le dépassement */
    flex: 0 0 100dvw;

    & .row {
        width: 100%;
        gap: 30px;
        flex-wrap: nowrap;
        margin-left: 0;
        margin-right: 0;

        & .col-lg-5 {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
    }
}

.animated-h {
    flex: 0 0 100dvw;
    /* Chaque section prend 100% de la largeur de la vue */
    height: 100%;
    padding: 0 15px;
    width: 100%;
    gap: 30px;
    flex-wrap: nowrap;
    width: 100dvw;
    overflow: hidden;

    & .text-lg-center,
    & .col-lg-7 {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100%;
        box-sizing: border-box;
    }
}

.container-about.color-black {
    background: #000000;
    color: white;
}

.container-about.color-yellow {
    background: #ffcc00;
    color: black;
}

.container-about.color-white {
    background: #fff;
    color: black;
}

/*.section-about {
  width: 200%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
}*/
.containerAbout {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    min-width: 100dvw;
    max-width: 100dvw;
    align-items: flex-start;
    justify-content: space-between;
}

.containerAbout .panel {
    flex: 0 0 100%;
    /* Chaque section occupe 100% de la largeur du conteneur */
    height: 100%;

    /* Assure que chaque section occupe toute la hauteur */
    p {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}


.about-container {
    overflow: hidden;
    /* Évite les scrollbars par défaut */
    padding-right: 5px !important;
}

.about-box {
    flex: 0 0 100dvw;
    /* Chaque section prend 100% de la largeur de l'écran */
    /*height: 100dvh; */
    min-height: 100dvh;
}



/* ------------------------------------ *
 *  Bage borders
/* ------------------------------------ */

.border-top,
.border-bottom,
.border-left,
.border-right {
    position: fixed;
    background-color: #fff;
    z-index: 999999;
}

.border-top {
    top: 0;
    left: 0;
    height: 15px;
    width: 100%;
}

.border-bottom {
    bottom: 0;
    left: 0;
    height: 15px;
    width: 100%;
}

.border-left {
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
}

.border-right {
    top: 0;
    right: 0;
    width: 15px;
    height: 100%;
}

.section:not(#section-cicles):not(.animated-line) {
    padding: 130px 0px;
}

.section#about-us {
    position: relative;
    z-index: 2;
}

.section__cta {
    margin-top: 65px;
    text-align: center;
}

.section__content-cta {
    margin-top: 60px;
}



#base_line,
#lineContainer {
    display: none;
}

.bg-anim {
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px 7px 15px;
    height: auto;
    margin-top: -26px;
    /*background-color: transparent;*/
    background-color: #000;
    /* La couleur de fond finale */
    transform-origin: left center;
    transform: scaleX(0);
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.section__header {
    margin-bottom: 60px;
}

.section__header .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--primary-color);
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.section__header .sub-title i {
    transform: rotate(-45deg);
}

.section__header .title {
    text-transform: capitalize;
    font-weight: 700;
}

.section__header--secondary {
    margin-bottom: 60px;
}

.section__content .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--primary-color);
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.section__content .sub-title i {
    transform: rotate(-45deg);
}

.section__content .title {
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social a {
    color: var(--tertiary-color);
    background-color: #f0efff;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.social a:hover {
    color: var(--black);
    background-color: var(--primary-color);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navLinkFadeReverse {
    from {
        opacity: 0;
        transform: translateY(0px);
    }

    to {
        opacity: 0;
        transform: translateY(100%);
    }
}

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

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

.slide-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.slide-btn {
    width: 74px;
    min-width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #414141;
    transition: var(--transition);
    background-color: rgba(0, 0, 0, 0);
    color: #414141;
    font-size: 40px;
    z-index: 2;
}

.slide-btn:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.lines {
    overflow: hidden;
    z-index: -1;
    display: flex;
    justify-content: space-around;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0px;
    z-index: 2;
}

.lines .line {
    width: 1px;
    height: 100%;
    min-height: 100dvh;
    top: 0;
    background-color: #fff;
    z-index: -1;
}

.vid-m {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 99;
    width: 160px;
    height: 285px;
    max-height: 285px;
}

.vid-m .vid-c {
    text-align: end;
}

.vid-m video {
    width: 100%;
    height: 100%;
    max-height: 285px;
    border-radius: 20px;
}

.vid-m button {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #000;
    font-size: 14px;
    margin-left: auto;
    transform: translateY(50%);
    position: relative;
    z-index: 9;
}

.vid-m h5 {
    position: absolute;
    top: 30%;
    right: 100%;
    padding: 20px;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 20px 20px 0px 20px;
    line-height: 0px;
    transform: translateX(30%);
}

.btn {
    padding: 16px 32px;
    font-weight: 700;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    text-transform: uppercase;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.btn:focus {
    box-shadow: none;
    outline: 0px;
}

.btn--primary {
    z-index: 1;
}

.btn--primary::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn--primary:hover {
    color: var(--black);
}

.btn--primary:hover::before {
    width: 100%;
    left: 0px;
}

.btn--secondary {
    z-index: 1;
    color: var(--white);
    border: 1px solid #414141;
}

/*.btn--secondary::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: transparent;
  transition: all 0.6s ease;
  z-index: -1;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(../images/booking.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  fill: transparent;
}*/

#booking_icone {
    fill: white;
}

#booking_icone g#g3417 path {
    fill: black;
}

.btn--secondary:hover {
    color: var(--black);
}

.btn--secondary:hover::before {
    width: 100%;
    left: 0px;
}

.btn--tertiary {
    z-index: 1;
    color: var(--primary-color);
    border: 1px solid #000 !important;
    background-color: #181818;
    gap: 20px;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
}

.btn--tertiary::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn--tertiary:hover {
    border: 1px solid var(--primary-color);
    color: var(--black);
}

.btn--tertiary:hover::before {
    width: 100%;
    left: 0px;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    background-color: #1f1f1f;
    box-shadow: inset 0 0 0 8px #1f1f1f;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    z-index: 999;
    overflow: hidden;
}

.progress-wrap span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background-color: var(--white);
    border-radius: 50%;
    overflow: hidden;
}

.progress-wrap span::after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    text-align: center;
    line-height: 34px;
    font-size: 16px;
    border-radius: 50%;
    color: var(--primary-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, 200%);
    height: 34px;
    width: 34px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap span::before {
    position: absolute;
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    text-align: center;
    line-height: 34px;
    font-size: 16px;
    border-radius: 50%;
    color: var(--primary-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 34px;
    width: 34px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

.progress-wrap:hover span::before {
    transform: translate(-50%, -200%);
}

.progress-wrap:hover span::after {
    transform: translate(-50%, -50%);
}

.progress-wrap path {
    fill: none;
}

.progress-wrap .progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: content-box;
    transition: all 200ms linear;
}

.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.video-modal-btn a {
    width: 84px;
    min-width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    font-size: 20px;
    color: var(--white);
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0;
    }
}

.input-email {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #c1c1c1;
}

.input-email input {
    flex-grow: 1;
    background-color: rgba(0, 0, 0, 0);
    padding: 16px 30px;
    width: calc(100% - 80px);
}

.input-email button {
    width: 60px;
    min-width: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/*#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-bg);
    pointer-events: none;
}*/

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0);
    border-top-color: rgb(54, 54, 54);
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0);
    border-top-color: rgb(188, 188, 188);
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0);
    border-top-color: #ffdc0e;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}


#home .primary-navbar {
    .navbar {
        .navbar__logo {
            padding: 43px 15px 8px 90px;
        }
    }
}

.primary-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    left: 0px;
    right: 0px;
    top: 0;
    transition: ease 0.4s;

    &--scrolled {
        height: 190px;
    }

    & .col-12 {
        width: 100%;
        padding: 0 15px;

    }
}

@keyframes stickyNavbar {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0px);
    }
}

.navbar-active {
    background-color: transparent;
    box-shadow: none;
    border-bottom: none;

    & .navbar__logo {
        opacity: 0;
        visibility: visible;
    }
}

.primary-navbar .navbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    flex-wrap: nowrap;
    padding: 0 !important;

    .navbar__logo {
        padding: 43px 15px 8px 90px;
        opacity: 1;
        transition: padding 0.3s ease, opacity 0.3s ease;

        & a {
            pointer-events: auto;
            cursor: pointer;
        }
    }
}

.primary-navbar .navbar__menu {
    flex-grow: 1;
}

.primary-navbar .navbar__menu>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.primary-navbar .navbar__item button,
.primary-navbar .navbar__item a {
    padding: 41px 20px;
    text-transform: uppercase;
    font-weight: 500;
    width: 100%;
}

.primary-navbar .navbar__item--has-children {
    position: relative;
}

.primary-navbar .navbar__item--has-children:hover>.navbar__dropdown-label {
    color: var(--primary-color);
}

.primary-navbar .navbar__item--has-children:hover>.navbar__dropdown-label::after {
    transform: rotate(180deg);
}

.primary-navbar .navbar__item--has-children:hover>.navbar__dropdown-label-sub::after {
    transform: rotate(180deg);
}

.primary-navbar .navbar__item--has-children:hover>.navbar__sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    pointer-events: all;
}

.primary-navbar .navbar__dropdown-label {
    position: relative;
    justify-content: space-between;
}

.primary-navbar .navbar__dropdown-label::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "";
    border: none;
    transition: transform 0.3s ease-in-out;
    font-size: inherit;
    transform: rotate(0deg);
}

.primary-navbar .navbar__sub-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    min-width: 220px;
    max-width: 260px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding: 20px 0px;
    border-radius: 5px;
    z-index: 9;
}

.primary-navbar .navbar__sub-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 25px;
    height: 15px;
    width: 15px;
    transform: rotate(45deg);
    background-color: inherit;
    transition: var(--transition);
    z-index: -1;
}

.primary-navbar .navbar__sub-menu li:nth-last-of-type(1) a {
    border-bottom: 0px;
}

.primary-navbar .navbar__sub-menu a,
.primary-navbar .navbar__sub-menu button {
    width: 100%;
    display: flex;
    padding: 16px 40px;
    color: var(--black);
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid rgba(206, 206, 206, 0.4784313725);
}

.primary-navbar .navbar__sub-menu a::before,
.primary-navbar .navbar__sub-menu button::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    height: 1px;
    width: 0px;
    transition: var(--transition);
    background-color: var(--primary-color);
}

.primary-navbar .navbar__sub-menu a:hover,
.primary-navbar .navbar__sub-menu button:hover {
    color: var(--primary-color);
}

.primary-navbar .navbar__sub-menu a:hover::before,
.primary-navbar .navbar__sub-menu button:hover::before {
    width: 10px;
}

.primary-navbar .navbar__sub-menu .navbar__dropdown-label-sub::before {
    display: none;
}

.primary-navbar .navbar__sub-menu--lg {
    min-width: 300px;
    max-width: 300px;
}

.primary-navbar .navbar__sub-menu__nested {
    top: 0%;
    left: 100%;
    min-width: 200px;
}

.primary-navbar .navbar__sub-menu__nested::before {
    left: -5px;
    top: 17px;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.1);
}

.primary-navbar .navbar__sub-menu-n {
    display: none;
}

.primary-navbar .navbar__options {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-navbar .open-mobile-menu {
    font-size: 30px;
    color: var(--white);
}

.secondary--navbar {
    padding: 30px 0px;
}

.secondary--navbar .open-offcanvas-nav {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
}

.secondary--navbar .open-offcanvas-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: #414141;
    border-radius: 50%;
    transition: var(--transition);
}

.secondary--navbar .open-offcanvas-nav:hover {
    border: 1px solid var(--primary-color);
}

.secondary--navbar .open-offcanvas-nav:hover::before {
    background-color: var(--primary-color);
}

.offcanvas-nav .offcanvas-menu {
    position: fixed;
    inset: 0px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: var(--transition);
    z-index: 9999;
    transition-delay: 0.6s;
    transition: all 0.9s ease-in-out;
    background-color: var(--black);
}

.offcanvas-nav .offcanvas-menu::before {
    content: "Explore Pages";
    position: absolute;
    top: 30%;
    right: 10%;
    font-size: 6dvw;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 30dvw;
    z-index: -1;
    color: #fff;
    opacity: 0.1;
    text-align: end;
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__header {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0px 20px 0px 20px;
    justify-content: space-between;
}

.offcanvas-nav .offcanvas-menu .close-offcanvas-menu {
    font-size: 36px;
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__wrapper {
    position: fixed;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
    padding: 60px 100px 60px 60px;
    /*height: 100dvh;*/
    min-height: 100dvh;
    overflow-y: auto;
    overflow-x: clip;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease-in-out;
    transition-delay: 0.3s;
    gap: 60px;
    transform: translateY(100%);
    opacity: 1;
    visibility: visible;
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__wrapper::-webkit-scrollbar {
    width: 0px;
}

.offcanvas-nav .offcanvas-menu .navbar__menu>ul {
    flex-direction: column;
}

.offcanvas-nav .offcanvas-menu .navbar__item {
    width: 100%;
    transition: var(--transition);
}

.offcanvas-nav .offcanvas-menu .navbar__item a,
.offcanvas-nav .offcanvas-menu .navbar__item button {
    color: var(--white);
    padding: 20px 80px 20px 20px;
    line-height: 1;
    font-size: 16px;
    width: 100%;
    text-transform: uppercase;
    font-size: 24px;
}

.offcanvas-nav .offcanvas-menu .navbar__item a:hover,
.offcanvas-nav .offcanvas-menu .navbar__item button:hover {
    color: var(--primary-color);
}

.offcanvas-nav .offcanvas-menu .navbar__item a::after,
.offcanvas-nav .offcanvas-menu .navbar__item button::after {
    transition: none;
}

.offcanvas-nav .offcanvas-menu .nav-fade {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.7s ease-in-out !important;
}

.offcanvas-nav .offcanvas-menu .navbar__item--has-children .navbar__dropdown-label {
    position: relative;
}

.offcanvas-nav .offcanvas-menu .navbar__item--has-children .navbar__dropdown-label::after {
    content: "+";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
}

.offcanvas-nav .offcanvas-menu .navbar__item--has-children:hover .navbar__dropdown-label::after {
    transform: rotate(0deg);
}

.offcanvas-nav .offcanvas-menu .navbar__item-active {
    color: var(--primary-color) !important;
}

.offcanvas-nav .offcanvas-menu .navbar__item-active::after {
    content: "" !important;
    font-family: "Font Awesome 6 Pro" !important;
}

.offcanvas-nav .offcanvas-menu .navbar__sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    width: 100%;
    max-width: 100%;
    padding: 0px;
    display: none;
    transition: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0px;
    padding-left: 30px;
}

.offcanvas-nav .offcanvas-menu .navbar__sub-menu::before {
    content: none;
}

.offcanvas-nav .offcanvas-menu .navbar__sub-menu a,
.offcanvas-nav .offcanvas-menu .navbar__sub-menu button {
    color: var(--white);
    padding: 16px 20px;
    font-size: 16px;
}

.offcanvas-nav .offcanvas-menu .navbar__sub-menu a::before,
.offcanvas-nav .offcanvas-menu .navbar__sub-menu button::before {
    content: none;
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__options {
    padding: 0px 20px;
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__options a,
.offcanvas-nav .offcanvas-menu .offcanvas-menu__options button {
    width: 100%;
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__social {
    transition: var(--transition);
    padding: 0px 20px;
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__social a {
    font-size: 20px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-nav .offcanvas-menu__list,
.offcanvas-nav .offcanvas-menu__options,
.offcanvas-nav .offcanvas-menu__social {
    max-width: 500px;
}

.offcanvas-nav .show-offcanvas-menu {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.offcanvas-nav .show-offcanvas-menu .offcanvas-menu__wrapper {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.offcanvas-nav .show-offcanvas-menu .nav-fade {
    animation: navLinkFade 0.5s ease forwards;
    transition: all 0.7s ease-in-out !important;
}

.offcanvas-nav .nav-fade-active {
    animation: navLinkFade 1s ease reverse !important;
}

.tertiary--navbar {
    /*background-color: #1f1f1f;*/
    overflow-x: clip;
    height: auto;
}

.tertiary--navbar .navbar__item a {
    text-transform: lowercase !important;
}

.tertiary--navbar .navbar__options {
    gap: 0px;
    transform: translateY(15px);
    z-index: 999999999999999999999;
}

.tertiary--navbar .open-offcanvas-nav {
    flex-direction: column;
    background-color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--black);
    pointer-events: auto;
    width: 97px;
    height: 73px;
    justify-content: center;
    align-items: center;
}

.tertiary--navbar .open-offcanvas-nav i {
    font-size: 24px;
    font-weight: 600;
}

.tertiary--navbar .open-offcanvas-nav:hover {
    background-color: var(--black);
    color: var(--primary-color);

    .burger__label--rotatecross .burger__line {
        background-color: #ffdc0e;
    }
}

.tertiary--navbar .tertiary-cta {
    padding: 0;
    background-color: transparent;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#home .tertiary--navbar .tertiary-cta .btn,
#home.tertiary--navbar .tertiary-cta .btn:hover {
    border: none;
    border-radius: 0;
    padding: 21px 32px;
    font-size: 1.3rem;
    letter-spacing: 1.2px;
    color: #000;
    pointer-events: auto;
    cursor: pointer;
    font-family: var(--epilogue);
}

.tertiary--navbar .tertiary-cta .btn:hover {
    background-color: #fff !important;
    color: var(--primary-color);
}

#pages .tertiary--navbar .tertiary-cta .btn {
    border: none;
    border-radius: 0;
    padding: 21px 32px;
    font-size: 1.3rem;
    /*letter-spacing: 1.2px;*/
    color: var(--black);
    /*color: var(--primary-color);*/
    pointer-events: auto;
    cursor: pointer;
    font-family: var(--epilogue);

}

#pages.b-others .tertiary--navbar .tertiary-cta .btn {
    background-color: var(--primary-color);
    padding-top: 24px;
    padding-bottom: 18px;
}

#pages.tertiary--navbar .tertiary-cta .btn:hover {
    border: none;
    border-radius: 0;
    padding: 21px 32px;
    font-size: 1.3rem;
    letter-spacing: 1.2px;
    color: var(--black);
    /*color: var(--primary-color);*/
    pointer-events: auto;
    cursor: pointer;
    font-family: var(--epilogue);
}

#pages.b-others .tertiary--navbar .tertiary-cta .btn:hover {
    background-color: #000;
    color: #fff;
}

#pages .js-img-r {
    position: absolute;
    right: 0;
}

#pages .js-img-l {
    position: absolute;
    left: 0;
}

/*#pages #cerc-cover{
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: blue;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scale(0);
  }
*/




.tertiary--navbar .tertiary-cta .btn .anim {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
}

/*.tertiary--navbar .tertiary-cta .btn::before {
  background-color: var(--white);
}*/
.tertiary--navbar .tertiary-cta.hidden {
    opacity: 0;
    /* Rend le texte transparent */
    transform: translateX(-50px);
    /* Déplace le texte vers la gauche */
    pointer-events: none;
    /* Empêche toute interaction quand caché */
}

/* ------------------------------------ *
 *  Navigation menu
/* ------------------------------------ */

#cd-lateral-nav {
    position: fixed;
    height: 100%;
    right: 15px;
    top: 15px;
    visibility: hidden;
    z-index: 999;
    /*width: 260px;*/
    width: 425px;
    background-color: #000;
    overflow-y: auto;
    /*-webkit-transform: translate3d(80px, 0, 0);
	transform: translate3d(80px, 0, 0);
	-webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
	transition: transform .4s 0s, visibility 0s .4s;*/

    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    -webkit-transition: -webkit-transform 0.4s, visibility 0s 0.4s;
    transition: transform 0.4s, visibility 0s 0.4s;

    .social-icons i {
        height: 35px;
    }
}

@media only screen and (max-width: 768px) {
    #cd-lateral-nav {
        top: 15px;
    }
}

#cd-lateral-nav .nav-inner {
    margin-bottom: 20px;
}

#cd-lateral-nav .cd-navigation {
    margin: 10px 0 16px;
    padding: 0;
    list-style: none;
}

#cd-lateral-nav .menu-header {
    background-color: rgba(255, 255, 255, 0.03);
    margin-bottom: 22px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffdc0e;
    border-bottom: 1px dotted #333;
    padding: 8px 30px 0 30px;
    font-size: 2rem;
    letter-spacing: 1.2px;
    height: 74px;
    display: flex;
    align-items: center;
}

#cd-lateral-nav .sub-menu {
    padding: 5px 10px 5px 15px;
    display: none;
}

#cd-lateral-nav a:not(.number) {
    /*display: block;
  line-height: 31px;
  padding: 0 16px 0 30px;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 400;
  color: #fffffff7;
  font-family: var(--oswald);*/
    display: block;
    line-height: 34px;
    padding: 0 16px 0 30px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 400;
    color: #fffffff7;
    font-family: var(--oswald);

    &.cr-rdv {
        /*background-color: #ffdc0e;*/
        color: #ffdc0e;
        text-decoration: line-through;
        text-decoration: none;
    }
}

#cd-lateral-nav a.number {
    font-size: 25px;
    text-align: center;
    color: #ffdc0e;
    padding: 0 0px 25px 0px;
}

#cd-lateral-nav a.current {
    background-color: #ffdc0e;
    color: #000;
    /*text-decoration: line-through;*/
}

#cd-lateral-nav a:not(.number):hover,
#cd-lateral-nav a:not(.number):focus {
    background-color: transparent;
    color: #ffdc0e;
    /*text-decoration: line-through !important;*/
}

#cd-lateral-nav a.number:hover,
#cd-lateral-nav a.number:focus {
    color: #fff;
}

@media (min-width: 768px) {
    #cd-lateral-nav .cd-navigation {
        margin: 20px 0;
    }
}

#cd-lateral-nav.lateral-menu-is-open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
    transition: transform 0.4s 0s, visibility 0s 0s;
    /* smooth the scrolling on touch devices - webkit browsers */
    -webkit-overflow-scrolling: touch;
    display: flex;
    overflow-y: hidden;
    flex-direction: column;
    justify-content: space-between;

    & .nav-bottom {
        padding: 25px 25px 35px;

        & .widget-info {
            text-align: center;
        }
    }
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children>a {
    position: relative;
}

/* this is the right arrow to show that the item has a submenu  */
#cd-lateral-nav .item-has-children>a::after {
    content: "";
    display: block;
    height: 11px;
    width: 8px;
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    right: 1.4em;
    background: url('data:image/svg+xml,%3C%3Fxml version="1.0" encoding="utf-8"%3F%3E%3C!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3C!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"%3E%3Csvg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="8px" height="11px" viewBox="0 0 8 11" enable-background="new 0 0 8 11" xml:space="preserve"%3E%3Ctitle%3EImported Layers%3C/title%3E%3Cdescription%3ECreated with Sketch.%3C/description%3E%3Cg id="Homepage" sketch:type="MSPage"%3E%3Cg id="homepage-products-new" transform="translate(-1104.000000, -440.000000)" sketch:type="MSArtboardGroup"%3E%3Cg id="header" sketch:type="MSLayerGroup"%3E%3Cg id="img_x2B_msg-4" sketch:type="MSShapeGroup"%3E%3Cg id="learn-more" transform="translate(957.000000, 417.000000)"%3E%3Cpath id="Imported-Layers" fill="%23ffffff" d="M155,28.5l-6.1,5.5l-1.8-1.6l4.3-3.8l-4.3-3.8l1.9-1.7L155,28.5"/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E') no-repeat center center;
    background-size: 8px 11px;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

/*#cd-lateral-nav .item-has-children>a:hover:after,
#cd-lateral-nav .item-has-children>a.submenu-open:after {
    background: url('data:image/svg+xml,%3C%3Fxml version="1.0" encoding="utf-8"%3F%3E%3C!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3C!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"%3E%3Csvg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="8px" height="11px" viewBox="0 0 8 11" enable-background="new 0 0 8 11" xml:space="preserve"%3E%3Ctitle%3EImported Layers%3C/title%3E%3Cdescription%3ECreated with Sketch.%3C/description%3E%3Cg id="Homepage" sketch:type="MSPage"%3E%3Cg id="homepage-products-new" transform="translate(-1104.000000, -440.000000)" sketch:type="MSArtboardGroup"%3E%3Cg id="header" sketch:type="MSLayerGroup"%3E%3Cg id="img_x2B_msg-4" sketch:type="MSShapeGroup"%3E%3Cg id="learn-more" transform="translate(957.000000, 417.000000)"%3E%3Cpath id="Imported-Layers" fill="%23000000" d="M155,28.5l-6.1,5.5l-1.8-1.6l4.3-3.8l-4.3-3.8l1.9-1.7L155,28.5"/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E') no-repeat center center;
}
*/
#cd-lateral-nav .item-has-children>a.submenu-open::after {
    -webkit-transform: translate3d(0, -50%, 0) rotate(90deg);
    transform: translate3d(0, -50%, 0) rotate(90deg);
}

#cd-lateral-nav .sub-menu>li>a {
    font-size: 20px;
}

#cd-lateral-nav .menu-separator {
    margin: 17px 30px;
    border-bottom: 1px solid #333;
}

/*.navbar__options.lateral-menu-is-open {
  cursor: e-resize;
  -webkit-transform: translate3d(-260px, 0, 0);
  transform: translate3d(-260px, 0, 0);
  -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
  transition: transform 0.4s 0s, visibility 0s 0s;
}*/

/*------------------------------------*\

  $TUTORIAL ESSENTIAL

\*------------------------------------*/

/* hide input */
.burger__input {
    display: none;
}

.burger__label {
    display: none;
    /* if you don't want to show this for the desktop version */
    align-items: center;
    /* put Burger on top of navigation*/
    position: relative;
    z-index: 11000;

    padding: calc(var(--gutter) * 0.5);
    /*background-color: var(--white);*/

    cursor: pointer;
}

menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

/* put this part into a media query, when to show the nav */
.burger__label {
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 47px;
    height: 25px;
}

.burger__label>* {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/*------------------------------------*\
  $FONT AWESOME
\*------------------------------------*/
.burger__input:checked~.burger__label i:before {
    content: "\f00d";
    /* change font awesome icon to times symbol */
}

/*------------------------------------*\
  $CUSTOM LINES
\*------------------------------------*/
.burger__lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;

    transition: transform var(--bar-transition-time) var(--bar-transition);
}

.burger__line {
    /*margin: 2px auto;*/
    margin-top: 2px;
    margin-bottom: 2px;
    display: block;
    width: 24px;
    height: 4px;
    /* margin: 5px auto; */
    background-color: black;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/*------------------------------------*\
  $CROSS
\*------------------------------------*/
/*line-middle*/
.burger__input:checked~.burger__label--cross .burger__line:nth-child(2) {
    opacity: 0;
}

/* top line */
.burger__input:checked~.burger__label--cross .burger__line:nth-child(1) {
    transform: translateY(var(--bar-offset)) rotate(var(--bar-arrow-angle));
}

/* bottom line */
.burger__input:checked~.burger__label--cross .burger__line:nth-child(3) {
    transform: translateY(calc(var(--bar-offset) * -1)) rotate(calc(var(--bar-arrow-angle) * -1));
}

/*------------------------------------*\
  $ONE LINE
\*------------------------------------*/
.burger__input:checked~.burger__label--oneline .burger__line:nth-child(1) {
    transform: translateY(var(--bar-offset));
}

.burger__input:checked~.burger__label--oneline .burger__line:nth-child(3) {
    transform: translateY(calc(var(--bar-offset) * -1));
}

/*------------------------------------*\
  $ONE LINE FADE
\*------------------------------------*/
.burger__input:checked~.burger__label--onelinefade .burger__line:nth-child(1),
.burger__input:checked~.burger__label--onelinefade .burger__line:nth-child(3) {
    opacity: 0;
}

.burger__input:checked~.burger__label--onelinefade .burger__line:nth-child(1) {
    transform: translateX(-25%);
}

.burger__input:checked~.burger__label--onelinefade .burger__line:nth-child(3) {
    transform: translateX(25%);
}

/*------------------------------------*\
  $ARROW LEFT
\*------------------------------------*/
.burger__label--arrowleft .burger__line:nth-child(1) {
    transform-origin: 0 calc(var(--bar-height));
}

.burger__label--arrowleft .burger__line:nth-child(3) {
    transform-origin: 0 0;
}

.burger__input:checked~.burger__label--arrowleft .burger__line:nth-child(1) {
    transform: translateY(var(--bar-arrow-offset)) rotate(calc(var(--bar-arrow-angle) * -1));
}

.burger__input:checked~.burger__label--arrowleft .burger__line:nth-child(3) {
    transform: translateY(calc(var(--bar-arrow-offset) * -1)) rotate(var(--bar-arrow-angle));
}

/* shorten first and last line and position them correctly */
.burger__label--arrowleft .burger__lines {
    align-items: flex-start;
}

.burger__input:checked~.burger__label--arrowleft .burger__line:nth-child(1),
.burger__input:checked~.burger__label--arrowleft .burger__line:nth-child(3) {
    width: calc(var(--bar-width) * 1);
}

.burger__input:checked~.burger__label--arrowleft .burger__line:nth-child(1),
.burger__input:checked~.burger__label--arrowleft .burger__line:nth-child(3) {
    width: calc(var(--bar-width) * 0.75);
}

/*------------------------------------*\
  $ARROW RIGHT
\*------------------------------------*/
.burger__label--arrowright .burger__line:nth-child(1) {
    transform-origin: 100% calc(var(--bar-height));
}

.burger__label--arrowright .burger__line:nth-child(3) {
    transform-origin: 100% 0;
}

.burger__input:checked~.burger__label--arrowright .burger__line:nth-child(1) {
    transform: translateY(var(--bar-arrow-offset)) rotate(var(--bar-arrow-angle));
}

.burger__input:checked~.burger__label--arrowright .burger__line:nth-child(3) {
    transform: translateY(calc(var(--bar-arrow-offset) * -1)) rotate(calc(var(--bar-arrow-angle) * -1));
}

/* shorten first and last line and position them correctly */
.burger__label--arrowright .burger__lines {
    align-items: flex-end;
}

.burger__input:checked~.burger__label--arrowright .burger__line:nth-child(1),
.burger__input:checked~.burger__label--arrowright .burger__line:nth-child(3) {
    width: calc(var(--bar-width) * 0.75);
}

/*------------------------------------*\
  $BURGER ROTATE
\*------------------------------------*/
.burger__input:checked~.burger__label--rotate .burger__lines {
    transform: rotate(90deg);
}

.burger__input:checked~.burger__label--rotate .burger__line:nth-child(1) {
    width: calc(var(--bar-width) * 0.5);
}

.burger__input:checked~.burger__label--rotate .burger__line:nth-child(2) {
    width: calc(var(--bar-width) * 0.75);
}

/*------------------------------------*\
  $ROTATE PLUS
\*------------------------------------*/
.burger__label--plus .burger__line:nth-child(2) {
    transition: opacity var(--bar-transition-time) var(--bar-transition);
}

.burger__input:checked~.burger__label--plus .burger__line:nth-child(2) {
    opacity: 0;
}

.burger__input:checked~.burger__label--plus .burger__line:nth-child(1) {
    transform: translateY(var(--bar-offset));
}

.burger__input:checked~.burger__label--plus .burger__line:nth-child(3) {
    transform: translateY(calc(var(--bar-offset) * -1)) rotate(90deg);
}

/*------------------------------------*\
  $ROTATE CROSS
\*------------------------------------*/
/* animate back to inactive */
.burger__label--rotatecross .burger__line:nth-child(2) {
    transition: width var(--bar-transition-time) var(--bar-transition);
    transition-delay: calc(var(--bar-transition-time) * 2);
    transform: translateX(7px);
    /* Évite de modifier `margin-left` */
}

.burger__label--rotatecross .burger__line:nth-child(1),
.burger__label--rotatecross .burger__line:nth-child(3) {
    transition-delay: var(--bar-transition-time);
}

.burger__label--rotatecross .burger__line {
    transition: background-color 0.3s ease;
}

/* animate to active state */
.open-offcanvas-nav.is-clicked {
    .burger__label--rotatecross .burger__line:nth-child(2) {
        width: 0;
        transition-delay: calc(var(--bar-transition-time) * 0);
    }

    .burger__label--rotatecross .burger__line:nth-child(1),
    .burger__label--rotatecross .burger__line:nth-child(3) {
        transition-delay: var(--bar-transition-time);
    }

    .burger__label--rotatecross .burger__line:nth-child(1) {
        transform: translateY(var(--bar-offset));
    }

    .burger__label--rotatecross .burger__line:nth-child(3) {
        transform: translateY(calc(var(--bar-offset) * -1)) rotate(90deg);
    }

    .burger__label--rotatecross .burger__lines {
        transition: all var(--bar-transition-time) var(--bar-transition);
        transition-delay: calc(var(--bar-transition-time) * 2);
        transform: rotate(var(--bar-arrow-angle));
    }

    .burger__label--rotatecross .burger__line {
        background-color: #ffdc0e;
    }

    background-color: transparent;
    /*justify-content: flex-end;*/

    /* Garde le texte et le burger à droite */
    &:hover {
        background-color: transparent;
    }
}

/*------------------------------------*\
  $BURGER ROTATE HALF
\*------------------------------------*/
.burger__label--rotatehalf .burger__lines {
    align-items: flex-start;
}

.burger__label--rotatehalf .burger__line {
    transform-origin: 0 0;
}

.burger__input:checked~.burger__label--rotatehalf .burger__lines {
    transform: rotate(30deg);
}

.burger__input:checked~.burger__label--rotatehalf .burger__line:nth-child(1) {
    width: calc(var(--bar-width) * 0.5);
}

.burger__input:checked~.burger__label--rotatehalf .burger__line:nth-child(2) {
    width: calc(var(--bar-width) * 0.75);
}

/* ------------------------------------ *
 *  Social icons
/* ------------------------------------ */

#cd-lateral-nav .social-icons {
    display: flex;
    margin-top: 15px;
    gap: 11px;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

#cd-lateral-nav .social-icons a {
    float: left;
    padding: 0;
    margin-right: 0;
    font-size: 30px;
    color: #ffdc0e;
}

#cd-lateral-nav .social-icons a:hover {
    background-color: transparent;
    color: #ffdc0e;
}

.quaternary--navbar {
    padding: 30px 0px;
}

.quaternary--navbar .open-offcanvas-nav {
    font-size: 30px;
    color: #d9d9d9;
}

.quaternary--navbar .open-offcanvas-nav:hover {
    color: var(--primary-color);
}

.quaternary--navbar .btn {
    border: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px;
}

.quaternary--navbar .btn i {
    color: var(--primary-color);
}

.quaternary--navbar .btn::before {
    content: none;
}

.quaternary--navbar .btn:hover {
    border: 0px;
    color: var(--primary-color);
}

.quinary--navbar .navbar__logo {
    display: flex;
    align-items: center;
    gap: 120px;
}

.quinary--navbar .open-offcanvas-nav {
    font-size: 30px;
}

.quinary--navbar .open-offcanvas-nav:hover {
    color: var(--primary-color);
}


/*****************************
ANIMATION LINES
*****************************/
.item-efftect {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    bottom: 0;
    pointer-events: none;
}

.item-efftect .efftect {
    position: absolute;
    width: 1px;
    min-height: 100dvh;
    top: 0px;
    overflow: hidden;
}

.item-efftect:not(.efftect-home) .efftect {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 70%, rgba(255, 255, 255, 0) 100%);
}

.item-efftect.efftect-home .efftect {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 15%) 50%, rgb(255 255 255 / 84%) 65%, rgb(255 255 255 / 51%) 100%);
}


.item-efftect .efftect::after {
    position: absolute;
    top: -50%;
    left: 0;
    content: "";
    height: 70px;
    width: 100%;
    display: block;
    /*background: linear-gradient(to bottom, rgba(131, 131, 131, 0.1) 0%, var(--white) 75%, rgba(131, 131, 131, 0.1) 100%);*/
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: run 10s linear infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

item-efftect .efftect:not(.eff-black)::after {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
}

.item-efftect .efftect.eff-black::after {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0) 100%);
}


.item-efftect:not(.efftect-home) .efftect:nth-child(1) {
    left: 3.8%;
}

.item-efftect.efftect-home .efftect:nth-child(1) {
    left: 4.6%;
}

.item-efftect .efftect:nth-child(1)::after {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
}


.item-efftect:not(.efftect-home) .efftect:nth-child(2) {
    left: 96.2%;
}

.item-efftect:not(.efftect-home) .efftect:nth-child(2)::after {
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s;
}



.item-efftect .efftect::after {
    animation: run 5s linear infinite;
    animation-play-state: paused;
}

.item-efftect .efftect.anim-active::after {
    animation-play-state: running;
}




/*.item-efftect .efftect:nth-child(1) {
    left: 3.8%;
  }
  
  .item-efftect .efftect:nth-child(1)::after {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
  }
  
  .item-efftect .efftect:nth-child(2) {
    left: 25%;
  }
  
  .item-efftect .efftect:nth-child(2)::after {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
  }
  
  .item-efftect .efftect:nth-child(3) {
    left: 50%;
  }
  
  .item-efftect .efftect:nth-child(3)::after {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
  }
  
  .item-efftect .efftect:nth-child(4) {
    left: 75%;
  }
  
  .item-efftect .efftect:nth-child(4)::after {
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
  }
  
  .item-efftect .efftect:nth-child(5) {
    left: 96.2%;
  }
  
  .item-efftect .efftect:nth-child(5)::after {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
  }*/


@keyframes run {
    0% {
        top: -50%;
    }

    100% {
        top: 110dvh;
    }
}




.parallax-scroll {
    position: relative;
    height: 100%;
    /* Ajustez selon vos besoins */
    width: 100%;
    overflow: hidden;
}

.parallax-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}


/*section photo home page */
section.section-picture {
    svg {
        overflow: visible !important;
    }

    .parallax-section {
        height: 100dvh;
        width: 100%;
        overflow: hidden;
        top: 0;
        padding: 0 1rem;
        transform-origin: center top;
    }

    .parallax-image {
        height: 200dvh;
        width: 100%;
        object-fit: cover;
        will-change: transform;
    }

    .logo-section {
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-section svg {
        width: 60%;
    }

    .grid-section {
        width: 100%;
        overflow: visible;
        z-index: 2;
    }

    .grid-layout {
        display: flex;
        display: grid;
        height: 100%;
        width: 100%;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 1rem;
        transform-origin: center top;
    }

    .column {
        height: 100%;
    }

    .panel {
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .column-content {
        display: grid;
        grid-template-rows: 45dvh 45dvh 45dvh;
        grid-gap: 1rem;
        height: 100%;
    }

    .grid-image {
        width: 100%;
    }

    .grid-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pin-section {
        height: 100dvh;
        overflow: hidden;
        display: grid;
        grid-row-gap: 1rem;
        grid-template-rows: 1fr 1fr;
    }

    .pin-content {
        width: 300%;
        display: grid;
        grid-column-gap: 1rem;
        grid-template-columns: 1fr 1fr 1fr;
        will-change: transform;
    }

    .pin-box {
        height: 100%;
        width: 100%;
    }

    .pin-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .spacer {
        height: 20dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .scroll-letter {
        fill: #fff;
    }

    .smoother-letter,
    #mouse-wheel {
        fill: #88ce02;
    }

    .by-greensock-letter {
        fill: #fff;
        opacity: 0.6;
    }

    #mouse-outline {
        fill: none;
        stroke: #fff;
        stroke-miterlimit: 10;
        stroke-width: 13px;
    }

}


footer .overlay {
    grid-area: 1 / 1 / 2 / 2;
    position: relative;
    z-index: 1000;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.banner-four {
    background-color: var(--black);
    padding: 260px 0px 130px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 1px solid #414141;
}

.banner-four::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: left top 100px;
    background-image: url("../images/banner/line.png");
}

.banner-four .intro {
    padding-left: 180px;
}

.banner-four .intro p {
    max-width: 400px;
    margin-bottom: 30px;
}

.banner-four .arrow {
    position: relative;
    display: block;
    width: 100%;
    max-width: 740px;
}

.banner-four .arrow::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    height: 2px;
    width: calc(100% - 6px);
    background-color: var(--white);
}

.banner-four .arrow::after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-48%);
    font-size: 24px;
}

.banner-four .banner-four__content {
    position: relative;
    z-index: 9;
}

.banner-four .banner-four__title {
    max-width: 1100px;
    margin-top: 70px;
}

.banner-four .banner-four__title h1 {
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
}

.banner-four .small {
    position: absolute;
    top: 260px;
    left: 9%;
    z-index: 2;
    max-width: 15dvw;
}

.banner-four .large {
    position: absolute;
    top: 100px;
    right: 6%;
    z-index: -1;
    max-width: 30dvw;
}

.banner-five .banner-five__wrapper {
    gap: 30px;
    padding: 220px 0px 130px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.banner-five .banner-five__wrapper .slick-track {
    padding: 20px 0px !important;
}

.banner-five .banner-five__single {
    min-width: 450px;
    width: 450px;
}

.banner-five .projects-s__single {
    padding: 30px;
    border: 1px solid #414141;
}

.banner-five .projects-s__single .thumb a {
    width: 100%;
}

.banner-five .projects-s__single .thumb a img {
    width: 100%;
}

.banner-five .projects-s__single .content {
    margin-top: 30px;
}

.banner-five .projects-s__single .content h4 {
    text-transform: capitalize;
}

.banner-five .projects-s__single .content p {
    margin-top: 20px;
    color: #d9d9d9;
}

#pages .c-sidebar.c-side-left:not(.no-line)::before {
    /*visibility: hidden;*/
    top: 0;
    max-height: none;
}

#pages .c-sidebar.c-side-left.no-line::before {
    visibility: hidden;
    top: 0;
    max-height: none;
}

/*#pages .content-wrapper {
    z-index: 2;
    position: relative;
}*/

/*****************************
	Team
*****************************/
.team-item {
    position: relative;
    z-index: 1;
}

.team-item .team-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
}

.team-item .team-img img {
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}

.team-item .team-img .image-overlay {
    border-radius: 8px;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 50px;
    z-index: 1;
    opacity: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: none !important;
}

.team-item .team-info .team-title {
    font-size: 26px;
    line-height: 34px;
    font-family: var(--oswald);
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.team-item .team-info .team-title:hover {
    color: var(--primary-color);
}

.team-item .team-info .team-destination {
    color: #ffffff;
}

.team-item:hover .team-img img {
    transform: scale(1.1);
}

.team-item:hover .team-img .image-overlay {
    opacity: 1;
}

.team-item:hover .team-img .image-overlay img {
    transform: inherit;
}

.team-item:hover .team-social {
    left: 0;
}

.team-style-1 .team-social {
    margin-top: 15px;
}

.team-style-1 .team-social ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.team-style-1 .team-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 39px;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: normal;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 80%;

    &:hover {
        color: #000;
    }
}

.team-style-1 .team-social ul li a:after {
    content: "";
    position: absolute;
    left: -4px;
    bottom: -4px;
    width: 100%;
    height: 100%;
    z-index: -2;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 80%;
    transition: all 0.3s ease-in-out;
}

.team-style-1 .team-social ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    border-radius: 80%;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
    background: linear-gradient(150deg,
            var(--primary-color) 2%,
            var(--primary-color) 56%,
            var(--primary-color) 100%);
}

.team-style-1 .team-social ul li a:hover:after {
    left: 0px;
    bottom: 0px;
    opacity: 0;
}

.team-style-1 .team-social ul li a:hover:before {
    opacity: 1;
}

.team-style-1 .team-social:hover .team-social {
    left: 0;
}

.team-boxs.team-top-space {
    margin-top: 100px;
}

.team-style-2 {
    margin-bottom: 20px;
}

.team-style-2:last-child {
    margin-bottom: 0;
}

.team-style-2 .team-img {
    overflow: visible;
}

.team-style-2 .team-img>img {
    border-radius: 8px;
}

.team-style-2 .team-social {
    z-index: 99;
    position: absolute;
    bottom: -30px;
    right: 20px;
    transition: all 0.4s ease-in-out;
}

.team-style-2 .team-social .share-icon {
    margin-top: 0;
    height: 60px;
    width: 60px;
    background-image: linear-gradient(60deg,
            var(--primary-color) -20%,
            var(--primary-color) 100%);
    border-radius: 100%;
    border: 7px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.team-style-2 .team-social .share-icon img {
    height: 20px;
    width: 20px;
}

.team-style-2 .team-social .share-icon ul {
    position: absolute;
    right: 0;
    bottom: 100%;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: flex-end;
    flex-direction: column-reverse;
    transition: all 0.4s ease-in-out;
}

.team-style-2 .team-social .share-icon ul li {
    margin-right: 7px;
}

.team-style-2 .team-social .share-icon ul li a {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
    border-radius: 100px;
    color: #8f91ab;
    gap: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.team-style-2 .team-social .share-icon ul li a span {
    font-size: 0;
    line-height: 26px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.team-style-2 .team-social .share-icon ul li a i {
    height: 26px;
    width: 18px;
    line-height: 26px;
}

.team-style-2 .team-social .share-icon ul li a:hover {
    gap: 10px;
}

.team-style-2 .team-social .share-icon ul li a:hover span {
    font-size: 18px;
}

.team-style-2 .team-social:hover {
    padding-top: 15px;
}

.team-style-2 .team-social:hover .share-icon ul {
    visibility: visible;
    opacity: 1;
}

.team-style-2 .team-social:hover .share-icon ul li {
    position: relative;
}

.team-style-2 .team-social:hover .share-icon ul li.share-icon {
    margin-top: 5px;
}

.team-style-2:hover .team-social {
    left: inherit;
}

.team-style-2:hover .team-img img {
    transform: scale(1);
}

/*****************************
      Team Single
  *****************************/
.team-single .team-img {
    padding-right: 110px;
}

.team-single .team-info .team-title {
    margin-bottom: 10px;
}

.team-single .team-info .team-destination {
    font-size: 24px;
    line-height: normal;
    font-weight: 500;
    color: #000000;
}

.team-single .team-info .social-icon {
    margin: 40px 0px;
}

.team-skills .section-title p {
    padding-right: 110px;
}

@media (max-width: 1199px) {
    .team-single .team-img {
        padding-right: 0px;
    }

    .team-skills .section-title p {
        padding-right: 0px;
    }
}

@media (max-width: 991px) {
    .team-single .team-img {
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .team-single .team-img {
        margin-bottom: 30px;
    }

    .team-single .team-info .social-icon {
        margin: 20px 0px;
    }

    .team-single .team-info .team-destination {
        font-size: 16px;
    }

    .team-boxs.team-top-space {
        margin-top: 30px;
    }

    .team-style-2 {
        margin-bottom: 0;
    }
}

/*****************************
      FACILE
  *****************************/
.section-facile a:hover {
    color: var(--primary-color);
    text-decoration: underline !important;
}

/*****************************
      Testimonial
  *****************************/
#quote-1 stop.start-color,
#quote-2 stop.start-color,
#quote-3 stop.start-color,
#quote-4 stop.start-color,
#quote-5 stop.start-color,
#quote-6 stop.start-color,
#quote-7 stop.start-color,
#quote-8 stop.start-color {
    stop-color: var(--primary-color);
}

#quote-1 stop.end-color,
#quote-2 stop.end-color,
#quote-3 stop.end-color,
#quote-4 stop.end-color,
#quote-5 stop.end-color,
#quote-6 stop.end-color,
#quote-7 stop.end-color,
#quote-8 stop.end-color {
    stop-color: var(--primary-color);
}

/* Testimonial Style 1 -------------------*/
.testimonial-wrapper.testimonial-style-1 {
    text-align: center;
}

.testimonial-wrapper.testimonial-style-1 .testimonial-quote {
    position: relative;
    display: inline-block;
}

.testimonial-wrapper.testimonial-style-1 .quote-border {
    position: absolute;
    left: -5px;
    top: -5px;
}

.testimonial-wrapper.testimonial-style-1 .testimonial-content {
    font-size: 24px;
    line-height: 38px;
    font-style: italic;
    margin-top: 15px;
}

.testimonial-wrapper.testimonial-style-1 .testimonial-content p {
    margin-bottom: 0;
}

.testimonial-wrapper.testimonial-style-1 .testimonial-author {
    margin-top: 30px;
}

.testimonial-wrapper.testimonial-style-1 .testimonial-author .author-info .author-name {
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(170deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-wrapper.testimonial-style-1 .testimonial-author .author-info .author-position {
    font-size: 20px;
}

/* Big Arrow --------*/
.big-testimonial-section .owl-carousel.carousel-arrow-big .owl-nav button {
    margin-top: -34px;
}

/* Testimonial Style 2 -------------------*/
.testimonial-items .testimonial-wrapper:nth-child(odd) {
    margin-top: 40px;
}

.testimonial-items .testimonial-wrapper:nth-child(even) {
    margin-bottom: 40px;
}

.testimonial-section .owl-item.active .testimonial-wrapper.testimonial-style-2:before {
    content: inherit;
}

.testimonial-section .owl-item .testimonial-wrapper.testimonial-style-2:before {
    content: "";
    width: 85%;
    height: 100%;
    border-radius: 100%;
    background-color: #000000;
    position: absolute;
    left: inherit;
    top: 0px;
    right: 0px;
    bottom: 0px;
    filter: blur(55px);
}

.testimonial-section .owl-item:nth-child(odd) {
    margin-top: 40px;
}

.testimonial-section .owl-item:nth-child(even) {
    margin-bottom: 40px;
}

.testimonial-wrapper.testimonial-style-2 {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.testimonial-wrapper.testimonial-style-2 .testimonial-quote {
    position: absolute;
    right: 20px;
    top: 15px;
}

.testimonial-wrapper.testimonial-style-2 .testimonial-ratings {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.testimonial-wrapper.testimonial-style-2 .testimonial-ratings i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(170deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-wrapper.testimonial-style-2 .testimonial-content {
    font-size: 22px;
    line-height: 32px;
    font-style: italic;
    margin-top: 30px;
}

.testimonial-wrapper.testimonial-style-2 .testimonial-content p {
    margin-bottom: 0;
}

.testimonial-wrapper.testimonial-style-2 .testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

.testimonial-wrapper.testimonial-style-2 .testimonial-author .author-name {
    font-size: 22px;
    line-height: 32px;
    margin: 0;
    background: linear-gradient(170deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1200px) {
    .testimonial-wrapper.testimonial-style-1 .testimonial-content {
        font-size: 24px;
        line-height: 40px;
    }
}

@media (max-width: 991px) {
    .testimonial-wrapper.testimonial-style-1 .testimonial-content {
        font-size: 22px;
        line-height: 38px;
    }

    .testimonial-wrapper.testimonial-style-1 svg {
        width: 100px;
        height: 100px;
    }

    .testimonial-wrapper.testimonial-style-1 .quote-border {
        left: -3px;
        top: -3px;
    }
}

@media (max-width: 479px) {
    .testimonial-wrapper.testimonial-style-2 {
        padding: 20px;
    }
}

/*****************************
    Newsletter
  *****************************/
.newsletter {
    position: relative;
}

.newsletter .form-control {
    padding-right: 150px;
}

.newsletter .btn {
    position: absolute;
    right: 0;
    line-height: 20px;
    top: 0;
    padding: 14px 30px;
}

.newsletter-subscribe .title {
    font-family: var(--oswald);
    font-size: 200px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.newsletter-subscribe .form-group .form-control {
    color: #ffffff;
    font-size: 20px;
    padding: 30px 0px;
    padding-right: 150px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-subscribe .form-group .form-control:placeholder-shown {
    color: #ffffff;
}

.newsletter-subscribe .form-group .form-control:focus {
    border-color: var(--primary-color);
}

.newsletter-subscribe .form-group .subscribe-btn {
    font-size: 20px;
    line-height: normal;
    flex-direction: row;
    gap: 15px;
    padding: 15px 0;
    height: auto;
    width: auto;
    border: none;
    color: white;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.newsletter-subscribe .form-group .subscribe-btn:hover {
    border: none;
    color: var(--primary-color);
}

.newsletter-subscribe .form-group .subscribe-btn:after {
    display: none;
}

.newsletter-subscribe .form-check {
    margin: 0;
    min-height: auto;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-subscribe .form-check .form-checkbox {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 4px;
    border: 1px solid #ffffff;
}

.newsletter-subscribe .form-check .form-checkbox:checked {
    border-color: transparent;
}

.newsletter-subscribe .form-check .form-checkbox:checked:before {
    content: "\f00c";
    height: 16px;
    width: 16px;
    border-radius: 4px;
    font-family: "Font Awesome 6 Pro";
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(-55deg,
            var(--primary-color) 2%,
            var(--primary-color) 56%,
            var(--primary-color) 99%);
}

@media (max-width: 1199px) {
    .newsletter-subscribe .title {
        font-size: 160px;
    }
}

@media (max-width: 991px) {
    .newsletter-subscribe .title {
        font-size: 120px;
    }

    .newsletter-subscribe .form-group .form-control {
        padding: 20px 0;
    }

    .newsletter-subscribe .form-check {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .newsletter-subscribe .title {
        font-size: 90px;
    }
}

@media (max-width: 575px) {
    .newsletter-subscribe .title {
        font-size: 74px;
    }

    .newsletter-subscribe .form-group .form-control {
        padding: 15px 0;
        font-size: 16px;
    }

    .newsletter-subscribe .form-group .subscribe-btn {
        font-size: 16px;
        gap: 10px;
    }

    .newsletter-subscribe .form-check label {
        font-size: 16px;
    }
}

@media (max-width: 479px) {
    .newsletter-subscribe .title {
        text-align: center;
        font-size: 46px;
        position: relative;
        top: inherit;
        left: inherit;
        transform: none;
        z-index: 1;
        margin-bottom: 15px;
    }
}

/*****************************
    Find Job
  *****************************/
.ct-section {
    width: 100%;
    background-size: cover;
    background-repeat: repeat;
}

.ct-section-inner-wrap {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.ct-section-inner-wrap,
.oxy-header-container {
    max-width: 1120px;
}

div.ct-fancy-icon {
    display: inline-flex;
    border-radius: 50%;
}

.ct-fancy-icon>svg {
    fill: currentColor;
}

.ct-div-block {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
}

#overlay {
    position: fixed;
    inset: 0;
    background-color: var(--black);
    z-index: 20000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    width: 100%;
    max-width: 1700px;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: 2rem 1rem 0 2rem;
    box-sizing: border-box;
    justify-content: space-between;
    height: 100dvh;
}

.job-detail-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}


#overlay .case-info-section {
    width: 100dvw;
    margin-left: calc(-50dvw + 50%);
    background: var(--primary-color);
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.case-info-section .case-info ul {
    padding-left: 0px;
    list-style: none;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 0px;
}

.case-info-section .case-info ul li h6 {
    margin-bottom: 6px;
    color: #000;
}

.case-info-section .case-info ul li a:hover {
    color: #ffffff;
}

.case-info-section .case-info {
    background-color: var(--primary-color);
    max-width: 1700px;
    margin: 0 auto;
}

#overlay .case-info .list-wrapper li {
    margin: 0 1rem;
}

#overlay .case-info .list-wrapper li,
#overlay .case-info .list-wrapper p {
    text-align: center;
    margin-bottom: 0px;
}

#overlay .job-detail-info p {
    color: #000;
    font-size: 16px;
    line-height: 26px;
    margin-top: 1rem;
    text-align: justify;

    &.h5 {
        margin-bottom: 1rem;
    }
}

#overlay .job-detail-info .list-wrapper span {
    color: #000;
    font-size: 16px;
    line-height: 26px;
    margin-top: 0;
    text-align: justify;
}

#overlay .job-detail-info .case-avantages .list-wrapper span {
    text-align: left;
}

#overlay .job-detail-info .case-avantages .list-wrapper.list-benefits span {
    color: #fff;
}


#overlay .case-info .list-unstyled li p {
    margin-bottom: 0;
    color: #000;
}

#overlay .job-detail-info .list-wrapper .list {
    gap: 10px;
}

#overlay .job-detail-info .case-avantages .list-wrapper .list {
    display: block;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

#overlay h4 {
    margin-bottom: 1rem;
}

#overlay form .col-md-6 {
    padding: 0.5rem;
    box-sizing: border-box;
}

#overlay form .col-lg-12 {
    padding: 0.5rem;
    box-sizing: border-box;
}

#overlay form span {
    font-size: 16px;
    color: #d4d6d7;
}

#overlay form.form-style-border .form-control {
    margin-bottom: 0;
}

#overlay .left-form,
#overlay .form-wrapper {
    overflow: hidden;
}

#overlay>* {
    transform: none !important;
}


html.lock-scroll,
body.lock-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

#div_block {
    position: static !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transform: none !important;
}


#text_block {
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 600;
    color: #bababa
}


#fancy_icon {
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    margin-top: 35px;
    position: absolute;
    top: 0;
    right: 15px;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}

#fancy_icon i:hover {
    color: #fff;
}

#fancy_icon>i {
    font-size: 27px;
}


#_nav_menu {
    font-family: 'Montserrat';
    font-size: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: none !important;
}

#_nav_menu .oxy-nav-menu-list {
    flex-direction: column
}

#_nav_menu .menu-item a {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px
}

#_nav_menu.oxy-nav-menu:not(.oxy-nav-menu-open) .sub-menu {
    background-color: #000000
}

#_nav_menu.oxy-nav-menu:not(.oxy-nav-menu-open) .sub-menu .menu-item a {
    border: 0;
    padding-left: 20px;
    padding-right: 20px
}

#_nav_menu .menu-item:hover a {
    background-color: #000000
}

#_nav_menu.oxy-nav-menu:not(.oxy-nav-menu-open) .sub-menu:hover {
    background-color: #000000
}

#_nav_menu.oxy-nav-menu:not(.oxy-nav-menu-open) .sub-menu .menu-item a:hover {
    border: 0;
    padding-left: 20px;
    padding-right: 20px
}

@media (max-width:991px) {
    #_nav_menu {
        font-size: 20px
    }

    #_nav_menu.oxy-nav-menu:not(.oxy-nav-menu-open) .sub-menu .menu-item a {
        border: 0
    }
}


.find-job-wrapper .find-job-item {
    padding: 40px 0;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.05);*/
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    transition: background 0.3s ease;
}

/*.find-job-wrapper .find-job-item:first-child {
    padding-top: 0;
  }*/

.find-job-wrapper .find-job-item:last-child {
    /*padding-bottom: 0;*/
    border-bottom: none;
}

.find-job-wrapper .find-job-item .job-title {
    margin-bottom: 20px;
}

.find-job-wrapper .find-job-item .job-title .awards-name {
    margin-bottom: 0;
}

.find-job-wrapper .find-job-item .job-details {
    display: flex;
    gap: 40px;
    padding-bottom: 25px;
}

.find-job-wrapper .find-job-item .job-details .job-image {
    width: 300px;
    flex: none;
    overflow: hidden;
    border: 2px solid rgb(0 0 0);
    border-radius: 10px;
    max-height: 215px;
}

.find-job-wrapper .find-job-item .job-details .job-image img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.find-job-wrapper .find-job-item .job-details .job-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-right: 50px;
}

.find-job-wrapper .find-job-item .job-details .job-location {
    font-weight: 500;
}

.find-job-wrapper .find-job-item .job-details .job-desc {
    max-width: 680px;
}

.find-job-wrapper .find-job-item .job-details .job-info {
    display: flex;
    gap: 50px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.find-job-wrapper .find-job-item .job-details .job-info .info-item {
    color: #ffffff;
    font-weight: 500;
}

.find-job-wrapper .find-job-item .job-details .job-action {
    align-self: center;
    margin-left: auto;
}

/*.find-job-wrapper .find-job-item:hover {
    background-color: var(--primary-color);
  }*/

@media (max-width: 1400px) {
    .find-job-wrapper .find-job-item .job-details .job-content {
        padding-right: 0;
    }

    .find-job-wrapper .find-job-item .job-details .job-info {
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .find-job-wrapper .find-job-item .job-details {
        display: flex;
        gap: 30px;
    }

    .find-job-wrapper .find-job-item .job-details .job-action {
        align-self: flex-start;
    }
}

@media (max-width: 991px) {
    .find-job-wrapper .find-job-item .job-details {
        flex-wrap: wrap;
    }

    .find-job-wrapper .find-job-item .job-details .job-image {
        width: 100%;
    }

    .find-job-wrapper .find-job-item .job-details .job-action {
        margin-left: 0;
    }
}

.find-job-item .container {
    max-width: 1440px;
}

/*hover carriere*/
.section-jobs {
    position: relative;

    .find-job-item {
        position: relative;
        overflow: hidden;
        /* Fond de base */
        /*border-radius: 12px;*/
        background: rgb(30 30 30 / 17%);
        transition: background 0.8s ease;
        z-index: 1;
        will-change: transform, background;
        min-height: auto;
        /* 🔥 Évite que l'élément prenne plus de place que nécessaire */
        /*padding-bottom: 0;*/
        /*&:nth-child(2n+1) {
          background: #000;
        }
        &:nth-child(2n) {
          background: #0c0c0c;
        }*/
    }

    .find-job-item {
        align-items: center;
        background: 0 0;
        /*border: none;
        border-radius: 6.25rem;*/

        cursor: pointer;
        /*display: inline-flex;*/
        font-size: 1.2rem;
        font-weight: 600;
        gap: 0.363636em;
        justify-content: center;
        letter-spacing: -0.01em;
        line-height: 1.04545;
        overflow: hidden;
        padding: 2.5rem 1.5rem;
        position: relative;
        text-decoration: none;
        word-break: break-word;
        text-decoration: none;

        /*&:nth-child(2n+1) .job-flair:before {
            background-color: #ffdc0e;
        }
      
        &:nth-child(2n) .job-flair:before {
          background-color: #313131;
        }*/

        &:nth-child(2n+1):hover {

            .job-title,
            .job-details,
            .job-action {
                color: #000;

                & span,
                h4,
                .job-info .info-item {
                    color: #000;
                }
            }

            .job-info {
                border-top: 1px solid rgb(0 0 0);
            }

            .btn-effect {
                background: #000;
            }

            .btn-effect span {
                color: #fff;
            }
        }

    }


    .cities-container {
        position: relative;
        width: 100%;
    }

    .city {
        /*border-top: 1px solid #fff;*/
        cursor: pointer;
        position: relative;
        margin-bottom: -2dvw;
        background-color: rgb(30 30 30 / 17%);
    }

    .city h2 {
        margin: 0px;
        font-family: 'Poppins', sans-serif;
        font-size: 4dvw;
        padding-left: 10px;
        text-transform: uppercase;
        color: #fff;
        pointer-events: none;
    }

}

/*****************************
    Counter
  *****************************/
.counter {
    display: flex;
    gap: 30px;
    align-items: center;
    color: #ffffff;
    /* Counter Style 1 ----------------*/
    /* Counter Style 2 ----------------*/
}

.counter .counter-number {
    font-family: var(--oswald);
    font-size: 48px;
}

.counter .counter-title {
    font-family: var(--oswald);
    font-size: 22px;
    line-height: 30px;
}

.counter.counter-style-1 {
    position: relative;
    padding: 20px 0;
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}

.counter.counter-style-1 .counter-info {
    width: 190px;
}

.counter.counter-style-1:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    background: linear-gradient(170deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
}

.counter.counter-style-2 {
    position: relative;
    padding: 35px 50px;
    margin-left: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.counter.counter-style-2 .counter-number {
    font-size: 42px;
    line-height: 42px;
}

.counter.counter-style-2 .counter-info {
    width: 190px;
}

.counter.counter-style-2:before {
    content: "";
    position: absolute;
    left: -10px;
    bottom: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    z-index: -1;
}

@media (max-width: 1199px) {
    .counter.counter-style-2 {
        padding: 35px 20px;
    }

    .counter {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .counter.counter-style-2 {
        gap: 15px;
        padding: 30px 15px;
    }

    .counter.counter-style-2 .counter-number {
        font-size: 30px;
        line-height: 30px;
    }

    .counter.counter-style-2 .counter-title {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 767px) {
    .counter {
        gap: 20px;
    }

    .counter .counter-number {
        font-size: 36px;
        line-height: 46px;
    }

    .counter .counter-info .counter-title {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .counter.counter-style-1 .counter-info {
        width: auto;
    }
}

/*****************************
    Case Studies
  *****************************/
.case-studies-wrapper.case-studies-style-1 {
    position: relative;
    overflow: hidden;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-img {
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 20px;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-img img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-img .category {
    color: #ffffff;
    position: absolute;
    top: 30px;
    right: 35px;
    padding: 9px 37px;
    border-radius: 80%;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-img .category:before {
    content: "";
    position: absolute;
    right: -5px;
    top: -2px;
    width: 100%;
    height: 100%;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 80%;
    transition: all 0.3s ease-in-out;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-img .category:after {
    content: "";
    position: absolute;
    left: -5px;
    bottom: -2px;
    width: 100%;
    height: 100%;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 80%;
    transition: all 0.3s ease-in-out;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-info {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 40px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.5) 80%);
}

.case-studies-wrapper.case-studies-style-1 .case-studies-info:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 40px;
    opacity: 0;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    /*background: linear-gradient(180deg, rgba(0, 56, 255, 0) 40%, #ffdc0e 80%);*/
}

.case-studies-wrapper.case-studies-style-1 .case-studies-info-inner {
    position: relative;
    z-index: 1;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-info-inner .case-studies-title {
    margin-bottom: -30px;
    transition: all 0.3s ease-in-out;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-info-inner .case-studies-title a {
    display: table;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-content {
    margin-bottom: -30px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-description {
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.case-studies-wrapper.case-studies-style-1 .case-studies-description {
    color: #ffffff;
}

.case-studies-wrapper.case-studies-style-1:hover .case-studies-img img {
    transform: scale(1.1);
}

.case-studies-wrapper.case-studies-style-1:hover .case-studies-info:before {
    opacity: 1;
}

.case-studies-wrapper.case-studies-style-1:hover .case-studies-title a {
    color: #ffffff;
}

.case-studies-wrapper.case-studies-style-1:hover .case-studies-content {
    margin-bottom: 5px;
    opacity: 1;
}

.case-studies-wrapper.case-studies-style-1:hover .case-studies-title {
    margin-bottom: 20px;
}

.case-studies-wrapper.case-studies-style-1:hover a.category {
    color: var(--primary-color);
}

.case-studies-wrapper.case-studies-style-1:hover a.category:before {
    border: 1px solid var(--primary-color);
}

.case-studies-wrapper.case-studies-style-1:hover a.category:after {
    border: 1px solid var(--primary-color);
}

/* Case Studies Style-2 */
.case-studies-wrapper.case-studies-style-2 .case-studies-item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease-in-out;
}

.case-studies-wrapper.case-studies-style-2 .case-studies-item .item-inner {
    display: flex;
    gap: 50px;
    padding: 40px 0;
    align-items: center;
}

.case-studies-wrapper.case-studies-style-2 .case-studies-item .case-studies-title {
    width: 35%;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.case-studies-wrapper.case-studies-style-2 .case-studies-item .case-studies-description {
    width: 65%;
    transition: all 0.3s ease-in-out;

}

.case-studies-wrapper.case-studies-style-2 .case-studies-item .case-studies-description p {
    padding: 7px 0;
}

.case-studies-wrapper.case-studies-style-2 .case-studies-item .case-studies-action {
    margin-left: auto;
    transition: all 0.3s ease-in-out;
}

.case-studies-wrapper.case-studies-style-2 .case-studies-item .gsap-img-animation {
    /*position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    width: 280px;
    height: 280px;
    padding: 8px;
    visibility: hidden;
    object-fit: cover;
    pointer-events: none;*/
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: absolute;
    /* Devient relatif à la section */
    top: 0;
    left: 0;
    width: 280px;
    height: 280px;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99999;
}

.case-studies-wrapper.case-studies-style-2 .case-studies-item .marquee-wrapper {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.case-studies-wrapper.case-studies-style-2 .case-studies-item:hover {
    border-bottom-color: var(--primary-color);
}

/*.case-studies-wrapper.case-studies-style-2
    .case-studies-item:hover
    .item-inner
    .case-studies-title,
  .case-studies-wrapper.case-studies-style-2
    .case-studies-item:hover
    .item-inner
    .case-studies-description {
    opacity: 0;
    pointer-events: none;
  }*/

.case-studies-wrapper.case-studies-style-2 .case-studies-item:hover .case-studies-action {
    z-index: 8;
}

/*.case-studies-wrapper.case-studies-style-2
    .case-studies-item:hover
    .marquee-wrapper {
    opacity: 1;
    pointer-events: auto;
  }*/

/*Case Study Single*/


.challenge-iteam {
    margin-bottom: 40px;
}

.challenge-iteam h6.title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    display: flex;
    align-items: start;
}

.challenge-iteam h6.title img {
    width: 24px;
    flex: 0 0 24px;
    margin-right: 20px;
}

.case-study-fancy-wrapper {
    display: flex;
    gap: 30px;
    padding: 0 30px;
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 {
    flex: 1;
    border-radius: 20px;
    transition: 0.8s;
    height: 800px;
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-img {
    height: 100%;
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-img img {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    transition: 0.5s;
    background-position: center center;
    background-size: cover;
    object-fit: cover;
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-info {
    padding: 40px 50px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transition-delay: 250ms;
    z-index: 1;
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-info .case-studies-info-inner .case-studies-title {
    margin-bottom: 20px;
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-info .case-studies-info-inner .case-studies-content {
    margin-bottom: 20px;
    opacity: 1;
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active {
    flex: 3.5;
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .category {
    color: var(--primary-color);
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .category:before {
    border: 1px solid var(--primary-color);
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .category:after {
    border: 1px solid var(--primary-color);
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .case-studies-img:before {
    opacity: 1;
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .case-studies-info {
    opacity: 1;
    visibility: visible;
}

.case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .case-studies-info:before {
    opacity: 1;
}

/*------------------------------------*/
/* Responsive CSS */
/*------------------------------------*/
@media (min-width: 1500px) {
    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active {
        flex: 2;
    }
}

@media (max-width: 1399px) {
    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-info {
        padding: 40px 30px;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-img .category {
        right: 15px;
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 {
        height: 650px;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-img .category {
        opacity: 0;
        visibility: hidden;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .case-studies-img .category {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 991px) {
    .case-studies-wrapper.case-studies-style-2 .case-studies-item .item-inner {
        gap: 60px;
    }

    /*Case Study Fancy*/
    .case-study-fancy-wrapper {
        gap: 24px;
        padding: 0 12px;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 {
        height: 550px;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-info {
        padding: 30px 15px;
    }
}

@media (max-width: 767px) {
    .case-info-section .case-info ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .case-studies-wrapper.case-studies-style-2 .case-studies-item .item-inner {
        flex-direction: column;
        gap: 15px;
        align-items: normal;
    }

    .case-studies-wrapper.case-studies-style-2 .case-studies-item .case-studies-action {
        margin-left: 0;
    }

    .case-studies-wrapper.case-studies-style-2 .case-studies-item .gsap-img-animation {
        position: absolute;
        left: auto;
        right: 0;
        bottom: 30px;
        top: auto;
        opacity: 1;
        visibility: visible;
        transform: inherit !important;
        z-index: -1;
    }

    .case-studies-wrapper.case-studies-style-2 .case-studies-item .case-studies-description {
        width: 50%;
    }

    /*Case Study Fancy*/
    .case-study-fancy-wrapper {
        flex-wrap: wrap;
        padding: 0;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 {
        width: calc(50% - 12px);
        height: auto;
        flex: auto;
        flex-grow: 0;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-img {
        width: auto;
        height: auto;
        position: relative;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-img .category {
        opacity: 1;
        visibility: visible;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-info {
        opacity: 1;
        visibility: visible;
        padding: 20px 15px;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-info .case-studies-info-inner .case-studies-title {
        margin-bottom: 10px;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-info .case-studies-info-inner .case-studies-content {
        font-size: 16px;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active {
        width: calc(50% - 12px);
        height: auto;
        flex: auto;
        flex-grow: 0;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .case-studies-info {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 575px) {
    .case-info-section .case-info ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-studies-wrapper.case-studies-style-2 .case-studies-item .case-studies-description {
        width: 80%;
    }

    /*Case Study Fancy*/
    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1,
    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active {
        width: 100%;
        max-height: 500px;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-img,
    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .case-studies-img {
        height: 100%;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-img .category,
    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .case-studies-img .category {
        top: 15px;
    }

    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1 .case-studies-img img,
    .case-study-fancy-wrapper .case-studies-wrapper.case-studies-style-1.active .case-studies-img img {
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 375px) {
    .case-info-section .case-info ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .case-studies-wrapper.case-studies-style-2 .case-studies-item .case-studies-description {
        width: 100%;
    }
}

/*****************************
      Owl Carousel
  *****************************/
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    height: 60px;
    padding: 0px;
    background: #ffffff;
    transition: all 0.5s ease-in-out;
    position: absolute;
    top: 0;
    transform: translate(0px, 0px);
    z-index: 2;
    overflow: hidden;
    font-family: var(--oswald);
    border-radius: 100%;
}

.owl-carousel .owl-nav button.owl-prev i,
.owl-carousel .owl-nav button.owl-next i {
    display: none;
}

.owl-carousel .owl-nav button.owl-prev.owl-prev,
.owl-carousel .owl-nav button.owl-next.owl-prev {
    top: 250px;
    left: 40px;
}

.owl-carousel .owl-nav button.owl-prev.owl-prev:after,
.owl-carousel .owl-nav button.owl-next.owl-prev:after {
    position: absolute;
    content: "";
    background: url(../images/svg/owl-arrow-prev.svg);
    background-repeat: no-repeat;
    background-size: 22px;
    height: 21px;
    width: 22px;
}

.owl-carousel .owl-nav button.owl-prev.owl-next,
.owl-carousel .owl-nav button.owl-next.owl-next {
    right: 40px;
    top: 250px;
}

.owl-carousel .owl-nav button.owl-prev.owl-next:after,
.owl-carousel .owl-nav button.owl-next.owl-next:after {
    position: absolute;
    content: "";
    background: url(../images/svg/owl-arrow-next.svg);
    background-repeat: no-repeat;
    background-size: 22px;
    height: 21px;
    width: 22px;
}

.owl-carousel .owl-item img {
    width: auto;
    display: inherit;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel button.owl-dot {
    width: 16px;
    height: 16px;
    background: #fff !important;
    border-radius: 50%;
    margin-right: 10px;
    opacity: 1;
}

.owl-carousel button.owl-dot.active {
    background: var(--primary-color) !important;
    opacity: 1;
}

.owl-carousel.slider-overflow .owl-stage-outer {
    overflow: visible;
}

div[cursor-type="text"] .owl-carousel,
div[cursor-type="arrow"] .owl-carousel,
.owl-carousel[cursor-type="text"],
.owl-carousel[cursor-type="arrow"] {
    cursor: none;
}

/*-------------------------*/
/* Big Arrow */
/*-------------------------*/
.owl-carousel.carousel-arrow-big {
    padding: 0 250px;
}

.owl-carousel.carousel-arrow-big .owl-nav button {
    position: absolute;
    top: 50%;
    margin-top: -64px;
    width: 128px;
    height: 128px;
    background: transparent;
    border: 1px solid var(--primary-color);
}

.owl-carousel.carousel-arrow-big .owl-nav button.owl-prev {
    left: 0;
}

.owl-carousel.carousel-arrow-big .owl-nav button.owl-prev:after {
    height: 38px;
    width: 41px;
    background-size: 41px;
}

.owl-carousel.carousel-arrow-big .owl-nav button.owl-next {
    left: auto;
    right: 0;
}

.owl-carousel.carousel-arrow-big .owl-nav button.owl-next:after {
    height: 38px;
    width: 41px;
    background-size: 41px;
}

@media (max-width: 1400px) {
    .owl-carousel.carousel-arrow-big {
        padding: 0 200px;
    }
}

@media (max-width: 1200px) {
    .owl-carousel.carousel-arrow-big {
        padding: 0 150px;
    }

    .owl-carousel.carousel-arrow-big .owl-nav button {
        width: 100px;
        height: 100px;
    }

    .owl-carousel.carousel-arrow-big .owl-nav button.owl-prev:after {
        height: 30px;
        width: 32px;
        background-size: cover;
    }

    .owl-carousel.carousel-arrow-big .owl-nav button.owl-next:after {
        height: 30px;
        width: 32px;
        background-size: cover;
    }
}

@media (max-width: 991px) {
    .owl-carousel.carousel-arrow-big {
        padding: 0 130px;
    }

    .owl-carousel.carousel-arrow-big .owl-nav button {
        width: 80px;
        height: 80px;
    }

    .owl-carousel.carousel-arrow-big .owl-nav button.owl-prev:after {
        height: 26px;
        width: 28px;
    }

    .owl-carousel.carousel-arrow-big .owl-nav button.owl-next:after {
        height: 26px;
        width: 28px;
    }
}

@media (max-width: 767px) {
    .owl-carousel .owl-nav {
        display: none;
    }

    .owl-carousel.carousel-arrow-big {
        padding: 0 15px;
    }
}

/*****************************
    Pricing
  *****************************/
.pgs-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Accordion Light */
}

.pgs-accordion.pgs-pricing {
    flex: 1 1 auto;
    overflow-y: auto;
    padding-right: 20px;
    /*scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;*/
}


.pgs-accordion.pgs-pricing::-webkit-scrollbar,
.events-tab-wrapper::-webkit-scrollbar {
    width: 7px;
}

.pgs-accordion.pgs-pricing::-webkit-scrollbar-track,
.events-tab-wrapper::-webkit-scrollbar-track {
    background-color: rgba(105, 105, 105, 0.13);
}

.pgs-accordion.pgs-pricing::-webkit-scrollbar-thumb,
.events-tab-wrapper::-webkit-scrollbar-thumb {
    background-color: #ffdc0e;
    border-bottom: none;
    border-radius: 4px;
}

.pgs-accordion.pgs-pricing::-webkit-scrollbar-button,
.events-tab-wrapper::-webkit-scrollbar-button {
    display: none;
}



.pgs-accordion:not(.pgs-pricing) .accordion-item {
    padding: 35px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

.pgs-accordion.pgs-pricing .accordion-item {
    padding: 15px 40px;
    border-radius: 20px;
    transition: color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0);
}

.pgs-accordion.pgs-pricing .accordion-item:hover {
    /*border: none;
    background-color: var(--primary-color);
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    transition: color 0.3s ease;*/
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pgs-accordion.pgs-pricing .accordion-item:hover .package-title,
.pgs-accordion.pgs-pricing .accordion-item:hover .price {
    color: var(--primary-color);
    transition: color 0.3s ease;
}


.pgs-accordion.pgs-pricing .accordion-item:hover .package-info .package-check {
    background: #ffffff;
    border-color: #ffffff;
}

.pgs-accordion.pgs-pricing .accordion-item:hover .package-name .package-discount {
    color: var(--primary-color);
}

.pgs-accordion.pgs-pricing .accordion-item:hover .period {
    color: var(--primary-color);
}

.pgs-accordion.pgs-pricing .package-title,
.pgs-accordion.pgs-pricing .price {
    transition: color 0.3s ease;
}


.pgs-accordion:not(.pgs-pricing) .accordion-item .accordion-header {
    display: flex;
    align-items: center;
    gap: 130px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.pgs-accordion.pgs-pricing .accordion-item .accordion-header {
    gap: 50px;
}

.pgs-accordion.pgs-pricing .accordion-item .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pgs-accordion:not(.pgs-pricing) .accordion-item .accordion-header .package-info {
    display: flex;
    gap: 20px;
    align-items: baseline;
}

.pgs-accordion.pgs-pricing .accordion-item .accordion-header .package-info {
    display: flex;
    gap: 20px;
    align-items: center;
    min-width: 300px;
}

.pgs-accordion .accordion-item .accordion-header .package-info .package-check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    height: 30px;
    width: 30px;
    border: 2px solid #ffffff2b;
    border-radius: 100%;
}

.pgs-accordion .accordion-item .accordion-header .package-info .package-check i {
    opacity: 0;
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pgs-accordion .accordion-item.is-active .accordion-header .package-info .package-check i {
    -webkit-text-fill-color: #000000;
}

.pgs-accordion .accordion-item .accordion-header .package-price {
    display: flex;
    align-items: baseline;
    /*width: 50%;*/
}


/*.pgs-accordion .accordion-item .accordion-header .pricing-link {
    width: 40%;
}*/

.pgs-accordion .accordion-item .accordion-header .pricing-link .package-price {
    justify-content: flex-end;
    width: 100%;
}

.pgs-accordion .accordion-item .accordion-header .pricing-link .package-price h5.price {
    padding-left: 7px;
}

.pgs-accordion .accordion-item .accordion-header .package-price .price {
    font-size: 38px;
    line-height: 48px;
    margin: 0;
}

.pgs-accordion .accordion-item .accordion-header .package-price .period {
    font-size: 18px;
}

.pgs-accordion:not(.pgs-pricing) .accordion-item .accordion-header .package-title {
    margin-bottom: 5px;
}

.pgs-accordion.pgs-pricing .accordion-item .accordion-header .package-title {
    margin-bottom: 0px;
    color: var(--primary-color);
}

.pgs-accordion .accordion-item .accordion-content {
    display: none;
    margin: 0;
    margin-top: 30px;
}

.pgs-accordion .accordion-item .content-inner {
    display: flex;
}

.pgs-accordion .accordion-item .content-inner .pricing-link {
    align-self: center;
}

.pgs-accordion .accordion-item .pricing-lists .pricing-lists {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 30px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.pgs-accordion .accordion-item .pricing-lists .pricing-lists li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    width: calc(50% - 15px);
}

.pgs-accordion .accordion-item .pricing-link a {
    width: 50px;
    height: 50px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff2b;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.pgs-accordion .accordion-item.is-active .pricing-link a {
    border: 1px solid #000000;
}

.pgs-accordion .accordion-item .pricing-link a:before {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 50px;
    background-color: transparent;
}

.pgs-accordion .accordion-item.is-active .pricing-link a:before {
    background-color: #000000;
}

.pgs-accordion .accordion-item .pricing-link a svg {
    position: relative;
    width: 23px;
    height: 25px;
}

.pgs-accordion .accordion-item .pricing-link a svg path {
    stroke: var(--primary-color);
}

.pgs-accordion .accordion-item.is-active {
    border: none;
    background-color: var(--primary-color);
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    /* Accordion Active Content */
}

.pgs-accordion:not(.pgs-pricing) .accordion-item.is-active .accordion-header .package-name .package-title,
.pgs-accordion:not(.pgs-pricing) .accordion-item.is-active .accordion-header .package-name .package-discount {
    color: #ffffff;
}

.pgs-accordion.pgs-pricing .accordion-item.is-active .accordion-header .package-name .package-title,
.pgs-accordion.pgs-pricing .accordion-item.is-active .accordion-header .package-name .package-discount,
.pgs-accordion.pgs-pricing .accordion-item.is-active .accordion-header .package-name h6 {
    color: #000000;
}

.pgs-accordion.pgs-pricing .accordion-item.is-active .accordion-header .package-price .price,
.pgs-accordion.pgs-pricing .accordion-item.is-active .accordion-header .package-price .period {
    color: #000000;
}

.pgs-accordion:not(.pgs-pricing) .accordion-item.is-active .accordion-header .package-price .price,
.pgs-accordion:not(.pgs-pricing) .accordion-item.is-active .accordion-header .package-price .period {
    color: #ffffff;
}


.pgs-accordion .accordion-item.is-active .accordion-header .package-info .package-check {
    background: #ffffff;
    border-color: #ffffff;
}

.pgs-accordion .accordion-item.is-active .accordion-header .package-info .package-check i {
    opacity: 1;
}

.pgs-accordion .accordion-item.is-active .pricing-lists li {
    color: #ffffff;
}

.pgs-accordion.pgs-accordion-light .accordion-item:not(.accordion-item.is-active) {
    border-color: rgba(255, 255, 255, 0.2);
}

.pgs-accordion.pgs-accordion-light .accordion-item:not(.accordion-item.is-active) .package-info .package-discount {
    color: #ffffff;
}

.pgs-accordion.pgs-accordion-light .accordion-item:not(.accordion-item.is-active) .package-info .package-check {
    border-color: #ffffff;
}

.pgs-accordion.pgs-accordion-light .accordion-item:not(.accordion-item.is-active) .package-price .period {
    color: #ffffff;
}

@media (max-width: 991px) {
    .pgs-accordion .accordion-item .pricing-lists .pricing-lists {
        gap: 10px;
    }

    .pgs-accordion .accordion-item .pricing-lists .pricing-lists li {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .pgs-accordion .accordion-item .accordion-header {
        display: flex;
        align-items: flex-start;
        gap: 5px;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .pgs-accordion .accordion-item .content-inner {
        flex-direction: column;
        gap: 25px;
    }

    .pgs-accordion .accordion-item .content-inner .pricing-link {
        align-self: flex-start;
    }
}


/*****************************
    Button
  *****************************/
.btn:not(.base__theme):not(.action-rounded) {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 180px;
    height: 180px;
    padding: 15px;
    gap: 10px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100%;
    transition: all 0.35s ease-in-out;
    position: relative;
    z-index: 2;
}

.btn:not(.base__theme) .btn-effect {
    position: absolute;
    z-index: 0;
    display: block;
    width: 0px;
    height: 0px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 1;
    background-color: #fa4729;
    transition: all 0.9s ease;
    outline: none;
}

.btn:not(.base__theme) span {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.35s ease-in-out;
}

.btn:not(.base__theme) svg path {
    stroke: #ffffff;
    transition: all 0.35s ease-in-out;
}

.btn:not(.base__theme):after {
    /*.btn:not(.base__theme):not(.btn-effect):after {*/
    position: absolute;
    content: "";
    right: -6px;
    top: -6px;
    width: 100%;
    height: 100%;
    margin: auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.35s ease-in-out;
    z-index: -1;
    border-radius: 100%;
}

.btn:not(.base__theme):hover,
.btn:not(.base__theme):focus {
    border: 1px solid var(--primary-color);
    background: none;
}

.btn:not(.base__theme):hover span,
.btn:not(.base__theme):focus span {
    color: var(--primary-color);
}

.btn:not(.base__theme):hover:after,
.btn:not(.base__theme):focus:after {
    border: 1px solid var(--primary-color);
}

.btn:not(.base__theme):hover svg path,
.btn:not(.base__theme):focus svg path {
    stroke: var(--primary-color);
}

.btn:not(.base__theme).arrow-down {
    width: 128px;
    height: 128px;
}

.btn:not(.base__theme).arrow-down svg {
    transform: rotate(90deg);
    width: 37px;
    height: 40px;
}

.btn:not(.base__theme).arrow-down svg path {
    stroke: #ffffff;
}

.btn:not(.base__theme).arrow-down:before {
    left: 8px;
    top: 8px;
    right: 8px;
    bottom: 8px;
}

.btn:not(.base__theme).arrow-down:hover svg path {
    stroke: var(--primary-color);
}

.btn-primary {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: #ffffff;
    border: none;
    padding: 10px 45px;
    border-radius: 50px;
    background-color: var(--primary-color);
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
}

/* Small Button Arrow ----------------*/
.btn-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
    padding-right: 4px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.btn-arrow svg {
    position: relative;
}

.btn-arrow svg path {
    stroke: #d4d6d7;
    transition: all 0.3s ease-in-out;
}

.btn-arrow:after {
    content: "";
    position: absolute;
    left: -4px;
    bottom: -4px;
    opacity: 1;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
}

.btn-arrow:before {
    /*		content: "";*/
    position: absolute;
    left: 3px;
    right: 3px;
    top: 3px;
    bottom: 3px;
    opacity: 0;
    transform: scale(0.8);
    border-radius: 50px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    background: linear-gradient(170deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
}

.btn-arrow:hover {
    border: 1px solid var(--primary-color);
}

.btn-arrow:hover svg path {
    stroke: #ffffff;
}

.btn-arrow:hover:after {
    border: 1px solid var(--primary-color);
}

.btn-arrow:hover:before {
    opacity: 1;
    transform: scale(1);
}

/* Button Hover Effect */
.attract-hover:not(.call-rdv):not(.attract-rdv) {
    display: inline-block;
}

.attract-hover.attract-rdv {
    text-align: center;
}



.attract-hover.call-rdv {
    position: absolute;
    display: block;
    right: 15dvh;
    bottom: 10dvh;
    pointer-events: auto;
    /* Assure que le clic passe bien */
    z-index: 9999;
    /* Le met au-dessus des autres éléments */
    cursor: pointer;
}


.attract-hover-easing {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*****************************
      Our History
  *****************************/
.history-wrapper {
    position: relative;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.history-wrapper .history-year-sm {
    font-family: var(--oswald);
    font-size: 32px;
    margin-bottom: 30px;
    background: linear-gradient(160deg,
            var(--primary-color) 0%,
            var(--primary-color) 20%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.history-wrapper .history-info {
    display: flex;
    gap: 30px;
}

.history-wrapper .history-info .history-year-lg {
    font-family: var(--oswald);
    font-size: 110px;
    writing-mode: vertical-lr;
    transform: scale(-1);
    align-self: center;
    line-height: normal;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.history-wrapper .history-info .history-content p {
    margin: 0;
}

.history-wrapper .history-info .history-content blockquote {
    margin: 20px 0;
    padding: 0;
    font-size: inherit;
    font-weight: normal;
    line-height: normal;
    font-style: normal;
    /*color: #d4d6d7;*/
    border-radius: 0;
    padding-left: 15px;
}

@media (max-width: 767px) {
    .history-wrapper .history-info {
        gap: 10px;
        flex-direction: column;
    }

    .history-wrapper .history-info .history-year-lg {
        writing-mode: inherit;
        transform: inherit;
    }
}

@media (max-width: 575px) {
    .history-wrapper {
        padding: 40px;
    }

    .history-wrapper .history-info .history-year-lg {
        font-size: 80px;
    }
}

/*****************************
    Form Control
  *****************************/

form .form-control,
i-review-box .form-control {
    position: relative;
    font-size: 16px;
    line-height: normal;
    border-radius: 0px;
    padding: 15px 0px;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: #d4d6d7;
    margin-bottom: 30px;
}

.i-review-box form .form-control {
    margin-bottom: 0px;
    border-bottom: none;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 10.5,6 A 4.5,4.5 0 0 1 6,10.5 4.5,4.5 0 0 1 1.5,6 4.5,4.5 0 0 1 6,1.5 4.5,4.5 0 0 1 10.5,6 Z' stroke='%23ffdc0e'/%3E%3Cpath d='M5.8 3.6h.4L6 6.5z' stroke='%23ffdc0e' stroke-linejoin='round'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ffdc0e'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: 1rem 1rem;
}


form .form-control::-ms-input-placeholder,
i-review-box .form-control::-ms-input-placeholder {
    color: #d4d6d7;
}

form .form-control::placeholder,
i-review-box .form-control::placeholder {
    color: #d4d6d7;
}

form .form-control:focus,
i-review-box .form-control:focus {
    color: #d4d6d7;
    box-shadow: none;
    background: transparent;
    border-color: var(--primary-color);
}

form .form-control:active,
i-review-box .form-control:active {
    background: transparent;
}

form textarea.form-control,
i-review-box textarea.form-control {
    margin-bottom: 50px;
}

form textarea.form-control.pre-textarea,
i-review-box textarea.form-control.pre-textarea {
    margin-bottom: 30px;
}

form.form-style-border .form-control {
    padding: 15px 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

form.form-style-border .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.15rem var(--primary-color);
}

form.form-dark .form-control,
i-review-box .form-control {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

form.form-dark .form-control::-ms-input-placeholder,
i-review-box .form-control::-ms-input-placeholder {
    color: #ffffff;
}

form.form-dark .form-control::placeholder,
i-review-box .form-control::placeholder {
    color: #ffffff;
}

form.form-dark .form-control:focus,
i-review-box .form-control:focus {
    border-color: var(--primary-color);
}

.form-control:focus {
    box-shadow: none;
    background: transparent;
    border-color: var(--primary-color);
}

.form-check .form-check-input {
    width: 21px;
    height: 21px;
    margin-top: 2px;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.form-check .form-check-input:checked {
    background-color: var(--primary-color);
}

.form-wrapper.form-box {
    padding: 70px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

@media (max-width: 767px) {
    .form-wrapper.form-box {
        padding: 50px 25px;
    }
}

@media (max-width: 575px) {
    .form-wrapper.form-box {
        padding: 30px 15px;
    }
}

/*****************************
      Timeline
  *****************************/
.timeline-item {
    position: relative;
}

.timeline-item .timeline-info-number {
    margin-bottom: 25px;
}

.timeline-item .timeline-info-number .timeline-number {
    font-size: 30px;
    line-height: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--oswald);
}

.timeline-item .timeline-info-content {
    position: relative;
    padding-top: 55px;
    z-index: 5;
}

.timeline-item .timeline-info-content .timeline-title {
    margin-bottom: 20px;
}

.timeline-item .timeline-info-content .timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-item .timeline-info-content .timeline-content ul li {
    font-size: 20px;
    line-height: normal;
    color: #d4d6d7;
    margin-bottom: 10px;
}

.timeline-item .timeline-info-content .award-img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.timeline-item:before {
    position: absolute;
    top: 57px;
    left: 0;
    content: "";
    height: 15px;
    width: 15px;
    background-color: #ffffff;
    border-radius: 100%;
}

.timeline-section {
    margin-right: -22%;
}

.timeline-section-line {
    position: relative;
}

.timeline-section-line:before {
    position: absolute;
    top: 64px;
    left: 80px;
    content: "";
    height: 1px;
    width: 100%;
    background-color: #333333;
}

@media (max-width: 1699px) {
    .timeline-section {
        margin-right: -8%;
    }
}

@media (max-width: 1299px) {
    .timeline-section {
        margin-right: -4%;
    }
}

@media (max-width: 1199px) {
    .timeline-section {
        margin-right: 0%;
    }

    .timeline-section-line:before {
        left: 40px;
    }
}

@media (max-width: 991px) {
    .timeline-section-line:before {
        left: 30px;
    }
}

@media (max-width: 767px) {
    .timeline-section-line:before {
        left: 12px;
    }
}

/*****************************
    Progress Bar
  *****************************/
.progress {
    position: relative;
    overflow: visible;
    height: 10px;
    border-radius: inherit;
    margin-top: 65px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background-color: transparent;
}

.progress .progress-bar {
    background-color: var(--primary-color);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
}

.progress .progress-bar .progress-bar-title {
    position: absolute;
    left: 0;
    top: -40px;
    color: #000000;
    font-size: 20px;
}

.progress .progress-bar .progress-bar-number {
    position: absolute;
    right: 0;
    top: -40px;
    color: #000000;
    font-size: 18px;
}

.bg-dark .progress {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-dark .progress .progress-bar .progress-bar-title {
    color: #ffffff;
}

.bg-dark .progress .progress-bar .progress-bar-number {
    color: #ffffff;
}

/*****************************
    Range Slider
  *****************************/
.irs--flat .irs-line {
    height: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.irs--flat .irs-bar {
    background-color: var(--primary-color);
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    height: 8px;
}

.irs--flat .irs-from {
    background: transparent;
    color: #d4d6d7;
    font-size: 18px;
    top: -7px;
}

.irs--flat .irs-from:before {
    display: none;
}

.irs--flat .irs-to {
    background: transparent;
    color: #d4d6d7;
    font-size: 18px;
    top: -7px;
}

.irs--flat .irs-to:before {
    display: none;
}

.irs--flat .irs-single {
    background: transparent;
    color: #d4d6d7;
    font-size: 18px;
    top: -7px;
}

.irs--flat .irs-single:before {
    display: none;
}

.irs--flat .irs-handle>i:first-child {
    background: var(--primary-color);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.irs--flat .irs-handle:hover>i:first-child {
    background: var(--primary-color);
}

.irs--flat .irs-handle.state_hover>i:first-child {
    background: var(--primary-color);
}

.price-range-filter .price-filter {
    display: flex;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 5px;
}

.price-range-filter .price-filter .ms-auto {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range-filter .price-filter .ms-auto i {
    font-size: 14px;
}

/*****************************
    List style
  *****************************/
.list-wrapper .list {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-direction: column;
    list-style-type: none;
}

.list-wrapper .list li {
    display: flex;
    gap: 15px;
    align-items: baseline;
    font-weight: 400;

    & .text-yellow {
        width: 35%;
        flex-shrink: 0;
    }
}

.list-wrapper .list li a {
    color: #d4d6d7;
}

.list-wrapper .list li a:hover {
    color: var(--primary-color);
}

.list-wrapper .list.list-style-disc li {
    display: list-item;
    list-style: inside;
    list-style-type: disc;
}

.list-wrapper .list.col-2 {
    width: 100%;
    gap: 10px 30px;
    flex-wrap: wrap;
    flex-direction: inherit;
}

.list-wrapper .list.col-2 li {
    width: calc(50% - 15px);
}

.list-wrapper.list-style-2 .list {
    gap: 10px;
}

.list-wrapper.list-style-2 .list li {
    font-size: inherit;
    gap: 20px;
}

.list-wrapper.list-style-2 .list li i {
    color: var(--primary-color);
}

.list-wrapper.list-light .list li {
    color: #ffffff;
}

.list-wrapper.list-light .list li a {
    color: #ffffff;
}

.list-wrapper.list-light .list li a:hover {
    color: var(--primary-color);
}

/*****************************
    Location
  *****************************/
.location-wrapper.location-style-1 {
    display: flex;
    align-items: flex-end;
    padding: 35px;
    min-height: 410px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.location-wrapper.location-style-1 .location-inner {
    overflow: hidden;
}

.location-wrapper.location-style-1 .city-image {
    position: relative;
}

.location-wrapper.location-style-1 .city-info {
    margin-top: 20px;
}

.location-wrapper.location-style-1 .city-info .city-name {
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.location-wrapper.location-style-1 .city-location {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-wrapper.location-style-1 .city-location .location-item {
    display: flex;
    align-items: baseline;
}

.location-wrapper.location-style-1 .city-location .location-item .icon {
    width: 25px;
    flex: none;
    margin-right: 15px;
}

.location-wrapper.location-style-1:hover {
    border-color: var(--primary-color);
}

.location-wrapper.location-style-1:hover .city-info .city-name {
    background: linear-gradient(60deg,
            var(--primary-color) -20%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*------------------------------------*/
/* Responsive CSS */
/*------------------------------------*/
@media (max-width: 1399px) {
    .location-wrapper.location-style-1 {
        padding: 30px;
    }
}

@media (max-width: 1199px) {
    .location-wrapper.location-style-1 {
        padding: 25px;
    }
}

/*****************************
    Marquee style
  *****************************/
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    width: 100%;
}

.marquee-wrapper .marquee-inner {
    /*display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    position: relative;
    white-space: nowrap;
    animation: marquee 30s linear infinite;*/
    display: flex;
    gap: 50px;
    /* Ajuste selon l'espacement que tu veux */
    min-width: 200%;
    animation: marqueeLoop 50s linear infinite;
}

.marquee-wrapper .marquee-inner .marquee-item {

    flex: none;
    min-width: auto;
    display: flex;
    align-items: center;
}

/*body:not(#home):not(.pneus-page):not(.about-page) .marquee-wrapper .marquee-inner .marquee-item .title {
    position: relative;
    top: 3px;
    font-family: var(--oswald);

    color: #000;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
    font-size: 100px;
    line-height: 130px;
}

body.pneus-page section.section-infos .marquee-wrapper .marquee-inner .marquee-item .title {
    position: relative;
    top: 3px;
    font-family: var(--oswald);
    font-size: 45px;
    line-height: normal;
    color: #000;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}

body.pneus-page section:not(.section-infos) .marquee-wrapper .marquee-inner .marquee-item .title {
    position: relative;
    top: 3px;
    font-family: var(--oswald);

    color: #000;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
    font-size: 100px;
    line-height: 130px;
}

body#home .marquee-wrapper .marquee-inner .marquee-item .title {

    transition: all 0.3s ease-in-out;
    font-size: 50px;
    line-height: 90px;
}

body#home .marquee-wrapper .marquee-inner .marquee-item .icon {
    max-width: 115px;
    margin-top: 13px;
}*/

body .marquee-wrapper .marquee-inner .marquee-item .title {
    position: relative;
    top: 3px;
    font-family: var(--oswald);

    transition: all 0.3s ease-in-out;
    font-size: 50px;
    line-height: 90px;
}

body .marquee-wrapper .marquee-inner .marquee-item .icon {
    max-width: 115px;
    margin-top: 13px;
}

.marquee-wrapper .marquee-inner .marquee-item .fa-sharp {
    -webkit-text-fill-color: var(--primary-color);
    -webkit-text-stroke: 0px var(--primary-color);
    color: var(--primary-color);
    font-size: 100px;
    line-height: 130px;
}

.marquee-wrapper .marquee-inner .marquee-item:hover .title {
    color: #ffffff;
}

.marquee-bg {
    background-color: #000000;
    position: relative;
    padding: 25px 0;
}

.marquee-bg:before {
    content: "";
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to left,
            var(--primary-color) 2%,
            var(--primary-color) 56%,
            var(--primary-color) 99%);
    transform: rotate(1deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.marquee-wrapper.marquee-rotate {
    transform: rotate(2.2deg);
}

.marquee-wrapper.marquee-border {
    padding: 25px 0;
    overflow: visible;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.marquee-wrapper.marquee-border:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: rotate(0.7deg);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.marquee-wrapper.marquee-right .marquee-inner {
    animation: marqueeRight 50s linear infinite;
}

/*------------------------
    Keyframes Animation
  -------------------------*/
@keyframes marqueeLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-100%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translatex(0);
    }
}

@media (max-width: 767px) {
    .marquee-wrapper .marquee-inner {
        gap: 50px;
    }

    .marquee-wrapper .marquee-inner .marquee-item .title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .marquee-bg {
        padding: 15px 0;
    }
}

/*****************************
    Social Icon
  *****************************/
.social-icon ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.social-icon ul li {
    margin: 0 13px;
}

.social-icon ul li a {
    font-size: 20px;
    font-family: "Jost", sans-serif;
    font-weight: normal;
    color: #ffffff;
    transition: all 0.5s ease-in-out;
}

.social-icon ul li a:hover {
    color: var(--primary-color);
}

.social-icon ul li:first-child {
    margin-left: 0px;
}

.social-icon ul li:last-child {
    margin-right: 0px;
}

.social-icon ul li.title {
    font-size: 20px;
    font-family: "Jost", sans-serif;
    font-weight: normal;
    color: #ffffff;
    position: relative;
    padding-right: 45px;
}

.social-icon ul li.title:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 25px;
    background-color: #ffffff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/*===============================================*/
/* Responsive CSS */
/*===============================================*/
@media (max-width: 767px) {
    .social-icon ul li {
        margin: 0 8px;
    }

    .social-icon ul li.title {
        padding-right: 35px;
    }

    .social-icon ul li.title:before {
        width: 20px;
    }
}

/*****************************
    Steps
  *****************************/
.steps-wrapper {
    display: flex;
    gap: 60px;
    flex-direction: column;
}

.steps-wrapper .steps-item {
    display: flex;
    gap: 40px;
}

.steps-wrapper .steps-item .step-arrow {
    margin-top: 40px;
    position: relative;
}

.steps-wrapper .steps-item .step-arrow:before {
    content: "";
    position: absolute;
    left: 23px;
    top: 90px;
    bottom: -60px;
    border-left: 1px dashed rgba(255, 255, 255, 0.1);
}

.steps-wrapper .steps-item .step-number {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: linear-gradient(160deg,
            var(--primary-color) 0%,
            var(--primary-color) 20%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-wrapper .steps-item .step-title {
    padding-right: 25px;
    margin-bottom: 20px;
}

.steps-wrapper .steps-item p {
    margin-bottom: 25px;
}

.steps-wrapper .steps-item .step-image {
    margin-top: 30px;
}

.steps-wrapper .steps-item:last-child .step-arrow:before {
    content: normal;
}

@media (max-width: 1200px) {
    .steps-wrapper .steps-item {
        gap: 30px;
    }

    .steps-wrapper .steps-item .step-title {
        font-size: 36px;
        line-height: 42px;
    }
}

@media (max-width: 575px) {
    .steps-wrapper .steps-item .step-title {
        font-size: 28px;
        line-height: 38px;
    }

    .steps-wrapper .steps-item .list-wrapper .list.col-2 li {
        width: 100%;
    }
}

/*----------------------------------*/
/* 404 Page */
/*----------------------------------*/
.error-section .error-content {
    position: relative;
}

.error-section .error-content .error-main-title {
    position: relative;
}

.error-section .error-content .error-main-title .error-text {
    display: block;
    font-size: 380px;
    line-height: 400px;
    font-weight: 400;
    color: #000000;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: #ffffff;
    margin-bottom: 30px;
    font-family: "Russo One", sans-serif;
}

.error-section .error-content .error-main-title .bg-text-stroke {
    font-size: 380px;
    line-height: 400px;
    font-weight: 400;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    margin-left: 6px;
    margin-top: 12px;
    width: 100%;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: rgba(212, 214, 215, 0.2);
    font-family: "Russo One", sans-serif;
}

.error-section .error-content .error-main-title .smile-icon {
    top: 80px;
    left: 50%;
    width: 220px;
    height: 220px;
    position: absolute;
    transform: translateX(-50%);
}

.error-section .error-content .btn.btn-effect {
    width: 175px;
    height: 175px;
}

.error-section .error-content .btn.btn-effect:hover svg path {
    stroke: var(--primary-color);
}


/*****************************
    Skill
  *****************************/
.skill {
    position: relative;
    width: 100%;
    height: 10px;
    margin: 35px 0 20px 0;
    border-radius: 10px;
}

.skill:not(:first-child) {
    margin-top: 64px;
}

.skill:last-child {
    margin-bottom: 0;
}

.skill:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.skill-bar {
    position: relative;
    z-index: 1;
    height: 100%;
    border-radius: 10px;
    padding: 0px;
    background-color: var(--primary-color);
    background: linear-gradient(175deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    box-shadow: none;
    transition: width 0.9s ease;
    -webkit-transition: width 0.9s ease;
    -o-transition: width 0.9s ease;
    -ms-transition: width 0.9s ease;
    -moz-transition: width 0.9s ease;
}

.skill-bar .progress-number {
    color: #d4d6d7;
    float: right;
    margin-top: -18px;
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 18px;
    font-weight: 500;
    right: 18px;
}

.skill-bar .progress-type {
    color: #d4d6d7;
    float: right;
    margin-top: -18px;
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 18px;
    font-weight: 500;
}

.progress-bar {
    position: relative;
    height: 100%;
    border-radius: 4px;
    padding: 0px;
    background-color: var(--primary-color);
    box-shadow: none;
}

.skill-title {
    color: #d4d6d7;
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    text-align: left;
    margin-left: 0;
    margin-top: -40px;
}

.skill-title>i {
    margin-right: 8px;
}

/* Skill Style 2 ------------*/
.skill-style-2 .skill-bar {
    position: unset;
}

/*****************************
      Select Custom
  *****************************/
.nice-select {
    font-size: inherit;
    color: #000;
    box-shadow: none;
}

.nice-select .list {
    width: 100%;
    background: #000;
}

.nice-select .option:hover {
    color: var(--primary-color) !important;
}


.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: var(--primary-color) !important;
    color: #000 !important;
}

.nice-select .list .option {
    font-size: 18px;
    background-color: #000 !important;
    color: #fff;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: #000 !important;
    color: #fff;
}

.nice-select .open span {
    color: #000;
}

.nice-select .list .option.selected {
    color: #000;
    font-weight: 500;
    background-color: var(--primary-color);
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
}

.nice-select.form-control {
    width: 100%;
    height: auto;
}

.nice-select:after {
    width: 10px;
    height: 10px;
    right: 8px;
    margin-top: -6px;
    border-bottom-color: #d4d6d7;
    border-right-color: #d4d6d7;
}

/*-------------------------*/
/* Form Style Border */
/*-------------------------*/
.form-style-border .nice-select:after {
    right: 25px;
}

/*****************************
      Video Button
  *****************************/
.video-wrapper {
    position: relative;
    z-index: 9;
}

.video-wrapper .attract-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -75px;
    margin-top: -75px;
}

.video-wrapper .video-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 215px;
    height: 215px;
    padding: 15px;
    color: #ffffff;
    font-size: 42px;
    line-height: 42px;
    font-family: var(--oswald);
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    transform: translate(-65px, -65px);
    border-radius: 100%;
    z-index: 1;
}

.video-wrapper .video-btn:after {
    content: "";
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 100%;
}

.video-wrapper .video-btn:before {
    position: absolute;
    content: "";
    width: 215px;
    height: 215px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    top: 10px;
    left: -10px;
    z-index: -1;
}

.video-wrapper .video-btn.btn-hide {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    width: auto;
    height: auto;
    transform: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    border-radius: 0;
    cursor: none;
}

.video-wrapper.wrapper-absolute {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: none;
}

.video-bg-jarallax {
    position: relative;
    z-index: 1;
    /*height: 750px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    background-blend-mode: multiply;
}

@media (max-width: 767px) {

    .video-wrapper .video-btn,
    .video-wrapper .video-btn.btn-hide {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 130px;
        height: 130px;
        padding: 15px;
        color: #000000;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        position: absolute;
        left: 50%;
        top: 50%;
        opacity: 1;
        transform: translate(-65px, -65px);
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 100%;
    }

    .video-wrapper .video-btn:before,
    .video-wrapper .video-btn.btn-hide:before {
        height: 130px;
        width: 130px;
    }

    .video-wrapper .attract-hover {
        margin: 0;
    }
}

@media (max-width: 575px) {
    .video-wrapper .video-btn {
        width: 100px;
        height: 100px;
        padding: 10px;
        font-size: 18px;
        font-weight: 500;
        transform: translate(-50px, -50px);
    }

    .video-wrapper .video-btn:before {
        height: 100px;
        width: 100px;
    }
}

/*****************************
    Header Default
  *****************************/
.header-default {
    width: 100%;
    position: relative;
    z-index: 99999;
    padding: 0 80px;
    background-color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Site Main Logo */
    /* Site Main Menu */
    /* Site Action Button */
    /* Sticky Header */
}

.header-default.header-absolute {
    position: absolute;
    left: 0;
    background: transparent;
    pointer-events: none;
}

.header-default .header-inner {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.header-default .site-logo {
    min-width: 250px;
}

.header-default .site-logo .navbar-brand {
    display: block;
    padding: 30px 0;
}

.header-default .site-menu .main-menu {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 50px;
    height: 100%;
    list-style-type: none;
    /* Header Submenu */
}

.header-default .site-menu .main-menu .nav-item {
    display: flex;
    position: relative;
    align-items: center;
}

.header-default .site-menu .main-menu .nav-item a {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    padding: 10px 0;
    color: #ffffff;
    position: relative;
}

.header-default .site-menu .main-menu .nav-item a i {
    font-weight: bold;
    margin-left: 5px;
    font-size: 12px;
    margin-top: 2px;
}

.header-default .site-menu .main-menu .nav-item.active>a {
    color: var(--primary-color);
}

.header-default .site-menu .main-menu .nav-item.active>a:before,
.header-default .site-menu .main-menu .nav-item:hover>a:before {
    content: "";
    background-image: url(../images/menu-hover.png);
    height: 8px;
    position: absolute;
    bottom: 0;
    left: -5px;
    right: 0;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}

.header-default .site-menu .main-menu .nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header-default .site-menu .main-menu .submenu {
    background: #212121;
    list-style-type: none;
    position: absolute;
    left: -20px;
    top: 100%;
    z-index: 2;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    padding: 15px 0;
    margin-top: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.header-default .site-menu .main-menu .submenu li {
    padding: 0 25px;
}

.header-default .site-menu .main-menu .submenu li a {
    font-size: 16px;
    padding: 8px 0;
}

.header-default .site-menu .main-menu .submenu li a.active {
    color: var(--primary-color);
}

.header-default .site-menu .main-menu .submenu li.active>a {
    color: var(--primary-color);
}

.header-default .site-menu .main-menu .submenu li:hover a {
    color: var(--primary-color);
}

.header-default .site-action {
    min-width: 250px;
}

.header-default .site-action .action-hamburger {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.header-default.is-sticky {
    position: fixed;
    background-color: #000000;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    top: -110px;
    animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.header-default.is-sticky .site-logo .navbar-brand {
    padding: 15px 0;
}

.header-default.is-sticky.sticky-show {
    top: 0;

    & .navbar__logo,
    & .tertiary-cta {
        opacity: 0;
        visibility: visible;
    }
}


/*---------------------------------*/
/* Page Header */
/*---------------------------------*/
.inner-header {
    position: relative;
    z-index: 5;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #2563ad;*/
    background-blend-mode: multiply;
}

.inner-header .title {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 20px;
}


@media (max-width: 1499px) {
    .header-default .site-menu .main-menu {
        gap: 0 38px;
        width: max-content;
    }
}

@media (max-width: 1399px) {

    /*---------------------*/
    /* Header Default */
    /*---------------------*/
    .header-default {
        padding: 0 50px;
    }

    .header-default .header-inner {
        gap: 30px;
    }

    .header-default .site-logo {
        min-width: 200px;
    }

    .header-default .site-action {
        min-width: 200px;
    }

    .header-default .site-menu .main-menu {
        gap: 0 20px;
    }

}


@media (max-width: 991px) {

    .inner-header {
        height: 350px;
    }

    .header-default {
        padding: 0 30px;
    }

    .header-default .site-logo .navbar-brand {
        display: block;
        padding: 20px 0;
    }

}

@media (max-width: 767px) {

    .header-default {
        padding: 0 20px;
    }

    .inner-header {
        height: 300px;
    }
}

@media (max-width: 575px) {

    .offcanvas-start,
    .offcanvas-end {
        width: 320px !important;
    }

    .main-menu-offcanvas .offcanvas-body {
        padding: 30px 40px;
    }

    .offcanvas-header {
        padding: 30px 40px;
        gap: 5px;
    }

    .offcanvas-header .btn-close {
        height: 45px;
        width: 45px;
    }
}

/*****************************
    Site Banner
  *****************************/


/*#pages .banner-three {
    overflow: hidden;
    position: relative;
    z-index: 1;

    @media only screen and (min-width: 575.99px) {

        &:not(.banner-sp) {
            height: 525px;

            & .parallax-banner {
                transform: translate3d(0px, 0px, 0px);
                position: absolute;
                bottom: 50px;
                left: 0;
                width: 100%;
                padding-left: 0;
            }
        }

        &.banner-sp {
            height: 100dvh;
            display: flex;
            align-items: center;
        }


        .container {
            margin-left: 0;
            margin-right: auto;
            padding-left: max(110px, calc((100dvw - 1700px) / 2)) !important;
            padding-right: 20px !important;

        }
    }


    & .banner-inner {
        padding-top: 150px;
        padding-bottom: 100px;
    }



    canvas {
        position: absolute;
        top: 0;
    }

    & #banner-action {

        display: flex;
        position: absolute;
        z-index: 110;
        bottom: 0;

        &.btn-push {
            position: absolute;
            right: 10dvw;
            display: flex;
            align-items: center;
            justify-content: center;
            bottom: 55px;
            transition: transform 0.4s ease-in-out, bottom 0.4s ease-in-out;
        }

        &:not(.btn-push) {
            right: 16%;
        }

        float: right;
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-end;

    }

    & .attract-hover {
        display: flex;
    }
}


#pages .banner-three .row.banner-row {
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
}



.text-accent-bg {
    background-color: #000000;
    color: #ffffff;
    padding: 0 0.4em;
    display: inline-block;
}

.text-tooltip {
    text-decoration: underline;
}*/
/*****************************
    Site Banner
  *****************************/

/*****************************
BANNERS
*****************************/

.banner__content {
    /*margin-top: -8px;*/
    text-align: center;
}

.banner__content h6 {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--theme-color);
    margin-bottom: 22px;
}

.banner__content h1 {
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: clamp(90px, 10vw, 136px);
    line-height: 1.2em;
}

.banner__content h1 .bnt-text {
    display: inline-flex;
}

.banner__content h1 .bnt-text .inline-black,
.banner__content h1 .bnt-text .text-stroke {
    font-size: 100%;
}

.banner__content h1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 150px;
    display: flex !important;
    margin-left: 100px !important;
    margin-right: 100px !important;

}


.banner .banner__content:not(.banner-top-page) {
    /*margin-top: -20px;*/
    text-align: left;
}

/*.banner .banner__content.banner-top-page {
    text-align: left;
    padding-left: 0;

    h1,
    .h1 {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
}
*/
#home .banner .banner__content.banner-top-page {

    h1,
    .h1 {
        font-size: 104px;
        line-height: 110px;
    }
}

.banner-three .banner-three__slider {
    width: 100%;
}


/*#pages .banner__content.banner-top-page {

    h1,
    .h1 {
        font-size: clamp(56px, 5dvw, 104px);
        line-height: clamp(65px, 5.2dvw, 110px);
        white-space: nowrap;
    }

}*/

#pages .banner-container {

    /*margin-left: 105px !important;*/

    .fa-circle {
        position: absolute;
        opacity: 0;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        color: #000;
    }
}



.banner .interval {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-left: 101px;
    position: relative;
    /*height: 100%;*/
}


.banner-container {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;

}

@supports (height: 100dvh) {
    .ready .banner-container {
        height: 100dvh;
    }
}


#pages .banner-container {
    justify-content: flex-end;
    height: 525px;
    padding-right: 0px !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}



/*.row:not(.banner-row):not(.align-items-lg-end) {
    margin-left: 0 !important;
    margin-right: 0 !important;
}*/

.row {
    padding-right: 0;
    padding-left: 0;
}

.row.banner-row {
    margin: auto 0;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 150px;
}

/*.row:not(.banner-row):not(.row-top)>* {
    padding-left: 14px !important;
    padding-right: 14px !important;
}*/

.row.banner-row>* {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

#home .banner .interval i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    /*-webkit-text-stroke: 1px var(--primary-color);*/
    -webkit-text-stroke: 1px var(--white);
}

#pages:not(.blog-page) .banner .interval i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    /*-webkit-text-stroke: 1px var(--primary-color);*/
    -webkit-text-stroke: 1px #000000;
}

#pages.blog-page .banner .interval i {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #000000;

}

.banner .interval i {
    text-shadow: none;

}


.banner .banner__content-inner {
    max-width: 356px;
    margin-top: 100px;
    text-align: start;
    padding-left: 5%;

    & p {
        margin: 15px 0 0 0;
        font-size: 28px;
        color: #000;
    }
}

.banner .banner__content-inner .cta {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    row-gap: 24px;
    flex-wrap: wrap;
}

.banner .banner__content-inner h5 {
    color: var(--primary-color);
}

.banner .banner__content-inner .single p {
    color: var(--secondary-color);
    margin-top: 6px;
    text-transform: capitalize;
}

.banner .banner-one-thumb {
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    max-width: 494px;
    height: auto;
    border-radius: 50%;
}

.banner .star {
    position: absolute;
    top: 220px;
    left: 100px;
    z-index: -1;
}



/*#pages .btn:not(.base__theme) span {
    font-size: 24px;
    line-height: 25px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.35s ease-in-out;
    font-family: "Russo One";
}*/

.banner .banner-right-text {
    position: absolute;

    &:not(.banner-right-contact) {
        top: 163px;
    }

    &.banner-right-contact {
        top: 122px;
    }

    right: 1.7%;
    z-index: 9999;
}

.banner .video-frame {
    position: absolute;
    bottom: 120px;
    right: 10%;
    width: 190px;
    min-width: 190px;
    height: 190px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.banner .video-frame img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    animation: rotateInfinite 24s linear infinite;
    animation-play-state: running;
}

.banner .video-frame:hover img {
    animation-play-state: paused;
}

.banner-three {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
}


#cerc-cover {
    display: none;
}

.banner-three .banner-three__slider-single {
    /*background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    position: relative;
    z-index: 1;*/


    /*&.banner-page {

        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }*/

    &.home-banner {
        background-color: var(--primary-color);
    }

    /*box-sizing: border-box;
    background-clip: padding-box;
    /*border-top-left-radius: 76px;*/
}

/*.banner-three .banner-three__slider-single::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-image: linear-gradient(
    180deg,
    rgba(255, 220, 14, 1) 0%,
    rgba(255, 220, 14, 0.5) 100%
  );
  z-index: -1;
}*/
.banner-three .banner-three__content h1 {
    font-weight: 900;
}

.banner-three .banner-three__content .cta {
    display: flex;
    align-items: center;
    gap: 40px;
}

.banner-three .banner-three__content .arrow {
    position: relative;
    display: block;
    width: 220px;
}

.banner-three .banner-three__content .arrow::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    height: 2px;
    width: calc(100% - 6px);
    background-color: var(--white);
}

.banner-three .banner-three__content .arrow::after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-48%);
    font-size: 24px;
}

.banner-three .banner-three__content .btn--secondary {
    display: inline-flex;
    gap: 12px;
    text-transform: capitalize;
    border: 1px solid var(--white);
}

.banner-three .banner-three__content .btn--secondary i {
    color: var(--primary-color);
}

.banner-three .banner-three__content .btn--secondary:hover {
    border: 1px solid var(--primary-color);
}

.banner-three .banner-three__content .btn--secondary:hover i {
    color: inherit;
}

.banner-three .social {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
    flex-direction: column;
    z-index: 1;
}

.banner-three .social a {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #888;
    color: #888;
}

.banner-three .social a:hover {
    border: 1px solid var(--primary-color);
    color: var(--white);
    background-color: var(--primary-color);
}

.banner-three .arrow-img {
    position: absolute;
    z-index: 1;
    left: 11.5%;
    bottom: 21.7%;
    max-width: 20dvw;
}

.banner-three .dot-img {
    position: absolute;
    z-index: 1;
    right: 5%;
    bottom: 30%;
    max-width: 10dvw;
}

.banner-three .banner-three__slider-progress-wrapper {
    position: absolute;
    bottom: 60px;
    left: 0px;
    right: 0px;
    z-index: 1;
}

.banner-three .banner-three__slider-progress {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 870px;
}

.banner-three .banner-three__slider-progress .single-item {
    min-width: 260px;
    opacity: 0.5;
    cursor: pointer;
}

.banner-three .banner-three__slider-progress .single-item p {
    margin: 12px 0px;
}

.banner-three .banner-three__slider-progress .single-item .slider-progress {
    width: 100%;
    height: 4px;
    background: #a5a5a5;
    position: relative;
}

.banner-three .banner-three__slider-progress .single-item .inProgress {
    position: absolute;
    inset: 0px;
    background-color: var(--primary-color);
    height: 100%;
    z-index: 2;
}

.banner-three .single-item-active {
    opacity: 1 !important;
}

.banner-three .single-item-active span {
    color: var(--primary-color);
}

.banner-three .banner-three__meta {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    position: absolute;
    bottom: -1px;
    right: 0px;
    z-index: 2;
}

.banner-three .banner-three__meta::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    height: 50px;
    width: 80px;
    border-top: 10px solid var(--primary-color);
    border-left: 10px solid var(--primary-color);
}

.banner-three .banner-three__meta .cta {
    display: flex;
    align-items: center;
    gap: 60px;
    row-gap: 24px;
    flex-wrap: wrap;
    padding: 24px;
}

.banner-three .banner-three__meta h5 {
    color: var(--white);
}

.banner-three .banner-three__meta .single p {
    color: var(--secondary-color);
    margin-top: 6px;
    text-transform: capitalize;
}

.banner-three .banner-three__video {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-three .banner-three__video::before {
    content: "";
    position: absolute;
    inset: 0px;
    opacity: 0.69;
    background: #000;
}

.banner-three .banner-three__video .video-frame {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--primary-color);
}

.banner-three .banner-three__video .video-frame::before {
    content: "";
    position: absolute;
    inset: 0px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotateInfinite 24s linear infinite;
    animation-play-state: running;
}

.banner-three .banner-three__video .video-frame:hover {
    color: var(--white);
}

.banner-three .banner-three__video .video-frame:hover::before {
    animation-play-state: paused;
}

.banner-three .frame:not(.link-commercial),
.site-footer .frame {
    width: 220px;
    min-width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    font-size: 46px;
    position: relative;
    color: #fff;
}

/*@media (min-width: 1024px) {*/
.banner-three .frame.link-commercial {
    /*        width: 18dvw;
        height: 18dvw;*/
    width: 250px;
    height: 250px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    font-size: 46px;
    color: #fff;
    position: absolute;
    bottom: 8.8dvh;
    right: -70.5px;
    visibility: hidden;
    transform: none;
    opacity: 0;

}

/*}*/

.banner-three .link-commercial.init-commercial i {
    transition: transform 0.4s ease-in-out;
    transform: scale(0.7);
}

.banner-three .link-commercial.init-commercial:hover i {
    transform: scale(1);
    background-color: #000;
}

.banner-three .frame img,
.banner-three .frame svg,
.site-footer .frame img,
.site-footer .frame svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    animation: rotateInfinite 24s linear infinite;
    animation-play-state: running;
}

#pages .site-footer .frame img,
#home .site-footer .frame img,
#pages .site-footer .frame svg,
#home .site-footer .frame svg {
    & path.commercial_text {
        fill: white;
    }

    & path.acces_text {
        stroke: rgba(255, 255, 255, 0.5);
        fill: white;
    }
}

/*#home .site-footer .frame img,
#home .site-footer .frame svg {
  & path.commercial_text {
    fill: none;
  }
  & path.acces_text {
    stroke: rgb(0, 0, 0);
  }
}*/
.banner-three .frame i,
.site-footer .frame i {
    width: 110px;
    min-width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.banner-three .frame:hover img,
.banner-three .frame:hover svg,
.site-footer .frame:hover img,
.site-footer .frame:hover svg {
    animation-play-state: paused;
}

@media only screen and (min-width: 575.99px) and (max-width: 1023px) {
    #pages .primary-navbar .navbar {
        .navbar__logo {
            padding: 43px 15px 8px 25px;
            opacity: 1;
        }
    }
}


#pages .banner-three {


    @media only screen and (min-width: 575.99px) and (max-width: 768px) {

        .container {
            padding: 0;
            width: 100%;
            margin-left: 36px;
        }

    }


    & .banner-inner {
        padding-top: 150px;
        padding-bottom: 100px;
    }



    canvas {
        position: absolute;
        top: 0;
    }

    & #banner-action {
        /*width: 350px;
      height: 350px;*/
        display: flex;
        position: absolute;
        z-index: 110;
        bottom: 0;

        &.btn-push {
            position: absolute;
            right: 10dvw;
            display: flex;
            align-items: center;
            justify-content: center;
            bottom: 55px;
            /* Ne change jamais */
            transform: translateY(0);
            transition: transform 0.4s ease-in-out;
            will-change: transform;
        }

        &:not(.btn-push) {
            right: 16%;
        }

        float: right;
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-end;

    }

    & .attract-hover {
        display: flex;
    }
}


.text-accent-bg {
    background-color: #000000;
    color: #ffffff;
    padding: 0 0.4em;
    display: inline-block;
}

.text-tooltip {
    text-decoration: underline;
}


/*----------------------------------*/
/* Back To Top */
/*----------------------------------*/
.back-to-top {
    position: fixed;
    z-index: 99;
    right: 33px;
    bottom: 45px;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateY(30px);
}

.back-to-top::before {
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    content: "\f062";
    text-align: center;
    line-height: 55px;
    opacity: 1;
    height: 55px;
    width: 55px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    color: var(--color-white);
}

.back-to-top svg path {
    fill: none;
}

.back-to-top svg.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
}

.back-to-top.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*----------------------------------*/
/* Workspaces Outside : Home 01 */
/*----------------------------------*/
.workspaces-outside {
    margin-bottom: 250px;
}

.workspaces-outside .workspaces-centered-slider {
    margin-bottom: -250px;
}

.marquee-relative {
    position: relative;
}

.marquee-relative .marquee-absolute {
    position: absolute;
    right: 1px;
    left: 0;
    bottom: 18px;
}

/*----------------------------------*/
/* Top White Gradient : Home 02 */
/*----------------------------------*/
.image-gradient {
    position: relative;
}

.image-gradient:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 70%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

/*----------------------------------*/
/* Price with Image : Home 02 */
/*----------------------------------*/
.image-with-price {
    position: relative;
}

.image-with-price .price-box {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 212px;
    height: 212px;
    z-index: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.image-with-price .price-box .symbol {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.image-with-price .price-box .price-valid {
    display: flex;
    gap: 10px;
}

.image-with-price .price-box .price {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.image-with-price .price-box .valid {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding-top: 10px;
}

.image-with-price .price-box .month {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.image-with-price .price-box:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: -8px;
    bottom: -8px;
    z-index: -1;
    border: 1px solid #ffffff;
    border-radius: 100%;
}

/*----------------------------------*/
/* FAQ White Box : Home 02 */
/*----------------------------------*/
.accordion-bg-box {
    position: relative;
    background: #ffffff;
    padding: 100px;
}

/*----------------------------------*/
/* Client review : Home 03 */
/*----------------------------------*/
.clienti-reviews {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.clienti-reviews .clienti-profile {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.clienti-reviews .clienti-profile li {
    flex: 0 0 52px;
    height: 52px;
    width: 52px;
    margin-left: -15px;
    border-radius: 100%;
    border: 2px solid #000000;
}

.clienti-reviews .clienti-profile li:first-child {
    margin-left: 0px;
}

.clienti-reviews .clienti-profile li img {
    border-radius: 100%;
}

.clienti-reviews .reviews {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    justify-content: center;
    flex-direction: column;
}

.clienti-reviews .reviews .reviews-number {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    color: #ffffff;
}

.clienti-reviews .reviews span {
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
}

/*----------------------------------*/
/* Workspace Filter : Workspace Page  */
/*----------------------------------*/
.workspaces-filter {
    display: flex;
    align-items: center;
    padding: 5px 0;
    margin-bottom: 40px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.workspaces-filter .sidebar-btn {
    margin-bottom: 0;
}

.workspaces-filter .workspaces-sorting .nice-select {
    border: none;
    padding-left: 0;
    background-color: transparent;
}

.perfect-space-filter-wrapper {
    max-width: 925px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.perfect-space-filter-wrapper .title {
    margin-bottom: 30px;
}

.perfect-space-filter-wrapper .space-filter-wrapper {
    padding-right: 20px;
}



.about-img {
    position: relative;
}

.about-img img {
    border-radius: 10px;
}

.about-img .about-logo {
    position: absolute;
    left: 80px;
    top: 30px;
}

/*Home 03*/
.about-details {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding-top: 80px;
}

.about-details .list-wrapper {
    margin-left: 195px;
}

.about-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}

.rated-reviews-2 {
    padding-right: 75px;
    margin: 0;
}

.rated-reviews-2 h6 {
    display: flex;
    gap: 10px;
    color: #d4d6d7;
    margin: 0;
}

.rated-reviews-2 h6 span {
    font-size: 22px;
    line-height: 32px;
    flex-shrink: 0;
}

.rated-reviews-2 h6 span i {
    margin-left: 10px;
    font-size: 19px;
    color: #ffd401;
}

.rated-reviews-2 h6 .review-detail {
    font-size: 18px;
    line-height: 28px;
    display: inline-block;
    margin: 0;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    flex-shrink: 1;
}

.rated-reviews-2 h6 .review-detail a {
    background-image: linear-gradient(60deg,
            var(--primary-color) -20%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*.events-tab-wrapper {
    margin-top: -150px;
}*/

.event-tabs {
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 0;
}

.event-tabs .nav-link.btn {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #ffffff;
    font-family: var(--oswald);
    font-size: 22px;
    line-height: 32px;
    margin-left: 8px;
    height: auto;
    width: auto;
    overflow: visible;
    padding-top: 5px;
    padding-left: 5px;
}

.event-tabs .nav-link.btn:after {
    left: -8px;
    top: -8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin: 0;
}

.event-tabs .nav-link.btn.active {
    background: linear-gradient(60deg,
            var(--primary-color) -20%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid var(--primary-color);
}

.event-tabs .nav-link.btn.active:after {
    border: 1px solid var(--primary-color);
}

.event-tabs .nav-link.btn:hover {
    background: linear-gradient(60deg,
            var(--primary-color) -20%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid var(--primary-color);
}

.event-tabs .nav-link.btn:hover:after {
    border: 1px solid var(--primary-color);
}

.events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*.events-list li:first-child .event-box {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}*/

.event-box {
    padding: 50px;
    background-color: #000000;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.05);*/
    transition: all 0.3s ease-in-out;
}

.event-box .event-schedule {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 30px;
    gap: 6px;
}

.event-box .event-schedule .nice-select .list {
    max-height: 200px;
    overflow-y: auto;
    pointer-events: none;
}

.event-box .event-schedule .nice-select.open .list {
    pointer-events: auto;
}


/*.event-box .event-schedule h5 {
    margin-bottom: 20px;
}*/

.event-box .event-schedule h6 {
    color: #ffffff;
    margin-bottom: 0;
}

.event-box .event-schedule h6 .event-date {
    font-size: 32px;
    line-height: 42px;
}

.event-box .event-details {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    flex: 1 1 auto;
}

.event-box .event-details .inner-event h6 {
    color: #d4d6d7;
    margin-bottom: 20px;
}

.event-box .event-details .inner-event .event-vanue {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 25px;
}

.event-box .event-details .inner-event .event-vanue .event-info {
    display: flex;
    gap: 10px;
}

.event-box .event-details .inner-event .event-vanue .event-info img {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.event-box .event-details .inner-event .event-vanue .event-info p {
    margin-bottom: 0;
    line-height: 26px;
}

.event-box:hover {
    border-color: var(--primary-color);
}

.rotate-images {
    position: relative;
    margin-top: 50px;
}

.rotate-images .rotate-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.rotate-images .rotate-img {
    text-align: center;
}

.our-process .list-wrapper .process-list {
    gap: 45px 30px;
    margin-top: 40px;
}

.our-process .list-wrapper .process-list li {
    gap: 20px;
    color: #ffffff;
}

.our-process .list-wrapper .process-list li .process-number {
    position: relative;
    padding: 8px 15px 3px;
    border-radius: 100%;
    color: #d4d6d7;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.our-process .list-wrapper .process-list li .process-number:after {
    content: "";
    position: absolute;
    left: -4px;
    bottom: -4px;
    opacity: 1;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 100%;
}




/* ------------------------------------ *
 *  Scroll down arrow
/* ------------------------------------ */

.scroll-down-arrow {
    position: absolute;
    display: block;
    /*bottom: 40px;*/
    bottom: 0;
    left: 50%;
    margin-left: -25px;
    z-index: 9;
}

.scroll-down-arrow a {
    display: block;
    width: 50px;
    height: 50px;
}

.scroll-down-arrow a>span {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1;
    -webkit-animation: mymove 1.4s infinite ease;
    animation: mymove 1.4s infinite ease;
}

@-webkit-keyframes mymove {

    /* Chrome, Safari, Opera */
    0% {
        top: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 7px;
        opacity: 0;
    }
}

@keyframes mymove {

    /* Standard */
    0% {
        top: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 7px;
        opacity: 0;
    }
}

.cmn-banner {
    padding: 210px 0px 130px;
    background-color: var(--black);
}

.cmn-banner .title {
    text-transform: uppercase;
    font-weight: 700;
    margin-top: -12px;
}

.breadcrumb {
    margin: 0px;
    padding: 0px;
    border: 1px dashed #414141;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 100px;
    margin-top: 20px;
}

.breadcrumb .breadcrumb-item {
    margin-top: 0px;
    color: var(--white);
    padding: 0px 0px 0px 24px;
    position: relative;
    padding-right: 16px;
    text-transform: uppercase;
    font-size: 14px;
}

.breadcrumb .breadcrumb-item a {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 14px;
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb .breadcrumb-item::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "";
    position: absolute;
    left: 0px;
    font-size: 14px;
    color: var(--theme-color);
    padding: 0px;
}

.breadcrumb .breadcrumb-item:first-of-type {
    padding-left: 0px;
}

.breadcrumb .breadcrumb-item:first-of-type a:hover {
    color: var(--primary-color);
}

.breadcrumb .breadcrumb-item:first-of-type::before {
    content: none;
}

.breadcrumb .active {
    color: var(--primary-color);
    padding-right: 0px;
    font-weight: 600;
}

.agency {
    background-color: var(--tertiary-color);
    z-index: 1;
    position: relative;
}

.agency .agency__thumb {
    position: relative;
    overflow: hidden;
    text-align: end;
    z-index: 1;
}

.agency .agency__thumb::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 10%;
    width: 40px;
    height: 40px;
    background-image: url("../images/agency/dot.png");
    background-size: cover;
    z-index: -1;
}

.agency .agency__thumb::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    background-image: url("../images/agency/dot.png");
    background-size: cover;
    z-index: -1;
}

.agency .agency__thumb img {
    max-width: 100%;
    height: auto;
}

.agency .agency__thumb .thumb-one {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: 80%;
}

.agency .agency__thumb .thumb-two {
    margin-top: 100px;
    z-index: 2;
    position: relative;
    max-width: 80%;
}

.agency .agency__content {
    padding-left: 70px;
}

.agency .star {
    position: absolute;
    top: 50%;
    left: 40px;
    z-index: -1;
}

.agency .skill-wrap {
    margin-top: 40px;
}

.agency .skill-bar-single {
    margin-bottom: 30px;
}

.agency .skill-bar-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.agency .skill-bar-wrapper {
    margin-top: 15px;
}

.agency .skill-bar {
    height: 8px;
    border-radius: 100px;
    background-color: #363636;
    position: relative;
}

.agency .skill-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: #cecece;
    border-radius: inherit;
}

.agency .percent-value {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0px;
}

.agency .dot-large {
    position: absolute;
    bottom: 40px;
    right: 4%;
    max-width: 25dvw;
    z-index: -1;
}

.agency-two .agency__thumb::before,
.agency-two .agency__thumb::after {
    content: none;
}

.agency-two .clutch {
    width: 220px;
    border-radius: 100px;
}

.agency-two .clutch img {
    border-radius: 100px;
}

.agency-two .cta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    row-gap: 24px;
    flex-wrap: wrap;
}

.agency-two h5 {
    color: var(--white);
}

.agency-two .single p {
    color: var(--secondary-color);
    margin-top: 6px;
    text-transform: capitalize;
}

.portfolio {
    overflow-x: clip;
}

.portfolio .portfolio__text-slider {
    margin-bottom: 80px;
}

.portfolio .portfolio__text-slider-single h2 {
    margin-top: -20px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
}

.portfolio .portfolio__text-slider-single h2 i {
    color: var(--primary-color);
}

.portfolio .portfolio__text-slider-single:nth-of-type(even) h2 {
    font-family: var(--oswald);
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--white);
}

.portfolio .portfolio__text-slider-single:nth-of-type(even) h2 i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--primary-color);
}

.portfolio .portfolio__text-slider-single:nth-of-type(even) h2 a:hover {
    -webkit-text-stroke-color: var(--primary-color);
}

.portfolio .portfolio__single {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.portfolio .portfolio__single::before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 0px;
    height: 0px;
    transition: var(--transition);
    background-color: var(--primary-color);
}

.portfolio .portfolio__single::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;
    height: 0px;
    width: 0px;
    transition: var(--transition);
    background-color: var(--primary-color);
}

.portfolio .portfolio__single a {
    width: 100%;
}

.portfolio .portfolio__single img {
    width: 100%;
    min-height: 300px;
}

.portfolio .portfolio__single .portfolio__single-content {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 40px;
    background-color: var(--white);
    text-align: end;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-end;
    justify-content: flex-end;
    transform: translateY(-160%) scale(1.4);
    transition: var(--transition);
    max-width: 90%;
}

.portfolio .portfolio__single .portfolio__single-content a {
    width: auto;
}

.portfolio .portfolio__single .portfolio__single-content a i {
    font-size: 56px;
    color: var(--primary-color);
}

.portfolio .portfolio__single .portfolio__single-content h4 a {
    color: var(--black);
    font-weight: 600;
}

.portfolio .portfolio__single .portfolio__single-content h4 a:hover {
    color: var(--primary-color);
}

.portfolio .portfolio__single:hover::before {
    width: 1px;
    height: calc(100% - 40px);
}

.portfolio .portfolio__single:hover::after {
    height: 1px;
    width: calc(100% - 40px);
}

.portfolio .portfolio__single:hover .portfolio__single-content {
    transform: translateY(0px) scale(1);
}

.portfolio .portfolio__single-active::before {
    width: 1px;
    height: calc(100% - 40px);
}

.portfolio .portfolio__single-active::after {
    height: 1px;
    width: calc(100% - 40px);
}

.portfolio .portfolio__single-active .portfolio__single-content {
    transform: translateY(0px) scale(1);
}

.portfolio .portfolio__single-alt-wrapper {
    background-color: #000;
    padding: 20px;
    border: 1px solid var(--primary-color);
    height: 100%;
}

.portfolio .portfolio__single-alt {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    z-index: 1;
    min-height: 300px;
}

.portfolio .portfolio__single-alt h4 {
    text-transform: uppercase;
}

.portfolio .portfolio__single-alt .arr {
    position: absolute;
    bottom: 60px;
    left: 60px;
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-color);
}

.portfolio .portfolio__single-alt img {
    max-width: 25%;
}

.portfolio .portfolio__single-alt .dot-one {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: -1;
}

.portfolio .portfolio__single-alt .dot-two {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: -1;
}

.portfolio-two .portfolio__text-slider {
    margin-bottom: 80px;
}

.portfolio-two .portfolio__text-slider-single h2 {
    margin-top: -20px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
}

.portfolio-two .portfolio__text-slider-single h2 i {
    color: var(--primary-color);
}

.portfolio-two .portfolio__text-slider-single:nth-of-type(even) h2 {
    font-family: var(--oswald);
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--white);
}

.portfolio-two .portfolio__text-slider-single:nth-of-type(even) h2 i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--primary-color);
}

.portfolio-two .portfolio-two__filter-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    row-gap: 24px;
    justify-content: space-between;
}

.portfolio-two .portfolio-two__filter-btn button {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-transform: uppercase;
}

.portfolio-two .portfolio-two__filter-btn button span {
    color: #474747;
    transition: var(--transition);
}

.portfolio-two .portfolio-two__filter-btn button:hover {
    color: var(--primary-color);
}

.portfolio-two .portfolio-two__filter-btn button:hover span {
    color: var(--white);
}

.portfolio-two .portfolio-two__filter-btn .active {
    color: var(--primary-color);
}

.portfolio-two .portfolio-two__filter-btn .active span {
    color: var(--white);
}

.filter-item-space {
    margin-bottom: 30px;
}

.masonry-grid {
    margin-bottom: -30px;
}

.portfolio-three {
    position: relative;
    z-index: 1;
}

.portfolio-three .slick-track {
    display: flex;
}

.portfolio-three .portfolio__single {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    flex: 1;
}

.portfolio-three .portfolio__single::before,
.portfolio-three .portfolio__single::after {
    content: none;
}

.portfolio-three .portfolio__single a {
    width: 100%;
    height: 100%;
}

.portfolio-three .portfolio__single img {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.portfolio-three .portfolio__single .portfolio__single-content {
    position: absolute;
    bottom: 0px;
    top: unset;
    right: unset;
    left: 0px;
    padding: 40px;
    background-color: var(--white);
    text-align: end;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-end;
    justify-content: flex-end;
    transform: translateY(160%) scale(1.4);
    transition: var(--transition);
    max-width: 90%;
}

.portfolio-three .portfolio__single .portfolio__single-content a {
    width: auto;
}

.portfolio-three .portfolio__single .portfolio__single-content a i {
    font-size: 56px;
    color: var(--primary-color);
}

.portfolio-three .portfolio__single .portfolio__single-content h4 a {
    color: var(--black);
    font-weight: 600;
}

.portfolio-three .portfolio__single .portfolio__single-content h4 a:hover {
    color: var(--primary-color);
}

.portfolio-three .portfolio__single:hover .portfolio__single-content {
    transform: translateY(160%) scale(1.4);
}

.portfolio-three .slick-center .portfolio__single-content {
    transform: translateY(0px) scale(1);
}

.portfolio-three .slick-center:hover .portfolio__single-content {
    transform: translateY(0px) scale(1);
}

.portfolio-three .slide-group {
    position: absolute;
    padding: 0px 20px;
    top: 70%;
    left: 0%;
    right: 0%;
    transform: translateY(-70%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 2;
    width: 100%;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
}

.offer {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.offer .star {
    position: absolute;
    bottom: 20%;
    z-index: -1;
    left: 40%;
    transform: translate(-40%, -20%);
}

.offer .offer__cta .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: #404040;
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: var(--transition);
}

.offer .offer__cta .sub-title i {
    transform: rotate(-45deg);
    color: var(--primary-color);
    opacity: 0.5;
    transition: var(--transition);
}

.offer .offer__cta h2 a {
    justify-content: space-between;
    text-transform: capitalize;
    width: 100%;
    font-weight: 500;
    color: #404040;
    gap: 16px;
}

.offer .offer__cta h2 a i {
    font-weight: 900;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px #404040;
    transition: var(--transition);
}

.offer .offer__cta .offer__cta-single {
    position: relative;
    margin-bottom: 65px;
}

.offer .offer__cta .offer__cta-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.offer .offer__cta .offer-thumb-hover {
    width: 200px;
    height: 270px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    inset-inline-start: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -200px 0 0 -150px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.offer .offer__cta .offer__cta-single:hover .sub-title {
    color: var(--primary-color);
}

.offer .offer__cta .offer__cta-single:hover .sub-title i {
    opacity: 1;
}

.offer .offer__cta .offer__cta-single:hover h2 a {
    color: var(--primary-color);
}

.offer .offer__cta .offer__cta-single:hover h2 a i {
    -webkit-text-fill-color: unset;
    -webkit-text-stroke: 0px;
    color: var(--primary-color);
}

.offer .offer__cta .offer__cta-single:hover .offer-thumb-hover {
    opacity: 1;
}

.offer-two .offer-two__slider,
.offer-two .offer-two__slider-rtl {
    margin: -60px 0px;
}

.offer-two .offer-two__slider .offer__cta,
.offer-two .offer-two__slider-rtl .offer__cta {
    direction: ltr;
}

.offer-two .offer__cta {
    padding: 60px 0px;
}

.offer-two .offer__cta .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: #404040;
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: var(--transition);
}

.offer-two .offer__cta .sub-title i {
    transform: rotate(-45deg);
    color: var(--primary-color);
    opacity: 0.5;
    transition: var(--transition);
}

.offer-two .offer__cta h2 a {
    justify-content: space-between;
    text-transform: capitalize;
    width: 100%;
    font-weight: 500;
    color: #404040;
    gap: 16px;
}

.offer-two .offer__cta h2 a i {
    font-weight: 900;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px #404040;
    transition: var(--transition);
}

.offer-two .offer__cta .offer__cta-single {
    position: relative;
}

.offer-two .offer__cta .offer-thumb-hover {
    width: 140px;
    height: 140px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    inset-inline-start: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -120px 0 0 -120px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.offer-two .offer__cta .offer__cta-single:hover .sub-title {
    color: var(--primary-color);
}

.offer-two .offer__cta .offer__cta-single:hover .sub-title i {
    opacity: 1;
}

.offer-two .offer__cta .offer__cta-single:hover h2 a {
    color: var(--primary-color);
}

.offer-two .offer__cta .offer__cta-single:hover h2 a i {
    -webkit-text-fill-color: unset;
    -webkit-text-stroke: 0px;
    color: var(--primary-color);
}

.offer-two .offer__cta .offer__cta-single:hover .offer-thumb-hover {
    opacity: 1;
}

.testimonial .testimonial__text-slider {
    margin-bottom: 80px;
}

.testimonial .testimonial__text-slider-single h2 {
    margin-top: -20px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
    font-family: var(--oswald);
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--white);
}

.testimonial .testimonial__text-slider-single h2 i {
    -webkit-text-fill-color: var(--primary-color);
    -webkit-text-stroke: 0px var(--primary-color);
    color: var(--primary-color);
}

.testimonial .testimonial__text-slider-single h2 a:hover {
    -webkit-text-stroke-color: var(--primary-color);
}

.testimonial .testimonial-s__slider .thumb {
    position: relative;
}

.testimonial .testimonial-s__slider .thumb svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
}

.testimonial .testimonial-s__slider .testimonial-s__content .quote i {
    font-size: 56px;
    color: var(--primary-color);
}

.testimonial .testimonial-s__slider .testimonial-s__content .content {
    margin: 30px 0px;
}

.testimonial .testimonial-s__slider .testimonial-s__content h4 {
    font-weight: 400;
    text-transform: capitalize;
}

.testimonial .testimonial-s__slider .testimonial-s__content .content-cta p {
    color: var(--primary-color);
    margin-top: 6px;
}

.testimonial .slide-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    flex-direction: column;
}

.testimonial .slide-group button {
    position: relative;
    z-index: 9;
}

.testimonial .slide-group button:nth-of-type(1) {
    transform: rotate(90deg);
}

.testimonial .slide-group button:nth-of-type(2) {
    transform: rotate(90deg);
}

.testimonial .other-section {
    position: absolute;
    left: 0px;
    bottom: 130px;
    width: 330px;
    opacity: 0.25;
    transform: translateX(-40%);
}

.testimonial-two {
    background: url("../images/testimonial/line.png"), var(--tertiary-color);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-two .testimonial-two__thumb img {
    border-radius: 500px;
}

.testimonial-two .quote {
    margin: 30px 0px;
}

.testimonial-two .quote i {
    font-size: 60px;
    color: var(--primary-color);
}

.testimonial-two blockquote {
    color: #c1c1c1;
}

.testimonial-two .author-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}

.testimonial-two .author-meta img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.testimonial-two .author-meta h5 {
    margin-bottom: 6px;
}

.testimonial-two .star {
    position: absolute;
    top: 80px;
    right: 120px;
    z-index: -1;
}

.testimonial-three {
    background-color: var(--tertiary-color);
}

/******************/
/*BLOGUE ACTUALITE*/
/******************/

.blog-area {
    position: relative;
}

/**
 * 11. About Us Section
 * ====================
 */

.about-three-info-wrap p {
    color: var(--color-black);
    font-size: 46px;
    font-style: italic;
    line-height: 1.26;
}

.about-three-video-wrap .about-three-video-box {
    background-position: top center;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
    width: 670px;
    height: 790px;
    margin: 0 0 0 auto;
    overflow: hidden;
}

.about-three-video-wrap .about-three-video-box video {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    background-position: center center;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 1399.98px) {
    .about-three-video-wrap .about-three-video-box {
        height: 700px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .about-three-video-wrap .about-three-video-box {
        height: 500px;
    }
}

@media only screen and (max-width: 767.98px) {
    .about-three-video-wrap .about-three-video-box {
        height: 500px;
        width: 100%;
    }
}

.about-three-video-wrap.video-portfolio .about-three-video-box {
    margin: 0 auto;
}

.sk__about-us-section {
    overflow-x: hidden;
}

.about-right-image-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 49.42%;
}

@media all and (max-width: 991px) {

    /* xs to (and including) md */
    .about-right-image-wrap {
        margin-top: 30px;
    }
}

.about-right-image {
    background-image: url(../images/home/camion.webp);
}

.about-right-image-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.about-right-image-subwrap {
    position: relative;
    width: 100%;
    height: 100%;
    /* Assure que le sous-conteneur couvre également la hauteur */
    overflow: hidden;
}

.about-right-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* L'image remplit tout le conteneur */
    background-size: cover;
    /* Assure que l'image ne soit pas déformée */
    background-position: center;
    /* Centre l'image dans le conteneur */
    transform-origin: center;
    /* Point d'origine pour les animations GSAP */
}

.section-about,
.section-welcome,
.section-conseils,
#pages,
.blog-area {
    .skill-bar .progress-number {
        display: none;
    }

    .skill-bar .progress-type {
        display: none;
    }

    .skill {
        margin: 0px 0 20px 0;
    }

    .skill.skill-welcome {
        display: flex;
        width: 50%;
    }

    /*.section-title .title {
      margin-bottom: 10px;
      white-space: nowrap;
    }*/
}

/*================================================
  11. PRODUITS CSS
  =================================================*/

.section-products {
    position: relative;
}



/*================================================
  11. About CSS
  =================================================*/
.about-info-wrap {
    padding-top: 34px;
    gap: 20px;
}

.play-vide-box {
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

.play-vide-box iframe {
    border-radius: 10px;
    height: 100%;
    width: 100%;
}

@media only screen and (max-width: 991.98px) {
    .play-vide-box {
        height: 300px;
    }
}

.play-btn-wrap {
    background-image: url(../images/about.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.8s linear;
    border-radius: 5px;
}

.play-btn-wrap .cover {
    background-color: rgba(131, 111, 255, 0.7);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    font-size: 40px;
    color: #fff;
}

.play-btn-wrap.hide {
    transform: scale(0);
    z-index: -1;
}

.about-two-fun-fact-wrap {
    gap: 35px;
}

.about-two-fun-fact-wrap .about-two-fun-fact {
    position: relative;
}

.about-two-fun-fact-wrap .about-two-fun-fact .counter-item {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.2000000477px;
    -webkit-text-stroke-color: var(--color-black);
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
    transition: all 0.4s;
}

.about-two-fun-fact-wrap .about-two-fun-fact .counter-item em {
    font-style: normal;
    margin-left: -24px;
    font-size: 80px;
}

@media only screen and (min-width: 992px) {
    .about-two-fun-fact-wrap .about-two-fun-fact .counter-item {
        overflow: hidden;
        transition: all 0.2s linear;
    }
}

.about-two-fun-fact-wrap .about-two-fun-fact p {
    font-size: 20px;
}

.about-two-fun-fact-wrap .about-two-fun-fact:not(:last-child) {
    padding-right: 35px;
}

.about-two-fun-fact-wrap .about-two-fun-fact:not(:last-child)::before {
    position: absolute;
    right: 0;
    background-color: #C5C4BE;
    height: 70px;
    width: 1px;
    top: 50%;
    transform: translate(100%, -50%);
    content: "";
}

@media only screen and (max-width: 1399.98px) {
    .about-two-fun-fact-wrap .about-two-fun-fact p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .about-two-fun-fact-wrap {
        gap: 25px;
    }

    .about-two-fun-fact-wrap .about-two-fun-fact .counter-item {
        font-size: 80px;
    }

    .about-two-fun-fact-wrap .about-two-fun-fact .counter-item em {
        font-size: 70px;
    }

    .about-two-fun-fact-wrap .about-two-fun-fact:not(:last-child) {
        padding-right: 25px;
    }
}

@media only screen and (min-width: 992px) {
    .about-two-cta-wrap::before {
        height: 1000%;
        width: 1px;
        border-left: 1px solid var(--color-black);
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}

.about-two-cta-box {
    display: inline-block;
    border: 1px solid var(--color-black);
    border-radius: 50%;
    padding: 12px;
    height: -moz-max-content;
    height: max-content;
}

.about-two-cta-box span {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-two-cta-box .img-1 {
    animation: rotate2 15s linear infinite;
}

.about-two-cta-box .img-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

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

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

.border-about-two {
    border-top: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
}

.about-three-info-wrap p {
    color: var(--color-black);
    font-size: 46px;
    font-style: italic;
    line-height: 1.26;
}

.about-three-video-wrap .about-three-video-box {
    background-position: top center;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
    width: 670px;
    height: 790px;
    margin: 0 0 0 auto;
    overflow: hidden;
}

.about-three-video-wrap .about-three-video-box video {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    background-position: center center;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 1399.98px) {
    .about-three-video-wrap .about-three-video-box {
        height: 700px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .about-three-video-wrap .about-three-video-box {
        height: 500px;
    }
}

@media only screen and (max-width: 767.98px) {
    .about-three-video-wrap .about-three-video-box {
        height: 500px;
        width: 100%;
    }


}

.about-three-video-wrap.video-portfolio .about-three-video-box {
    margin: 0 auto;
    padding: 15px;
}

.about-portfolio-chars-wrap .chars-desc {
    color: #DBDBDB;
    font-weight: 400;
    line-height: 128.261%;
    transition: all 1s linear;
}

.about-portfolio-info .about-portfolio-info-desc {
    font-size: 20px;
    line-height: 160%;
}

.about-portfolio-info .skill-info.fun-fact {
    gap: 16px;
}

.about-portfolio-info .skill-info.fun-fact P {
    max-width: 100%;
}

.about-portfolio-img-wrap {
    z-index: 1;
}

.about-portfolio-img-wrap::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    max-width: 500px;
    background-image: url(../images/shape/about-portfolio.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    content: "";
    border-radius: 24px;
}

.about-portfolio-img-wrap .about-portfolio-img-box {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.blog {
    background-color: var(--tertiary-color);
}

.blog .blog__single-thumb a {
    width: 100%;
}

.blog .blog__single-thumb a img {
    width: 100%;
    min-height: 360px;
}

.blog .blog__single-content {
    margin-top: 40px;
}

.blog .blog__single-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    row-gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.blog .blog__single-meta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--primary-color);
    border-radius: 30px;
    text-transform: uppercase;
}

.blog .blog__single-meta a i {
    transform: rotate(-45deg);
}

.blog .blog__single-meta p {
    color: var(--secondary-color);
}

.blog-two {
    background-color: var(--black);
}

.blog-two .blog-two__slider-single {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.blog-two .blog-two__slider-single::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    transform: translateY(100%);
    transition: var(--transition);
}

.blog-two .blog-two__slider-single .blog__single-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 40px;
    width: 100%;
    transform: translateY(200%);
    transition: var(--transition);
    margin: 0px;
}

.blog-two .blog-two__slider-single:hover::before {
    transform: translateY(0px);
}

.blog-two .blog-two__slider-single:hover .blog__single-content {
    transform: translateY(0px);
}

.blog-two .slick-center::before {
    transform: translateY(0px);
}

.blog-two .slick-center .blog__single-content {
    transform: translateY(0px);
}

.blog-three .blog-three__wrapper {
    padding-top: 65px;
    border-top: 1px solid #414141;
}

.blog-three .blog-three__single {
    padding: 30px 0px;
    border-bottom: 1px solid #414141;
}

.blog-three .blog-three__single:nth-of-type(1) {
    padding-top: 0px;
}

.blog-three .blog-three__single:nth-last-of-type(1) {
    padding-bottom: 0px;
    border-bottom: 0px;
}

.blog-three .blog-three__single:hover h4 a {
    color: var(--primary-color);
    text-decoration: underline;
}

.blog-three .blog__single-content h4 {
    max-width: 650px;
}

.blog-three .blog__single-content h4 a {
    text-transform: capitalize;
}

.blog-three .blog__single-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    row-gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.blog-three .blog__single-meta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--primary-color);
    border-radius: 30px;
    text-transform: uppercase;
}

.blog-three .blog__single-meta a i {
    transform: rotate(-45deg);
}

.blog-three .blog__single-meta p {
    color: var(--secondary-color);
}

.blog-three .blog-single-img a {
    width: 100%;
}

.blog-three .blog-single-img img {
    width: 100%;
}

.sponsor .sponsor__slider-item {
    text-align: center;
}

.sponsor .sponsor__slider-item img {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.25;
    transition: var(--transition);
}

.sponsor .slick-center img {
    opacity: 1;
}

.sponsor-three {
    background-color: var(--tertiary-color);
}

.next-page .next__text-slider-single h2 {
    margin-top: -20px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
    font-family: sans-serif;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--white);
    font-size: 100px;
    line-height: 130px;
}

.next-page .next__text-slider-single h2 a {
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
}

.next-page .next__text-slider-single h2 a i {
    color: var(--primary-color);
}

.next-page .next__text-slider-single:nth-of-type(even) h2 a {
    font-family: var(--oswald);
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--white);
    color: rgba(0, 0, 0, 0);
}

.next-page .next__text-slider-single:nth-of-type(even) h2 a i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--primary-color);
}

.next-page .next__text-slider-single:nth-of-type(even) h2 a:hover {
    -webkit-text-stroke-color: var(--primary-color);
}

.next__text-slider.color-black .next__text-slider-single h2 a {
    color: var(--color-black);
}

.next__text-slider.color-black .next__text-slider-single:nth-of-type(even) h2 a {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--color-black);
    color: rgba(0, 0, 0, 0);
}

.liner {
    position: relative;
}

.liner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60%;
    border-top: 1px solid #414141;
}

.award {
    background-color: var(--tertiary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.award .award-thumb img {
    border-radius: 0px 1000px 1000px 0px;
}

.award .award__content .title span {
    color: var(--primary-color);
}

.award .award__content-meta {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.award .award__content-meta::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0px;
    right: 0px;
    height: 1px;
    width: 100%;
    background-color: var(--primary-color);
}

.award .single {
    position: relative;
}

.award .single::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0px;
    border: 15px solid rgba(0, 0, 0, 0);
    border-top-color: var(--primary-color);
}

.award .single h4 {
    color: #fff;
    font-weight: 700;
}

.award .single h4:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 50px;
}

.award .single p {
    margin-top: 10px;
    color: var(--secondary-color);
}

.award .star,
.award .star-two,
.award .dot,
.award .dot-two {
    position: absolute;
    z-index: -1;
}

.award .star {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 10dvw;
}

.award .star-two {
    bottom: 60px;
    left: 20%;
    max-width: 2dvw;
}

.award .dot {
    top: 40%;
    left: 6%;
    max-width: 10dvw;
}

.award .dot-two {
    bottom: 60px;
    left: 50%;
    transform: translateX(-45%);
    max-width: 10dvw;
}

.video-modal {
    position: relative;
}

.video-modal .modal-bg {
    width: 100%;
    min-height: 360px;
}

.video-modal .video-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    min-width: 190px;
    height: 190px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.video-modal .video-frame img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    animation: rotateInfinite 24s linear infinite;
    animation-play-state: running;
}

.video-modal .video-frame i {
    width: 120px;
    min-width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.video-modal .video-frame:hover img {
    animation-play-state: paused;
}


.service-f {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-f .service-f-single {
    padding: 40px 0px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    border-top: 1px solid #414141;
    padding-right: 90px;
    position: relative;
}

.service-f .service-f-single:nth-last-of-type(1) {
    border-bottom: 1px solid #414141;
}

.service-f .service-f-single .toggle-service-f {
    position: relative;
}

.service-f .service-f-single .toggle-service-f::before {
    content: "+";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 18px;
}

.service-f .service-f-single-active .toggle-service-f::before {
    content: "";
    font-family: "Font Awesome 6 Pro";
    color: var(--primary-color);
    font-size: 18px;
}

.service-f .service-f-single-active .single-item .sub-title {
    opacity: 1;
}

.service-f .single-item .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--white);
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: var(--transition);
    opacity: 0.5;
}

.service-f .single-item .sub-title i {
    transform: rotate(-45deg);
    color: var(--primary-color);
    transition: var(--transition);
}

.service-f .single-item h4 {
    margin-bottom: 24px;
}

.service-f .single-item p {
    max-width: 450px;
}

.service-f .single-item ul {
    min-width: 220px;
}

.service-f .single-item li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-f .single-item li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.service-f .single-item li i {
    font-size: 14px;
    color: var(--primary-color);
}

.service-f button {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1d1d1d;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}

.service-f .p-single {
    display: none;
}

.service-f .dot-img {
    position: absolute;
    top: 50%;
    left: 6%;
    max-width: 15dvw;
    z-index: -1;
}

.work-steps {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.work-steps .work-steps__single {
    padding-top: 230px;
    position: relative;
}

.work-steps .work-steps__single h5 {
    position: relative;
    z-index: 2;
    padding: 16px 30px;
    border: 1px dashed #414141;
    background-color: var(--black);
    border-radius: 100px;
    overflow: hidden;
    text-transform: capitalize;
    transition: var(--transition);
}

.work-steps .work-steps__single h5::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 0%;
    border-radius: 100px;
    background: linear-gradient(90deg, #ffdc0e 0%, rgba(255, 116, 37, 0) 60.08%);
    z-index: -1;
    transition: var(--transition);
}

.work-steps .work-steps__single span {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f1f1f;
    text-align: center;
    color: #8d8d8d;
    line-height: 1.4;
    transition: var(--transition);
}

.work-steps .work-steps__single span::after {
    content: "";
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
    height: 0px;
    width: 1px;
    background-color: #414141;
    transition: var(--transition);
}

.work-steps .work-steps__single .work-thumb-hover {
    width: 600px;
    height: 220px;
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 60px 0 0 -150px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.work-steps .work-steps__single:hover span {
    background-color: var(--primary-color);
    color: var(--white);
}

.work-steps .work-steps__single:hover span::after {
    height: 108px;
}

.work-steps .work-steps__single:hover h5 {
    border: 1px solid rgba(0, 0, 0, 0);
}

.work-steps .work-steps__single:hover h5::before {
    width: 100%;
}

.work-steps .work-steps__single:hover .work-thumb-hover {
    opacity: 1;
}

.work-steps .work-steps__single-active span {
    background-color: var(--primary-color);
    color: var(--white);
}

.work-steps .work-steps__single-active span::after {
    height: 108px;
}

.work-steps .work-steps__single-active h5 {
    border: 1px solid rgba(0, 0, 0, 0);
}

.work-steps .work-steps__single-active h5::before {
    width: 100%;
}

.work-steps .work-steps__single-active .work-thumb-hover {
    opacity: 1;
}

.work-steps .work-two {
    margin-top: 100px;
}

.work-steps .work-three {
    margin-top: 200px;
}

.work-steps .work-four {
    margin-top: 300px;
}

.work-steps .video-frame {
    position: absolute;
    top: 33%;
    right: 12%;
    width: 190px;
    min-width: 190px;
    height: 190px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
}

.work-steps .video-frame img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    animation: rotateInfinite 24s linear infinite;
    animation-play-state: running;
}

.work-steps .video-frame:hover img {
    animation-play-state: paused;
}

.work-alt {
    background-color: var(--tertiary-color);
}

.four-info .primary-text {
    margin-bottom: 24px;
    font-weight: 600;
}

.projects-s .projects-s__single {
    padding: 30px;
    border: 1px solid #414141;
}

.projects-s .projects-s__single .thumb a {
    width: 100%;
}

.projects-s .projects-s__single .thumb a img {
    width: 100%;
}

.projects-s .projects-s__single .content {
    margin-top: 30px;
}

.projects-s .projects-s__single .content h4 {
    text-transform: capitalize;
}

.projects-s .projects-s__single .content p {
    margin-top: 20px;
    color: #d9d9d9;
}

.projects-s .gaper {
    margin-bottom: 65px;
}

.projects-s .gaper:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.project__text-slider {
    margin-bottom: 80px;
    padding: 40px 0px;
    border-top: 1px solid #414141;
    border-bottom: 1px solid #414141;
}

.project__text-slider-single h2 {
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
}

.project__text-slider-single h2 i {
    color: var(--primary-color);
    font-size: 30px;
}

@keyframes fde {
    0% {
        transform: translateY(40px);
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    100% {
        transform: translateY(0px);
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fdee {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateY(0px);
    }
}

.team-slider-s {
    overflow-x: clip;
}

.team-slider-s .team-s__slider-single {
    overflow: hidden;
}

.team-slider-s .team-s__slider-single .content {
    transform: translateY(100%);
    transition: var(--transition);
    display: none;
    opacity: 0;
    visibility: hidden;
}

.team-slider-s .team-s__slider-single .thumb {
    position: relative;
    overflow: hidden;
}

.team-slider-s .team-s__slider-single .thumb a {
    width: 100%;
}

@keyframes rer {
    0% {
        transform: translateY(-200%);
        display: none;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
        transform: translateY(0px);
    }
}

.team-slider-s .team-s__slider-single .thumb .thumb__content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 30px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: left bottom;
    height: 130px;
    width: 240px;
    overflow-y: clip;
    transition: all 0.4s ease-in-out;
    display: none;
}

.team-slider-s .team-s__slider-single .thumb .thumb__content p {
    color: var(--primary-color);
    margin-top: 8px;
}

.team-slider-s .team-s__slider-single .thumb .thumb__content .info {
    transform: translateY(-200%);
    display: none;
    transition: var(--transition);
    margin-bottom: 20px;
}

.team-slider-s .team-s__slider-single .thumb .thumb__content .info p {
    color: var(--white);
}

.team-slider-s .team-s__slider-single .thumb .thumb__content .social-alt {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 100%;
    bottom: 0px;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, #f90 0%, #cc2500 100%);
    transition: all 0.4s ease-in-out;
    transition-delay: 0s;
    transform: translateY(100%);
}

.team-slider-s .team-s__slider-single .thumb .thumb__content .social-alt a {
    width: auto;
}

.team-slider-s .team-s__slider-single .thumb .thumb__content .social-alt a:hover {
    color: var(--white);
}

.team-slider-s .team-s__slider-single .thumb:hover .thumb__content {
    height: 220px;
}

.team-slider-s .team-s__slider-single .thumb:hover .thumb__content .info {
    transform: translateY(0px);
    display: block;
    animation: rer 0.4s ease-in-out;
}

.team-slider-s .team-s__slider-single .thumb:hover .thumb__content .social-alt {
    transform: translateY(0px);
}

.team-slider-s .slick-track {
    display: flex !important;
    align-items: center !important;
    justify-content: start !important;
}

.team-slider-s .slick-center-active .content {
    transform: translateY(0px);
    display: block;
    opacity: 1;
    visibility: visible;
    animation: fde 0.6s ease-in-out;
    max-width: 340px;
}

.team-slider-s .slick-center-active .team-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 24px;
    padding: 25px 20px;
    background-color: #131313;
}

.team-slider-s .slick-center-active .team-wrap .thumb {
    max-width: 290px;
    min-width: 290px;
}

.team-slider-s .slick-center-active .team-wrap .thumb img {
    width: 100%;
    min-height: 500px;
}

.team-slider-s .slick-center-active .team-wrap .intro p {
    color: var(--primary-color);
    margin-top: 6px;
}

.team-slider-s .slick-center-active .team-wrap hr {
    background-color: #414141;
    height: 1px;
    margin: 24px 0px;
    opacity: 1;
}

.team-slider-s .slick-center-active .team-wrap .inner p,
.team-slider-s .slick-center-active .team-wrap .inner span {
    font-size: 14px;
}

.team-slider-s .slick-center-active .team-wrap .skill-wrap {
    margin: 24px 0px;
}

.team-slider-s .slick-center-active .team-wrap .skill-bar-single {
    margin-bottom: 10px;
}

.team-slider-s .slick-center-active .team-wrap .skill-bar-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.team-slider-s .slick-center-active .team-wrap .skill-bar-wrapper {
    margin-top: 10px;
}

.team-slider-s .slick-center-active .team-wrap .skill-bar-wrapper span {
    color: #757575;
}

.team-slider-s .slick-center-active .team-wrap .skill-bar {
    height: 5px;
    border-radius: 100px;
    background-color: #fff;
    position: relative;
}

.team-slider-s .slick-center-active .team-wrap .skill-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: var(--primary-color);
    border-radius: inherit;
}

.team-slider-s .slick-center-active .team-wrap .percent-value {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0px;
}

.team-slider-s .slick-center-active .team-wrap .social {
    margin-top: 30px;
    justify-content: flex-start;
    gap: 14px;
}

.team-slider-s .slick-center-active .team-wrap .social a {
    border: 1px solid #888;
    color: #888;
    background-color: rgba(0, 0, 0, 0);
}

.team-slider-s .slick-center-active .team-wrap .social a:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.team-slider-s .team-r .slide-group {
    position: absolute;
    top: 50%;
    left: 0%;
    right: 0%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
    max-width: 86%;
    padding: 0px 15px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.team-slider-s .team-r .slide-group button {
    background-color: var(--white);
    color: var(--primary-color);
}

.team-slider-s .team-r .slide-group button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.team-slider-s .team-r:hover .slide-group {
    display: flex;
}

.mission-s .mission-s__single {
    height: 100%;
    background-color: #131313;
}

.mission-s .mission-s__single--alt {
    padding: 80px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    transition: var(--transition);
    border: 10px solid rgba(0, 0, 0, 0);
}

.mission-s .mission-s__single--alt:hover {
    border: 10px solid var(--primary-color);
}

.mission-s .mission-s__single--alt h3 {
    text-transform: capitalize;
}

.mission-s .mission-s__single--alt p {
    text-transform: capitalize;
}

.achievements .achievements__slider-single {
    text-align: center;
}

.service-t {
    position: relative;
    overflow-x: clip;
    z-index: 1;
}

.service-t .service-t-single-wrapper {
    position: relative;
    z-index: 1;
    padding: 3px 3px 0px 3px;
}

.service-t .service-t-single-wrapper::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 0%;
    background-image: linear-gradient(to bottom, #ffdc0e, transparent);
    z-index: -1;
    transition: var(--transition);
}

.service-t .service-t-single-wrapper:hover::before {
    height: 100%;
}

.service-t .service-t-single-wrapper:hover .cta a i {
    -webkit-text-stroke: 1px var(--primary-color);
}

.service-t .service-t-single-wrapper:hover .cta a span {
    transform: translateY(0px);
    color: var(--primary-color);
}

.service-t .service-t__slider-single {
    padding: 40px;
    background-color: var(--tertiary-color);
    position: relative;
}

.service-t .service-t__slider-single .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
    color: var(--white);
}

.service-t .service-t__slider-single .sub-title i {
    transform: rotate(-45deg);
    color: var(--primary-color);
}

.service-t .service-t__slider-single h4 a {
    font-size: 30px;
    font-weight: 700;
}

.service-t .service-t__slider-single ul {
    margin: 30px 0px 40px;
}

.service-t .service-t__slider-single ul li {
    list-style-type: disc;
    margin-bottom: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.service-t .service-t__slider-single ul li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.service-t .service-t__slider-single .cta a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    overflow: hidden;
}

.service-t .service-t__slider-single .cta a i {
    font-size: 36px;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px var(--white);
    transition: var(--transition);
}

.service-t .service-t__slider-single .cta a span {
    color: var(--white);
    font-size: inherit;
    line-height: inherit;
    transition: inherit;
    transform: translateY(200%);
}

.service-t .slide-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    right: 0px;
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: -1;
}

.service-t .slide-group button {
    z-index: 2;
}

/*SERVICES PAGES IMG */
/*----------------------------------------*/
/*  16. ABOUT CSS START
/*----------------------------------------*/
.about__area {
    overflow: hidden;
    background-color: var(--white);
}

.about__area .sec-title {
    max-width: 770px;
    position: relative;
    z-index: 9;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__area .sec-title {
        max-width: 660px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
    .about__area-2 {
        background-position: 0 40%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .about__area-2 {
        background-position: 0 37%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__area-2 {
        background-position: 0 39%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__area-2 {
        background-position: -15% 47%;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-2 {
        background-size: 0;
    }
}

.about__area-2 .sec-title {
    color: var(--white);
}

.about__area-2 .sec-title-wrapper {
    max-width: 770px;
    padding-bottom: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__area-2 .sec-title-wrapper {
        max-width: 600px;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-2 .sec-title-wrapper {
        padding-bottom: 50px;
    }
}

.about__area-2 .sec-text {
    max-width: 440px;
}

@media only screen and (max-width: 767px) {
    .about__area-2 .sec-text {
        padding-bottom: 40px;
    }
}

.about__area-2 .sec-text p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--gray-2);
}

.about__area-2 .sec-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    gap: 215px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__area-2 .sec-text-wrapper {
        gap: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__area-2 .sec-text-wrapper {
        gap: 50px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-2 .sec-text-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 50px;
    }
}

/*.about__area-2 #btn_wrapper,
.about__area-2 .btn_wrapper {
    margin-left: 0;
    margin-right: -40px;
    margin-top: -50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .about__area-2 #btn_wrapper,
    .about__area-2 .btn_wrapper {
        margin-left: auto;
        margin-right: 0;
        margin-top: -20px;
    }
}
*/
.about__area-3 {
    background-image: url(../images/shape/7.png);
    background-repeat: no-repeat;
    background-position: 100% 30%;
    background-color: var(--black-2);
    position: relative;
}

.about__area-3::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: 60%;
    bottom: 0px;
    background-color: var(--black-5);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__area-3::after {
        left: 55%;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-3::after {
        width: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__area-3 .pt-140 {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__area-3 .pt-140 {
        padding-top: 90px;
    }
}

.about__area-3 .sec-title {
    color: var(--white);
    text-transform: uppercase;
    padding-bottom: 40px;
    background-color: var(--black-2);
}

.about__area-3 .sec-sub-title {
    color: var(--white);
    text-transform: uppercase;
    padding-top: 45px;
    background-color: var(--black-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__area-3 .sec-sub-title {
        padding-top: 0;
    }
}

.about__area-3 .sec-text p {
    max-width: 410px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--gray-2);
    padding-bottom: 22px;
}

@media only screen and (max-width: 767px) {
    .about__area-3 .sec-text p {
        padding-bottom: 50px;
    }
}

.about__area-3 .sec-text-wrapper {
    padding-left: 210px;
    padding-top: 45px;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
    .about__area-3 .sec-text-wrapper {
        padding-left: 160px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .about__area-3 .sec-text-wrapper {
        padding-left: 160px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__area-3 .sec-text-wrapper {
        padding-left: 65px;
        padding-top: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__area-3 .sec-text-wrapper {
        padding-left: 0;
        padding-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about__area-3 .sec-text-wrapper {
        padding-left: 0;
        padding-top: 15px;
    }
}

.about__area-8 .about-sub-right {
    color: var(--black-7);
    padding-bottom: 10px;
}

.about__title-wrapper {
    padding-left: 190px;
    padding-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__title-wrapper {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about__title-wrapper {
        padding-left: 0;
    }
}

.about__content {
    padding-top: 65px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__content {
        padding-top: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .about__content {
        padding-top: 50px;
    }
}

.about__content p {
    max-width: 440px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black-3);
    margin-bottom: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__content p {
        max-width: 90%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__content p {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about__content p {
        margin-bottom: 30px;
    }
}

.about__content-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 80px 1.8fr;
    grid-template-columns: 1fr 1.8fr;
    grid-gap: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__content-wrapper {
        grid-gap: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__content-wrapper {
        -ms-grid-columns: 1fr 30px 1.5fr;
        grid-template-columns: 1fr 1.5fr;
        grid-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about__content-wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.about__img img {
    width: 100%;
    overflow: hidden;
}

.about__img-right {
    position: absolute;
    right: 0;
    top: 280px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__img-right {
        position: relative;
        top: 30px;
        right: unset;
    }
}

@media only screen and (max-width: 767px) {
    .about__img-right {
        position: relative;
        top: 30px;
        right: unset;
    }
}

.about__img-right img {
    width: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__img-right img {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__img-right img {
        display: none;
    }
}

.about__img-2 {
    /*max-width: 1720px;*/
    margin: 0 auto;
    overflow: hidden;
    max-height: 800px;
    margin-bottom: 140px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__img-2 {
        margin-bottom: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__img-2 {
        margin-bottom: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .about__img-2 {
        margin-bottom: 0;
    }
}

.about__img-2 img {
    width: 100%;
}

.about__img-3 {
    overflow: hidden;
    position: relative;
    width: calc(100% - 85px);
    height: 770px;
}

.about__img-3 img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 110%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .about__img-3 {
        overflow: hidden;
        position: relative;
        width: calc(100% - 40px);
        height: 660px;
    }

    .about__img-3 img {
        position: absolute;
        bottom: 0;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 120%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__img-3 {
        width: 100%;
        height: unset;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__img-3 {
        width: 100%;
        height: unset;
    }
}

@media only screen and (max-width: 767px) {
    .about__img-3 {
        width: 100%;
        height: unset;
    }
}

.about__img-3 img {
    width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about__img-3 img {
        position: unset;
        height: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about__img-3 img {
        position: unset;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .about__img-3 img {
        position: unset;
        height: auto;
    }
}



.blog-main {
    position: relative;
}

.blog-main .blog-main__sidebar,
.blog-main .blog-main__content {
    position: sticky;
    top: 140px;
}

.blog-main .blog-main__single {
    margin-bottom: 65px;
}

.blog-main .blog-main__single:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.blog-main .blog-main__single .thumb {
    padding: 30px;
    border: 1px solid #414141;
    border-radius: 10px;
}

.blog-main .blog-main__single .thumb .thumb-link {
    position: relative;
}

.blog-main .blog-main__single .thumb .thumb-link a {
    width: 100%;
}

.blog-main .blog-main__single .thumb .thumb-link a img {
    width: 100%;
    min-height: 240px;
}

.blog-main .blog-main__single .thumb .thumb-link .video-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-main .blog-main__single .thumb .thumb-link .video-wrap a {
    width: 104px;
    min-width: 104px;
    height: 104px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: #000;
    font-size: 30px;
}

.blog-main .blog-main__single .video-wrap a {
    position: relative;
    z-index: 1;
}

.blog-main .blog-main__single .video-wrap a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.8;
    z-index: -1;
    animation: wave 3s linear infinite;
}

.blog-main .blog-main__single .video-wrap a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.4;
    z-index: -2;
    animation: wave 6s linear infinite;
    animation-delay: 1s;
}

.blog-main .blog-main__single .meta {
    display: flex;
    align-items: center;
    gap: 24px;
    row-gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.blog-main .blog-main__single .meta__left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.blog-main .blog-main__single .meta__left span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d9d9d9;
}

.blog-main .blog-main__single .meta__left strong {
    color: var(--theme-color);
}

.blog-main .blog-main__single .meta__left p {
    font-size: 14px;
    color: #646464;
}

.blog-main .blog-main__single .meta__right {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.blog-main .blog-main__single .meta__right a {
    width: auto;
    line-height: 20px;
    padding: 6px 10px;
    border-radius: 30px;
    font-weight: 400;
    color: #646464;
    background-color: #eee;
}

.blog-main .blog-main__single .meta__right a:hover {
    background-color: #dff0fa;
}

.blog-main .blog-main__single .content {
    padding: 30px 30px 0px;
}

.blog-main .blog-main__single .content .h4 {
    margin-bottom: 20px;
}

.blog-main .blog-main__single .content a {
    letter-spacing: 0px;
}

.blog-main .blog-main__single .content a:hover {
    color: var(--primary-color);
}

.blog-main .blog-main__single .content .cta {
    margin-top: 30px;
}

.blog-main .blog-main__single .content .cta a {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    background-color: #f5f5f5;
    font-size: 18px;
    color: var(--black);
}

.blog-main .blog-main__single .content .cta a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-main .blog-main__sidebar {
    background-color: #101010;
    padding: 30px;
}

.blog-main .widget {
    margin-bottom: 40px;
}

.blog-main .widget:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.blog-main .widget .widget__head {
    margin-bottom: 30px;
}

.blog-main .widget .widget__head .h5 {
    font-weight: 500;
}

.blog-main .widget .form-group-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #414141;
    background-color: var(--black);
    padding-right: 20px;
}

.blog-main .widget .form-group-input input {
    width: 100%;
    padding: 12px 20px 12px 20px;
    background-color: var(--black);
    color: #fff;
}

.blog-main .widget .form-group-input button {
    font-size: 20px;
    color: #646464;
}

.blog-main .widget .form-group-input button:hover {
    color: var(--primary-color);
}

.blog-main .widget__list li {
    list-style-type: disc;
    margin-bottom: 14px;
}

.blog-main .widget__list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.blog-main .widget__list a {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.blog-main .widget__list a:hover {
    color: var(--primary-color);
}

.blog-main .widget__latest .latest-single {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #414141;
    margin-bottom: 30px;
}

.blog-main .widget__latest .latest-single:nth-last-of-type(1) {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border: 0px solid rgba(0, 0, 0, 0);
}

.blog-main .widget__latest .latest-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
}

.blog-main .widget__latest .latest-thumb a {
    width: 100%;
}

.blog-main .widget__latest .latest-thumb img {
    width: 100%;
}

.blog-main .widget__latest .latest-content p {
    color: #646464;
    line-height: 26px !important;
    margin-bottom: 6px;
}

.blog-main .widget__latest .latest-content a {
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0px;
}

.blog-main .widget__latest .latest-content a:hover {
    color: var(--primary-color);
}

.blog-main .widget__tags ul {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog-main .widget__tags ul a {
    font-size: 14px;
    color: #646464;
    text-transform: capitalize;
}

.blog-main .widget__tags ul a:hover {
    color: var(--primary-color);
}

.blog-main .widget-big a {
    width: 100%;
}

.blog-main .widget-big a img {
    width: 100%;
    min-height: 200px;
}

.blog-main .pagination-wrapper {
    padding-top: 50px;
    margin-top: 65px;
    border-top: 1px solid #414141;
}

.blog-main .pagination {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-main .pagination a {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9d9;
    background-color: #000;
    color: #fff;
    transition: var(--transition);
}

.blog-main .pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.blog-main .pagination .active {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.blog-main .pagination button {
    font-size: 20px;
    color: var(--theme-color);
}

.blog-main .pagination button:hover {
    color: var(--primary-color);
}

.blog-details .bd-thumb img {
    width: 100%;
    min-height: 240px;
}

.blog-details .bd-content {
    padding: 30px;
}

.blog-details .bd-meta {
    margin-bottom: 30px;
}

.blog-details .bd-meta .meta__left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.blog-details .bd-meta .meta__left span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d9d9d9;
}

.blog-details .bd-meta .meta__left strong {
    color: var(--theme-color);
}

.blog-details .bd-meta .meta__left p {
    font-size: 14px;
    color: #646464;
}

.blog-details .bd-content-info .paragraph {
    margin-top: 20px;
    margin-bottom: 50px;
}

.blog-details .bd-group {
    display: flex;
    gap: 16px;
}

.blog-details .bd-group img {
    width: calc(50% - 8px);
    height: 100%;
}

.blog-details .bd-content__alt {
    margin-top: 30px;
}

.blog-details .bd-content__alt ul {
    margin-top: 30px;
}

.blog-details .bd-content__alt li {
    list-style-type: disc;
    margin-bottom: 10px;
}

.blog-details .bd-content__alt li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.blog-details .bd-quote {
    padding: 48px 80px;
    background-color: #1e1e1e;
}

.blog-details .bd-tags {
    padding: 30px 0px;
    border: 1px solid #414141;
    border-left: 0px;
    border-right: 0px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.blog-details .bd-tags .tags-left,
.blog-details .bd-tags .tags-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-details .bd-tags .tags-left .tags-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-details .bd-tags .tags-left .tags-content a {
    font-size: 14px;
    color: #646464;
    padding: 6px 10px;
    border-radius: 30px;
    background-color: #1b1b1b;
}

.blog-details .bd-tags .tags-left .tags-content a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-details .bd-tags .tags-right {
    justify-content: flex-end;
}

.blog-details .bd-tags .tags-right .social {
    gap: 12px;
}

.blog-details .bd-tags .tags-right a {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #414141;
    color: #d9d9d9;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0);
}

.blog-details .bd-tags .tags-right a:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: var(--white);
}

.blog-details .blog-details__pagination a {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color);
    transition: var(--transition);
}

.blog-details .blog-details__pagination a i {
    font-size: 24px;
    transition: none;
}

.blog-details .blog-details__pagination a:hover {
    color: var(--primary-color);
}

.blog-details .blog-details__pagination .single--alt {
    text-align: end;
}

.blog-details .blog-details__pagination .latest-single {
    padding: 25px 30px;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.blog-details .blog-details__pagination .latest-single .latest-thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
}

.blog-details .blog-details__pagination .latest-single .latest-thumb img {
    width: 100%;
}

.blog-details .blog-details__pagination .latest-single .latest-content {
    text-align: start;
}

.blog-details .blog-details__pagination .latest-single .latest-content p {
    color: #646464;
    font-size: 14px;
    line-height: 26px !important;
    margin-bottom: 6px;
}

.blog-details .blog-details__pagination .latest-single .latest-content a {
    color: var(--theme-color);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
}

.blog-details .blog-details__pagination .latest-single .latest-content a:hover {
    color: var(--primary-color);
}

.paragraph p {
    margin-bottom: 30px;
}

.paragraph p:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.comment-form input,
.comment-form textarea {
    background-color: var(--white);
    border-radius: 0px;
}

.comment-form textarea {
    min-height: 200px;
}

.comment-form .cta__group {
    justify-content: flex-start;
    margin-top: 40px;
}

.comment-form .cta__group i {
    transform: rotate(-45deg);
}

.comment-form .cta__group .btn {
    background-color: var(--primary-color);
    color: var(--white);
    text-transform: capitalize;
    border: 1px solid #414141 !important;
    display: flex;
    align-items: center;
    border-radius: 6px;
    gap: 12px;
}

.comment-form .cta__group .btn::before {
    content: none;
}

.comment-form .cta__group .btn:hover {
    color: var(--white);
    border: 1px solid var(--tertiary-color) !important;
}

.comment-form .cta__group .btn i {
    transition: none;
}

.comment-form .form-group-wrapper {
    margin-bottom: 30px;
}

.form-group-single {
    margin-bottom: 20px;
}

.form-group-single label,
.form-group-single p {
    margin-bottom: 10px;
    text-transform: capitalize;
}

.form-group-single input,
.form-group-single textarea {
    padding: 12px 20px;
    background-color: #101010;
    border: 1px solid #414141;
    border-radius: 5px;
    width: 100%;
    text-transform: capitalize;
}

.form-group-single input::-moz-placeholder,
.form-group-single textarea::-moz-placeholder {
    color: #969696;
}

.form-group-single input::placeholder,
.form-group-single textarea::placeholder {
    color: #969696;
}

.form-group-single textarea {
    min-height: 200px;
    max-height: 200px;
}

.form-group-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    row-gap: 20px;
    margin-bottom: 20px;
}

.form-group-wrapper .form-group-single {
    width: calc(50% - 15px);
    margin-bottom: 0px;
}

.audio-player {
    margin-top: 30px;
}

.audio-player audio {
    width: 100%;
}

.thumb-radio {
    padding: 75px 40px;
    background: #131313;
}

.team-m .team-m__single .thumb {
    position: relative;
    overflow: hidden;
}

.team-m .team-m__single .thumb a {
    width: 100%;
}

@keyframes rer {
    0% {
        transform: translateY(-200%);
        display: none;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
        transform: translateY(0px);
    }
}

.team-m .team-m__single .thumb .thumb__content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 30px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: left bottom;
    height: 130px;
    width: 280px;
    overflow-y: clip;
    transition: all 0.4s ease-in-out;
}

.team-m .team-m__single .thumb .thumb__content p {
    color: var(--primary-color);
    margin-top: 8px;
}

.team-m .team-m__single .thumb .thumb__content .info {
    transform: translateY(-200%);
    display: none;
    transition: var(--transition);
    margin-bottom: 20px;
}

.team-m .team-m__single .thumb .thumb__content .info p {
    color: var(--white);
}

.team-m .team-m__single .thumb .thumb__content .social-alt {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 100%;
    bottom: 0px;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, #f90 0%, #cc2500 100%);
    transition: all 0.4s ease-in-out;
    transition-delay: 0s;
    transform: translateY(100%);
}

.team-m .team-m__single .thumb .thumb__content .social-alt a {
    width: auto;
}

.team-m .team-m__single .thumb .thumb__content .social-alt a:hover {
    color: var(--white);
}

.team-m .team-m__single .thumb:hover .thumb__content {
    height: 220px;
}

.team-m .team-m__single .thumb:hover .thumb__content .info {
    transform: translateY(0px);
    display: block;
    animation: rer 0.4s ease-in-out;
}

.team-m .team-m__single .thumb:hover .thumb__content .social-alt {
    transform: translateY(0px);
}

.team-det .team-det__thumb {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-det .team-det__thumb img {
    width: 100%;
    height: 100%;
}

.team-det .team-det__thumb .social-alt {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    right: 70px;
    bottom: 0px;
    width: 60px;
    height: 180px;
    background: linear-gradient(90deg, #f90 0%, #cc2500 100%);
}

.team-det .team-det__thumb .social-alt a {
    width: auto;
}

.team-det .team-det__thumb .social-alt a:hover {
    color: var(--white);
}

.team-det .team-det__content {
    background-color: #1a1a1a;
    padding: 30px;
    height: 100%;
}

.team-det .intro {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #414141;
    padding-bottom: 40px;
}

.team-det .intro-left h4 {
    text-transform: capitalize;
    font-weight: 600;
}

.team-det .intro-left p {
    color: var(--primary-color);
    margin-top: 8px;
}

.team-det .intro-right a {
    display: flex;
    gap: 12px;
}

.team-det .content {
    margin: 40px 0px;
}

.team-det .content h5 {
    margin-bottom: 30px;
}

.team-det .skill-wrap {
    margin: 24px 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-det .skill-bar-single {
    margin-bottom: 10px;
    width: 100%;
    max-width: 340px;
}

.team-det .skill-bar-wrapper {
    margin-top: 10px;
}

.team-det .skill-bar-wrapper span {
    color: #757575;
}

.team-det .skill-bar {
    height: 5px;
    border-radius: 100px;
    background-color: #fff;
    position: relative;
}

.team-det .skill-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: var(--primary-color);
    border-radius: inherit;
}

.team-det .percent-value {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0px;
}

.team-det .team-det__info {
    margin-top: 30px;
    padding: 30px;
    background-color: #1a1a1a;
}

.team-det .team-det__info h4 {
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #414141;
}

.team-det .team-det__info .group {
    margin-bottom: 30px;
}

.team-det .team-det__info .group h5 {
    margin-bottom: 20px;
}

.team-det .team-det__info .group h5 span {
    color: var(--primary-color);
}

.team-det .team-det__info .group:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.portfolio-m .portfolio-m__single {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-m .portfolio-m__single .thumb a {
    width: 100%;
    height: 100%;
}

.portfolio-m .portfolio-m__single .thumb a img {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.portfolio-m .portfolio-m__single .content {
    position: absolute;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    transform: translateY(100%);
    transition: all 0.4s ease-in-out;
}

.portfolio-m .portfolio-m__single .content i {
    font-size: 120px;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--primary-color);
}

.portfolio-m .portfolio-m__single .content a {
    text-transform: capitalize;
}

.portfolio-m .portfolio-m__single .tr {
    text-align: end;
}

.portfolio-m .portfolio-m__single:hover .content {
    transform: translateY(0px);
}

.feedback-s .feedback-s__single {
    padding: 40px;
    background-color: #191919;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0);
}

.feedback-s .feedback-s__single:hover {
    border: 1px solid var(--primary-color);
}

.feedback-s .feedback-s__single:hover .quote i {
    color: var(--primary-color) !important;
}

.feedback-s .content .quote {
    margin-bottom: 20px;
}

.feedback-s .content .quote i {
    font-size: 56px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.feedback-s .content p {
    color: #888;
    text-transform: capitalize;
}

.feedback-s hr {
    margin: 40px 0px;
    background-color: #414141;
    height: 1px;
}

.feedback-s .author {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.feedback-s .author .thumb {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
}

.feedback-s .author p {
    color: var(--primary-color);
    margin-top: 4px;
    text-transform: capitalize;
}

.feedback-s .btn--secondary {
    border: 0px solid rgba(0, 0, 0, 0) !important;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: underline;
    text-transform: capitalize;
    padding: 0px;
}

.feedback-s .btn--secondary::before {
    content: none;
}

.faq .faq__thumb {
    padding-right: 30px;
}

.faq .faq__thumb img {
    width: 100%;
    min-height: 260px;
}

.faq .accordion .accordion-item {
    margin-bottom: 30px;
    background-color: #1a1a1a;
    border-radius: 0px;
    border: 0px;
}

.faq .accordion .accordion-item:last-of-type {
    margin-bottom: 0px;
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0px;
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    color: var(--primary-color);
    content: "";
    font-family: "Font Awesome 6 Pro";
    transform: rotate(0deg);
}

.faq .accordion .accordion-item .accordion-button {
    border-radius: 0px;
    color: #fff;
    position: relative;
    box-shadow: 0px 0px 0px;
    text-transform: capitalize;
    background-color: rgba(0, 0, 0, 0);
}

.faq .accordion .accordion-item .accordion-button::after {
    content: "+";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    background-image: none;
    font-size: 16px;
    color: var(--primary-color);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
}

.faq .accordion .faq-one-active {
    border-top: 3px solid var(--primary-color);
}

.faq .accordion h5 {
    display: flex;
    align-items: center;
    gap: 16px;
    text-transform: uppercase;
}

.faq .accordion h5 button {
    padding: 0px;
    font-size: inherit;
    line-height: 26px;
    font-weight: 500;
    border: none;
    outline: none;
    box-shadow: 0px 0px 0px;
    padding: 30px 30px;
    text-transform: uppercase;
}

.faq .accordion .accordion-body {
    padding: 0px 30px 30px;
    border-top: 0px solid rgba(0, 0, 0, 0);
}

.faq .accordion .accordion-body p {
    color: #fff;
    text-transform: capitalize;
    max-width: 1200px;
}

.contact-m .contact-m__single {
    padding: 40px 65px;
    background-color: #1a1a1a;
    text-align: center;
    height: 100%;
}

.contact-m .thumb {
    margin-bottom: 30px;
}

.contact-m h4 {
    margin-bottom: 30px;
    text-transform: capitalize;
}

.contact-m p {
    margin-bottom: 6px;
}

.contact-m p:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.contact-m p a {
    color: #dadada;
}

.contact-m p a:hover {
    color: var(--primary-color);
}

.contact-m .map-wrapper {
    margin-top: 30px;
}

.contact-m .map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.contact-m .contact__map {
    height: 100%;
}

.contact-m .contact-main__form {
    padding: 60px 40px;
    background-color: #1a1a1a;
}

.contact-m .contact-main__form h3 {
    font-weight: 900;
}

.contact-m .contact-main__form .group-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-m .contact-main__form .group-wrapper .group-input {
    width: calc(50% - 15px);
    margin-bottom: 0px;
}

.contact-m .contact-main__form .group-input {
    width: 100%;
    margin-bottom: 40px;
}

.contact-m .contact-main__form input,
.contact-m .contact-main__form textarea {
    background-color: rgba(0, 0, 0, 0);
    padding: 0px 16px 16px 0px;
    border-bottom: 2px solid #414141;
    width: 100%;
}

.contact-m .contact-main__form input:focus,
.contact-m .contact-main__form textarea:focus {
    border-bottom: 2px solid var(--primary-color);
}

.contact-m .contact-main__form .form-cta {
    margin-top: 40px;
}

.contact-m .contact-main__form .form-cta .btn {
    border: 1px solid #414141;
    color: var(--white);
}

.contact-m .contact-main__form .form-cta .btn:hover {
    border: 1px solid var(--primary-color);
    color: var(--black);
}

.contact-m .contact-main__form .subject {
    width: 100%;
    float: unset;
    border: 0px;
    height: auto;
    line-height: 28px;
    background-color: rgba(0, 0, 0, 0);
    padding: 0px 20px 20px 0px;
    border-bottom: 2px solid #414141;
}

.contact-m .contact-main__form .subject::after {
    position: absolute;
    top: 30%;
    right: 20px;
    width: 10px;
    height: 10px;
    margin-top: -8px;
    border-color: #fff;
}

.contact-m .contact-main__form .subject .list {
    width: 100%;
}

.contact-m .contact-main__form .subject .list .option {
    color: var(--black) !important;
    padding: 10px 30px;
}

.error span {
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}

.error .thumb {
    margin: 60px 0px;
}

.error h2 {
    letter-spacing: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.6;
}

.section__header .title div,
.section__content .title div {
    text-transform: lowercase !important;
    font-weight: 600;
}

.section__header .title div:nth-child(1),
.section__content .title div:nth-child(1) {
    text-transform: capitalize !important;
}

.g-ind {
    position: relative;
    z-index: 99;
}


@media only screen and (min-width: 1921px) {
    .container {
        max-width: 1850px;
    }

    .banner-four .banner-four__title h1 {
        font-size: 150px;
        font-weight: 700;
        line-height: 170px;
    }

    .projects-s .row>* {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .projects-s .row {
        margin-left: -30px !important;
        margin-right: -30px !important;
    }
}

/*@media only screen and (min-width: 1800px) and (max-width: 1920px) {

    .container {
        max-width: 1700px;
        width: 91%;
        margin: 0 auto;
        box-sizing: border-box;


    }
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .container {
        max-width: 1500px;
    }
}

@media only screen and (max-width: 1599px) {
    .container:not(.banner-container) {
        max-width: 93%;
    }
}*/

@media only screen and (max-width: 1399px) {
    .banner .banner__content:not(.banner-top-page) {
        margin-top: 0;
        text-align: left;
        padding-left: 0;
    }

    /*#home .banner__content h1 {
        font-size: 120px;
        font-size: 9.2dvw;
        gap: 24px;
        line-height: 126px;
    }*/

}

@media only screen and (max-width: 1280px) {

    #pages .banner-three .text-stroke-black,
    #pages .banner-three .text-stroke {
        display: block;
        width: 100%;
        text-align: left;
        transform: translateY(10px);
    }


    #pages .banner-three #banner-action {
        &.btn-push {
            /*top: 50%;
            transform: translateY(-50%);
            transition: top 0.3s ease, transform 0.3s ease;
            bottom: auto;
            right: 10dvw;*/
            display: none;
        }

    }

}

@media only screen and (min-width: 1200px) {
    .mobile-menu {
        display: none;
    }
}





.container.container-fullwidth {
    max-width: none;
    width: 100%;
    padding-left: 14px !important;
    padding-right: 14px !important;
}

/*BANNER LINE */
.d-none {
    display: none !important;
}

.banner-line {
    display: flex;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
}

.vertical-effect {
    position: relative;
    width: 25%;
    height: 100%;
    overflow: hidden;
    background-image: url(../images/banner/banner-line.png);
    background-position: top right;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.vertical-effect.raindrop-reverse::before,
.vertical-effect.raindrop::before {
    content: "";
    position: absolute;
    display: block;
    width: 3px;
    animation-direction: normal;
}

.vertical-effect.raindrop::before,
.vertical-effect.raindrop-reverse::before {
    content: "";
    position: absolute;
    right: -2px;
}

.vertical-effect.raindrop::before {
    top: 0;
    animation: raindrop 6s ease-out infinite;
    background: linear-gradient(rgba(225, 225, 225, 0), rgb(225, 225, 225));
}

.vertical-effect.raindrop-reverse::before {
    bottom: 0;
    animation: raindrop-reverse 6s ease-out infinite;
    background: linear-gradient(rgb(225, 225, 225), rgba(225, 225, 225, 0));
}

@keyframes raindrop {
    0% {
        top: -10%;
        opacity: 0;
        height: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        height: 35%;
    }
}

@keyframes raindrop-reverse {
    0% {
        bottom: -10%;
        opacity: 0;
        height: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        height: 35%;
    }
}

.tire-track path {
    stroke: black;
    stroke-width: 2px;
    fill: none;
    stroke-dasharray: 100%;
    /* Définit une longueur fictive pour les traits */
    stroke-dashoffset: 100%;
    /* Les traits sont "cachés" au départ */
    transition: stroke-dashoffset 0.5s ease-in-out;
    /* Optionnel pour une animation pure CSS */
}



.dec_cirlce {
    position: absolute;

    &:not(#circle-home) {
        width: 240px;
        height: 240px;
    }

    &#circle-home {
        width: 350px;
        height: 350px;
        top: 50%;
        transform: translateY(-50%);
        left: 50px;
    }
}


.dec_cirlce span {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: 2;
    background: #f9f9f9;
    margin: -40px 0 0 -40px;
    animation: sharedec_rotate2 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    border: 2px solid rgb(0 0 0 / 5%);
}

.dec_cirlce:not(#circle-home):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0px 0px 0px 86px #000;
    animation: sharedec_rotate 5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    border: 2px dotted rgb(0 0 0 / 5%);
}

.dec_cirlce#circle-home:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    /* Fixe la largeur */
    height: 350px;
    /* Fixe la hauteur */
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0px 0px 0px 86px rgb(115 115 115 / 5%);
    border: 2px dotted rgb(255 255 255 / 34%);
    animation: sharedec_rotate 5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    will-change: transform;
}


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

.line-item {
    float: left;
    width: 20%;
    height: 100%;
    box-sizing: border-box;
    border-right: 1px solid rgba(153, 153, 153, 0.1);
    position: relative;
}

.line-item:first-child:before {
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    width: 4px;
    height: 30px;
    animation: scroll3 8s ease-out infinite;
}

.line-item:last-child:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 4px;
    height: 30px;
    animation: scroll2 6s ease-out infinite;
}

@keyframes scroll3 {
    0% {
        opacity: 1;
        top: 0;
    }

    50% {
        top: 50%;
    }

    100% {
        top: 100%;
        opacity: 0.5;
    }
}

@keyframes scroll2 {
    0% {
        opacity: 1;
        bottom: 0;
    }

    50% {
        bottom: 50%;
    }

    100% {
        bottom: 100%;
        opacity: 0.5;
    }
}

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

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

@keyframes sharedec_rotate2 {
    from {
        transform: rotate(-360deg);
    }

    to {
        transform: rotate(0);
    }
}

.line-item:first-child {
    border-left: 1px solid rgba(153, 153, 153, 0.09);
}


/*------------------------------*/
/* Ellipse Shep */
/*------------------------------*/
.ellipse-top {
    /*background-image: url("../images/bg/ellipse-top.png");*/
    background-image: none;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
}

.ellipse-bottom {
    /*background-image: url("../images/bg/ellipse-bottom.png");*/
    background-image: none;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

/*===============================================*/
/* Responsive CSS */
/*===============================================*/
@media (max-width: 1399px) {
    .about-img .about-logo {
        left: 30px;
        top: 30px;
    }

    .about-details {
        padding-top: 30px;
    }

    .about-details .list-wrapper {
        margin-left: 125px;
    }

    .rated-reviews-2 {
        padding-right: 0;
    }
}

@media (max-width: 1199px) {
    .about-details .list-wrapper {
        margin-left: 0;
    }

    .our-process .list-wrapper .process-list {
        gap: 25px;
    }

    .our-process .list-wrapper .process-list li {
        width: 100%;
    }
}

@media (max-width: 991px) {

    /* FAQ White Box */
    .accordion-bg-box {
        padding: 80px;
    }

    /* Video BG Jarallax */
    .video-bg-jarallax {
        height: 470px;
    }

    /* Map Iframe */
    .map {
        height: 400px;
    }

    /* Workspace Filter : Workspace Page  */
    .workspaces-filter-area {
        display: flex;
        gap: 30px;
        margin-bottom: 30px;
    }

    .workspaces-filter-area .sidebar-btn {
        flex: none;
        margin-bottom: 0;
    }

    .workspaces-filter-area .workspaces-filter {
        width: 100%;
        margin-bottom: 0;
    }

    .workspaces-filter-area .workspaces-filter .workspaces-sorting .nice-select {
        line-height: 24px;
    }

    /* Error 404 */
    .error-section .error-content .error-main-title .error-text {
        font-size: 300px;
        line-height: 320px;
    }

    .error-section .error-content .error-main-title .bg-text-stroke {
        font-size: 300px;
        line-height: 320px;
    }

    .error-section .error-content .error-main-title .smile-icon {
        top: 60px;
        left: 50%;
        width: 190px;
        height: 190px;
    }

    /* Coming Soon */
    .coming-soon-title {
        font-size: 50px;
    }

    /* Home 03 */
    .events-tab-wrapper {
        margin-top: 0;
    }

    .event-tabs {
        justify-content: flex-start;
        margin-bottom: 30px;
    }

    .event-box {
        padding: 40px 30px;
    }

    .our-process .list-wrapper .process-list {
        margin-top: 30px;
    }

    .our-process .list-wrapper .process-list li {
        width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 30px;
    }

    .marquee-relative .marquee-absolute {
        position: relative;
        bottom: 15px;
    }

    /* FAQ White Box */
    .accordion-bg-box {
        padding: 60px;
    }

    /* Video BG Jarallax */
    .video-bg-jarallax {
        height: 350px;
    }

    /* Map Iframe */
    .map {
        height: 300px;
    }

    /* Workspace Filter : Workspace Page  */
    .workspaces-filter-area {
        flex-direction: column;
        gap: 20px;
    }

    /* Error 404 */
    .error-section .error-content .error-main-title .error-text {
        font-size: 140px;
        line-height: 160px;
    }

    .error-section .error-content .error-main-title .bg-text-stroke {
        font-size: 140px;
        line-height: 160px;
        margin-left: 2px;
        margin-top: 8px;
    }

    .error-section .error-content .error-main-title .smile-icon {
        top: 32px;
        width: 90px;
        height: 90px;
    }

    /* Coming Soon */
    .coming-soon-title {
        font-size: 40px;
    }

    .inner-content {
        gap: 35px;
    }

    .about-details {
        height: auto;
    }

    .event-tabs .nav-link.btn {
        padding: 10px;
        font-size: 20px;
        margin-left: 6px;
        line-height: 28px;
    }

    .event-tabs .nav-link.btn:after {
        left: -6px;
        top: -6px;
    }

    .event-box {
        padding: 30px;
    }

    .event-box .event-schedule {
        margin-bottom: 30px;
    }

    .event-box .event-schedule:after {
        display: none;
    }

    .event-box .event-schedule h5 {
        margin-bottom: 10px;
    }

    .event-box .event-details .inner-event h6 {
        color: #d4d6d7;
        margin-bottom: 14px;
    }

    .rotate-images {
        margin-top: 30px;
    }

    .rotate-images .rotate-img img {
        width: 150px;
    }
}

@media (max-width: 575px) {

    /* Video BG Jarallax */
    .video-bg-jarallax {
        height: 300px;
    }

    /* Map Iframe */
    .map {
        height: 200px;
    }

    /* Workspace Filter : Workspace Page  */
    /* Error 404 */
    .error-section .error-content .error-title {
        font-size: 130px;
        line-height: 150px;
    }

    .error-section .error-content .smile-icon {
        top: 30px;
        left: 50%;
        width: 80px;
        height: 80px;
        position: absolute;
        transform: translateX(-50%);
    }

    .about-details {
        padding-top: 0;
        margin-bottom: 30px;
        height: auto;
    }

    .about-right {
        height: auto;
        gap: 15px;
    }

    .event-box .event-schedule {
        margin-bottom: 25px;
    }

    .event-box .event-schedule h5 {
        margin-bottom: 5px;
    }

    .event-box .event-details {
        flex-wrap: wrap;
        gap: 20px;
    }

    .our-process .list-wrapper .process-list li {
        width: 100%;
    }
}

@media (max-width: 479px) {

    /* Workspace Filter : Workspace Page  */
    .workspaces-filter {
        flex-direction: column;
        align-items: inherit;
        padding: 0;
        gap: 15px;
    }

    .about-details {
        gap: 15px;
    }

    .event-tabs {
        margin-bottom: 20px;
    }

    .event-tabs .nav-link.btn {
        padding: 10px 5px;
        font-size: 16px;
        margin-left: 5px;
        line-height: 24px;
    }

    .event-tabs .nav-link.btn:after {
        left: -5px;
        top: -5px;
    }

    .event-box {
        padding: 30px 15px;
    }
}

/*------------------------------*/
/* Blog Standard */
/*------------------------------*/
.blog-standard {
    display: flex;
    gap: 60px;
    flex-direction: column;
}



.format-standard .blog-post-img {
    overflow: hidden;
}

.format-standard .blog-post-img img {
    border-radius: 10px;

    width: 100%;
    height: auto;
    object-fit: cover;
}

.format-standard .blog-post-content {
    margin-top: 40px;
}

.format-standard .blog-post-content .img-fluid.blog-top {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 355px;
}

.format-standard .post-content-header {
    margin-bottom: 20px;
}

.format-standard .post-content-header .post-meta ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    gap: 15px;
}

.format-standard .post-content-header .post-meta ul li {
    color: #d4d6d7;
    font-size: 16px;
    text-transform: uppercase;
}

.format-standard .post-content-header .post-meta ul li a:hover,
.format-standard .post-content-header .post-meta ul li a:focus {
    color: var(--primary-color);
}

.format-standard .post-content-header .post-title {
    margin-bottom: 0;
    margin-top: 10px;
}

.format-standard .post-content-header .post-title a:hover,
.format-standard .post-content-header .post-title a:focus {
    color: var(--primary-color);
}

.format-standard .post-content-body p {
    margin-bottom: 0;
}

.format-standard .post-content-body p+p {
    margin-top: 15px;
}

.format-standard .post-content-footer {
    margin-top: 30px;
}

.format-standard .post-content-footer .social-icon {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    gap: 15px;
}

.format-standard .post-content-footer .social-icon li {
    position: relative;
    font-size: 20px;
    color: #ffffff;
}

.format-standard .post-content-footer .social-icon li a {
    color: #ffffff;
}

.format-standard .post-content-footer .social-icon li a:hover {
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.format-standard .post-content-footer .social-icon li.title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.format-standard .post-content-footer .social-icon li.title:after {
    content: "";
    background: #ffffff;
    width: 25px;
    height: 2px;
    position: relative;
    top: 1px;
}

/*------------------------------*/
/* Pagination */
/*------------------------------*/
.page-pagination .pagination {
    gap: 10px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.page-pagination .pagination li a {
    width: 70px;
    height: 70px;
    font-size: 20px;
    color: #d4d6d7;
}

.page-pagination .pagination li a:before {
    z-index: -1;
}

.page-pagination .pagination li a:hover {
    color: #ffffff;
}

.page-pagination .pagination li.active a {
    color: #ffffff;
    border-color: var(--primary-color);
}

.page-pagination .pagination li.active a:before {
    opacity: 1;
    transform: scale(1);
}

/*------------------------------*/
/* Mobile Sidebar */
/*------------------------------*/
.sidebar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #ffffff;
    padding: 10px 25px;
    margin-bottom: 25px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    &:hover {
        color: #fff;
        border: 1px solid var(--primary-color);
        background: var(--primary-color);
    }
}

.sidebar-btn i {
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-btn:focus {
    color: #ffffff;
}

.mobile-offcanvas .header-default {
    z-index: 0;
    opacity: 0;
    transition: all 0.1s ease-in-out;
}

.offcanvas-sidebar .offcanvas-header {
    padding: 25px;
    background-color: var(--primary-color);

}

/*------------------------------*/
/* Author Info */
/*------------------------------*/
.blog-author-info {
    display: flex;
    gap: 50px;
}

.blog-author-info .author-image {
    flex: 0 0 180px;
}

/*------------------------------*/
/* Comment Area */
/*------------------------------*/
.comments {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.comments .comment-list .comment-body {
    display: flex;
    gap: 30px;
    padding: 30px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.comments .comment-list .comment-body .comment-author {
    flex: 0 0 100px;
}

.comments .comment-list .comment-body .comment-content .author-name {
    margin-bottom: 7px;
}

.comments .comment-list .comment-body .comment-content .comment-text p {
    margin-bottom: 0;
}

.comments .comment-list .comment-body .comment-content .comment-reply {
    margin-top: 10px;
}

.comments .comment-list .comment-body .comment-content .comment-reply a {
    font-weight: 500;
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comments .comment-list .children {
    padding: 0;
    margin: 0;
    padding-left: 110px;
    list-style-type: none;
}

.comments>.comment-list:last-child>.comment-body:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/*Blog Single*/
.blog-single .post-content-header .blog-single-info {
    display: flex;
    margin: 30px 0px;
    align-items: center;
    justify-content: space-between;
}

.blog-single .post-content-header .blog-single-info .blog-author {
    display: flex;
    align-items: center;
}

.blog-single .post-content-header .blog-single-info .blog-author img {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    margin-right: 20px;
    border-radius: 50px;
}

.blog-single .post-content-header .blog-single-info .blog-author .blog-info .author-name {
    margin-bottom: 8px;
}

.blog-single .post-content-header .blog-single-info .blog-author .blog-info p {
    margin-bottom: 0px;
}

.blog-single .post-content-header .blog-single-info .social-icon {
    display: flex;
    align-items: center;
}

.blog-single .post-content-header .blog-single-info .social-icon ul li {
    margin: 0 10px;
}

.blog-single .post-content-header .blog-single-info .social-icon ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 39px;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: normal;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 80%;
}

.blog-single .post-content-header .blog-single-info .social-icon ul li a:after {
    content: "";
    position: absolute;
    left: -4px;
    bottom: -4px;
    width: 100%;
    height: 100%;
    z-index: -2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 80%;
    transition: all 0.3s ease-in-out;
}

.blog-single .post-content-header .blog-single-info .social-icon ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    border-radius: 80%;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
    background: linear-gradient(150deg,
            var(--primary-color) 2%,
            var(--primary-color) 56%,
            var(--primary-color) 100%);
}

.blog-single .post-content-header .blog-single-info .social-icon ul li a:hover:after {
    left: 0px;
    bottom: 0px;
    opacity: 0;
}

.blog-single .post-content-header .blog-single-info .social-icon ul li a:hover:before {
    opacity: 1;
}

/*****************************
    Blog Fancy
  *****************************/
.blog-wrapper.grid-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 0;
}

.blog-item.blog-style-3 {
    position: relative;
    padding: 40px 0;
    background-color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease-in-out;
}

.blog-item.blog-style-3 .blog-year {
    margin-bottom: 20px;
    line-height: 28px;
}

.blog-item.blog-style-3 .blog-title {
    margin-bottom: 25px;
}

.blog-item.blog-style-3 .blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-item.blog-style-3 .blog-footer .blog-catagory {
    font-weight: 600;
    text-transform: uppercase;
    line-height: 28px;
}

.blog-item.blog-style-3 .blog-action {
    z-index: 9;
    transition: all 0.3s ease-in-out;
}

.blog-item.blog-style-3 .gsap-img-animation {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 190px;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-item.blog-style-3:hover {
    border-color: var(--primary-color);
}



/*=====================================================*/
/* Responsive CSS */
/*=====================================================*/
@media (max-width: 1199px) {
    .blog-wrapper.grid-wrapper {
        grid-column-gap: 50px;
    }
}

@media (max-width: 991px) {

    /* Mobile Sidebar */
    .offcanvas-sidebar .offcanvas-body {
        padding: 35px;
        padding-top: 0;
    }

    .blog-wrapper .blog-item.blog-style-3 {
        padding: 30px 0;
    }

    .blog-wrapper .blog-item.blog-style-3 .blog-year {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .blog-single .blog-post-content {
        padding-bottom: 60px;
    }

    .blog-single .blog-post-content,
    .blog-single .blog-post-author-info,
    .blog-single .blog-post-comments {
        margin-bottom: 60px;
    }

    /* Pagination */
    .page-pagination .pagination {
        gap: 8px;
    }

    .page-pagination .pagination li a {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .page-pagination .pagination li a svg {
        width: 17px;
        height: 16px;
    }

    /* Post Content Footer */
    .blog-single .post-content-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Comment Area */
    .comments .comment-list .children {
        padding-left: 80px;
    }

    .comments .comment-list .comment-body .comment-author {
        flex: 0 0 80px;
    }

    .blog-wrapper .blog-item.blog-style-3 .gsap-img-animation {
        position: absolute;
        left: auto;
        right: 0;
        bottom: 30px;
        top: auto;
        transform: inherit !important;
        z-index: -1;
        visibility: hidden;
        opacity: 0;
        transition: all 0.1s ease-in-out;
        max-width: 150px;
    }

    .blog-wrapper .blog-item.blog-style-3:hover .item-inner {
        padding-right: 170px;
    }

    .blog-wrapper .blog-item.blog-style-3:hover .gsap-img-animation {
        visibility: visible;
        opacity: 1;
        z-index: 1;
    }
}

@media (max-width: 575px) {
    .blog-single .post-content-header .blog-single-info {
        flex-wrap: wrap;
    }

    .blog-single .post-content-header .blog-single-info .blog-author {
        margin-bottom: 20px;
    }

    .blog-single .post-content-header .blog-single-info .social-icon ul li {
        margin: 0 5px;
    }

    /* Author Info */
    .blog-post-author-info {
        flex-direction: column;
        gap: 20px;
    }

    .blog-post-author-info .author-image {
        flex: 0 0 180px;
        width: 180px;
    }

    /* Comment Area */
    .comments .comment-list .children {
        padding-left: 50px;
    }

    .comments .comment-list .comment-body {
        flex-direction: column;
        gap: 20px;
    }

    .comments .comment-list .comment-body .comment-author {
        flex: 0 0 80px;
        width: 80px;
    }

    .blog-wrapper .blog-item.blog-style-3 .gsap-img-animation {
        display: none;
    }

    .blog-wrapper .blog-item.blog-style-3 .blog-title {
        margin-bottom: 20px;
    }

    .blog-wrapper .blog-item.blog-style-3:hover .item-inner {
        padding-right: 0;
    }
}


/*************************
         Widget
  *************************/
.sidebar .widget:not(:last-child) {
    margin-bottom: 60px;
}

/*Sidebar*/
.sidebar .widget {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget .widget-title {
    margin-bottom: 40px;
    line-height: 34px;
    color: var(--primary-color);
}

.mobile-sidebar {
    background-color: #000;
}

/*-----------------------*/
/* Widget Search */
/*-----------------------*/
.widget-search .search {
    position: relative;
    width: 100%;
}

.widget-search .search .form-control {
    padding: 20px 40px 20px 0px;
    border: none;
    box-shadow: none;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0px;
    font-size: 24px;
    line-height: 24px;
    color: #ffffff;
}

.widget-search .search .form-control:focus {
    border-color: var(--primary-color);
}

.widget-search .search .search-btn {
    position: absolute;
    right: 0;
    top: 50%;
    padding: 0;
    font-size: 24px;
    border: none;
    transform: translateY(-50%);
    background: linear-gradient(130deg,
            var(--primary-color) 0%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.widget-search .search input::placeholder {
    color: #d4d6d7;
}

/*-----------------------*/
/* Widget Recent Post */
/*-----------------------*/
.widget-recent-posts .recent-posts {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;

    & .post-date {
        text-transform: uppercase;
        font-size: 14px;
        color: var(--primary-color);
    }
}

.widget-recent-posts .recent-posts .posts-img {
    width: 80px;
    flex: 0 0 80px;
}

.widget-recent-posts .recent-posts .post-info .post-title {
    color: #ffffff;
    font-family: var(--epilogue);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget-recent-posts .recent-posts .post-info .post-title:hover {
    color: var(--primary-color);
}

.widget-recent-posts .recent-posts:last-child {
    margin-bottom: 0px;
}

/*-----------------------*/
/* Widget Categories */
/*-----------------------*/
.widget-categories .categories-list {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    list-style: none;
    flex-direction: column;
}

.widget-categories .categories-list li a {
    font-size: 18px;
    line-height: normal;
    color: #d4d6d7;
    transition: 0.5s;
    display: block;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-categories .categories-list li a:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.widget-categories .categories-list li:last-child a {
    border: none;
    padding-bottom: 0px;
}

/*-----------------------*/
/* Widget Tags */
/*-----------------------*/
.post-tag .tag-list,
.tags-widget .tag-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.post-tag .tag-list li a,
.tags-widget .tag-list li a {
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: normal;
    padding: 6px 17px;
    background: transparent;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.post-tag .tag-list li a:hover,
.tags-widget .tag-list li a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.post-tag .tag-list li:last-child,
.tags-widget .tag-list li:last-child {
    margin-bottom: 0px;
}

/*-----------------------*/
/* Widget Menu */
/*-----------------------*/
.widget-menu .widget-title {
    margin-bottom: 20px;
}

.widget-menu ul {
    display: flex;
    gap: 10px 15px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.widget-menu ul li {
    width: 100%;
}

.widget-menu ul li a {
    color: #d4d6d7;
}

.widget-menu ul li a:hover {
    color: var(--primary-color);
}

.widget-menu ul.list-col-2 li {
    width: calc(50% - 8px);
}

.widget-menu ul.list-col-3 li {
    width: calc(33.3333% - 10px);
}

/*-----------------------*/
/* Widget Socail */
/*-----------------------*/
.widget-socail ul.socail-icon {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.widget-socail ul.socail-icon li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 39px;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    color: #000;
    font-weight: normal;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 80%;
    z-index: 1;
}

.widget-socail ul.socail-icon li a:after {
    content: "";
    position: absolute;
    left: -4px;
    bottom: -4px;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 80%;
    transition: all 0.3s ease-in-out;
}

.widget-socail ul.socail-icon li a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    border-radius: 80%;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
    /*background: linear-gradient(
      150deg,
      var(--primary-color) 2%,
      var(--primary-color) 56%,
      var(--primary-color) 100%
    );*/
    background: linear-gradient(150deg, #000000 2%, #000000 56%, #000000 100%);
}

.widget-socail ul.socail-icon li a:hover {
    color: #ffffff;
}

.widget-socail ul.socail-icon li a:hover:after {
    left: 0px;
    bottom: 0px;
    opacity: 0;
}

.widget-socail ul.socail-icon li a:hover:before {
    opacity: 1;
}

.widget-socail:hover .team-social {
    left: 0;
}

/*-----------------------*/
/* Widget Share */
/*-----------------------*/
.widget-share .share-list {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    list-style-type: none;
}

.widget-share .share-list li a {
    width: 60px;
    height: 60px;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.widget-share .share-list li a:hover {
    color: #ffffff;
}

.widget-share .share-list li a:before {
    z-index: -1;
}

/*-----------------------*/
/* Widget Info */
/*-----------------------*/
.widget-info .title {
    font-size: 22px;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: 0px;
}

.widget-info .number {
    font-size: 24px;
    line-height: 22px;
    font-family: 'Oswald', sans-serif;
    color: #000;
    padding-right: 15px;
}

.widget-info .number:hover {
    color: var(--color-white);
}

/*-----------------------*/
/* Widget Infobox */
/*-----------------------*/
.widget.widget-infobox {
    display: flex;
    gap: 25px;
}

.widget.widget-infobox .infobox-icon {
    color: #d04d9b;
    font-size: 40px;
    min-width: 51px;
    text-align: center;
    line-height: 50px;
}

.widget.widget-infobox .infobox-content {
    color: #ffffff;
}

.widget.widget-infobox .infobox-content .title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
}

.widget.widget-infobox .infobox-content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95em;
}

.widget.widget-infobox .infobox-content p+p {
    margin-top: 5px;
}

/*-----------------------*/
/* Widget Newsletter */
/*-----------------------*/
.widget-newsletter p {
    margin-bottom: 20px;
    color: #d4d6d7;
}

.widget-newsletter .newsletter-form {
    display: flex;
    gap: 15px;
    position: relative;
}

.widget-newsletter .newsletter-form .form-control {
    margin: 0;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.widget-newsletter .newsletter-form .form-control:focus {
    border-color: var(--primary-color);
}

.widget-newsletter .newsletter-form .form-control::-ms-input-placeholder {
    color: #d4d6d7;
}

.widget-newsletter .newsletter-form .form-control::placeholder {
    color: #d4d6d7;
}

.widget-newsletter .newsletter-form .subscribe-btn {
    position: absolute;
    right: 0;
    top: -5px;
    bottom: 0;
    font-size: 20px;
    color: var(--primary-color);
    width: 80px;
    background: none;
    border: none;
    display: block;
}

/*-----------------------*/
/* Essential Amenities */
/*-----------------------*/
.widget-amenities .amenities-list {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.widget-amenities .amenities-list .form-check {
    margin: 0;
}

/*-----------------------*/
/* Address Info List */
/*-----------------------*/
.widget ul.address-info-list {
    list-style: none;
    padding: 0;
}

.widget ul.address-info-list li {
    margin-bottom: 20px;
}

.widget ul.address-info-list li h6 {
    color: #d4d6d7;
    margin-bottom: 0px;
}

.widget ul.address-info-list li h6 img {
    margin-right: 10px;
}

.widget ul.address-info-list li:last-child {
    margin-bottom: 0px;
}

.widget ul.address-info-list.address-info-2 {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.widget ul.address-info-list.address-info-2 li {
    margin-bottom: 0;
    width: 100%;
}

/*-----------------------*/
/* Widget Address Info */
/*-----------------------*/
.widget-address-info ul.address-info-list {
    margin-bottom: 0px;
}

.widget-address-info ul.address-info-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.widget-address-info ul.address-info-list li .icon {
    margin-top: 6px;
    flex-shrink: 0;
}

.widget-address-info ul.address-info-list li .info {
    font-weight: 400;
    line-height: 28px;
    color: #000;
}

.widget-address-info ul.address-info-list li .info span {
    display: block;
    font-weight: 600;
    color: #000;
}

@media (max-width: 1199px) {
    .widget ul.address-info-list.address-info-2 {
        margin-bottom: 50px;
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .widget ul.address-info-list.address-info-2 {
        margin-bottom: 50px;
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .sidebar .widget:not(:last-child) {
        margin-bottom: 50px;
    }

    /*-----------------------*/
    /* Widget Socail */
    /*-----------------------*/
    .widget-socail .socail-icon {
        flex-direction: inherit;
    }

    .widget-socail .socail-icon li {
        flex: 2;
        border-bottom: none;
        border-right: 1px solid rgba(0, 0, 0, 0.15);
    }

    .widget-socail .socail-icon li a {
        padding: 30px 0;
        font-size: 0;
    }

    .widget-socail .socail-icon li a i {
        opacity: 1;
        font-size: 35px;
        position: relative;
        visibility: visible;
        color: #000;
    }

    .widget-socail .socail-icon li a:hover i,
    .widget-socail .socail-icon li a:focus i {
        color: #ffffff;
    }

    .widget-socail .socail-icon li:last-child {
        border-right: none;
    }

    .widget-socail.social-horizontal .socail-icon li {
        padding: 30px 0;
        font-size: 0;
    }

    .widget-socail.social-horizontal .socail-icon li i {
        opacity: 1;
        font-size: 35px;
        position: relative;
        visibility: visible;
    }

    .sidebar .widget {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .sidebar .widget:not(:last-child) {
        margin-bottom: 40px;
    }

    /*-----------------------*/
    /* Recent Post */
    /*-----------------------*/
    .widget-recent-posts .recent-posts .posts-img {
        width: 70px;
        flex: 0 0 70px;
    }

    .widget-recent-posts .recent-posts .post-info .post-title {
        font-size: 16px;
    }

    /*-----------------------*/
    /* Widget Socail */
    /*-----------------------*/
    .widget-socail .socail-icon li a i,
    .widget-socail.social-horizontal .socail-icon li i {
        font-size: 26px;
    }

    .widget ul.address-info-list.address-info-2 {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
}

/*TEST*/
.video-background {
    position: relative;
    /* ou pas de position si vous voulez qu'elle reste dans le flux */
    width: 100%;
    height: auto;
    z-index: 1;
    /* Assurez-vous que la vidéo est au-dessus des autres éléments si nécessaire */
}

.section-marquee {
    position: relative;
    z-index: 2;
    /* Assurez-vous que cette section est au-dessus de la vidéo */

    /*& .row {
        margin-right: 17% !important;
    }*/
}




.video-bg-jarallax {
    position: relative;
    width: 100%;
    /*height: 100dvh; */
    min-height: 100dvh;
    overflow: hidden;
}

.video-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    clip-path: circle(0% at center);
    z-index: 2;
}

.video-background {

    object-fit: cover;
    z-index: 1;
    width: 100%;
    height: auto;

    -webkit-clip-path: circle(0% at 50% 50%);
    clip-path: circle(0% at 50% 50%);

    transition: clip-path 0.4s ease;
}





/*Template Colors*/
.color-bg,
.element-item:before,
.pr-button-dot:before,
.scroller,
.hero-slider-controls-top,
.nav-button span,
.fs-slider_align_title:before,
.hero-slider-pag .swiper-pagination-bullet:before,
.nav-container:after,
.column-footer,
.section-title:before,
.tc-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.tc-pagination .swiper-pagination-bullet:hover,
.pdcw_list li:before,
.team-skills_item:before,
.team-skills_item:after,
.half-bg-container:before,
.half-bg-container:after,
.footer-social li a:before,
.main-footer:after,
.leaflet-touch .leaflet-bar a,
.view_fm:after,
.block_img:before,
.single-btn:hover,
.post-item_media a:after,
.pagination a.current-page,
.pagination a:hover,
.pr-subtitle:after,
.box-media-zoom,
.ss-slider-pagination .swiper-pagination-bullet,
.text-block:before,
.impulse-wrap:before,
.impulse-wrap:after,
.overlay-dec-dot.overlay-dec-vis:before,
.overlay-dec-dot.overlay-dec-vis:after,
.grid-media-zoom,
.fixed-filters .gallery-filters a:before,
.hero-showc ase-wrap:before,
.hero-sho wcase-wrap:after,
.sdl_top:before,
.sdl_right:before,
.sdl_left:before,
.grid-det:before,
.share-icon,
.list-item_category a:before,
.cen-slider-pagination_wrap .swiper-pagination-bullet,
.gallery-fw_wrap:before,
.gallery-fw_wrap:after,
.hs_counter:before,
.accordion a.toggle span,
.project-details:before,
.footer-grid:before,
.footer-grid:after,
.video-row:after,
.hero-marquee:after,
.fs-slider_align_title.fsat_single h2:before,
.half-carousel-content h3:before,
.block_img:after,
.footer-dec:before,
.footer-dec:after,
.fwc_dec:before,
.hero-carousel_pagination .swiper-pagination-bullet,
.grid-carousel-title h3:before,
.carousle-item-number,
.start-btn_sin:before,
.ft_dec:before,
.ft_dec:after,
.ft_dec,
.irs-slider:before,
.cart-item-footer:after,
.line-item:before,
.hidden_wrap_btn:before,
.hidden_wrap_btn:after,
.lg-actions .lg-next,
.lg-actions .lg-prev {
    background: #ffdc0e;
}

.pr_btn i,
.social-container a,
.page-scroll-nav li a.act-sec.hero-slider-video .image-popup,
.start-btn_sin i,
.hsc i,
.hero_num,
.h_a-dot:first-child,
.nav-title span,
.submen-dec:before,
.sliding-menu a:hover,
.sliding-menu a.act-link,
.nav-button:before,
.copy-right span,
.about-img-hotifer h4 span,
.about-img-hotifer h5,
.inline-facts-wrap h6,
.list-item-header span,
.testi-item:after,
.tc-button,
.dark-bg .section-number,
.team-header h6,
.price-content span,
.team-social li a:hover,
.half-bg_title:before,
.team-header:before,
.half-bg-container_dec:before,
.contacts_social_container li a:hover,
.leaflet-container a.leaflet-popup-close-button,
.leaflet-control-attribution a,
.act-cf:hover,
.close-contact-form:hover,
.blog-search-wrap button,
.post-opt li i,
.blog-btn:hover,
.blog-title-opt li a:hover,
.content-nav li a i,
.post-title_dec i,
.pr-tags span,
.ss-slider-cont,
.error-wrap h2 strong,
.grid-det_category a,
.gallery-filters a:hover,
.close-share-btn,
.grid-det_link:after,
.fixed-inline-filter .gallery-filters a.gallery-filter-active,
.pbw_animicon,
.projects-list_item h3 span,
.order-wrap h4,
.boxed-filters-wrap .gallery-filters a.gallery-filter-active,
.project-details ul li,
.project-details ul li a,
.promo-video-btn,
.page-scroll-nav li a.act-sec,
.play-pause_slider,
.hcw_btn,
.fpc_btn i,
.half-carousel-content h3 a:hover,
.dec-icon,
.about-img-hotifer:before,
.cbc_btn,
.hcp_wrap .total_s,
.hcp_wrap .current_s_wrap,
.projects-list_category a,
.projects-list_item_dec,
.shop-item_content h3:hover a,
.add_cart i,
.show-cart_count,
.cart-tooltip,
.nice-select:after,
.shop-opt_btn i,
.search-submit2,
.srw_btn:hover,
.irs-max,
.irs-min,
.tag_filter-widget li a,
.pr-remove,
.fixed-filters_title:before,
#message p strong {
    color: #ffdc0e;
}

.half-hero-wrap_link,
.testi-link,
.chart-dec span,
.custom-form textarea:focus,
.custom-form input[type="text"]:focus,
blockquote,
.share_btn-icon,
.dir-arrow {
    border-color: #ffdc0e;
}



#home .inline-facts-container:after,
#home .section-dec,
#home .share-container:before,
#home .reval-image:before,
#home .promo-video-btn:after,
#home .bg-reval_wrap:before,
#home .dec_cirlce span,
#home .loading-spinner:before {
    border-top-color: #ffdc0e !important;
    border-bottom-color: #ffdc0e !important;
}

#home .grid-carousel-title:before,
#home .grid-det_link:after,
#home .dec_cirlce:before,
#home .loading-spinner:after {
    border-left-color: #fff !important;
    border-right-color: #fff !important;
}

/*.section-welcome .left-welcome {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%); 
    padding-right: 50px;
    width: 50%;
    overflow: visible;
    left: 0;
}

.section-welcome .right-welcome {
    float: right;
    width: 50%;
}*/




.revealPics {
    flex: 0 0 40%;
    max-height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.revealPics img {
    width: 100%;
    height: 100%;
    max-height: 80dvh;
    object-fit: cover;
}

.section-welcome .skill-bar:not(.progress-animated) {
    width: 0%;
}

.section-welcome .container-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;

    .text {
        font-size: 3dvw;
        letter-spacing: 0.1em;
        line-height: 1.7em;
        margin: 0;
        font-weight: 700;
        width: 100%;
        color: rgb(182, 182, 182, 0.2);
        background: linear-gradient(to right, #ffffff, #ffffff) no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        background-clip: text;
        background-size: 0%;
        transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;
        border-bottom: 1px solid rgb(182, 182, 182, 0.2);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        position: relative;

        &:last-child {
            border-bottom: none;
            margin-bottom: 0.2rem;
        }
    }

    span {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        color: #000;
        clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
        transform-origin: center;
        transition: all cubic-bezier(.1, .5, .5, 1) 0.4s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        font-weight: 700;
    }

    .text:hover>span {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .text.hover-trigger>span {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    a {
        text-decoration: none;
        color: inherit;
    }
}

.half-bg-container {
    position: relative;
    float: left;
    width: 100%;
    padding: 90px 0px;
    z-index: 9;
}

.half-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    z-index: 10;
    border-right: 1px solid rgb(255 255 255 / 18%);
    border-top: 1px solid rgb(255 255 255 / 18%);
    border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.half-bg_title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 26px;
    line-height: 46px;
    text-align: left;
    font-family: var(--epilogue);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 10px;
    z-index: 10;
}

.half-bg_title:before {
    font-family: Font Awesome\ 5 Pro;
    content: "\f324";
    position: absolute;
    bottom: -61px;
    left: 0;
    font-size: 18px;
}

.inline-facts-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.inline-facts-container:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 100px rgb(115 115 115 / 5%);
    border: 2px dotted rgb(255 255 255 / 34%);
    animation: rot-spin 3.5s infinite linear;
    width: 40dvh;
    height: 40dvh;
    border-radius: 50%;
    margin: auto;
    left: 5dvw;
}*/

@keyframes rot-spin {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*@keyframes rot-spin {
    0% {
        transform: rotate(0deg) scale(.6);
    }

    50% {
        transform: rotate(180deg) scale(1.0);
        opacity: .4
    }

    100% {
        transform: rotate(360deg) scale(.6);
    }
}*/


.chart-dec {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
}

.chart-dec:before,
.chart-dec:after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 1px;
    height: 150px;
    left: 50%;
    top: 50%;
    margin-top: -75px;
    background: rgb(255 255 255 / 16%);
}

.chart-dec:before {
    transform: rotate(-45deg);
}

.chart-dec:after {
    transform: rotate(45deg);
}

.chart-dec span {
    float: left;
    width: 30px;
    height: 30px;
    line-height: 22px;
    font-size: 9px;
    color: #000000;
    position: relative;
    z-index: 3;
    border-radius: 50%;
    background: #1e1e1e;
    border: 4px solid;
    box-shadow: 0px 0px 0px 26px rgb(255 255 255 / 5%);
}

.inline-facts-wrap {
    /*float: left;
    width: 50%;*/
    position: relative;
    text-align: right;
    padding: 30px 0;
}

.inline-facts-wrap .num {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    position: relative;
    font-family: var(--epilogue);
    text-transform: uppercase;
}

.inline-facts-wrap h6 {
    position: relative;
    margin-top: 12px;
    color: #666;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 20px;
}

.half-bg-container_dec {
    position: absolute;
    right: 40px;
    top: 40%;
    z-index: 10;
}

.pdcw_list li {
    float: left;
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
    position: relative;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
}

.pdcw_list li:before,
.list-item_category a:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    margin: -3px;
    border-radius: 50%;
}

.pdcw_list li:last-child:before,
.list-item_category a:last-child:before {
    display: none;
}

.list-item_content {
    display: none;
    margin-top: 40px;
}

.list-item_content_wrap {
    float: left;
    padding: 20px 0 0 60px;
    width: calc(100% - 300px);
    position: relative;
}

.list-item_content_wrap h4 {
    text-align: left;
    padding-bottom: 60px;
    position: relative;
    font-family: var(--epilogue);
    font-size: 20px;
    font-weight: 800;
}

.piechart-holder {
    float: left;
    position: relative;
    width: 300px;
}

.piechart-item {
    float: left;
    padding: 30px 0 0;
}

.skills-footer {
    background: #1e1e1e;
    padding: 30px;
    margin-top: 20px;
}

.skills-footer h4 {

    font-family: var(--epilogue);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.piechart {
    display: inline-block;
    position: relative;
    width: 180px;
    height: 180px;
    line-height: 180px;
}



/* HOME TIRE CIRCLES */
#section-cicles {
    padding: 0;
    z-index: 2;
    position: relative;
}

.l-circles {
    flex-wrap: nowrap;
    width: max-content;
    margin: 0 0 0 50%;
    transform: translate(-50%, 0);
    display: flex;
}

.l-circles div {
    width: 8.3dvw;
    /* Dimensions du conteneur pour chaque SVG */
    height: 8.3dvw;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Centrage du contenu */
    overflow: hidden;
    /* S’assure que le SVG ne déborde pas */
}

.l-circles div svg {
    width: 100%;
    /* Le SVG s’adapte au conteneur */
    height: 100%;
    transform: scaleY(0);
    /* Initialement écrasé verticalement */
    will-change: transform;
    /* Optimisation des animations */
}

/*****************************
      Footer
  *****************************/
.site-footer {
    background-color: var(--primary-color);
    /*padding-top: 75px;*/
    position: relative;
    min-height: 400px;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-left-info {
    display: flex;
    /*flex-direction: column;*/
    flex-direction: row;
    align-items: flex-start;
    text-align: right;
    align-self: center;
    gap: 10px;
}

.footer-left-coord {
    gap: 15px;
}


.site-footer .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0;
}

.site-footer .footer-copyright a:hover {
    color: var(--primary-color);
}

.site-footer .footer-copyright p {
    color: #fff;
    margin: 0px;
    font-size: 11px;
    line-height: 15px;
}


.site-footer.footer-dark .widget .widget-title {
    color: #000;
}

.site-footer.footer-dark .widget-menu li a {
    color: #000;
}

.site-footer.footer-dark .widget-menu li a:hover {
    color: var(--color-white);
}

.site-footer.footer-dark .widget-info .title {
    color: #000;
}

.site-footer.footer-dark .widget-newsletter .newsletter-form .form-control {
    color: #000;
    padding-right: 60px;
    border-color: rgba(255, 255, 255, 0.05);
    background: #fff;
}

.site-footer.footer-dark .widget-newsletter .newsletter-form .form-control:focus {
    border-color: var(--primary-color);
}

.site-footer.footer-dark .widget-newsletter .newsletter-form .form-control::-ms-input-placeholder {
    color: #000;
}

.site-footer.footer-dark .widget-newsletter .newsletter-form .form-control::placeholder {
    color: #000;
}

.site-footer.footer-dark .footer-copyright {
    border-top-color: rgba(255, 255, 255, 0.05);
    padding: inherit;
    overflow: hidden;
    position: relative;
    width: 100vw;
    background: #000;
    z-index: 1;
    padding: 7px 100px;

    @media only screen and (max-width: 575.98px) {
        /*margin-top: 50px;*/
    }

    & a:not(:last-child)::after {
        content: "|";
        position: absolute;
        right: -5px;
        color: white;
    }

}

.site-footer.footer-dark .footer-copyright::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: #000;
    z-index: -1;
}

/*.site-footer.footer-dark .footer-copyright>.container>.row {
    --bs-gutter-y: 30px;
}*/

.site-footer.footer-dark .footer-copyright a {
    color: #fff;
    margin: 0px;
    font-size: 11px;
    line-height: 15px;
    position: relative;

    &:first-child {
        padding: 0 10px 0 0;
    }

    &:not(:first-child) {
        padding-left: 15px;
    }
}

.site-footer.footer-dark .footer-copyright a:hover {
    color: var(--primary-color);
}



footer {
    .footer-content {
        display: flex;
        justify-content: space-between;
        position: relative;
        margin: 0 auto;
        width: 100%;
        padding: 80px 85px 80px;
    }

    h5,
    p {
        color: #000000;
    }

    .footer-column {
        flex: 1;
        justify-content: flex-start;

        a:hover {
            color: #000;
        }

        &.align-items-start {
            max-width: 350px;
            justify-content: normal;

        }

        & .social-links {
            justify-content: flex-end;
        }
    }

    .footer-logo {
        max-width: 350px;
    }

    .footer-right,
    .footer-left {
        flex: 1;
        min-width: 0;
    }

    .footer-left {
        flex: 1.5;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-right {
        flex: 1;
        /* plus petite */
        min-width: 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
    }


    .social-links a {
        font-size: 1.5rem;
        color: #000000;
    }


    .newsletter-form .form-control {
        flex: 1;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .list-unstyled {
        padding: 0;
        list-style: none;
    }

    .list-unstyled li {
        padding: 5px;
        line-height: 22px;
        padding-left: 0;
    }

    .list-unstyled li a {
        text-decoration: none;
        color: #000000;
        position: relative;
        transition: color 0.2s ease-in-out;

        &::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 1px;
            background-color: currentColor;
            transform: scaleX(0);
            transition: transform 0.2s ease-in-out;
        }

        &:hover::after {
            transform: scaleX(1);
        }

        @media only screen and (max-width: 575.98px) {
            font-size: 14px;
            line-height: 16px;
        }
    }

    h6 a {
        text-decoration: none;
        color: #000000;
        position: relative;
        transition: color 0.2s ease-in-out;

        &::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 1px;
            background-color: currentColor;
            transform: scaleX(0);
            transition: transform 0.2s ease-in-out;
        }

        &:hover::after {
            transform: scaleX(1);
        }

        @media only screen and (max-width: 575.98px) {
            font-size: 24px;
            line-height: 1;
        }
    }

    .special-f-text {
        background-color: #ffffff;
        border-radius: 5px;
        margin-bottom: 15px;
        cursor: pointer;

        a {
            padding: 7px 15px;
        }

        &:hover a {
            color: var(--primary-color);
        }

        a:hover {
            text-decoration: none;
            color: var(--primary-color);

            &:after {
                display: none;
            }
        }
    }

    .special-f-left {
        padding-left: 15px;


    }

    h6.special-f-left {
        padding-top: 10px;
        text-decoration: underline;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 1600px) {
    footer .gap-5 {
        gap: 5% !important;
    }

}

@media (max-width: 1280px) {
    footer .gap-5:not(.nocol-flex) {
        flex-direction: column;
        gap: 50px !important;
    }

    footer .gap-4.footer-left {
        flex-basis: 50%;
        gap: 50px !important;
    }

    footer .gap-5.footer-right {
        flex-basis: 50%;
    }

    footer {
        & .footer-column {
            &.align-items-start {
                max-width: 100%;
            }
        }
    }

    footer {
        .footer-logo {
            max-width: 100%;
        }
    }

    .widget-info .number {
        font-size: 2.5rem;
    }

    footer {
        .social-links a {
            font-size: 2rem;
        }
    }

    footer {
        h6 a {
            text-decoration: underline;
        }
    }

    footer {
        .special-f-text {
            background-color: transparent;
        }
    }

    /* FONT SIZE */
    h6,
    .h6 {
        font-size: var(--fs-h4);
    }


}





/******************/
/* ASIDE SIDEBAR */
@-webkit-keyframes sidebarBleamAnimation {
    0% {
        transform: translateY(100dvh);
    }

    30% {
        transform: translateY(-101%);
    }

    100% {
        transform: translateY(-101%);
    }
}

@keyframes sidebarBleamAnimation {
    0% {
        transform: translateY(100dvh);
    }

    30% {
        transform: translateY(-101%);
    }

    100% {
        transform: translateY(-101%);
    }
}

#home .c-sidebar.c-side-left {
    bottom: 56px;
    left: 0;
    height: 100dvh;
    z-index: 110;
    width: 4.6rem;
    transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow: hidden;
}

#pages .c-sidebar.c-side-left {
    /*top: 0px;
    bottom: 0px;
    left: 0;    
    z-index: 110;
    width: 4.6rem;
    transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow: hidden;    */
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4.6rem;
    height: 100dvh;
    min-height: 100%;
    z-index: 110;
    transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.c-sidebar.c-side-right {
    top: 0;
    bottom: 0px;
    right: 0;
    /*height: 100dvh;*/
    z-index: 110;
    width: 4.6rem;
    transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow: hidden;
}


@media (min-width: 1000px) {
    .c-sidebar {
        /*position: fixed;*/
        position: absolute;
    }

    .c-sidebar.c-side-left::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1.8px;
        height: 8rem;
        opacity: 0;
        background: linear-gradient(to bottom, rgba(131, 131, 131, 0.1) 0%, var(--white) 75%, rgba(131, 131, 131, 0.1) 100%);

        animation: run 15s linear infinite;
        animation-fill-mode: forwards;
        animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    }

    .c-sidebar.c-side-right::after {
        content: "";
        width: 3px;
        position: absolute;
        top: 0;
        left: 0;
        height: 3.75rem;
        opacity: 0;
        background: linear-gradient(to bottom,
                rgba(131, 131, 131, 0.1) 0%,
                var(--white) 75%,
                rgba(131, 131, 131, 0.1) 100%);
        margin-left: -1px;

        transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-animation: run 5s 0s infinite;
        animation: run 5s 0s infinite;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
        animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    }

    html[data-theme="black"] .c-sidebar::after {
        background-color: #fff;
        transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
    }

    .c-sidebar.c-side-left::before {
        content: "";
        position: absolute;
        /*top: 37.3%;*/
        top: 53%;
        bottom: 0;
        right: 0;
        left: 0;
        border-right: 1px solid rgb(255 255 255 / 63%);
        transform-origin: center bottom;
        transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
        max-height: 100%;
    }

    /*.c-sidebar.c-side-right::before {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 0;
    left: 0;
    border-left: 1px solid rgb(255 255 255 / 63%);
    transform-origin: center bottom;
    transform: scaleY(0);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  }*/

    html[data-theme="black"] .c-sidebar::before {
        border-color: rgba(255, 255, 255, 0.5);
        transition: border-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
            transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .is-first-load.has-dom-ready .c-sidebar::after {
        transition-delay: 1s;
        opacity: 1;
    }

    .is-first-load.has-dom-ready .c-sidebar::before {
        transform: scaleY(1);
    }
}

@media (max-width: 999px) {
    .c-sidebar {
        position: absolute;
        z-index: 90;
        height: 75dvh;
    }
}

@media (max-width: 699px) {
    .c-sidebar {
        height: 60dvh;
    }
}

.is-first-load.has-dom-ready .c-sidebar_tagline {
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1s,
        color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (min-width: 1000px) {
    .c-sidebar_tagline {
        bottom: 0;
    }
}

[data-theme="black"].has-nav-open .c-sidebar_tagline {
    color: #232020;
}

html:not([data-template="culture"]).is-first-load.has-dom-ready .c-sidebar_tagline {
    transition-delay: 1s, 0.2s;
}

@media (max-width: 999px) {
    .c-sidebar_tagline {
        top: 100%;
    }
}

/*top line slide*/
progress {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 15px;
    border: none;
    background: transparent;
    z-index: 99999999;
}

progress::-webkit-progress-bar {
    background: transparent;
}

progress::-webkit-progress-value {
    background: linear-gradient(to left, #ffdc0e, #ffdc0e);
    background-attachment: fixed;
}

progress::-moz-progress-bar {
    background: linear-gradient(to left, #ffdc0e, #ffdc0e);
    background-attachment: fixed;
}

/* FOOTER B-TEXT */

svg.motion {
    /*width: 33dvw;*/
    width: 90dvw;
    height: auto;
    /*left: 5dvw;*/
}

svg.motion line,
svg.motion path {
    /*stroke-width: 32px;*/
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

#demo

/*, #logo-draw*/
    {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    /*opacity: 0;*/

    .outlines-letters path {
        stroke-width: 0;
    }
}

svg#motionLogo {
    /*width: 90dvw;*/
    left: 5dvw;
    height: auto;
    min-width: 235.2px;

    /*@media only screen and (min-width: 767.99px) {
    width: 100dvw;
    }*/
}

#home svg#motionLogo {
    max-width: 435.2px;

    @media only screen and (min-width: 890px) {
        width: 100dvw;
    }


}

#pages svg#motionLogo {
    max-width: 369.92px;

    @media only screen and (min-width: 890px) {
        width: 100dvw;
    }

    @media only screen and (max-width: 889px) {
        width: 40dvw;
    }
}

#motionLogo line,
#motionLogo #bases-cut path {
    stroke-width: 20px;
    /*stroke-linecap: round;
    stroke-linejoin: round;*/
    fill: none;
}

#motionLogo #outlines path,
#motionLogo #back path {
    stroke-width: 2px;
    /*stroke-linecap: round;
    stroke-linejoin: round;*/
    fill: none;
}


#motionLogo #Name path {
    opacity: 0;
    stroke: #000;
    stroke-width: 1px;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    shape-rendering: geometricPrecision;
    vector-effect: non-scaling-stroke;
}

/*#motionLogo #Name path {
    stroke: white; 
    stroke-width: 2; 
    fill: none; 
    stroke-dasharray: 500; 
    stroke-dashoffset: 500; 
    animation: drawText 3s ease forwards;
}

@keyframes drawText {
    to {
        stroke-dashoffset: 0;
    }
}*/

#testttt,
#company-name,
#svg2146 {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

#rotate path {
    fill: #ffdc0e;
}

/*mask*/
#rotate .st0 {
    fill: none;
    stroke: #000;
    stroke-width: 10;
}

#rotate {
    transform: rotate(-10deg);
}

/*#textLogo path {
  fill: #ffdc0e;
}

#textLogo .letter {
  fill: none;
  stroke: #000;
  stroke-width: 10;
}
#textLogo {
  transform:rotate(-10deg);
}*/

#textLogo {
    svg {
        width: 100dvw;
        height: auto;
        max-width: 800px;
    }

    #letters path {
        fill: none;
    }

    #letters #dot {
        fill: none;
        opacity: 0;
    }

    .mydot {
        fill: none;
    }

    .mycurve {
        fill: none;
        stroke: transparent;
        stroke-miterlimit: 10;
        opacity: 1;
    }
}

/*#magic {

  position: fixed;
  width: 100%;
  height: 100dvh;
  display: block;
  top: 0;
  left: 0;
  z-index: -9999;
  background-color: transparent !important;
}*/

#section-magic {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

#magic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    /* Même hauteur que `#section-magic` */
    z-index: 0;
    background-color: transparent !important;
}

.lettering {
    position: relative;

    width: 100dvw;
    /*height: 100dvh;*/
    min-height: 100dvh;
    background-color: #f0f0f0 !important;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 600px) {
    .lettering {
        top: 0;
    }
}

@media screen and (min-width: 900px) {
    .lettering {
        top: 0;
    }
}

.lettering svg {
    float: left;
    max-width: 100%;

    position: absolute;
    display: block;
    top: calc(50dvh - 125px) !important;
    left: calc(50dvw - 375px) !important;
    border-radius: 5px;
    filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.2));

    width: 750px;
}

.lettering .welcome,
.lettering .home,
.lettering .buddy {
    cursor: pointer;
    fill: #d83e00;
    position: absolute;
    left: 370px;
    top: 0;
    visibility: hidden;
    opacity: 0;
    height: 250px;

    background-color: #fff;
}

.lettering .welcome .mask,
.lettering .home .mask,
.lettering .buddy .mask {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
}

#demo {
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: hidden;
    opacity: 0;
    width: 100%;
    /*height: auto;*/
    /*height: 100dvh;*/
    min-height: 100dvh;
    max-width: 100%;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

#roadAnim {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

#roadTrace {
    width: 100%;
    height: 75px;
}

#speedLine {
    position: absolute;
    bottom: 0;
    left: -201%;
    /* Commence hors de l'écran à gauche */
    width: 100dvw;
    height: 56px;
    background: #000;
}

#start {
    cursor: pointer;
}

/* REVEAL VIDEO MASKK */

#playground {
    width: 90dvw;
    height: 100dvh;
    /*min-height: 100dvh;*/
    opacity: 0;
    padding: 0px;
    /*border: solid 3px #222;*/
    position: absolute;
    top: 0;
}

#baseBall {
    /*display: none;*/
    position: absolute;
    opacity: 0;
}

/*#playBall, #buttonContainer {
    opacity: 0;
}*/
@media (max-width: 1023px) {

    #playground-area {
        #speedLine {
            display: none;
            height: 0;
            background: none;
        }
    }

    .banner .banner__content {
        transform: translateY(-7.3dvh);
    }

    #playground {
        width: 62dvw;
    }

    #home .banner .banner-social-text,
    .c-sidebar,
    #buttonContainer {
        display: none !important;
    }
}



/*#playBall {
  width: 100dvw;
  height: 100%;
 
  padding: 0px;
  border: solid 3px #222;
  position: absolute;
  top: 0;

  circle {
    fill: black;
  }


  .ball {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    pointer-events: none;
    background-color: blue;
    color: black;
    text-align: center;
    line-height: 80px;
    position: absolute;
    top: 30%;
    left: 60%;
    font-size: 16px;
  }

  .hill-and-valley {
    width: 557px;
    height: 190px;
    margin: 0px auto;
  }

  #rect text {
    pointer-events: none;
  }


  svg {
    overflow: visible;
    height: 100%;
    
    transform: translateZ(0);
  }

  path {
    stroke-width: 2;
    stroke: gray;
  }

}*/

/*@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap");

@font-face {
    font-family: "wild_worldbold";
    src: url("https://assets.codepen.io/756881/wild_world-webfont.woff2") format("woff2"),
        url("https://assets.codepen.io/756881/wild_world-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}*/

/*:root {
    --fluid-min-width: 320;
    --fluid-max-width: 1140;

    --fluid-screen: 100dvw;
    --fluid-bp: calc((var(--fluid-screen) - var(--fluid-min-width) / 16 * 1rem) / (var(--fluid-max-width) - var(--fluid-min-width)));
}

@media screen and (min-width: 1140px) {
    :root {
        --fluid-screen: calc(var(--fluid-max-width) * 1px);
    }
}

:root {
    --f-0-min: 18;
    --f-0-max: 20;
    --step-0: calc(((var(--f-0-min) / 16) * 1rem) + (var(--f-0-max) - var(--f-0-min)) * var(--fluid-bp));

    --f-1-min: 20;
    --f-1-max: 24;
    --step-1: calc(((var(--f-1-min) / 16) * 1rem) + (var(--f-1-max) - var(--f-1-min)) * var(--fluid-bp));
}*/

.bg-anim-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    will-change: transform, width;
}

.col-bg-left {
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.col-bg-left .content-inside {
    position: relative;
    z-index: 4;
}


.team-item {
    will-change: transform, opacity;
}



.section-infos {
    & .icon .img-fluid {
        max-width: 100%;
        height: auto;
        border: 0px;
        outline: 0px;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 10px;
        max-width: 100px;
    }
}

.bg-stripes {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.bg-stripe {
    position: absolute;
    right: -100%;
    width: 100%;
    height: 115px;
    background: #ffdc0e;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Pour aligner à gauche */
    padding-left: 50px;
}

.stripe-1 {
    top: 30%;
    width: 67%;

    h3 {
        color: #000;
    }
}

.stripe-2 {
    top: 45%;
    width: 68%;
    background: #21212159;
}

.stripe-3 {
    top: 60%;
    width: 64%;
    background: #fff;

    h3 {
        color: #000;
    }
}

@media (max-width: 991.98px) {
    .bg-stripes {
        position: relative !important;
        width: 100%;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .bg-stripes .bg-stripe {
        margin-bottom: 1rem;
    }

    .bg-stripes h3 {
        font-size: 1.3rem;
    }
}

.hero__area-2 .hero2-shape {
    position: absolute;
    left: 30%;
    top: 41%;
    max-width: 41%;
    overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .hero__area-2 .hero2-shape {
        top: 37%;
        left: 33%;
        max-width: 36%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero__area-2 .hero2-shape {
        top: 32%;
        left: 31%;
        max-width: 40%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero__area-2 .hero2-shape {
        left: 30%;
        top: 34%;
        max-width: 40%;
    }
}

@media only screen and (max-width: 767px) {
    .hero__area-2 .hero2-shape {
        left: 5%;
        top: 30%;
        max-width: 90%;
    }
}

.hero__area-2 .hero2-shape img {
    max-width: 100%;
}

.pagescroll {
    &.section {
        min-height: 80dvh;
    }

    /*p {
        line-height: 1.35;
        margin-top: 2em;
        font-size: 20px;
    }*/

    #content {
        padding: 0 0.75rem;
    }

    /*.container {
 max-width: 1100px;
 margin: 0 auto;
 padding: 0 0.5rem;
}*/

    /*h1,
h2,
h3,
h4,
p {
 margin: 0;
}*/

    .flow--lg>*+* {
        margin-top: 2em;
    }

    .flow>*+* {
        margin-top: 1em;
    }

    &.title {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        min-height: 50dvh;

        & .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
    }

    #content {
        overflow: visible;
        width: 100%;
    }

    .heading {
        position: absolute;
        top: 50dvh;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
    }

    /* h1 {
        font-size: clamp(12px, 8dvw, 100px);
        text-align: center;
        line-height: 0.67;
        margin: 0 auto;
        font-family: "wild_worldbold";

        .eyebrow {
            font-family: "Open sans", sans-serif;
            font-size: clamp(12px, 3dvw, 40px);
            font-weight: 400;
        }
    }

    .heading p {
        font-family: "wild_worldbold";
        font-size: 15.5dvw;
        font-size: clamp(12px, 15.5dvw, 250px);
        text-align: center;
        line-height: 0.67;
        margin: 0;
        text-align: center;
        color: #111;
        -webkit-text-stroke-width: 1.5px;
        -webkit-text-stroke-color: white;
        z-index: -10;
    }

    .intro,
    h2,
    h3 {
        font-size: var(--step-1);
        font-weight: 500;
    }

    .text-container {
        position: relative;
    }

    .text-container p {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        color: transparent;
    }

    .text-container p:first-child {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        color: white;
    }

    &.image-grid {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 0.2rem;
        grid-row-gap: 0.2rem;
        width: 70dvw;
        margin: 0 auto;
        padding-top: 40dvh;
        z-index: -1;

        .image_cont {
            position: relative;
            aspect-ratio: 1/1;
            overflow: hidden;
        }

        img {
            position: absolute;
            top: 0;
            width: 100%;
            height: 150%;
            object-fit: cover;
        }

        .image_cont:nth-child(1) {
            grid-column: 1;
            grid-row: 1;
        }

        .image_cont:nth-child(2) {
            grid-column: 3;
            grid-row: 2;
        }

        .image_cont:nth-child(3) {
            grid-column: 2;
            grid-row: 3;
        }
    }*/

    &.parallax-images {
        margin-top: 10dvh;
        padding: 10rem 1rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 1rem;
        /*grid-row-gap: 20dvh;*/
        align-items: center;
        justify-items: center;

        &.pageservices {
            margin-top: 0;
        }

        &.pageservices .parallax-text {
            padding: 5%;
        }

        &.mobile-about {
            display: none;
        }

        @media only screen and (max-width: 575.98px) {
            &.mobile-about {
                display: flex;
                flex-direction: column;
                padding-left: 0 !important;
                padding-right: 0 !important;
                grid-row-gap: 7dvh;
                padding-top: 0;
                margin-top: 0;
                align-items: center;
                justify-items: flex-start;
                padding-bottom: 0;

                & .parallax-text {
                    padding-left: 25px;
                    padding-right: 25px;
                }
            }
        }

        .image_cont {
            position: relative;
            /*height: 94.5dvh;*/
            overflow: hidden;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        img {
            position: absolute;
            bottom: 0;
            margin: 0 auto;
            height: 140%;
            width: 100%;
            object-fit: cover;
        }

        .parallax-text:not(.text-services) {
            grid-column: 2;
            grid-row: 1;
        }

        .image_cont:nth-child(2) {
            grid-column: 1 / span 1;
            grid-row: 1;
            width: 100%;
        }

        .image_cont:nth-child(3) {
            grid-column: 2 / span 1;
            grid-row: 2;
        }
    }


    .spacer {
        min-height: 50dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stagger {
        font-size: 8dvw;
    }

    .bars {
        display: flex;
        flex-wrap: wrap;
        column-gap: 4rem;

        .bars-text {
            flex: 1 1 300px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }

        .bars-cont {
            flex: 1 1 500px;
            display: flex;
            width: 100%;
            height: 60dvh;
            align-items: flex-end;
        }

        .bar {
            border-radius: 10px;
            margin: 2dvw;
            text-align: center;
            flex: 1 0 auto;
            font-size: var(--step-0);
            justify-self: flex-end;
            font-family: "wild_worldbold";
            font-size: clamp(16px, 3dvw, 36px);
        }
    }

    /*.content {
 border-left: solid 1px white;
 padding: 0.5rem 2rem;
}*/

    &.staggered {
        h3 {
            font-family: "wild_worldbold";
            font-size: clamp(16px, 6dvw, 80px);
            letter-spacing: 0.03em;
        }

        &_text {
            flex: 1 1 300px;
        }

        &_demo {
            flex: 1 1 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    &.staggered {
        column-gap: 4rem;
        position: relative;
        overflow: hidden;
        /* Empêche les débordements pendant l'animation */
        /*height: 100dvh;*/
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bg-left,
    .bg-right {
        position: absolute;
        top: 0;
        height: 100%;
    }

    .bg-left {
        left: 0;
        width: 50%;
        background: #fff;

        &.reverse-bg {
            background: #ffdc0e;
        }

        transform: translateX(-100%);
        will-change: transform;
    }

    .bg-right {
        right: 0;
        width: 50%;
        background: #ffdc0e;

        &.reverse-bg {
            background: #000;
        }

        transform: translateX(-100%);
        will-change: transform;
    }




    .section-content {
        position: relative;
        /*z-index: 10; */
        display: flex;

        & .staggered_text {
            width: 50%;
        }

        & .staggered_demo {
            width: 50%;
        }
    }

    .parallax-slab {
        position: relative;
        width: 100%;
        overflow: hidden;

        &:not(.xxl-slab) {
            max-height: 500px;
            min-height: 500px;
        }

        &.xxl-slab {
            max-height: 80dvh;
            min-height: 80dvh;
        }

        img {
            position: absolute;
            bottom: 0;
            width: 100%;
            /*height: 180%;*/
            object-fit: cover;
        }


    }

    .v-center {
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 899px) {
    /*#home .banner__content h1 {
        font-size: 10dvw;
        line-height: 1.2em;
    }*/

    #home .primary-navbar {
        & .navbar {
            .navbar__logo {
                padding-left: 43px;
            }
        }
    }

    #home .banner__content h1,
    #pages .banner__content h1 {
        margin-left: 58px !important;
        margin-right: 58px !important;
    }

    /*.container.banner-container {
        padding-left: 58px;
    }*/

}

@media only screen and (max-width: 575.98px) {
    /*.containerAbout {
    display: none !important;
  }*/
}

.small-spacer {
    height: 15px;
}

.spacer {
    height: 10dvh;
}

/* pages text banner anim */
/*.move-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    font-family: "Anybody";
    color: white;

    h1 {
        font-family: "Anybody";
        font-size: 150px;
    }
}*/

.text-wrapper {
    display: flex;
}

/*#slogans {
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
}*/

span.slogan {
    text-rendering: optimizeLegibility;
    /*margin: 0px;
    text-transform: uppercase;*/
    line-height: 1.2;
}



span.slogan strong {
    display: block;
    position: relative;
    opacity: 0;
}

.onovo-hero .interval {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    position: relative;
    opacity: 0;
    /* margin-top: 30px;*/
}

.onovo-hero #slogans {
    display: inline-flex;
}

.onovo-hero .slogan {
    position: absolute;
    left: 135px;
    transition: opacity 0.4s ease;
}

.onovo-hero .slogan strong {
    opacity: 0;
}

.onovo-hero .slogan strong.active {
    position: relative;
    opacity: 1;
}

.onovo-hero .hero-content {
    display: flex;
    flex-direction: column;
    /*gap: 25px;*/
}

.onovo-hero .onovo-play-btn {
    position: absolute;
    width: 180px;
    height: 180px;
    z-index: 3;
    right: 100px;
    transform: translateY(0);
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    bottom: 25px;
}

.onovo-hero svg#bounding-ball {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: none;
    pointer-events: none;
    /*opacity: 0;*/
}

.onovo-hero svg#bounding-ball #ball {
    opacity: 0;
}

.onovo-hero .bn-text,
.onovo-hero .interval {
    transition: font-size 0.3s ease, line-height 0.3s ease, gap 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.onovo-hero .bn-text .inline-black {
    visibility: hidden;
}

#home .onovo-hero .interval i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    /*-webkit-text-stroke: 1px var(--primary-color);*/
    -webkit-text-stroke: 1px var(--white);
}

#pages:not(.blog-page) .onovo-hero .interval i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    /*-webkit-text-stroke: 1px var(--primary-color);*/
    -webkit-text-stroke: 1px #000000;
}

#pages.blog-page .onovo-hero .interval i {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #000000;

}

.onovo-hero .interval i {
    text-shadow: none;
    padding-top: 18px;
}



#home .banner .banner-social-text {
    display: flex;
    align-items: center;
    gap: 24px;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
}

#pages .banner-social-text {
    display: flex;
    align-items: center;
    gap: 18px;
}

#pages .banner-social-text.banner-right-text {
    top: 115px;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    align-self: flex-start;
    height: 339.08px;
    contain-intrinsic-size: 339.08px;
    contain: content;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    right: 25px;
    z-index: 9999;
}

#pages .banner-social-text.banner-right-text.loaded {
    opacity: 1;
}

.banner-social-text a {
    /*text-transform: none;*/
    color: var(--theme-bg);
    font-weight: 500;
    font-size: 14px;
    font-family: var(--epilogue);
    mix-blend-mode: multiply;
    letter-spacing: 1px;
    transition: color 0.2s ease-in-out;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 3px;

    @media only screen and (max-width: 575.98px) {
        font-size: 14px;
        line-height: 16px;
    }
}




.banner-social-text a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    width: 2px;
    height: 100%;
    background: #000000;
    z-index: 10;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease-in-out;
}

/*#home .banner .banner-social-text.banner-left-text a:hover {    
    color: #fff;
    text-shadow: 0 0 1px rgb(0 0 0 / 26%);
}*/


.banner-social-text a:hover::before {
    transform: scaleY(1);
}


/* ANIMATIONS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.banner-social-text[data-animation="to-left"] a::before {
    transform-origin: right;
}

.banner-social-text[data-animation="center"] a::before {
    transform-origin: center;
}

.banner-social-text[data-animation="bonus"] a::before {
    transform-origin: right;
}

.banner-social-text[data-animation="bonus"] a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.82, 0.94);
}


.onovo-hero .banner-social-text a {
    text-transform: none;
    color: var(--theme-bg);
    font-weight: 500;
    font-size: 14px;
    font-family: var(--epilogue);
    mix-blend-mode: multiply;
    letter-spacing: 1px;
    padding-left: 3px;
    padding-right: 3px;
}

#pages.b-others .onovo-hero .banner-social-text a {
    text-transform: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    font-family: var(--epilogue);
    mix-blend-mode: multiply;
    letter-spacing: 1px;
    padding-left: 3px;
    padding-right: 3px;
}

/*#pages .banner-social-text a:not(.social-pages) {
    font-size: 11px;
}*/

#pages .banner-social-text.banner-right-text a.social-pages {
    font-size: 24px;
    height: 24px;
    color: var(--primary-color);
}

.banner .banner-social-text a:hover {
    color: var(--white);
}

#home .banner .banner-left-text {
    position: absolute;
    bottom: 10dvh;
    left: 35px;
    z-index: 9999;
}

#pages:not(.is-special) .banner-left-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    height: 368.72px;
    contain-intrinsic-size: 368.72px;
    contain: content;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#pages:not(.is-special) .banner-left-text.loaded {
    opacity: 1;
}

#pages.is-special .banner-left-text,
#home.is-special .banner-left-text {
    min-height: 100dvh;
    pointer-events: auto;
    position: absolute;
    left: 35px;
    z-index: 9999;
    transform-origin: bottom left;
    align-items: flex-end;

}

#pages.is-special .vertical-banner,
#home.is-special .vertical-banner {
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
    margin-bottom: 50px;
    display: flex;
    gap: 18px;
}

#pages:not(.is-special) .vertical-banner {
    display: flex;
    gap: 18px;
}

#pages .vertical-banner a {
    font-size: 14px;
}

#home .vertical-banner a {
    font-size: 14px;
    color: #000000;
}

#pages:not(.jobs-page) .btn:not(.base__theme):not(.action-rounded):not(.nav-link) {
    background-color: #00000087;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100%;
    transition: all 0.35s ease-in-out;
    position: relative;
    z-index: 2;
}

#pages.jobs-page .btn.btn-effect {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100%;
    transition: all 0.35s ease-in-out;
    position: relative;
    z-index: 2;
}

#pages .btn.action-rounded {
    gap: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100%;
    transition: all 0.35s ease-in-out;
    position: relative;
    z-index: 2;
    /*overflow: visible !important;*/

    & svg {
        width: 90%;
        height: 90%;
        display: block;
        overflow: visible !important;
    }

    & .fa-sharp {
        width: 88px;
        /* min-width: 110px; */
        height: 88px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-color);
        position: absolute;
        font-size: 36px;
        color: #fff;
    }
}



/*----------------------------------*/
/* Map : Contact Us */
/*----------------------------------*/
.contact-form {
    .contact-send {
        text-align: right;
    }
}

.section-form .form-wrapper {
    padding: 70px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}


.map {
    height: 550px;
    margin-bottom: -8px;
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(99%);
    /* Chrome 19+ & Safari 6+ */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Fix for transition flickering */
}



/*Home 02*/
.rated-reviews {
    padding: 25px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rated-reviews h6 {
    margin: 0px;
    font-size: 18px;
    line-height: 28px;
    font-family: "Jost", sans-serif;
    color: #d4d6d7;
}

.rated-reviews h6 span {
    font-size: 22px;
    line-height: 22px;
    font-family: var(--oswald);
}

.rated-reviews h6 span i {
    color: #ffd401;
    margin: 0 5px;
}

.rated-reviews h6 a {
    font-weight: 700;
    background: linear-gradient(60deg,
            var(--primary-color) -20%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*scroll example **/
.section-photos {
    .grid-section {
        width: 100%;
        overflow: visible;
        z-index: 2;
    }

    .parallax-section {
        height: 100dvh;
        width: 100%;
        overflow: hidden;
        top: 0;
        padding: 0 1rem;
        transform-origin: center top;
    }

    .parallax-image {
        height: 200dvh;
        width: 100%;
        object-fit: cover;
        will-change: transform;
    }

    .logo-section {
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-section svg {
        width: 60%;
    }

    .grid-layout {
        display: flex;
        display: grid;
        height: 100%;
        width: 100%;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 1rem;
        transform-origin: center top;
    }

    .column {
        height: 100%;
    }

    .panel {
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .column-content {
        display: grid;
        grid-template-rows: 45dvh 45dvh 45dvh;
        grid-gap: 1rem;
        height: 100%;
    }

    .grid-image {
        width: 100%;
    }

    .grid-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pin-section {
        height: 100dvh;
        overflow: hidden;
        display: grid;
        grid-row-gap: 1rem;
        grid-template-rows: 1fr 1fr;
    }

    .pin-content {
        width: 300%;
        display: grid;
        grid-column-gap: 1rem;
        grid-template-columns: 1fr 1fr 1fr;
        will-change: transform;
    }

    .pin-box {
        height: 100%;
        width: 100%;
    }

    .pin-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .spacer {
        height: 20dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .scroll-letter {
        fill: #fff;
    }

    .smoother-letter,
    #mouse-wheel {
        fill: #88ce02;
    }

    .by-greensock-letter {
        fill: #fff;
        opacity: 0.6;
    }

    #mouse-outline {
        fill: none;
        stroke: #fff;
        stroke-miterlimit: 10;
        stroke-width: 13px;
    }
}


/* ARROW PAGE */
.zmdi {
    height: 60px;
}

#wrapper-arrow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    pointer-events: auto;
    position: absolute;
    right: 12.5dvw;
    z-index: 9999;
    transform-origin: bottom left;
    align-items: flex-end;
    /*top: 10dvh;*/
    top: 0;

    i::before {
        margin-right: -10px;
        font-size: 200px;
        color: transparent;
        -webkit-text-stroke: 0.8px #ffffff;
        animation: glowing 2.6s reverse infinite ease-in-out;
    }

    i:nth-child(1)::before {
        animation-delay: 0s;
    }

    i:nth-child(2)::before {
        animation-delay: 0.14s;
    }

    i:nth-child(3)::before {
        animation-delay: 0.24s;
    }

    i:nth-child(4)::before {
        animation-delay: 0.34s;
    }

    i:nth-child(5)::before {
        animation-delay: 0.44s;
    }

    i:nth-child(6)::before {
        animation-delay: 0.54s;
    }


    /* Let's Create Arrow Animation */
}

@keyframes glowing {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        filter: drop-shadow(0 0 1px #FFD700) drop-shadow(0 0 2px #FFD700) drop-shadow(0 0 3px #FFD700) drop-shadow(0 0 4px #FFD700) drop-shadow(0 0 5px #FFD700);

    }
}

@keyframes animArrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.arrow-down {
    position: fixed;
    left: 50%;
    margin-left: -20px;
    width: 60px;
    height: 60px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
    background-size: contain;
}

.bounce-arrow {
    animation: animArrow 2s infinite;
}

/* FLIP CARD */
.flipCard {
    perspective: 800px;
    -webkit-perspective: 800;
    -ms-perspective: 800;
    -moz-perspective: 800;
    -o-perspective: 800;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;

    /*@media (max-width: 992px) {
        min-height: 525px;
    }*/
}

.flipCard:not(.second-team):not(.flipPromo) {
    height: calc(32.5dvw);
    max-height: 625px;
}

.flipCard.flipPromo {
    height: calc(32.5dvw);
    max-height: 400px;
    margin-bottom: 25px;
}

.flipCard.second-team {
    height: calc(28.6dvw);
    max-height: 550px;
    margin-bottom: 25px;
}

/* Gestion du flip */
.flipCard .card-team {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-in-out;
}

/* Quand la carte est retournée */
.flipCard .card-team.flipped {
    transform: rotateY(180deg);
}

.flipCard .onovo-team {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Faces de la carte */
.flipCard .card-team .side {

    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Face avant */
.flipCard .card-team .front {
    border: 1px solid rgb(255 255 255 / 50%);
    z-index: 2;
    /* Garde l'avant visible par défaut */
}

/* Face arrière */
.flipCard .card-team .back {
    background: white;
    color: black;
    transform: rotateY(180deg);
    z-index: 1;
    /* L'arrière est caché par défaut */
}

/* ✅ Correction du texte du back */
.flipCard:not(.flipPromo) .card-team .back .desc,
.flipCard:not(.flipPromo) .card-team .back .title,
.flipCard:not(.flipPromo) .card-team .back .onovo-subtitle-1,
.flipCard:not(.flipPromo) .card-team .back .onovo-social-1 {
    transform: rotateY(180deg);

    p {
        color: #000;
        font-size: 16px;
        line-height: 22px;
        padding: 5px 0;
    }
}

.flipCard.flipPromo .card-team .back .desc,
.flipCard.flipPromo .card-team .back .title,
.flipCard.flipPromo .card-team .back .onovo-subtitle-1,
.flipCard.flipPromo .card-team .back .onovo-social-1 {
    transform: rotateY(180deg);
    text-align: center;
    margin-bottom: 0;

    p.detail-small {
        color: #000;
        font-size: 14px;
        line-height: 18px;
        color: #000;
        padding: 0 7px;
    }
}


.jobs-page {

    #fsm_actual.full-screen {
        position: fixed !important;
        /* Fixe la position */
        top: 0 !important;
        left: 0 !important;
        width: 100dvw !important;
        height: 100dvh !important;
        z-index: 9999;
        /* Assure que c'est au-dessus */
    }

    .fsm {
        margin: 10dvh 5dvw;
        background-color: blue;
        height: 100px;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: #f5f5f5;
        font-size: 1.5rem;
        border-radius: 10px;
        transition: 1s;
        cursor: pointer;

        .fa {
            transition: 1s;
            color: #f5f5f5;
            font-size: 2.5dvw;

            &:before {
                color: #f5f5f5;
            }
        }

        .modal-content {
            height: 0;
            width: 0;
            margin: 0;
        }

        h1.modal-content {
            opacity: 0;
            transition: 1s;
        }

        &.apple {
            background: linear-gradient(135deg, #83458e 0%, #608dc9 100%);
        }

        &.pied {
            background: linear-gradient(135deg, #6ecdc7 0%, #c7e4ec 100%);
        }

        &.codepen {
            background: linear-gradient(135deg, #778899 0%, #DCDCDC 100%);
        }

        &.google {
            background: linear-gradient(135deg, #4285f4 0%, #ea4335 100%);
        }

        &.growing {
            h1.modal-content {
                height: auto;
                margin: 0;
                opacity: 0;
                transition-delay: 0.5s;
            }
        }

        &.full-screen {
            height: 100dvh;
            z-index: 100;
            margin: 0;
            border-radius: 0;

            .fa {
                font-size: 10dvw;
            }

            .modal-content {
                height: auto;
                width: auto;
                margin: inital;
            }

            h1.modal-content {
                transition-delay: 0.5s;
                opacity: 1;
            }
        }

        &.shrinking {
            h1.modal-content {
                transition-delay: 0s;
                transition: 0.5s;
                opacity: 0;
                display: block;
            }
        }

        &-container {
            display: flex;
            justify-content: space-between;
            width: 100%;
            box-sizing: border-box;
        }
    }
}




.onovo-circle-move {
    animation: 6s ease-in-out infinite onovo-circle-move;
}

@media (min-width: 992px) {
    .second-team {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@keyframes onovo-circle-move {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(4px, 4px);
    }

    50% {
        transform: translate(0, 4px);
    }

    75% {
        transform: translate(-4px, 0);
    }
}

.splitting span:not(.whitespace) {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

.splitting span .word {
    position: relative;
    transform: translate(0, 100%);
    transition: transform 0.6s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: transform 0.6s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition-delay: calc(100ms + 100ms * var(--line-index));
    transition-delay: calc(100ms + 100ms * var(--line-index));
}

.animated--active .onovo-blog-carousel .swiper-slide.swiper-slide-active .splitting span .word,
.animated--active .onovo-blog-carousel .swiper-slide.swiper-slide-active+.swiper-slide .splitting span .word,
.animated--active .splitting[data-scroll="in"] span .word,
.animated--swiper--active .onovo-hero-parallax .active .splitting span .word,
.animated--swiper--active .swiper-slide-active .splitting span .word {
    transform: translate(0, 0);
}

.onovo-overlay {
    position: absolute;
    width: 100%;
    background: #fff;
    transition: transform 0.6s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: transform 0.6s cubic-bezier(0.3, 0, 0.3, 1);
    transform-origin: top right;
    transform: scaleX(1);
    pointer-events: none;
}

.animated--active .onovo-blog-carousel .swiper-slide.swiper-slide-active .onovo-overlay,
.animated--active .onovo-blog-carousel .swiper-slide.swiper-slide-active+.swiper-slide .onovo-overlay,
.animated--active [data-scroll="in"] .onovo-overlay {
    transform: scaleX(0);
}

.animated--swiper--active .swiper-slide-active .onovo-overlay {
    transform: scaleX(0);
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.onovo-hover-1::before,
.onovo-hover-2::before,
.onovo-hover-3::before {
    margin: 0;
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transform: scale(0);
    -webkit-transform: scale(0);
    background: #ffdc0e;
    pointer-events: none;
}

.onovo-hover-2::before {
    left: 3px;
    top: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
}

.onovo-hover-3::before {
    margin: -500px 0 0 -500px;
    left: 50%;
    top: 50%;
    width: 1000px;
    height: 1000px;
}

.onovo-hover-1:hover::before,
.onovo-hover-2:hover::before,
.onovo-hover-3:hover::before,
.onovo-hover-btn:hover>.arrow::after,
.onovo-hover-btn:hover>i::after {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.onovo-head-btn .arrow::before,
.onovo-hover-black::before {
    background: #000 !important;
}

.onovo-hover-black-30::before {
    background: rgba(0, 0, 0, 0.3) !important;
}

.onovo-hover-btn>.arrow::after,
.onovo-hover-btn>i::after {
    margin: 0;
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transform: scale(0);
    -webkit-transform: scale(0);
    background: #ffdc0e;
    transform-origin: center center;
}

.onovo-hover-btn::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 1px;
    right: 1px;
    bottom: 1px;
    background: #000;
    -webkit-border-radius: 66px;
    border-radius: 66px;
}

.onovo-hover-btn::after {
    margin: 0;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: transform 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    background: #ffdc0e;
    transform-origin: bottom center;
    z-index: 1;
}

.onovo-faq-item .onovo-collapse-btn.active::after,
.onovo-hover-btn:hover::after {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform-origin: top center;
}

.onovo-hover-label .label {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    z-index: 2;
    opacity: 0;
    transform: translateY(8px) scale(0.8);
    -webkit-transform: translateY(6px) scale(0.8);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-hover-label:hover .label {
    opacity: 1;
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
}

.content-sidebar li>a::after,
.onovo-lnk a::after,
.onovo-lnk.lnk--revert a::after,
.post-content .wp-block-archives li>a::after,
a.onovo-lnk.lnk--revert::after,
a.onovo-lnk::after,
span.onovo-lnk.lnk--revert::after,
span.onovo-lnk::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: transform 0.4s ease-out;
    -webkit-transition: transform 0.4s ease-out;
    transform-origin: bottom right;
}

.onovo-lnk.lnk--white a::after,
a.onovo-lnk.lnk--white::after,
span.onovo-lnk.lnk--white::after {
    background: #fff;
}

.onovo-lnk.lnk--active a::after,
a.onovo-lnk.lnk--active::after,
span.onovo-lnk.lnk--active::after {
    background: #ffdc0e;
}

.content-sidebar li a:hover::after,
.onovo-blog-slide-item:hover .onovo-lnk::after,
.onovo-history-item:hover .onovo-lnk::after,
.onovo-lnk a:hover::after,
.onovo-lnk.lnk--revert a::after,
.onovo-menu ul li.current-menu-item>a:after,
.onovo-portfolio-item:hover .onovo-lnk::after,
.onovo-services-showcase .items .hover .onovo-lnk::after,
.post-content .wp-block-archives li a:hover::after,
a.onovo-lnk.lnk--revert::after,
a.onovo-lnk:hover::after,
span.onovo-lnk.lnk--revert::after,
span.onovo-lnk:hover::after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform-origin: bottom left;
}

.onovo-lnk.lnk--revert a:hover::after,
a.onovo-lnk.lnk--revert:hover::after,
span.onovo-lnk.lnk--revert:hover::after {
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform-origin: bottom right;
}

.onovo-btn,
.onovo-btn-circle,
a.onovo-btn,
a.onovo-btn-circle,
button[type="submit"],
input[type="submit"] {
    padding: 0 30px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    height: 66px;
    line-height: 66px;
    text-decoration: none;
    outline: 0 !important;
    cursor: pointer;
    border: none;
    box-shadow: none !important;
    text-align: center;
    background: 0 0;
    border-radius: 66px;
    -webkit-border-radius: 66px;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

button[type="submit"],
input[type="submit"] {
    background: #000;
    -webkit-border-radius: 66px;
    border-radius: 66px;
}

button[type="submit"].onovo-btn,
input[type="submit"].onovo-btn {
    background: 0 0;
}

.onovo-btn.btn--large,
a.onovo-btn.btn--large {
    padding: 0 40px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    height: 100px;
    line-height: 100px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
}

.onovo-btn-circle,
a.onovo-btn-circle {
    padding: 0;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 1px solid #3e3e3e;
    border-radius: 100px;
    -webkit-border-radius: 100px;
}

.onovo-btn.btn--border {
    color: #000;
}

.onovo-btn.btn--border.btn--white {
    color: #fff;
}

.onovo-btn.btn--full,
.onovo-cta-social .desc,
.post-content .gallery.gallery-columns-1 .gallery-item {
    width: 100%;
}

.onovo-btn.btn--white::before {
    background: #fff;
    border-radius: 100px;
    -webkit-border-radius: 100px;
}

.onovo-btn.btn--border::before {
    background: 0 0;
    border: 1px solid #000;
}

.onovo-btn.btn--border.btn--white::before {
    background: 0 0;
    border: 1px solid #fff;
}

.onovo-btn.btn--border::after {
    background: #000;
}

.onovo-btn.btn--active::before,
.onovo-btn.btn--border.btn--color::after {
    background: #ffdc0e;
}

.onovo-btn .arrow::after,
.onovo-btn.btn--border .arrow::before,
.onovo-btn.btn--border i,
.onovo-btn.btn--white::after {
    background: #000;
}

.onovo-btn.btn--active::after,
.onovo-btn.btn--border .arrow span::after,
.onovo-btn.btn--border .arrow span::before,
.onovo-btn.btn--border.btn--white .arrow::before,
.onovo-btn.btn--border.btn--white i,
.onovo-btn.btn--border.btn--white:hover .arrow span::after,
.onovo-btn.btn--border.btn--white:hover .arrow span::before,
.onovo-btn:hover .arrow span::after,
.onovo-btn:hover .arrow span::before,
.onovo-head-btn:hover .arrow span::after,
.onovo-head-btn:hover .arrow span::before,
.onovo-next.nav--white i::before,
.onovo-paginations-container.pag--white .swiper-pagination-bullet::before,
.onovo-prev.nav--white i::before {
    background: #fff;
}

.onovo-btn.btn--active,
.onovo-btn.btn--border.btn--color:hover,
.onovo-btn.btn--icon.btn--border:hover i,
.onovo-btn.btn--icon.btn--white:hover i,
.onovo-social-2 ul li a:hover,
.onovo-social-active ul li a:hover,
.onovo-stars i::before,
.page-links .current,
.pager .current,
a.onovo-btn.btn--active,
a.onovo-btn.btn--border.btn--color:hover {
    color: #000;
}

.onovo-btn:hover,
a.onovo-btn:hover {
    color: #000;
}

.onovo-btn.btn--border:hover,
.onovo-btn.btn--white:hover,
a.onovo-btn.btn--border:hover,
a.onovo-btn.btn--white:hover {
    color: #fff;
}

.onovo-btn .arrow,
.onovo-btn-circle .arrow,
.onovo-btn.btn--icon i,
.onovo-head-btn .arrow {
    margin: 0 10px 0 -10px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    text-align: center;
    transform: scale(0.87);
    -webkit-transform: scale(0.87);
    transition: transform 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: transform 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    z-index: 2;
}

.onovo-head-btn .arrow {
    margin: 0 0 0 10px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.onovo-btn-circle .arrow {
    margin: 0;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.onovo-btn .arrow::before,
.onovo-head-btn .arrow::before {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 1px;
    top: 1px;
    background: #ffdc0e;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-btn-circle:hover .arrow,
.onovo-btn.btn--icon:hover i,
.onovo-btn:hover .arrow,
.onovo-head-btn:hover .arrow,
.onovo-portfolio-item:hover .onovo-hover-3::before,
.onovo-pricing-item:hover .pricing--overlay::before,
.onovo-services-grid-fw .onovo-service-grid-item.active::before,
.onovo-team-two-item:hover .onovo-hover-3::before {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.onovo-btn.btn--large.btn--icon i {
    margin: 0 23px 0 -20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 60px;
    font-size: 24px;
}

.onovo-btn.btn--icon.btn--border i,
.onovo-btn.btn--icon.btn--white i {
    background: #000;
    color: #fff;
}

.onovo-btn.btn--border .arrow::after,
.onovo-btn.btn--border i::after,
.onovo-social-2 ul li a::before,
.onovo-social-active ul li a::before,
.onovo-stars {
    background: #ffdc0e;
}

.onovo-btn.btn--icon.btn--border.btn--white i {
    background: #fff;
    color: #000;
}

.onovo-btn.btn--icon.btn--border.btn--white:hover i {
    color: #fff;
}

.onovo-btn.btn--icon i::before,
.onovo-faq-item .onovo-collapse-btn>span,
.onovo-service-item-inner .list,
.onovo-service-item-inner .title,
.onovo-social-1 ul li a i,
.onovo-social-1 ul li a span,
.onovo-social-2 ul li a i,
.onovo-social-2 ul li a span {
    position: relative;
    z-index: 2;
}

.onovo-btn.btn--border.btn--white .arrow::after,
.onovo-btn.btn--border.btn--white i::after {
    background: #000;
}

.onovo-btn .arrow span,
.onovo-btn-circle .arrow span,
.onovo-head-btn .arrow span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.onovo-btn .arrow span::after,
.onovo-btn .arrow span::before,
.onovo-btn-circle .arrow span::after,
.onovo-btn-circle .arrow span::before,
.onovo-head-btn .arrow span::after,
.onovo-head-btn .arrow span::before {
    margin: -2px 0 0 -6px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 13px;
    height: 3px;
    background: #000;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-social-1 ul li a,
.onovo-social-2 ul li a {
    align-items: center;
    font-weight: 700;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    position: relative;
}

.onovo-btn-circle:hover .arrow span::after,
.onovo-btn-circle:hover .arrow span::before,
.onovo-btn.btn--border.btn--white .arrow span::after,
.onovo-btn.btn--border.btn--white .arrow span::before,
.onovo-btn.btn--border:hover .arrow span::after,
.onovo-btn.btn--border:hover .arrow span::before,
.onovo-next.nav--white:hover i::before,
.onovo-prev.nav--white:hover i::before,
.onovo-social-1 ul li a::before,
.parallax--dark #pp-nav ul li a span::before,
.preloader::after {
    background: #000;
}

.onovo-btn .arrow span::after,
.onovo-btn-circle .arrow span::after,
.onovo-head-btn .arrow span::after {
    content: "";
    width: 3px;
    height: 13px;
    margin: -7px 0 0 -1px;
}

.onovo-btn>span,
.onovo-head-btn span,
button>span {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.onovo-social-1 ul,
.onovo-social-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}

.onovo-social-1 ul li,
.onovo-social-2 ul li {
    margin-right: 4px;
    display: inline-block;
    vertical-align: top;
}

.onovo-social-1.social--minimal ul li {
    margin-right: 0;
}

.onovo-social-1 ul li a {
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid #3e3e3e;
    border-radius: 70px;
    justify-content: center;
    font-size: 22px;
    color: #000;
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-social-1.social--minimal ul li a {
    width: 40px;
    height: 40px;
    border: none;
    font-size: 18px;
    color: #000;
}

.onovo--social--dark .onovo-social-1 ul li a::before {
    background: #282828;
}

.onovo-social-1 ul li a:hover {
    color: #fff;
    border-color: #000;
}

.onovo--social--dark .onovo-social-1 ul li a:hover {
    border-color: #282828;
}

.onovo-social-2 ul li a {
    display: flex;
    width: 56px;
    height: 56px;
    border: 1px solid #fff;
    border-radius: 56px;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-stars {
    margin: 0 15px;
    padding: 0 15px;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    height: 26px;
    line-height: 28px;
    font-weight: 800;
    color: #000;
    border-radius: 26px;
    -webkit-border-radius: 26px;
}

.onovo-stars.stars--small {
    margin: 0 10px;
    padding: 0 10px;
    font-size: 12px;
    height: 21px;
    line-height: 23px;
}

#pp-nav {
    position: absolute !important;
    right: 50px !important;
    width: 32px;
    z-index: 18;
}

#pp-nav ul li,
.onovo-team-info ul li .onovo-text p,
body .onovo-subscribe-form {
    margin: 0;
}

#pp-nav ul li+li {
    margin-top: 10px;
}

#pp-nav ul li,
#pp-nav ul li a {
    position: static;
    width: 100%;
    height: auto;
}

#pp-nav ul li a span {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 32px;
    background: 0 0 !important;
    border: none !important;
    opacity: 1;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

#pp-nav ul li a span::before {
    margin: -2px 0 0 -2px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 4px;
    width: 4px;
    background: #fff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

#pp-nav .pp-nav-active {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 32px;
    width: 32px;
    border: 1px solid #fff;
    opacity: 0.35;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    transition: top 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: top 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-play-btn.play--black .play-circles,
.parallax--dark #pp-nav .pp-nav-active {
    border-color: #000;
}

.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.45;
}

.onovo-navs {
    margin-top: 50px;
    width: 100%;
    text-align: center;
}

.onovo-paginations .swiper-pagination-bullet,
.swiper-nav-active {
    width: 32px;
    height: 32px;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-navs-box {
    padding: 7px;
    background: #fff;
    border-radius: 81px;
    -webkit-border-radius: 81px;
}

.onovo-paginations-container {
    position: relative;
    margin: 0 45px;
}

.onovo-blog-item .desc .info .date,
.onovo-blog-item .desc .info>span,
.onovo-navs .onovo-next,
.onovo-navs .onovo-prev,
.onovo-navs-box,
.onovo-paginations,
.onovo-paginations-container,
.onovo-post-date .date,
.wp-block-latest-posts__post-date {
    display: inline-block;
    vertical-align: middle;
}

.swiper-nav-active {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #000;
    opacity: 0.35;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    background-color: #ffdc0e;
}

.onovo-paginations .swiper-pagination-bullet {
    margin: 0;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background: 0 0;
    border: none;
    opacity: 1;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-paginations .swiper-pagination-bullet::before {
    margin: -3px 0 0 -3px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 7px;
    width: 7px;
    background: #000;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    z-index: 999999;
}

.onovo-paginations .swiper-pagination-bullet-active.swiper-pagination-bullet::before {
    background: #000;
}

.onovo-paginations-container.pag--white .swiper-nav-active,
.onovo-service-item-inner:hover::after {
    border-color: #fff;
}

.onovo-page-navigation {
    position: relative;
    margin: 60px 0 0;
    padding: 15px;
    border: 1px solid #b2b2b2;
    border-radius: 60px;
    -webkit-border-radius: 60px;
}

.onovo-page-navigation-content::after {
    content: "";
    position: relative;
    clear: both;
    display: block;
}

.onovo-page-navigation a.page-navigation__posts {
    margin-left: -10px;
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 100%;
    font-size: 20px;
}

.onovo-page-navigation a {
    display: flex;
    align-items: center;
    margin: 0;
    line-height: 21px;
    font-weight: 600;
}

.onovo-page-navigation a.page-navigation__prev {
    float: left;
    display: block;
}

.onovo-page-navigation a.page-navigation__next {
    float: right;
    display: block;
}

.onovo-loadmore,
.page-links,
.pager {
    text-align: center;
    margin: 30px 0;
}

.onovo-post-pic,
.page-links {
    margin-bottom: 60px;
}

.page-links .post-page-numbers,
.pager a,
.pager span {
    display: inline-block;
    vertical-align: middle;
    width: 67px;
    height: 67px;
    line-height: 67px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.page-links .post-page-numbers:hover,
.pager a:hover {
    background: #ffdc0e;
    color: #000;
}

.onovo-next,
.onovo-prev,
.pager .onovo-next,
.pager .onovo-prev {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 67px;
    height: 67px;
    border: 1px solid #6a5a5a;
    border-radius: 67px;
    cursor: pointer;
    background: 0 0 !important;
}

.pager .onovo-prev {
    margin-right: 30px;
}

.pager .onovo-next {
    margin-left: 30px;
}

.onovo-next.nav--white,
.onovo-prev.nav--white {
    border-color: rgba(255, 255, 255, 0.35);
}

.onovo-next i,
.onovo-prev i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-prev:hover i {
    transform: translateX(-5px);
}

.onovo-next:hover i {
    transform: translateX(5px);
}

.onovo-next i::before,
.onovo-prev i::before {
    margin-top: -1px;
    content: "";
    position: absolute;
    left: 34px;
    top: 50%;
    width: 50px;
    height: 3px;
    background: #000;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-next i::before {
    left: auto;
    right: 34px;
}

.onovo-next i::after,
.onovo-prev i::after {
    margin-top: -7px;
    content: "";
    position: absolute;
    left: 19px;
    top: 50%;
    border: 8px solid transparent;
    border-right: 8px solid #000;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-next i::after {
    left: auto;
    right: 19px;
    border-right: 8px solid transparent;
    border-left: 8px solid #000;
}

.onovo-prev.nav--white i::after {
    border-right-color: #000;
}

.onovo-prev.nav--white:hover i::after {
    border-right-color: #000;
}

.onovo-next.nav--white i::after {
    border-left-color: #fff;
}

.onovo-next.nav--white:hover i::after {
    border-left-color: #000;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.preloader.loaded {
    visibility: hidden;
    z-index: -1;
}

.preloader::after,
.preloader::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    background: #ffdc0e;
    transform-origin: top center;
}

.preloader.closed::before {
    animation: 0.6s cubic-bezier(0.3, 0, 0.3, 1) 0.3s forwards onovo-preloader-close;
}

.preloader.closed::after {
    animation: 0.6s cubic-bezier(0.3, 0, 0.3, 1) forwards onovo-preloader-close;
}

@keyframes onovo-preloader-close {

    0%,
    50% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
    }
}

.preloader__spinner {
    position: relative;
    width: 50px;
    height: 50px;
    align-self: center;
    z-index: 2;
}

.preloader__double-bounce {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: 2s ease-in-out infinite bounce;
    opacity: 1;
    border-radius: 50%;
}

.preloader__double-bounce--delay {
    animation-delay: -1s;
    opacity: 0.5;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.disable_preloader .preloader {
    display: none !important;
}

.onovo-header,
.slideDown,
.slideUp {
    width: 100%;
    left: 0;
}

.onovo-header {
    padding: 10px 0;
    position: absolute;
    top: 0;
    z-index: 19;
}

.onovo-header-default {
    padding: 20px 0;
}

.admin-bar .onovo-header {
    top: 32px;
}

.onovo-header.sticky {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.header--white.onovo-header.sticky,
.onovo-btn .arrow::after,
.onovo-hover-btn::before,
.preloader::after,
button[type="submit"],
input[type="submit"] {
    background-color: #000;
}

.onovo-header .row>div:first-child {
    z-index: 2;
}

.slideUp {
    position: fixed;
    top: -140px;
}

.slideDown {
    position: fixed;
    top: 0;
    background: #000;
}

.slideDown,
.slideUp {
    transition: 0.5s ease-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}

.onovo-logo {
    padding: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

.logo--large {
    display: block;
    font-size: 26px;
    line-height: 40px;
    font-weight: 600;
}

.logo--small {
    display: block;
    font-size: 11px;
    line-height: 1.18;
    opacity: 0.6;
}

.header--active .onovo-head-btn,
.header--active a.onovo-head-btn,
.header--white .logo--large,
.header--white .logo--small,
.header--white .onovo-head-btn,
.header--white .onovo-menu-horizontal ul li,
.header--white .onovo-menu-horizontal ul li a,
.header--white a.onovo-head-btn,
.onovo-menu ul li a:hover,
.onovo-service-item-inner:hover .list ul li a,
.onovo-service-item-inner:hover .title,
.onovo-service-item-inner:hover p,
.onovo-service-item-inner:hover p span,
.onovo-service-item-inner:hover .title a {
    color: #ffffff !important;
}

.onovo-logo-image {
    position: relative;
    line-height: 1;
}

.onovo-logo-image img {
    max-width: 100%;
    height: auto;
}

.header--active .onovo-logo-image img,
.header--white .onovo-logo-image img,
.onovo-head-btn::after,
.onovo-head-btn::before,
.onovo-logo-image img.logo--white,
.onovo-menu ul ul a::before,
.onovo-menu-horizontal {
    display: none;
}

.content-sidebar .search-form label,
.header--active .onovo-logo-image img.logo--white,
.header--white .onovo-logo-image img.logo--white,
.onovo-brands .image,
.onovo-showcase-item .category span,
.widget_product_search label {
    display: block;
}

.onovo-head-btn,
a.onovo-head-btn {
    position: relative;
    float: right;
    height: 40px;
}

.header--active .onovo-head-btn,
.header--active .onovo-head-btn .arrow span::after,
.header--active .onovo-head-btn .arrow span::before,
.header--active .onovo-head-btn .arrow::before,
.header--active .onovo-menu-btn span::after,
.header--active .onovo-menu-btn span::before,
.header--active a.onovo-head-btn,
.onovo-reviews-carousel .swiper-wrapper {
    transition-delay: 0.6s;
}

.header--builder .onovo-head-btn,
.header--builder a.onovo-head-btn {
    display: inline-block;
    float: none;
}

.header--active .onovo-head-btn .arrow::before,
.header--white .onovo-head-btn .arrow::before {
    background: #fff !important;
}

.content-sidebar .search-form input[type="search"],
.header--active .onovo-menu-btn span::after,
.header--active .onovo-menu-btn span::before,
.header--white .onovo-menu-btn span::after,
.header--white .onovo-menu-btn span::before,
.onovo-head-btn .arrow span::after,
.onovo-head-btn .arrow span::before,
.onovo-service-item-inner .list ul li a::after,
.search-form input[type="search"],
.widget_product_search input[type="search"],
.wp-block-search input[type="search"] {
    background: #fff;
}

.header--active .onovo-head-btn .arrow span::after,
.header--active .onovo-head-btn .arrow span::before,
.header--white .onovo-head-btn .arrow span::after,
.header--white .onovo-head-btn .arrow span::before,
.onovo-footer.footer--dark,
.onovo-head-btn:hover .arrow span::after,
.onovo-head-btn:hover .arrow span::before,
.onovo-intro.intro--black,
.onovo-play-btn.play--black .play-lines span {
    background: #000;
}

.onovo-menu-horizontal ul li {
    padding: 0 15px;
    display: inline-block;
    vertical-align: top;
    line-height: 40px;
    position: relative;
}

.onovo-menu-horizontal ul li a {
    font-weight: 500;
}

.onovo-menu-horizontal ul li i {
    margin-left: 8px;
    font-size: 0.8em;
    transition: 0.3s;
}

.onovo-menu-horizontal ul li ul li:hover i {
    transform: rotate(-90deg);
}

.onovo-menu-horizontal ul ul {
    margin-left: -120px;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 0;
    width: 240px;
    background: #fff;
    transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-menu-horizontal ul ul ul {
    left: 100%;
    margin-left: 0;
}

.onovo-menu-horizontal ul li:hover>ul {
    transform: translate(0, 40px);
    -webkit-transform: translate(0, 40px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.onovo-menu-horizontal ul li:hover>ul ul {
    transform: translate(0, 0);
    -webkit-transform: translate(0, -35px);
}

.onovo-menu-horizontal ul ul:before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border: 1px solid #000;
}

.onovo-menu-horizontal ul ul ul:before {
    left: 0;
}

.onovo-menu-horizontal ul ul li {
    margin: 15px 0;
    padding: 0;
    display: block;
    line-height: normal;
}

.header--white .onovo-menu-horizontal ul ul li,
.header--white .onovo-menu-horizontal ul ul li a,
.onovo-filter ul li button.item--active,
.onovo-filter ul li button:hover,
.onovo-menu-horizontal ul ul li,
.onovo-menu-horizontal ul ul li a,
.onovo-pricing-item:hover .onovo-btn.btn--color,
.onovo-pricing-item:hover a.onovo-btn.btn--color,
.onovo-services-showcase .items .hover .name,
.onovo-showcase-item.hover .title a {
    color: #000;
}

.onovo-menu-horizontal ul ul li a {
    font-weight: 400;
    font-size: 16px;
}

.onovo-filter-container,
.onovo-header-default .onovo-menu-horizontal ul ul li {
    text-align: center;
}

.onovo-menu-btn,
a.onovo-menu-btn {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 50px;
    height: 40px;
    align-items: center;
    z-index: 2;
}

.onovo-menu-btn span {
    margin-top: -6px;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 12px;
    display: block;
}

.onovo-menu-btn span::after,
.onovo-menu-btn span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-menu-btn span::after {
    top: auto;
    bottom: 0;
}

.onovo-menu-btn.btn--active span::before {
    top: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.onovo-menu-btn.btn--active span::after {
    bottom: 5px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.onovo-menu-popup {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.onovo-menu-popup.menu--visible {
    opacity: 1;
    visibility: visible;
    z-index: 0;
}

.onovo-menu-overlay,
.onovo-menu-overlay-after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    background: #ffdc0e;
    transform-origin: top center;
    animation: 0.9s cubic-bezier(0.3, 0, 0.3, 1) forwards onovo-menu-overlay-close;
}

.onovo-menu-overlay-after.overlay--circle,
.onovo-menu-overlay.overlay--circle {
    left: -25dvw;
    top: -25dvw;
    width: 150dvw;
    height: 150dvw;
    border-radius: 100%;
    transform: scale(0);
    -webkit-transform: scale(0);
}

.onovo-menu-overlay-after {
    background: #000;
    animation: 0.6s cubic-bezier(0.3, 0, 0.3, 1) forwards onovo-menu-overlay-close;
}

.onovo-menu-overlay-after.overlay--circle {
    animation: 1.2s cubic-bezier(0.3, 0, 0.3, 1) forwards onovo-menu-overlay-close-circle;
}

.onovo-menu-popup.menu--open .onovo-menu-overlay {
    animation: 0.6s cubic-bezier(0.3, 0, 0.3, 1) forwards onovo-menu-overlay-open;
}

.onovo-menu-popup.menu--open .onovo-menu-overlay-after {
    animation: 0.6s cubic-bezier(0.3, 0, 0.3, 1) 0.3s forwards onovo-menu-overlay-open;
}

.onovo-menu-popup.menu--open .onovo-menu-overlay.overlay--circle {
    animation: 1.2s cubic-bezier(0.3, 0, 0.3, 1) forwards onovo-menu-overlay-open-circle;
}

.onovo-menu-popup.menu--open .onovo-menu-overlay-after.overlay--circle {
    animation: 1.2s cubic-bezier(0.3, 0, 0.3, 1) 0.3s forwards onovo-menu-overlay-open-circle;
}

@keyframes onovo-menu-overlay-close {

    0%,
    50% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
    }
}

@keyframes onovo-menu-overlay-open {
    0% {
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

@keyframes onovo-menu-overlay-close-circle {

    0%,
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
}

@keyframes onovo-menu-overlay-open-circle {
    0% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.onovo-menu-container {
    position: absolute;
    overflow: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    left: 0;
    top: 140px;
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100% - 140px);
    -webkit-overflow-scrolling: touch;
}

.onovo-menu-container .container {
    margin: auto;
}

.onovo-menu {
    padding-left: 80px;
}

.onovo-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: onovo-menu-counter;
}

.onovo-menu ul.sub-menu {
    position: relative;
    overflow: hidden;
    max-height: 0;
    transition: 0.6s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.6s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-menu .opened>ul.sub-menu {
    max-height: 1000px;
    transition: 1.2s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 1.2s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-menu ul li {
    margin: 30px 0;
    position: relative;
    font-size: 90px;
    font-weight: 600;
    line-height: 1;
    counter-increment: onovo-menu-counter;
    opacity: 0;
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transition: 0.6s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.6s cubic-bezier(0.3, 0, 0.3, 1);
    transform-origin: top left;
}

.onovo-menu ul li .icon,
.onovo-menu ul li a {
    color: #aeaeae;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    position: relative;
}

.onovo-menu ul ul li {
    font-size: 0.6em;
}

.onovo-menu ul li:nth-child(2) {
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
}

.onovo-menu ul li:nth-child(3) {
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.onovo-menu ul li:nth-child(4) {
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
}

.onovo-menu ul li:nth-child(5) {
    transition-delay: 0.4s;
    -webkit-transition-delay: 0.4s;
}

.onovo-menu ul li:nth-child(6) {
    transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
}

.onovo-menu ul li:nth-child(7) {
    transition-delay: 0.6s;
    -webkit-transition-delay: 0.6s;
}

.onovo-menu ul li:nth-child(8) {
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}

.onovo-menu ul li:nth-child(9) {
    transition-delay: 0.8s;
    -webkit-transition-delay: 0.8s;
}

.onovo-menu ul li:nth-child(10) {
    transition-delay: 0.9s;
    -webkit-transition-delay: 0.9s;
}

.onovo-menu-popup.menu--ready .onovo-menu ul li,
.onovo-portfolio-item:hover .image a::after,
.onovo-reviews-item.swiper-slide-active .onovo-stars {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.onovo-menu ul li a {
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-menu ul li a::before {
    content: "0"counter(onovo-menu-counter) ".";
    position: absolute;
    left: -80px;
    top: 15px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #494949;
}

.onovo-menu ul li .icon {
    margin-left: 15px;
    top: 30px;
    display: inline-block;
    vertical-align: top;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 0.4em;
    cursor: pointer;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-menu ul li.opened>.icon {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.onovo-header-default .onovo-menu {
    text-align: left;
}

@media (max-width: 1024px) {
    .onovo-header-default .onovo-menu ul li {
        font-size: 48px;
    }

    .onovo-header-default .onovo-menu ul ul li {
        font-size: 30px;
    }

    .onovo-header-default .onovo-menu ul ul ul li {
        font-size: 22px;
    }

    .onovo-header-default .onovo-menu ul li .icon {
        margin-top: 8px;
        top: 0;
    }

    .onovo-header-default .onovo-menu ul li li .icon,
    .onovo-menu ul li li .icon {
        font-size: 20px;
        margin-top: -2px;
    }

    .onovo-menu ul.sub-menu ul.sub-menu {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 30px;
        padding-right: 30px;
    }

    .onovo-menu ul.sub-menu .opened ul.sub-menu {
        margin-top: 15px;
    }
}

.footer--fixed .onovo-footer,
.footer--sticky .onovo-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.footer--sticky .onovo-footer {
    z-index: 3;
}

.onovo-footer.footer--white {
    background: #fafafa;
}

.onovo-hero .image,
.onovo-hero .image video,
.onovo-sep .sep-img {
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}

.onovo-footer .footer--default {
    padding: 90px 0 30px;
}

.onovo-footer .separator {
    margin: 60px 0 30px;
    border-top: 7px solid transparent;
    background-image: url("../images/fline.svg");
}

ul.onovo-footer-menu li {
    margin: 0 0 14px;
    font-size: 18px;
}

.onovo-cta-2-text a,
.onovo-footer-lnk {
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
}

.onovo-hero,
.onovo-hero-parallax {
    position: relative;
    overflow: hidden;

    height: 100%;
    max-height: 575px;
}

/* Par défaut (desktop et grands écrans) */
/*.onovo-hero,
.onovo-hero-parallax {
  position: relative;
  height: 575px;
  max-height: 100vh;
  background: #555;
  overflow: hidden;
}


@media (max-width: 991px) {
  @supports (height: 100dvh) {
    .onovo-hero,
    .onovo-hero-parallax {
      height: 100dvh;
      max-height: 100dvh;
    }
  }
}*/
.onovo-hero .image,
.onovo-hero .image video {
    position: absolute;
    background-size: cover;
}

.onovo-hero .image .ovrl,
.onovo-hero .video .ovrl,
.onovo-hero-parallax .image .ovrl,
.onovo-hero-parallax .video .ovrl,
.onovo-intro .image .ovrl,
.onovo-intro .video .ovrl {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.35;
    z-index: 2;
}

.onovo-hero .container {
    position: relative;
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    box-sizing: border-box;
    z-index: 3;
    max-width: 100%;
    padding-bottom: 88px;
    min-height: 575px;
}

.onovo-hero .title {
    margin: 0;
    font-weight: 500;
    font-size: clamp(80px, 7.8vw, 105px);
    line-height: 1;
    white-space: nowrap;
}

@media only screen and (max-width: 1140.98px) {
    .onovo-hero .title {
        margin: 0;
        font-weight: 500;
        font-size: clamp(73px, 7.3vw, 85px);
    }

    .onovo-hero .title .icon-arrow-top-right {
        font-size: clamp(80px, 7.3vw, 85px);
    }

    .onovo-hero .container {
        justify-content: center;
        padding-top: 88px;
        padding-bottom: inherit;
    }

    .onovo-hero .slogan {
        left: 105px;
    }
}

@media only screen and (max-width: 992.98px) {
    .onovo-hero .title {
        margin: 0;
        font-weight: 500;
        font-size: clamp(50px, 6.7vw, 72px);
    }

    .onovo-hero .container {
        justify-content: center;
        padding-top: 88px;
        padding-bottom: inherit;
    }
}

.onovo-sep {
    margin: -10px 0 0 15px;
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    width: 34px;
    height: 1em;
}

.onovo-sep .sep-img {
    position: absolute;
    background-size: contain;
}

.onovo-hero .subtitle {
    margin: 40px 0 40px 710px;
    max-width: 560px;
    font-size: 28px;
}

.onovo-hero .subtitle.subtitle--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.onovo-hero .subtitle.subtitle--left {
    margin-left: 0;
}

/*.onovo-play-btn {
    position: absolute;
    right: 0.75rem;
    bottom: 63px;
    width: 67px;
    height: 67px;
    z-index: 3;
}*/

.onovo-play-btn .play-circles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    border: 1px solid #fff;
}

.onovo-play-btn .play-circles::after {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid #fff;
    opacity: 0.31;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    animation: 2s ease-in-out infinite onovo-play-btn-wave;
}

.onovo-play-btn.play--black .play-circles::after,
.onovo-service-item-inner:hover {
    border-color: #000;
}

@keyframes onovo-play-btn-wave {

    0%,
    100% {
        left: -10px;
        top: -10px;
        right: -10px;
        bottom: -10px;
        opacity: 0.31;
    }

    50% {
        left: -20px;
        top: -20px;
        right: -20px;
        bottom: -20px;
        opacity: 0;
    }

    51% {
        left: -10px;
        top: -10px;
        right: -10px;
        bottom: -10px;
        opacity: 0;
    }
}

.onovo-play-btn .play-lines {
    margin: -8px 0 0 -9px;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 17px;
}

.onovo-play-btn .play-lines span {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 2px;
    background: #fff;
}

.onovo-play-btn .play-lines span:first-child {
    left: 0;
    height: 17px;
}

.onovo-play-btn .play-lines span:nth-child(2) {
    left: 5px;
    height: 14px;
}

.onovo-play-btn .play-lines span:nth-child(3) {
    left: 10px;
    height: 10px;
}

.onovo-play-btn .play-lines span:nth-child(4) {
    left: 15px;
    height: 12px;
}

.onovo-play-btn.active .play-lines span:first-child {
    animation: 1s ease-in-out infinite onovo-play-btn-lines-1;
}

.onovo-play-btn.active .play-lines span:nth-child(2) {
    animation: 0.8s ease-in-out infinite onovo-play-btn-lines-2;
}

.onovo-play-btn.active .play-lines span:nth-child(3) {
    animation: 0.4s ease-in-out infinite onovo-play-btn-lines-3;
}

.onovo-play-btn.active .play-lines span:nth-child(4) {
    animation: 0.6s ease-in-out infinite onovo-play-btn-lines-4;
}

@keyframes onovo-play-btn-lines-1 {
    0% {
        height: 17px;
    }

    100% {
        height: 2px;
    }
}

@keyframes onovo-play-btn-lines-2 {
    0% {
        height: 14px;
    }

    100% {
        height: 2px;
    }
}

@keyframes onovo-play-btn-lines-3 {
    0% {
        height: 10px;
    }

    100% {
        height: 2px;
    }
}

@keyframes onovo-play-btn-lines-4 {
    0% {
        height: 12px;
    }

    100% {
        height: 2px;
    }
}

.onovo-hero .js-hero-slider,
.onovo-hero .onovo-hero-slide-item {
    position: relative;
    height: 100%;
}

.onovo-hero .js-hero-slider .swiper-slide {
    overflow: hidden;
}

.onovo-hero.hero--two .image .ovrl,
.onovo-hero.hero--two .video .ovrl {
    background: linear-gradient(270deg,
            rgba(4, 25, 29, 0.1) 0,
            rgba(4, 25, 29, 0.7) 80%);
}

.onovo-hero.hero--two .title {
    font-size: 60px;
    font-weight: 600;
}

.onovo-hero.hero--two .title strong {
    font-size: 70px;
}

.onovo-hero.hero--two .subtitle {
    font-size: 20px;
    font-weight: 400;
}

.onovo-hero .onovo-navs {
    position: absolute;
    left: 50%;
    bottom: 63px;
    max-width: 1311px;
    z-index: 3;
    transform: translateX(-50%);
}

.onovo-hero .onovo-navs .onovo-prev {
    position: absolute;
    left: 10px;
    right: auto;
    top: -20px;
}

.onovo-hero .onovo-navs .onovo-next {
    position: absolute;
    right: 10px;
    left: auto;
    top: -20px;
}

.onovo-hero .js-hero-slider .onovo-bts {
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition-delay: 0s;
}

.animated--swiper--active .onovo-hero .js-hero-slider .swiper-slide-active .onovo-bts {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
}

.animated--swiper--active .onovo-hero .js-hero-slider .swiper-slide .splitting span .word {
    -webkit-transition-delay: calc(1000ms + 100ms * var(--line-index));
    transition-delay: calc(1000ms + 100ms * var(--line-index));
}

.onovo-hero-carousel {
    padding-bottom: 160px;
    margin: 0 auto;
    width: 328px;
}

.onovo-blog-carousel .swiper-container,
.onovo-hero-carousel .swiper-container {
    overflow: visible;
}

.onovo-hero-carousel .swiper-wrapper {
    transition-delay: 1s;
}

.onovo-hero-carousel .swiper-slide,
.onovo-ticker-slider .swiper-slide {
    width: auto;
}

.onovo-hero-carousel-item {
    position: relative;
    width: 100px;
    transition: 0.6s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.6s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-hero-carousel .swiper-slide:nth-child(1n) .onovo-hero-carousel-item .slide {
    top: 0;
}

.onovo-hero-carousel .swiper-slide:nth-child(2n) .onovo-hero-carousel-item .slide {
    top: 20px;
}

.onovo-hero-carousel .swiper-slide:nth-child(3n) .onovo-hero-carousel-item .slide {
    top: 40px;
}

.onovo-hero-carousel-item .slide {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 380px;
    pointer-events: none;
}

.onovo-hero-carousel-item .img {
    margin-left: -164px;
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    width: 328px;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.onovo-hero-carousel-item .img video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.onovo-hero-carousel-item .titles {
    margin-left: -300px;
    position: absolute;
    left: 50%;
    bottom: -160px;
    width: 600px;
    pointer-events: none;
}

.onovo-hero-carousel-item .subtitle {
    margin: 0 0 5px;
    display: block;
    font-size: 15px;
    line-height: 1;
    color: #555;
    text-transform: uppercase;
    height: 20px;
}

.onovo-hero-carousel-item .title {
    margin: 0;
    display: block;
    font-size: 38px;
    font-weight: 700;
    height: 45px;
}

.onovo-hero-carousel-item .text-line-inner {
    position: relative;
    display: inline-block;
    line-height: 1;
    width: 100%;
    white-space: nowrap;
}

.onovo-hero-carousel .swiper-slide.swiper-slide-active .onovo-hero-carousel-item {
    width: 328px;
    transition-delay: 1s;
}

.onovo-hero-carousel .swiper-slide.swiper-slide-active .onovo-hero-carousel-item .slide,
.onovo-hero-carousel .swiper-slide.swiper-slide-active .onovo-hero-carousel-item .titles {
    pointer-events: auto;
}

.onovo-hero-carousel .swiper-slide .splitting {
    opacity: 0;
    transition: 0.3s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.3s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-hero-carousel .swiper-slide.swiper-slide-active .splitting,
.onovo-history-slider .swiper-slide.swiper-slide-active,
.onovo-navs.js-history-navs .swiper-nav-active,
.onovo-team-two-item:hover .onovo-social-2 {
    opacity: 1;
}

.animated--active .onovo-hero-carousel .swiper-slide .splitting span .word {
    -webkit-transition-delay: calc(1500ms + 100ms * var(--line-index));
    transition-delay: calc(1500ms + 100ms * var(--line-index));
}

.js-hero-carousel-navs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 64px;
    height: 1px;
    font-size: 0;
    z-index: 2;
}

.js-hero-carousel-navs .onovo-next,
.js-hero-carousel-navs .onovo-prev {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.js-hero-carousel-navs .onovo-next {
    left: auto;
    right: 0;
}

@media (max-width: 767px) {


    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 26px;
    }

    h5 {
        font-size: 20px;
    }

    .onovo-header-default .onovo-menu ul ul li,
    h6 {
        font-size: 24px;
        line-height: 1.2;
        padding-bottom: 10px;
    }

    .onovo-title-1,
    h1.onovo-title-1,
    h2.onovo-title-1,
    h3.onovo-title-1,
    h4.onovo-title-1,
    h5.onovo-title-1,
    h6.onovo-title-1 {
        margin: 0;
        font-size: 42px;
    }

    .onovo-title-2,
    h1.onovo-title-2,
    h2.onovo-title-2,
    h3.onovo-title-2,
    h4.onovo-title-2,
    h5.onovo-title-2,
    h6.onovo-title-2 {
        margin: 0;
        font-size: 38px;
    }

    .onovo-title-3,
    h1.onovo-title-3,
    h2.onovo-title-3,
    h3.onovo-title-3,
    h4.onovo-title-3,
    h5.onovo-title-3,
    h6.onovo-title-3 {
        margin: 0;
        font-size: 32px;
    }

    .onovo-btn.btn--large,
    .onovo-footer .copyright,
    .onovo-footer ul.onovo-footer-menu li,
    .onovo-header-default .onovo-menu ul ul ul li,
    a.onovo-btn.btn--large,
    body,
    html {
        font-size: 16px;
    }

    .alignleft,
    .alignright {
        margin-bottom: 30px;
        float: none;
        max-width: 100%;
    }

    .alignright {
        margin-left: 0;
    }

    .alignleft {
        margin-right: 0;
    }

    .wp-block-image .alignleft,
    .wp-block-image .alignright {
        max-width: 50%;
    }

    .m-align-left {
        text-align: left !important;
    }

    .m-align-center {
        text-align: center !important;
    }

    .m-align-right {
        text-align: right !important;
    }

    .onovo-next,
    .onovo-prev,
    .pager .onovo-next,
    .pager .onovo-prev {
        width: 57px;
        height: 57px;
        border-radius: 57px;
    }

    .pager .onovo-next {
        margin-left: 15px;
    }

    .pager .onovo-prev {
        margin-right: 15px;
    }

    .header--builder .onovo-head-btn,
    .header--builder a.onovo-head-btn {
        font-size: 0;
    }

    .onovo-menu {
        padding-left: 40px;
    }

    .onovo-menu ul li {
        margin: 20px 0;
        font-size: 38px;
    }

    .onovo-menu ul li a::before {
        left: -40px;
        top: 10px;
        font-size: 12px;
    }

    .onovo-menu ul li .icon {
        margin-left: 8px;
        margin-top: 4px;
        top: 0;
    }

    .onovo-header-default .onovo-menu ul li {
        font-size: 28px;
    }

    .onovo-header-default .onovo-menu ul li .icon {
        margin-top: -2px;
    }

    .onovo-header-default .onovo-menu ul li li .icon,
    .onovo-menu ul li li .icon {
        font-size: 14px;
        margin-top: -2px;
        height: 20px;
        line-height: 20px;
    }

    .onovo-header-default>.container>.row>* {
        max-width: 50%;
        width: 50%;
    }

    .onovo-menu>ul>li>a {
        color: #fff;
    }

    .onovo-menu ul.sub-menu .opened ul.sub-menu {
        margin-top: 5px;
    }

    .onovo-footer .footer--default {
        padding: 60px 0 30px;
    }

    .onovo-footer-lnk {
        font-size: 24px;
    }

    .onovo-hero-carousel .swiper-slide.swiper-slide-active .onovo-hero-carousel-item,
    .onovo-hero-carousel .swiper-wrapper {
        transition-delay: 0s;
    }

    .onovo-hero-carousel .swiper-slide,
    .onovo-hero-carousel .swiper-slide.swiper-slide-active,
    .onovo-hero-carousel .swiper-slide.swiper-slide-active .onovo-hero-carousel-item,
    .onovo-hero-carousel-item {
        width: 328px;
    }

    .animated--active .onovo-hero-carousel .swiper-slide .splitting span .word {
        -webkit-transition-delay: calc(100ms * var(--line-index));
        transition-delay: calc(100ms * var(--line-index));
    }


}

.onovo-hero-parallax .image,
.onovo-hero-parallax .image video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #555;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.onovo-hero-parallax .container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    z-index: 3;
}

.comment .comment-item+.comment-item,
.comment.comment-item ul.children>li,
.onovo-blog-item .desc .onovo-text .onovo-btn,
.onovo-hero-parallax .onovo-subtitle-1 {
    margin-top: 20px;
}

.onovo-hero-parallax .title {
    margin: 0 0 30px;
    position: relative;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.2;
}

.onovo-hero-parallax .title .sep {
    position: absolute;
    left: 280px;
    top: -120px;
    width: 472px;
    height: 449px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-100px);
}

.onovo-hero-parallax .onovo-bts,
.onovo-hero-parallax .title .sep {
    opacity: 0;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition-delay: 0s;
}

.onovo-hero-parallax .onovo-bts {
    transform: translateY(50px);
}

.onovo-hero-parallax .splitting span .word {
    -webkit-transition-delay: calc(800ms + 100ms * var(--line-index));
    transition-delay: calc(800ms + 100ms * var(--line-index));
}

.animated--swiper--active .onovo-hero-parallax .active .onovo-bts,
.animated--swiper--active .onovo-hero-parallax .active .title .sep {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.8s;
}

.onovo-navs.js-hero-parallax-navs {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 60px;
    margin-top: 0;
    max-width: 1291px;
    z-index: 18;
    display: flex;
    justify-content: space-between;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.onovo-service-grid-item,
.onovo-service-item .image {
    position: relative;
    justify-content: center;
    display: flex;
}

.onovo-navs.js-hero-parallax-navs .onovo-next,
.onovo-navs.js-hero-parallax-navs .onovo-prev {
    margin: 0 10px;
}

.onovo-hero-parallax.pp--disabled #pp-nav,
.onovo-navs.js-hero-parallax-navs.navs--disabled {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1024px) {
    .footer--fixed .wrapper {
        padding-bottom: 80px;
        margin-bottom: 0 !important;
    }

    .footer--fixed .onovo-footer,
    .footer--sticky .onovo-footer {
        position: relative;
    }

    .onovo-hero .subtitle {
        margin-left: 0;
    }

    .js-hero-carousel-navs {
        left: 10px;
        right: 10px;
        bottom: -10px;
    }

    .onovo-hero-parallax .title {
        max-width: 650px;
    }

    .onovo-hero-parallax .image video:after,
    .onovo-hero-parallax .image:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.2;
        transition: 0.3s;
    }

    .parallax--dark .onovo-hero-parallax .image video:after,
    .parallax--dark .onovo-hero-parallax .image:after {
        background: #fff;
    }
}

.onovo-service-item {
    position: relative;
    /*max-width: 440px;*/
}

.onovo-service-item.active--default {
    margin-top: -80px;
}

.onovo-service-item .image {
    margin: 0 auto -85px;
    width: 161px;
    height: 161px;
    align-items: center;
    line-height: 1;
    background: #ffdc0e;
    color: #000;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    z-index: 2;
    pointer-events: none;
}

.onovo-service-item .image:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #3e3e3e;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.onovo-service-item-inner,
.onovo-service-item-inner::after {
    border: 1px solid #3e3e3e;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-service-item .image img {
    width: auto;
    height: auto;
    max-width: 78px;
    max-height: 78px;
}

.onovo-service-item-inner {
    padding: 120px 50px 50px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-service-item-inner::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    right: 8px;
    bottom: 8px;
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    pointer-events: none;
}

/*.onovo-service-item-inner .title {
        margin: 0;
        font-size: 30px;
        font-weight: 700;
    }*/

.onovo-service-item-inner .list ul li {
    margin: 20px 0 0;
    position: relative;
}

.onovo-service-item-inner .list ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 9px;
    /*background: url(../images/list.svg) 0 0 / contain no-repeat;*/
}

.onovo-service-grid-item {
    margin: 0 auto;
    padding: 40px;
    max-width: 460px;
    min-height: 460px;
    flex-direction: column;
}

.onovo-service-grid-item:before {
    z-index: -1;
}

.onovo-service-grid-item .image {
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.onovo-service-grid-item .image img {
    width: auto;
    max-height: 60px;
}

.onovo-bubble {
    position: absolute;
    right: 0;
    bottom: -60px;
    width: 142px;
    height: 152px;
    pointer-events: none;
}

@keyframes bubbleOne {
    0% {
        bottom: -20%;
        right: -10%;
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        bottom: 0;
        right: 0;
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        bottom: 0;
        right: 0;
        opacity: 1;
        transform: scale(1);
    }
}

.onovo-bubble .bubble-1 {
    position: absolute;
    width: 65px;
    height: 65px;
    bottom: -20%;
    right: -10%;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    background: #ffdc0e;
    opacity: 0;
    transform: scale(0.3);
}

.onovo-bubble .bubble-2,
.onovo-bubble .bubble-3 {
    border-radius: 100%;
    position: absolute;
    background: #ffdc0e;
    opacity: 0;
}

.onovo-service-grid-item:hover .onovo-bubble .bubble-1,
.onovo-services-grid-fw .onovo-service-grid-item.active .onovo-bubble .bubble-1 {
    animation: 2.5s cubic-bezier(0.3, 0, 0.3, 1) forwards bubbleOne;
}

@keyframes bubbleTwo {
    0% {
        bottom: 0;
        left: -40%;
        opacity: 0;
        transform: scale(0.25);
    }

    100%,
    50% {
        bottom: 30%;
        left: 0;
        opacity: 1;
        transform: scale(1);
    }
}

.onovo-bubble .bubble-2 {
    width: 45px;
    height: 45px;
    bottom: 0;
    left: -40%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    transform: scale(0.25);
}

.onovo-service-grid-item:hover .onovo-bubble .bubble-2,
.onovo-services-grid-fw .onovo-service-grid-item.active .onovo-bubble .bubble-2 {
    animation: 1.5s cubic-bezier(0.3, 0, 0.3, 1) forwards bubbleTwo;
}

@keyframes bubbleThree {
    0% {
        bottom: 30%;
        left: 30%;
        opacity: 0;
        transform: scale(0.35);
    }

    100%,
    50% {
        bottom: 63%;
        left: 57%;
        opacity: 1;
        transform: scale(1);
    }
}

.onovo-bubble .bubble-3 {
    width: 35px;
    height: 35px;
    bottom: 30%;
    left: 30%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    transform: scale(0.5);
}

.onovo-service-grid-item:hover .onovo-bubble .bubble-3,
.onovo-services-grid-fw .onovo-service-grid-item.active .onovo-bubble .bubble-3 {
    animation: 2s cubic-bezier(0.3, 0, 0.3, 1) forwards bubbleThree;
}

.onovo-service-item-list {
    margin-top: -1px;
    padding: 30px 0;
    position: relative;
    border-top: 1px solid #8a8a8a;
    border-bottom: 1px solid #8a8a8a;
}

.onovo-service-item-list-inner {
    padding: 0 110px 0 70px;
    position: relative;
}

.onovo-service-item-list .num {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    font-size: 16px;
    color: #555;
}

.onovo-service-item-list .image {
    position: absolute;
    overflow: hidden;
    top: -12px;
    right: 0;
    width: 105px;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    z-index: 2;
    border: 1px solid #3e3e3e;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-service-item-list .image:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #3e3e3e;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.onovo-service-item-list .image img {
    position: relative;
    width: auto;
    height: auto;
    max-width: 50px;
    max-height: 50px;
}

.onovo-service-item-list .title {
    font-size: 26px;
    font-weight: 700;
}

.onovo-blog-item .desc .onovo-text p,
.onovo-post-socials,
.onovo-service-item-list p {
    margin-bottom: 0;
}

.onovo-service-item-list .icon {
    font-size: 44px;
}

.onovo-services-showcase .items {
    margin: 40px 0;
}

.onovo-services-showcase .items .title {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
}

.onovo-services-showcase .items .title a {
    width: 100%;
    display: flex;
    align-items: center;
}

.onovo-services-showcase .items .name,
.onovo-services-showcase .items .num {
    padding: 17px 0;
    line-height: 1.2;
    display: block;
}

.onovo-services-showcase .items .num {
    width: 50px;
    font-size: 15px;
    color: #555;
    text-transform: uppercase;
}

.onovo-services-showcase .items .name {
    width: calc(100% - 50px);
    color: #999;
    transition: 0.2s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.2s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-services-showcase .items .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 628px;
    height: 422px;
    pointer-events: none;
}

.onovo-services-showcase .items .image .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: clip-path 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: clip-path 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    z-index: 1;
}

.onovo-services-showcase .items .img-circle {
    content: "";
    position: absolute;
    top: 90px;
    left: 28%;
    width: 366px;
    height: 366px;
    background: #ffdc0e;
    border-radius: 100%;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    pointer-events: none;
}

.onovo-services-showcase .items .hover .image .img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition-delay: 0.4s;
}

@media (max-width: 1024px) {
    .onovo-service-grid-item {
        padding: 30px;
        max-width: 400px;
        min-height: 400px;
    }

    .onovo-service-item-inner {
        padding-left: 40px;
        padding-right: 40px;
    }

    .onovo-services-showcase .items {
        margin: 30px 0;
    }

    .onovo-services-showcase .items .img-circle {
        display: none;
    }

    .onovo-services-showcase .items ul li {
        margin-bottom: 30px;
    }

    .onovo-services-showcase .items .image {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 420px;
        pointer-events: auto;
    }

    .onovo-services-showcase .items .image .img {
        clip-path: none;
    }

    .onovo-services-showcase .items .name {
        color: #000;
    }

    .onovo-service-item {
        max-width: 100%;
    }
}

.onovo-number {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid #000;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.onovo-number::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 35px;
    right: 35px;
    bottom: 35px;
    border: 1px solid #000;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.onovo-number .num {
    position: relative;
    top: 7px;
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000,
        -3px -3px 0 #000;
}

.onovo-circle-text-label {
    position: absolute;
    left: 5%;
    top: 5%;
    width: 90%;
    height: 90%;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    animation: 10s linear infinite onovoRotateText;
}

.onovo-circle-text-label span {
    position: absolute;
    transform-origin: 0 111px;
}

@keyframes onovoRotateText {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0);
    }
}

.onovo-ticker-slider {
    border-style: solid;
    border-width: 1px 0;
    border-color: #555;
}

.onovo-ticker-slider .swiper-wrapper {
    transition-timing-function: linear;
}

.onovo-ticker-slider .title,
.onovo-ticker-slider .title a {
    margin: 0;
    font-weight: 700;
    font-size: 100px;
    line-height: 1.3;
    text-shadow: 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000,
        -3px -3px 0 #000;
}

@media (max-width: 1024px) {

    .onovo-ticker-slider .title,
    .onovo-ticker-slider .title a {
        font-size: 70px;
    }
}

.onovo-filter ul li,
.post-content ol ol,
.post-content ol ul,
.post-content ul ol,
.post-content ul ul {
    margin: 15px 0;
}

.onovo-filter ul li button {
    margin: 0;
    padding: 0;
    display: block;
    background: 0 0;
    border: none;
    outline: 0;
    height: auto;
    color: #999;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-filter.filter--default {
    margin-bottom: 70px;
    padding: 0 3px;
    position: relative;
    overflow: auto;
    overflow-y: hidden;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
}

.onovo-filter.filter--default::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 0;
    right: 3px;
    bottom: 0;
    border: 1px solid #6a6a6a;
    border-radius: 85px;
    -webkit-border-radius: 85px;
}

.onovo-filter.filter--default ul {
    white-space: nowrap;
    font-size: 0;
}

.onovo-filter.filter--default ul li {
    margin: 0;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.onovo-filter.filter--default ul li::before {
    margin-top: -13px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 26px;
    background: #d0d0d0;
    z-index: -1;
}

.content-sidebar .screen-reader-text,
.onovo-blog-item:not(.archive-item) .desc .onovo-text a,
.onovo-blog-slide-item .onovo-btn,
.onovo-filter.filter--default ul li:first-child::before,
.onovo-portfolio-item .text span:last-child em,
.onovo-share .social-share>span,
.onovo-video.active .image,
.onovo-video.active .play,
.post_excerpt_disabled .onovo-blog-slide-item .desc .text,
.wp-block-latest-posts__post-title::after {
    display: none;
}

.onovo-filter.filter--default ul li button {
    padding: 0 40px;
    height: 85px;
    line-height: 85px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.onovo-filter.filter--default .onovo-filter-nav-active {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 40px;
    height: 85px;
    line-height: 85px;
    background: #ffdc0e;
    border-radius: 85px;
    -webkit-border-radius: 85px;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-portfolio-items {
    margin: 0 -30px;
}

.onovo-portfolio-items>.col-xs-12,
.onovo-team-detail>.row>div {
    padding: 0 30px;
}

.onovo-portfolio-item {
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 3px solid #d6d6d6;
}

.onovo-portfolio-item .image {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.onovo-portfolio-item .image a::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    background-color: #fff;
    background-image: url(../images/arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px 17px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    opacity: 0;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-portfolio-item .image img {
    width: 100%;
}

.onovo-portfolio-item .title {
    margin: 0 0 5px;
    font-size: 26px;
    font-weight: 700;
}

.onovo-portfolio-item .text {
    color: #555;
    font-weight: 500;
}

.onovo-portfolio-item .text span {
    margin: 0 5px 0 0;
    display: inline-block;
    vertical-align: top;
    text-transform: capitalize;
}

.onovo-portfolio-item-list {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onovo-portfolio-item-list .image {
    margin-bottom: 40px;
    width: 47%;
    order: 2;
}

.onovo-portfolio-item-list .desc {
    padding: 30px 30px 30px 0;
    width: 53%;
    order: 1;
}

.onovo-portfolio-item-list .text {
    margin: 0 0 5px;
}

.onovo-portfolio-item-list .title {
    margin: 0 0 40px;
    font-size: 44px;
}

.onovo-portfolio-item-list .onovo-text>div>ul li {
    margin: 0 0 15px;
    color: #555;
}

.onovo-portfolio-item-list .onovo-text>div>ul li strong {
    text-transform: uppercase;
}

.onovo-showcase .img-circle {
    position: absolute;
    top: 0;
    right: 200px;
    width: 420px;
    height: 420px;
    background: #ffdc0e;
    border-radius: 100%;
    transform: scale(1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    pointer-events: none;
}

.onovo-showcase-items {
    max-width: 634px;
}

.onovo-showcase-item {
    border-top: 1px solid #d3d3d3;
    display: flex;
    align-items: center;
}

.onovo-pricing-item .list ul li:first-child,
.onovo-showcase-item:first-child {
    border-top: none;
}

.onovo-showcase-item .category,
.onovo-showcase-item .title a {
    padding: 30px 0;
    line-height: 1.2;
}

.onovo-showcase-item .category {
    width: 155px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.onovo-showcase-item .title {
    margin: 0;
    width: calc(100% - 155px);
    font-size: 26px;
    font-weight: 700;
}

.onovo-showcase-item .title a {
    display: block;
    color: #999;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-showcase-item .image {
    position: absolute;
    overflow: hidden;
    top: 50px;
    right: 50px;
    width: 480px;
    height: 370px;
    opacity: 0;
    transform: translate(-30%, -10%) rotate(-30deg) scale(0.3);
    -webkit-transform: translate(-30%, -10%) rotate(-30deg) scale(0.3);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    pointer-events: none;
}

.onovo-showcase-item .image .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    filter: blur(15px);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-showcase-item.hover .image {
    opacity: 1;
    transform: translate(0, 0) rotate(-20deg) scale(1);
    -webkit-transform: translate(0, 0) rotate(-20deg) scale(1);
    z-index: 2;
}

.onovo-showcase-item.hover .image .img {
    filter: blur(0px);
}

.onovo-project-info>ul>li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #3e3e3e;
}

.onovo-cta-info .email,
.onovo-cta-info .email a,
.onovo-project-info>ul>li strong,
.onovo-team-item:hover .num,
.wp-block-calendar a {
    color: #ffdc0e;
}

@media (min-width: 1025px) {
    .onovo-menu-horizontal {
        display: block;
    }

    .onovo-menu-horizontal+.onovo-menu-btn {
        display: none;
    }

    .onovo-filter.filter--default ul li button.item--active {
        background: 0 0 !important;
    }
}

@media (max-width: 1024px) {

    .onovo-filter.filter--default .onovo-filter-nav-active,
    .onovo-filter.filter--default::before,
    .onovo-showcase .img-circle {
        display: none;
    }

    .onovo-showcase-items {
        max-width: 100%;
    }

    .onovo-showcase-item {
        flex-wrap: wrap;
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .onovo-showcase-item:first-child {
        padding-top: 0;
    }

    .onovo-showcase-item .category {
        padding: 0 0 10px;
        width: 100%;
        order: 2;
    }

    .onovo-showcase-item .category a {
        color: #999;
    }

    .onovo-showcase-item .title {
        margin: 0;
        width: 100%;
        order: 2;
    }

    .onovo-showcase-item .title a {
        padding: 0;
        color: #000;
    }

    .onovo-showcase-item .image {
        margin-bottom: 30px;
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        width: 100%;
        height: 420px;
        order: 1;
        opacity: 1;
        transform: none;
        -webkit-transform: none;
        pointer-events: auto;
    }

    .onovo-showcase-item.hover .image {
        opacity: 1;
        transform: none;
        -webkit-transform: none;
    }

    .onovo-showcase-item .image .img,
    .onovo-showcase-item.hover .image .img {
        filter: none;
    }

    .onovo-filter-container {
        margin-bottom: 30px;
        text-align: left;
    }

    .onovo-filter {
        position: relative;
        overflow: auto;
    }

    .onovo-filter ul {
        white-space: nowrap;
    }

    .onovo-filter ul li {
        margin: 0 30px 15px 0;
        display: inline-block;
        vertical-align: top;
    }

    .onovo-filter.filter--default {
        margin-bottom: 0;
    }

    .onovo-filter.filter--default ul li button {
        border-radius: 85px;
        -webkit-border-radius: 85px;
    }

    .onovo-filter.filter--default ul li button.item--active {
        background: #ffdc0e;
    }

    .onovo-portfolio-item-list {
        display: block;
    }

    .onovo-portfolio-item-list .image {
        margin-bottom: 0;
        width: 100%;
    }

    .onovo-portfolio-item-list .desc {
        padding-bottom: 0;
        width: 100%;
    }
}




.onovo-pricing-item,
.onovo-team-detail {
    position: relative;
    border: 1px solid #3e3e3e;
}

.onovo-team-detail:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #3e3e3e;
    pointer-events: none;
}

.onovo-team-detail .team-detail-img {
    position: relative;
    margin-bottom: -70px;
    z-index: 2;
}

.onovo-team-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #3e3e3e;
    /*height: 575px;*/
    background: white;
}

.col-lg-3.flipCard:not(.flipPromo) .onovo-team-item {
    height: calc(32.5dvw);
    max-height: 625px;
}

.col-lg-3.flipCard.flipPromo .onovo-team-item {
    height: calc(32.5dvw);
    max-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.second-team .onovo-team-item {
    height: calc(28.6dvw);
    max-height: 550px;
}

.onovo-team .onovo-subtitle-1 span {
    color: #000;
    font-size: 22px;
    line-height: 35px;
}

.flipCard.flipPromo .onovo-team-item .desc {
    padding: 10px 15px;
    position: relative;
}

.flipCard:not(.flipPromo) .onovo-team-item .desc {
    padding: 32px 28px;
    position: relative;
}

.flipCard:not(.flipPromo) .onovo-team-item .title {
    margin: 0 0 5px;
    font-size: 36px;
    line-height: 1;
    color: #000000;
}

.flipCard.flipPromo .side.front .onovo-team-item .title {
    margin: 0 0 5px;
    font-size: 75px;
    line-height: 1;
    color: #000000;
    text-align: center;

    &.title-back {
        font-size: 2rem;
    }
}

.flipCard.flipPromo .side.back .onovo-team-item .title {
    margin: 0 0 5px;
    font-size: 60px;
    line-height: 1;
    color: #000000;
    text-align: center;

    &.title-back {
        font-size: 2rem;
    }
}

/*.onovo-reviews-summary,
    .onovo-service-item-inner .list,
    .onovo-team-item .onovo-social-1:not(.social-back),
    .row.gap-row>div,
    ol,
    ul {
        margin-top: 30px;
    }*/

.flipCard:not(.flipPromo) .onovo-team-item .onovo-social-1.social-back {
    margin-top: 18px;
}

.flipCard.flipPromo .onovo-team-item .onovo-social-1.social-back {
    margin-top: 0px;
}

.flipCard:not(.flipPromo) .onovo-team-item .image {
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /*text-align: center;*/
    line-height: 1;
    height: calc(19.1dvw);
    max-height: 367px;
    min-height: 200px;
}

.flipCard.flipPromo .side.front .onovo-team-item .image {
    padding: 0;
    position: relative;
    width: 100%;
    text-align: center;
}

.flipCard.flipPromo .side.back .onovo-team-item .image {
    padding: 0;
    position: relative;
    width: 100%;
    padding-top: 0;
}

.flipCard:not(.flipPromo) .onovo-team-item .image img {
    max-width: 100%;
    width: auto;
    height: auto;
    transform: scale(1);
    -webkit-transform: scale(1);
    filter: grayscale(1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    bottom: 0;
    position: absolute;
}

.flipCard.flipPromo .onovo-team-item .image img {
    max-width: 100%;
    width: auto;
    height: auto;
    transform: scale(1);
    -webkit-transform: scale(1);
    filter: grayscale(1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    bottom: 0;
    position: relative;
    text-align: center;
    max-width: 350px;
}

.onovo-team-item:hover .image img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    filter: grayscale(0);
}

.onovo-team-item .num {
    position: absolute;
    right: -20px;
    bottom: 0;
    font-size: 300px;
    font-weight: 700;
    line-height: 0.5;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000,
        -1px -1px 0 #000;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    pointer-events: none;
}


@media (max-width: 1024px) {
    .onovo-team-item .desc {
        padding: 30px 10px 30px 30px;
    }

    .onovo-team-item .image img {
        max-height: 460px;
    }
}

.onovo-reviews-summary .label {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}

.onovo-reviews-carousel {
    border-left: 1px solid #000;
    padding-left: 55px;
}

.onovo-reviews-carousel.reviews--full {
    position: relative;
    border: none;
    padding: 0;
}

.onovo-reviews-item .text {
    font-size: 26px;
}

.onovo-reviews-carousel.reviews--full .onovo-reviews-item .text {
    padding-left: 10%;
    padding-right: 10%;
}

.onovo-reviews-item .title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
}

.onovo-reviews-item .subtitle {
    display: inline-block;
    vertical-align: top;
    line-height: 21px;
}

.onovo-reviews-item .onovo-stars {
    opacity: 0;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transition-delay: 0.1s;
}

.js-reviews-carousel-navs {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 0;
}

.js-reviews-carousel-navs .onovo-next,
.js-reviews-carousel-navs .onovo-prev {
    margin-right: 58px;
}

.onovo-reviews-carousel.reviews--full .js-reviews-carousel-navs {
    margin-top: -33px;
    top: 50%;
    bottom: auto;
    width: 100%;
    height: 1px;
    z-index: 2;
}

.onovo-navs.js-history-navs,
.onovo-reviews-carousel.reviews--full .onovo-next,
.onovo-reviews-carousel.reviews--full .onovo-prev {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.onovo-reviews-carousel.reviews--full .onovo-next {
    left: auto;
    right: 0;
}

@media (max-width: 1024px) {
    .onovo-reviews-carousel {
        margin: 55px 0 0;
    }

    .onovo-reviews-carousel.reviews--full {
        margin: 0;
    }

    .onovo-reviews-item .text br {
        display: none;
    }

    .js-reviews-carousel-navs {
        margin-top: 30px;
        position: relative;
    }

    .onovo-reviews-carousel.reviews--full .js-reviews-carousel-navs {
        margin-top: -33px;
        position: absolute;
    }
}

.onovo-video {
    position: relative;
    height: 670px;
    z-index: 1;
    background-color: #555;
}

.onovo-video .image,
.onovo-video iframe,
.onovo-video video {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #555;
}

.onovo-cta-social .image,
.onovo-video .image {
    background-position: center center;
    background-repeat: no-repeat;
}

.onovo-video .image {
    background-size: cover;
    z-index: 2;
    cursor: pointer;
}

.onovo-video .play {
    margin: -95px 0 0 -95px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    z-index: 3;
}

.onovo-video .play::before {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    background: #ffdc0e;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.onovo-video .play::after {
    content: "";
    position: absolute;
    left: 40px;
    top: 40px;
    right: 40px;
    bottom: 40px;
    border: 2px solid #000;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.onovo-video .play .arrow {
    left: 16px;
    position: relative;
    border: 25px solid transparent;
    border-left: 36px solid #000;
}

.onovo-video .onovo-circle-text-label span {
    transform-origin: 0 86px;
}

@media (max-width: 1024px) {
    .onovo-video {
        position: relative;
        height: 560px;
        z-index: 1;
        background-color: #555;
    }
}

.onovo-counter .num,
.onovo-counter .num-after {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
}

.onovo-counter .num-after {
    font-size: 75px;
}

.onovo-counter .label {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #666;
}

@media (max-width: 1024px) {

    .onovo-counter .num,
    .onovo-counter .num-after {
        font-size: 100px;
    }

    .onovo-counter .num-after {
        font-size: 60px;
    }
}

.onovo-cta-text {
    color: #d5d5d5;
    font-size: 26px;
}

.onovo-cta-text a {
    color: #ffdc0e;
    font-size: 40px;
    font-weight: 500;
    line-height: 1em;
}

.onovo-cta-info .email {
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
}

.onovo-cta-info .email a {
    text-decoration: underline;
}

.onovo-cta-info .adr {
    margin-top: 40px;
    font-size: 26px;
    color: #d5d5d5;
}

.onovo-cta-social {
    margin-bottom: -200px;
    position: relative;
    width: 700px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.onovo-cta-social .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
}

.onovo-cta-social .cta-img-circle {
    position: absolute;
    background: #ffdc0e;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    animation: 1.5s cubic-bezier(0.3, 0, 0.3, 1) infinite onovoCtaCircle;
}

.onovo-cta-social .cta-img-circle.img-circle--1 {
    right: -40px;
    top: 50px;
    width: 140px;
    height: 140px;
    animation: 4.5s cubic-bezier(0.3, 0, 0.3, 1) infinite onovoCtaCircle;
}

.onovo-cta-social .cta-img-circle.img-circle--2 {
    right: 150px;
    top: -40px;
    width: 110px;
    height: 110px;
    animation: 5.5s cubic-bezier(0.3, 0, 0.3, 1) infinite onovoCtaCircleTwo;
}

.onovo-cta-social .cta-img-circle.img-circle--3 {
    right: 20px;
    top: -100px;
    width: 80px;
    height: 80px;
    animation: 6.5s cubic-bezier(0.3, 0, 0.3, 1) infinite onovoCtaCircleThree;
}

@keyframes onovoCtaCircle {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.85);
    }
}

@keyframes onovoCtaCircleTwo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.75);
    }
}

@keyframes onovoCtaCircleThree {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.65);
    }
}

.onovo-cta-social .desc ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 0;
}

.onovo-cta-social .desc ul li {
    margin: 7px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.onovo-cta-social .desc ul li a {
    min-width: 284px;
}

@media (max-width: 1024px) {
    .onovo-cta-social {
        margin-top: 0;
        padding: 60px 0 120px;
        position: relative;
        width: 100%;
        height: auto;
    }
}

.onovo-blog-item {
    margin-bottom: 40px;
}

.onovo-blog-item.archive-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 3px solid #d6d6d6;
}

.onovo-blog-item .image {
    margin: 0 0 25px;
    line-height: 1;
}

.onovo-blog-item .image img {
    width: 100%;
    height: 240px;
}

.onovo-blog-item.archive-item .image img {
    height: 460px;
    object-fit: cover;
    object-position: center;
}

.onovo-blog-item .desc {
    max-width: 92%;
}

.onovo-blog-item .desc .info {
    margin-bottom: 20px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.onovo-blog-item .desc .date,
.onovo-post-date .date,
.wp-block-latest-posts__post-date {
    padding: 8px 22px;
    margin-right: 22px;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    background: #ffdc0e;
    border-radius: 36px;
    -webkit-border-radius: 36px;
}

.onovo-blog-item .desc .title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.onovo-blog-carousel .swiper-slide {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-blog-carousel .swiper-slide.swiper-slide-active,
.onovo-blog-carousel .swiper-slide.swiper-slide-active+.swiper-slide {
    opacity: 1;
    transform: translateY(0);
}

.onovo-blog-slide-item {
    margin-bottom: 30px;
    padding: 40px 30px 20px;
    background: #fff;
    min-height: 316px;
}

.onovo-blog-slide-item .image {
    margin: 0 0 25px;
    position: absolute;
    top: 30px;
    right: 26px;
    width: 288px;
    height: 312px;
    line-height: 1;
}

.onovo-blog-slide-item .image img {
    width: 100%;
    height: 100%;
}

.onovo-blog-slide-item .desc {
    max-width: 270px;
}

.onovo-blog-slide-item .desc .date {
    margin-bottom: 12px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 700;
    height: 35px;
    line-height: 35px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    background: #ffdc0e;
}

.onovo-blog-slide-item .desc .date,
.onovo-blog-slide-item .desc .date a {
    display: inline-block;
    vertical-align: top;
    color: #000;
}

.onovo-blog-slide-item .desc .title {
    padding-right: 10px;
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .onovo-blog-slide-item .desc {
        max-width: calc(100% - 300px);
    }

    .onovo-navs {
        margin-top: 20px;
    }
}

.onovo-brands {
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    text-align: center;
    line-height: 1;
    border: 1px solid #3e3e3e;
}

.onovo-brands .image img {
    width: auto;
    height: auto;
    max-height: 80px;
}

.onovo-team-two-item {
    position: relative;
    overflow: hidden;
}

.onovo-team-two-item .onovo-social-2 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-team-two-item .image {
    position: relative;
    overflow: hidden;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 380px;
    text-align: center;
    line-height: 1;
}

.onovo-team-two-item .onovo-hover-3::before {
    z-index: 1;
}

.onovo-team-two-item .image img {
    max-width: 100%;
    width: auto;
    height: auto;
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-team-two-item:hover .image img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    filter: grayscale(0);
}

.onovo-team-two-item .desc {
    padding: 25px;
    position: relative;
}

.onovo-team-two-item .title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.onovo-team-two-item .onovo-subtitle-1 {
    margin: 0;
    font-weight: 500;
}

.onovo-pricing-item .pricing--badge {
    padding: 0 20px;
    position: absolute;
    right: 10px;
    top: -14px;
    font-size: 13px;
    font-weight: 700;
    height: 29px;
    line-height: 29px;
    background: #000;
}

.onovo-pricing-item .title {
    padding: 44px 66px;
    position: relative;
    min-height: 236px;
}

.onovo-pricing-item .name {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.onovo-pricing-item .subname {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.onovo-pricing-item .price {
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
}

.onovo-pricing-item .image {
    padding: 0;
    position: absolute;
    top: -35px;
    left: 68px;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    font-size: 30px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    z-index: 2;
}

.onovo-pricing-item .image img {
    max-width: 100%;
    width: 30px;
    height: auto;
}

.onovo-pricing-item .desc {
    margin: -6px;
    padding: 50px 55px;
    position: relative;
    min-height: 386px;
    background: #fff;
    border: 1px solid #3e3e3e;
}

.onovo-history-item .image,
.onovo-intro .image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.onovo-pricing-item .pricing--overlay {
    content: "";
    position: absolute;
    overflow: hidden;
    left: 4px;
    top: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #3e3e3e;
    pointer-events: none;
}

.onovo-pricing-item .list,
.wp-block-latest-posts.wp-block-latest-posts__list li {
    margin: 0 0 20px;
}

.onovo-pricing-item .list ul li {
    position: relative;
    margin: 0;
    padding: 10px 0 10px 40px;
    font-size: 16px;
    border-top: 1px solid #ededed;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-pricing-item .list ul li>i {
    margin-top: -10px;
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    font-size: 18px;
    color: green;
    height: 20px;
    line-height: 20px;
}

.onovo-pricing-item:hover .onovo-btn.btn--color::after,
.onovo-pricing-item:hover a.onovo-btn.btn--color::after {
    background: #ffdc0e;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform-origin: top center;
}

.onovo-pricing-item:hover .list ul li {
    color: #fff;
    border-top-color: rgba(237, 237, 237, 0.22);
}

.onovo-border-line::after,
.onovo-form-box::before {
    border: 1px solid #fff;
    position: absolute;
    content: "";
}

.onovo-form-box {
    position: relative;
    background: #000;
    padding: 70px;
}

.onovo-form-box::before {
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
}

.onovo-border-line::after {
    left: 8px;
    top: 8px;
    right: 8px;
    bottom: 8px;
    pointer-events: none;
}

.content-sidebar li a,
.onovo-counter,
.onovo-cta,
.onovo-cta-info,
.onovo-hover-label,
.onovo-lnk a,
.onovo-reviews,
.onovo-section-full>div,
.onovo-services-showcase,
.onovo-showcase,
.post-content .wp-block-archives li a,
[data-onovo-overlay],
a.onovo-lnk,
span.onovo-lnk {
    position: relative;
}

.centrize,
.onovo-overlay {
    left: 0;
    top: 0;
    height: 100%;
    z-index: 2;
}


onovo-overlay.onovo-overlay {
    background-color: #fff;
}

.onovo-history-slider .swiper-container {
    padding-top: 120px;
    overflow: visible;
    max-height: 600px;
}

.onovo-history-slider .swiper-wrapper {
    transition-duration: 0s !important;
    height: auto !important;
}

.onovo-history-slider .swiper-slide {
    opacity: 0;
}

.animated--swiper--active .onovo-history-slider .swiper-slide .splitting span .word {
    -webkit-transition-delay: calc(600ms + 100ms * var(--line-index));
    transition-delay: calc(600ms + 100ms * var(--line-index));
}

.onovo-history-item {
    display: flex;
    align-items: center;
    position: relative;
}

.onovo-history-item .image {
    width: 691px;
    height: 396px;
    line-height: 1;
    border-radius: 10px;
}

.onovo-history-item .desc {
    padding-left: 76px;
    max-width: calc(100% - 767px);
}

.onovo-history-item .subtitle {
    margin: 20px 0;
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 3px var(--black);
    font-family: var(--oswald);
}

.onovo-history-item .title {
    margin: 0;
    font-size: 38px;
    font-weight: 700;
    padding: 20px 0;
    color: #000;
}

.onovo-history-item .text {

    p,
    .list-wrapper .list li {
        color: #000 !important;
        font-size: 18px;
    }

}


.onovo-navs.js-history-navs::before {
    content: "";
    position: absolute;
    top: 32.5px;
    left: 67px;
    right: 67px;
    height: 3px;
    background: #000;
}

.onovo-navs.js-history-navs .js-history-prev {
    left: 0;
    top: 0;
    position: absolute;
}

.onovo-navs.js-history-navs .js-history-next {
    right: 0;
    left: auto;
    top: 0;
    position: absolute;
}

.onovo-navs.js-history-navs .js-history-pagination,
.onovo-navs.js-history-navs .onovo-paginations-container {
    position: absolute;
    top: 18px;
    left: 97px;
    right: 97px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onovo-navs.js-history-navs .js-history-pagination {
    top: 0;
    left: 0;
    right: 0;
}

.onovo-navs.js-history-navs .js-history-pagination .swiper-pagination-bullet {
    margin: 0;
    background: transparent;
    width: 32px;
    height: 32px;
    border-radius: 0;
    -webkit-border-radius: 0;
    background: #fff;
}

.onovo-navs.js-history-navs .js-history-pagination .swiper-pagination-bullet span {
    margin-left: -40px;
    position: absolute;
    top: -40px;
    left: 50%;
    font-size: 22px;
    font-weight: 700;
    width: 80px;
    white-space: nowrap;
    color: #000;
}

@media (max-width: 1024px) {
    .onovo-history-item {
        display: block;
    }

    .onovo-history-item .image {
        width: 100%;
        height: 440px;
    }

    .onovo-history-item .desc {
        padding-left: 0;
        padding-top: 30px;
        max-width: 100%;
    }
}

.onovo-intro {
    padding-top: 200px;
    padding-bottom: 30px;
    background: 0 0;
}

.onovo-intro .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.onovo-breadcrums {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 3px solid #848484;
}

.onovo-breadcrums ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 16px;
}

.onovo-breadcrums ul li {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    font-weight: 700;
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid silver;
}

.onovo-breadcrums ul li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.onovo-counter .num,
.onovo-counter .num-after,
.onovo-history-item .subtitle,
.onovo-intro .onovo-breadcrums ul li,
.onovo-intro .onovo-breadcrums ul li a .onovo-intro.intro--black .onovo-breadcrums ul li,
.onovo-intro .onovo-subtitle-2,
.onovo-intro .onovo-subtitle-2.onovo-text-black,
.onovo-intro .onovo-subtitle-2.onovo-text-white,
.onovo-intro .onovo-title-1,
.onovo-intro .onovo-title-1.onovo-text-black,
.onovo-intro .onovo-title-1.onovo-text-white,
.onovo-intro.intro--black .onovo-breadcrums ul li,
.onovo-intro.intro--black .onovo-breadcrums ul li a,
.onovo-intro.intro--black .onovo-subtitle-2,
.onovo-intro.intro--black .onovo-subtitle-2.onovo-text-black,
.onovo-intro.intro--black .onovo-subtitle-2.onovo-text-white,
.onovo-intro.intro--black .onovo-title-1,
.onovo-intro.intro--black .onovo-title-1.onovo-text-black,
.onovo-intro.intro--black .onovo-title-1.onovo-text-white,
.onovo-number .num,
.onovo-post-categories a,
.onovo-team-item .num,
.onovo-ticker-slider .title,
.onovo-ticker-slider .title a {
    color: #fff;
}

.onovo-faq-item .onovo-collapse-btn {
    padding: 28px 60px;
    position: relative;
    overflow: hidden;
    display: block;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 85px;
    -webkit-border-radius: 85px;
}

.onovo-faq-item .onovo-collapse-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #b2b2b2;
    border-radius: 85px;
    -webkit-border-radius: 85px;
}

.onovo-faq-item .onovo-collapse-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: transform 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    background: #ffdc0e;
    transform-origin: bottom center;
}

.onovo-faq-item .onovo-collapse-btn .arrow::after,
.onovo-faq-item .onovo-collapse-btn .arrow::before {
    margin-top: -30px;
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 60px;
    height: 60px;
    border: 1px solid #b2b2b2;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    z-index: 2;
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.onovo-faq-item .onovo-collapse-btn .arrow::after {
    border: none;
    background: url(../images/arrow_2.svg) center center/12px 9px no-repeat;
}

.onovo-faq-item .onovo-collapse-btn.active .arrow::before {
    background: #000;
    border-color: #000;
}

.onovo-faq-item .onovo-collapse-btn.active .arrow::after {
    filter: invert(1);
    transform: rotate(180deg);
}

.onovo-faq-item .onovo-text {
    padding: 30px 60px;
}

@media (max-width: 767px) {
    .onovo-hero .title {
        font-size: 60px;
    }

    .onovo-sep {
        width: 24px;
    }

    .onovo-hero .subtitle {
        margin-top: 30px;
        margin-bottom: 30px;
        max-width: 100%;
        font-size: 18px;
    }

    .onovo-cta-social .image,
    .onovo-hero .subtitle br,
    .onovo-hero-parallax .title .sep,
    .onovo-navs.js-history-navs .js-history-pagination .swiper-pagination-bullet span,
    .onovo-team-info ul li br {
        display: none;
    }

    .onovo-hero .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .onovo-counter .num-after,
    .onovo-hero-parallax .title,
    .onovo-hero.hero--two .title {
        font-size: 40px;
    }

    .onovo-hero.hero--two .subtitle,
    .onovo-reviews-item .text,
    .onovo-reviews-summary .label {
        font-size: 18px;
    }

    .onovo-hero-carousel,
    .onovo-intro {
        padding-top: 160px;
    }

    .js-hero-carousel-navs {
        bottom: 30px;
    }

    .onovo-hero-carousel .swiper-slide:nth-child(1n) .onovo-hero-carousel-item .slide,
    .onovo-hero-carousel .swiper-slide:nth-child(2n) .onovo-hero-carousel-item .slide {
        top: 0;
    }

    .onovo-hero-carousel-item .titles {
        margin-left: -150px;
        margin-top: 30px;
        left: 50%;
        bottom: auto;
        top: 100%;
        width: 300px;
    }

    .onovo-hero-carousel-item .title {
        margin: 0;
        font-size: 26px;
        height: auto;
    }

    .onovo-hero-carousel-item .text-line-inner {
        white-space: normal;
    }

    .onovo-hero-parallax .image video:after,
    .onovo-hero-parallax .image:after {
        opacity: 0.4;
    }

    #pp-nav {
        right: 10px !important;
    }

    .onovo-navs.js-hero-parallax-navs {
        bottom: 20px;
    }

    .onovo-service-grid-item {
        padding: 15px;
        max-width: 340px;
        min-height: 340px;
    }

    .onovo-history-item .title,
    .onovo-service-item-inner .title,
    .onovo-team-item .title {
        font-size: 26px;
    }

    .onovo-reviews-item .onovo-stars.stars--small,
    .onovo-service-item-inner .list ul li {
        margin: 10px 0 0;
    }

    .onovo-services-showcase .items ul li {
        margin-bottom: 20px;
    }

    .onovo-blog-item.archive-item .image img,
    .onovo-history-item .image,
    .onovo-services-showcase .items .image,
    .onovo-showcase-item .image,
    .onovo-video {
        height: 280px;
    }

    .onovo-service-item-list-inner {
        padding: 0;
    }

    .onovo-service-item-list .image {
        position: relative;
        margin-bottom: 20px;
        top: 0;
        left: 0;
        right: auto;
    }

    .onovo-service-item-list .num {
        margin-right: 5px;
        position: relative;
        left: 0;
        top: 5px;
        font-size: 14px;
        display: inline-block;
        vertical-align: top;
    }

    .onovo-service-item-list .title {
        margin: 0;
        display: inline-block;
        vertical-align: top;
        max-width: 270px;
    }

    .onovo-ticker-slider .title,
    .onovo-ticker-slider .title a {
        font-size: 50px;
    }

    .onovo-portfolio-item {
        margin-bottom: 40px;
    }

    .onovo-cta-text,
    .onovo-portfolio-item-list .onovo-text>div>ul li {
        font-size: 16px;
    }

    .onovo-portfolio-item-list .title {
        margin: 0 0 20px;
        font-size: 26px;
    }

    .onovo-portfolio .onovo-loadmore {
        margin: 15px 0 0;
    }

    .onovo-team-item .desc {
        padding: 38px;
    }

    .onovo-team-info ul li {
        display: block;
        word-break: break-word;
    }

    .onovo-reviews-summary {
        margin-top: 10px;
    }

    .onovo-stars {
        margin: 0 5px;
        padding: 0 10px;
        font-size: 10px;
    }

    .onovo-reviews-carousel {
        margin: 30px 0 0;
        padding-left: 30px;
    }

    .onovo-reviews-item .subtitle {
        display: block;
    }

    .onovo-reviews-carousel.reviews--full .onovo-reviews-item .text {
        padding-left: 0;
        padding-right: 0;
    }

    .onovo-reviews-carousel.reviews--full .js-reviews-carousel-navs {
        margin-top: 0;
        position: relative;
        height: 67px;
    }

    .onovo-video .play {
        transform: scale(0.5);
    }

    .onovo-counter .num,
    .onovo-counter .num-after {
        font-size: 80px;
    }

    .onovo-counter .label {
        margin: 10px 0 20px;
        font-size: 18px;
    }

    .onovo-cta-social {
        margin-top: 15px;
        margin-bottom: 0;
        padding: 0;
    }

    .onovo-cta-social .desc ul li {
        margin: 5px;
    }

    .onovo-cta-social .desc ul li a {
        min-width: 330px;
    }

    .onovo-btn.btn--large,
    a.onovo-btn.btn--large {
        padding: 0 25px;
        height: 70px;
        line-height: 70px;
        border-radius: 70px;
        -webkit-border-radius: 70px;
    }

    .onovo-btn.btn--large.btn--icon i {
        margin: 0 5px 0 -20px;
    }

    .onovo-cta-2-text a,
    .onovo-cta-info .email,
    .onovo-cta-text a {
        font-size: 24px;
    }

    .onovo-cta-info .adr {
        margin-top: 20px;
        font-size: 16px;
    }

    .onovo-history-slider .swiper-container {
        padding-top: 90px;
    }

    .onovo-navs.js-history-navs .js-history-pagination,
    .onovo-navs.js-history-navs .onovo-paginations-container {
        left: 0;
        right: 0;
    }

    .onovo-history-item .subtitle {
        font-size: 60px;
        line-height: 1.3;
    }

    .onovo-blog-slide-item .image {
        margin: 0 0 25px;
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: 280px;
    }

    .onovo-blog-slide-item .desc {
        max-width: 100%;
    }

    .onovo-next i::before,
    .onovo-prev i::before {
        width: 30px;
    }

    .onovo-paginations-container {
        margin: 0 5px;
    }

    .onovo-next,
    .onovo-prev,
    .pager .onovo-next,
    .pager .onovo-prev {
        width: 57px;
        height: 57px;
    }

    .onovo-navs.js-history-navs::before {
        top: 27.5px;
    }

    .onovo-navs.js-history-navs .onovo-paginations-container {
        margin: 0 67px;
        top: 13px;
    }

    .onovo-hero .onovo-navs .onovo-next,
    .onovo-hero .onovo-navs .onovo-prev {
        top: -14px;
    }

    .onovo-breadcrums ul li {
        font-size: 14px;
    }

    .onovo-faq-item .onovo-collapse-btn {
        padding: 20px 90px 20px 30px;
        font-size: 18px;
    }

    .onovo-faq-item .onovo-text {
        padding: 0 30px 10px;
    }
}

.onovo-custom-gallery .col-md-6:first-child,
.onovo-custom-gallery .col-md-6:nth-child(10),
.onovo-custom-gallery .col-md-6:nth-child(4),
.onovo-custom-gallery .col-md-6:nth-child(5),
.onovo-custom-gallery .col-md-6:nth-child(8) {
    transform: scale(0.8);
}

.onovo-team-info ul li {
    padding: 20px 0;
    border-top: 1px solid #dbdbdb;
    display: flex;
}

.onovo-team-info ul li .title {
    width: 40%;
    font-weight: 700;
}

.onovo-team-info ul li .onovo-text {
    width: 60%;
}

.page-404 {
    position: relative;
    /*height: 100dvh;*/
    min-height: 100dvh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.page-404__num {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 200px;
    margin: 0;
    color: #000;
    line-height: 1;
}

.page-404__text {
    margin-bottom: 30px;
}

.page-404 .search-form {
    margin: 0 auto;
}

.onovo-archive-post,
.onovo-post {
    padding: 120px 0 0;
}

.onovo-post-pic img {
    width: 100%;
    height: 680px;
}

.onovo-post-wrapper {
    padding: 0 7%;
}

.onovo-post-date {
    margin: 0 0 30px;
    color: #828282;
}

.onovo-post-date a {
    font-size: 16px;
    font-weight: 500;
}

.post-content ol,
.post-content p,
.post-content ul {
    margin: 30px 0;
}

.post-content ol li,
.post-content ul li,
.wp-block-latest-posts__post-date {
    margin: 10px 0;
}

.onovo-post-bottom {
    margin: 30px 0 60px;
    padding: 6px;
    position: relative;
    background: #000;
}

.onovo-post-bottom-content {
    padding: 30px;
    position: relative;
    border: 1px solid #fff;
}

.onovo-post-categories,
.onovo-post-socials,
.onovo-post-tags {
    margin: 0 0 10px;
    display: block;
    color: #bbb;
    font-weight: 500;
    line-height: 56px;
}

.onovo-post-categories span,
.onovo-post-socials span,
.onovo-post-tags span {
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}

.social-share.onovo-post-socials.onovo-social-2 ul {
    margin-left: -5px;
    display: inline-block;
    vertical-align: top;
}

.social-share.onovo-post-socials.onovo-social-2 ul li a {
    border: 1px solid #3e3e3e;
}

.onovo-post-comments {
    padding: 0 7%;
    margin-top: 60px;
}

.comment__title {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.comment__title small {
    margin-left: 8px;
    font-size: 18px;
    font-weight: 400;
}

.comment.comment-item {
    list-style: none;
}

.comment.comment-item>.comment {
    position: relative;
    border: 1px solid #b2b2b2;
    min-height: 180px;
}

.comment-item__photo {
    margin: -1px;
    display: flex;
    padding: 25px;
    border: 1px solid #b2b2b2;
    height: calc(100% + 2px);
    position: absolute;
}

.comment .comment-item__photo img {
    float: none;
    max-width: 128px;
    width: 128px;
    height: 128px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.comment .comment-item__content {
    padding-top: 25px;
    padding-right: 25px;
    margin-left: 205px;
}

.comment .comment-item__top {
    margin-bottom: 15px;
}

.comment .comment-item__name {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    vertical-align: top;
}

.comment .comment-item__sent {
    margin: 7px 0 0 10px;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    vertical-align: top;
    color: #404040;
}

.comment .comment-item__reply a {
    position: absolute;
    right: -1px;
    bottom: -1px;
    padding: 9px 20px;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    text-align: center;
    background: #000;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}

.comment .comment-item__reply a:before {
    content: "";
    position: absolute;
    top: 0;
    left: -7px;
    width: 15px;
    height: 100%;
    background: #000;
    transform: skewX(-20deg);
    transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.comment .comment-item--replyed {
    margin-left: 40px;
}

.comment-respond {
    max-width: 100%;
    margin-top: 60px;
}

.comment-item .comment-respond {
    padding: 40px 25px;
    margin: -1px 0 0;
    border: 1px solid #b2b2b2;
}

.comment-form .field {
    margin-bottom: 30px;
    padding: 0;
}

.comment-form__inputs-group {
    display: flex;
    flex-direction: column;
}

.comment-form__inputs-group .comment-form__field-wrapper {
    width: 100%;
    margin: 0 0 15px;
}

@media (min-width: 992px) {
    .onovo-portfolio-3-column .col-lg-6 {
        flex: 0 0 auto;
        width: 33.333%;
    }

    .onovo-portfolio-4-column .col-lg-6 {
        flex: 0 0 auto;
        width: 25%;
    }

    .comment .comment-item__reply a:focus,
    .comment .comment-item__reply a:focus::before,
    .comment .comment-item__reply a:hover,
    .comment .comment-item__reply a:hover::before {
        outline: 0;
        color: #000;
        background-color: #ffdc0e;
    }

    .comment .comment-item--replyed {
        margin-left: 60px;
    }

    .comment-form__inputs-group {
        flex-direction: row;
        justify-content: space-between;
        margin: 0 -15px 30px;
    }

    .comment-form__inputs-group .comment-form__field-wrapper {
        width: calc(50% - 30px);
        margin: 0 15px;
    }
}

.comment-form__inputs-group .comment-form__field-wrapper label {
    margin-bottom: 0;
}

.col-sidebar,
.content-sidebar {
    padding: 6px;
    position: relative;
    border: 1px solid #b2b2b2;
}

.content-sidebar {
    padding: 0;
}

.content-sidebar .widget {
    padding: 44px;
    border-bottom: 1px solid #b2b2b2;
}

.content-sidebar .widget:last-child {
    border-bottom: none;
}

.content-sidebar .widget .widget-title,
.content-sidebar .widget h2 {
    margin-bottom: 30px;
    padding-bottom: 8px;
    display: inline-block;
    vertical-align: top;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    border-bottom: 3px solid #000;
}

.content-sidebar li,
.wp-block-archives-list li,
.wp-block-categories-list li {
    margin-bottom: 15px;
    position: relative;
    line-height: 1.3;
}

.wp-block-latest-posts.wp-block-latest-posts__list li:after {
    content: "";
    position: relative;
    clear: both;
    display: block;
}

.wp-block-latest-posts.wp-block-latest-posts__list li:last-child {
    margin: 0;
}

.wp-block-latest-posts__featured-image {
    margin-top: -3px;
    margin-right: 10px;
    margin-bottom: 30px;
    float: left;
    width: 100px;
}

.wp-block-latest-posts__featured-image img {
    border-radius: 100% !important;
    -webkit-border-radius: 100% !important;
}

.wp-block-latest-posts__post-title {
    line-height: 1.3;
    font-weight: 700;
    display: block;
}

.wp-block-latest-posts__post-author {
    font-size: 16px;
    color: #555;
}

.wp-block-latest-posts__post-excerpt {
    font-size: 16px;
    clear: both;
}

.content-sidebar .search-form .screen-reader-text,
.screen-reader-text,
.wp-block-latest-posts__post-excerpt .onovo-btn,
.wp-block-search .wp-block-search__label {
    display: none;
}

.post-content table {
    width: 100%;
    margin: 2rem 0;
    padding: 0;
    border-collapse: collapse;
}

.post-content table td,
.post-content table th {
    padding: 10px 20px;
    border: 1px solid #c4c4c4;
    background: 0 0;
}

.content-sidebar ul ul {
    margin-top: 0.6rem;
}

.content-sidebar ul ul li {
    position: relative;
    padding-left: 0.6rem;
}

.content-sidebar ul ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 1px;
    background: #8d99a7;
}

.content-sidebar ul li cite {
    padding: 0.5rem 0;
    display: block;
    font-size: 0.875rem;
    color: #8d99a7;
}

.wp-block-tag-cloud {
    margin: 5px 0 0;
}

.col-sidebar .tagcloud a,
.onovo-post-tags a,
.sidebar__tag-item,
.tags-links a,
.wp-block-tag-cloud a {
    margin-right: 5px;
    margin-bottom: 10px;
    padding: 14px 25px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    background: #ffdc0e;
    border: none;
    font-size: 15px !important;
    line-height: 1.7;
    color: #000;
    font-weight: 700;
    transition: 0.3s;
    border-radius: 50px;
    -webkit-border-radius: 50px;
}

.content-sidebar ul.menu {
    position: relative;
    height: auto;
    transform: none;
    opacity: 1;
    display: block;
    background: 0 0;
}

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption,
.wp-block-video figcaption,
.wp-caption-text {
    max-width: 100%;
    margin: 0;
    padding: 5px 10px 0;
    text-align: center;
    font-size: 0.9em;
    font-style: italic;
    opacity: 0.7;
}

.wp-block-button {
    margin-bottom: 20px;
}

.post-content .gallery .gallery-item {
    margin: 0;
    padding: 15px;
    display: inline-block;
    vertical-align: top;
    width: 33.333%;
    text-align: center;
}

.post-content .gallery.gallery-columns-2 .gallery-item {
    width: 50%;
}

.post-content .gallery.gallery-columns-3 .gallery-item {
    width: 33.333%;
}

.post-content .gallery.gallery-columns-4 .gallery-item {
    width: 25%;
}

.post-content .gallery.gallery-columns-5 .gallery-item {
    width: 20%;
}

.content-sidebar .search-form,
.search-form,
.widget_product_search,
.wp-block-search,
.wp-block-search .wp-block-search__button {
    position: relative;
    max-width: 300px;
}

.content-sidebar .search-form input[type="submit"],
.search-form input[type="submit"],
.widget_product_search input[type="submit"],
.wp-block-search .wp-block-search__button,
.wp-block-search input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    opacity: 1;
    font-size: 0;
    cursor: pointer;
    border: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3e%3cpath d='M62.9 56.5l-17-13.8c7.2-9.9 6.1-23.7-2.7-32.5C38.4 5.3 32 2.7 25.3 2.7s-13 2.6-17.8 7.4S0 21.3 0 28s2.7 13.1 7.5 17.9c5.1 5.1 11.5 7.5 17.9 7.5 6.1 0 12.3-2.1 17.1-6.7l17.3 14.1c.5.5 1.1.5 1.6.5.8 0 1.6-.3 2.1-1.1.8-1 .8-2.6-.6-3.7zM25.3 48c-5.3 0-10.4-2.1-14.1-5.9-3.7-3.7-5.9-8.8-5.9-14.1s2.1-10.4 5.9-14.1S20 8 25.3 8s10.4 2.1 14.1 5.9 5.9 8.8 5.9 14.1-2.1 10.4-5.9 14.1c-3.7 3.8-8.7 5.9-14.1 5.9z'/%3e%3c/svg%3e ") center center/18px no-repeat;
}

.wp-block-search {
    position: relative;
    max-width: 100%;
}

.comment-item__text .wp-block-archives,
.post-content .wp-block-archives {
    margin: 2rem 0;
}

.wp-block-latest-comments__comment {
    line-height: 1.3;
}

.wp-block-latest-comments__comment a {
    font-weight: 700;
}

.wp-block-latest-comments__comment-excerpt {
    margin-bottom: 1.9rem;
}

.wp-block-latest-comments__comment-excerpt p {
    margin-top: 0 !important;
    font-size: 1.05rem;
    line-height: 1.5;
}

.archive-item .title,
h1,
h2,
h3,
h4,
h5,
h6 {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;

}

.post-content::after {
    clear: both;
    position: relative;
    display: block;
    content: "";
}

@media (max-width: 1024px) {

    blockquote,
    blockquote p {
        font-size: 18px;
        line-height: 1.7;
    }

    .content-sidebar {
        padding-left: 0;
    }

    .col-sidebar {
        margin-top: 3rem;
    }

    .onovo-post-comments,
    .onovo-post-wrapper {
        padding: 0;
    }

    blockquote {
        padding: 130px 30px 30px;
    }

    blockquote::before {
        top: 30px;
        left: 30px;
    }

    .onovo-post-pic img {
        height: 480px;
    }

    .onovo-archive-post,
    .onovo-post {
        padding: 80px 0 0;
    }

    .onovo-contact-info {
        margin-top: 40px;
    }

    .onovo-team-detail>.row {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .onovo-team-detail .team-detail-img {
        margin-bottom: 30px;
    }

    .comment .comment-item__reply a:focus,
    .comment .comment-item__reply a:focus::before,
    .comment .comment-item__reply a:hover,
    .comment .comment-item__reply a:hover::before,
    .onovo-filter.filter--default ul li button.item--active {
        background: #ffdc0e;
    }
}

@media (max-width: 767px) {
    .onovo-breadcrums {
        margin-top: 30px;
    }

    .onovo-post-pic img {
        height: 280px;
    }

    .onovo-post-bottom-content {
        padding: 24px;
    }

    .onovo-post-categories span,
    .onovo-post-socials span,
    .onovo-post-tags span {
        margin-right: 0;
        margin-bottom: 5px;
        display: block;
    }

    .onovo-post-categories,
    .onovo-post-socials,
    .onovo-post-tags {
        line-height: 1.7;
    }

    .onovo-post-tags:last-child {
        margin-bottom: -5px;
    }

    .comment-item__photo {
        margin: 0;
        padding: 20px;
        border: none;
    }

    .comment .comment-item__photo img {
        max-width: 64px;
        width: 64px;
        height: 64px;
    }

    .comment .comment-item__content {
        padding-top: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        margin-left: 100px;
    }

    .comment .comment-item__name {
        font-size: 18px;
        display: block;
    }

    .comment .comment-item__sent {
        margin: 5px 0 0;
    }

    .comment__title small {
        margin-left: 0;
        font-size: 16px;
    }

    .onovo-social-2 ul li a {
        width: 48px;
        height: 48px;
    }

    .onovo-custom-gallery .col-md-6:first-child,
    .onovo-custom-gallery .col-md-6:nth-child(10),
    .onovo-custom-gallery .col-md-6:nth-child(4),
    .onovo-custom-gallery .col-md-6:nth-child(5),
    .onovo-custom-gallery .col-md-6:nth-child(8) {
        transform: none;
    }

    .onovo-page-navigation {
        margin: 40px 0 0;
    }

    .onovo-archive-post,
    .onovo-post {
        padding: 70px 0 0;
    }

    .content-sidebar .widget {
        padding: 30px;
    }

    .col-sidebar .tagcloud a,
    .onovo-post-tags a,
    .sidebar__tag-item,
    .tags-links a,
    .wp-block-tag-cloud a {
        padding: 10px 15px;
        font-size: 14px !important;
    }

    .page-links .post-page-numbers,
    .pager a,
    .pager span {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .onovo-blog-item.archive-item {
        margin-bottom: 50px;
        padding-bottom: 30px;
    }

    .onovo-blog-item.archive-item .title {
        font-size: 26px;
    }

    .post-content table td,
    .post-content table th {
        padding: 10px;
    }

    .post-content tbody,
    .post-content td,
    .post-content tfoot,
    .post-content th,
    .post-content thead,
    .post-content tr {
        display: block;
        margin: -1px;
    }

    .post-content th {
        display: none;
    }

    .comment__title {
        margin-bottom: 15px;
    }

    .post-content .gallery.gallery-columns-2 .gallery-item,
    .post-content .gallery.gallery-columns-3 .gallery-item,
    .post-content .gallery.gallery-columns-4 .gallery-item {
        width: 50%;
    }

    .onovo-form-box {
        padding: 40px;
    }

    .onovo-team-detail>.row>div {
        padding: 0;
    }
}


.section-ticker-about {
    min-height: 320px;
    padding: 120px 0;
    position: relative;
}


.textAbout {
    position: relative;

    .full-height {
        height: 100%;
    }

    .container {
        /*width: min(100% - 25px, 1470px);*/
        margin-inline: auto;
        position: relative;
        z-index: 5;
    }


    .dec_cirlce {
        position: absolute;
        top: 40px;
        right: 0;
        width: min(240px, 20dvw);
        height: min(240px, 20dvw);
        transform: translateX(50%);
        z-index: 5;
    }

    .dec_cirlce span {
        position: absolute;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        z-index: 2;
        background: #ffffff;
        margin: -40px 0 0 -40px;
        animation: sharedec_rotate2 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
        border: 2px solid rgb(0 0 0 / 5%);
    }

    .dec_cirlce:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        z-index: 1;
        box-shadow: 0px 0px 0px 86px #000;
        animation: sharedec_rotate 5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
        border: 2px dotted rgb(0 0 0 / 5%);
    }

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

    .line-item {
        float: left;
        width: 20%;
        height: 100%;
        box-sizing: border-box;
        border-right: 1px solid rgba(153, 153, 153, 0.1);
        position: relative;
    }

    .line-item:first-child:before {
        content: "";
        position: absolute;
        top: 0;
        right: -2px;
        width: 4px;
        height: 30px;
        animation: scroll3 8s ease-out infinite;
    }

    .line-item:last-child:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: -2px;
        width: 4px;
        height: 30px;
        animation: scroll2 6s ease-out infinite;
    }

    @keyframes scroll3 {
        0% {
            opacity: 1;
            top: 0;
        }

        50% {
            top: 50%;
        }

        100% {
            top: 100%;
            opacity: 0.5;
        }
    }

    @keyframes scroll2 {
        0% {
            opacity: 1;
            bottom: 0;
        }

        50% {
            bottom: 50%;
        }

        100% {
            bottom: 100%;
            opacity: 0.5;
        }
    }

    .line-item:first-child {
        border-left: 1px solid rgba(153, 153, 153, 0.09);
    }

    .about_row {
        display: flex;
        flex-direction: row;
    }

    .about-img-hotifer {
        position: absolute;
        right: -60px;
        bottom: 20px;
        width: 280px;
        padding: 35px 30px;
        z-index: 11;
        color: #fff;
        text-align: left;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    }

    .about-img-hotifer:before {
        font-family: Font Awesome\5 Pro;
        content: "\f10e";
        bottom: 30px;
        right: 20px;
        position: absolute;
        color: #fff;
        font-size: 19px;
        font-weight: bold;
    }

    .about-img-hotifer h4 {
        padding-bottom: 6px;
        font-size: 14px;
    }

    .about-wrap p {
        text-align: justify;
    }

    .about-img-hotifer p {
        color: #fff;
        font-size: 13px;
        margin-bottom: 10px;
        text-align: left;
    }

    .block_text {
        width: 60%;
        position: relative;
        padding: 60px 60px 0 0;
    }

    .block_img {
        width: 40%;
        position: relative;
    }

    .block_img img {
        position: relative;
        z-index: 3;
    }

    .block_img:before {
        content: "";
        position: absolute;
        left: -14px;
        bottom: -14px;
        width: 30%;
        height: 30%;
        z-index: 1;
    }

    .block_img:after {
        content: "";
        position: absolute;
        right: -15px;
        top: 30px;
        width: 30px;
        height: 30px;
        z-index: 3;
    }

    .block_text h2 {
        text-align: left;
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        color: #393939;
        padding-bottom: 30px;
        position: relative;
        font-family: "Orbitron", sans-serif;
    }

    .ticker-wrap {
        overflow: hidden;
        margin-right: 5%;
    }

    .ticker {
        /*margin-top: 50px;*/
        font-size: 60px;
        font-family: "Orbitron", sans-serif;
        font-weight: 800;
        overflow: hidden;
        word-wrap: normal;
        height: 80px;
        text-transform: uppercase;
        text-align: left;
        white-space: nowrap;
        animation: content-marquee 25s infinite linear;
        padding-left: 1dvw;
        color: #000;
    }

    .content-marquee-outer {
        margin-left: calc(50% - 50dvw) !important;
        margin-right: calc(50% - 50dvw) !important;
        max-width: 1000% !important;
        width: 100dvw !important;
    }

    .content-marquee-inner {
        position: relative;
        float: left;
        z-index: 0;
    }

    .ticker:after {
        content: attr(data-text);
        padding-left: 1dvw;
    }
}

@keyframes content-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*Template Colors*/
#pages .inline-facts-container:after,
#pages .section-dec,
#pages .share-container:before,
#pages .reval-image:before,
#pages .promo-video-btn:after,
#pages .bg-reval_wrap:before,
#pages .dec_cirlce:not(.dot-yellow) span,
#pages .loading-spinner:before {
    border-top-color: #000 !important;
    border-bottom-color: #000 !important;
}

#pages .dec_cirlce:not(.dot-yellow):before,
#pages .loading-spinner:after {
    border-left-color: #000 !important;
    border-right-color: #000 !important;
}

#pages .dec_cirlce.dot-yellow:before {
    border-left-color: var(--primary-color) !important;
    border-right-color: var(--primary-color) !important;
    box-shadow: 0px 0px 0px 86px #ffffff0d;
}

#pages .dec_cirlce.dot-yellow span {
    background-color: var(--primary-color);
}


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

.line-item {
    float: left;
    width: 20%;
    height: 100%;
    box-sizing: border-box;
    border-right: 1px solid rgba(153, 153, 153, 0.1);
    position: relative;
}

.line-item:first-child:before {
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    width: 4px;
    height: 30px;
    animation: scroll3 8s ease-out infinite;
}

.line-item:last-child:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 4px;
    height: 30px;
    animation: scroll2 6s ease-out infinite;
}

@keyframes scroll3 {
    0% {
        opacity: 1;
        top: 0;
    }

    50% {
        top: 50%;
    }

    100% {
        top: 100%;
        opacity: 0.5;
    }
}

@keyframes scroll2 {
    0% {
        opacity: 1;
        bottom: 0;
    }

    50% {
        bottom: 50%;
    }

    100% {
        bottom: 100%;
        opacity: 0.5;
    }
}

.line-item:first-child {
    border-left: 1px solid rgba(153, 153, 153, 0.09);
}


/* PROMOTIONS */
/* FLEX GALLERY */
#gallery2 .oxy-gallery-item .oxy-gallery-item-contents {
    visibility: hidden;
}

.oxy-gallery.oxy-gallery-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.oxy-gallery-flex .oxy-gallery-item {
    overflow: hidden;
    flex: auto;

}

.oxy-gallery-flex .oxy-gallery-item-sizer {
    position: relative;
}

.oxy-gallery-flex .oxy-gallery-item-contents {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    margin: 0;
}

.oxy-gallery-flex .oxy-gallery-item-contents img {
    width: 100%;
    height: 100%;
    opacity: 0;
}


/* MASONRY GALLERY */

.oxy-gallery.oxy-gallery-masonry {
    display: block;
    overflow: auto;
}

.oxy-gallery-masonry .oxy-gallery-item {
    break-inside: avoid;
    display: block;
    line-height: 0;
    position: relative;
}

.oxy-gallery-masonry figure.oxy-gallery-item-contents {
    margin: 0;
}

.oxy-gallery-masonry .oxy-gallery-item .oxy-gallery-item-contents img {
    max-width: 100%;
}

.oxy-gallery-masonry .oxy-gallery-item .oxy-gallery-item-contents figcaption {
    display: none;
}

/* GRID GALLERY */
.oxy-gallery-grid .oxy-gallery-item {
    overflow: hidden;
    flex: auto;
    position: relative;
}

.oxy-gallery-grid .oxy-gallery-item-contents {
    margin: 0;
}

.oxy-gallery-grid .oxy-gallery-item-contents img {
    width: 100%;
    height: auto;
}

.oxy-gallery-grid .oxy-gallery-item .oxy-gallery-item-contents figcaption {
    display: none;
}

#gallery2.oxy-gallery.oxy-gallery-masonry {
    column-width: 250px;
    column-count: 3;
    column-gap: 10px;
}

#gallery2.oxy-gallery-masonry .oxy-gallery-item {
    margin-bottom: 10px;
}

#gallery2.oxy-gallery-captions .oxy-gallery-item .oxy-gallery-item-contents figcaption:not(:empty) {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.75);
    /* caption background color */
    padding: 1em;
    color: #ffffff;
    /* caption text color */
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    font-size: 1em;
    text-align: center;
    line-height: var(--oxy-small-line-height);
    /*pointer-events: none;*/
    transition: 0.3s ease-in-out opacity;
    display: block;
}


#gallery2.oxy-gallery-captions .oxy-gallery-item .oxy-gallery-item-contents figcaption:not(:empty) {
    opacity: 0;
}

#gallery2.oxy-gallery-captions .oxy-gallery-item:hover .oxy-gallery-item-contents figcaption {
    opacity: 1;
}


/* hover effects */
#gallery2.oxy-gallery .oxy-gallery-item {
    transition: 0.3s ease-in-out opacity;
}

@media only screen and (max-width: 1699.98px) {
    .primary-navbar .navbar__sub-menu__nested {
        left: calc(100% - 24px);
    }

    .banner .banner-left-text {
        left: 35px;
        z-index: 9999;
    }

    .banner .banner-right-text {
        right: 35px;
        z-index: 9999;
    }

    /*.banner .banner__content {
        padding-left: 44px;
    }*/

    /* .banner-three .banner-three__slider-single {
        padding: 290px 0px 460px;
    }*/

    .banner-three .banner-three__slider-progress-wrapper {
        bottom: 260px;
    }

    .portfolio .portfolio__single-alt .arr {
        font-size: 56px;
        left: 40px;
        bottom: 40px;
    }

    .portfolio-three .slide-group {
        position: static;
        margin-top: 60px;
        justify-content: center;
        transform: translate(0px);
    }

    .testimonial .slide-group {
        right: 40px;
    }

    .service-t .slide-group {
        position: static;
        justify-content: center;
        transform: translate(0px);
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1439.98px) {
    .contact-m .contact-m__single {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 1399.98px) {

    /* h1,
    .h1,
    .light-title {
        font-size: 75px;
        line-height: 100px;
    }

    h2 {
        font-size: 40px;
        line-height: 50px;
    }

    h3 {
        font-size: 30px;
        line-height: 40px;
    }

    .light-title-lg {
        font-size: 24px;
        line-height: 34px;
    }

    .primary-navbar .navbar__item a,
    .primary-navbar .navbar__item button {
        font-size: 14px;
    }*/

    .banner .banner-one-thumb {
        max-width: 300px;
    }

    .banner-four .banner-four__title {
        max-width: 700px;
        padding-left: 180px;
    }

    .banner-four .banner-four__title h1 {
        text-align: start;
    }

    .banner-four .banner-four__title .frame,
    /*.site-footer .frame {
    margin: 0px 20px;
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    display: inline-flex;
  }
  .banner-four .banner-four__title .frame i,
  .site-footer .frame i {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }*/
    .portfolio .portfolio__single .portfolio__single-content h4 {
        font-size: 18px;
    }

    .blog-two .blog-two__slider-single .blog__single-content {
        padding: 40px 20px;
    }

    .work-steps .work-steps__single h5 {
        padding: 16px 20px;
        font-size: 16px;
    }

    .work-steps .work-steps__single .work-thumb-hover {
        width: 300px;
        height: 120px;
    }

    .work-steps .video-frame {
        width: 120px;
        min-width: 120px;
        height: 120px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .testimonial .slide-group {
        position: relative;
        inset: 0px;
        z-index: 9;
        flex-direction: row;
        margin-top: 40px;
        transform: translate(0px);
    }

    .testimonial .slide-group button {
        transform: rotate(0deg) !important;
    }

    .ux-process .service-f-single {
        padding-right: 100px;
    }
}


@media only screen and (max-width: 1199.98px) {
    .primary-navbar {
        padding: 21px 0px;
    }

    .primary-navbar .navbar__menu {
        display: none;
    }

    .tertiary--navbar {
        padding: 0px;
    }

    .mobile-menu {
        position: fixed;
        inset: 0px;
        overflow: hidden;
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
        transition: var(--transition);
        z-index: 9999;
        transition: all 0.6s ease-in-out;
        max-width: 400px;
        background-color: var(--black);
    }

    .mobile-menu .mobile-menu__header {
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
        padding: 0px 40px;
        justify-content: space-between;
    }

    .mobile-menu .close-mobile-menu {
        font-size: 36px;
    }

    .mobile-menu .mobile-menu__wrapper {
        position: fixed;
        inset: 0px;
        max-width: 400px;
        background-color: var(--black);
        z-index: 9999;
        padding: 60px 0px;
        /*height: 100dvh;*/
        min-height: 100dvh;
        overflow-y: auto;
        overflow-x: clip;
        display: flex;
        flex-direction: column;
        transition: 0.6s ease-in-out;
        transition-delay: 0.6s;
        gap: 60px;
        transform: translateY(100%);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu .mobile-menu__wrapper::-webkit-scrollbar {
        width: 0px;
    }

    .mobile-menu .mobile-menu__list>ul {
        flex-direction: column;
    }

    .mobile-menu .mobile-menu__list>ul>li>a,
    .mobile-menu .mobile-menu__list>ul>li button {
        border-bottom: 1px solid #414141;
    }

    .mobile-menu .mobile-menu__list>ul>li:nth-of-type(1) {
        border-top: 1px solid #414141;
    }

    .mobile-menu .navbar__item {
        width: 100%;
        transition: var(--transition);
    }

    .mobile-menu .navbar__item a,
    .mobile-menu .navbar__item button {
        color: var(--white);
        padding: 20px 80px 20px 40px;
        line-height: 1;
        font-size: 16px;
    }

    .mobile-menu .navbar__item a:hover,
    .mobile-menu .navbar__item button:hover {
        color: var(--primary-color);
    }

    .mobile-menu .navbar__item a::after,
    .mobile-menu .navbar__item button::after {
        transition: none;
    }

    .mobile-menu .nav-fade {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.7s ease-in-out !important;
    }

    .mobile-menu .navbar__item--has-children .navbar__dropdown-label::after {
        content: "+";
        font-family: "Font Awesome 6 Pro";
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        height: 100%;
        width: 60px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transform: rotate(0deg);
        border-left: 1px solid #414141;
    }

    .mobile-menu .navbar__item--has-children:hover .navbar__dropdown-label::after {
        transform: rotate(0deg);
    }

    .mobile-menu .navbar__item-active {
        color: var(--primary-color) !important;
    }

    .mobile-menu .navbar__item-active::after {
        content: "" !important;
        font-family: "Font Awesome 6 Pro" !important;
    }

    .mobile-menu .navbar__sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        width: 100%;
        max-width: 100%;
        padding: 0px;
        display: none;
        transition: none;
        background-color: rgba(0, 0, 0, 0);
        border-radius: 0px;
    }

    .mobile-menu .navbar__sub-menu::before {
        content: none;
    }

    .mobile-menu .navbar__sub-menu a,
    .mobile-menu .navbar__sub-menu button {
        color: var(--white);
        padding: 20px 40px;
        font-size: 14px;
        border-bottom: 1px solid #414141;
    }

    .mobile-menu .navbar__sub-menu a::before,
    .mobile-menu .navbar__sub-menu button::before {
        content: none;
    }

    .mobile-menu .navbar__sub-menu li:nth-last-of-type(1) a,
    .mobile-menu .navbar__sub-menu li:nth-last-of-type(1) button {
        border-bottom: 1px solid #414141;
    }

    .mobile-menu .mobile-menu__options {
        padding: 0px 40px;
    }

    .mobile-menu .mobile-menu__options a,
    .mobile-menu .mobile-menu__options button {
        width: 100%;
    }

    .mobile-menu .mobile-menu__social {
        transition: var(--transition);
        padding: 0px 40px;
    }

    .mobile-menu .mobile-menu__social a {
        font-size: 20px;
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu__backdrop {
        background-color: #302d2b;
        position: fixed;
        inset: 0px;
        width: 100%;
        height: 100%;
        z-index: 999;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.6s ease-in-out;
        cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
            progress;
    }

    .mobile-menu__backdrop-active {
        transform: translateY(0px);
        opacity: 1;
        visibility: visible;
    }

    .show-menu {
        transform: translateX(0px);
        opacity: 1;
        visibility: visible;
    }

    .show-menu .mobile-menu__wrapper {
        transform: translateY(0px);
        opacity: 1;
        visibility: visible;
    }

    .show-menu .nav-fade {
        animation: navLinkFade 0.5s ease forwards;
        transition: all 0.7s ease-in-out !important;
    }

    .nav-fade-active {
        animation: navLinkFade 1s ease reverse !important;
    }

    .agency .agency__content {
        padding-left: 0px;
    }

    .banner-two .banner-two__content .banner-two__content-cta {
        gap: 30px;
    }

    .cta-s .footer__single-form .input-email {
        gap: 0px;
    }

    .cta-s .footer__single-form .input-email input {
        padding: 16px 30px;
    }

    .cta-s .footer__single-form .input-email button {
        width: 60px;
        min-width: 60px;
        font-size: 16px;
    }

    .footer-two .footer__copyright ul {
        gap: 16px;
        row-gap: 10px;
    }

    .footer-three .footer-three__group {
        padding-left: 0px;
    }

    .work-steps .work-three {
        margin-top: 60px;
    }

    .work-steps .work-four {
        margin-top: 120px;
    }

    .work-steps .video-frame {
        top: 28%;
        right: 20%;
    }

    .ux-process .body-cn {
        max-width: 480px;
    }

    .project-sl .thumb {
        margin-bottom: 60px;
    }

    .project-sl .content h2 {
        height: 260px;
    }

    .project-d .quote-pj {
        padding-right: 0px;
    }

    .project-d .quote-pj .secondary-text {
        font-size: 20px;
    }

    .project-d .quote-pj .cont {
        max-width: 600px;
    }

    .faq .accordion .accordion-body {
        padding: 0px 20px 30px;
    }

    .faq .accordion h5 button {
        padding: 30px 20px;
    }

    #pages .banner-three .attract-hover {
        display: none;

    }
}


@media only screen and (max-width: 1023px) {
    #pages .banner__content h1 {
        word-break: break-word;
    }

    /*.banner .banner__content {
        transform: translateY(-50px);
    }*/

    #pages .banner__content .no-mobile {
        display: none;
    }

}

@media only screen and (max-width: 991.98px) {
    /*.primary-text {
        font-size: 16px;
    }

    h1,
    .h1,
    .light-title {
        font-size: 40px;
        line-height: 60px;
    }

    h2 {
        font-size: 30px;
        line-height: 40px;
    }

    h3,
    .light-title-lg {
        font-size: 24px;
        line-height: 34px;
    }*/

    .cursor-inner,
    .cursor-outer {
        display: none;
    }

    .section {
        padding: 100px 0px;
    }

    .section__cta {
        margin-top: 40px;
    }

    .section__content-cta {
        margin-top: 40px;
    }

    .banner .banner-one-thumb {
        top: 160px;
        left: 70%;
    }

    .banner-three .banner-three__slider-single {
        /*padding: 220px 0px 560px;*/

        & .text-right.btn-commercial {
            bottom: 67px;
            position: absolute;
            right: 67px;
        }
    }

    .banner-three .banner-three__slider-progress,
    .banner-three .banner-three__content {
        padding-left: 80px;
    }

    .banner-four {
        padding: 200px 0px 100px;
    }

    .banner-five .banner-five__wrapper {
        padding: 160px 0px 100px;
        gap: 30px;
    }

    .banner-five .banner-five__single {
        min-width: 280px;
        width: 280px;
    }

    .banner-five .projects-s__single h4 {
        font-size: 20px;
    }

    .banner .banner__content {
        padding-left: 0px;
    }

    .cmn-banner {
        padding: 160px 0px 100px;
    }

    .cmn-banner .title {
        margin-top: -8px;
    }


    /*.banner .interval {
    display: flex;
    align-items: center;
    gap: 44px;
    margin-left: 0px;
    flex-wrap: wrap;
  }*/

    .agency .agency__content {
        padding-left: 0px;
    }

    .portfolio .portfolio__text-slider,
    .portfolio-two .portfolio__text-slider {
        margin-bottom: 40px;
    }

    .portfolio .portfolio__text-slider-single h2,
    .portfolio-two .portfolio__text-slider-single h2 {
        margin-top: -14px;
    }

    .testimonial .testimonial__text-slider {
        margin-bottom: 40px;
    }

    .testimonial .testimonial__text-slider-single h2 {
        margin-top: -14px;
    }

    .next-page .next__text-slider-single h2 {
        margin-top: -10px;
        margin-bottom: -10px;
    }

    .banner-two {
        padding: 180px 0px 100px;
    }

    .banner-two .banner-two__meta {
        gap: 30px;
        row-gap: 40px;
    }

    .banner-two .banner-two__meta .cta {
        gap: 30px;
        row-gap: 30px;
    }

    .banner-two .thumb img {
        max-width: calc(100dvw - 30px);
    }

    .banner-two .banner-two__content .banner-two__content-cta {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .award .award__thumb img {
        max-width: 100%;
    }

    .service-f .service-f-single {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 60px;
    }

    .service-f .service-f-single .p-sm {
        display: none !important;
    }

    .team-slider-s .team-r .slide-group {
        position: static;
        transform: translate(0px);
        margin-top: 40px;
        justify-content: center;
        display: flex;
    }

    .ux-process .service-f-single {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 60px;
    }

    .ux-process .body-cn {
        max-width: 100%;
    }

    .project-sl .project-sl__single {
        padding: 0px 15px;
        max-width: 280px;
        min-width: 280px;
        width: 100%;
    }

    .team-m .team-m__single .thumb img {
        width: 100%;
    }

    .team-m .team-m__single .thumb .thumb__content {
        display: block;
        height: 110px;
        padding: 20px;
        width: calc(100% - 60px);
    }

    .team-m .team-m__single .thumb .thumb__content .info p {
        font-size: 14px;
    }

    .team-m .team-m__single .thumb:hover .thumb__content {
        height: 200px;
    }

    .faq .faq__thumb {
        padding-right: 0px;
    }
}

/*@media only screen and (max-width: 900.98px) {
    .banner__content h1 {
        font-size: 65px;
        line-height: 85px;
    }

}*/

@media only screen and (max-width: 889.99px) {
    svg#motionLogo {
        width: 100%;
        max-width: none;
        height: auto;
    }

    .tertiary--navbar .open-offcanvas-nav {
        padding: 13px 14px;
    }

    .tertiary--navbar .tertiary-cta .btn,
    .tertiary--navbar .tertiary-cta .btn:hover {
        border: none;
        border-radius: 0;
        padding: 9px 20px;
        font-size: 1.1rem;
        letter-spacing: 1.2px;
    }

    /*.primary-navbar .navbar {
    .navbar__logo {
      padding: 16px 15px 8px 2px;
    }
  }*/
}

@media only screen and (max-width: 767.98px) {

    .flipCard:not(.second-team) {
        height: calc(45dvw);
        max-height: 500px;
    }

    .flipCard.second-team {
        height: calc(35dvw);
        max-height: 450px;
    }

    .onovo-team-item .image {
        height: calc(25dvw);
        max-height: 325px;
    }

    .tertiary--navbar .navbar {
        gap: 24px;
    }

    .tertiary--navbar .tertiary-cta {
        margin-left: 24px;
        min-width: 302.19px;
    }

    .offcanvas-nav .offcanvas-menu .offcanvas-menu__wrapper {
        padding: 60px 0px;
    }

    .offcanvas-nav .offcanvas-menu .navbar__item a,
    .offcanvas-nav .offcanvas-menu .navbar__item button {
        font-size: 16px;
    }

    .offcanvas-nav .offcanvas-menu .navbar__sub-menu a,
    .offcanvas-nav .offcanvas-menu .navbar__sub-menu button {
        font-size: 14px;
    }

    .offcanvas-nav .offcanvas-menu .offcanvas-menu__social {
        gap: 16px;
    }

    .offcanvas-nav .offcanvas-menu .offcanvas-menu__social a {
        width: 46px;
        min-width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .offcanvas-nav .offcanvas-menu .offcanvas-menu__list,
    .offcanvas-nav .offcanvas-menu .offcanvas-menu__options,
    .offcanvas-nav .offcanvas-menu .offcanvas-menu__social {
        max-width: 320px;
    }

    .progress-wrap {
        bottom: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .progress-wrap span {
        width: 30px;
        height: 30px;
    }

    .banner .video-frame {
        width: 140px;
        min-width: 140px;
        height: 140px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .banner .banner__content {
        /* margin-top: -16px;*/
        padding-left: 0px;
    }



    .banner .banner-one-thumb {
        top: 240px;
        left: 60%;
        max-width: 200px;
    }

    .banner__content.banner-top-page {

        h1,
        .h1 {
            padding-top: 50%;
        }
    }

    .banner .banner__content-inner .cta {
        -moz-column-gap: 24px;
        column-gap: 24px;
    }

    /*.banner-three .banner-three__slider-single {
        padding: 200px 0px 660px;
    }*/


    /*.banner .interval {
        display: flex;
        align-items: center;
        gap: 22px;
        margin-left: 0px;
        flex-wrap: wrap;
    }*/

    .banner .banner__content-inner {
        max-width: 356px;
        margin-top: 50px;
        text-align: start;
        padding-left: 0;
        display: none;

        & p {
            margin: 15px 0 0 0;
            font-size: 22px;
            color: #000;
        }
    }


    /*.banner__content h1 {
        font-size: 50px;
        line-height: 65px;
    }*/

    .banner .banner-right-text {
        position: absolute;
        top: 115px !important;
        right: 25px;
    }

    #pages .banner-social-text.banner-left-text {
        bottom: 40px;
        left: 27px;
    }

    #cd-lateral-nav .menu-header {
        padding: 8px 30px;
    }

    .video-modal .video-frame {
        width: 140px;
        min-width: 140px;
        height: 140px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .video-modal .video-frame i {
        width: 80px;
        min-width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .work-steps .work-steps__single {
        padding-top: 140px;
    }

    .work-steps .work-steps__single:hover span::after {
        height: 40px;
    }

    .work-steps .work-two {
        margin-top: 0px;
    }

    .work-steps .work-three {
        margin-top: 40px;
    }

    .work-steps .work-four {
        margin-top: 40px;
    }

    .team-slider-s .team-s__slider-single {
        width: auto;
        max-width: 100%;
    }

    .team-slider-s .team-s__slider-single .thumb img {
        width: 100%;
    }

    .team-slider-s .team-s__slider-single .thumb .thumb__content {
        display: block;
        height: 110px;
        padding: 20px;
        width: calc(100% - 60px);
    }

    .team-slider-s .team-s__slider-single .thumb .thumb__content .info p {
        font-size: 14px;
    }

    .team-slider-s .team-s__slider-single .thumb:hover .thumb__content {
        height: 200px;
    }

    .team-slider-s .slick-center-active {
        width: auto;
    }

    .team-slider-s .slick-center-active .team-wrap {
        padding: 0px;
    }

    .team-slider-s .slick-center-active .content {
        display: none !important;
    }

    .team-slider-s .slick-center-active .thumb {
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .team-slider-s .slick-center-active .thumb img {
        height: auto !important;
        min-height: auto !important;
    }

    .mission-s .mission-s__single--alt {
        padding: 60px 20px;
    }

    .project-d .poster__slider-wrapper .slide-group {
        justify-content: center;
        transform: translate(0px);
        position: static;
        margin-top: 40px;
    }

    .portfolio-m .portfolio-m__single .content {
        padding: 40px 30px;
    }

    .footer-two .social a {
        width: 70px;
        min-width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-two .social a i {
        display: flex;
        transform: translateX(0px) !important;
        opacity: 1;
        visibility: visible;
    }

    .footer-two .social a span {
        display: none;
    }

    .footer-two .social a:hover i {
        animation: none;
    }
}



@media only screen and (max-width: 424.98px) {
    .banner-five .banner-five__single {
        padding: 0px 15px;
    }

    .blog-details .blog-details__pagination .latest-single {
        flex-direction: column;
        align-items: flex-start;
    }

    .thumb-radio {
        padding: 80px 20px;
    }

    .thumb-radio .radio {
        margin: 0px 0px;
    }
}




.text-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*---------------- 3. Padding - Margin - Height  ----------------*/

.gap-140 {
    padding: 140px 100px;
}

.gap-top-140 {
    padding-top: 140px;
}

.gap-top-130 {
    padding-top: 130px;
}

.gap-top-120 {
    padding-top: 120px;
}

.gap-top-110 {
    padding-top: 110px;
}

.gap-top-100 {
    padding-top: 100px;
}

.gap-top-90 {
    padding-top: 90px;
}

.gap-top-80 {
    padding-top: 80px;
}

.gap-top-70 {
    padding-top: 70px;
}

.gap-top-60,
.onovo-service-item.onovo-service-no-icon .onovo-service-item-inner {
    padding-top: 60px;
}

.gap-top-50,
.onovo-hero.hero--two .container {
    padding-top: 50px;
}

.gap-top-0,
.gap-top-40 {
    padding-top: 40px;
}

.gap-bottom-140 {
    padding-bottom: 140px;
}

.gap-bottom-130 {
    padding-bottom: 130px;
}

.gap-bottom-120 {
    padding-bottom: 120px;
}

.gap-bottom-110 {
    padding-bottom: 110px;
}

.gap-bottom-100 {
    padding-bottom: 100px;
}

.gap-bottom-80 {
    padding-bottom: 80px;
}

.gap-bottom-70 {
    padding-bottom: 70px;
}

.gap-bottom-60 {
    padding-bottom: 60px;
}

.gap-bottom-50 {
    padding-bottom: 50px;
}

.gap-bottom-40 {
    padding-bottom: 40px;
}

.gap-bottom-0,
.search-form label {
    padding-bottom: 0;
}

@media screen and (max-width: 1067px) {
    .tertiary--navbar .tertiary-cta {
        display: none !important;
    }

    /* #home .banner__content h1 {
        font-size: 88px;
        gap: 20px;
        line-height: 100px;
    }*/

    /*.banner-three .banner-three__slider-single {
        &:not(.banner-page) {
            padding: 250px 0px 180px;
        }
    }*/



}

/*@media screen and (max-width: 950px) {
    .banner-three .banner-three__slider-single {
        &:not(.banner-page) {
            padding: 180px 0px 180px;
        }
    }
}*/




@media (max-width: 1024px) {
    .gap-140 {
        padding: 140px 20px;
    }
}

@media (max-width: 767px) {
    .gap-140 {
        padding: 80px 50px;
    }

    .gap-top-140 {
        padding-top: 80px;
    }

    .gap-top-130 {
        padding-top: 65px;
    }

    .gap-top-120 {
        padding-top: 60px;
    }

    .gap-top-110 {
        padding-top: 55px;
    }

    .gap-top-100 {
        padding-top: 50px;
    }

    .gap-top-90 {
        padding-top: 45px;
    }

    .gap-top-80 {
        padding-top: 40px;
    }

    .gap-top-70 {
        padding-top: 35px;
    }

    .gap-top-40,
    .gap-top-50,
    .gap-top-60 {
        padding-top: 30px;
    }

    .gap-bottom-140 {
        padding-bottom: 80px;
    }

    .gap-bottom-130 {
        padding-bottom: 65px;
    }

    .gap-bottom-120 {
        padding-bottom: 60px;
    }

    .gap-bottom-110 {
        padding-bottom: 55px;
    }

    .gap-bottom-100 {
        padding-bottom: 50px;
    }

    .gap-bottom-90 {
        padding-bottom: 45px;
    }

    .gap-bottom-80 {
        padding-bottom: 40px;
    }

    .gap-bottom-70 {
        padding-bottom: 35px;
    }

    .gap-bottom-40,
    .gap-bottom-50,
    .gap-bottom-60 {
        padding-bottom: 30px;
    }

    .l-circles div {
        width: 14.3dvw;
        /* Ajustement pour les écrans plus petits */
        height: 14.3dvw;
    }
}

.m-free-25 {
    height: 25px;
}

.m-free-50 {
    height: 50px;
}

.m-free-75 {
    height: 75px;
}

.m-free-80 {
    height: 80px;
}

.mp-free-80 {
    height: 80px;
    padding-top: 80px;
}

.m-free-100 {
    height: 100px;
}

.m-free-120 {
    height: 120px;
}

.m-free-160 {
    height: 160px;
}

.m-free-200 {
    height: 200px;
}

.m-free-250 {
    height: 250px;
}

.m-spacer-border {
    height: 15px;
}

.m-spacer-logo {
    height: 28px;
}

.m-spacer-20 {
    height: 1.25rem;
}

.m-spacer-40 {
    height: 2.5rem;
}

.m-spacer-60 {
    height: 3.75rem;
}

.m-spacer-75 {
    height: 4.6875rem;
}

.m-spacer-90 {
    height: 5.625rem;
}

.m-spacer-100 {
    height: 6.25rem;
}

.m-spacer-125 {
    height: 7.8125rem;
}

.m-spacer-150 {
    height: 9.375rem;
}

.m-spacer-180 {
    height: 11.25rem;
}

.m-spacer-200 {
    height: 12.5rem;
}

.m-spacer-225 {
    height: 14.0625rem;
}

.m-spacer-250 {
    height: 15.625rem;
}

.m-spacer-275 {
    height: 17.1875rem;
}

.m-spacer-300 {
    height: 18.75rem;
}

@media (max-width: 768px) {
    .m-spacer-20 {
        height: 1rem;
    }

    .m-spacer-40 {
        height: 2rem;
    }

    .m-spacer-60 {
        height: 3rem;
    }

    .m-spacer-75 {
        height: 3.75rem;
    }

    .m-spacer-90 {
        height: 4.5rem;
    }

    .m-spacer-100 {
        height: 5rem;
    }

    .m-spacer-125 {
        height: 6rem;
    }

    .m-spacer-150 {
        height: 7rem;
    }

    .m-spacer-180 {
        height: 8rem;
    }

    .m-spacer-200 {
        height: 9rem;
    }

    .m-spacer-225 {
        height: 9rem;
    }

    .m-spacer-250 {
        height: 10rem;
    }

    .m-spacer-275 {
        height: 11rem;
    }

    .m-spacer-300 {
        height: 12rem;
    }
}


.margin-start {
    margin-left: 110px;
}

.margin-end {
    margin-right: 110px;
}

.full-width {
    margin: 0 80px;
}

.m-section-100 {
    margin-bottom: 6.5rem
}

.mtb-section-100 {
    margin-bottom: 6.5rem;
    margin-top: 6.5rem;
}

.m-section-150 {
    margin-bottom: 10rem
}

.mtb-section-150 {
    margin-bottom: 10rem;
    margin-top: 10rem;
}

.m-section-200 {
    margin-bottom: 12.5rem
}

.mtb-section-200 {
    margin-bottom: 12.5rem;
    margin-top: 12.5rem;
}

.mt-6 {
    margin-top: 3.75rem
}

.mt-7 {
    margin-top: 4.5rem
}

.mt-8 {
    margin-top: 6rem
}

.mt-9 {
    margin-top: 7.5rem
}

.mt-10 {
    margin-top: 10rem
}

.mt-11 {
    margin-top: 12rem
}

.mt-12 {
    margin-top: 15rem
}

.mb-6 {
    margin-bottom: 3.75rem
}

.mb-7 {
    margin-bottom: 4.5rem
}

.mb-8 {
    margin-bottom: 6rem
}

.mb-9 {
    margin-bottom: 7.5rem
}

.mb-10 {
    margin-bottom: 10rem
}

.mb-11 {
    margin-bottom: 12rem
}

.mb-12 {
    margin-bottom: 15rem
}

.p-6 {
    padding: 4.5rem
}

.pt-6 {
    padding-top: 3.75rem
}

.pt-7 {
    padding-top: 4.5rem
}

.pt-8 {
    padding-top: 6rem
}

.pt-9 {
    padding-top: 7.5rem
}

.pt-10 {
    padding-top: 9.4rem
}

.pt-11 {
    padding-top: 12rem
}

.pt-12 {
    padding-top: 15rem
}

.pt-13 {
    padding-top: 18.75rem
}

.pb-6 {
    padding-bottom: 3.75rem
}

.pb-7 {
    padding-bottom: 4.38rem
}

.pb-8 {
    padding-bottom: 6.25rem
}

.pb-9 {
    padding-bottom: 7.5rem
}

.pb-10 {
    padding-bottom: 9.4rem
}

.pb-11 {
    padding-bottom: 12.5rem
}

.pb-12 {
    padding-bottom: 15rem
}

.pb-13 {
    padding-bottom: 18.75rem
}

.pl-6 {
    padding-left: 3.75rem
}

.pr-7 {
    padding-right: 4.38rem
}

.vh-10 {
    height: 10vh !important
}

.vh-15 {
    height: 15vh !important
}

.vh-20 {
    height: 20vh !important
}

.vh-25 {
    height: 25vh !important
}

.vh-30 {
    height: 30vh !important
}

.vh-35 {
    height: 35vh !important
}

.vh-40 {
    height: 40vh !important
}

.vh-45 {
    height: 45vh !important
}

.vh-50 {
    height: 50vh !important
}

.vh-55 {
    height: 55vh !important
}

.vh-60 {
    height: 60vh !important
}

.vhmax-60 {
    max-height: 60vh !important
}

.vh-65 {
    height: 65vh !important
}

.vh-70 {
    height: 70vh !important
}

.vh-75 {
    height: 75vh !important
}

.vh-80 {
    height: 80vh !important
}

.vh-85 {
    height: 85vh !important
}

.vh-90 {
    height: 90vh !important
}

.vh-95 {
    height: 95vh !important
}

.vhmax-80 {
    height: 80vh !important;
    max-height: 80vh !important;
}

.vhmax-90 {
    height: 90vh !important;
    max-height: 90vh !important;
}

.vhmax-100 {
    height: 100vh !important;
    max-height: 100vh !important;
}


.vh-110 {
    height: 110vh !important
}

.vh-120 {
    height: 120vh !important
}

@media (max-width: 992px) {
    .vh-10 {
        height: 10dvh !important
    }

    .vh-15 {
        height: 15dvh !important
    }

    .vh-20 {
        height: 20dvh !important
    }

    .vh-25 {
        height: 25dvh !important
    }

    .vh-30 {
        height: 30dvh !important
    }

    .vh-35 {
        height: 35dvh !important
    }

    .vh-40 {
        height: 40dvh !important
    }

    .vh-45 {
        height: 45dvh !important
    }

    .vh-50 {
        height: 50dvh !important
    }

    .vh-55 {
        height: 55dvh !important
    }

    .vh-60 {
        height: 60dvh !important
    }

    .vhmax-60 {
        max-height: 60dvh !important
    }

    .vh-65 {
        height: 65dvh !important
    }

    .vh-70 {
        height: 70dvh !important
    }

    .vh-75 {
        height: 75dvh !important
    }

    .vh-80 {
        height: 80dvh !important
    }

    .vh-85 {
        height: 85dvh !important
    }

    .vh-90 {
        height: 90dvh !important
    }

    .vh-95 {
        height: 95dvh !important
    }

    .vh-100 {
        height: 100dvh !important
    }

    .vh-110 {
        height: 110dvh !important
    }

    .vh-120 {
        height: 120dvh !important
    }
}


.h-104 {
    height: 104% !important
}

.h-105 {
    height: 105% !important
}

.h-110 {
    height: 110% !important
}

.h-120 {
    height: 120% !important
}

.h-130 {
    height: 130% !important
}

.h-140 {
    height: 140% !important
}

.h-150 {
    height: 150% !important
}

.h-160 {
    height: 160% !important
}

.h-170 {
    height: 170% !important
}

.h-50vw {
    height: 50dvw !important
}

.h-65vw {
    height: 65dvw !important
}

.h-70vw {
    height: 70dvw !important
}

.h-80vw {
    height: 80dvw !important
}

.w-15 {
    width: 15% !important
}

.w-30 {
    width: 30% !important
}

.w-40 {
    width: 40% !important
}

.w-60 {
    width: 60% !important
}

.w-70 {
    width: 70% !important
}

.w-80 {
    width: 80% !important
}

.w-90 {
    width: 90% !important
}

.mw-200 {
    max-width: 200px
}

.mw-250 {
    max-width: 250px
}

.mw-300 {
    max-width: 300px
}

.mw-375 {
    max-width: 375px
}

.mw-400 {
    max-width: 400px
}

.mw-500 {
    max-width: 500px
}

.mw-600 {
    max-width: 600px
}

.mw-700 {
    max-width: 700px
}

.mw-800 {
    max-width: 800px
}

.maxw-200 {
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
}

.maxw-250 {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
}

.maxw-300 {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}

.maxw-375 {
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
}

.maxw-400 {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.maxw-500 {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.maxw-600 {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.maxw-700 {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.maxw-750 {
    max-width: 39.0625dvw;
    width: 100%;
    margin: 0 auto;
}

.maxw-800 {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.maxw-1000 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}



.hidden-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}




/*---------------- 6. Navigation Menu ----------------*/

.nav-icon {
    cursor: pointer;
    pointer-events: auto;
}

.js-toolbar {
    width: 100%;
    transition: ease .6s;
    color: var(--light-1);
    padding: 15px 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.js-toolbar-fix {
    background-color: var(--dark-4);
    color: var(--light-1);
}

.logo {
    font-size: var(--fs-h5);
    line-height: 1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .m-section-100 {
        margin-bottom: 5rem
    }

    .m-section-150 {
        margin-bottom: 7rem
    }

    .mtb-section-150 {
        margin-bottom: 7rem;
        margin-top: 7rem;
    }

    .m-section-200 {
        margin-bottom: 9rem
    }

    .mt-6 {
        margin-top: 2.75rem
    }

    .mt-8 {
        margin-top: 5rem
    }

    .mt-9 {
        margin-top: 6rem
    }

    .mt-10 {
        margin-top: 7rem
    }

    .mt-11 {
        margin-top: 9rem
    }

    .mt-12 {
        margin-top: 11rem
    }

    .mb-6 {
        margin-bottom: 2.75rem
    }

    .mb-8 {
        margin-bottom: 5rem
    }

    .mb-9 {
        margin-bottom: 6rem
    }

    .mb-10 {
        margin-bottom: 7rem
    }

    .mb-11 {
        margin-bottom: 9rem
    }

    .mb-12 {
        margin-bottom: 11rem
    }

    .no-mobile {
        display: none
    }

    #pages .banner-social-text {
        display: none;
    }
}



@media (max-width: 992px) {
    .js-toolbar {
        padding: 12px 16px;
    }

    .logo {
        font-size: 1.8rem;
    }
}

.nav-icon-wrap {
    width: 40px;
    height: 16px;
    position: relative;
    overflow: hidden;
}

.nav-line-t,
.nav-line-c,
.nav-line-b {
    content: "";
    position: absolute;
    background: var(--light-1);
    transition: 1s cubic-bezier(0.9, 0.5, 0.2, 1);
}

.nav-line-t {
    width: 27px;
    left: 0;
    top: 0;
    height: 1px;
}

.nav-line-c {
    width: 30px;
    right: 0;
    top: 7px;
    height: 2px;
}

.nav-line-b {
    width: 30px;
    left: 0;
    bottom: 0;
    height: 1px;
}

.nav-icon-wrap:hover .nav-line-t {
    background: var(--brown-1);
    transform: translateX(50%) scaleX(0.3) !important;
}

.nav-icon-wrap:hover .nav-line-c {
    background: var(--brown-1);
    transform: translateX(-10%) scaleX(1.5) !important;
}

.nav-icon-wrap:hover .nav-line-b {
    background: var(--brown-1);
    transform: translateX(-50%) scaleX(2) !important;
}

.js-nav-active .nav-line-t,
.js-nav-active .nav-line-c,
.js-nav-active .nav-line-b {
    transform: translateX(-50%) scaleX(0) !important;
}

.nav-icon-close:before,
.nav-icon-close:after {
    content: "";
    width: 100%;
    left: 0;
    position: absolute;
    background: var(--light-1);
    transform: translateX(-10%) scaleX(0);
    transform-origin: left;
    transition: 1s cubic-bezier(0.9, 0.5, 0.2, 1);
}

.nav-icon-close:before {
    height: 1px;
    top: 0;
    transition-delay: 0s;
}

.nav-icon-close:after {
    height: 2px;
    top: 7px;
    transition-delay: 0.15s;
}

.js-nav-active .nav-icon-close:before,
.js-nav-active .nav-icon-close:after {
    transform: translateX(-10%) scaleX(1);
}

.js-nav-active .nav-icon-close:before {
    transition-delay: 1.15s;
}

.js-nav-active .nav-icon-close:after {
    transition-delay: 1s;
}

.nav-icon-wrap:hover .nav-icon-close:before,
.nav-icon-wrap:hover .nav-icon-close:after {
    background: var(--brown-1);
    transform: translateX(30%) scaleX(0.3);
    transition-delay: 0s;
}

.nav-container {
    overflow: hidden;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    pointer-events: none;
    background-color: var(--dark-4);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 1.2s cubic-bezier(0.86, 0, 0.1, 1);
    transition-delay: 1.2s;
}

.js-nav-active .nav-container {
    pointer-events: auto;
    transform: scaleY(1);
    transition-delay: 0s;
}

.nav-v {
    position: relative;
    min-height: 100dvh;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-v .nav-link-in.nav-menu-link a {
    font-size: clamp(3.06rem, 7.5dvw + 0.19rem, 6.19rem);
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--light-1)
}

.nav-v .nav-link-in.nav-submenu-link a {
    font-size: clamp(2.53rem, 3.41dvw + 1.15rem, 9.33rem);
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--light-1)
}


@media screen and (min-width: 320px) and (max-width: 1820px) and (min-aspect-ratio: 5/8) and (max-height: 500px) {
    .nav-v .nav-link-in.nav-menu-link a {
        font-size: 3rem;
    }

    .nav-v .nav-link-in.nav-submenu-link a {
        font-size: 2.5rem;
    }
}

.nav-h {
    position: relative;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.nav-h .nav-link-out {
    display: inline-block;
    margin-right: 20px;
}

.nav-h .nav-link-in.nav-menu-link a {
    font-size: var(--fs-h2);
    text-transform: uppercase;
    line-height: 1.1;
}

.nav-h .nav-link-in.nav-submenu-link a {
    font-size: var(--fs-h3);
    text-transform: uppercase;
    line-height: 1.1;
}

.nav-link-out {
    overflow: hidden;
}

.nav-link-in {
    display: inline-block;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transform: translateY(105%);
    transition: all 1s cubic-bezier(0.65, -0.05, 0.4, 1);
}

.nav-link-out:nth-child(1) .nav-link-in {
    transition-delay: 0.2s;
}

.nav-link-out:nth-child(2) .nav-link-in {
    transition-delay: 0.3s;
}

.nav-link-out:nth-child(3) .nav-link-in {
    transition-delay: 0.4s;
}

.nav-link-out:nth-child(4) .nav-link-in {
    transition-delay: 0.5s;
}

.nav-link-out:nth-child(5) .nav-link-in {
    transition-delay: 0.6s;
}

.nav-link-out:nth-child(6) .nav-link-in {
    transition-delay: 0.7s;
}

.nav-link-out:nth-child(7) .nav-link-in {
    transition-delay: 0.8s;
}

.nav-link-out:nth-child(8) .nav-link-in {
    transition-delay: 0.9s;
}

.nav-link-out:nth-child(9) .nav-link-in {
    transition-delay: 1s;
}

.nav-link-out:nth-child(10) .nav-link-in {
    transition-delay: 1.1s;
}

.nav-link-out:nth-child(11) .nav-link-in {
    transition-delay: 1.2s;
}

.nav-link-out:nth-child(12) .nav-link-in {
    transition-delay: 1.3s;
}

.nav-link-out:nth-child(13) .nav-link-in {
    transition-delay: 1.4s;
}

.nav-link-out:nth-child(14) .nav-link-in {
    transition-delay: 1.5s;
}

.js-nav-active .nav-link-in {
    transform: translateY(0);
    transition: all 1.5s cubic-bezier(0.65, -0.05, 0.4, 1);
}

.js-nav-active .nav-link-out:nth-child(1) .nav-link-in {
    transition-delay: 0.6s;
}

.js-nav-active .nav-link-out:nth-child(2) .nav-link-in {
    transition-delay: 0.7s;
}

.js-nav-active .nav-link-out:nth-child(3) .nav-link-in {
    transition-delay: 0.8s;
}

.js-nav-active .nav-link-out:nth-child(4) .nav-link-in {
    transition-delay: 0.9s;
}

.js-nav-active .nav-link-out:nth-child(5) .nav-link-in {
    transition-delay: 1s;
}

.js-nav-active .nav-link-out:nth-child(6) .nav-link-in {
    transition-delay: 1.1s;
}

.js-nav-active .nav-link-out:nth-child(7) .nav-link-in {
    transition-delay: 1.2s;
}

.js-nav-active .nav-link-out:nth-child(8) .nav-link-in {
    transition-delay: 1.3s;
}

.js-nav-active .nav-link-out:nth-child(9) .nav-link-in {
    transition-delay: 1.4s;
}

.js-nav-active .nav-link-out:nth-child(10) .nav-link-in {
    transition-delay: 1.5s;
}

.js-nav-active .nav-link-out:nth-child(11) .nav-link-in {
    transition-delay: 1.6;
}

.js-nav-active .nav-link-out:nth-child(12) .nav-link-in {
    transition-delay: 1.7s;
}

.js-nav-active .nav-link-out:nth-child(13) .nav-link-in {
    transition-delay: 1.8s;
}

.js-nav-active .nav-link-out:nth-child(14) .nav-link-in {
    transition-delay: 1.9s;
}

.submenu {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
}

.js-submenu.js-submenu-active {
    pointer-events: auto;
}

.submenu-close {
    overflow: hidden;
    width: 100px;
    height: 50px;
    position: absolute;
    top: 15%;
    right: 10%;
    z-index: 3;
}

.submenu-close-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    pointer-events: none;
    transform: translateX(100%);
    transition: all 1.7s cubic-bezier(0.65, -0.05, 0.4, 1);
}

.js-nav-active .js-submenu-active .submenu-close-img {
    pointer-events: auto;
    transform: translateX(0);
    transition: all 1.2s cubic-bezier(0.65, -0.05, 0.4, 1);
    transition-delay: 0.8s;
}

.submenu-close .submenu-close-img img {
    width: 60px;
    height: 38px;
    margin-left: 25px;
    transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.submenu-close .submenu-close-img:hover img {
    transform: translateX(-10px);
}

@media only screen and (max-width: 900px) {
    .submenu-close {
        width: 100px;
        height: 50px;
        right: 30px;
        transform: translateX(0);
    }

    .submenu-close .submenu-close-img img {
        width: 50px;
        height: 31px;
    }
}

.submenu-hidden .nav-link-in-out {
    display: inline-block;
    transform: translateX(0);
    transition: all 1.2s cubic-bezier(0.65, -0.05, 0.4, 1);
}

.js-submenu-active .submenu-hidden .nav-link-in-out {
    transform: translateX(-105%);
}

.js-submenu .nav-link-in-out {
    display: inline-block;
    transform: translateY(105%);
    transition: all 1.2s cubic-bezier(0.65, -0.05, 0.4, 1);
}

.js-submenu.js-submenu-active .nav-link-in-out {
    transform: translateY(0);
}

.js-submenu-active .submenu-hidden {
    pointer-events: none;
}

.js-submenu-active .nav-link-out:nth-child(1) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(1) .nav-link-in-out {
    transition-delay: 0s;
}

.js-submenu-active .nav-link-out:nth-child(2) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(2) .nav-link-in-out {
    transition-delay: 0.1s;
}

.js-submenu-active .nav-link-out:nth-child(3) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(3) .nav-link-in-out {
    transition-delay: 0.2s;
}

.js-submenu-active .nav-link-out:nth-child(4) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(4) .nav-link-in-out {
    transition-delay: 0.3s;
}

.js-submenu-active .nav-link-out:nth-child(5) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(5) .nav-link-in-out {
    transition-delay: 0.4s;
}

.js-submenu-active .nav-link-out:nth-child(6) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(6) .nav-link-in-out {
    transition-delay: 0.5s;
}

.js-submenu-active .nav-link-out:nth-child(7) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(7) .nav-link-in-out {
    transition-delay: 0.6s;
}

.js-submenu-active .nav-link-out:nth-child(8) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(8) .nav-link-in-out {
    transition-delay: 0.7s;
}

.js-submenu-active .nav-link-out:nth-child(9) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(9) .nav-link-in-out {
    transition-delay: 0.8s;
}

.js-submenu-active .nav-link-out:nth-child(10) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(10) .nav-link-in-out {
    transition-delay: 0.9s;
}

.js-submenu-active .nav-link-out:nth-child(11) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(11) .nav-link-in-out {
    transition-delay: 1s;
}

.js-submenu-active .nav-link-out:nth-child(12) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(12) .nav-link-in-out {
    transition-delay: 1.1s;
}

.js-submenu-active .nav-link-out:nth-child(13) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(13) .nav-link-in-out {
    transition-delay: 1.2s;
}

.js-submenu-active .nav-link-out:nth-child(14) .submenu-hidden .nav-link-in-out,
.js-submenu .nav-link-out:nth-child(14) .nav-link-in-out {
    transition-delay: 1.3s;
}

.nav-link-out:nth-child(1) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(1) .nav-link-in-out {
    transition-delay: 1.2s;
}

.nav-link-out:nth-child(2) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(2) .nav-link-in-out {
    transition-delay: 1.3s;
}

.nav-link-out:nth-child(3) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(3) .nav-link-in-out {
    transition-delay: 1.4s;
}

.nav-link-out:nth-child(4) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(4) .nav-link-in-out {
    transition-delay: 1.5s;
}

.nav-link-out:nth-child(5) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(5) .nav-link-in-out {
    transition-delay: 1.6s;
}

.nav-link-out:nth-child(6) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(6) .nav-link-in-out {
    transition-delay: 1.7s;
}

.nav-link-out:nth-child(7) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(7) .nav-link-in-out {
    transition-delay: 1.8s;
}

.nav-link-out:nth-child(8) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(8) .nav-link-in-out {
    transition-delay: 1.9s;
}

.nav-link-out:nth-child(9) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(9) .nav-link-in-out {
    transition-delay: 2s;
}

.nav-link-out:nth-child(10) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(10) .nav-link-in-out {
    transition-delay: 2.1s;
}

.nav-link-out:nth-child(11) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(11) .nav-link-in-out {
    transition-delay: 2.2s;
}

.nav-link-out:nth-child(12) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(12) .nav-link-in-out {
    transition-delay: 2.3s;
}

.nav-link-out:nth-child(13) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(13) .nav-link-in-out {
    transition-delay: 2.4s;
}

.nav-link-out:nth-child(14) .submenu-hidden .nav-link-in-out,
.js-submenu.js-submenu-active .nav-link-out:nth-child(14) .nav-link-in-out {
    transition-delay: 2.5s;
}

/*---------------- 7. Cursor ----------------*/

.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    contain: layout style size;
    pointer-events: none;
    will-change: transform;
    transition: opacity 0.3s, color 0.4s;
}

.cb-cursor:before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    display: block;
    width: 48px;
    height: 48px;
    transform: scale(0);
    background: currentColor;
    border-radius: 50%;
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
    -o-transition: opacity 0.1s, -o-transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out, opacity 0.1s, -moz-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.1s;
    transition: transform 0.3s ease-in-out, opacity 0.1s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}

.cb-cursor-text {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transform: scale(0) rotate(10deg);
    opacity: 0;
    color: var(--dark-1);
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    font-family: var(--font-roboto);
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
    transition: opacity 0.4s, -webkit-transform 0.3s;
    -o-transition: opacity 0.4s, -o-transform 0.3s;
    -moz-transition: opacity 0.4s, transform 0.3s, -moz-transform 0.3s;
    transition: opacity 0.4s, transform 0.3s;
    transition: opacity 0.4s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}

@supports (mix-blend-mode: exclusion) {

    .cb-cursor.-exclusion,
    .cb-cursor.-opaque {
        mix-blend-mode: exclusion;
    }

    .cb-cursor.-exclusion:before,
    .cb-cursor.-opaque:before {
        background: var(--light-2);
    }
}

.cb-cursor.-normal,
.cb-cursor.-text {
    mix-blend-mode: normal;
}

.cb-cursor.-normal:before,
.cb-cursor.-text:before {
    background: currentColor;
}

.cb-cursor.-inverse {
    color: var(--light-2);
}

.cb-cursor.-visible:before {
    transform: scale(0.2);
}

.cb-cursor.-visible.-active:before {
    transform: scale(0.23);
    transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
    transform: scale(0.15);
}

.cb-cursor.-text:before {
    opacity: 0.85;
    transform: scale(1.7);
}

.cb-cursor.-text .cb-cursor-text {
    opacity: 1;
    transform: scale(1);
}

.cb-cursor.-text.-active:before {
    transform: scale(1.6);
    transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
    transform: scale(1.32)
}

.cb-cursor.-opaque.-active:before {
    transform: scale(1.2)
}

.cb-cursor.-sm:before {
    transform: scale(0.5)
}

.cb-cursor.-md:before {
    transform: scale(1.32)
}

.cb-cursor.-lg:before {
    transform: scale(2.2)
}

.cb-cursor.-xl:before {
    transform: scale(3.5)
}

.cb-cursor.-xxl:before {
    transform: scale(5)
}

.cb-cursor.-hidden:before {
    transform: scale(0)
}

.cb-cursor.-circle-light:before {
    border: 1px solid var(--light-1);
    color: transparent;
}

.cb-cursor.-circle-dark:before {
    border: 1px solid var(--dark-3);
    color: transparent;
}

.cb-cursor.-circle-brown:before {
    border: 1px solid var(--brown-1);
    color: transparent;
}

.-text-light .cb-cursor-text {
    color: var(--light-1);
}

.-text-brown .cb-cursor-text {
    color: var(--brown-2);
}

.-text-dark .cb-cursor-text {
    color: var(--dark-2);
}

.-xl .cb-cursor-text {
    font-size: 1.2rem;
    line-height: 1.1;
}

.-xxl .cb-cursor-text {
    font-size: 1.5rem;
    line-height: 1.1;
}

.-light-1 {
    color: rgba(204, 208, 219, 0.80)
}

.-light-2 {
    color: rgba(255, 255, 255, 1)
}

.-dark-1 {
    color: rgba(34, 34, 34, 0.90);
}

.-dark-2 {
    color: rgba(0, 0, 0, 1);
}

.-brown {
    color: rgba(170, 143, 110, 0.83)
}

@media only screen and (max-width: 767px) {
    .cb-cursor {
        display: none;
    }
}

/*---------------- 8. Slider ----------------*/

.slideshow-1,
.slideshow-2,
.slideshow-3,
.slideshow-4,
.slideshow-5 {
    width: 100%;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slideshow-1 {
    background-color: var(--dark-1)
}

.slideshow-2 {
    background-color: var(--dark-1)
}

.slideshow-3 {
    background-color: var(--dark-3)
}

.slideshow-4 {
    background-color: var(--dark-1)
}

.slideshow-5 {
    background-color: var(--dark-3)
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slides-border {
    border: 1.3rem solid var(--dark-1);
}

.slide-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.slide-current {
    opacity: 1;
    pointer-events: auto;
}

.slide-img {
    position: absolute;
    top: -100px;
    left: -100px;
    width: calc(100% + 200px);
    height: calc(100% + 200px);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.slide-img.slide-vid {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
}

.slide-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    pointer-events: none;
}

.slideshow-shape-1,
.slideshow-shape-2,
.slideshow-shape-3,
.slideshow-shape-4,
.slideshow-shape-5 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    pointer-events: none;
}

.slideshow-shape-1 {
    fill: var(--dark-1)
}

.slideshow-shape-2 {
    fill: var(--dark-1)
}

.slideshow-shape-3 {
    fill: var(--dark-3)
}

.slideshow-shape-4 {
    fill: var(--dark-1)
}

.slideshow-shape-5 {
    fill: var(--dark-3)
}

.slide-title {
    position: relative;
    font-size: 16dvw;
    color: var(--light-1);
    margin: 0;
}

.slide-desc {
    position: relative;
    font-size: var(--fs-h6);
    color: var(--light-1);
    font-family: var(--font-body);
    margin: 0 0 1em 0;
    padding: 0 1em;
    text-align: center;
    cursor: default;
}

.slide-link {
    position: relative;
    font-size: 1.3rem;
    font-family: var(--font-body);
    color: var(--light-1);
}

.slidenav {
    position: absolute;
    width: 300px;
    margin-left: -150px;
    left: 50%;
    bottom: 40px;
    text-align: center;
    cursor: pointer;
    font-weight: 400;
}

.slidenav.slidenav-right {
    left: unset;
    right: 0;
    bottom: 40px;
}

.slidenav.slidenav-right {
    left: unset;
    right: 0;
    bottom: 40px;
}

.slidenav-item {
    font-size: 1.2rem;
    line-height: 1;
    font-family: var(--font-roboto);
    margin: 0 1rem;
    border: 0;
    color: var(--light-1);
}

.slidenav-item.slidenav-arrow {
    width: 40px;
    height: 25px;
    margin: 0 1rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .slides-border {
        border: 0rem solid;
    }

    .slide-desc {
        font-size: 1.5rem
    }

    .slide-link {
        font-size: 1.2rem
    }

    #pages .banner-container {
        padding-left: 0px;
        padding-right: 0px;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        margin-left: 40px;
        transform: translateY(0px);
    }




}

@media (min-width: 577px) {}

@media (max-width: 576px) {
    .slidenav {
        bottom: 100px;
    }

    .slidenav.slidenav-right {
        bottom: 100px;
    }

    .slidenav.slidenav-right {
        bottom: 100px;
    }
}

@media (max-width: 575.98px) {
    .m-section-100 {
        margin-bottom: 4rem
    }

    .m-section-150 {
        margin-bottom: 6rem
    }

    .mtb-section-150 {
        margin-bottom: 6rem;
        margin-top: 6rem;
    }

    .m-section-200 {
        margin-bottom: 8rem
    }

    .mt-6 {
        margin-top: 2rem
    }

    .mt-8 {
        margin-top: 2rem
    }

    .mt-9 {
        margin-top: 2rem
    }

    .mt-10 {
        margin-top: 2rem
    }

    .mt-11 {
        margin-top: 2rem
    }

    .mt-12 {
        margin-top: 2rem
    }

    .mb-6 {
        margin-bottom: 2rem
    }

    .mb-8 {
        margin-bottom: 2rem
    }

    .mb-9 {
        margin-bottom: 2rem
    }

    .mb-10 {
        margin-bottom: 2rem
    }

    .mb-11 {
        margin-bottom: 2rem
    }

    .mb-12 {
        margin-bottom: 2rem
    }

    /*WELCOME*/
    .section-welcome .container-top {
        .text {
            font-size: 2rem;
            transition: font-size 0.3s ease-in-out;
        }
    }

    #home .banner__content h1 {

        line-height: 1.1 !important;
        gap: 15px !important;
        padding: 0;
        margin-left: 10px !important;
        margin-right: 10px !important;

    }

    #home .banner .interval i {
        font-size: 52.13px !important;
    }

    #cerc-cover {
        display: block;
        position: absolute;
        right: 0;
        /* Aligne à droite */
        bottom: -7px;
        transform: translateX(50%);

        svg {
            display: block;
            margin: auto;
        }

        .dec_cirlce {
            width: 240px;
            height: 240px;
            bottom: -120px;
            right: -120px;
        }

    }


    #pages .dec_cirlce:before,
    #pages.loading-spinner:after {
        border-left-color: var(--primary-color) !important;
        border-right-color: var(--primary-color) !important;
        box-shadow: none !important;
    }

    #pages:not(.blog-page) .banner .interval i {
        transform: rotate(90deg);
    }

    #pages .banner-container,
    #home .banner-container {
        margin-left: 6px;
        margin-right: 7px;
    }

    .banner__content.banner-top-page {

        h1,
        .h1 {
            padding-left: 15px;
        }
    }

    /*.banner .banner__content {
        transform: translateY(-20.3dvh);
    }*/

    .banner .icon-arrow-top-right {
        display: none;
    }

    h1,
    .h1,
    .light-title {
        font-size: 24px;
        line-height: 40px;
    }

    h2 {
        font-size: 24px;
        line-height: 34px;
    }

    h3,
    .light-title-lg {
        font-size: 20px;
        line-height: 30px;
    }

    h4 {
        font-size: 18px;
        line-height: 28px;
    }

    h5 {
        font-size: 18px;
        line-height: 28px;
    }

    .gap-v-mobile {
        gap: 50px;
    }

    .mobile-menu {
        max-width: 320px;
    }

    .mobile-menu .mobile-menu__wrapper {
        max-width: 320px;
    }

    .mobile-menu .mobile-menu__header,
    .mobile-menu .mobile-menu__options,
    .mobile-menu .mobile-menu__social {
        padding: 0px 24px;
    }

    .mobile-menu .mobile-menu__social {
        gap: 16px;
    }

    .mobile-menu .mobile-menu__social a {
        width: 46px;
        min-width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .mobile-menu .navbar__item a,
    .mobile-menu .navbar__item button {
        font-size: 14px;
        padding: 20px 70px 20px 24px;
    }

    .secondary--navbar .open-offcanvas-nav {
        width: 60px;
        min-width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tertiary--navbar .open-offcanvas-nav {
        padding: 16px 13px 16px 13px;
        height: 59px;
        width: 79px;
    }

    .tertiary--navbar .navbar__options {
        gap: 0px;
        /*padding-top: 8px;*/
        z-index: 999999999999999999999;
    }

    .tertiary--navbar .open-offcanvas-nav:hover {
        /*background-color: transparent;*/
        background-color: #ffffff;
        color: var(--primary-color);
    }

    .tertiary--navbar .open-offcanvas-nav:hover {
        .burger__label--rotatecross .burger__line {
            background-color: #000;
        }
    }

    #cd-lateral-nav .menu-header {
        background-color: #ffdc0e;
        margin-bottom: 22px;
        text-transform: uppercase;
        font-weight: bold;
        color: #000;
        border-bottom: 1px dotted #333;
        padding: 10px 30px 0 30px;
        font-size: 2rem;
        letter-spacing: 1.2px;
        height: 59px;
    }


    /*#pages .banner-three {
        & #banner-action {
            &.btn-push{
                display: none;

                &.btn-push {
                    position: absolute;
                    left: 50%;
                    transform: translate(-50%, 18%);
                    transition: transform 0.3s ease-in-out;
                    bottom: -50px;
                    top: auto;

                    & svg {
                        display: none;
                    }

                    & span {
                        font-weight: 600;
                    }
                }
            }
        }
    }*/

    #pages .btn:not(.base__theme):not(.action-rounded) {
        padding-top: 30px;
        justify-content: flex-start;
    }


    .offcanvas-nav .offcanvas-menu::before {
        content: none;
    }

    .no-mobile {
        display: none;
    }

    .primary-navbar {
        & .col-12 {
            padding: 0;
        }
    }

    /*.banner {
    padding: 180px 0px 100px;
  }*/
    .banner h1 {
        letter-spacing: 1px;
    }

    .banner h1 .text-stroke {
        -webkit-text-stroke: 1.5px var(--black);
        letter-spacing: 1.5px;
    }

    #pages .banner h1 .text-stroke {
        display: none;
    }

    #home .primary-navbar {
        & .navbar {
            .navbar__logo {
                padding-top: 17px;
                padding-left: 20px;
            }
        }
    }


    #pages .primary-navbar {
        & .navbar {
            .navbar__logo {
                padding-top: 17px;
                padding-left: 20px;
            }
        }
    }

    #pages .banner-three {
        height: 100dvh;
        padding: 0px 3px;
    }

    .primary-navbar .navbar {
        padding: 0px !important;
        gap: 10px;
    }

    #pages .banner__content.banner-top-page {

        h1 span,
        .h1 span {
            font-size: 67px;
            line-height: 1;
            white-space: nowrap;
            transform: translateY(0px);
            margin-left: 0;

            &.slogan {
                white-space: normal;
                word-break: break-word;
                font-size: 35px;
            }
        }

        .interval .icon-arrow-top-right {
            display: none;
        }
    }

    /*.banner__content h1 span,
    .banner__content h1 strong {
        font-size: 16dvw;
        
    }*/

    .banner__content h1 span,
    .banner__content h1 strong {
        word-break: break-word;
        white-space: normal;
    }

    /*#pages .banner-three {
        height: 100dvh;
    }*/



    #cd-lateral-nav {
        top: 7px;
        width: 100%;
        right: 7px;
    }

    .containerAbout .panel {

        padding-top: 75px !important;
    }

    .testimonial-section {
        padding-top: 25px !important;
    }

    .section-welcome .row-intro {
        gap: 100px;
    }

    .section-welcome .container-top,
    .maxw-700 {
        width: auto;
    }

    .container:not(.container-footer):not(.banner-container) {
        max-width: 100%;
    }


    .section-welcome .rounded-end-4 {
        border-top-right-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }

    section:not(.banner):not(.v-center) {
        &.section-conseils {
            padding-top: 100px;
        }
    }

    #section-magic {
        display: none;
    }

    svg#motionLogo {
        width: 245px;
    }

    /*.banner-three .banner-three__slider-single {
        &:not(.banner-page) {
            padding: 120px 0px 180px !important;
        }
    }
*/
    .border-top,
    .border-bottom {
        height: 7px !important;
    }

    .border-left,
    .border-right {
        width: 7px !important;
    }

    .banner-three .banner-three__slider-single .text-right.btn-commercial {
        position: absolute;
        right: auto;
        bottom: 86px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);

    }



    header:has(+ nav.lateral-menu-is-open) .navbar__logo {
        opacity: 0 !important;
        pointer-events: none;
    }

    progress {
        height: 7px !important;
    }

    /*.effet-image {
        display: none;
    }*/

    .tertiary--navbar .navbar__options {
        gap: 0px;
        transform: translateY(7px);
        z-index: 999999999999999999999;
    }

    .open-offcanvas-nav.is-clicked {
        .burger__label--rotatecross .burger__line {
            background-color: #000;
        }
    }

    #pages .banner-three .container #home .banner .banner-left-text {
        display: none;
    }


    .banner .interval {
        gap: 16px;
        margin-left: 0px;
    }

    /*.banner .banner__content {
            margin-top: -10px;
        }

        .banner .banner__content-inner {
            margin-top: 24px;
        }*/

    .banner .banner__content-inner .cta {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 40px;
    }

    .banner .video-frame {
        position: relative;
        inset: unset;
        left: 15px;
        margin-top: 40px;
        width: 140px;
        min-width: 140px;
        height: 140px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner .star {
        left: 40px;
        top: 120px;
    }

    .banner-three .social {
        display: none;
    }

    .banner-three .banner-three__slider-progress,
    .banner-three .banner-three__content {
        padding-left: 0px;
    }

    .banner-three .banner-three__video img {
        min-height: 140px;
    }

    .banner-three .banner-three__video .video-frame {
        width: 60px;
        min-width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-four .banner-four__title {
        max-width: 300px;
    }

    .site-footer.sticky-footer {
        position: relative;
        padding-top: 150px !important;
    }



    footer {

        & .footer-column {
            min-width: 200px !important;
        }
    }

    footer .gap-5.footer-right {
        align-items: flex-start !important;
    }

    footer {
        .list-unstyled li {
            margin-bottom: 3px !important;
        }
    }

    .site-footer.footer-dark .footer-copyright {
        padding: 9px 0 15px 0;
        height: auto;

        & .copyright-link .footer-column {
            padding: 0;

            a {
                line-height: 18px;
            }
        }
    }

    /*.banner-four .banner-four__title .frame,
  .site-footer .frame {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    font-size: 20px;
  }
  .banner-four .banner-four__title .frame i,
  .site-footer .frame i {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }*/

    .banner-five .projects-s__single {
        padding: 20px;
    }

    .portfolio .portfolio__text-slider-single h2,
    .portfolio-two .portfolio__text-slider-single h2 {
        margin-top: -8px;
    }

    .portfolio .portfolio__text-slider-single:nth-of-type(even) h2,
    .portfolio-two .portfolio__text-slider-single:nth-of-type(even) h2 {
        -webkit-text-stroke: 0.5px var(--white);
    }

    .testimonial .testimonial__text-slider-single h2 {
        margin-top: -8px;
        -webkit-text-stroke: 0.5px var(--white);
    }

    .testimonial-two blockquote {
        font-size: 20px;
    }

    .next-page .next__text-slider-single h2 {
        margin-top: -6px;
        margin-bottom: -6px;
    }

    .next-page .next__text-slider-single:nth-of-type(even) h2 a {
        -webkit-text-stroke: 0.5px var(--white);
    }

    .award .award__content-meta {
        flex-wrap: wrap;
        row-gap: 40px;
    }

    .award .award__content-meta::before {
        content: none;
    }

    .award .award__content-meta .single::before {
        content: none;
    }

    .award .award__content-meta .single h4:nth-of-type(1) {
        margin-bottom: 16px;
    }

    .blog-two .blog__single-meta {
        gap: 16px;
    }

    .blog-two .blog__single-meta a,
    .blog-two .blog__single-meta p {
        font-size: 14px;
    }

    .work-steps .work-two {
        margin-top: 40px;
    }

    .cta-two .cta-two-wrapper {
        padding: 80px 20px;
    }

    .projects-s .projects-s__single {
        padding: 20px;
    }

    .service-t .service-t__slider-single {
        padding: 40px 24px;
    }

    .blog-main .blog-main__sidebar {
        padding: 30px 20px;
    }

    .blog-main .blog-main__sidebar .widget__list a,
    .blog-main .blog-main__sidebar .widget__tag a,
    .blog-main .blog-main__sidebar .widget__latest a {
        font-size: 14px !important;
    }

    .blog-main .blog-main__single {
        margin-bottom: 40px;
    }

    .blog-main .blog-main__single .thumb,
    .blog-main .blog-main__single .content {
        padding: 30px 20px;
    }

    .blog-details .bd-content {
        padding: 30px 20px;
    }

    .blog-details .bd-quote {
        padding: 40px 20px;
    }

    .custom-quote .custom-quote__right {
        animation-direction: normal;
    }

    .custom-quote .quote-wrapper {
        height: 1200px;
    }

    .form-group-wrapper {
        flex-direction: column;
        row-gap: 30px;
    }

    .form-group-wrapper .form-group-single {
        width: 100%;
    }

    .feedback-s .feedback-s__single {
        padding: 40px 30px;
    }

    .contact-m .contact-main__form {
        padding: 60px 30px;
    }

    .contact-m .contact-main__form .group-wrapper {
        flex-direction: column;
    }

    .contact-m .contact-main__form .group-wrapper .group-input {
        width: 100%;
    }

    .footer-four .cta-t a {
        padding: 30px 20px;
        gap: 20px;
    }

    /*#demo,
    #playground {
        display: none;
    }*/
}

/*---------------- 9. Image Overlay ----------------*/

.cover-img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cover-bg {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    z-index: 0;
}

.cover-bg-bottom {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 0;
}

.op-1 {
    opacity: 0.1
}

.op-2 {
    opacity: 0.2
}

.op-3 {
    opacity: 0.3
}

.op-4 {
    opacity: 0.4
}

.op-5 {
    opacity: 0.5
}

.op-6 {
    opacity: 0.6
}

.op-7 {
    opacity: 0.7
}

.op-8 {
    opacity: 0.8
}

.op-9 {
    opacity: 0.9
}

.img-ol-dark-2 img,
.img-ol-dark-3 img,
.img-ol-dark-4 img,
.img-ol-dark-5 img,
.img-ol-dark-6 img,
.img-ol-dark-7 img,
.img-ol-dark-8 img,
.img-ol-dark-9 img,
.img-ol-light-2 img,
.img-ol-light-3 img,
.img-ol-light-4 img,
.img-ol-light-5 img,
.img-ol-light-6 img,
.img-ol-light-7 img,
.img-ol-light-8 img,
.img-ol-light-9 img {
    mix-blend-mode: overlay;
}

.bg-ol-dark-2,
.bg-ol-dark-3,
.bg-ol-dark-4,
.bg-ol-dark-5,
.bg-ol-dark-6,
.bg-ol-dark-7,
.bg-ol-dark-8,
.bg-ol-dark-9,
.bg-ol-light-2,
.bg-ol-light-3,
.bg-ol-light-4,
.bg-ol-light-5,
.bg-ol-light-6,
.bg-ol-light-7,
.bg-ol-light-8,
.bg-ol-light-9 {
    background-blend-mode: overlay;
}

.bg-ol-dark-2,
.img-ol-dark-2 {
    background-color: rgba(0, 0, 0, 0.2);
}

.bg-ol-dark-3,
.img-ol-dark-3 {
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-ol-dark-4,
.img-ol-dark-4 {
    background-color: rgba(0, 0, 0, 0.4);
}

.bg-ol-dark-5,
.img-ol-dark-5 {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-ol-dark-6,
.img-ol-dark-6 {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-ol-dark-7,
.img-ol-dark-7 {
    background-color: rgba(0, 0, 0, 0.7);
}

.bg-ol-dark-8,
.img-ol-dark-8 {
    background-color: rgba(0, 0, 0, 0.8);
}

.bg-ol-dark-9,
.img-ol-dark-9 {
    background-color: rgba(0, 0, 0, 0.9);
}

.bg-ol-light-2,
.img-ol-light-2 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-ol-light-3,
.img-ol-light-3 {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-ol-light-4,
.img-ol-light-4 {
    background-color: rgba(255, 255, 255, 0.4);
}

.bg-ol-light-5,
.img-ol-light-5 {
    background-color: rgba(255, 255, 255, 0.5);
}

.bg-ol-light-6,
.img-ol-light-6 {
    background-color: rgba(255, 255, 255, 0.6);
}

.bg-ol-light-7,
.img-ol-light-7 {
    background-color: rgba(255, 255, 255, 0.7);
}

.bg-ol-light-8,
.img-ol-light-8 {
    background-color: rgba(255, 255, 255, 0.8);
}

.bg-ol-light-9,
.img-ol-light-9 {
    background-color: rgba(255, 255, 255, 0.9);
}

/*---------------- 10. Video ----------------*/

.jarallax,
.js-video-1,
.js-video-2,
.js-video-3,
.js-video-4,
.js-video-5,
.js-video-6,
.js-video-7,
.js-video-8,
.js-video-9,
.js-video-10,
.js-video-11,
.js-video-12 {
    position: relative;
    z-index: 0;
}

.jarallax>.jarallax-img,
.js-video-1>.jarallax-img,
.js-video-2>.jarallax-img,
.js-video-3>.jarallax-img,
.js-video-4>.jarallax-img,
.js-video-5>.jarallax-img,
.js-video-6>.jarallax-img,
.js-video-7>.jarallax-img,
.js-video-8>.jarallax-img,
.js-video-9>.jarallax-img,
.js-video-10>.jarallax-img,
.js-video-11>.jarallax-img,
.js-video-12>.jarallax-img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.js-video-1 {
    height: 13dvw
}



@media (max-width: 798px) {
    .js-video-1 {
        height: 30dvw
    }
}

.vid-size-3 {
    padding-top: 56.25%;
    min-height: 0;
    height: 0;
}

.vid-vh-60 {
    height: 60dvh
}

.vid-vh-70 {
    height: 70dvh
}

.vid-vh-80 {
    height: 80dvh
}

.vid-vh-100 {
    height: 100dvh
}

.btn-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-circle-1,
.btn-circle-2 {
    position: relative;
    margin: auto;
    z-index: 3;
    cursor: pointer;
    opacity: 1;
    border: 2px solid var(--light-1);
    transform: scale(1);
    transition: all 1s ease;
}

.btn-circle-1,
.btn-circle-2 {
    border-radius: 50%;
}

.btn-circle-sm {
    width: 80px;
    height: 80px;
}

.btn-circle-md {
    width: 110px;
    height: 110px;
}

.btn-circle-lg {
    width: 150px;
    height: 150px;
}

.btn-circle-xl {
    width: 180px;
    height: 180px;
}

.btn-circle-1 img,
.btn-circle-2 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
}

.btn-circle-1 img {
    width: 20px;
    margin-left: 4px;
}

.btn-circle-2 img {
    width: 10px;
    margin-left: 2px;
}

.btn-circle-1:hover,
.btn-circle-2:hover {
    transform: scale(1.2);
    opacity: 0;
}

.btn-circle-1.btn-bor-dark,
.btn-circle-2.btn-bor-dark {
    border-color: var(--dark-1);
}

.btn-circle-1.btn-bg-dark,
.btn-circle-2.btn-bg-dark {
    border-color: var(--dark-1);
    background-color: var(--dark-1);
}

.btn-circle-1.btn-bg-light,
.btn-circle-2.btn-bg-light {
    border-color: var(--light-1);
    background-color: var(--light-1);
}

/*---------------- 11. Parallax ----------------*/
.section-img-parallax {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background-color: black;
}

@supports (height: 100dvh) {
    .section-img-parallax {
        height: 100dvh;
        max-height: 100dvh;
    }
}

@media (min-width: 768px) {
    .section-img-parallax {
        height: 90dvh;
        max-height: 90dvh;
    }
}

.section-img-parallax img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    z-index: 0;
    backface-visibility: hidden;
}

.parallax-img-wrapper {
    filter: grayscale(100%);
    transition: filter 0.9s ease-in-out;
}


/*---------------- 11. Parallax ----------------*/




.js-parallax-scale {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-img-scale {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.parallax-img.text-on-bg {
    height: 70dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.parallax-img-mono {
    filter: grayscale(100%);
    transition: filter 0.9s ease-in-out;
}


/*---------------- 12. Animation Fade / Zoom ----------------*/

.js-fade,
.js-fade-left,
.js-fade-right {
    visibility: hidden;
}

.js-zoom-in,
.js-zoom-out {
    visibility: hidden;
    overflow: hidden;
}

.js-zoom-in-scroll,
.js-zoom-out-scroll {
    position: relative;
    width: 100%;
}

/*---------------- 13. Horizontal Scrolling ----------------*/

.js-scroll-horiz {
    white-space: nowrap;
    color: var(--brown-1);
}

.js-scroll-horiz .scroll-item-1,
.js-scroll-horiz .scroll-item-2 {
    display: inline-block;
    line-height: 1;
}

.js-scroll-horiz .scroll-item-1 {
    font-size: 13dvw;
    margin-right: 4dvw;
}

.js-scroll-horiz .scroll-item-2 {
    font-size: 5dvw;
    margin-top: -5dvw;
    margin-right: 2dvw;
}

.js-scroll-horiz .scroll-sponsor-1 {
    margin-right: -5rem;
}

.js-horiz-loop {
    width: 100dvw;
    height: 20dvw;
    position: relative;
    overflow: hidden;
}

.js-horiz-loop .wrap-horiz-loop {
    position: absolute;
    white-space: nowrap;
    padding: 0;
    will-change: transform;
    font-size: 15dvw;
}

.js-horiz-loop li {
    padding: 0;
    display: inline-block;
    margin-right: 30px;
}

.imgscroll {
    --imgscroll-height: 52dvw;
    height: var(--imgscroll-height);
    position: relative;
    overflow: hidden;
}

.imgscroll-wrap {
    width: 200%;
    --imgscrollwrap-height: var(--imgscroll-height);
    height: var(--imgscrollwrap-height);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.imgscroll-rotate .imgscroll-wrap {
    --imgscrollwrap-height: calc(var(--imgscroll-height) * 1.8);
    transform: translate3d(-50%, -50%, 0) rotate(22.5deg);
}

.imgscroll-line {
    display: flex;
}

.imgscroll-line-img {
    --tile-margin: 2dvw;
    flex: none;
    width: calc(16.6666% - var(--tile-margin) * 2);
    height: calc(var(--imgscrollwrap-height) / 3 - (3 * var(--tile-margin) / 2));
    margin: var(--tile-margin);
    background-size: cover;
    background-position: 50% 50%;
}

.imgscroll-rotate .imgscroll-line-img {
    --tile-margin: 1dvw;
    width: calc(16.6666% - var(--tile-margin) * 2);
    height: calc(var(--imgscrollwrap-height) / 5 - (4 * var(--tile-margin) / 2));
}

.text-scroll-h {
    position: absolute;
    font-size: 15dvw;
    width: 100dvw;
    margin: 0 5rem;
    z-index: 1;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-scroll-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-scroll-img .text-scroll-h {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--dark-1);
    color: var(--dark-1);
    position: absolute;
    z-index: 3;
}

.text-scroll-h.margin-t {
    margin-top: -6dvw;
}

.text-scroll-h.margin-b {
    margin-bottom: -17dvw;
}

/*---------------- 14. Scale Scrolling ----------------*/

.wrap-scale {
    position: relative;
    width: 100dvw;
    height: 100dvh;
}

.js-scale-scroll {
    width: 100dvw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 50% 50%;
}

.wrap-img-scale {
    height: 100%;
}

.wrap-img-scale img {
    display: block;
    height: 100%;
    margin: 0 auto;
}

.js-fade-scroll-2 {
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/*---------------- 15. Split Text ----------------*/

.js-split-lines-fade-up,
.js-split-lines-up,
.js-split-lines-left,
.js-split-words-up,
.js-split-chars-up,
.js-split-chars-letter-up,
.js-split-chars-left,
.js-split-rotate,
.js-split-chars-l {
    font-kerning: none;
    -webkit-text-rendering: optimizeSpeed;
    text-rendering: optimizeSpeed;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}


.js-split-rotate {
    visibility: hidden;
}

.js-split-rotate .char {
    opacity: 0;
    transform: translate3d(0, 80px, 0) rotateX(180deg) scale(0.8);
    display: inline-block;
}

@media (max-width: 767px) {
    .js-split-rotate .char {
        transform: translate3d(0, 40px, 0) rotateX(90deg) scale(0.9);
    }
}

.js-split-lines-up,
.js-split-lines-left,
.js-split-words-up,
.js-split-chars-up,
.js-split-chars-letter-up,
.js-split-chars-left,
.js-split-chars-l {
    overflow: hidden;
}

.split-outer {
    overflow: hidden;
}

.split-inner {
    display: inline-block;
    position: relative;
    height: auto;
    overflow: visible;
}

.split-inner .char {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
}

/*--------------- 16 Reveal Image -------------------*/

.js-reveal-img-l,
.js-reveal-img-r,
.js-reveal-parallax-l,
.js-reveal-parallax-r,
.js-reveal-img-v,
.js-reveal-img-rotate,
.js-reveal-img-l2 {
    position: relative;
    overflow: hidden;
}

.reveal-img-l,
.reveal-parallax-l,
.reveal-img-l2 {
    transform-origin: left;
}

.reveal-img-r,
.js-reveal-parallax-r {
    transform-origin: right;
}

.reveal-img-v {
    transform-origin: bottom;
}

.reveal-img-rotate {
    transform-origin: center;
}

/*---------------- 17. Lightbox ----------------*/

.glightbox-1,
.glightbox-2 {
    width: 100%;
}

@media (max-width:768px) {

    .glightbox-mobile .glightbox-container .gslide-description {
        padding: 5px 20px;
    }

    .glightbox-mobile .glightbox-container .gslide-title {
        color: #111;
        font-size: 2em
    }

    .glightbox-clean .gslide-description {
        background: rgba(255, 255, 255, 0.8) !important
    }

    .glightbox-clean .gslide-desc {
        font-size: 1em;
        color: #111;
    }

    .glightbox-mobile .glightbox-container .gslide-desc {
        color: #111
    }

}

/*---------------- 18. Image Hover Effect ----------------*/

.grid-hover {
    position: relative;
}

.grid-hover .hover-zoom {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid-hover .hover-zoom.op-4:hover:not(:focus) .hover-zoom__zoom {
    opacity: .4
}

.grid-hover .hover-zoom:hover:not(:focus) .hover-zoom__zoom {
    transform: scale(1.2);
}

.grid-hover .hover-zoom:hover:not(:focus) .hover-zoom__inner {
    transform: scale(.9);
}

.grid-hover .hover-zoom__inner {
    overflow: hidden
}

.grid-hover .hover-zoom__inner,
.grid-hover .hover-zoom__zoom {
    transform-origin: center center;
    transition: transform .8s ease, opacity .8s ease;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid-hover-content {
    width: 100%;
    padding: 8dvw 10dvw 5dvw 10dvw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: none;
}

.grid-hover .grid-hover-content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.grid-hover .grid-hover-subtitle {
    font-size: 3dvw;
    display: block;
    margin: auto 0 0 0;
    font-weight: 300;
}

.grid-hover .grid-hover-subtitle span {
    display: block;
    margin-bottom: -0.2rem;
}

.grid-hover .grid-hover-link {
    font-size: var(--fs-1);
    font-family: var(--font-roboto);
    display: inline-block;
    color: currentColor;
    font-weight: 500;
    position: relative;
    padding: 0 0 0.2rem;
    pointer-events: auto;
}

.grid-hover .grid-hover-link::before {
    content: "";
    position: absolute;
    background: currentColor;
    width: 80%;
    height: 1px;
    bottom: 0;
    transform-origin: 0% 50%;
    transform: scale3d(0, 1, 1);
    opacity: 0;
    transition: all 0.3s;
    transition-property: opacity, transform;
}

.grid-hover .grid-hover-link:hover::before {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

@media screen and (min-width: 767px) {

    .grid-hover-subtitle *,
    .grid-hover-subtitle span {
        opacity: 0;
        transform: translate3d(100px, 0, 0);
        transition: all 1.2s cubic-bezier(0.2, 1, 0.7, 1);
        transition-property: transform, opacity;
    }

    .grid-hover:hover .grid-hover-subtitle * {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .grid-hover:hover .grid-hover-subtitle .grid-hover-link {
        transition-delay: 0s
    }

    .grid-hover-subtitle span {
        transition-delay: 0.1s
    }
}

.grid-item {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100dvw;
}

.grid-item-10,
.grid-item-15,
.grid-item-20,
.grid-item-25,
.grid-item-30,
.grid-item-35,
.grid-item-40,
.grid-item-45,
.grid-item-50,
.grid-item-60,
.grid-item-70,
.grid-item-80,
.grid-item-90,
.grid-item-100 {
    width: 100%;
    height: 50vmax;
}

@media screen and (min-width: 768px) {
    .grid-item-10 {
        height: 10vmax
    }

    .grid-item-15 {
        height: 15vmax
    }

    .grid-item-20 {
        height: 20vmax
    }

    .grid-item-25 {
        height: 25vmax
    }

    .grid-item-30 {
        height: 30vmax
    }

    .grid-item-35 {
        height: 35vmax
    }

    .grid-item-40 {
        height: 40vmax
    }

    .grid-item-45 {
        height: 45vmax
    }

    .grid-item-50 {
        height: 50vmax
    }

    .grid-item-60 {
        height: 60vmax
    }

    .grid-item-70 {
        height: 70vmax
    }

    .grid-item-80 {
        height: 80vmax
    }

    .grid-item-90 {
        height: 90vmax
    }

    .grid-item-100 {
        height: 100vmax
    }
}

.grid-item-img-h,
.grid-item-img-v,
.grid-item-video {
    display: block;
    height: 100%;
    width: 100%;
}

.grid-item-img-h canvas,
.grid-item-img-v canvas,
.grid-item-video canvas {
    position: relative;
    height: 100%;
    transition: opacity 0.6s;
}

.grid-bg-1:hover .grid-item-img-h canvas,
.grid-bg-1:hover .grid-item-img-v canvas,
.grid-bg-1:hover .grid-item-video video {
    opacity: 0.4;
}

.grid-bg-2:hover .grid-item-img-h canvas,
.grid-bg-2:hover .grid-item-img-v canvas,
.grid-bg-2:hover .grid-item-video video {
    opacity: 0.7;
}

.grid-item-img-h img,
.grid-item-img-v img,
.grid-item-video video {
    height: 100%;
    display: block;
}

.js .grid-item-img-h img,
.js .grid-item-img-v img,
.js .grid-item-video video {
    display: none;
}

.grid-item-content {
    width: 100%;
    padding: 3dvw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: none;
}

.grid-item .grid-item-content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.grid-item-subtitle {
    font-size: var(--fs-4);
    display: block;
    margin: auto 0 0 0;
    font-weight: 300;
}

.grid-item-subtitle span {
    display: block;
    margin-bottom: -0.2rem;
}

.grid-item-link,
span.grid-item-link {
    font-size: var(--fs-1);
    font-family: var(--font-roboto);
    display: inline-block;
    color: currentColor;
    font-weight: 500;
    position: relative;
    padding: 0 0 0.2rem;
    pointer-events: auto;
}

.grid-item-link::before {
    content: "";
    position: absolute;
    background: currentColor;
    width: 80%;
    height: 1px;
    bottom: 0;
    transform-origin: 0% 50%;
    transform: scale3d(0, 1, 1);
    opacity: 0;
    transition: all 0.3s;
    transition-property: opacity, transform;
}

.grid-item-link:hover::before {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

@media screen and (max-width: 767px) {

    .grid-item-subtitle.f-dark {
        color: #000
    }

    .grid-item-subtitle.f-light {
        color: #fff
    }
}


@media screen and (min-width: 767px) {

    .grid-item-subtitle *,
    .grid-item-subtitle span {
        opacity: 0;
        transform: translate3d(100px, 0, 0);
        transition: all 1.2s cubic-bezier(0.2, 1, 0.7, 1);
        transition-property: transform, opacity;
    }

    .grid-item:hover .grid-item-subtitle * {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .grid-item:hover .grid-item-subtitle .grid-item-link {
        transition-delay: 0s
    }

    .grid-item-subtitle span {
        transition-delay: 0.1s
    }
}

canvas {
    position: fixed;
    display: block;
    top: 0px;
    left: 0px;
    z-index: -1;
    pointer-events: none;
}

.img-link img {
    display: none;
}

.img-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0.5dvw 23px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.grid-rgb-1,
.grid-rgb-2,
.grid-rgb-3,
.grid-trails-1,
.grid-trails-2,
.grid-trails-3,
.grid-stretch-1 {
    position: relative;
    z-index: 3;
}

.grid-rgb-1 .grid-text,
.grid-rgb-2 .grid-text,
.grid-rgb-3 .grid-text,
.grid-trails-1 .grid-text,
.grid-trails-2 .grid-text,
.grid-trails-3 .grid-text,
.grid-stretch-1 .grid-text {
    font-size: 8dvw;
    line-height: 8dvw;
    margin-bottom: 0;
}

.grid-rgb-1 .grid-des,
.grid-rgb-2 .grid-des,
.grid-rgb-3 .grid-des,
.grid-trails-1 .grid-des,
.grid-trails-2 .grid-des,
.grid-trails-3 .grid-des {
    font-size: var(--fs-4);
    font-family: var(--font-body);
    margin-top: 0.2rem;
    font-weight: 300;
}

.grid-rgb-1 a.img-link,
.grid-rgb-2 a.img-link,
.grid-rgb-3 a.img-link,
.grid-trails-1 a.img-link,
.grid-trails-2 a.img-link,
.grid-trails-3 a.img-link,
.grid-stretch-1 a.img-link {
    transition: opacity 0.4s ease-in-out;
}

.grid-rgb-1:hover a.img-link,
.grid-rgb-2:hover a.img-link,
.grid-rgb-3:hover a.img-link,
.grid-trails-1:hover a.img-link,
.grid-trails-2:hover a.img-link,
.grid-trails-3:hover a.img-link,
.grid-stretch-1:hover a.img-link {
    opacity: 0.2;
}

.grid-rgb-1:hover a.img-link:hover,
.grid-rgb-2:hover a.img-link:hover,
.grid-rgb-3:hover a.img-link:hover,
.grid-trails-1:hover a.img-link:hover,
.grid-trails-2:hover a.img-link:hover,
.grid-trails-3:hover a.img-link:hover,
.grid-stretch-1:hover a.img-link:hover {
    opacity: 1;
}

.grid-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .grid-trails-1:hover a.img-link {
        opacity: 1;
    }

    .grid-trails-1:hover a.img-link:hover {
        opacity: .6
    }
}

@media (max-width: 767px) {
    .img-link {
        margin-top: 1.4rem;
        margin-bottom: 1.4rem;
    }

    .grid-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (max-width: 479px) {
    .img-link {
        margin: 4dvw 0px
    }
}

/*---------------- 19. Counter ----------------*/

.counter-1 {
    font-family: var(--font-roboto);
    background-color: #080808;
    transition: background-color 0.5s ease
}

.counter-1 p {
    font-size: 7dvw;
    font-weight: 100;
    margin-bottom: 0;
    display: inline-block;
    white-space: nowrap;
}

.counter-1 .info {
    font-size: 20px;
    margin-left: 10px;
}

.counter-1:hover {
    background-color: #111;
}

/*---------------- 20. Box Table ----------------*/

.box-table .lines-hover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid var(--dark-2);
    min-height: 335px;
}

.box-table .lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.box-table .tb:after,
.box-table .tb:before,
.box-table .rl:after,
.box-table .rl:before {
    content: "";
    position: absolute;
    z-index: 2;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: -webkit-gradient(linear, right top, left top, color-stop(5%, #333), color-stop(20%, rgba(255, 255, 255, 0.75)), color-stop(75%, rgba(255, 255, 255, 0.85)), to(#333));
    background: linear-gradient(270deg, #333 5%, rgba(255, 255, 255, 0.75) 20%, rgba(255, 255, 255, 0.85) 75%, #333);
}

.box-table .tb:after,
.box-table .tb:before {
    width: 100%;
    height: 1.5px;
    left: 0;
}

.box-table .tb:before {
    top: 0;
    transform-origin: right;
    transform: translateX(-100%);
}

.box-table .tb:after {
    bottom: 0;
    transform-origin: left;
    transform: translateX(100%);
}

.box-table .rl:after,
.box-table .rl:before {
    width: 1.5px;
    height: 100%;
    right: 0;
}

.box-table .rl:before {
    left: 0;
    transform-origin: bottom;
    transform: translateY(100%);
}

.box-table .rl:after {
    left: calc(100% - 1px);
    transform-origin: top;
    transform: translateY(-100%);
}

.box-table .lines-hover:hover .tb:before,
.box-table .lines-hover:hover .tb:after,
.box-table .lines-hover:hover .rl:before,
.box-table .lines-hover:hover .rl:after {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.3, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.3, 1);
    transition: transform 0.5s cubic-bezier(0.6, 0, 0.3, 1);
    transition: transform 0.5s cubic-bezier(0.6, 0, 0.3, 1),
        -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.3, 1);
}

.box-table .lines-hover:hover .tb:before {
    transform: translateX(100%);
}

.box-table .lines-hover:hover .tb:after {
    transform: translateX(-100%);
}

.box-table .lines-hover:hover .rl:before {
    transform: translateY(-100%);
}

.box-table .lines-hover:hover .rl:after {
    transform: translateY(100%);
}

@media (max-width: 992px) {
    .box-table .lines-hover {
        min-height: 250px
    }
}

@media (max-width: 768px) {
    .box-table .lines-hover {
        min-height: 150px;
    }

    .box-table .tb:after,
    .box-table .tb:before,
    .box-table .rl:after,
    .box-table .rl:before {
        display: none;
    }
}

.circle-lg,
.circle-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.6s ease-in-out;
}

.circle-lg-left {
    margin-left: -5rem;
}

.circle-lg-right {
    margin-right: -5rem;
}

.circle-lg {
    width: 400px;
    height: 400px;
}

.circle-sm {
    width: 100px;
    height: 100px;
}

.circle-lg:hover,
.circle-sm:hover {
    border: 1px solid transparent;
}

@media (max-width: 1000px) {
    .circle-lg {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .circle-lg {
        width: 400px;
        height: 400px;
    }

    .circle-sm {
        width: 80px;
        height: 80px;
    }

    .circle-lg-left {
        margin-left: 0rem
    }

    .circle-lg-right {
        margin-right: 0rem
    }
}

@media (max-width: 576px) {
    .circle-lg {
        width: 300px;
        height: 300px;
    }
}


/*---------------- 23. Drag Slider ----------------*/

.drag-slider {
    position: relative;
    width: 100dvw;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.js-drag-proxy {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.drag-gallery-inner {
    white-space: nowrap;
}

.drag-gallery-wrap {
    display: inline-block;
    position: relative;
    padding: 0 calc(20 * (100dvw / 1440));
}

.drag-slider-50 {
    width: 50dvw;
}

.drag-slider-intro {
    font-size: var(--fs-h5);
    white-space: normal;
}

.drag-slider-team {
    font-size: var(--fs-5);
    white-space: normal;
    font-weight: 300;
}

.drag-slider-work {
    font-size: var(--fs-3);
    white-space: normal;
    font-weight: 200;
}

@media (max-width: 576px) {
    .drag-slider-intro {
        font-size: 1rem
    }

    .drag-slider-team {
        font-size: 1.2rem
    }

    .drag-slider-work {
        font-size: 1.1rem
    }
}

/*---------------- 24. Line Bar ----------------*/

.line-bar {
    width: 100%;
    height: 2px;
    position: relative;
    display: inline-block;
    transform-origin: center left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.line-bar.dark {
    background: rgba(255, 255, 255, 0.1);
}

.line-bar.light {
    background: rgba(0, 0, 0, 0.1);
}

/*---------------- 25. Sponsor ----------------*/

.box-item-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 270px;
    height: 135px;
}

.box-item-h,
.box-item-v {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.box-item-h {
    transition: all 0.7s cubic-bezier(1, 0, 0.25, 1);
}

.box-item-v {
    transition: all 0.7s cubic-bezier(1, 0, 0.25, 1);
}

.box-item-h:nth-child(1) {
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(12px);
}

.box-item-wrap:hover .box-item-h:nth-child(1) {
    transform: translateX(0%) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.box-item-wrap:hover .box-item-h:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(12px);
}

.box-item-v:nth-child(1) {
    transform: translateY(50%) scaleY(2);
    opacity: 0;
    filter: blur(12px);
}

.box-item-wrap:hover .box-item-v:nth-child(1) {
    transform: translateY(0%) scaleY(1);
    opacity: 1;
    filter: blur(0);
}

.box-item-wrap:hover .box-item-v:nth-child(2) {
    transform: translateY(50%) scaleY(2);
    opacity: 0;
    filter: blur(12px);
}

.sponsor-1 {
    position: relative;
    margin: 3rem 0;
}

.sponsor-1 li.box-item-wrap {
    width: 100%;
    max-width: 350px;
    height: 60px;
    opacity: 0.2;
    transition: opacity 0.7s cubic-bezier(1, 0, 0.25, 1);
}

.sponsor-1 li.sp-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: inline-block;
}

.sponsor-1 li.box-item-wrap:hover {
    opacity: 0.9;
}

.sponsor-2 li.box-item-wrap {
    width: 20%;
    height: 0;
    padding-top: 10%;
    margin: 0.5rem;
    background-color: #080808;
    transition: background 0.7s cubic-bezier(1, 0, 0.25, 1);
}

.sponsor-2 li.box-item-wrap:hover {
    background-color: var(--dark-2);
}

@media all and (max-width: 992px) {
    .sponsor-2 li.box-item-wrap {
        width: 30%;
        padding-top: 15%;
    }
}

@media all and (max-width: 768px) {
    .sponsor-2 li.box-item-wrap {
        width: 44%;
        padding-top: 22%;
    }
}



/*************************
         Responsive
  *************************/
@media (max-width: 1480px) {
    .onovo-hero .onovo-play-btn {
        bottom: auto;
        top: 28dvh;
        transform: translateY(-50%);
    }
}

@media (max-width: 1199px) {
    .container {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 80px 100px;
    }

    h2,
    .h2 {
        font-size: var(--fs-h1);
    }

    .ps-5 {
        padding-left: 1rem !important;
    }

    .widget-info .number {
        font-size: 2rem;
        line-height: 32px;
    }

    .site-footer .widget-socail {
        margin-top: 30px;
    }

    .banner .interval {
        margin-left: 0;
        /*white-space: normal;
        word-break: break-word;*/
    }

}

@media (max-width: 1023px) {
    .site-footer .footer-main-inner {
        display: flex;
        gap: 50px 100px;
    }

    .site-footer .footer-main-inner .footer-logo {
        width: 41.6666%;
    }

    .site-footer .footer-main-inner .footer-social {
        width: 20%;
    }

    .site-footer .footer-main-inner .footer-info {
        width: 38.3333%;
    }

    .container,
    .container-xxl,
    footer .footer-content,
    .maxw-750 {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 100px 50px;
    }

    .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 100%;
        padding-left: 0 !important;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x)* 0.5) !important;
        padding-left: calc(var(--bs-gutter-x)* 0.5) !important;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 50%;
    }



    .ps-lg-3 {
        padding-left: 0 !important;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        /*flex-direction: column;*/
        position: relative;
        /*gap: 50px;*/
    }

    .g-0,
    .gy-0 {
        --bs-gutter-y: 50px;
    }

    .space-medium-ptb {
        padding: 0;
    }

    .section-title.ms-md-5 {
        margin-left: 0 !important;
    }

    .section-title {
        margin-bottom: 25px;
    }

    h2,
    .h2 {
        font-size: var(--fs-h1);
    }

    .bg-stripes {
        width: 100%;
        z-index: 2;
        top: 20dvh;
        right: -35px;
    }

    .stripe-1 {
        top: 40dvh;
        width: 85%;
    }

    .stripe-2 {
        top: 56dvh;
        width: 90%;
    }

    .stripe-3 {
        top: 72dvh;
        width: 80%;
    }

    .pagescroll {
        &.parallax-images {
            &.pageservices {
                margin-top: 0;
                display: flex;
                flex-direction: column;
            }
        }
    }

    .section-img-parallax {
        position: relative !important;
        height: auto !important;
        min-height: 400px;
        overflow: hidden;
    }

    .parallax-img-wrapper {
        position: relative !important;
        height: auto !important;
    }

    .parallax-img {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
        z-index: 0;
        will-change: transform, filter;
        backface-visibility: hidden;
    }

    .services-contact.pageservices {
        padding: 0rem 1rem;
    }

    .services-contact.pageservices {
        .left-form {
            border: node !important;
        }
    }

    .row.justify-content-between {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }

    .section-products .container-xxl .attract-hover {
        display: none;
    }


}

@media (max-width: 991px) {

    .site-footer .footer-main-inner {
        display: flex;
        flex-direction: column;
        gap: 50px 0;
    }

    .site-footer .footer-main-inner .footer-logo {
        width: 100%;
    }

    .site-footer .footer-main-inner .footer-social {
        width: 100%;
    }

    .site-footer .footer-main-inner .footer-info {
        width: 100%;
    }

    /* Footer Social */
    .site-footer .widget-menu ul.list-col-2 li,
    .site-footer .widget-menu ul.list-col-3 li {
        width: calc(50% - 8px);
    }



    footer .footer-column.widget {
        padding-top: 36px;
    }

    footer .gap-4.footer-left {
        flex-direction: column !important;
        align-items: center;
    }


    footer .footer-content {
        padding: 80px 25px;

    }

    .site-footer.footer-dark .footer-copyright {
        padding: 7px 25px;
    }

    .container {
        padding: 80px 25px;

    }


}

@media (max-width: 767px) {

    /* Footer Social */
    .site-footer.footer-dark .widget-socail .socail-icon li {
        flex: 0;
        border-right: 0;
    }

    .site-footer.footer-dark .widget-socail .socail-icon li a {
        padding: 0;
    }

    .site-footer.footer-dark .widget-socail .socail-icon li a i {
        color: #ffffff;
    }

    footer .gap-5.footer-left {
        flex-basis: 50%;
        flex-direction: column !important;
    }

    footer .widget {
        padding-left: 7px;
        padding-right: 7px;
    }

    footer .widget.widget-newsletter {
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-left: 0;
        padding-right: 0;
    }

    footer .copyright-link {
        flex-direction: column;
        align-items: center;
    }

    footer {
        .special-f-text {
            background-color: transparent;
            border-radius: 5px;
            margin-bottom: 0;
            cursor: pointer;
        }
    }

}

@media (max-width: 575.98px) {
    footer .footer-content {
        padding: 80px 8px;
    }

}

@media (max-width: 479px) {

    .site-footer .widget-menu ul.list-col-2 li,
    .site-footer .widget-menu ul.list-col-3 li {
        width: 100%;
    }
}