@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;family=Outfit:wght@100..900&amp;display=swap");

:root {
    --bz-ff-body: 'Inter', sans-serif;
    --bz-ff-heading: 'Outfit', serif;
    --bz-ff-p: 'Inter', sans-serif;
    --bz-fw-normal: normal;
    --bz-fw-thin: 100;
    --bz-fw-elight: 200;
    --bz-fw-light: 300;
    --bz-fw-regular: 400;
    --bz-fw-medium: 500;
    --bz-fw-sbold: 600;
    --bz-fw-bold: 700;
    --bz-fw-ebold: 800;
    --bz-fw-black: 900;
    --bz-fs-body: 16px;
    --bz-fs-p: 16px;
    --bz-fs-h1: 66px;
    --bz-fs-h2: 48px;
    --bz-fs-h3: 36px;
    --bz-fs-h4: 30px;
    --bz-fs-h5: 24px;
    --bz-fs-h6: 20px;
    --bz-color-common-white: #ffffff;
    --bz-color-common-black: #000000;
    --bz-color-common-dark: #232323;
    --bz-color-heading-primary: #191F29;
    --bz-color-heading-secondary: #838383be;
    --bz-color-text-body: #74787C;
    --bz-color-theme-primary: #EC281C;
    --bz-color-theme-secondary: #191F29;
    --bz-color-theme-red: #EC281C;
    --bz-color-bg-1: #ffffff44;
    --bz-color-grey-1: #F8F8F8;
    --bz-color-grey-2: #F6F6F6;
    --bz-color-grey-3: #F6F7FA;
    --bz-color-grey-4: #F3F4F6;
    --bz-color-border-1: #EAEAEA;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/**
	Typography CSS
*/
html,
body {
    overflow-x: hidden;
}

body {
    /* background-color: #f76f881e; */
    background-color: #fccece2a;
    font-family: var(--bz-ff-body);
    font-size: 16px;
    line-height: 1.625;
    font-weight: normal;
    color: var(--bz-color-text-body);
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a,
a:hover {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-heading-primary);
    margin-top: 0px;
    font-weight: var(--bz-fw-sbold);
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

h1 {
    font-size: var(--bz-fs-h1);
}

h2 {
    font-size: var(--bz-fs-h2);
}

h3 {
    font-size: var(--bz-fs-h3);
}

h4 {
    font-size: var(--bz-fs-h4);
}

h5 {
    font-size: var(--bz-fs-h5);
}

h6 {
    font-size: var(--bz-fs-h6);
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-family: var(--bz-ff-p);
    font-size: 16px;
    font-weight: var(--bz-fw-normal);
    color: var(--bz-color-text-body);
    margin-bottom: 15px;
    line-height: 28px;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

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

a:hover {
    color: var(--bz-color-theme-primary);
}

.slick-list.draggable {
    cursor: -webkit-grab;
    cursor: grab;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
    border: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input {
    outline: none;
}

input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

ul {
    display: block;
    padding: 0;
    margin: 0;
}

*::-moz-selection {
    background: var(--bz-color-common-black);
    color: var(--bz-color-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--bz-color-common-black);
    color: var(--bz-color-common-white);
    text-shadow: none;
}

::selection {
    background: var(--bz-color-common-black);
    color: var(--bz-color-common-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--bz-color-common-black);
    font-size: var(--bz-fs-body);
    opacity: 1;
}

*::-webkit-input-placeholder {
    color: var(--bz-color-common-black);
    font-size: var(--bz-fs-body);
    opacity: 1;
}

*:-ms-input-placeholder {
    color: var(--bz-color-common-black);
    font-size: var(--bz-fs-body);
    opacity: 1;
}

*::-ms-input-placeholder {
    color: var(--bz-color-common-black);
    font-size: var(--bz-fs-body);
    opacity: 1;
}

*::placeholder {
    color: var(--bz-color-common-black);
    font-size: var(--bz-fs-body);
    opacity: 1;
}

/**
    Common Classes CSS
*/
.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

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

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

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.b-radius {
    border-radius: 6px;
}

.bg-grey {
    background-color: var(--bz-color-grey-2);
}

.container {
    max-width: 1245px;
}

.container-2 {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}

.bd-bottom {
    border-bottom: 1px solid #edebf9;
}

.overflow-h {
    overflow: hidden;
}

.error-content .text {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 40px;
}

.error-content .text span {
    display: block;
}

.section-heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 992px) {
    .section-heading {
        margin-bottom: 40px;
    }
}

.section-heading .sub-heading {
    color: var(--bz-color-theme-primary);
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: inherit;
    position: relative;
    text-transform: uppercase;
    padding: 0 0 0 35px;
}

@media only screen and (max-width: 767px) {
    .section-heading .sub-heading {
        font-size: 14px;
    }
}

.section-heading .sub-heading .left-shape {
    background-color: var(--bz-color-theme-primary);
    height: 13px;
    width: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) skew(-15deg);
    transform: translateY(-50%) skew(-15deg);
}

.section-heading .sub-heading .left-shape:after {
    background-color: var(--bz-color-theme-primary);
    content: "";
    height: 100%;
    width: 4px;
    position: absolute;
    top: 0;
    right: -8px;
}

.section-heading .section-title {
    color: var(--bz-color-heading-primary);
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    display: block;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .section-heading .section-title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .section-heading .section-title {
        font-size: 32px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading .section-title {
        font-size: 32px;
    }
}

.section-heading.white-content .sub-heading {
    color: var(--bz-color-common-white);
}

.section-heading.white-content .sub-heading .left-shape {
    background-color: var(--bz-color-common-white);
}

.section-heading.white-content .sub-heading .left-shape:after {
    background-color: var(--bz-color-common-white);
}

.section-heading.white-content p,
.section-heading.white-content .section-title {
    color: var(--bz-color-common-white);
}

.section-heading.red-content .sub-heading {
    color: var(--bz-color-theme-red);
}

.section-heading.red-content .sub-heading .left-shape {
    background-color: var(--bz-color-theme-red);
}

.section-heading.red-content .sub-heading .left-shape:after {
    background-color: var(--bz-color-theme-red);
}

.section-heading.section-heading-4 .sub-heading {
    margin-bottom: 15px;
    padding: 0;
}

.section-heading.section-heading-4 .section-title {
    font-size: 44px;
}

@media (max-width: 1200px) {
    .section-heading.section-heading-4 .section-title br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading.section-heading-4 .section-title {
        font-size: 32px;
    }
}

.heading-space {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 25px;
    margin-bottom: 60px;
}

@media only screen and (max-width: 992px) {
    .heading-space {
        margin-bottom: 40px;
    }
}

.t-up {
    text-transform: uppercase;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
    color: var(--bz-color-common-white);
}

.img-reveal {
    position: relative;
    overflow: hidden;
    visibility: hidden;
    z-index: 1;
}

.img-reveal .img-overlay {
    background-color: #ff323252;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.process-section-2 .process-thumb.img-reveal .img-overlay.overlay-2,
.post-thumb.img-reveal .img-overlay {
    transform-origin: top center;
}

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

.anim-text {
    overflow: hidden;
}

.running-text {
    background-repeat: repeat;
    background-size: 20px;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

.running-text .overlay {
    background: #3A3A3A;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.running-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
}

.running-text ul li {
    display: inline-block;
    font-size: 120px;
    font-weight: 700;
    white-space: nowrap;
    color: var(--bz-color-common-white);
    text-transform: capitalize;
    position: relative;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
}

.scroller__inner {
    padding-block: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.scroller[data-animated=true] .scroller__inner {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-animated=true] .scroller__inner.inner-2 {
    -webkit-animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, reverse) linear infinite;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, reverse) linear infinite;
}

.scroller[data-direction=right] {
    --_animation-direction: reverse;
}

.scroller[data-direction=left] {
    --_animation-direction: forwards;
}

.scroller[data-speed=fast] {
    --_animation-duration: 30s;
}

.scroller[data-speed=slow] {
    --_animation-duration: 60s;
}

@-webkit-keyframes scroll {
    to {
        -webkit-transform: translate(calc(-50% - 0.5rem));
        transform: translate(calc(-50% - 0.5rem));
    }
}

@keyframes scroll {
    to {
        -webkit-transform: translate(calc(-50% - 0.5rem));
        transform: translate(calc(-50% - 0.5rem));
    }
}

/* Site Preloader */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fffffff8;
    z-index: 999;
}

.loading {
    left: 50%;
    top: 50%;
    font-size: clamp(28px, 9vw, 100px);
    line-height: 1.1;
    font-family: var(--bz-ff-heading);
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    overflow: hidden;
    white-space: nowrap;
    max-width: 92vw;
    text-align: center;
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
}

@media only screen and (max-width: 767.98px) {
    .loading {
        font-size: clamp(22px, 8vw, 48px);
        max-width: 94vw;
    }
}

@media only screen and (max-width: 480px) {
    .loading {
        font-size: clamp(20px, 7.5vw, 36px);
    }
}

.loading:before {
    color: #c9c9c9;
    content: attr(data-loading-text);
}

.loading:after {
    top: 0;
    left: 0;
    width: 0;
    opacity: 1;
    color: var(--bz-color-theme-red);
    overflow: hidden;
    position: absolute;
    content: attr(data-loading-text);
    -webkit-animation: loading 6s infinite;
    animation: loading 6s infinite;
}

@-webkit-keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/*  Custom Cursor */
@media (min-width: 992px) {
    .mt-cursor {
        display: block;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1.5px solid rgba(236, 40, 28, 0.72);
        background: transparent;
        position: fixed;
        left: 10px;
        top: 10px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none;
        visibility: hidden;
        z-index: 10000;
        -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        -webkit-animation: cursor-ripple 2.15s ease-out infinite;
        animation: cursor-ripple 2.15s ease-out infinite;
    }

    .mt-cursor:before {
        background: rgba(236, 40, 28, 0.95);
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(calc(-50% + var(--cursor-dot-x, 0px)), calc(-50% + var(--cursor-dot-y, 0px)));
        transform: translate(calc(-50% + var(--cursor-dot-x, 0px)), calc(-50% + var(--cursor-dot-y, 0px)));
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    .mt-cursor:after {
        content: "";
        position: absolute;
        inset: -1.5px;
        border-radius: 50%;
        pointer-events: none;
        -webkit-animation: cursor-ripple-soft 2.15s ease-out infinite;
        animation: cursor-ripple-soft 2.15s ease-out infinite;
        -webkit-animation-delay: 1.05s;
        animation-delay: 1.05s;
    }

    .mt-cursor.cursor-grow:before {
        opacity: 0.7;
        -webkit-transform: translate(calc(-50% + var(--cursor-dot-x, 0px)), calc(-50% + var(--cursor-dot-y, 0px))) scale(1.3);
        transform: translate(calc(-50% + var(--cursor-dot-x, 0px)), calc(-50% + var(--cursor-dot-y, 0px))) scale(1.3);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .mt-cursor.hide {
        opacity: 0;
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
        -webkit-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }

    .mt-cursor.hide .inner {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

    @-webkit-keyframes cursor-ripple {
        0% {
            -webkit-box-shadow: 0 0 0 0 rgba(236, 40, 28, 0.2);
            box-shadow: 0 0 0 0 rgba(236, 40, 28, 0.2);
        }

        75% {
            -webkit-box-shadow: 0 0 0 16px rgba(236, 40, 28, 0);
            box-shadow: 0 0 0 16px rgba(236, 40, 28, 0);
        }

        100% {
            -webkit-box-shadow: 0 0 0 0 rgba(236, 40, 28, 0);
            box-shadow: 0 0 0 0 rgba(236, 40, 28, 0);
        }
    }

    @keyframes cursor-ripple {
        0% {
            -webkit-box-shadow: 0 0 0 0 rgba(236, 40, 28, 0.2);
            box-shadow: 0 0 0 0 rgba(236, 40, 28, 0.2);
        }

        75% {
            -webkit-box-shadow: 0 0 0 16px rgba(236, 40, 28, 0);
            box-shadow: 0 0 0 16px rgba(236, 40, 28, 0);
        }

        100% {
            -webkit-box-shadow: 0 0 0 0 rgba(236, 40, 28, 0);
            box-shadow: 0 0 0 0 rgba(236, 40, 28, 0);
        }
    }

    @-webkit-keyframes cursor-ripple-soft {
        0% {
            -webkit-box-shadow: 0 0 0 0 rgba(236, 40, 28, 0.11);
            box-shadow: 0 0 0 0 rgba(236, 40, 28, 0.11);
        }

        80% {
            -webkit-box-shadow: 0 0 0 20px rgba(236, 40, 28, 0);
            box-shadow: 0 0 0 20px rgba(236, 40, 28, 0);
        }

        100% {
            -webkit-box-shadow: 0 0 0 0 rgba(236, 40, 28, 0);
            box-shadow: 0 0 0 0 rgba(236, 40, 28, 0);
        }
    }

    @keyframes cursor-ripple-soft {
        0% {
            -webkit-box-shadow: 0 0 0 0 rgba(236, 40, 28, 0.11);
            box-shadow: 0 0 0 0 rgba(236, 40, 28, 0.11);
        }

        80% {
            -webkit-box-shadow: 0 0 0 20px rgba(236, 40, 28, 0);
            box-shadow: 0 0 0 20px rgba(236, 40, 28, 0);
        }

        100% {
            -webkit-box-shadow: 0 0 0 0 rgba(236, 40, 28, 0);
            box-shadow: 0 0 0 0 rgba(236, 40, 28, 0);
        }
    }
}

.sticky-widget {
    position: sticky;
    top: 120px;
}

@media only screen and (max-width: 767px) {
    br {
        display: none;
    }
}

/*-- Margin Top --*/
.mt-5 {
    margin-top: 5px;
}

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

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

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

.mb-35 {
    margin-bottom: 35px;
}

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

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

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

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

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

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-105 {
    margin-left: 105px;
}

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

.ml-115 {
    margin-left: 115px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-150 {
    margin-left: 150px;
}

.ml-155 {
    margin-left: 155px;
}

.ml-160 {
    margin-left: 160px;
}

.ml-165 {
    margin-left: 165px;
}

.ml-170 {
    margin-left: 170px;
}

.ml-175 {
    margin-left: 175px;
}

.ml-180 {
    margin-left: 180px;
}

.ml-185 {
    margin-left: 185px;
}

.ml-190 {
    margin-left: 190px;
}

.ml-195 {
    margin-left: 195px;
}

.ml-200 {
    margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

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

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

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

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-105 {
    margin-right: 105px;
}

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

.mr-115 {
    margin-right: 115px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-145 {
    margin-right: 145px;
}

.mr-150 {
    margin-right: 150px;
}

.mr-155 {
    margin-right: 155px;
}

.mr-160 {
    margin-right: 160px;
}

.mr-165 {
    margin-right: 165px;
}

.mr-170 {
    margin-right: 170px;
}

.mr-175 {
    margin-right: 175px;
}

.mr-180 {
    margin-right: 180px;
}

.mr-185 {
    margin-right: 185px;
}

.mr-190 {
    margin-right: 190px;
}

.mr-195 {
    margin-right: 195px;
}

.mr-200 {
    margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

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

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-155 {
    padding-top: 155px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-165 {
    padding-top: 165px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-175 {
    padding-top: 175px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-185 {
    padding-top: 185px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-195 {
    padding-top: 195px;
}

.pt-200 {
    padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pb-200 {
    padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

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

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

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

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

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

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-135 {
    padding-left: 135px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-145 {
    padding-left: 145px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-155 {
    padding-left: 155px;
}

.pl-160 {
    padding-left: 160px;
}

.pl-165 {
    padding-left: 165px;
}

.pl-170 {
    padding-left: 170px;
}

.pl-175 {
    padding-left: 175px;
}

.pl-180 {
    padding-left: 180px;
}

.pl-185 {
    padding-left: 185px;
}

.pl-190 {
    padding-left: 190px;
}

.pl-195 {
    padding-left: 195px;
}

.pl-200 {
    padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

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

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

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

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

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

.pr-115 {
    padding-right: 115px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-125 {
    padding-right: 125px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-135 {
    padding-right: 135px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-145 {
    padding-right: 145px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-155 {
    padding-right: 155px;
}

.pr-160 {
    padding-right: 160px;
}

.pr-165 {
    padding-right: 165px;
}

.pr-170 {
    padding-right: 170px;
}

.pr-175 {
    padding-right: 175px;
}

.pr-180 {
    padding-right: 180px;
}

.pr-185 {
    padding-right: 185px;
}

.pr-190 {
    padding-right: 190px;
}

.pr-195 {
    padding-right: 195px;
}

.pr-200 {
    padding-right: 200px;
}

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

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

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

.mb-35 {
    margin-bottom: 35px;
}

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

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.pt-180 {
    padding-top: 180px;
}

@media only screen and (max-width: 992px) {
    .pt-180 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-180 {
        padding-top: 50px;
    }
}

.pt-130 {
    padding-top: 130px;
}

@media only screen and (max-width: 992px) {
    .pt-130 {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-130 {
        padding-top: 60px;
    }
}

.pt-120 {
    padding-top: 120px;
}

@media only screen and (max-width: 992px) {
    .pt-120 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-120 {
        padding-top: 60px;
    }
}

.pt-110 {
    padding-top: 120px;
}

@media only screen and (max-width: 992px) {
    .pt-110 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-110 {
        padding-top: 60px;
    }
}

.pt-100 {
    padding-top: 120px;
}

@media only screen and (max-width: 992px) {
    .pt-100 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-100 {
        padding-top: 60px;
    }
}

.pt-110 {
    padding-top: 120px;
}

@media only screen and (max-width: 992px) {
    .pt-110 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-110 {
        padding-top: 60px;
    }
}

.pt-90 {
    padding-top: 90px;
}

@media only screen and (max-width: 992px) {
    .pt-90 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-90 {
        padding-top: 60px;
    }
}

.pt-80 {
    padding-top: 80px;
}

@media only screen and (max-width: 992px) {
    .pt-80 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-80 {
        padding-top: 60px;
    }
}

.pt-70 {
    padding-top: 70px;
}

@media only screen and (max-width: 992px) {
    .pt-70 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-70 {
        padding-top: 60px;
    }
}

.pb-180 {
    padding-bottom: 180px;
}

@media only screen and (max-width: 992px) {
    .pb-180 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-180 {
        padding-bottom: 60px;
    }
}

.pb-130 {
    padding-bottom: 130px;
}

@media only screen and (max-width: 992px) {
    .pb-130 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-130 {
        padding-bottom: 60px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}

@media only screen and (max-width: 992px) {
    .pb-120 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}

.pb-110 {
    padding-bottom: 120px;
}

@media only screen and (max-width: 992px) {
    .pb-110 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-110 {
        padding-bottom: 60px;
    }
}

.pb-100 {
    padding-bottom: 120px;
}

@media only screen and (max-width: 992px) {
    .pb-100 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-100 {
        padding-bottom: 60px;
    }
}

.pb-90 {
    padding-bottom: 90px;
}

@media only screen and (max-width: 992px) {
    .pb-90 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-90 {
        padding-bottom: 60px;
    }
}

.pb-80 {
    padding-bottom: 80px;
}

@media only screen and (max-width: 992px) {
    .pb-80 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-80 {
        padding-bottom: 60px;
    }
}

.pb-70 {
    padding-bottom: 70px;
}

@media only screen and (max-width: 992px) {
    .pb-70 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-70 {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-30 {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-40 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-50 {
        padding-bottom: 50px;
    }
}

.ripple,
.ripple:before,
.ripple:after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

.ripple {
    z-index: -1;
}

.ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

/* Scroll To Top */
#scroll-percentage {
    position: absolute;
}

#scroll-percentage {
    height: 60px;
    width: 60px;
    background-color: var(--bz-color-common-white);
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}

@media only screen and (max-width: 992px) {
    #scroll-percentage {
        right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    #scroll-percentage {
        bottom: 20px;
        right: 20px;
    }
}

#scroll-percentage.active {
    bottom: 50px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (max-width: 992px) {
    #scroll-percentage.active {
        bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    #scroll-percentage.active {
        bottom: 20px;
    }
}

#scroll-percentage-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-theme-primary);
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
}

#scroll-percentage-value i {
    font-size: 20px;
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@-webkit-keyframes wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/** Buttons CSS */
.bz-primary-btn {
    background-color: var(--bz-color-theme-primary);
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 20px 30px;
    border-radius: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.bz-primary-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.bz-primary-btn i {
    margin-left: 5px;
    font-size: 14px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bz-primary-btn:hover {
    color: var(--bz-color-common-white);
}

.bz-primary-btn:hover:before {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.bz-primary-btn:focus {
    color: var(--bz-color-common-white);
}

.bz-primary-btn.red-btn {
    background-color: var(--bz-color-theme-red);
}

.bz-primary-btn.red-btn:before {
    background-color: var(--bz-color-heading-primary);
}

.bz-transparent-btn {
    background-color: transparent;
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-theme-primary);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 20px 30px;
    border-radius: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border: 1px solid var(--bz-color-theme-primary);
}

.bz-transparent-btn:before {
    background-color: var(--bz-color-theme-primary);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.bz-transparent-btn i {
    margin-right: 5px;
    font-size: 14px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bz-transparent-btn:hover {
    color: var(--bz-color-common-white);
}

.bz-transparent-btn:hover:before {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.bz-transparent-btn:focus {
    color: var(--bz-color-common-white);
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
    background-color: var(--bz-color-common-white);
    width: 100%;
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 99;
}

@media only screen and (max-width: 992px) {
    .header {
        position: relative;
        top: 0;
        height: auto !important;
    }
}

.header .top-bar {
    background-color: var(--bz-color-bg-1);
}

@media only screen and (max-width: 767px) {
    .header .top-bar {
        display: none;
    }
}

.header .top-bar .top-bar-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
    padding: 10px 0;
}

@media only screen and (max-width: 767px) {
    .header .top-bar .top-bar-inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.header .top-bar .top-bar-inner span {
    color: var(--bz-color-theme-red);
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .top-bar .top-bar-inner span i {
    color: var(--bz-color-theme-red);
    margin-right: 10px;
    line-height: 1;
}

.header .middle-header {
    border-bottom: 1px solid var(--bz-color-border-1);
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .header .middle-header {
        display: none;
    }
}

.header .middle-header .middle-header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {
    .header .middle-header .middle-header-inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.header .middle-header .middle-header-inner .header-logo {
    padding: 33px 150px 32px 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .header .middle-header .middle-header-inner .header-logo {
        padding-right: 100px;
    }
}

.header .middle-header .middle-header-inner .header-logo:before {
    background-color: var(--bz-color-theme-primary);
    content: "";
    height: 100%;
    width: 300px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 98.5% 100%, 0% 100%);
}

.header .middle-header .middle-header-inner .header-logo:after {
    background-color: var(--bz-color-theme-primary);
    content: "";
    width: 60px;
    height: 40px;
    position: absolute;
    bottom: 0;
    right: 0;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    z-index: -3;
}

.header .middle-header .middle-header-inner .header-logo .shape {
    background-color: #122A4D;
    height: 100%;
    width: 3000px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    clip-path: polygon(0 0, 100% 0, 99% 100%, 0% 100%);
}

@media only screen and (max-width: 992px) {
    .header .middle-header .middle-header-inner .header-logo {
        display: none;
    }
}

.header .middle-header .middle-header-inner .header-items-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .middle-header .middle-header-inner .header-items-wrap .header-item {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 45px 15px 1fr;
    grid-template-columns: 45px 1fr;
    grid-gap: 15px;
    padding: 30px 0;
}

.header .middle-header .middle-header-inner .header-items-wrap .header-item:not(:last-of-type) {
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid var(--bz-color-border-1);
}

@media (max-width: 1200px) {
    .header .middle-header .middle-header-inner .header-items-wrap .header-item:not(:last-of-type) {
        margin-right: 20px;
        padding-right: 20px;
    }
}

.header .middle-header .middle-header-inner .header-items-wrap .header-item .icon {
    background-color: #EAECEF;
    color: var(--bz-color-theme-primary);
    height: 45px;
    width: 45px;
    border-radius: 5px;
    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;
}

.header .middle-header .middle-header-inner .header-items-wrap .header-item .content span {
    font-family: var(--bz-ff-heading);
    font-size: 14px;
    font-weight: 400;
    color: var(--bz-color-text-body);
    display: block;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 4px;
}

.header .middle-header .middle-header-inner .header-items-wrap .header-item .content .address,
.header .middle-header .middle-header-inner .header-items-wrap .header-item .content a {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-heading-primary);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
}

@media (max-width: 1200px) {

    .header .middle-header .middle-header-inner .header-items-wrap .header-item .content .address,
    .header .middle-header .middle-header-inner .header-items-wrap .header-item .content a {
        font-size: 15px;
    }
}

@media only screen and (max-width: 992px) {

    .header .middle-header .middle-header-inner .header-items-wrap .header-item .content .address,
    .header .middle-header .middle-header-inner .header-items-wrap .header-item .content a {
        font-size: 17px;
    }
}

.header .middle-header .middle-header-inner .header-items-wrap .header-item .content .address:hover,
.header .middle-header .middle-header-inner .header-items-wrap .header-item .content a:hover {
    color: var(--bz-color-theme-primary);
}

.header .middle-header .middle-header-inner .header-items-wrap .header-item .content .address:hover {
    color: var(--bz-color-heading-primary);
}

.header .primary-header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .header .primary-header-inner {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner {
        padding: 20px 0;
    }
}

.header .primary-header-inner .header-logo img {
    max-width: 100px;
}

@media (max-width: 1399px) {
    .header .primary-header-inner .header-logo img {
        max-width: 100px;
    }
}

@media (max-width: 1200px) {
    .header .primary-header-inner .header-logo img {
        max-width: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-logo img {
        max-width: 100px;
    }
}

.header .primary-header-inner .header-menu-wrap {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .primary-header-inner .header-menu-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-menu-wrap ul {
        display: none;
    }
}

.header .primary-header-inner .header-menu-wrap ul li {
    display: inline-block;
    position: relative;
    margin: 0 15px;
}

@media (max-width: 1399px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 15px;
    }
}

@media (max-width: 1200px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 10px;
    }
}

.header .primary-header-inner .header-menu-wrap ul li:nth-child(1) {
    margin-left: 0;
}

.header .primary-header-inner .header-menu-wrap ul li a {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-heading-primary);
    display: block;
    font-size: 16px;
    padding: 23px 0;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1200px) {
    .header .primary-header-inner .header-menu-wrap ul li a {
        font-size: 16px;
    }
}

.header .primary-header-inner .header-menu-wrap ul li a:hover {
    color: var(--bz-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li a i {
    font-size: 13px;
}

.header .primary-header-inner .header-menu-wrap ul li ul {
    background-color: var(--bz-color-common-white);
    display: block;
    width: 220px;
    padding: 0;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    position: absolute;
    left: 0;
    top: 72px;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header .primary-header-inner .header-menu-wrap ul li:hover>ul {
    visibility: visible;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.header .primary-header-inner .header-menu-wrap ul li li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.header .primary-header-inner .header-menu-wrap ul li li:nth-child(1) {
    margin-left: 0;
}

.header .primary-header-inner .header-menu-wrap ul li li:not(:last-of-type) {
    border-bottom: 1px dashed var(--bz-color-border-1);
}

.header .primary-header-inner .header-menu-wrap ul li li:last-child {
    margin: 0;
    border-bottom: none;
}

.header .primary-header-inner .header-menu-wrap ul li li a {
    background-color: var(--bz-color-common-white);
    display: block;
    height: auto;
    line-height: inherit;
    color: var(--bz-color-heading-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 17px 0;
    padding-left: 30px;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    position: relative;
    z-index: 1;
}

.header .primary-header-inner .header-menu-wrap ul li li a:before {
    background-color: var(--bz-color-theme-primary);
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.header .primary-header-inner .header-menu-wrap ul li li a:hover:before {
    width: 100%;
}

.header .primary-header-inner .header-menu-wrap ul li li:hover {
    border-color: transparent;
}

.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: var(--bz-color-common-white);
}

.header .primary-header-inner .header-menu-wrap ul li li ul {
    top: 0;
    left: 100%;
}

.header .primary-header-inner .header-menu-wrap ul li li ul li a {
    color: var(--bz-color-common-white);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: var(--bz-color-common-white);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
    color: var(--bz-color-heading-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover li a:hover {
    color: var(--bz-color-common-white);
}

.header .primary-header-inner .header-menu-wrap ul li.active a {
    color: var(--bz-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li.active ul li a {
    color: var(--bz-color-heading-primary);
}

.header .primary-header-inner .header-menu-wrap ul li.active ul li:hover a {
    color: var(--bz-color-common-white);
}

.header .primary-header-inner .header-right-wrap .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-logo img {
        width: 90px;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .header-btn {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-theme-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 30px;
}

@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-btn {
        display: none;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon {
    background-color: var(--bz-color-heading-primary);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    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;
    margin-left: 20px;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger span {
    background-color: var(--bz-color-common-white);
    width: 20px;
    height: 1px;
    display: block;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger span:nth-child(2) {
    width: 20px;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger span:nth-child(3) {
    width: 20px;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger:hover span:nth-child(2) {
    width: 17px;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger:hover span:nth-child(3) {
    width: 10px;
}

.header .primary-header-inner .header-right-wrap .header-right .search-icon {
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    cursor: pointer;
    background-color: var(--bz-color-heading-primary);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    color: var(--bz-color-common-white);
    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;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .search-icon {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-right-wrap .header-right .search-icon {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .mean-push {
        display: none;
    }
}

.header-2 .top-bar {
    background-color: var(--bz-color-common-white);
    border-bottom: 1px solid var(--bz-color-border-1);
}

.header-2 .top-bar .top-bar-inner .top-bar-left span {
    color: var(--bz-color-heading-primary);
    font-weight: 500;
}

.header-2 .middle-header .middle-header-inner .header-logo:after,
.header-2 .middle-header .middle-header-inner .header-logo:before {
    display: none;
}

.header-3 {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.header-3 .overlay {
    background: rgba(255, 255, 255, 0.02);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    width: 100%;
    height: 70%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-3 .top-bar {
    background-color: transparent;
}

.header-3 .top-bar .top-bar-inner {
    padding: 0;
}

@media only screen and (max-width: 992px) {
    .header-3 .top-bar .top-bar-inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.header-3 .top-bar .top-bar-inner .top-bar-list li {
    font-size: 16px;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 30px 0;
    line-height: 1;
}

.header-3 .top-bar .top-bar-inner .top-bar-list li i {
    color: var(--bz-color-theme-red);
}

.header-3 .top-bar .top-bar-inner .top-bar-list li span,
.header-3 .top-bar .top-bar-inner .top-bar-list li a {
    color: var(--bz-color-common-white);
}

.header-3 .top-bar .top-bar-inner .top-bar-list li span:hover,
.header-3 .top-bar .top-bar-inner .top-bar-list li a:hover {
    color: var(--bz-color-theme-red);
}

.header-3 .top-bar .top-bar-inner .top-bar-list li span:hover {
    color: var(--bz-color-common-white);
}

/* Top bar location — défilement continu (clone du texte dans main.js) */
.header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee {
    display: inline-block;
    max-width: min(580px, 80vw);
    overflow: hidden;
    vertical-align: middle;
    -webkit-mask-image: linear-gradient(90deg,
            transparent,
            #000 0.75rem,
            #000 calc(100% - 0.75rem),
            transparent);
    mask-image: linear-gradient(90deg,
            transparent,
            #000 0.75rem,
            #000 calc(100% - 0.75rem),
            transparent);
}

/* Marquee responsive : largeur adaptée à chaque breakpoint */
@media only screen and (max-width: 1399.98px) {
    .header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee {
        max-width: min(480px, 60vw);
    }
}

@media only screen and (max-width: 1199.98px) {
    .header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee {
        max-width: min(380px, 55vw);
    }
}

@media only screen and (max-width: 991.98px) {
    .header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee {
        max-width: min(320px, 50vw);
    }
}

@media only screen and (max-width: 767.98px) {
    .header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee {
        max-width: min(260px, 70vw);
    }
}

@media only screen and (max-width: 480px) {
    .header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee {
        max-width: 80vw;
    }
}

.header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee__track {
    display: inline-flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: bz-top-bar-marquee 22s linear infinite;
    animation: bz-top-bar-marquee 22s linear infinite;
}

.header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee__text {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    white-space: nowrap;
    padding-right: 3rem;
}

@media (hover: hover) {
    .header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee:hover .top-bar-location-marquee__track {
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }
}

@-webkit-keyframes bz-top-bar-marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes bz-top-bar-marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee__track {
        -webkit-animation: none;
        animation: none;
    }
}

.header-3 .top-bar .top-bar-inner .top-bar-list li:nth-child(1) {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 992px) {
    .header-3 .top-bar .top-bar-inner .top-bar-list li:nth-child(1) {
        padding-left: 0;
        border: none;
    }
}

.header-3 .top-bar .top-bar-inner .top-bar-list li:not(:last-of-type) {
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 992px) {
    .header-3 .top-bar .top-bar-inner .top-bar-list li:not(:last-of-type) {
        margin-right: 20px;
        padding-right: 20px;
        border: none;
    }
}

.header-3 .top-bar .top-bar-inner .social-list {
    height: 100%;
    padding: 25px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 992px) {
    .header-3 .top-bar .top-bar-inner .social-list {
        display: none;
    }
}

.header-3 .top-bar .top-bar-inner .social-list li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.header-3 .top-bar .top-bar-inner .social-list li:not(:last-of-type) {
    margin-right: 10px;
}

.header-3 .top-bar .top-bar-inner .social-list li a {
    font-size: 16px;
    color: var(--bz-color-common-white);
}

.header-3 .top-bar .top-bar-inner .social-list li a:hover {
    color: var(--bz-color-theme-red);
}

.header-3 .primary-header-inner {
    background-color: var(--bz-color-common-white);
    padding: 0 30px;
    border-radius: 0 0 13px 13px;
}

@media only screen and (max-width: 992px) {
    .header-3 .primary-header-inner {
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header-3 .primary-header-inner {
        padding: 15px;
    }
}

.header-3 .primary-header-inner .inner-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 85px;
    -moz-column-gap: 85px;
    column-gap: 85px;
}

@media (max-width: 1200px) {
    .header-3 .primary-header-inner .inner-left {
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
    }
}

.header-3 .primary-header-inner .inner-left .header-menu-wrap ul li a {
    padding: 37px 0;
}

.header-3 .primary-header-inner .inner-left .header-menu-wrap ul li ul {
    top: 100px;
}

.header-3 .primary-header-inner .inner-left .header-menu-wrap ul li ul li a {
    padding: 17px 0;
    padding-left: 30px;
}

.header-3 .primary-header-inner .header-right-wrap .header-right .bz-primary-btn {
    padding: 17px 30px;
}

@media only screen and (max-width: 767px) {
    .header-3 .primary-header-inner .header-right-wrap .header-right .bz-primary-btn {
        display: none;
    }
}

.header-3 .primary-header-inner .header-right-wrap .header-right .sidebar-icon-2 .sidebar-trigger {
    background-color: rgba(236, 40, 28, 0.1);
    height: 50px;
    width: 50px;
    border-radius: 7px;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-column-gap: 7px;
    -moz-column-gap: 7px;
    column-gap: 7px;
    margin-left: 20px;
}

.header-3 .primary-header-inner .header-right-wrap .header-right .sidebar-icon-2 .sidebar-trigger span {
    background-color: var(--bz-color-theme-red);
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.header-3 .primary-header-inner .header-right-wrap .header-right .sidebar-icon-2 .sidebar-trigger span:not(:last-of-type) {
    margin-bottom: 5px;
}

.header-3 .primary-header-inner .header-right-wrap .header-right .sidebar-icon-2 .sidebar-trigger span:nth-child(2) {
    width: 20px;
}

.header-3 .primary-header-inner .header-right-wrap .header-right .sidebar-icon-2 .sidebar-trigger span:nth-child(3) {
    width: 20px;
}

.header-3 .primary-header-inner .header-right-wrap .header-right .sidebar-icon-2 .sidebar-trigger:hover span:nth-child(2) {
    width: 17px;
}

.header-3 .primary-header-inner .header-right-wrap .header-right .sidebar-icon-2 .sidebar-trigger:hover span:nth-child(3) {
    width: 10px;
}

.header-4 {
    position: relative;
}

.header-4 .top-bar {
    background-color: #122A4D;
}

.header-4 .top-bar .top-bar-inner {
    padding: 10px 0;
}

@media only screen and (max-width: 992px) {
    .header-4 .top-bar .top-bar-inner {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.header-4 .primary-header {
    background-color: var(--bz-color-common-white);
}

.header-4 .primary-header .primary-header-inner {
    padding: 0;
    border-radius: 0;
}

@media only screen and (max-width: 992px) {
    .header-4 .primary-header .primary-header-inner {
        padding: 20px 0;
    }
}

.header-4 .primary-header .primary-header-inner .header-right-wrap .header-right .sidebar-icon-2 .sidebar-trigger {
    background-color: rgba(14, 90, 242, 0.1);
}

.header-4 .primary-header .primary-header-inner .header-right-wrap .header-right .sidebar-icon-2 .sidebar-trigger span {
    background-color: var(--bz-color-theme-primary);
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu .header-right {
        display: none !important;
    }
}

.side-menu-icon {
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 100;
    display: block;
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
    .side-menu-icon {
        display: none;
    }
}

.side-menu-wrapper {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 850px;
    -webkit-transform: translateX(850px);
    transform: translateX(850px);
    height: 100%;
    display: block;
    background-color: var(--bz-color-theme-bg-dark-deep);
    z-index: 100;
    padding: 40px;
    -webkit-transition: transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.side-menu-wrapper .side-menu-close {
    background-color: var(--bz-color-theme-primary);
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}

.side-menu-wrapper.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media only screen and (max-width: 992px) {
    .side-menu-wrapper {
        display: none;
    }
}

.side-menu-content .side-menu-header {
    font-family: var(--bz-ff-body);
    font-size: 30px;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    margin-bottom: 40px;
}

.side-menu-content .side-menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box img {
    max-width: 150px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
    font-family: var(--bz-ff-body);
    font-size: 32px;
    font-weight: 500;
    color: var(--bz-color-theme-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
    max-width: 400px;
    width: 100%;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
    margin-bottom: 0;
}

.side-menu-content .side-menu-item .side-menu-arrow {
    font-size: 45px;
    color: var(--bz-color-theme-primary);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.side-menu-content .side-menu-item:hover {
    border: 1px solid var(--bz-color-border-6);
}

.side-menu-content .side-menu-item:hover .side-menu-arrow {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.side-menu-content .side-menu-item:last-child {
    margin-bottom: 0;
}

.side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}

.side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
}

@media only screen and (max-width: 992px) {
    .side-menu-overlay {
        display: none;
    }
}

.primary-header {
    width: 100%;
}

.primary-header.fixed {
    background-color: var(--bz-color-common-white);
    position: fixed;
    left: 0;
    top: 0;
    animation-name: menuSticky;
    -webkit-animation-name: menuSticky;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
    box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
    z-index: 99;
}

@-webkit-keyframes menuSticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes menuSticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

.mobile-side-menu-overlay,
.mobile-side-menu {
    display: none;
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu {
        background-color: var(--bz-color-bg-1);
        position: fixed;
        overflow-y: auto;
        top: 0;
        right: 0;
        width: 80%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        height: 100%;
        display: block;
        z-index: 100;
        padding: 40px 40px 40px 40px;
        -webkit-transition: transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        transition: -webkit-transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
    .mobile-side-menu {
        padding: 40px 20px;
        width: 100%;
        max-width: 320px;
    }
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu.is-open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .mobile-side-menu .side-menu-head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 50px;
    }

    .mobile-side-menu .side-menu-head a img {
        max-width: 120px;
    }

    .mobile-side-menu .side-menu-head .mobile-side-menu-close {
        position: fixed;
        top: 35px;
        right: 40px;
        color: var(--bz-color-common-white);
        font-size: 17px;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        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;
        border: 1px solid var(--bz-color-border-1);
    }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
    .mobile-side-menu .side-menu-head .mobile-side-menu-close {
        right: 16px;
    }
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
        background-color: var(--bz-color-theme-primary);
        color: var(--bz-color-common-white);
    }

    .mobile-side-menu .side-menu-wrap {
        overflow: hidden;
        margin-bottom: 50px;
    }

    .mobile-side-menu p {
        color: var(--bz-color-common-white);
        margin-bottom: 50px;
    }

    .mobile-side-menu .list-header {
        color: var(--bz-color-common-white);
        font-family: var(--bz-ff-body);
        font-weight: 400;
        margin-bottom: 30px;
    }

    .mobile-side-menu .side-menu-list {
        list-style: none;
    }

    .mobile-side-menu .side-menu-list li {
        font-family: var(--bz-ff-heading);
        font-size: 16px;
        font-weight: 500;
        color: var(--bz-color-common-white);
    }

    .mobile-side-menu .side-menu-list li span,
    .mobile-side-menu .side-menu-list li a {
        color: var(--bz-color-common-white);
        margin-left: 10px;
        font-size: 16px;
    }

    .mobile-side-menu .side-menu-list li i {
        margin-right: 10px;
    }

    .mobile-side-menu-overlay {
        background-color: rgba(0, 0, 0, 0.7);
        height: 100%;
        width: 0%;
        position: fixed;
        top: 0;
        z-index: 9;
        right: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 600ms ease;
        transition: all 600ms ease;
        z-index: 10;
        display: block;
    }

    .mobile-side-menu-overlay.is-open {
        width: 100%;
        opacity: 0.5;
        visibility: visible;
        cursor: url(../img/cancel.png), auto;
    }
}

.mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
}

.mean-bar .meanmenu-reveal {
    display: none !important;
}

.mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
}

.mean-bar .mean-nav.mean-nav>ul {
    display: block !important;
}

.mean-bar .mean-nav.mean-nav>ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
}

.mean-bar .mean-nav.mean-nav>ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bz-color-border-1);
}

.mean-bar .mean-nav.mean-nav>ul li a {
    color: var(--bz-color-heading-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border-top: none;
    padding: 0;
    float: none;
}

@media only screen and (max-width: 767px) {
    .mean-bar .mean-nav.mean-nav>ul li a {
        font-size: 14px;
    }
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    position: absolute;
    padding: 0;
    top: 3px;
    right: 0;
    width: 20px;
    height: 20px;
    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;
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand:before,
.mean-bar .mean-nav.mean-nav>ul li a.mean-expand:after {
    font-size: 12px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand:before {
    content: "+";
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked {
    background-color: var(--bz-color-heading-primary);
    color: var(--bz-color-common-white);
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked:after {
    content: "\f068";
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked:before {
    display: none;
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand i {
    display: none;
}

.mean-bar .mean-nav.mean-nav>ul li ul {
    padding: 0 0 0 30px;
    margin-top: 20px;
}

.mean-bar .mean-nav.mean-nav>ul li ul li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.mean-bar .mean-nav.mean-nav>ul li ul li a {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
    .mean-bar .mean-nav.mean-nav>ul li ul li a {
        font-size: 14px;
    }
}

#popup-search-box {
    background-color: var(--bz-color-common-white);
    position: fixed;
    width: 100%;
    height: 20%;
    top: -100%;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

#popup-search-box .box-inner-wrap form {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 15px;
}

#popup-search-box .box-inner-wrap form input {
    width: 100%;
    padding: 20px 15px;
    padding-right: 80px;
    background: transparent;
    border: none;
    color: #ddd;
    border: 1px solid var(--bz-color-border-1);
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:-moz-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input::-moz-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:focus {
    outline: none;
}

#popup-search-box .box-inner-wrap:hover {
    cursor: url(../img/cross.html), auto;
}

#popup-search-box .box-inner-wrap .search-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--bz-color-heading-primary);
    border: 1px solid var(--bz-color-border-1);
    height: 50px;
    width: 50px;
    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;
    font-size: 20px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    #popup-search-box .box-inner-wrap .search-close {
        height: 35px;
        width: 35px;
        top: 10px;
        right: 10px;
    }
}

#popup-search-box .box-inner-wrap .search-close:hover {
    background-color: var(--bz-color-theme-primary);
    border: 1px solid var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

#popup-search-box.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.popup-tags {
    position: relative;
    margin: 0 auto;
}

/* !END: Theme Header CSS */
/**----------------------------------------
    START: Hero CSS
----------------------------------------*/
.hero-section {
    background-color: #EAEEF5;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-section .hero-mask-img {
    background-color: var(--bz-color-common-black);
    -webkit-mask-image: url(../img/shapes/hero-mask-img.png);
    mask-image: url(../img/shapes/hero-mask-img.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    max-width: 960px;
    width: 100%;
    height: 775px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

@media (max-width: 1700px) {
    .hero-section .hero-mask-img {
        max-width: 775px;
    }
}

@media (max-width: 1200px) {
    .hero-section .hero-mask-img {
        max-width: 510px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section .hero-mask-img {
        max-width: 389px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-section .hero-mask-img {
        display: none;
    }
}

.hero-section .hero-mask-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-section .hero-mask-img .overlay {
    background: rgba(30, 110, 231, 0.6);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-section .hero-mask-img .overlay-2 {
    background: rgba(11, 42, 88, 0.22);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-section .shapes .shape {
    position: absolute;
    z-index: -1;
}

.hero-section .shapes .shape.shape-1 {
    top: 50px;
    left: 70px;
    animation: hero-anim-2 1s infinite linear alternate-reverse;
}

.hero-section .shapes .shape.shape-2 {
    bottom: 0;
    left: 0;
}

.hero-section .shapes .shape.shape-3 {
    left: 60%;
    bottom: 50px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    animation: hero-anim-1 1s infinite linear alternate-reverse;
}

.hero-section .shapes .shape.shape-4 {
    height: 100%;
    bottom: 0;
    left: 0;
}

.hero-section .shapes .shape.shape-4 img {
    height: 100%;
}

.hero-section .shapes .round-shape {
    background-color: var(--bz-color-common-white);
    width: 1262px;
    height: 1262px;
    position: absolute;
    top: -52%;
    right: -16%;
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 1700px) {
    .hero-section .shapes .round-shape {
        right: -35%;
    }
}

@media (max-width: 1200px) {
    .hero-section .shapes .round-shape {
        display: none;
    }
}

.hero-content {
    padding: 200px 0;
}

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

@media only screen and (max-width: 767px) {
    .hero-content {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content .section-heading .sub-heading {
        font-size: 14px;
    }
}

.hero-content .section-heading .section-title {
    font-size: 72px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
    .hero-content .section-heading .section-title {
        font-size: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content .section-heading .section-title {
        font-size: 32px;
    }
}

.hero-content .section-heading p {
    max-width: 500px;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .hero-content .section-heading p {
        max-width: 400px;
    }
}

.hero-content .hero-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
}

.hero-content .hero-btn-wrap .bz-primary-btn:before {
    background-color: var(--bz-color-heading-primary);
}

.hero-content .hero-btn-wrap .hero-btn {
    background-color: var(--bz-color-heading-primary);
}

.hero-content .hero-btn-wrap .hero-btn:before {
    background-color: var(--bz-color-theme-primary);
}

/* index-3 : calque survol boutons — gris semi-transparent au lieu de #191F29 */
body.index-3-page .bz-primary-btn.red-btn:before {
    background-color: var(--bz-color-bg-1);
}

body.index-3-page .hero-content .hero-btn-wrap .bz-primary-btn:not(.hero-btn):before {
    background-color: var(--bz-color-bg-1);
}

@-webkit-keyframes hero-anim-1 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(15px);
        transform: translateX(15px);
    }
}

@keyframes hero-anim-1 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(15px);
        transform: translateX(15px);
    }
}

@-webkit-keyframes hero-anim-2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }
}

@keyframes hero-anim-2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }
}

.hero-section-2 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-content-2 {
    padding: 180px 0;
    position: relative;
    z-index: 10;
}

@media only screen and (max-width: 767px) {
    .hero-content-2 {
        padding: 100px 0;
    }
}

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

.hero-content-2 .section-heading .section-title {
    font-size: 64px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .hero-content-2 .section-heading .section-title {
        font-size: 34px;
    }
}

.hero-content-2 p {
    color: var(--bz-color-common-white);
    max-width: 520px;
    width: 100%;
    margin-bottom: 50px;
}

.hero-content-2 .hero-btn {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-theme-primary);
}

.hero-content-2 .hero-btn:hover {
    color: var(--bz-color-common-white);
}

.hero-content-2 .hero-btn:before {
    background-color: var(--bz-color-theme-primary);
}

.hero-section-3 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-section-3 .shapes .shape {
    position: absolute;
    z-index: -1;
    height: 100%;
}

.hero-section-3 .shapes .shape img {
    height: 100%;
}

.hero-section-3 .shapes .shape.shape-1 {
    top: 0;
    left: 0;
}

.hero-section-3 .shapes .shape.shape-2 {
    top: 0;
    left: 0;
    opacity: 0.7;
}

.hero-content-3 {
    padding: 325px 0 265px 0;
}

@media only screen and (max-width: 992px) {
    .hero-content-3 {
        padding: 250px 0 160px 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-3 {
        padding: 150px 0 150px 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-3 .section-heading .sub-heading {
        font-size: 13px;
    }
}

.hero-content-3 .section-heading .section-title {
    color: var(--bz-color-common-white);
    font-size: 64px;
}

@media only screen and (max-width: 992px) {
    .hero-content-3 .section-heading .section-title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-3 .section-heading .section-title {
        font-size: 32px;
    }
}

.hero-content-3 .section-heading p {
    font-size: 18px;
    max-width: 750px;
    width: 100%;
    color: var(--bz-color-common-white);
    margin-bottom: 50px;
}

/* Home hero slider (index-3) */
.hero-slider-3 .hero-swiper-3 {
    position: relative;
    z-index: 0;
}

/* Formes décoratives DANS chaque slide : au-dessus du fond + overlay (::before), sous le texte */
.hero-slider-3 .swiper-slide>.shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-slider-3 .swiper-slide>.shapes .shape {
    z-index: 1;
}

/* Contenu hero au-dessus des formes PNG */
.hero-slider-3 .swiper-slide>.container-2 {
    position: relative;
    z-index: 2;
}

/* Lisibilité du titre / texte sur zones rouges */
.hero-slider-3 .hero-slide-content .section-heading .sub-heading,
.hero-slider-3 .hero-slide-content .section-heading .section-title,
.hero-slider-3 .hero-slide-content .section-heading p {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.65),
        0 2px 20px rgba(0, 0, 0, 0.45);
}

.hero-slider-3 .hero-slide-content .hero-btn-wrap {
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
}

/* index-3 hero : shape-2 (hero-bg-shape-3) doit couvrir jusqu’au bord droit du viewport */
.hero-slider-3 .shapes .shape.shape-2 {
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
}

.hero-slider-3 .shapes .shape.shape-2 img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: right center;
}

.hero-slider-3 .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slider-3 .hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 6.5s ease;
    transition: -webkit-transform 6.5s ease;
    transition: transform 6.5s ease;
    transition: transform 6.5s ease, -webkit-transform 6.5s ease;
}

.hero-slider-3 .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(9, 14, 25, 0.48);
    z-index: -1;
}

.hero-slider-3 .swiper-slide-active .hero-slide-bg {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

/* index-3 hero : sous-titres h4 en blanc (red-content impose le rouge par défaut) */
.hero-slider-3 .hero-slide-content .section-heading.red-content .sub-heading {
    color: var(--bz-color-common-white);
}

.hero-slider-3 .hero-slide-content .sub-heading,
.hero-slider-3 .hero-slide-content .section-title,
.hero-slider-3 .hero-slide-content p,
.hero-slider-3 .hero-slide-content .hero-btn-wrap {
    opacity: 0;
    -webkit-transform: translateY(28px);
    transform: translateY(28px);
    -webkit-transition: opacity 0.75s ease, -webkit-transform 0.75s ease;
    transition: opacity 0.75s ease, -webkit-transform 0.75s ease;
    transition: opacity 0.75s ease, transform 0.75s ease;
    transition: opacity 0.75s ease, transform 0.75s ease, -webkit-transform 0.75s ease;
}

.hero-slider-3 .swiper-slide-active .hero-slide-content .sub-heading {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.18s;
    transition-delay: 0.18s;
}

.hero-slider-3 .swiper-slide-active .hero-slide-content .section-title {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.hero-slider-3 .swiper-slide-active .hero-slide-content p {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.52s;
    transition-delay: 0.52s;
}

.hero-slider-3 .swiper-slide-active .hero-slide-content .hero-btn-wrap {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.68s;
    transition-delay: 0.68s;
}

.hero-slider-3 .hero-swiper-pagination-3 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;
    z-index: 3;
    text-align: center;
}

.hero-slider-3 .hero-swiper-pagination-3 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.65);
    opacity: 1;
}

.hero-slider-3 .hero-swiper-pagination-3 .swiper-pagination-bullet-active {
    background: var(--bz-color-theme-red);
}

@media only screen and (max-width: 767px) {
    .hero-slider-3 .hero-swiper-pagination-3 {
        bottom: 24px;
    }
}

/* !END: Hero CSS */
/**----------------------------------------
    START: About CSS
----------------------------------------*/
.about-img-wrap {
    max-width: 595px;
    width: 100%;
    height: 565px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .about-img-wrap {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .about-img-wrap {
        height: 435px;
    }
}

.about-img-wrap .about-img {
    max-width: 560px;
    width: 100%;
    height: 530px;
    margin-left: auto;
    border-radius: 30px;
}

@media only screen and (max-width: 767px) {
    .about-img-wrap .about-img {
        height: 400px;
    }
}

.about-img-wrap .shape {
    background-color: rgba(21, 21, 21, 0.1);
    max-width: 315px;
    width: 100%;
    height: 415px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 30px;
}

@media only screen and (max-width: 767px) {
    .about-img-wrap .shape {
        height: 285px;
    }
}

.about-content {
    padding-left: 40px;
}

@media only screen and (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

.about-content .section-heading .section-title {
    margin-bottom: 20px;
}

.about-content .about-items {
    max-width: 490px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-bottom: 40px;
}

.about-content .about-items .about-item {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 15px;
    -ms-grid-columns: 90px 15px 1fr;
    grid-template-columns: 90px 1fr;
}

.about-content .about-items .about-item .icon {
    background: linear-gradient(93.22deg, rgba(14, 89, 242, 0.28) 2.69%, rgba(255, 255, 255, 0) 79.63%);
    height: 90px;
    width: 90px;
    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;
    border-radius: 50%;
}

.about-content .about-items .about-item .content .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.about-content .about-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
}

.about-content .about-btn-wrap .transparent {
    padding: 19px 30px;
}

.about-content .about-btn-wrap .transparent i {
    margin-left: 0;
    margin-right: 10px;
}

.about-section-2 {
    background-color: #F6F7FA;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    padding-top: 195px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .about-section-2 {
        clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%);
    }
}

@media only screen and (max-width: 992px) {
    .about-section-2 {
        clip-path: polygon(0 0%, 100% 0, 100% 100%, 0% 100%);
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .about-section-2 {
        padding-top: 50px;
    }
}

.about-section-2 .shapes .shape {
    position: absolute;
    z-index: -1;
}

.about-section-2 .shapes .shape.shape-1 {
    top: 0;
    left: 0;
}

.about-wrap-2 {
    position: relative;
}

.about-wrap-2 .shapes-2 .shape {
    position: absolute;
    z-index: -1;
}

.about-wrap-2 .shapes-2 .shape.shape-2 {
    bottom: -100px;
    right: 0;
}

@media (max-width: 1200px) {
    .about-content-2 {
        margin-bottom: 50px;
    }
}

.about-content-2 .section-heading .section-title {
    margin-bottom: 20px;
}

.about-content-2 .about-items .about-item {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 70px 20px 1fr;
    grid-template-columns: 70px 1fr;
    grid-gap: 20px;
}

@media only screen and (max-width: 767px) {
    .about-content-2 .about-items .about-item {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.about-content-2 .about-items .about-item:not(:last-of-type) {
    margin-bottom: 45px;
}

.about-content-2 .about-items .about-item .icon {
    background: var(--bz-color-common-white);
    border: 1px solid #E5E9F5;
    -webkit-box-shadow: 0px 13px 26px rgba(20, 18, 33, 0.07);
    box-shadow: 0px 13px 26px rgba(20, 18, 33, 0.07);
    height: 70px;
    width: 70px;
    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;
    border-radius: 50%;
}

.about-content-2 .about-items .about-item .content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-content-2 .about-items .about-item .content p {
    margin-bottom: 0;
    max-width: 380px;
    width: 100%;
}

.about-img-wrap-2 {
    max-width: 645px;
    width: 100%;
    height: 585px;
    position: relative;
}

@media (max-width: 1200px) {
    .about-img-wrap-2 {
        margin: 0 auto;
    }
}

.about-img-wrap-2 .about-counter {
    background-color: var(--bz-color-theme-primary);
    height: 170px;
    width: 170px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.about-img-wrap-2 .about-counter .title {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
}

.about-img-wrap-2 .about-counter .title .odometer-auto-theme {
    font-family: inherit;
}

.about-img-wrap-2 .about-counter p {
    color: var(--bz-color-common-white);
    margin-bottom: 0;
    line-height: 1.2;
}

.about-img-wrap-2 .about-images .about-img {
    position: absolute;
    border-radius: 15px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-img-wrap-2 .about-images .about-img.img-1 {
    top: 0;
    right: 0;
    max-width: 460px;
    width: 100%;
    height: 400px;
}

.about-img-wrap-2 .about-images .about-img.img-2 {
    max-width: 170px;
    height: 214px;
    left: 0;
    bottom: 185px;
}

.about-img-wrap-2 .about-images .about-img.img-3 {
    left: 0;
    bottom: 0;
}

.about-img-wrap-2 .about-images .about-img-overlay {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    height: 171px;
    width: 100%;
}

.about-img-wrap-2 .about-images .about-img-overlay .overlay {
    background: var(--bz-color-theme-primary);
    mix-blend-mode: multiply;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
}

.about-img-wrap-2 .about-images .about-img-overlay .video-btn a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bz-color-common-white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
    border-radius: 100px;
    padding: 20px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
    .about-img-wrap-2 .about-images .about-img-overlay .video-btn a {
        font-size: 14px;
        width: 200px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 15px 20px;
    }
}

.about-section-3 .about-section-3__row>.col-lg-6:first-child {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

/* Colonne image = même hauteur que le texte (≥ lg) */
@media only screen and (min-width: 992px) {
    .about-section-3 .about-section-3__row {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .about-section-3 .about-section-3__row>.col-lg-6:first-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .about-section-3 .about-section-3__row>.col-lg-6:first-child .about-img-3 {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: 0;
        height: 100%;
    }

    .about-section-3 .about-img-3 .about-img-zoom {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-height: 280px;
    }
}

.about-img-3 {
    border-radius: 30px;
    overflow: hidden;
    margin-right: 20px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.about-img-3 .img-overlay.overlay-2 {
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(236, 40, 28, 0.14)), color-stop(45%, rgba(236, 40, 28, 0.04)), to(rgba(236, 40, 28, 0)));
    background-image: linear-gradient(180deg, rgba(236, 40, 28, 0.14) 0%, rgba(236, 40, 28, 0.04) 45%, rgba(236, 40, 28, 0) 100%);
}

.about-img-zoom {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: inherit;
    -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img-zoom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.about-img-3.is-inview .about-img-zoom:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.about-img-3.about-img-3d-scroll {
    -webkit-transform: translate3d(-120px, 0, 0) rotateY(12deg) rotateX(3deg) scale(0.96);
    transform: translate3d(-120px, 0, 0) rotateY(12deg) rotateX(3deg) scale(0.96);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    opacity: 0;
    -webkit-box-shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
    -webkit-transition: -webkit-transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.1s ease, box-shadow 1.1s ease;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.1s ease, box-shadow 1.1s ease;
    will-change: transform, opacity;
}

.about-img-3.about-img-3d-scroll.is-inview {
    -webkit-transform: translate3d(0, 0, 0) rotateY(0) rotateX(0) scale(1);
    transform: translate3d(0, 0, 0) rotateY(0) rotateX(0) scale(1);
    opacity: 1;
    -webkit-box-shadow: 0 32px 72px rgba(0, 0, 0, 0.26), 0 12px 28px rgba(236, 40, 28, 0.12);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.26), 0 12px 28px rgba(236, 40, 28, 0.12);
}

@media only screen and (max-width: 992px) {
    .about-img-3 {
        margin-right: 0;
        margin-bottom: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-img-3.about-img-3d-scroll {
        -webkit-transition: opacity 0.35s ease, box-shadow 0.35s ease;
        transition: opacity 0.35s ease, box-shadow 0.35s ease;
    }

    .about-img-3.about-img-3d-scroll:not(.is-inview) {
        -webkit-transform: translate3d(-40px, 0, 0);
        transform: translate3d(-40px, 0, 0);
    }

    .about-img-3.about-img-3d-scroll.is-inview {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .about-img-zoom {
        -webkit-transition: none;
        transition: none;
    }

    .about-img-3.is-inview .about-img-zoom:hover {
        -webkit-transform: none;
        transform: none;
    }
}

.about-content-3 {
    max-width: 550px;
    width: 100%;
    padding-left: 20px;
}

@media only screen and (max-width: 992px) {
    .about-content-3 {
        padding-left: 0;
    }
}

.about-content-3 p {
    margin-bottom: 30px;
}

.about-content-3 .about-list {
    margin-bottom: 40px;
}

.about-content-3 .about-list li {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40px 15px 1fr;
    grid-template-columns: 40px 1fr;
    grid-gap: 15px;
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
}

.about-content-3 .about-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

.about-content-3 .about-list li .number {
    background-color: #F9EBEA;
    height: 40px;
    width: 40px;
    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;
    color: var(--bz-color-theme-red);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    margin-top: 5px;
}

.about-section-4 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 360px;
}

@media only screen and (max-width: 992px) {
    .about-section-4 {
        padding-bottom: 340px;
    }
}

@media only screen and (max-width: 767px) {
    .about-section-4 {
        padding-bottom: 300px;
    }
}

.about-section-4 .shapes .shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

@media only screen and (max-width: 992px) {
    .about-content-4 {
        margin-bottom: 50px;
    }
}

.about-content-4 p {
    margin-bottom: 40px;
}

.about-content-4 .about-contact-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
}

.about-content-4 .about-contact-items .about-contact {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 60px 15px 1fr;
    grid-template-columns: 60px 1fr;
    grid-gap: 15px;
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid var(--bz-color-border-1);
}

@media (max-width: 1200px) {
    .about-content-4 .about-contact-items .about-contact {
        border: none;
        padding-right: 0;
        margin-right: 30px;
    }
}

.about-content-4 .about-contact-items .about-contact .icon {
    background: var(--bz-color-common-white);
    border: 1px solid #E2E4E8;
    -webkit-box-shadow: 0px 12px 29px rgba(21, 29, 40, 0.08);
    box-shadow: 0px 12px 29px rgba(21, 29, 40, 0.08);
    color: var(--bz-color-theme-primary);
    height: 60px;
    width: 60px;
    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;
    border-radius: 50%;
}

.about-content-4 .about-contact-items .about-contact .content span {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-heading-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 7px;
}

.about-content-4 .about-contact-items .about-contact .content a {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-theme-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}

.about-content-4 .about-contact-items .about-author {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 60px 15px 1fr;
    grid-template-columns: 60px 1fr;
    grid-gap: 15px;
}

.about-content-4 .about-contact-items .about-author img {
    border-radius: 50%;
}

.about-content-4 .about-contact-items .about-author .name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.about-content-4 .about-contact-items .about-author .name span {
    font-family: var(--bz-ff-heading);
    display: block;
    color: var(--bz-color-text-body);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.about-img-wrap-4 {
    position: relative;
    height: 600px;
    max-width: 595px;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .about-img-wrap-4 {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .about-img-wrap-4 {
        max-width: 293px;
        margin: 0 auto;
    }
}

.about-img-wrap-4 .about-img {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
}

.about-img-wrap-4 .about-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-img-wrap-4 .about-img.img-1 {
    max-width: 285px;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .about-img-wrap-4 .about-img.img-1 {
        display: none;
    }
}

.about-img-wrap-4 .about-img.img-2 {
    top: 0;
    right: 0;
    height: 372px;
    max-width: 293px;
}

.about-img-wrap-4 .about-counter {
    background-color: var(--bz-color-theme-primary);
    max-width: 293px;
    width: 100%;
    height: 208px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    padding: 40px 30px;
    border-radius: 15px;
    z-index: 1;
    overflow: hidden;
}

.about-img-wrap-4 .about-counter .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.about-img-wrap-4 .about-counter .title {
    color: var(--bz-color-common-white);
    font-size: 48px;
    line-height: 1;
    margin-bottom: 0;
}

.about-img-wrap-4 .about-counter .title .odometer-auto-theme {
    font-family: inherit;
}

.about-img-wrap-4 .about-counter .title .odometer-formatting-mark {
    display: none;
}

.about-img-wrap-4 .about-counter p {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1;
    padding-left: 5px;
}

/* !END: About CSS */
/**----------------------------------------
    START: Counter CSS
----------------------------------------*/
.counter-section {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.counter-section .overlay {
    background-color: rgba(0, 15, 41, 0.75);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.counter-section .shape {
    position: absolute;
    height: 100%;
}

.counter-section .shape img {
    height: 100%;
}

.counter-section .shape.shape-1 {
    top: 0;
    left: 0;
}

.counter-section .shape.shape-2 {
    top: 0;
    right: 0;
}

.counter-item {
    position: relative;
    z-index: 2;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 92px 20px 1fr;
    grid-template-columns: 92px 1fr;
    grid-gap: 20px;
}

.counter-item .icon {
    max-width: 92px;
    width: 100%;
    height: 92px;
    position: relative;
    z-index: 1;
}

.counter-item .icon .icon-inner {
    background: rgba(216, 231, 253, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(12.5px);
    backdrop-filter: blur(12.5px);
    height: 85px;
    width: 85px;
    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;
    margin-left: auto;
    border-radius: 10px;
}

.counter-item .icon .shape {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    width: 85px;
    height: 85px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.counter-item .counter-content .title {
    color: var(--bz-color-common-white);
    margin-bottom: 0;
    line-height: 1;
}

.counter-item .counter-content .title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
}

.counter-item .counter-content p {
    color: var(--bz-color-common-white);
    margin-bottom: 0;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 10px;
}

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

.service-counter .bg-item .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-filter: saturate(0);
    filter: saturate(0);
}

.service-counter .bg-item .overlay {
    background: rgba(9, 15, 26, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.service-counter .bg-item .shapes .shape {
    position: absolute;
    z-index: -1;
    height: 100%;
}

.service-counter .bg-item .shapes .shape img {
    height: 100%;
}

.service-counter .bg-item .shapes .shape.shape-1 {
    top: 0;
    left: 0;
}

.service-counter .bg-item .shapes .shape.shape-2 {
    top: 0;
    right: 0;
}

.counter-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.27);
    -webkit-box-shadow: 0px 12px 31px rgba(4, 10, 21, 0.6);
    box-shadow: 0px 12px 31px rgba(4, 10, 21, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .counter-card {
        padding: 40px 30px;
    }
}

.counter-card .icon {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.counter-card .content .title {
    color: var(--bz-color-common-white);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1200px) {
    .counter-card .content .title {
        font-size: 36px;
    }
}

.counter-card .content .title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
    margin-bottom: -2px;
}

.counter-card .content p {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

/* !END: Counter CSS */
/**----------------------------------------
    START: Service CSS
----------------------------------------*/
.service-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.service-item {
    background-color: var(--bz-color-common-white);
    padding: 40px 35px;
    -webkit-box-shadow: 0px 8px 38px rgba(20, 27, 36, 0.05);
    box-shadow: 0px 8px 38px rgba(20, 27, 36, 0.05);
    border-radius: 12px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .service-item {
        padding: 30px 20px;
    }
}

.service-item .icon {
    height: 80px;
    width: 80px;
    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;
    border: 1px solid var(--bz-color-border-1);
    border-radius: 10px;
    margin-bottom: 30px;
}

.service-item .icon img {
    height: 42px;
    width: 42px;
    margin: 0 auto;
}

.service-item .service-content .title {
    color: var(--bz-color-heading-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-item .service-content p {
    font-size: 14px;
    margin-bottom: 25px;
}

.service-item:hover {
    margin-top: -5px;
}

.service-left-content .section-heading {
    margin-bottom: 30px;
}

.service-left-content .section-heading .section-title {
    margin-bottom: 20px;
}

.service-items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding-left: 30px;
}

@media only screen and (max-width: 992px) {
    .service-items {
        margin-top: 40px;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .service-items {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.service-item-2 {
    background: -webkit-gradient(linear, left top, left bottom, from(#E2EEFF), color-stop(50%, rgba(255, 255, 255, 0)));
    background: linear-gradient(180deg, #E2EEFF 0%, rgba(255, 255, 255, 0) 50%);
    border: 1px solid #E2E8EF;
    border-radius: 15px;
    padding: 40px;
    -webkit-filter: drop-shadow(0px 16px 42px rgba(66, 107, 155, 0.15));
    filter: drop-shadow(0px 16px 42px rgba(66, 107, 155, 0.15));
}

@media only screen and (max-width: 767px) {
    .service-item-2 {
        padding: 30px 20px;
    }
}

.service-item-2 .icon {
    background-color: var(--bz-color-common-white);
    border: 1px solid var(--bz-color-border-1);
    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;
    border-radius: 10px;
    height: 80px;
    width: 80px;
    margin-bottom: 30px;
}

.service-item-2 .content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-item-2 .content p:last-child {
    margin-bottom: 0;
}

.service-item-2:hover {
    -webkit-filter: drop-shadow(0px 16px 42px rgba(66, 107, 155, 0.15));
    filter: drop-shadow(0px 16px 42px rgba(66, 107, 155, 0.15));
}

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

.service-section-3 .bg-shape {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.service-section-3 .bg-shape img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-item-3 {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #ECE7E7;
    -webkit-box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.08);
}

.service-item-3 .service-thumb {
    position: relative;
    height: 150px;
    width: 100%;
    overflow: hidden;
}

.service-item-3 .service-thumb .img-item {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: saturate(0) contrast(110%);
    filter: saturate(0) contrast(110%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-item-3 .service-thumb .icon {
    background-color: #FEEFEE;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 150px;
    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;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-item-3 .service-thumb .icon img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .service-item-3 .service-thumb .icon {
        width: 120px;
    }

    .service-item-3 .service-thumb .icon img {
        width: 45%;
    }
}

.service-item-3 .service-content {
    background-color: var(--bz-color-common-white);
    padding: 40px;
}

@media only screen and (max-width: 767px) {
    .service-item-3 .service-content {
        padding: 30px;
    }
}

.service-item-3 .service-content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-item-3 .service-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.service-item-3 .service-content .bz-primary-btn {
    font-size: 14px;
    padding: 16px 30px;
}

.service-item-3:hover .service-thumb .img-item {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.service-item-3:hover .service-thumb .icon {
    background-color: var(--bz-color-theme-red);
}

.service-item-3:hover .service-thumb .icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

/* index-3 : cartes services — effets 3D retirés */

.service-item-4 {
    border-radius: 15px;
    overflow: hidden;
}

.service-item-4 .service-thumb {
    height: 240px;
    width: 100%;
    position: relative;
}

.service-item-4 .service-thumb .main-img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-item-4 .service-thumb .icon {
    background-color: var(--bz-color-common-white);
    height: 80px;
    width: 80px;
    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;
    -webkit-box-shadow: 0px 16px 20px rgba(20, 31, 54, 0.03);
    box-shadow: 0px 16px 20px rgba(20, 31, 54, 0.03);
    border-radius: 10px;
    position: absolute;
    bottom: -40px;
    left: 40px;
    z-index: 10;
}

@media only screen and (max-width: 767px) {
    .service-item-4 .service-thumb .icon {
        left: 30px;
    }
}

.service-item-4 .service-content {
    background-color: #F3F4F6;
    padding: 65px 40px 40px 40px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .service-item-4 .service-content {
        padding: 65px 30px 30px 30px;
    }
}

.service-item-4 .service-content:before {
    background-color: var(--bz-color-theme-primary);
    content: "";
    height: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.service-item-4 .service-content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D0D6E1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-item-4 .service-content p {
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-item-4 .service-content .read-more {
    color: var(--bz-color-theme-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-item-4 .service-content .read-more i {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.service-item-4 .service-content .read-more:hover i {
    margin-left: 5px;
}

.service-item-4:hover .service-content:before {
    height: 100%;
}

.service-item-4:hover .service-content a,
.service-item-4:hover .service-content p,
.service-item-4:hover .service-content .title {
    color: var(--bz-color-common-white);
}

/* !END: Service CSS */
/**----------------------------------------
    START: Content CSS
----------------------------------------*/
.content-wrap {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    border-radius: 50px 0 50px 0;
    padding-right: 120px;
    padding-left: 120px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .content-wrap {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .content-wrap {
        padding: 60px 0;
        border-radius: 0;
    }
}

.content-wrap .shapes .shape-1 {
    background-color: var(--bz-color-theme-primary);
    mix-blend-mode: multiply;
    height: 1530px;
    width: 732px;
    position: absolute;
    top: -90px;
    right: -150px;
    z-index: -1;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}

.content-wrap .shapes .shape-2 {
    background-color: var(--bz-color-theme-primary);
    mix-blend-mode: multiply;
    height: 1410px;
    width: 533px;
    position: absolute;
    top: 60px;
    right: -25px;
    z-index: -1;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}

.content-box {
    max-width: 795px;
    background-color: var(--bz-color-common-white);
    padding: 100px;
    border-radius: 50px 0 50px 0;
    margin-left: auto;
}

@media only screen and (max-width: 992px) {
    .content-box {
        padding: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .content-box {
        padding: 60px 20px;
        border-radius: 0;
    }
}

.content-tab .nav-tabs {
    border: none;
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
}

.content-tab .nav-tabs .nav-link {
    font-family: var(--bz-ff-heading);
    background-color: var(--bz-color-grey-2);
    color: var(--bz-color-heading-primary);
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
}

.content-tab .nav-tabs .nav-link.active {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

.content-tab .tab-info {
    margin-top: 30px;
}

.tab-progress {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.tab-progress:not(:last-of-type) {
    margin-bottom: 40px;
}

.tab-progress .title {
    font-family: var(--bz-ff-body);
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
}

.tab-progress .progress {
    height: 8px;
    overflow: visible;
    border-radius: 5px;
}

.tab-progress .progress .progress-bar {
    position: relative;
    background-color: var(--bz-color-theme-primary);
    overflow: visible;
    border-radius: 5px;
}

.tab-progress .progress .progress-bar span {
    color: var(--bz-color-theme-primary);
    font-family: var(--bz-ff-body);
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    bottom: -38px;
    right: 0;
}

/* !END: Content CSS */
/**----------------------------------------
    START: Team CSS
----------------------------------------*/
.team-section {
    background-color: #131C2B;
    position: relative;
    z-index: 1;
}

.team-section .bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.team-wrap {
    padding: 0 30px;
}

.team-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team-item .team-thumb {
    max-width: 500px;
    width: 100%;
    height: 452px;
    position: relative;
    z-index: 1;
}

.team-item .team-thumb img {
    -webkit-filter: saturate(1) contrast(1);
    filter: saturate(1) contrast(1);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-item .team-thumb .shapes .shape-1 {
    background: -webkit-gradient(linear, left top, left bottom, from(#294F89), to(rgba(6, 25, 57, 0)));
    background: linear-gradient(180deg, #294F89 0%, rgba(6, 25, 57, 0) 100%);
    mix-blend-mode: hard-light;
    -webkit-transform: rotate(33.32deg);
    transform: rotate(33.32deg);
    height: 660px;
    width: 122px;
    position: absolute;
    top: -76%;
    left: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.team-item .team-thumb .shapes .shape-2 {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(23, 40, 65, 0.61)), to(rgba(6, 25, 57, 0)));
    background: linear-gradient(180deg, rgba(23, 40, 65, 0.61) 0%, rgba(6, 25, 57, 0) 100%);
    mix-blend-mode: hard-light;
    -webkit-transform: rotate(33.32deg);
    transform: rotate(33.32deg);
    height: 660px;
    width: 200px;
    position: absolute;
    top: -68%;
    left: 83px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.team-item .team-content-wrap {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-item .team-content-wrap .team-content {
    background: var(--bz-color-theme-primary);
    padding: 50px 30px 30px 30px;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
}

.team-item .team-content-wrap .team-content .title {
    color: var(--bz-color-common-white);
    font-size: 24px;
    font-weight: 600;
}

.team-item .team-content-wrap .team-content .title a:hover {
    color: var(--bz-color-common-white);
}

.team-item .team-content-wrap .team-content span {
    font-size: 14px;
    font-weight: 500;
    color: var(--bz-color-common-white);
    line-height: 1;
}

.team-item .team-content-wrap .team-social {
    position: absolute;
    top: -18px;
    right: 40px;
    z-index: 2;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-item .team-content-wrap .team-social .expand {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-theme-red);
    font-size: 15px;
    height: 50px;
    width: 50px;
    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;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 50%;
}

.team-item .team-content-wrap .team-social .expand:hover {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-theme-red);
}

.team-item .team-content-wrap .team-social .social-list {
    position: absolute;
    bottom: 55px;
    right: 0px;
    list-style: none;
}

.team-item .team-content-wrap .team-social .social-list li {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-item .team-content-wrap .team-social .social-list li a {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-heading-primary);
    font-size: 15px;
    height: 50px;
    width: 50px;
    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;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
}

.team-item .team-content-wrap .team-social .social-list li a:hover {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

.team-item .team-content-wrap .team-social .social-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.team-item .team-content-wrap .team-social .social-list li:nth-child(4) {
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}

.team-item .team-content-wrap .team-social .social-list li:nth-child(3) {
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
}

.team-item .team-content-wrap .team-social .social-list li:nth-child(2) {
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.team-item .team-content-wrap .team-social .social-list li:nth-child(1) {
    -webkit-transition-delay: 250ms;
    transition-delay: 250ms;
}

.team-item .team-content-wrap .team-social:hover {
    overflow: visible;
}

.team-item .team-content-wrap .team-social:hover .social-list li {
    visibility: visible;
    opacity: 1;
}

.team-item:hover .team-thumb img {
    -webkit-filter: saturate(0) contrast(110%);
    filter: saturate(0) contrast(110%);
}

.team-item:hover .team-thumb .shapes .shape-1 {
    top: -80%;
    left: 40px;
    visibility: visible;
    opacity: 1;
}

.team-item:hover .team-thumb .shapes .shape-2 {
    top: -72%;
    left: 103px;
    visibility: visible;
    opacity: 1;
}

.team-item:hover .team-content-wrap {
    bottom: 0;
    visibility: visible;
    opacity: 1;
}

.team-card {
    background-color: rgb(255, 255, 255);
    height: 410px;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(136, 0, 0, 0.753);
}

.team-card .overlay {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(59.51%, rgba(10, 15, 33, 0)), to(rgba(16, 18, 28, 0.315)));
    background: linear-gradient(180deg, rgba(255, 157, 157, 0.178) 59.51%, rgba(243, 51, 51, 0.384) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 15px;
}

.team-card .team-member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    height: 375px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.team-card .team-member img {
    -webkit-filter: saturate(0) contrast(110%);
    filter: saturate(0) contrast(110%);
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 992px) {
    .team-card .team-member img {
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.team-card .team-content {
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 2;
}

.team-card .team-content .title {
    color: var(--bz-color-common-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card .team-content .title a:hover {
    color: var(--bz-color-theme-red);
}

.team-card .team-content span {
    color: var(--bz-color-common-white);
    font-family: var(--bz-ff-heading);
}

.team-card .hover-content-wrap {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    position: relative;
}

.team-card .hover-content-wrap:before {
    background-color: rgba(136, 0, 0, 0.753);
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.team-card .hover-content-wrap .hover-content {
    position: relative;
    z-index: 6;
    padding: 40px 30px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.team-card .hover-content-wrap .hover-content .title {
    color: var(--bz-color-common-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card .hover-content-wrap .hover-content .title a:hover {
    color: var(--bz-color-common-white);
}

.team-card .hover-content-wrap .hover-content span {
    color: var(--bz-color-common-white);
    font-family: var(--bz-ff-heading);
}

.team-card .hover-content-wrap .hover-content p {
    color: var(--bz-color-common-white);
    margin-top: 20px;
    margin-bottom: 20px;
}

.team-card .hover-content-wrap .hover-content .team-social li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.team-card .hover-content-wrap .hover-content .team-social li:not(:last-of-type) {
    margin-right: 20px;
}

.team-card .hover-content-wrap .hover-content .team-social li a {
    color: #FF9089;
}

.team-card .hover-content-wrap .hover-content .team-social li a:hover {
    color: var(--bz-color-common-white);
}

.team-card:hover .hover-content-wrap:before {
    height: 100%;
}

.team-card:hover .hover-content-wrap .hover-content {
    visibility: visible;
    opacity: 1;
}

/* index-3 : mockup image droite */
.team-section-3--card-3d {
    overflow: hidden;
}

/* Élargit la colonne cartes pour réduire l'espace avec l'image */
@media (min-width: 992px) {
    .team-section-3--card-3d>.container-2>.row>.col-lg-7 {
        flex: 0 0 auto;
        width: 70%;
        max-width: 70%;
    }

    .team-section-3--card-3d>.container-2>.row>.team-section-3__img-col.col-lg-5 {
        flex: 0 0 auto;
        width: 30%;
        max-width: 30%;
    }
}

.team-section-3__img-col {
    padding: 0 !important;
    overflow: visible;
    border-radius: 20px 0 0 20px;
    align-self: flex-start !important;
    /* Positionne l'image verticalement */
    margin-top: 12px;
    /* Bleed jusqu'au bord droit du viewport uniquement */
    margin-right: calc(-1 * max(0px, (100vw - 1350px) / 2 + 15px));
    position: relative;
}

.team-section-3__mockup {
    width: 100%;
    max-width: 100%;
    height: 880px;
    max-height: none;
    object-fit: contain;
    object-position: right top;
    display: block;
    border-radius: 20px 0 0 20px;
    margin: 0;
    padding: 0;
}

/* Cards : descend légèrement la grille */
.team-section-3--card-3d .pb-demo-grid {
    margin-top: 0 !important;
    padding-top: 0;
}

/* Espace entre le titre de section et la grille */
.team-section-3--card-3d>.container-2>.row.align-items-stretch {
    margin-top: 0 !important;
    padding-top: 48px;
}

.team-section-3--card-3d>.container-2>.section-heading {
    margin-bottom: 0;
}

.team-section-3--card-3d>.container-2>.section-heading .section-title {
    margin-bottom: 0;
}

/* CTA "Télécharger l'application Babicar" avec QR code — sans background */
.pb-demo-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 32px;
    min-height: 150px;
    border-radius: 20px;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.pb-demo-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
}

.pb-demo-cta__text {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
    padding-left: 0;
}

.pb-demo-cta__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    color: #191F29;
    font-family: inherit;
    text-align: left;
}

.pb-demo-cta__qr {
    flex: 0 0 auto;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.pb-demo-cta__qr img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .pb-demo-cta {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .pb-demo-cta__qr {
        width: 140px;
        height: 140px;
    }

    .pb-demo-cta__title {
        font-size: 17px;
    }
}

/* Supprime l'espace entre team-section-3 et testimonial-section-3 */
.team-section-3.team-section-3--card-3d {
    padding-bottom: 0 !important;
}

.testimonial-section-3.testimonial-cube-section--index3-stack {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Fix responsive : pas de superposition en format tablette/mobile */
@media (max-width: 991.98px) {
    .team-section-3__img-col {
        margin-top: 40px !important;
        margin-right: 0 !important;
        border-radius: 20px;
        padding: 0 15px !important;
    }

    .team-section-3__mockup {
        border-radius: 20px;
        max-height: 700px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Format mobile : cartes applications en pleine largeur (1 par ligne) */
@media (max-width: 767.98px) {
    .team-section-3--card-3d .pb-demo-grid>.col-6 {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

/* index-3 : cartes équipe — effet 3D au survol (aligné sur process-section-2--green-cards) */
.team-section-3--card-3d .row.fade-wrapper {
    margin-top: 36px;
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.team-section-3--card-3d .row.fade-wrapper>[class*="col-"] {
    -webkit-perspective: 1200px;
    perspective: 1200px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: transform 0.35s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:hover {
    -webkit-transform: translateY(-10px) rotateX(6deg) rotateY(-6deg);
    transform: translateY(-10px) rotateX(6deg) rotateY(-6deg);
}

.team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:nth-child(2):hover {
    -webkit-transform: translateY(-10px) rotateX(6deg) rotateY(-2deg);
    transform: translateY(-10px) rotateX(6deg) rotateY(-2deg);
}

.team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:nth-child(3):hover {
    -webkit-transform: translateY(-10px) rotateX(6deg) rotateY(2deg);
    transform: translateY(-10px) rotateX(6deg) rotateY(2deg);
}

/* ===============================================================
   Nouvelles cartes catégories de service (index-3)
   =============================================================== */
.pb-cat-grid {
    margin-top: 40px;
}

.pb-cat-card {
    position: relative;
    background: #F4F4F4;
    border-radius: 22px;
    padding: 26px 24px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.pb-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.pb-cat-card__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    margin-bottom: 18px;
    background: transparent;
    overflow: hidden;
}

.pb-cat-card__thumb img {
    width: 100%;
    max-width: 260px;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.12));
    transition: transform 0.45s ease;
    transform-origin: center center;
}

.pb-cat-card:hover .pb-cat-card__thumb img,
.pb-cat-card__thumb:hover img {
    transform: scale(1.08);
}

.pb-cat-card__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.pb-cat-card__title {
    font-size: 28px;
    font-weight: 800;
    color: #191F29;
    margin: 0 0 10px;
    line-height: 1.15;
    font-family: inherit;
}

.pb-cat-card__tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #191F29;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.pb-cat-card__models {
    font-size: 14px;
    color: #7A8391;
    margin: 0 0 18px;
    line-height: 1.5;
}

.pb-cat-card__accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(25, 31, 41, 0.08);
    border-bottom: 1px solid rgba(25, 31, 41, 0.08);
    font-size: 15px;
    font-weight: 600;
    color: #191F29;
    cursor: pointer;
    transition: color 0.25s ease;
    margin-bottom: 18px;
}

.pb-cat-card__accordion-btn:hover {
    color: #EC281C;
}

.pb-cat-card__accordion-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.pb-cat-card__accordion-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.pb-cat-card__details {
    margin-bottom: 10px;
}

.pb-cat-card__details ul {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.pb-cat-card__details li {
    font-size: 13.5px;
    color: #4A5260;
    line-height: 1.55;
    padding: 6px 0;
}

.pb-cat-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 12px 22px;
    border: 1.5px solid #191F29;
    border-radius: 999px;
    background: transparent;
    color: #191F29;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    align-self: stretch;
}

.pb-cat-card__btn:hover {
    background: #191F29;
    color: #fff;
    border-color: #191F29;
}

@media (max-width: 991.98px) {
    .pb-cat-card {
        padding: 22px 20px 20px;
    }

    .pb-cat-card__title {
        font-size: 24px;
    }

    .pb-cat-card__thumb {
        height: 140px;
    }
}

.team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:nth-child(4):hover {
    -webkit-transform: translateY(-10px) rotateX(6deg) rotateY(6deg);
    transform: translateY(-10px) rotateX(6deg) rotateY(6deg);
}

.team-section-3--card-3d .team-card {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: box-shadow 0.35s ease, background-size 0.45s ease;
    transition: box-shadow 0.35s ease, background-size 0.45s ease;
}

.team-section-3--card-3d .team-card .team-member {
    display: none;
}

.team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:hover .team-card {
    -webkit-box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
    background-size: cover;
    background-position: center center;
}

.team-section-3--card-3d .team-card .hover-content-wrap:before {
    background: linear-gradient(180deg, rgba(40, 8, 8, 0.12) 0%, rgba(136, 0, 0, 0.48) 100%);
}

@media (max-width: 991px) {

    .team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:hover,
    .team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:nth-child(2):hover,
    .team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:nth-child(3):hover,
    .team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:nth-child(4):hover {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .team-section-3--card-3d .row.fade-wrapper>[class*="col-"],
    .team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:hover,
    .team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:nth-child(2):hover,
    .team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:nth-child(3):hover,
    .team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:nth-child(4):hover {
        -webkit-transform: none !important;
        transform: none !important;
        -webkit-transition: none;
        transition: none;
    }

    .team-section-3--card-3d .team-card,
    .team-section-3--card-3d .row.fade-wrapper>[class*="col-"]:hover .team-card {
        -webkit-transition: none;
        transition: none;
        background-size: cover;
    }
}

.inner-team {
    background-color: var(--bz-color-theme-primary);
}

.inner-team .overlay-2 {
    background: #142CAE;
    -webkit-filter: blur(60px);
    filter: blur(60px);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -200px;
    left: 0;
    border-radius: 15px;
    z-index: -1;
}

.inner-team .hover-content-wrap:before {
    background: rgb(30, 110, 231);
    background: linear-gradient(176deg, rgb(30, 110, 231) 0%, rgb(20, 44, 174) 99%);
}

.inner-team .hover-content-wrap .hover-content .team-social li a {
    color: #5C90FA;
}

.inner-team .hover-content-wrap .hover-content .team-social li a:hover {
    color: var(--bz-color-common-white);
}

.team-skill-content {
    padding-right: 20px;
}

@media only screen and (max-width: 992px) {
    .team-skill-content {
        padding-right: 0;
    }
}

.team-skill-content .skill-wrap {
    margin-top: 40px;
}

.team-skill-content .skill-wrap .skill-item {
    overflow: hidden;
    position: relative;
}

.team-skill-content .skill-wrap .skill-item:not(:last-of-type) {
    margin-bottom: 30px;
}

.team-skill-content .skill-wrap .skill-item .skill-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.team-skill-content .skill-wrap .skill-item .skill-top .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-skill-content .skill-wrap .skill-item .skill-top span {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-skill-content .skill-wrap .skill-item .skill-item-inner {
    padding: 5px;
    border: 1px solid var(--bz-color-border-1);
    border-radius: 2px;
}

.team-skill-content .skill-wrap .skill-item .progress {
    background-color: var(--bz-color-common-white);
    height: 5px;
    overflow: visible;
    border-radius: 2px;
    overflow: hidden;
}

.team-skill-content .skill-wrap .skill-item .progress .progress-bar {
    position: relative;
    background-color: var(--bz-color-theme-primary);
    overflow: visible;
}

.team-skill-content .skill-wrap .skill-item .progress .progress-bar span {
    color: var(--bz-color-theme-primary);
    font-family: var(--bz-ff-body);
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    bottom: -38px;
    right: 0;
}

.team-skill-img {
    max-width: 523px;
    width: 100%;
    height: 100%;
    margin-left: auto;
}

.team-skill-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .team-skill-img {
        margin: 0 auto;
        margin-top: 50px;
    }
}

.team-details-wrap .team-auhtor-area {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 490px 1fr;
    grid-template-columns: 490px 1fr;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .team-details-wrap .team-auhtor-area {
        -ms-grid-columns: 380px 1fr;
        grid-template-columns: 380px 1fr;
    }
}

@media only screen and (max-width: 992px) {
    .team-details-wrap .team-auhtor-area {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.team-details-wrap .team-auhtor-area .team-author-img {
    height: 100%;
}

@media only screen and (max-width: 992px) {
    .team-details-wrap .team-auhtor-area .team-author-img {
        height: 500px;
    }
}

@media only screen and (max-width: 767px) {
    .team-details-wrap .team-auhtor-area .team-author-img {
        height: 400px;
    }
}

.team-details-wrap .team-auhtor-area .team-author-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .team-details-wrap .team-auhtor-area .team-author-img img {
        -o-object-position: top;
        object-position: top;
    }
}

.team-details-wrap .team-auhtor-area .team-author-content {
    background-color: #F3F4F6;
    padding: 70px 60px;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .team-details-wrap .team-auhtor-area .team-author-content {
        padding: 40px 20px;
    }
}

.team-details-wrap .team-auhtor-area .team-author-content .title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.team-details-wrap .team-auhtor-area .team-author-content .prof {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-theme-primary);
    font-size: 16px;
    display: block;
    margin-bottom: 20px;
}

.team-details-wrap .team-auhtor-area .team-author-content .author-info-items {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .team-details-wrap .team-auhtor-area .team-author-content .author-info-items {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.team-details-wrap .team-auhtor-area .team-author-content .author-info-items .author-info {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 50px 15px 1fr;
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
}

.team-details-wrap .team-auhtor-area .team-author-content .author-info-items .author-info .icon {
    background: var(--bz-color-common-white);
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    color: var(--bz-color-theme-primary);
    height: 50px;
    width: 50px;
    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;
}

.team-details-wrap .team-auhtor-area .team-author-content .author-info-items .author-info .content span {
    font-family: var(--bz-ff-heading);
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}

.team-details-wrap .team-auhtor-area .team-author-content .author-info-items .author-info .content .info-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.team-counter-area {
    background-color: #F3F4F6;
    padding: 80px 80px;
    border-radius: 15px;
}

@media only screen and (max-width: 992px) {
    .team-counter-area {
        padding: 60px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .team-counter-area {
        padding: 40px 20px;
    }
}

.team-counter-area .title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-counter-area .team-counter {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 110px 1fr;
    grid-template-columns: 110px 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}

.team-counter-area .team-counter .icon {
    background-color: var(--bz-color-theme-primary);
    height: 110px;
    width: 110px;
    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;
}

.team-counter-area .team-counter .content {
    background-color: var(--bz-color-common-white);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 0 35px;
}

@media only screen and (max-width: 767px) {
    .team-counter-area .team-counter .content {
        padding: 0 20px;
    }
}

.team-counter-area .team-counter .content .title {
    color: var(--bz-color-theme-primary);
    font-size: 30px;
    margin-bottom: 0;
    line-height: 1;
}

.team-counter-area .team-counter .content .title .odometer-auto-theme {
    font-family: inherit;
}

.team-counter-area .team-counter .content p {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .team-counter-area .team-counter .content p {
        font-size: 14px;
    }
}

.team-details-form {
    background-color: #F3F4F6;
    padding: 80px 80px;
    border-radius: 15px;
}

@media only screen and (max-width: 992px) {
    .team-details-form {
        padding: 60px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .team-details-form {
        padding: 40px 20px;
    }
}

.team-details-form .heading-area {
    margin-bottom: 50px;
}

.team-details-form .heading-area span {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-theme-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.team-details-form .heading-area .title {
    font-size: 30px;
    margin-bottom: 0;
}

.team-details-form .form-group .form-control {
    color: var(--bz-color-text-body);
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 5px;
    padding: 14.5px 20px;
    margin-bottom: 20px;
}

.team-details-form .submit-btn .bz-primary-btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* !END: Team CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.project-section {
    position: relative;
    z-index: 1;
}

.project-section .bg-shape {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    max-width: 1680px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

@media (max-width: 1200px) {
    .project-section .bg-shape {
        background-size: cover;
        height: 50%;
    }
}

.project-top .swiper-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.project-top .swiper-arrow .swiper-nav {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-heading-primary);
    height: 55px;
    width: 55px;
    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;
    border-radius: 7px;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.project-top .swiper-arrow .swiper-nav:hover {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.project-item .project-img {
    height: 580px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .project-item .project-img {
        height: 450px;
    }
}

.project-item .project-img .overlay {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 110, 231, 0)), color-stop(49.31%, rgba(2, 37, 89, 0.94)));
    background: linear-gradient(180deg, rgba(30, 110, 231, 0) 0%, rgba(2, 37, 89, 0.94) 49.31%);
    mix-blend-mode: normal;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 1;
    border-radius: 15px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.project-item .project-img .overlay-2 {
    background: #1E6EE7;
    mix-blend-mode: multiply;
    opacity: 0.67;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 15px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.project-item .project-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: saturate(1) contrast(1);
    filter: saturate(1) contrast(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
}

.project-item .project-content {
    position: absolute;
    bottom: 30px;
    left: 50px;
    right: 60px;
    z-index: 2;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

@media only screen and (max-width: 992px) {
    .project-item .project-content {
        left: 30px;
        right: 30px;
    }
}

.project-item .project-content .title {
    font-size: 30px;
    color: var(--bz-color-common-white);
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .project-item .project-content .title {
        font-size: 22px;
    }
}

.project-item .project-content .title a:hover {
    color: var(--bz-color-common-white);
}

.project-item .project-content span {
    color: var(--bz-color-common-white);
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .project-item .project-content span {
        margin-bottom: 20px;
    }
}

.project-item .project-content p {
    color: var(--bz-color-common-white);
    font-size: 14px;
    margin-bottom: 30px;
}

.project-item:hover .project-img img {
    -webkit-filter: saturate(0) contrast(110%);
    filter: saturate(0) contrast(110%);
}

.project-item:hover .project-img .overlay {
    visibility: visible;
    opacity: 1;
    top: 100px;
}

.project-item:hover .project-img .overlay-2 {
    visibility: visible;
    opacity: 0.7;
}

.project-item:hover .project-content {
    bottom: 50px;
    visibility: visible;
    opacity: 1;
}

.project-item-2 {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    height: 435px;
}

.project-item-2 .project-img {
    height: 100%;
}

.project-item-2 .project-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.project-item-2 .overlay {
    background-color: var(--bz-color-theme-primary);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.project-item-2 .shape {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 1;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.project-item-2 .shape img {
    height: 100%;
}

.project-item-2 .project-btn a {
    background-color: var(--bz-color-common-white);
    height: 55px;
    width: 55px;
    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;
    border-radius: 10px;
    color: var(--bz-color-theme-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

.project-item-2 .project-content {
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.project-item-2 .project-content span {
    font-family: var(--bz-ff-heading);
    display: block;
    color: var(--bz-color-common-white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.project-item-2 .project-content .title {
    color: var(--bz-color-common-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.project-item-2 .project-content .title a:hover {
    color: var(--bz-color-common-white);
}

.project-item-2:hover .overlay {
    visibility: visible;
    opacity: 1;
}

.project-item-2:hover .shape {
    top: 0;
    right: 0;
    visibility: visible;
    opacity: 1;
}

.project-item-2:hover .project-btn a {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.project-item-2:hover .project-content {
    bottom: 30px;
    visibility: visible;
    opacity: 1;
}

.project-details-wrap .project-details-thumb {
    position: relative;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .project-details-wrap .project-details-thumb {
        margin-bottom: 200px;
    }
}

.project-details-wrap .project-details-thumb img {
    width: 100%;
    height: 550px;
    -o-object-fit: cover;
    object-fit: cover;
}

.project-details-wrap .project-details-thumb .details-list-wrap {
    background-color: #EFF1F5;
    position: absolute;
    right: 50px;
    bottom: -180px;
    padding: 40px;
    border-radius: 15px;
}

@media only screen and (max-width: 992px) {
    .project-details-wrap .project-details-thumb .details-list-wrap {
        right: 25px;
        bottom: -20px;
    }
}

@media only screen and (max-width: 767px) {
    .project-details-wrap .project-details-thumb .details-list-wrap {
        right: 0;
        bottom: -180px;
        padding: 30px 20px;
    }
}

.project-details-wrap .project-details-thumb .details-list-wrap .list-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.project-details-wrap .project-details-thumb .details-list-wrap .details-list li {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 50px 15px 1fr;
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
}

.project-details-wrap .project-details-thumb .details-list-wrap .details-list li:not(:last-of-type) {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #DADFEC;
}

.project-details-wrap .project-details-thumb .details-list-wrap .details-list li .icon {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-theme-primary);
    height: 50px;
    width: 50px;
    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;
    border-radius: 50%;
}

.project-details-wrap .project-details-thumb .details-list-wrap .details-list li .content span {
    font-family: var(--bz-ff-heading);
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}

.project-details-wrap .project-details-thumb .details-list-wrap .details-list li .content .title {
    color: var(--bz-color-heading-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.project-details-wrap .details-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .project-details-wrap .details-title {
        font-size: 24px;
    }
}

.project-details-wrap .desc {
    max-width: 730px;
    width: 100%;
}

@media (max-width: 1200px) {
    .project-details-wrap .desc {
        max-width: 550px;
    }
}

.project-details-wrap .project-details-img {
    border-radius: 15px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Testi CSS
----------------------------------------*/
.testimonail-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.testi-item {
    background-color: var(--bz-color-common-white);
    -webkit-box-shadow: 0px 15px 41px rgba(13, 22, 39, 0.08);
    box-shadow: 0px 15px 41px rgba(13, 22, 39, 0.08);
    padding: 50px;
    border-radius: 10px;
}

@media only screen and (max-width: 992px) {
    .testi-item {
        padding: 40px 20px;
    }
}

.testi-item .testi-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--bz-color-border-1);
}

.testi-item .testi-top .testi-author {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 80px 15px 1fr;
    grid-template-columns: 80px 1fr;
    grid-gap: 15px;
}

.testi-item .testi-top .testi-author img {
    height: 80px;
    width: 80px;
    -o-object-fit: cover;
    object-fit: cover;
}

.testi-item .testi-top .testi-author .name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.testi-item .testi-top .testi-author .name span {
    font-size: 16px;
    color: var(--bz-color-theme-primary);
    font-weight: 400;
    margin-top: 5px;
    display: block;
}

@media only screen and (max-width: 767px) {
    .testi-item .testi-top .quote {
        display: none;
    }
}

.testi-item p {
    color: var(--bz-color-text-body);
    font-size: 20px;
    line-height: 34px;
    font-style: italic;
    margin-bottom: 0;
}

.testi-carousel-2,
.testi-carousel {
    padding-bottom: 90px;
}

@media only screen and (max-width: 992px) {

    .testi-carousel-2,
    .testi-carousel {
        padding-bottom: 60px;
    }
}

.testi-carousel-2 .swiper-pagination,
.testi-carousel .swiper-pagination {
    bottom: 0;
}

.testi-carousel-2 .swiper-pagination .swiper-pagination-bullet,
.testi-carousel .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--bz-color-heading-primary);
    margin: 0 10px;
    opacity: 1;
}

.testi-carousel-2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.testi-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    background-color: var(--bz-color-theme-primary);
}

.testi-carousel-2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before,
.testi-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    background-color: transparent;
    content: "";
    height: 17px;
    width: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--bz-color-theme-primary);
}

.testimonial-section-2 {
    position: relative;
    z-index: 1;
    max-width: 1860px;
    width: 100%;
    margin: 0 auto;
}

.testimonial-section-2 .bg-color {
    background-color: var(--bz-color-heading-primary);
    height: 63%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 0 15px 15px;
}

.testi-card {
    background-color: var(--bz-color-common-white);
    padding: 30px 40px;
    border-radius: 15px;
    border: 1px solid var(--bz-color-border-1);
    position: relative;
}

@media only screen and (max-width: 767px) {
    .testi-card {
        padding: 30px;
    }
}

.testi-card .testi-img {
    position: absolute;
    top: -1px;
    left: -1px;
    border-radius: 15px 0 15px 0;
    overflow: hidden;
}

.testi-card .testi-author {
    padding-left: 90px;
    margin-bottom: 50px;
}

.testi-card .testi-author .name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .testi-card .testi-author .name {
        font-size: 20px;
    }
}

.testi-card .testi-author .review {
    margin-top: 5px;
}

.testi-card .testi-author .review li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--bz-color-theme-primary);
}

.testi-card p {
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--bz-color-border-1);
}

.testi-card .testi-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.testimonial-section-3 {
    padding-top: 270px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 992px) {
    .testimonial-section-3 {
        padding-top: 200px;
    }
}

.testi-carousel-2 {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.testi-item-2 {
    background: var(--bz-color-common-white);
    border: 1px solid #E6E6E6;
    -webkit-box-shadow: 0px 14px 68px #E8E8E8;
    box-shadow: 0px 14px 68px #E8E8E8;
    border-radius: 15px;
    padding: 40px;
}

@media only screen and (max-width: 767px) {
    .testi-item-2 {
        padding: 30px 20px;
    }
}

.testi-item-2 .testi-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--bz-color-border-1);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
}

.testi-item-2 .testi-top .testi-author {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 60px 15px 1fr;
    grid-template-columns: 60px 1fr;
    grid-gap: 15px;
}

.testi-item-2 .testi-top .testi-author .name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}

.testi-item-2 .testi-top .testi-author .name span {
    display: block;
    font-family: var(--bz-ff-body);
    font-size: 14px;
    color: var(--bz-color-text-body);
    font-weight: 400;
    margin-top: 5px;
}

.testi-item-2 .testi-top .review li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #FFB930;
}

.testi-item-2 p {
    font-weight: 500;
    margin-bottom: 0;
}

/* Témoignages — cube Swiper (index-3) */
.testimonial-cube-section {
    background-image: none !important;
    background-color: #fff7f7;
    background-image: radial-gradient(circle at 20% 100%,
            rgba(184, 184, 184, 0.1) 0%,
            rgba(184, 184, 184, 0.1) 33%,
            rgba(96, 96, 96, 0.1) 33%,
            rgba(96, 96, 96, 0.1) 66%,
            rgba(7, 7, 7, 0.1) 66%,
            rgba(7, 7, 7, 0.1) 99%),
        linear-gradient(40deg, #040a22, #162561, #202e64, #6f7aa6);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.testimonial-cube-section.testimonial-section-3 {
    padding-top: 100px !important;
}

@media only screen and (max-width: 992px) {
    .testimonial-cube-section.testimonial-section-3 {
        padding-top: 80px !important;
    }
}

.testi-cube-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.testi-cube-particles canvas {
    display: block;
}

.testi-cube-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .testi-cube-grid {
        gap: 48px;
    }
}

@media only screen and (max-width: 991px) {
    .testi-cube-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .testi-cube-slider-col {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: 1;
    }
}

.testi-cube-slider-col {
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 992px) {
    .testi-cube-slider-col {
        min-height: 490px;
    }
}

.testi-cube-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 400;
    line-height: 1.55;
    margin-top: 28px;
    margin-bottom: 28px;
    max-width: 34em;
}

@media only screen and (min-width: 992px) {
    .testi-cube-lead {
        margin-left: 0;
        margin-right: auto;
    }
}

.testi-cube-cta {
    margin-top: 0;
}

.testimonial-cube-section .testi-cube-swiper {
    position: relative;
    width: 100%;
    max-width: 430px;
    width: 430px;
    height: 490px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-cube-section .testi-cube-swiper .swiper-slide {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 20px;
    overflow: hidden;
    background: #0d1224;
}

.testimonial-cube-section .testi-cube-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.testi-cube-profile {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-sizing: border-box;
    overflow: hidden;
}

.testi-cube-profile img {
    width: 108px;
    height: 108px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    flex-shrink: 0;
}

.testi-cube-badge {
    position: absolute;
    top: 8px;
    right: 6px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    padding: 6px 12px;
    color: #fff;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    font-weight: 600;
    line-height: 1.3;
    max-width: calc(100% - 24px);
    text-align: right;
}

.testi-cube-badge--dark {
    color: #202134;
    background: rgba(255, 255, 255, 0.55);
}

.testi-cube-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    min-height: 150px;
    max-height: 48%;
    padding: 12px 18px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: rgba(93, 95, 145, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.testi-cube-overlay__title {
    font-size: clamp(1.05rem, 3vw, 1.35rem);
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.25;
    color: #fff;
}

.testi-cube-overlay__role {
    font-size: clamp(0.75rem, 2.2vw, 0.82rem);
    font-weight: 400;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.3;
}

.testi-cube-overlay__text {
    font-size: clamp(0.78rem, 2.2vw, 0.88rem);
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.95);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-cube-ratings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 4px;
    margin-top: auto;
}

.testi-cube-stars {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 3px;
    color: #afe312;
    font-size: 13px;
}

.testi-cube-ratings span {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-cube-section .testi-cube-pagination {
    position: absolute !important;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: -42px !important;
    z-index: 5;
}

.testimonial-cube-section .testi-cube-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.testimonial-cube-section .testi-cube-pagination .swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(236, 40, 28, 0.5);
}

@media only screen and (max-width: 1050px) {
    .testimonial-cube-section .testi-cube-swiper {
        max-width: 350px;
        height: 450px;
    }
}

@media only screen and (max-width: 470px) {
    .testimonial-cube-section .testi-cube-swiper {
        max-width: 300px;
        height: 400px;
    }

    .testimonial-cube-section .testi-cube-pagination {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        bottom: -36px !important;
    }
}

/* index-3 : espacement entre « Nos chiffres clés », CTA recrutement et avis cube */
.strength-section--index3-stack .strength-content--index3-stack {
    padding-top: 100px !important;
    padding-bottom: 80px !important;
}

@media only screen and (max-width: 991px) {
    .strength-section--index3-stack .strength-content--index3-stack {
        padding-top: 72px !important;
        padding-bottom: 56px !important;
    }
}

.cta-section-3--index3-stack {
    margin-bottom: 0 !important;
    padding-top: 56px !important;
    padding-bottom: 56px !important;
}

@media only screen and (min-width: 992px) {
    .cta-section-3--index3-stack {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }
}

/* index-3 CTA : fond dégradé rose → rouge → rouge foncé */
.cta-section-3.cta-section-3--index3-stack.pb-glass-section {
    background-color: #5c100c;
    background-image: linear-gradient(128deg,
            #df314e 0%,
            #b81810 68%,
            #381113 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* index-3 CTA : carte .cta-wrap-3 en verre (glassmorphism) sur le dégradé */
.cta-section-3.cta-section-3--index3-stack.pb-glass-section .cta-wrap-3 {
    background-color: transparent;
    background: linear-gradient(155deg,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.08) 42%,
            rgba(30, 8, 8, 0.18) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .cta-section-3.cta-section-3--index3-stack.pb-glass-section .cta-wrap-3 {
        background: rgba(45, 12, 12, 0.72);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

/* index-3 CTA : bouton glass « Louer maintenant » sur la zone voitures */
.cta-section-3--index3-stack .cta-glass-rent {
    position: absolute;
    z-index: 15;
    right: 10%;
    top: 52%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.158);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), padding 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.cta-section-3--index3-stack .cta-glass-rent:hover {
    -webkit-transform: translateY(-50%) scale(1.08);
    transform: translateY(-50%) scale(1.08);
    padding: 15px 36px;
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 767px) {
    .cta-section-3--index3-stack .cta-glass-rent {
        position: static;
        -webkit-transform: none;
        transform: none;
        margin-top: 24px;
    }

    .cta-section-3--index3-stack .cta-glass-rent:hover {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }
}

/* ================================================================
   Section CTA dupliquée : .service_location_car
   Location de voitures — variante fond clair #fff7f7
   ================================================================ */
.cta-section-3.service_location_car.cta-section-3--index3-stack {
    margin-bottom: 0 !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

@media only screen and (min-width: 992px) {
    .cta-section-3.service_location_car.cta-section-3--index3-stack {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
}

.cta-section-3.service_location_car.cta-section-3--index3-stack.pb-glass-section {
    background-color: #fff7f7;
    background-image: none;
}

/* Titre principal */
.service_location_car .car-hire-title {
    font-size: 44px;
    font-weight: 800;
    color: #191F29;
    line-height: 1.15;
    text-align: center;
    margin: 0 0 40px;
    font-family: inherit;
}

@media (max-width: 767.98px) {
    .service_location_car .car-hire-title {
        font-size: 30px;
        margin-bottom: 28px;
    }
}

/* Onglets de sélection véhicule */
.service_location_car .car-hire-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.service_location_car .car-hire-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 18px;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    min-height: 72px;
}

.service_location_car .car-hire-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service_location_car .car-hire-tab.active {
    border-color: #EC281C;
    box-shadow: 0 8px 28px rgba(236, 40, 28, 0.15);
}

.service_location_car .car-hire-tab__label {
    font-size: 15px;
    font-weight: 700;
    color: #191F29;
    white-space: nowrap;
}

.service_location_car .car-hire-tab img {
    width: 70px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .service_location_car .car-hire-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .service_location_car .car-hire-tabs {
        grid-template-columns: 1fr;
    }
}

/* Panneau principal (contenu véhicule sélectionné) */
.service_location_car .car-hire-panel {
    display: grid;
    grid-template-columns: 1fr 1.15fr 0.82fr;
    gap: 0;
    column-gap: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    min-height: 440px;
}

/* Colonne gauche : informations */
.service_location_car .car-hire-panel__info {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service_location_car .car-hire-panel__title {
    font-size: 32px;
    font-weight: 800;
    color: #191F29;
    margin: 0 0 14px;
    font-family: inherit;
}

.service_location_car .car-hire-panel__desc {
    font-size: 15px;
    color: #7A8391;
    line-height: 1.55;
    margin: 0 0 24px;
    max-width: 320px;
}

.service_location_car .car-hire-panel__features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service_location_car .car-hire-panel__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #191F29;
    font-weight: 500;
}

.service_location_car .car-hire-panel__features li i {
    color: #EC281C;
    font-size: 14px;
}

.service_location_car .car-hire-panel__price {
    margin-bottom: 22px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.service_location_car .car-hire-panel__price .amount {
    font-size: 32px;
    font-weight: 800;
    color: #191F29;
}

.service_location_car .car-hire-panel__price .unit {
    font-size: 15px;
    color: #7A8391;
    font-weight: 500;
}

.service_location_car .car-hire-panel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: #EC281C;
    color: #ffffff;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(236, 40, 28, 0.25);
}

.service_location_car .car-hire-panel__btn:hover {
    background: #c41e12;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(236, 40, 28, 0.35);
}

/* Colonne centrale : image voiture */
.service_location_car .car-hire-panel__image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 0 30px 0;
    margin: 0;
    position: relative;
    overflow: visible;
    /* Boîte de rendu fixe : toutes les voitures s'affichent dans la même zone */
    min-height: 360px;
}

.service_location_car .car-hire-panel__image img {
    /* Taille uniforme pour TOUTES les voitures, quelle que soit leur taille naturelle */
    width: 100%;
    height: 320px;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: right center;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
    margin-right: 0%;
}

/* Panneau specs collé à la colonne image (pas d'espace entre eux) */
.service_location_car .car-hire-panel__specs {
    margin-left: 0;
    position: relative;
    z-index: 2;
}

/* Colonne droite : spécifications (panneau noir) */
.service_location_car .car-hire-panel__specs {
    background: #111417;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.service_location_car .car-hire-panel__spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    gap: 12px;
}

.service_location_car .car-hire-panel__spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service_location_car .car-hire-panel__spec-row .label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.service_location_car .car-hire-panel__spec-row .value {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    text-align: right;
}

/* Responsive panneau - tablette uniquement (768px - 1199.98px) */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .service_location_car .car-hire-panel {
        grid-template-columns: 1fr 1fr;
    }

    .service_location_car .car-hire-panel__specs {
        grid-column: 1 / -1;
    }

    .service_location_car .car-hire-panel__specs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 28px;
        padding: 28px 36px;
    }

    .service_location_car .car-hire-panel__spec-row {
        flex: 1 1 calc(50% - 28px);
        border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
        padding-bottom: 12px;
    }
}

@media (max-width: 767.98px) {
    .service_location_car .car-hire-panel {
        grid-template-columns: 1fr;
        background: #F4F4F4;
        padding: 20px;
        border-radius: 22px;
        min-height: 0;
    }

    .service_location_car .car-hire-panel__info {
        padding: 8px 4px 20px;
    }

    .service_location_car .car-hire-panel__title {
        font-size: 28px;
    }

    .service_location_car .car-hire-panel__desc {
        max-width: 100%;
    }

    .service_location_car .car-hire-panel__btn {
        padding: 13px 32px;
    }

    /* Masque l'image au format mobile */
    .service_location_car .car-hire-panel__image {
        display: none;
    }

    /* Panneau specs noir avec radius interne, séparé de la carte blanche */
    .service_location_car .car-hire-panel__specs {
        padding: 24px 22px !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        border-radius: 16px;
        margin: 0;
        width: 100%;
    }

    .service_location_car .car-hire-panel__spec-row {
        flex: 1 1 100% !important;
        width: 100%;
        padding: 14px 0 !important;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    }

    .service_location_car .car-hire-panel__spec-row:first-child {
        padding-top: 0;
    }

    .service_location_car .car-hire-panel__spec-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}



/* ====================================================
   team-section-3 : effet 3D parallaxe inversé sur le background-image
   ==================================================== */
.team-section-3.team-section-3--card-3d[data-bg-parallax] {
    position: relative;
    overflow: hidden;
    perspective: 1200px;
    isolation: isolate;
}

.team-section-3.team-section-3--card-3d[data-bg-parallax]>.container-2 {
    position: relative;
    z-index: 2;
}

/* Couche qui porte le background-image — c'est ELLE qui reçoit le transform 3D */
.team-section-3.team-section-3--card-3d .team-3d-bg {
    position: absolute;
    /* Surdimensionné pour avoir de la marge de translation sans bords visibles */
    inset: -8%;
    background-image: none;
    background-color: #fff7f7;
    pointer-events: none;
    z-index: 0;
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    --parallax-depth: 45;
}

/* Voile léger pour garder la lisibilité sans masquer l'image */
.team-section-3.team-section-3--card-3d .team-3d-bg__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 247, 247, 0.35) 0%, rgba(255, 247, 247, 0.20) 100%);
}

/* Accessibility : désactive l'effet si l'utilisateur préfère réduire les animations */
@media (prefers-reduced-motion: reduce) {
    .team-section-3.team-section-3--card-3d .team-3d-bg {
        transition: none;
        transform: none !important;
    }
}


.testimonial-section-3.testimonial-cube-section.testimonial-cube-section--index3-stack {
    margin-top: 24px;
    padding-top: 72px !important;
    padding-bottom: 100px !important;
}

/* Couleurs des titres et du lead dans la section testimonials */
.testimonial-section-3.testimonial-cube-section--index3-stack .section-heading .sub-heading,
.testimonial-section-3.testimonial-cube-section--index3-stack .section-heading .sub-heading * {
    color: #EC281C !important;
}

.testimonial-section-3.testimonial-cube-section--index3-stack .section-heading .section-title,
.testimonial-section-3.testimonial-cube-section--index3-stack .section-heading .section-title *,
.testimonial-section-3.testimonial-cube-section--index3-stack .testi-cube-lead {
    color: #191F29 !important;
}

/* index-3 : décale le slider testimonials vers la droite */
.testimonial-section-3.testimonial-cube-section.testimonial-cube-section--index3-stack .testi-cube-slider-col {
    justify-content: flex-end;
    padding-left: 150px;
}

@media only screen and (max-width: 991px) {
    .testimonial-section-3.testimonial-cube-section.testimonial-cube-section--index3-stack {
        margin-top: 32px;
        padding-top: 56px !important;
        padding-bottom: 88px !important;
    }

    .testimonial-section-3.testimonial-cube-section.testimonial-cube-section--index3-stack .testi-cube-slider-col {
        justify-content: center;
        padding-left: 0;
    }
}

/* !END: Testi CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.post-card {
    border-radius: 12px;
    overflow: hidden;
}

.post-card .post-thumb {
    position: relative;
    height: 255px;
    overflow: hidden;
}

.post-card .post-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.post-card .post-content-wrap {
    background: var(--bz-color-grey-4);
    padding: 40px;
}

@media only screen and (max-width: 767px) {
    .post-card .post-content-wrap {
        padding: 30px 20px;
    }
}

.post-card .post-content {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #DDDEE1;
}

.post-card .post-content .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .post-card .post-content .title {
        font-size: 18px;
    }
}

.post-card .post-content .title a {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--bz-color-theme-primary)), color-stop(98%, var(--bz-color-theme-primary)));
    background: linear-gradient(var(--bz-color-theme-primary) 0%, var(--bz-color-theme-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.post-card .post-content .title a:hover {
    color: var(--bz-color-theme-primary);
    background-size: 100% 2px;
}

.post-card .read-more {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bz-color-theme-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post-card .read-more i {
    font-size: 14px;
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.post-card .read-more:hover i {
    margin-left: 8px;
}

.post-card:hover .post-thumb img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.post-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
}

.post-meta li {
    font-family: var(--bz-ff-body);
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.post-meta li i {
    font-size: 15px;
    color: var(--bz-color-theme-primary);
}

.post-meta li:not(:last-of-type) {
    margin-right: 20px;
}

.post-meta li a:hover {
    color: var(--bz-color-theme-primary);
}

@media only screen and (max-width: 767px) {
    .post-meta li {
        font-size: 12px;
    }
}

.post-card-3 {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}

.post-card-3 .post-thumb {
    height: 540px;
    width: 100%;
    border-radius: 15px;
}

@media only screen and (max-width: 767px) {
    .post-card-3 .post-thumb {
        height: 450px;
    }
}

.post-card-3 .post-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.post-card-3 .post-content {
    background-color: var(--bz-color-common-white);
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 585px;
    width: 100%;
    padding: 40px;
    border-radius: 15px;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1200px) {
    .post-card-3 .post-content {
        max-width: 410px;
    }
}

@media only screen and (max-width: 992px) {
    .post-card-3 .post-content {
        padding: 40px 30px;
        max-width: 325px;
    }
}

@media only screen and (max-width: 767px) {
    .post-card-3 .post-content {
        max-width: 270px;
        padding: 30px 20px;
    }
}

.post-card-3 .post-content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .post-card-3 .post-content .title {
        font-size: 20px;
    }
}

.post-card-3 .post-content .title a {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--bz-color-theme-primary)), color-stop(98%, var(--bz-color-theme-primary)));
    background: linear-gradient(var(--bz-color-theme-primary) 0%, var(--bz-color-theme-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.post-card-3 .post-content .title a:hover {
    color: var(--bz-color-theme-primary);
    background-size: 100% 2px;
}

.post-card-3 .post-content .blog-btn {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-heading-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.post-card-3 .post-content .blog-btn:hover {
    color: var(--bz-color-theme-red);
}

.post-card-3 .post-content .blog-btn i {
    background-color: var(--bz-color-theme-red);
    color: var(--bz-color-common-white);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    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;
}

.post-card-3:hover .post-content {
    visibility: visible;
    opacity: 1;
    bottom: 30px;
}

/* index-3 : glass + contour — bloc visible par défaut, animation au survol */
.blog-section-3--index3-stack .post-card-3 .post-content {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 2px solid #e2e2e2b9 !important;
    -webkit-backdrop-filter: blur(12px) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.35) !important;
    visibility: visible !important;
    opacity: 1 !important;
    bottom: 24px !important;
    -webkit-transform: translateX(-50%) translateY(0) scale(1);
    transform: translateX(-50%) translateY(0) scale(1);
    -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.45s ease, border-color 0.35s ease;
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.blog-section-3--index3-stack .post-card-3:hover .post-content {
    bottom: 24px !important;
    -webkit-transform: translateX(-50%) translateY(-10px) scale(1.03);
    transform: translateX(-50%) translateY(-10px) scale(1.03);
    box-shadow: 0px 28px 72px rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.72) !important;
}

@media (prefers-reduced-motion: reduce) {

    .blog-section-3--index3-stack .post-card-3 .post-content,
    .blog-section-3--index3-stack .post-card-3:hover .post-content {
        -webkit-transition: border-color 0.2s ease, box-shadow 0.2s ease;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.blog-section-3--index3-stack .post-card-3 .post-content .title {
    color: var(--bz-color-common-white) !important;
}

.blog-section-3--index3-stack .post-card-3 .post-content .title a {
    color: var(--bz-color-common-white) !important;
}

.blog-section-3--index3-stack .post-card-3 .post-content .post-meta li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.blog-section-3--index3-stack .post-card-3 .post-content .blog-btn {
    color: var(--bz-color-common-white) !important;
}

.blog-section-3--index3-stack .post-card-3 .post-content .blog-btn:hover {
    color: var(--bz-color-theme-red) !important;
}

.post-inner {
    margin-bottom: 30px;
}

.post-inner .post-thumb {
    height: 450px;
}

@media only screen and (max-width: 992px) {
    .post-inner .post-thumb {
        height: 350px;
    }
}

.post-inner .post-thumb .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.post-inner .post-thumb .video-btn a {
    background-color: rgba(30, 110, 231, 0.9);
    color: var(--bz-color-common-white);
    font-size: 30px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    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;
}

.post-inner .post-thumb .video-btn img {
    margin-bottom: 5px;
}

.post-inner .post-thumb .video-btn .ripple {
    height: 100px;
    width: 100px;
}

.post-inner .post-thumb .video-btn .ripple:before,
.post-inner .post-thumb .video-btn .ripple:after {
    height: 100px;
    width: 100px;
}

.post-inner .post-content .title {
    font-size: 30px;
}

@media only screen and (max-width: 767px) {
    .post-inner .post-content .title {
        font-size: 22px;
    }
}

.post-inner .post-content p {
    margin-top: 15px;
    margin-bottom: 0;
}

.post-inner:hover .post-thumb .swiper-arrow {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: visible;
    opacity: 1;
}

.post-thumb-carousel .swiper-arrow {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.post-thumb-carousel .swiper-arrow .swiper-nav {
    background-color: rgba(30, 110, 231, 0.9);
    color: var(--bz-color-common-white);
    height: 50px;
    width: 50px;
    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;
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.post-thumb-carousel .swiper-arrow .swiper-nav.swiper-next {
    left: auto;
    right: 0;
    border-radius: 5px 0 0 5px;
}

.pagination-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.pagination-wrap li a {
    background-color: var(--bz-color-grey-1);
    color: var(--bz-color-heading-primary);
    font-weight: 600;
    height: 50px;
    width: 50px;
    font-size: 14px;
    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;
    line-height: 1;
    border-radius: 10px;
}

.pagination-wrap li a:hover {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

.pagination-wrap li .active {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

/* !END: Theme Blog CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.page-header {
    background-color: #F3F3F3;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-header .overlay {
    background: rgba(12, 26, 54, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.page-header .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-filter: saturate(0) contrast(120%);
    filter: saturate(0) contrast(120%);
    z-index: -1;
}

.page-header .shapes .shape {
    position: absolute;
    z-index: -1;
    height: 100%;
}

.page-header .shapes .shape img {
    height: 100%;
}

.page-header .shapes .shape.shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}

.page-header .shapes .shape.shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}

.page-header-content {
    padding: 144.21px 0;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
}

@media only screen and (max-width: 992px) {
    .page-header-content {
        padding: 100px 0 100px 0;
    }
}

@media only screen and (max-width: 767px) {
    .page-header-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

/* Sous header-3 (position absolute) : décaler le titre pour qu'il ne soit pas masqué par la barre blanche */
.page-header-below-header-3 .page-header-content {
    padding-top: 235px;
}

@media only screen and (max-width: 992px) {
    .page-header-below-header-3 .page-header-content {
        padding-top: 195px;
    }
}

@media only screen and (max-width: 767px) {
    .page-header-below-header-3 .page-header-content {
        padding-top: 170px;
    }
}

.page-header-content .title {
    color: var(--bz-color-common-white);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
}

@media only screen and (max-width: 992px) {
    .page-header-content .title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .page-header-content .title {
        font-size: 29px;
    }
}

.page-header-content .sub-title {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 15px 30px;
}

.page-header-content .sub-title .home {
    color: var(--bz-color-common-white);
    font-size: 18px;
    font-weight: 500;
}

.page-header-content .sub-title .icon {
    font-size: 16px;
    color: var(--bz-color-common-white);
    line-height: 1;
}

.page-header-content .sub-title .inner {
    font-size: 18px;
    color: var(--bz-color-common-white);
    font-weight: 500;
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-content {
    background-color: var(--bz-color-grey-4);
    padding: 40px 50px;
    border-radius: 15px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .contact-content {
        padding: 30px 20px;
    }
}

.contact-content .contact-top .title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .contact-content .contact-top .title {
        font-size: 24px;
    }
}

.contact-content .contact-top p {
    margin-bottom: 30px;
}

.contact-content .contact-list .list-item {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 75px 20px 1fr;
    grid-template-columns: 75px 1fr;
    grid-gap: 20px;
}

.contact-content .contact-list .list-item:not(:last-of-type) {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #DADFEC;
}

@media only screen and (max-width: 767px) {
    .contact-content .contact-list .list-item {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.contact-content .contact-list .list-item .icon {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-theme-primary);
    font-size: 18px;
    height: 60px;
    width: 60px;
    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;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.contact-content .contact-list .list-item .content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}

.contact-content .contact-list .list-item .content p {
    margin-bottom: 0;
}

.contact-content .contact-list .list-item .content a {
    display: block;
}

.contact-content .contact-list .list-item .content span {
    display: block;
}

.contact-content .contact-list .list-item:hover .icon {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

.contact-wrap {
    background-color: var(--bz-color-grey-1);
    padding: 60px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

@media only screen and (max-width: 767px) {
    .contact-wrap {
        padding: 40px 20px;
    }
}

.contact-wrap .section-heading .section-title {
    margin: 0;
}

.blog-contact-form.form-2 {
    border: 1px solid var(--bz-color-border-1);
}

.map-wrapper {
    margin-bottom: -10px;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
    START: Request CSS
----------------------------------------*/
.request-section {
    background-color: #EBF3FF;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.request-section .bg-color {
    background-color: var(--bz-color-common-white);
    width: 100%;
    height: 76px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.request-section .shapes .shape {
    position: absolute;
    z-index: -1;
}

.request-section .shapes .shape.shape-1 {
    bottom: 0;
    left: 0;
}

.request-section .shapes .shape.shape-2 {
    top: 60%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.request-form-wrap {
    max-width: 530px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.request-form-wrap .form-header {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    padding: 20px 40px;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
}

.request-form-wrap .request-form {
    background-color: var(--bz-color-common-white);
    padding: 40px;
}

.request-form-wrap .request-form .form-control {
    border: 1px solid var(--bz-color-border-1);
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 13px 20px;
    margin-bottom: 15px;
}

.request-img-wrap {
    position: relative;
    height: 665px;
}

.request-img-wrap .men {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.request-img-wrap .bg-img {
    position: absolute;
    top: 76px;
    right: 0;
    height: 525px;
}

.request-section-2 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    max-width: 1860px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.request-section-2 .request-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    max-width: 845px;
    width: 100%;
    clip-path: polygon(22% 0%, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

@media only screen and (max-width: 992px) {
    .request-section-2 .request-bg-img {
        display: none;
    }
}

.request-section-2 .request-bg-img img {
    -webkit-filter: saturate(0) contrast(110%);
    filter: saturate(0) contrast(110%);
    width: 100%;
    height: 100%;
}

.request-section-2 .request-bg-img:before {
    background: #1E6EE7;
    content: "";
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.request-form-wrap.wrap-2 {
    background-color: var(--bz-color-common-white);
    padding: 60px 50px;
}

@media only screen and (max-width: 992px) {
    .request-form-wrap.wrap-2 {
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .request-form-wrap.wrap-2 {
        padding: 30px;
    }
}

.request-form-wrap.wrap-2 .form-header {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-heading-primary);
    padding: 0;
    padding-bottom: 0;
    margin-bottom: 15px;
}

.request-form-wrap.wrap-2 p {
    margin-bottom: 30px;
}

.request-form-wrap.wrap-2 .request-form {
    padding: 0;
}

.request-map-wrapper {
    max-width: 625px;
    width: 100%;
    height: 475px;
    border: 5px solid var(--bz-color-common-white);
    border-radius: 15px;
    position: relative;
    z-index: 2;
    margin-left: 30px;
}

@media only screen and (max-width: 992px) {
    .request-map-wrapper {
        margin: 0 auto;
    }
}

.request-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* !END: Request CSS */
/**----------------------------------------
    START: Sponsor CSS
----------------------------------------*/
.sponsor-text-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.sponsor-text-wrap span {
    width: 100%;
    height: 100%;
    border-bottom: 1px solid var(--bz-color-border-1);
}

@media only screen and (max-width: 767px) {
    .sponsor-text-wrap span {
        border: none;
        width: auto;
        height: auto;
    }
}

.sponsor-text-wrap .sponsor-text {
    display: inline-block;
    height: auto;
    border-bottom: none;
    text-align: center;
    white-space: nowrap;
    padding: 0 25px;
}

@media only screen and (max-width: 767px) {
    .sponsor-text-wrap .sponsor-text {
        white-space: inherit;
    }
}

.sponsor-carousel .swiper-slide {
    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;
}

.sponsor-section .sponsor-item {
    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;
    min-height: 110px;
    padding: 10px 16px;
}

.sponsor-section .sponsor-item a {
    width: 180px;
    min-height: 84px;
    height: auto;
    padding: 4px 8px;
    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;
    border-radius: 14px;
    border: 3px solid transparent;
    background-image: linear-gradient(#ffffff, #f3e8e8), linear-gradient(135deg, #ffd0d0 0%, #fcc7c2 18%, #fca59d 42%, #EC281C 78%, #9a120c 100%);
    background-origin: border-box;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
    -webkit-box-shadow: 0 10px 26px rgba(236, 38, 28, 0.041), 0 4px 14px rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 26px rgba(236, 38, 28, 0.014), 0 4px 14px rgba(0, 0, 0, 0.06);
    -webkit-transition: -webkit-transform 0.35s ease, box-shadow 0.35s ease;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sponsor-section .sponsor-item a:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 16px rgba(252, 71, 61, 0.192), 0 8px 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 16px rgba(252, 71, 61, 0.192), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.sponsor-section .sponsor-item img {
    width: 100%;
    max-height: 52px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

@media only screen and (max-width: 767px) {
    .sponsor-section .sponsor-item a {
        width: 150px;
        min-height: 72px;
        padding: 12px 14px;
    }

    .sponsor-section .sponsor-item img {
        max-height: 44px;
    }
}

/* !END: Sponsor CSS */
/**----------------------------------------
    START: Process CSS
----------------------------------------*/
.process-section {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(39.59%, #032E6F), to(#0344A8));
    background: linear-gradient(180deg, #032E6F 39.59%, #0344A8 100%);
    position: relative;
    z-index: 1;
    padding-top: 150px;
    padding-bottom: 150px;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

@media (max-width: 1200px) {
    .process-section {
        clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%);
    }
}

@media only screen and (max-width: 992px) {
    .process-section {
        clip-path: polygon(0 0%, 100% 0, 100% 100%, 0% 100%);
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .process-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.process-section:before {
    background-color: var(--bz-color-common-white);
    content: "";
    width: 100%;
    height: 75px;
    position: absolute;
    bottom: -1px;
    left: 0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}

@media only screen and (max-width: 992px) {
    .process-section:before {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .process-section .shapes {
        display: none;
    }
}

.process-section .shapes .shape {
    position: absolute;
    z-index: -1;
}

.process-section .shapes .shape.shape-1 {
    top: 0;
    left: 135px;
}

.process-section .shapes .shape.shape-2 {
    top: 0;
    right: 105px;
}

.process-section .shapes .shape.shape-3 {
    bottom: 75px;
    left: 40px;
}

.process-section .shapes .shape.shape-4 {
    bottom: 0;
    right: 0;
}

.process-wrap>div:nth-child(2n+2) {
    margin-top: 60px;
}

.process-card {
    position: relative;
}

.process-card .arrow {
    position: absolute;
    top: 20px;
    right: -20%;
}

@media (max-width: 1200px) {
    .process-card .arrow {
        right: -27%;
    }
}

@media only screen and (max-width: 767px) {
    .process-card .arrow {
        display: none;
    }
}

.process-card .icon {
    background-color: var(--bz-color-common-white);
    position: relative;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    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;
    margin: 0 auto;
}

.process-card .icon .number {
    background-color: var(--bz-color-theme-primary);
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    font-size: 16px;
    font-weight: 700;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 5px solid #073b8b;
    position: absolute;
    top: 0;
    right: 0;
    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;
}

.process-card .content {
    margin-top: 30px;
}

.process-card .content .title {
    color: var(--bz-color-common-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-card .content p {
    color: #76A0E0;
    max-width: 285px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
    .process-card.card-2 .arrow {
        display: none;
    }
}

.process-item .process-thumb {
    position: relative;
    height: 240px;
    border-radius: 15px 15px 0 15px;
}

@media (max-width: 1200px) {
    .process-item .process-thumb {
        border-radius: 15px 15px 0 0;
    }
}

.process-item .process-thumb img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.process-item .process-thumb span {
    background-color: var(--bz-color-theme-red);
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 0 15px 0 15px;
}

@media (max-width: 1200px) {
    .process-item .process-thumb span {
        border-radius: 0 15px 0 0;
    }
}

.process-item .process-content {
    background: var(--bz-color-common-white);
    -webkit-box-shadow: 0px 4px 46px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 46px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 15px 15px;
    padding: 25px 30px;
    max-width: 90%;
    width: 100%;
    margin-left: auto;
}

@media (max-width: 1200px) {
    .process-item .process-content {
        max-width: 100%;
    }
}

.process-item .process-content .title {
    font-size: 24px;
    font-weight: 600;
}

.process-item .process-content p {
    margin-bottom: 0;
}

/* index-3: redesign process cards to match green blog style */
.process-section-2--green-cards .row.fade-wrapper {
    margin-top: 36px;
    perspective: 1200px;
    /* Aligner la largeur des cartes process-item sur celle des cartes feature-item
       de .feature-section : .container = 1245px alors que .container-2 = 1350px,
       on contraint donc la rangée à la même largeur que .container puis on la centre. */
    max-width: 1245px;
    margin-left: auto;
    margin-right: auto;
}

.process-section-2--green-cards .row.fade-wrapper>.col-lg-4 {
    perspective: 1200px;
    transform-style: preserve-3d;
    transition: transform 0.35s ease;
}

.process-section-2--green-cards .process-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px 18px 24px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.process-section-2--green-cards .row.fade-wrapper>.col-lg-4:hover {
    transform: translateY(-10px) rotateX(6deg) rotateY(-6deg);
}

.process-section-2--green-cards .row.fade-wrapper>.col-lg-4:hover .process-item {
    background: linear-gradient(135deg, #ffb3b3 0%, #ff7d7d 34%, #ec281c 72%, #8f0d0d 100%);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.process-section-2--green-cards .row.fade-wrapper>.col-lg-4:nth-child(2):hover {
    transform: translateY(-10px) rotateX(6deg) rotateY(0deg);
}

.process-section-2--green-cards .row.fade-wrapper>.col-lg-4:nth-child(3):hover {
    transform: translateY(-10px) rotateX(6deg) rotateY(6deg);
}

.process-section-2--green-cards .process-item .process-thumb {
    height: 230px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
}

.process-section-2--green-cards .process-item .process-thumb img {
    transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1);
    will-change: transform;
}

/* Zoom au survol — fonctionne après clearProps GSAP (pas de transform inline résiduel) */
.process-section-2--green-cards .col-lg-4:hover .process-item .process-thumb img,
.process-section-2--green-cards .row.fade-wrapper>.col-lg-4:hover .process-item .process-thumb img {
    -webkit-transform: scale(1.10) !important;
    transform: scale(1.10) !important;
}

.process-section-2--green-cards .process-item .process-thumb span {
    top: 14px;
    left: 18px;
    bottom: auto;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    background: #dffffada;
    color: #ff030393;
}

.process-section-2--green-cards .process-item .process-content {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    max-width: 100%;
    margin-left: 0;
    padding: 0 8px;
}

.process-section-2--green-cards .process-item .process-meta {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.process-section-2--green-cards .process-item .process-meta li {
    color: #8a312b;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.process-section-2--green-cards .process-item .process-content .title {
    color: #2b2a2a;
    font-size: 20px;
    line-height: 1.12;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-section-2--green-cards .process-item .process-content p {
    color: #4b4b4b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(23, 23, 23, 0.16);
}

.process-section-2--green-cards .process-item .process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 18px;
    font-weight: 700;
    color: #171717;
}

.process-section-2--green-cards .process-item .process-cta i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f887738a;
    color: #8b0000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.process-section-2--green-cards .row.fade-wrapper>.col-lg-4:hover .process-item .process-meta li,
.process-section-2--green-cards .row.fade-wrapper>.col-lg-4:hover .process-item .process-content .title,
.process-section-2--green-cards .row.fade-wrapper>.col-lg-4:hover .process-item .process-content p,
.process-section-2--green-cards .row.fade-wrapper>.col-lg-4:hover .process-item .process-cta {
    color: #fff;
}

.process-section-2--green-cards .row.fade-wrapper>.col-lg-4:hover .process-item .process-content p {
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

/* Page catalogue pièces : 3 cartes / rangée dans la colonne principale (même style qu’accueil) */
.pb-pieces-catalogue.process-section-2--green-cards .row.fade-wrapper#pbPiecesGrid {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Pagination catalogue pièces (carrés arrondis, page active rouge) */
.pb-pieces-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2.5rem;
    list-style: none;
    padding: 0;
}

.pb-pieces-pagination > li {
    margin: 0;
    padding: 0;
}

.pb-pieces-pagination a,
.pb-pieces-pagination .pb-pieces-pagination__ellipsis,
.pb-pieces-pagination .is-active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    padding: 0 0.35rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    color: #1a1a1a;
    background: #f4f4f5;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.pb-pieces-pagination a:hover {
    background: #e8e8ea;
    color: #000;
}

.pb-pieces-pagination .is-active {
    background: #ec281c;
    color: #fff;
    cursor: default;
    pointer-events: none;
}

.pb-pieces-pagination .pb-pieces-pagination__ellipsis {
    min-width: 2rem;
    background: transparent;
    color: #666;
    font-weight: 500;
}

.pb-pieces-pagination a.pb-pieces-pagination__nav {
    color: #1a1a1a;
}

@media (max-width: 991px) {
    .process-section-2--green-cards .row.fade-wrapper>.col-lg-4:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 1399px) {
    .process-section-2--green-cards .process-item .process-content .title {
        font-size: 36px;
    }

    .process-section-2--green-cards .process-item .process-cta {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .process-section-2--green-cards .process-item .process-thumb {
        height: 210px;
    }

    .process-section-2--green-cards .process-item .process-content .title {
        font-size: 30px;
    }
}

.service-process-card {
    background-color: var(--bz-color-grey-1);
    padding: 40px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.service-process-card:before {
    background: -webkit-linear-gradient(left, rgba(236, 40, 28, 0.6), rgba(180, 20, 10, 0.35));
    background: linear-gradient(to right, rgba(236, 40, 28, 0.6), rgba(180, 20, 10, 0.35));
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.service-process-card .number {
    font-family: var(--bz-ff-heading);
    background-color: var(--bz-color-theme-primary);
    display: inline-block;
    height: 45px;
    width: 45px;
    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;
    color: var(--bz-color-common-white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-process-card .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-process-card p {
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-process-card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(236, 40, 28, 0.15);
}

.service-process-card:hover:before {
    height: 100%;
}

.service-process-card:hover .number {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-process-card:hover .title,
.service-process-card:hover p {
    color: var(--bz-color-common-white);
}

/* !END: Process CSS */
/**----------------------------------------
    START: Pricing CSS
----------------------------------------*/
.pricing-item {
    background-color: var(--bz-color-grey-4);
    padding: 40px;
    border-radius: 15px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .pricing-item {
        padding: 30px 20px;
    }
}

.pricing-item .icon {
    background-color: var(--bz-color-common-white);
    height: 70px;
    width: 70px;
    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;
    border-radius: 50%;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.pricing-item .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-item p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1;
    margin-bottom: 30px;
}

.pricing-item .price {
    color: var(--bz-color-theme-primary);
    margin-bottom: 0;
    line-height: 1;
}

.pricing-item .price span {
    font-family: var(--bz-ff-body);
    color: var(--bz-color-text-body);
    font-size: 15px;
    font-weight: 400;
}

.pricing-item .pricing-list {
    border-top: 1px solid var(--bz-color-border-1);
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 20px;
    margin-bottom: 30px;
}

.pricing-item .pricing-list li {
    font-family: var(--bz-ff-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.pricing-item .pricing-list li:not(:last-of-type) {
    margin-bottom: 15px;
}

.pricing-item .pricing-btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pricing-item.active {
    background-color: var(--bz-color-common-white);
    -webkit-box-shadow: 0px 11px 44px rgba(12, 21, 38, 0.09);
    box-shadow: 0px 11px 44px rgba(12, 21, 38, 0.09);
    position: relative;
}

.pricing-item.active .icon {
    background-color: var(--bz-color-grey-1);
}

.pricing-item.active .active-text {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    display: block;
    text-align: center;
    padding: 7px 10px;
    position: absolute;
    top: 40px;
    right: -145px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
    .pricing-item.active .active-text {
        right: -95px;
    }
}

/* !END: Pricing CSS */
/**----------------------------------------
    START: Faq CSS
----------------------------------------*/
.faq-content {
    padding-right: 20px;
}

@media only screen and (max-width: 992px) {
    .faq-content {
        padding-right: 0;
    }
}

.faq-img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    margin-left: 20px;
}

@media only screen and (max-width: 992px) {
    .faq-img {
        padding-left: 0;
        margin: 0 auto;
        margin-top: 30px;
    }
}

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

.faq-accordion .accordion-item {
    background-color: var(--bz-color-grey-1);
    border: none;
    margin-bottom: 20px;
    border-radius: 5px;
}

.faq-accordion .accordion-item .accordion-button {
    color: var(--bz-color-heading-primary);
    font-size: 20px;
    font-weight: 500;
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-accordion .accordion-item .accordion-button:after {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-theme-primary);
    height: 30px;
    width: 30px;
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    font-weight: 700;
    content: "+";
    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;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed):after {
    content: "\f068";
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.faq-accordion .accordion-item .accordion-body {
    padding-top: 0;
    color: var(--bz-color-text-body);
    font-weight: 400;
}

.faq-accordion .accordion-item .accordion-collapse {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: 4px solid transparent;
}

.faq-accordion .accordion-item .accordion-collapse.collapse.show {
    border-bottom: 4px solid var(--bz-color-theme-primary);
}

.faq-widget {
    background-color: var(--bz-color-grey-4);
    padding: 40px;
    border-radius: 10px;
}

@media only screen and (max-width: 767px) {
    .faq-widget {
        padding: 30px 20px;
    }
}

.faq-widget .search-box {
    position: relative;
}

.faq-widget .search-box .form-control {
    background-color: var(--bz-color-common-white);
    padding: 14.5px 50px 14.5px 20px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #0A0D13;
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 400;
    border: 1px solid var(--bz-color-border-1);
}

.faq-widget .search-box .form-control::-webkit-input-placeholder {
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 400;
}

.faq-widget .search-box .form-control:-moz-placeholder {
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 400;
}

.faq-widget .search-box .form-control::-moz-placeholder {
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 400;
}

.faq-widget .search-box .form-control:-ms-input-placeholder {
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 400;
}

.faq-widget .search-box .search-btn {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    font-size: 16px;
    width: 55px;
    height: 55px;
    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;
    position: absolute;
    top: 0;
    right: 0;
}

.faq-sponsor {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.faq-sponsor img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.faq-sponsor .sponsor-text {
    color: var(--bz-color-common-white);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    position: absolute;
    top: 30px;
    left: 30px;
}

.faq-sponsor .sponsor-text-2 {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    padding: 20px 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 20px 0 0 0;
}

/* !END: Faq CSS */
/**----------------------------------------
    START: Promo CSS
----------------------------------------*/
.promo-section {
    margin-top: -95px;
    /* Au-dessus du hero (index-3 : .hero-section-3 a z-index: 1) pour que le chevauchement
       par marge négative ne soit pas masqué par le fond / overlay du slider */
    position: relative;
    z-index: 2;
}

/* Cartes promo (index-3) : déplacements horizontaux/verticaux au scroll — éviter le découpage */
section.promo-section.pb-120 .row.fade-wrapper {
    overflow: visible;
}

.promo-item {
    position: relative;
    z-index: 1;
    padding: 30px;
    padding-top: 170px;
    overflow: hidden;
    border: 10px solid transparent;
    border-radius: 30px;
    background-image: linear-gradient(transparent, transparent), linear-gradient(135deg, #ffffff 0%, #ffc9c4 22%, #EC281C 55%, #9a120c 100%);
    background-origin: border-box;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
    -webkit-box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.05);
    -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.promo-section .col-lg-4.col-md-6:hover .promo-item {
    -webkit-transform: perspective(1000px) rotateX(5deg) rotateY(-7deg) translateZ(14px) scale(1.02);
    transform: perspective(1000px) rotateX(5deg) rotateY(-7deg) translateZ(14px) scale(1.02);
    -webkit-box-shadow: 0 28px 56px rgba(0, 0, 0, 0.14), 0 12px 28px rgba(236, 40, 28, 0.18);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.14), 0 12px 28px rgba(236, 40, 28, 0.18);
}

@media (prefers-reduced-motion: reduce) {
    .promo-item {
        -webkit-transition: none;
        transition: none;
    }

    .promo-section .col-lg-4.col-md-6:hover .promo-item {
        -webkit-transform: none;
        transform: none;
    }
}

@media (max-width: 1200px) {
    .promo-item {
        padding: 30px 20px;
        padding-top: 170px;
    }
}

.promo-item .bg-items .bg-img {
    width: 100%;
    height: 60%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 15px;
}

.promo-item .bg-items .bg-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 15px;
    -webkit-filter: saturate(0) contrast(120%);
    filter: saturate(0) contrast(120%);
}

.promo-item .bg-items .overlay {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(236, 40, 28, 0)), color-stop(58.48%, #f3615993));
    background: linear-gradient(180deg, rgba(236, 40, 28, 0) 0%, #d33d36 58.48%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 15px;
}

.promo-item .bg-items .overlay-2 {
    background: rgba(250, 63, 53, 0.45);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 15px;
}

.promo-item .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.promo-item p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

.promo-item .bz-primary-btn {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-theme-red);
}

.promo-item .bz-primary-btn:hover {
    /* color: var(--bz-color-common-white); */
    background-color: var(--bz-color-theme-red);
    color: var(--bz-color-common-white);
}

/* !END: Promo CSS */
/**----------------------------------------
    START: Cta CSS
----------------------------------------*/
.cta-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

.cta-section .overlay {
    background: rgba(14, 17, 27, 0.75);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.cta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 30px;
}

.cta-wrap .cta-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.cta-wrap .cta-btn-wrap .video-btn a {
    background-color: transparent;
    color: var(--bz-color-common-white);
    height: 56px;
    width: 56px;
    border-radius: 5px;
    border: 1px solid var(--bz-color-common-white);
    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;
    position: relative;
    z-index: 2;
}

.cta-wrap .cta-btn-wrap .video-btn a:hover {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-heading-primary);
}

.cta-2 {
    position: relative;
    z-index: 1;
}

.cta-2 .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.cta-2 .bg-img img {
    -webkit-filter: saturate(0) contrast(110%);
    filter: saturate(0) contrast(110%);
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cta-2 .overlay {
    background: rgba(40, 50, 79, 0.57);
}

.cta-2 .overlay-2 {
    background: var(--bz-color-theme-red);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.cta-section-3 {
    margin-bottom: -145px;
}

.cta-wrap-3 {
    background-color: var(--bz-color-heading-primary);
    border-radius: 20px;
    padding: 80px 80px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .cta-wrap-3 {
        padding: 50px 20px;
    }
}

.cta-wrap-3 .shapes .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.cta-wrap-3 .shapes .shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    opacity: 0.2;
}

@media only screen and (max-width: 767px) {
    .cta-wrap-3 .shapes .shape-2 {
        display: none;
    }
}

.cta-wrap-3 .cta-mask-img {
    background-color: var(--bz-color-common-black);
    -webkit-mask-image: url(../img/shapes/mask-img-2.png);
    mask-image: url(../img/shapes/mask-img-2.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: 100%;
    width: 690px;
    position: absolute;
    top: 0;
    right: -5px;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .cta-wrap-3 .cta-mask-img {
        display: none;
    }
}

.cta-wrap-3 .cta-mask-img img {
    -webkit-filter: saturate(0) contrast(110%);
    filter: saturate(0) contrast(110%);
}

.cta-wrap-3 .cta-mask-img .overlay {
    background-color: var(--bz-color-theme-red);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.cta-wrap-3 .title {
    color: var(--bz-color-common-white);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

@media only screen and (max-width: 767px) {
    .cta-wrap-3 .title {
        font-size: 32px;
    }
}

.cta-wrap-3 p {
    color: #C8C9CB;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.about-cta {
    margin-top: -245px;
}

.about-cta-wrap {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
}

.about-cta-wrap .bg-item .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-filter: saturate(0) contrast(110%);
    filter: saturate(0) contrast(110%);
}

.about-cta-wrap .bg-item .overlay {
    background: var(--bz-color-theme-primary);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-cta-wrap .bg-item .overlay-2 {
    background: rgba(2, 6, 13, 0.64);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-cta-wrap .bg-item .shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-cta-wrap .section-heading .section-title {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    font-size: 48px;
}

@media only screen and (max-width: 767px) {
    .about-cta-wrap .section-heading .section-title {
        font-size: 32px;
    }
}

/* !END: Cta CSS */
/**----------------------------------------
    START: Strength CSS
----------------------------------------*/
.strength-section {
    position: relative;
    z-index: 1;
}

.strength-section .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.strength-section .overlay {
    background: -webkit-gradient(linear, left top, right top, from(rgba(5, 7, 11, 0.92)), to(#1E2127));
    background: linear-gradient(90deg, rgba(5, 7, 11, 0.92) 0%, #1E2127 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.strength-section .shapes .shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.strength-section .shapes .shape-2 {
    background-color: #721512;
    height: 95px;
    width: 88px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.strength-section .strength-mask-img {
    background-color: var(--bz-color-common-black);
    -webkit-mask-image: url(../img/shapes/mask-img.png);
    mask-image: url(../img/shapes/mask-img.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 585px;
    height: 600px;
    position: absolute;
    top: 0;
    right: 88px;
    z-index: -1;
}

@media (max-width: 1200px) {
    .strength-section .strength-mask-img {
        display: none;
    }
}

.strength-section .strength-mask-img img {
    height: 100%;
    -webkit-filter: saturate(0) contrast(110%);
    filter: saturate(0) contrast(110%);
}

.strength-section .strength-mask-img .mask-overlay {
    background-color: var(--bz-color-theme-red);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.strength-content p {
    color: #C8C9CB;
    max-width: 600px;
    width: 100%;
    margin-bottom: 40px;
}

.strength-content .strength-items {
    max-width: 560px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
}

@media only screen and (max-width: 992px) {
    .strength-content .strength-items {
        max-width: 490px;
    }
}

.strength-content .strength-items .strength-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.17);
    -webkit-backdrop-filter: blur(6.5px);
    backdrop-filter: blur(6.5px);
    border-radius: 5px;
    padding: 25px 40px;
}

@media (max-width: 1200px) {
    .strength-content .strength-items .strength-item {
        padding: 25px 30px;
    }
}

.strength-content .strength-items .strength-item .title {
    color: var(--bz-color-common-white);
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.strength-content .strength-items .strength-item .title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
    margin-top: 4px;
}

.strength-content .strength-items .strength-item p {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 0;
}

.strength-man {
    max-width: 580px;
    height: 100%;
    width: 100%;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .strength-man {
        margin: 0 auto;
    }
}

.strength-man .men {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

@media only screen and (max-width: 992px) {
    .strength-man .men {
        position: inherit;
        margin: 0 auto;
    }
}

/* index-3 : background clair + titre en noir */
.strength-section.strength-section--index3-stack {
    background-color: #fff7f7;
}

.strength-section.strength-section--index3-stack .overlay,
.strength-section.strength-section--index3-stack .bg-img {
    display: none;
}

.strength-section.strength-section--index3-stack .section-heading .section-title,
.strength-section.strength-section--index3-stack .section-heading .section-title * {
    color: #191F29 !important;
}

/* index-3 : agrandir l'illustration + glass sur les compteurs */
.strength-section--index3-stack .strength-man {
    max-width: 720px;
}

@media only screen and (max-width: 992px) {
    .strength-section--index3-stack .strength-man {
        max-width: 520px;
    }
}

.strength-section--index3-stack .strength-man .men {
    -webkit-transform: scale(1.18);
    transform: scale(1.18);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    will-change: transform;
    animation: index3MenFloat 7s ease-in-out infinite;
}

@media only screen and (max-width: 992px) {
    .strength-section--index3-stack .strength-man .men {
        -webkit-transform: scale(1);
        transform: scale(1);
        animation: index3MenFloatMobile 7s ease-in-out infinite;
    }
}

@keyframes index3MenFloat {
    0% {
        -webkit-transform: translate3d(0, 0, 0) scale(1.18);
        transform: translate3d(0, 0, 0) scale(1.18);
    }

    50% {
        -webkit-transform: translate3d(0, 14px, 0) scale(1.18) rotate(-0.8deg);
        transform: translate3d(0, 14px, 0) scale(1.18) rotate(-0.8deg);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1.18);
        transform: translate3d(0, 0, 0) scale(1.18);
    }
}

@keyframes index3MenFloatMobile {
    0% {
        -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }

    50% {
        -webkit-transform: translate3d(0, 10px, 0) scale(1) rotate(-0.6deg);
        transform: translate3d(0, 10px, 0) scale(1) rotate(-0.6deg);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .strength-section--index3-stack .strength-man .men {
        animation: none;
    }
}

.strength-section--index3-stack .team-counter {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    padding: 14px 12px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    height: 100%;
}

.strength-section--index3-stack .team-counter .icon {
    height: 72px;
    width: 72px;
    min-width: 72px;
    border-radius: 15px;
    background: #EC281C;
    border: 1px solid #EC281C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength-section--index3-stack .team-counter .icon img {
    max-width: 44px;
    max-height: 44px;
    width: auto;
    height: auto;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}

.strength-section--index3-stack .team-counter .icon i {
    font-size: 30px;
    line-height: 1;
    color: #ffffff;
}

.strength-section--index3-stack .team-counter .content {
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.strength-section--index3-stack .team-counter .content .title {
    color: #191F29;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
}

.strength-section--index3-stack .team-counter .content .title span {
    color: #191F29;
}

.strength-section--index3-stack .team-counter .content .title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
    margin-top: 3px;
}

.strength-section--index3-stack .team-counter .content p {
    font-family: var(--bz-ff-heading);
    color: #191F29;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.15;
}

.strength-section--index3-stack .team-counter .content p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
    .strength-section--index3-stack .team-counter {
        padding: 14px 12px;
        gap: 9px;
    }

    .strength-section--index3-stack .team-counter .icon {
        height: 68px;
        width: 68px;
        min-width: 68px;
    }

    .strength-section--index3-stack .team-counter .icon img {
        max-width: 42px;
        max-height: 42px;
    }

    .strength-section--index3-stack .team-counter .icon i {
        font-size: 36px;
    }

    .strength-section--index3-stack .team-counter .content .title {
        font-size: 28px;
    }

    .strength-section--index3-stack .team-counter .content p {
        font-size: 11px;
    }
}

/* index-3 : réduire le "mt-40" du bloc des compteurs */
.strength-section--index3-stack .strength-content--index3-stack .justify-content-center.mt-40 {
    margin-top: 28px !important;
}

/* !END: Strength CSS */
/**----------------------------------------
    START: Feature CSS
----------------------------------------*/
.feature-section {
    position: relative;
    z-index: 1;
}

.feature-section .bg-shape {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.feature-item {
    background-color: var(--bz-color-common-white);
    padding: 50px;
    border: 1px solid var(--bz-color-border-1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
    .feature-item {
        padding: 30px;
    }
}

.feature-item:before {
    background-color: var(--bz-color-theme-primary);
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.feature-item .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 90px;
}

@media only screen and (max-width: 992px) {
    .feature-item .bg-img {
        height: 75px;
    }
}

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

.feature-item .icon {
    background-color: #F5F7F8;
    height: 80px;
    width: 80px;
    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;
    border-radius: 50%;
    margin-bottom: 25px;
}

.feature-item .icon img {
    width: 40px;
    height: 40px;
}

.feature-item .feature-content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.feature-item .feature-content p {
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.feature-item .feature-content .read-more {
    color: var(--bz-color-theme-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-item .feature-content .read-more i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.feature-item .feature-content .read-more:hover i {
    margin-left: 5px;
}

.feature-item:hover {
    margin-top: -10px;
}

.feature-item:hover:before {
    width: 100%;
}

/* a_propos.html : retirer l'overlay rouge au survol des .feature-item */
.feature-section .feature-item:hover::before {
    width: 0 !important;
}

.feature-section .feature-item:hover .feature-content .title,
.feature-section .feature-item:hover .feature-content p,
.feature-section .feature-item:hover .feature-content a {
    color: inherit !important;
}

.feature-item:hover .feature-content a,
.feature-item:hover .feature-content p,
.feature-item:hover .feature-content .title {
    color: var(--bz-color-common-white);
}

/* !END: Feature CSS */
/**----------------------------------------
START: Theme Slider CSS
----------------------------------------*/
.slider-section {
    overflow: hidden;
}

.bizan-slider {
    position: relative;
    z-index: 2;
}

.slider-item {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.slider-item .shapes .shape {
    position: absolute;
    z-index: 2;
}

.slider-item .shapes .shape.shape-1 {
    top: 0;
    left: 0;
}

.slider-item .shapes .shape.shape-2 {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
}

.slider-item .shapes .color-shape {
    background-color: #064098;
    mix-blend-mode: multiply;
    width: 1045px;
    height: 1065px;
    display: block;
    position: absolute;
    top: -24%;
    left: -8%;
    border-radius: 60px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 2;
}

.slider-item .shapes .color-shape-2 {
    background: linear-gradient(102.04deg, #1D304E 25.25%, rgba(25, 31, 41, 0) 58.79%);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.slider-item .slide-img-wrap {
    height: 860px;
}

@media only screen and (max-width: 992px) {
    .slider-item .slide-img-wrap {
        height: 700px;
    }
}

@media only screen and (max-width: 767px) {
    .slider-item .slide-img-wrap {
        height: 600px;
    }
}

.slider-item .slide-img-wrap img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.slider-item .slider-content-wrap {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 100%;
    width: 100%;
    z-index: 10;
}

@media only screen and (max-width: 992px) {
    .slider-item .slider-content-wrap {
        margin-top: 0;
    }
}

.bizan-swiper-pagination {
    height: 100%;
    width: auto !important;
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50px !important;
    z-index: 2;
}

@media (max-width: 1399px) {
    .bizan-swiper-pagination {
        left: 25px !important;
    }
}

@media (max-width: 1250px) {
    .bizan-swiper-pagination {
        display: none;
    }
}

.bizan-swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 50%;
    opacity: 1;
    display: block;
}

.bizan-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid var(--lt-color-common-white);
}

.bizan-swiper-pagination .swiper-pagination-bullet:before {
    content: "";
    background-color: var(--lt-color-common-white);
    width: 5px;
    height: 5px;
    border: 1px solid var(--lt-color-common-white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.bizan-swiper-pagination .swiper-pagination-bullet:not(:last-of-type) {
    margin-bottom: 10px;
}

/* Text Animation */
.bizan-animation,
.bizan-animation span {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.bizan-animation span {
    display: inline-block;
}

/* Fade Effect */
.bizan-fadeIn {
    -webkit-animation-name: asFadeIn;
    animation-name: asFadeIn;
}

@-webkit-keyframes asFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes asFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bizan-fadeInLeft {
    -webkit-animation-name: asFadeInLeft;
    animation-name: asFadeInLeft;
}

@-webkit-keyframes asFadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
    }
}

@keyframes asFadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
    }
}

.bizan-fadeInRight {
    -webkit-animation-name: asFadeInRight;
    animation-name: asFadeInRight;
}

@-webkit-keyframes asFadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    to {
        opacity: 1;
    }
}

@keyframes asFadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    to {
        opacity: 1;
    }
}

.bizan-fadeInDown {
    -webkit-animation-name: asFadeInTop;
    animation-name: asFadeInTop;
}

@-webkit-keyframes asFadeInTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
    }
}

@keyframes asFadeInTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
    }
}

.bizan-fadeInUp {
    -webkit-animation-name: asFadeInBottom;
    animation-name: asFadeInBottom;
}

@-webkit-keyframes asFadeInBottom {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    to {
        opacity: 1;
    }
}

@keyframes asFadeInBottom {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    to {
        opacity: 1;
    }
}

/* Move From Effect */
.bizan-moveFromLeft {
    -webkit-animation-name: asMoveFromLeft;
    animation-name: asMoveFromLeft;
}

@-webkit-keyframes asMoveFromLeft {
    from {
        visibility: hidden;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    to {
        visibility: visible;
    }
}

@keyframes asMoveFromLeft {
    from {
        visibility: hidden;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    to {
        visibility: visible;
    }
}

.bizan-moveFromRight {
    -webkit-animation-name: asMoveFromRight;
    animation-name: asMoveFromRight;
}

@-webkit-keyframes asMoveFromRight {
    from {
        visibility: hidden;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    to {
        visibility: visible;
    }
}

@keyframes asMoveFromRight {
    from {
        visibility: hidden;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    to {
        visibility: visible;
    }
}

.bizan-moveFromTop {
    -webkit-animation-name: asMoveFromTop;
    animation-name: asMoveFromTop;
}

@-webkit-keyframes asMoveFromTop {
    from {
        visibility: hidden;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    to {
        visibility: visible;
    }
}

@keyframes asMoveFromTop {
    from {
        visibility: hidden;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    to {
        visibility: visible;
    }
}

.bizan-moveFromBottom {
    -webkit-animation-name: asMoveFromBottom;
    animation-name: asMoveFromBottom;
}

@-webkit-keyframes asMoveFromBottom {
    from {
        visibility: hidden;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    to {
        visibility: visible;
    }
}

@keyframes asMoveFromBottom {
    from {
        visibility: hidden;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    to {
        visibility: visible;
    }
}

/* Blur Effect */
.bizan-blurIn {
    -webkit-animation-name: asBlurIn;
    animation-name: asBlurIn;
}

@-webkit-keyframes asBlurIn {
    from {
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: 0;
    }
}

@keyframes asBlurIn {
    from {
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: 0;
    }
}

.bizan-blurInLeft {
    -webkit-animation-name: asBlurInLeft;
    animation-name: asBlurInLeft;
}

@-webkit-keyframes asBlurInLeft {
    from {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: 0;
    }
}

@keyframes asBlurInLeft {
    from {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: 0;
    }
}

.bizan-blurInRight {
    -webkit-animation-name: asBlurInRight;
    animation-name: asBlurInRight;
}

@-webkit-keyframes asBlurInRight {
    from {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: 0;
    }
}

@keyframes asBlurInRight {
    from {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: 0;
    }
}

.bizan-blurInTop {
    -webkit-animation-name: asBlurInTop;
    animation-name: asBlurInTop;
}

@-webkit-keyframes asBlurInTop {
    from {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: 0;
    }
}

@keyframes asBlurInTop {
    from {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: 0;
    }
}

.bizan-blurInBottom {
    -webkit-animation-name: asBlurInBottom;
    animation-name: asBlurInBottom;
}

@-webkit-keyframes asBlurInBottom {
    from {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: 0;
    }
}

@keyframes asBlurInBottom {
    from {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: 0;
    }
}

/* Zoom Effect */
.bizan-zoomIn {
    -webkit-animation-name: asZoomIn;
    animation-name: asZoomIn;
}

@-webkit-keyframes asZoomIn {
    from {
        -webkit-transform: scale(5);
        transform: scale(5);
        opacity: 0;
    }
}

@keyframes asZoomIn {
    from {
        -webkit-transform: scale(5);
        transform: scale(5);
        opacity: 0;
    }
}

.bizan-zoomInLeft {
    -webkit-animation-name: asZoomInLeft;
    animation-name: asZoomInLeft;
}

@-webkit-keyframes asZoomInLeft {
    from {
        -webkit-transform: scale(5) translateX(-50%);
        transform: scale(5) translateX(-50%);
        opacity: 0;
    }
}

@keyframes asZoomInLeft {
    from {
        -webkit-transform: scale(5) translateX(-50%);
        transform: scale(5) translateX(-50%);
        opacity: 0;
    }
}

.bizan-zoomInRight {
    -webkit-animation-name: asZoomInRight;
    animation-name: asZoomInRight;
}

@-webkit-keyframes asZoomInRight {
    from {
        -webkit-transform: scale(5) translateX(50%);
        transform: scale(5) translateX(50%);
        opacity: 0;
    }
}

@keyframes asZoomInRight {
    from {
        -webkit-transform: scale(5) translateX(50%);
        transform: scale(5) translateX(50%);
        opacity: 0;
    }
}

.bizan-zoomInTop {
    -webkit-animation-name: asZoomInTop;
    animation-name: asZoomInTop;
}

@-webkit-keyframes asZoomInTop {
    from {
        -webkit-transform: scale(10) translateY(-50%);
        transform: scale(10) translateY(-50%);
        opacity: 0;
    }
}

@keyframes asZoomInTop {
    from {
        -webkit-transform: scale(10) translateY(-50%);
        transform: scale(10) translateY(-50%);
        opacity: 0;
    }
}

.bizan-zoomInBottom {
    -webkit-animation-name: asZoomInBottom;
    animation-name: asZoomInBottom;
}

@-webkit-keyframes asZoomInBottom {
    from {
        -webkit-transform: scale(10) translateY(50%);
        transform: scale(10) translateY(50%);
        opacity: 0;
    }
}

@keyframes asZoomInBottom {
    from {
        -webkit-transform: scale(10) translateY(50%);
        transform: scale(10) translateY(50%);
        opacity: 0;
    }
}

/* Flip Effect */
.bizan-flipInTop {
    -webkit-animation-name: asFlipInTop;
    animation-name: asFlipInTop;
}

@-webkit-keyframes asFlipInTop {
    from {
        -webkit-transform: perspective(600px);
        transform: perspective(600px);
        opacity: 0;
    }

    30% {
        -webkit-transform: perspective(600px) rotateX(180deg);
        transform: perspective(600px) rotateX(180deg);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    to {
        -webkit-transform: perspective(600px);
        transform: perspective(600px);
    }
}

@keyframes asFlipInTop {
    from {
        -webkit-transform: perspective(600px);
        transform: perspective(600px);
        opacity: 0;
    }

    30% {
        -webkit-transform: perspective(600px) rotateX(180deg);
        transform: perspective(600px) rotateX(180deg);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    to {
        -webkit-transform: perspective(600px);
        transform: perspective(600px);
    }
}

.bizan-flipInBottom {
    -webkit-animation-name: asFlipInBottom;
    animation-name: asFlipInBottom;
}

@-webkit-keyframes asFlipInBottom {
    from {
        -webkit-transform: perspective(600px);
        transform: perspective(600px);
        opacity: 0;
    }

    30% {
        -webkit-transform: perspective(600px) rotateX(180deg);
        transform: perspective(600px) rotateX(180deg);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    to {
        -webkit-transform: perspective(600px);
        transform: perspective(600px);
    }
}

@keyframes asFlipInBottom {
    from {
        -webkit-transform: perspective(600px);
        transform: perspective(600px);
        opacity: 0;
    }

    30% {
        -webkit-transform: perspective(600px) rotateX(180deg);
        transform: perspective(600px) rotateX(180deg);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    to {
        -webkit-transform: perspective(600px);
        transform: perspective(600px);
    }
}

/* Roll Effect */
.bizan-rollFromLeft {
    -webkit-animation-name: asRollFromLeft;
    animation-name: asRollFromLeft;
}

@-webkit-keyframes asRollFromLeft {
    from {
        -webkit-transform: translateX(-60px) perspective(600px) rotateY(180deg);
        transform: translateX(-60px) perspective(600px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes asRollFromLeft {
    from {
        -webkit-transform: translateX(-60px) perspective(600px) rotateY(180deg);
        transform: translateX(-60px) perspective(600px) rotateY(180deg);
        opacity: 0;
    }
}

.bizan-rollFromRight {
    -webkit-animation-name: asRollFromRight;
    animation-name: asRollFromRight;
}

@-webkit-keyframes asRollFromRight {
    from {
        -webkit-transform: translateX(60px) perspective(600px) rotateY(-180deg);
        transform: translateX(60px) perspective(600px) rotateY(-180deg);
        opacity: 0;
    }
}

@keyframes asRollFromRight {
    from {
        -webkit-transform: translateX(60px) perspective(600px) rotateY(-180deg);
        transform: translateX(60px) perspective(600px) rotateY(-180deg);
        opacity: 0;
    }
}

.bizan-rollFromTop {
    -webkit-animation-name: asRollFromTop;
    animation-name: asRollFromTop;
}

@-webkit-keyframes asRollFromTop {
    from {
        -webkit-transform: translateY(-60px) perspective(600px) rotateX(180deg);
        transform: translateY(-60px) perspective(600px) rotateX(180deg);
        opacity: 0;
    }
}

@keyframes asRollFromTop {
    from {
        -webkit-transform: translateY(-60px) perspective(600px) rotateX(180deg);
        transform: translateY(-60px) perspective(600px) rotateX(180deg);
        opacity: 0;
    }
}

.bizan-rollFromBottom {
    -webkit-animation-name: asRollFromBottom;
    animation-name: asRollFromBottom;
}

@-webkit-keyframes asRollFromBottom {
    from {
        -webkit-transform: translateY(60px) perspective(600px) rotateX(-180deg);
        transform: translateY(60px) perspective(600px) rotateX(-180deg);
        opacity: 0;
    }
}

@keyframes asRollFromBottom {
    from {
        -webkit-transform: translateY(60px) perspective(600px) rotateX(-180deg);
        transform: translateY(60px) perspective(600px) rotateX(-180deg);
        opacity: 0;
    }
}

/* Rotate Skate Effect */
.bizan-rotateSkateInRight {
    -webkit-animation-name: asRotateSkateInRight;
    animation-name: asRotateSkateInRight;
}

@-webkit-keyframes asRotateSkateInRight {
    from {
        -webkit-transform: scaleX(0.2) translateX(100px);
        transform: scaleX(0.2) translateX(100px);
        opacity: 0;
    }
}

@keyframes asRotateSkateInRight {
    from {
        -webkit-transform: scaleX(0.2) translateX(100px);
        transform: scaleX(0.2) translateX(100px);
        opacity: 0;
    }
}

.bizan-rotateSkateInLeft {
    -webkit-animation-name: asRotateSkateInLeft;
    animation-name: asRotateSkateInLeft;
}

@-webkit-keyframes asRotateSkateInLeft {
    from {
        -webkit-transform: scaleX(0.2) translateX(-100px);
        transform: scaleX(0.2) translateX(-100px);
        opacity: 0;
    }
}

@keyframes asRotateSkateInLeft {
    from {
        -webkit-transform: scaleX(0.2) translateX(-100px);
        transform: scaleX(0.2) translateX(-100px);
        opacity: 0;
    }
}

.bizan-rotateSkateInTop {
    -webkit-animation-name: asRotateSkateInTop;
    animation-name: asRotateSkateInTop;
}

@-webkit-keyframes asRotateSkateInTop {
    from {
        -webkit-transform: scaleY(0.2) translateY(-100px);
        transform: scaleY(0.2) translateY(-100px);
        opacity: 0;
    }
}

@keyframes asRotateSkateInTop {
    from {
        -webkit-transform: scaleY(0.2) translateY(-100px);
        transform: scaleY(0.2) translateY(-100px);
        opacity: 0;
    }
}

.bizan-rotateSkateInBottom {
    -webkit-animation-name: asRotateSkateInBottom;
    animation-name: asRotateSkateInBottom;
}

@-webkit-keyframes asRotateSkateInBottom {
    from {
        -webkit-transform: scaleY(0.2) translateY(100px);
        transform: scaleY(0.2) translateY(100px);
        opacity: 0;
    }
}

@keyframes asRotateSkateInBottom {
    from {
        -webkit-transform: scaleY(0.2) translateY(100px);
        transform: scaleY(0.2) translateY(100px);
        opacity: 0;
    }
}

/* PopUp Effect */
.bizan-popUp {
    -webkit-animation-name: asPopUp;
    animation-name: asPopUp;
}

@-webkit-keyframes asPopUp {
    0% {
        visibility: hidden;
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        visibility: visible;
    }
}

@keyframes asPopUp {
    0% {
        visibility: hidden;
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        visibility: visible;
    }
}

.bizan-popUpLeft {
    -webkit-animation-name: asPopUpLeft;
    animation-name: asPopUpLeft;
}

@-webkit-keyframes asPopUpLeft {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: visible;
        -webkit-transform: translateX(-20px) scale(1.1);
        transform: translateX(-20px) scale(1.1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes asPopUpLeft {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: visible;
        -webkit-transform: translateX(-20px) scale(1.1);
        transform: translateX(-20px) scale(1.1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.bizan-popUpRight {
    -webkit-animation-name: asPopUpRight;
    animation-name: asPopUpRight;
}

@-webkit-keyframes asPopUpRight {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: visible;
        -webkit-transform: translateX(20px) scale(1.1);
        transform: translateX(20px) scale(1.1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes asPopUpRight {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: visible;
        -webkit-transform: translateX(20px) scale(1.1);
        transform: translateX(20px) scale(1.1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

/* Kenburns Top */
.swiper-slide-active .kenburns-top {
    -webkit-animation-name: kenburns-top;
    animation-name: kenburns-top;
}

@-webkit-keyframes kenburns-top {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 16%;
        transform-origin: 50% 16%;
    }

    100% {
        -webkit-transform: scale(1.08) translateY(-15px);
        transform: scale(1.08) translateY(-15px);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}

@keyframes kenburns-top {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 16%;
        transform-origin: 50% 16%;
    }

    100% {
        -webkit-transform: scale(1.08) translateY(-15px);
        transform: scale(1.08) translateY(-15px);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}

/* !END: Theme Slider CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
    display: none;
}

.sidebar-trigger {
    display: block;
}

.sidebar-area {
    background-color: var(--bz-color-common-white);
    border-left: 1px solid var(--bz-color-border-1);
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    width: 450px;
    height: 100%;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    overflow: scroll;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 60px 40px;
}

.open-sidebar .sidebar-area {
    right: 0;
    visibility: visible;
    -webkit-transform: translate(0);
    transform: translate(0);
}

.sidebar-trigger.close {
    position: absolute;
    right: 56px;
    top: 63px;
    color: var(--bz-color-theme-primary);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .sidebar-trigger.close {
        right: 20px;
    }
}

.sidebar-trigger.close:hover {
    color: var(--bz-color-theme-primary);
}

.sidebar-trigger.close svg {
    fill: currentColor;
    stroke: none;
    width: 20px;
    height: 20px;
}

.sidebar-content .site-logo {
    margin-bottom: 40px;
}

.sidebar-content .site-logo img {
    max-width: 200px;
}

.sidebar-content .sidebar-info li {
    font-size: 18px;
}

.sidebar-content .sidebar-social li {
    display: inline-block;
    margin: 0 3px;
    padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
    display: inline-block;
    border: 1px solid var(--border-1);
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.sidebar-content .sidebar-social li a:after {
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 59%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
    border: 1px solid var(--primary-color);
    color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
    visibility: visible;
    opacity: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
    margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #ccc;
}

.sidebar-area::-moz-selection {
    background-color: #999;
    color: #fff;
}

.sidebar-area::selection {
    background-color: #999;
    color: #fff;
}

.sidebar-area-webkit-::-moz-selection {
    background-color: #999;
    color: #fff;
}

.sidebar-area-webkit-::selection {
    background-color: #999;
    color: #fff;
}

.sidebar-area::-moz-selection {
    background-color: #999;
    color: #fff;
}

#sidebar-overlay {
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
    width: calc(100% - 400px);
    z-index: -1;
}

.open-sidebar #sidebar-overlay {
    opacity: 1;
    z-index: 1002;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

@media (max-width: 992px) {
    .sidebar-content .list-post-area.list-2 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    .sidebar-area {
        width: 400px;
        padding: 60px 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .side-menu-logo {
        margin-bottom: 50px;
    }

    .side-menu-wrap {
        margin-bottom: 70px;
    }

    .side-menu-header h3 {
        display: none;
    }

    .side-menu-list li a {
        font-size: 14px;
    }

    .side-menu-list li p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .sidebar-area {
        width: 320px;
        padding: 60px 20px 60px 20px;
    }

    .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
        height: 90px;
        width: 90px;
    }

    .sidebar-content .list-post-area.list-2 .list-post-card {
        -ms-grid-columns: 90px 1fr;
        grid-template-columns: 90px 1fr;
    }
}

.side-menu-logo {
    max-width: 150px;
}

.side-menu-about {
    margin: 50px 0 50px 0;
}

@media only screen and (max-width: 992px) {
    .side-menu-about {
        display: none;
    }
}

.side-menu-about p {
    margin: 25px 0;
}

.side-menu-header h3 {
    font-size: 30px;
    font-weight: 600px;
    line-height: 1;
    font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
    margin-bottom: 20px;
}

.side-menu-list {
    margin: 25px 0 35px 0;
}

.side-menu-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.side-menu-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

.side-menu-list li i {
    background-color: var(--bz-color-theme-primary);
    font-size: 12px;
    color: var(--bz-color-common-white);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid var(--bz-color-border-1);
    border-radius: 5px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.side-menu-list li:hover i {
    background-color: var(--bz-color-theme-primary);
    color: #fff;
}

.side-menu-list li p {
    font-size: 14px;
    padding-left: 10px;
    margin-bottom: 0;
}

.side-menu-list li a {
    font-size: 14px;
    color: var(--bz-color-text-body);
    padding-left: 10px;
}

.side-menu-list li a:hover {
    color: var(--bz-color-theme-primary);
}

.side-menu-social {
    margin-top: 40px;
    list-style: none;
}

.side-menu-social li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.side-menu-social li:not(:last-of-type) {
    margin-right: 10px;
}

.side-menu-social li a {
    background-color: var(--bz-color-theme-primary);
    font-size: 17px;
    color: var(--bz-color-common-white);
    height: 40px;
    width: 40px;
    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;
    border: 1px solid var(--bz-color-border-1);
    border-radius: 50%;
}

.side-menu-social li a:hover {
    background-color: #fff;
    color: #EC281C;
}

/* !END: Sidebar CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.blog-details-img {
    width: 100%;
    height: 450px;
}

.blog-details-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

@media only screen and (max-width: 992px) {
    .blog-details-img {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-details-img {
        height: 300px;
    }
}

@media only screen and (max-width: 992px) {
    .blog-details-content {
        margin-bottom: 40px;
    }
}

.blog-details-content .details-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

@media only screen and (max-width: 992px) {
    .blog-details-content .details-title {
        font-size: 24px;
    }
}

.blog-details-content .details-img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 24px;
}

.blog-details-content .details-img-wrap img {
    max-width: 430px;
    width: 100%;
}

@media (max-width: 1200px) {
    .blog-details-content .details-img-wrap img {
        max-width: 280px;
    }
}

@media only screen and (max-width: 992px) {
    .blog-details-content .details-img-wrap img {
        max-width: 350px;
    }
}

.blog-details-content .blog-details-thumb {
    height: 350px;
    width: 100%;
    border-radius: 15px;
}

.blog-details-content .blog-details-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 767px) {
    .blog-details-content .blog-details-thumb {
        height: 300px;
    }
}

blockquote {
    background-color: var(--bz-color-grey-4);
    padding: 60px 50px;
    border-radius: 15px;
}

@media only screen and (max-width: 767px) {
    blockquote {
        padding: 40px 20px;
    }
}

blockquote .icon {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    font-size: 40px;
    height: 80px;
    width: 80px;
    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;
    border-radius: 50%;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    blockquote .icon {
        padding: 30px 0;
    }
}

blockquote .content p {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-heading-primary);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

blockquote .content .author {
    color: var(--bz-color-theme-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
    line-height: 1;
    margin-top: 30px;
}

blockquote .content .author span {
    display: block;
    font-size: 16px;
    color: var(--bz-color-text-body);
    font-weight: 400;
    margin-top: 10px;
}

.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 30px;
    margin-bottom: 50px;
}

.tags .tag-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tags .tag-left .follow {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 20px;
}

.tags .tag-left .tag-list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
}

.tags .tag-left .tag-list li a {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-text-body);
    display: block;
    font-size: 16px;
    font-weight: 400;
}

.tags .tag-left .tag-list li a:hover {
    color: var(--bz-color-theme-primary);
}

.tags .social-list-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.tags .social-list-wrap .follow {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.tags .social-list-wrap .social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    list-style: none;
}

.tags .social-list-wrap .social-list li:not(:last-of-type) {
    margin-right: 0px;
}

.tags .social-list-wrap .social-list li a {
    color: var(--bz-color-text-body);
    font-size: 15px;
}

.tags .social-list-wrap .social-list li a:hover {
    color: var(--bz-color-theme-primary);
}

.next-prev-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 30px 0;
    border-top: 1px solid var(--bz-color-border-1);
    border-bottom: 1px solid var(--bz-color-border-1);
    margin: 50px 0 0 0;
}

.next-prev-wrap .post-btn {
    margin-bottom: 0;
}

.next-prev-wrap .post-btn a {
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 600;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.next-prev-wrap .post-btn a:hover {
    color: var(--bz-color-theme-primary);
}

.next-prev-wrap .post-btn a .icon {
    background-color: var(--bz-color-bg-1);
    color: var(--bz-color-common-white);
    height: 55px;
    width: 55px;
    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;
    border-radius: 50%;
    border: 1px solid var(--bz-color-border-1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.next-prev-wrap .post-btn a .icon:hover {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    border: 1px solid var(--bz-color-theme-primary);
}

.blog-author-wrap {
    margin-bottom: 50px;
}

.blog-author-item {
    background-color: var(--bz-color-grey-4);
    padding: 30px;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 189px 35px 1fr;
    grid-template-columns: 189px 1fr;
    grid-gap: 35px;
    border-radius: 15px;
}

@media only screen and (max-width: 767px) {
    .blog-author-item {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 25px;
        padding: 25px;
    }
}

.blog-author-item .author-img {
    max-width: 189px;
    height: 189px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .blog-author-item .author-img {
        max-width: 100%;
    }
}

.blog-author-item .author-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-author-item .content .name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-author-item .content .name span {
    color: var(--bz-color-theme-primary);
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

.blog-author-item .content p {
    margin-bottom: 0;
}

.blog-author-item .content .social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
}

.blog-author-item .content .social-list li a {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-bg-1);
    font-size: 13px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: block;
    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;
}

.blog-author-item .content .social-list li a:hover {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

.blog-author-item .content .social-list li:not(:last-of-type) {
    margin-right: 10px;
}

.comments-area .section-heading .section-title {
    font-size: 30px;
}

@media only screen and (max-width: 992px) {
    .comments-area .section-heading .section-title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .comments-area .section-heading .section-title {
        font-size: 26px;
    }
}

.comment-item {
    position: relative;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 110px 25px 1fr;
    grid-template-columns: 110px 1fr;
    grid-gap: 25px;
}

@media only screen and (max-width: 767px) {
    .comment-item {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.comment-item .reply {
    color: var(--bz-color-theme-primary);
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    position: absolute;
    top: 0;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .comment-item .reply {
        position: inherit;
        top: 0;
        left: 0;
        margin-top: 20px;
    }
}

.comment-item .comment-thumb img {
    height: 100%;
    width: 110px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.comment-item .comment-info .comments-meta {
    margin-bottom: 10px;
}

.comment-item .comment-info .comments-meta span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.comment-item .comment-info .author {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.comment-item .comment-info p {
    font-size: 16px;
    margin-bottom: 0;
}

.comment-item.item-2 {
    padding-left: 135px;
}

@media only screen and (max-width: 767px) {
    .comment-item.item-2 {
        padding-left: 0;
    }
}

.comment-item:not(:last-of-type) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--bz-color-border-1);
}

.blog-contact-form {
    background-color: var(--bz-color-grey-4);
    padding: 35px 40px;
    border-radius: 15px;
}

@media only screen and (max-width: 767px) {
    .blog-contact-form {
        padding: 30px 20px;
    }
}

.blog-contact-form .title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}

@media only screen and (max-width: 992px) {
    .blog-contact-form .title {
        font-size: 24px;
    }
}

.blog-contact-form .request-form .form-item {
    position: relative;
}

.blog-contact-form .request-form .form-item .form-control {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 400;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding: 15.5px 30px;
    border-radius: 0;
    margin-bottom: 25px;
    width: 100%;
}

.blog-contact-form .request-form .form-item .form-control::-webkit-input-placeholder {
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control:-ms-input-placeholder {
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control.nice-select {
    height: auto;
    line-height: inherit;
    padding: 15.5px 30px;
}

.blog-contact-form .request-form .form-item .form-control.nice-select:after {
    top: 46%;
    width: 10px;
    height: 10px;
    border-color: var(--bz-color-text-body);
    border-bottom: 1px solid var(--bz-color-text-body);
    border-right: 1px solid var(--bz-color-text-body);
    right: 35px;
}

.blog-contact-form .request-form .form-item .form-control.nice-select .list {
    background-color: var(--bz-color-common-white);
    width: 100%;
}

.blog-contact-form .request-form .form-item .form-control.nice-select .list li {
    padding-left: 30px;
}

.blog-contact-form .request-form .form-item .icon {
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.blog-contact-form .request-form .form-item.message-item .icon {
    top: 25px;
}

.blog-contact-form .bz-primary-btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sidebar-widget {
    background-color: var(--bz-color-grey-4);
    padding: 40px;
    border-radius: 15px;
}

.sidebar-widget:not(:last-of-type) {
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget {
        padding: 30px 20px;
    }
}

.sidebar-widget .search-form {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.sidebar-widget .search-form .form-control {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-text-body);
    font-size: 16px;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 15px 0;
    padding-left: 20px;
    padding-right: 72px;
}

.sidebar-widget .search-form .form-control::-webkit-input-placeholder {
    color: var(--bz-color-text-body);
    font-size: 16px;
}

.sidebar-widget .search-form .form-control:-moz-placeholder {
    color: var(--bz-color-text-body);
    font-size: 16px;
}

.sidebar-widget .search-form .form-control::-moz-placeholder {
    color: var(--bz-color-text-body);
    font-size: 16px;
}

.sidebar-widget .search-form .form-control:-ms-input-placeholder {
    color: var(--bz-color-text-body);
    font-size: 16px;
}

.sidebar-widget .search-form .search-btn {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    height: 100%;
    width: 55px;
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    border-radius: 5px;
}

.sidebar-widget .widget-title {
    color: var(--bz-color-heading-primary);
    font-size: 24px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

.sidebar-widget .category-list {
    list-style: none;
}

.sidebar-widget .category-list li:not(:last-of-type) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DADFEC;
}

.sidebar-widget .category-list li a {
    color: var(--bz-color-heading-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
}

.sidebar-widget .category-list li a:not(:last-of-type) {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--bz-color-border-1);
}

.sidebar-widget .category-list li a i {
    color: var(--bz-color-theme-primary);
}

.sidebar-widget .category-list li a:hover {
    color: var(--bz-color-theme-primary);
}

.sidebar-widget .category-list li a:hover i {
    color: var(--bz-color-theme-primary);
}

.sidebar-widget .blog-gallery-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr 10px 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 10px;
}

.sidebar-widget .blog-gallery-wrap>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.sidebar-widget .blog-gallery-wrap>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.sidebar-widget .blog-gallery-wrap>*:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}

.sidebar-widget .blog-gallery-wrap>*:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

.sidebar-widget .blog-gallery-wrap>*:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

.sidebar-widget .blog-gallery-wrap>*:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
}

@media (max-width: 1399px) {
    .sidebar-widget .blog-gallery-wrap {
        -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
        grid-template-columns: repeat(3, 1fr);
        -ms-grid-rows: 1fr 10px 1fr 10px 1fr;
        grid-template-rows: repeat(3, 1fr);
    }

    .sidebar-widget .blog-gallery-wrap>*:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .sidebar-widget .blog-gallery-wrap>*:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .sidebar-widget .blog-gallery-wrap>*:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }

    .sidebar-widget .blog-gallery-wrap>*:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .sidebar-widget .blog-gallery-wrap>*:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    .sidebar-widget .blog-gallery-wrap>*:nth-child(6) {
        -ms-grid-row: 3;
        -ms-grid-column: 5;
    }

    .sidebar-widget .blog-gallery-wrap>*:nth-child(7) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .sidebar-widget .blog-gallery-wrap>*:nth-child(8) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }

    .sidebar-widget .blog-gallery-wrap>*:nth-child(9) {
        -ms-grid-row: 5;
        -ms-grid-column: 5;
    }
}

@media only screen and (max-width: 992px) {
    .sidebar-widget .blog-gallery-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        row-gap: 10px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.sidebar-widget .blog-gallery-wrap .gallary-img {
    height: 95px;
    width: 95px;
}

.sidebar-widget .tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
    list-style: none;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    margin: 0;
}

.sidebar-widget .tags li:not(:last-of-type) {
    margin-right: 10px;
}

.sidebar-widget .tags li a {
    background-color: var(--bz-color-common-white);
    font-family: var(--bz-ff-body);
    color: var(--bz-color-heading-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
}

.sidebar-widget .tags li a:hover {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

.sidebar-widget .sidebar-post {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 77px 0px 1fr;
    grid-template-columns: 77px 1fr;
    grid-gap: 0px;
}

.sidebar-widget .sidebar-post:not(:last-of-type) {
    margin-bottom: 20px;
}

.sidebar-widget .sidebar-post img {
    width: 77px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.sidebar-widget .sidebar-post .post-content {
    padding-left: 20px;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content {
        padding-left: 10px;
    }
}

.sidebar-widget .sidebar-post .post-content .post-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 5px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content .post-meta {
        -webkit-column-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px;
    }
}

.sidebar-widget .sidebar-post .post-content .post-meta li {
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content .post-meta li {
        font-size: 13px;
    }
}

.sidebar-widget .sidebar-post .post-content .title {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.4;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content .title {
        font-size: 14px;
    }
}

.sidebar-widget .sidebar-post .post-content .title a:hover {
    color: var(--bz-color-theme-primary);
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
    START: Service Details CSS
----------------------------------------*/
@media only screen and (max-width: 992px) {
    .service-details-content {
        margin-bottom: 50px;
    }
}

.service-details-content .service-details-img {
    height: 488px;
    width: 100%;
    border-radius: 15px;
}

.service-details-content .service-details-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
}

.service-details-content .details-title {
    font-size: 30px;
    font-weight: 600;
}

.service-details-content .service-thumb-wrap {
    background-color: #F3F4F6;
    padding: 30px;
    border-radius: 15px;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 185px 15px 185px 15px 1fr;
    grid-template-columns: 185px 185px 1fr;
    grid-gap: 15px;
}

@media (max-width: 1200px) {
    .service-details-content .service-thumb-wrap {
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .service-details-content .service-thumb-wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

.service-details-content .service-thumb-wrap .service-thumb {
    height: 205px;
    border-radius: 15px;
}

.service-details-content .service-thumb-wrap .thumb-list {
    list-style: none;
}

.service-details-content .service-thumb-wrap .thumb-list li {
    background-color: var(--bz-color-common-white);
    font-family: var(--bz-ff-body);
    color: var(--bz-color-heading-primary);
    padding: 7px 20px;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .service-details-content .service-thumb-wrap .thumb-list li {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .service-details-content .service-thumb-wrap .thumb-list li {
        font-size: 12px;
    }
}

.service-details-content .service-thumb-wrap .thumb-list li:not(:last-of-type) {
    margin-bottom: 15px;
}

.service-details-content .service-thumb-wrap .thumb-list li i {
    color: var(--bz-color-theme-primary);
    margin-right: 10px;
}

.service-details-content .service-thumb-wrap-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 24px;
    margin-top: 30px;
}

.service-details-content .service-thumb-wrap-2 .thumb-box {
    max-width: 385px;
    width: 100%;
    height: 350px;
    border-radius: 15px;
}

.service-details-content .service-thumb-wrap-2 .thumb-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-details-content .service-details-accordion {
    margin-top: 40px;
}

.service-details-content .service-details-accordion .accordion-item {
    -webkit-box-shadow: done;
    box-shadow: done;
    border: none;
    background-color: #EFF1F5;
    border-radius: 10px;
}

.service-details-content .service-details-accordion .accordion-item:not(:last-of-type) {
    margin-bottom: 20px;
}

.service-details-content .service-details-accordion .accordion-item .accordion-button {
    background-color: #EFF1F5;
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 600;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 15px;
    padding: 17px 30px;
}

.service-details-content .service-details-accordion .accordion-item .accordion-button:after {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    content: "\f061";
}

.service-details-content .service-details-accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    border-radius: 15px 15px 0 0;
}

.service-details-content .service-details-accordion .accordion-item .accordion-button:not(.collapsed):after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.service-details-content .service-details-accordion .accordion-item .accordion-body {
    color: var(--bz-color-text-body);
    padding: 30px;
}

.service-widget {
    background-color: #F6F6F6;
    padding: 30px;
    border-radius: 15px;
}

@media only screen and (max-width: 767px) {
    .service-widget {
        padding: 30px 20px;
    }
}

.service-widget:not(:last-of-type) {
    margin-bottom: 30px;
}

.service-widget .widget-header {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-widget .download-area .download-item {
    background-color: var(--bz-color-common-white);
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 45px 15px 1fr;
    grid-template-columns: 45px 1fr;
    grid-gap: 15px;
    padding: 25px 30px;
    border-radius: 15px;
}

@media only screen and (max-width: 767px) {
    .service-widget .download-area .download-item {
        padding: 25px 20px;
    }
}

.service-widget .download-area .download-item:not(:last-of-type) {
    margin-bottom: 10px;
}

.service-widget .download-area .download-item .icon {
    background-color: var(--bz-color-theme-primary);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    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;
}

.service-widget .download-area .download-item .content .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}

.service-widget .download-area .download-item .content span {
    color: var(--bz-color-text-body);
    font-size: 14px;
}

.service-widget .category-list {
    list-style: none;
}

.service-widget .category-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.service-widget .category-list li a {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-heading-primary);
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 25px;
    border-radius: 5px;
}

.service-widget .category-list li a:hover {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

.service-widget .service-widget-cta {
    position: relative;
    z-index: 1;
    height: 404px;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.service-widget .service-widget-cta .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-filter: saturate(0);
    filter: saturate(0);
    z-index: -1;
}

.service-widget .service-widget-cta .overlay {
    background-color: var(--bz-color-theme-primary);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.service-widget .service-widget-cta .shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    mix-blend-mode: multiply;
}

.service-widget .service-widget-cta .content {
    position: absolute;
    left: 50%;
    bottom: 60px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
}

.service-widget .service-widget-cta .content .number {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-widget .service-widget-cta .content span {
    display: block;
    color: var(--bz-color-common-white);
}

.service-widget .service-widget-cta .content .bz-primary-btn {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-theme-primary);
    margin-top: 20px;
}

.service-widget .service-widget-cta .content .bz-primary-btn:before {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

/* !END: Service Details CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-section {
    background-color: #121B2E;
    position: relative;
    z-index: 1;
}

.footer-section .footer-shape {
    position: absolute;
    bottom: 100px;
    left: 0;
    z-index: -1;
}

@media only screen and (max-width: 992px) {
    .footer-section .footer-shape {
        display: none;
    }
}

.footer-section .footer-imgs .footer-img {
    position: absolute;
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    .footer-section .footer-imgs .footer-img {
        display: none;
    }
}

.footer-section .footer-imgs .footer-img.img-1 {
    top: 0;
    right: 120px;
}

.footer-section .footer-imgs .footer-img.img-2 {
    top: 0;
    right: 0;
}

.footer-top {
    padding-bottom: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media only screen and (max-width: 767px) {
    .footer-top {
        padding-bottom: 50px;
    }
}

.footer-top .section-heading {
    margin-bottom: 0;
}

.footer-top .section-heading .section-title {
    margin-bottom: 30px;
}

.footer-top .section-heading .bz-primary-btn {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-heading-primary);
}

.footer-top .section-heading .bz-primary-btn:before {
    background-color: var(--bz-color-theme-primary);
}

.footer-top .section-heading .bz-primary-btn:hover {
    color: var(--bz-color-common-white);
}

.footer-wrap {
    padding: 100px 0;
}

@media only screen and (max-width: 992px) {
    .footer-wrap {
        padding-top: 80px;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 992px) {
    .footer-widget {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-widget {
        margin-bottom: 70px;
    }
}

.footer-widget .widget-header {
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .footer-widget .widget-header {
        margin-bottom: 20px;
    }
}

.footer-widget .widget-header .footer-logo {
    max-width: 170px;
    position: relative;
    font-size: 25px;
    color: var(--bz-color-common-white);
}

.footer-widget .widget-header .footer-logo:before {
    background: -webkit-gradient(linear, left top, right top, from(#345DB4), to(#121B2E));
    background: linear-gradient(90deg, #345DB4 0%, #121B2E 100%);
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.footer-widget .widget-header .widget-title {
    color: var(--bz-color-common-white);
    font-size: 22px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    line-height: 1;
}

.footer-widget .widget-header .widget-title:before {
    background: -webkit-gradient(linear, left top, right top, from(#345DB4), to(#121B2E));
    background: linear-gradient(90deg, #345DB4 0%, #121B2E 100%);
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.footer-widget .widget-header.header-2 .widget-title:before {
    background: -webkit-gradient(linear, right top, left top, from(rgba(236, 40, 28, 0)), color-stop(42.5%, #EC281C));
    background: linear-gradient(270deg, rgba(236, 40, 28, 0) 0%, #EC281C 42.5%);
}

.footer-widget .widget-header.header-2 .footer-logo:before {
    background: -webkit-gradient(linear, right top, left top, from(rgba(236, 40, 28, 0)), color-stop(42.5%, #EC281C));
    background: linear-gradient(270deg, rgba(236, 40, 28, 0) 0%, #EC281C 42.5%);
}

.footer-widget p {
    color: var(--bz-color-common-white);
}

.footer-widget .title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 30px;
    text-transform: uppercase;
}

.footer-widget .title span {
    color: var(--bz-color-text-body);
    display: block;
    margin-top: 10px;
    text-transform: inherit;
    font-weight: 400;
}

.footer-widget .footer-social {
    margin-top: 25px;
}

.footer-widget .footer-social li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.footer-widget .footer-social li:not(:last-of-type) {
    margin-right: 10px;
}

.footer-widget .footer-social li a {
    background-color: var(--bz-color-common-white);
    font-size: 16px;
    color: var(--bz-color-heading-primary);
    height: 45px;
    width: 45px;
    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;
    border-radius: 50%;
}

.footer-widget .footer-social li a:hover {
    color: var(--bz-color-theme-primary);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.footer-widget .footer-list {
    list-style: none;
}

.footer-widget .footer-list li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget .footer-list li a {
    font-family: var(--bz-ff-body);
    color: var(--bz-color-common-white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    padding-left: 30px;
}

@media (max-width: 1200px) {
    .footer-widget .footer-list li a {
        font-size: 16px;
        padding-left: 20px;
    }
}

.footer-widget .footer-list li a:before {
    color: var(--rr-color-common-white);
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    font-weight: 700;
    content: "\f061";
    position: absolute;
    top: 55%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.footer-widget .footer-list li a:hover {
    color: var(--bz-color-theme-primary);
}

.footer-widget .footer-list li a:hover:before {
    color: var(--bz-color-theme-primary);
    left: 5px;
}

@media (max-width: 1200px) {
    .footer-widget .footer-list li a:hover:before {
        left: 0;
    }
}

.footer-widget .footer-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

.footer-widget .footer-form {
    position: relative;
    margin-top: 30px;
}

.footer-widget .footer-form .form-control {
    background-color: #2A364E;
    padding: 15px 125px 15px 15px;
    color: var(--bz-color-common-white);
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 4px;
}

.footer-widget .footer-form .form-control::-webkit-input-placeholder {
    color: var(--bz-color-common-white);
}

.footer-widget .footer-form .form-control:-moz-placeholder {
    color: var(--bz-color-common-white);
}

.footer-widget .footer-form .form-control::-moz-placeholder {
    color: var(--bz-color-common-white);
}

.footer-widget .footer-form .form-control:-ms-input-placeholder {
    color: var(--bz-color-common-white);
}

.footer-widget .footer-form.form-2 .form-control {
    background-color: #1B2029;
}

.footer-widget .footer-form .submit {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    font-size: 16px;
    font-weight: 600;
    padding: 0 20px;
    border-radius: 4px;
}

.footer-widget.widget-space {
    padding-left: 50px;
}

@media only screen and (max-width: 992px) {
    .footer-widget.widget-space {
        padding-left: 0;
    }
}

.copyright-area {
    background-color: #1D2639;
}

.copyright-content {
    padding: 20px 0;
    position: relative;
    z-index: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.copyright-content>div {
    padding: 0;
}

@media (max-width: 1200px) {
    .copyright-content>div {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 992px) {
    .copyright-content {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .copyright-content {
        row-gap: 20px;
    }
}

.copyright-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-family: var(--bz-ff-body);
    margin: 0;
}

.copyright-content p span {
    color: var(--bz-color-theme-primary);
}

@media only screen and (max-width: 767px) {
    .copyright-content p {
        text-align: center;
    }
}

.copyright-content .copy-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    list-style: none;
}

@media only screen and (max-width: 767px) {
    .copyright-content .copy-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.copyright-content .copy-list li a {
    color: var(--bz-color-common-white);
    font-size: 16px;
    font-weight: 400;
}

.copyright-content .copy-list li a:hover {
    color: var(--bz-color-theme-primary);
}

.copyright-content .copy-list li:not(:last-of-type) {
    margin-right: 20px;
}

.footer-2 {
    background-color: #0E1117;
    position: relative;
    z-index: 1;
}

.footer-2 .shapes .shape {
    position: absolute;
    z-index: -1;
}

.footer-2 .shapes .shape.shape-1 {
    top: 0;
    left: 0;
}

.footer-2 .shapes .shape.shape-2 {
    top: 0;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .footer-2 .shapes .shape.shape-2 {
        display: none;
    }
}

.footer-2 .shapes .shape.shape-3 {
    bottom: 50px;
    right: 50px;
}

@media (max-width: 1200px) {
    .footer-2 .shapes .shape.shape-3 {
        display: none;
    }
}

.copyright-area.area-2 {
    background-color: transparent;
}

.copyright-area.area-2 .copyright-content {
    border-top: 1px solid #1F242D;
}

/* index-3 : vague animation (rouge transparent) sur le footer */
.footer-wave--index3 {
    position: relative;
    isolation: isolate;
}

.footer-wave--index3::before,
.footer-wave--index3::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    pointer-events: none;
    z-index: -1;
    background-repeat: repeat-x;
    background-size: 1200px 70px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%201200%20120%27%3E%3Cpath%20d%3D%27M0%2060%20C150%200%20300%20120%20450%2060%20C600%200%20750%20120%20900%2060%20C1050%200%201200%20120%201350%2060%20L1350%20120%20L0%20120%20Z%27%20fill%3D%27%23EC281C%27/%3E%3C/svg%3E");
    animation: footerWaveScroll 11s linear infinite;
    opacity: 0.12;
}

.footer-wave--index3::after {
    top: 22px;
    height: 60px;
    background-size: 1200px 60px;
    animation-duration: 15s;
    opacity: 0.07;
}

@keyframes footerWaveScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -1200px 0;
    }
}

/* !END: Theme Footer CSS */
.about-6 .about-thumg-6 {
    text-align: end;
    margin-right: 50px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .about-6 .about-thumg-6 {
        margin-right: 0;
        max-width: 593px;
    }
}

.about-6 .about-thumg-6 img {
    border-radius: 15px;
}

@media only screen and (max-width: 576px) {
    .about-6 .about-thumg-6 img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.about-6 .about-thumg-6 .image-2 {
    position: absolute;
    bottom: 25px;
    left: 0;
    border: 7px solid #fff;
}

@media only screen and (max-width: 576px) {
    .about-6 .about-thumg-6 .image-2 {
        position: inherit;
        margin-top: 30px;
        bottom: inherit;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.about-6 .about-content {
    padding-left: 0;
    margin-left: -15px;
}

@media only screen and (max-width: 992px) {
    .about-6 .about-content {
        margin-left: 0;
    }
}

.about-6 .about-content .section-heading .sub-heading {
    margin-bottom: 15px;
}

.about-6 .about-content p {
    font-size: 16px;
    font-weight: 400;
    color: #74787C;
    line-height: 26px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-right: 26px;
}

@media (max-width: 1200px) {
    .about-6 .about-content p {
        padding-right: 0px;
    }
}

.about-6 .about-content .about-info-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

@media (max-width: 1200px) {
    .about-6 .about-content .about-info-author {
        gap: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .about-6 .about-content .about-info-author {
        display: block;
    }
}

.about-6 .about-content .about-info-author .about-call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding-right: 40px;
    border-right: 1px solid #E2E4E8;
}

@media (max-width: 1200px) {
    .about-6 .about-content .about-info-author .about-call {
        gap: 15px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .about-6 .about-content .about-info-author .about-call {
        border: none;
        padding-right: 0;
        margin-bottom: 15px;
    }
}

.about-6 .about-content .about-info-author .about-call .about-call-icon {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 1px solid #E2E4E8;
    -webkit-box-shadow: 0px 12px 29px rgba(21, 29, 40, 0.08);
    box-shadow: 0px 12px 29px rgba(21, 29, 40, 0.08);
    color: #1E6EE7;
    font-size: 20px;
    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;
    border-radius: 100px;
}

.about-6 .about-content .about-info-author .about-call .about-call-info span {
    font-size: 14px;
    color: #191F29;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--bz-ff-heading);
}

.about-6 .about-content .about-info-author .about-call .about-call-info a {
    font-size: 24px;
    color: #1E6EE7;
    font-weight: 600;
    line-height: 1;
    font-family: var(--bz-ff-heading);
}

@media (max-width: 1200px) {
    .about-6 .about-content .about-info-author .about-call .about-call-info a {
        font-size: 22px;
    }
}

.about-6 .about-content .about-info-author .about-author-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1200px) {
    .about-6 .about-content .about-info-author .about-author-wrapper {
        gap: 15px;
    }
}

.about-6 .about-content .about-info-author .about-author-wrapper .about-thumb img {
    border-radius: 100px;
}

.about-6 .about-content .about-info-author .about-author-wrapper .position {
    font-size: 14px;
    font-weight: 500;
    color: #8B919C;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--bz-ff-heading);
}

.about-6 .about-content .about-info-author .about-author-wrapper .name {
    font-size: 24px;
    font-weight: 600;
    color: #191F29;
    line-height: 1;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .about-6 .about-content .about-info-author .about-author-wrapper .name {
        font-size: 22px;
    }
}

.about-6 .about-content .about-btn-6 {
    margin-top: 50px;
}

@media only screen and (max-width: 576px) {
    .about-6 .about-content .about-btn-6 {
        margin-top: 35px;
    }
}

.about-6 .about-content .about-btn-6 .bz-primary-btn {
    padding: 19.5px 33.4px;
}

.header-5 .bar-4 {
    background-color: var(--bz-color-heading-primary);
}

.header-5 .header-right-wrap .header-right .sidebar-icon {
    margin-left: 10px;
    background-color: rgba(14, 89, 242, 0.1);
}

.header-5 .header-right-wrap .header-right .sidebar-icon .sidebar-trigger {
    gap: 3px;
}

.header-5 .header-right-wrap .header-right .sidebar-icon .sidebar-trigger span {
    background-color: var(--bz-color-theme-primary);
    width: 14px;
    height: 2px;
}

.header-6 {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.header-6 .top-bar.top-bar-6 {
    background-color: var(--bz-color-heading-primary);
}

.header-6 .top-bar.top-bar-6 .top-bar-inner {
    padding: 12px 0;
}

.header-6 .top-bar.top-bar-6 .top-bar-left span {
    color: var(--bz-color-common-white);
}

.header-6 .top-bar.top-bar-6 .top-bar-right {
    gap: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-6 .top-bar.top-bar-6 .top-bar-right .social-list {
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-6 .top-bar.top-bar-6 .top-bar-right .social-list li {
    color: var(--bz-color-common-white);
}

.header-6 .top-bar-inner {
    border-bottom: none;
}

.header-6 .middle-header.middle-header-6 {
    border-bottom: none;
    background-color: #F4F5F5;
}

.header-6 .middle-header.middle-header-6 .header-items-wrap .header-item {
    grid-gap: 12px;
}

.header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .icon {
    background-color: rgb(234, 240, 248);
    color: var(--bz-color-theme-primary);
    height: 40px;
    width: 40px;
    border-radius: 500px;
    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;
}

.header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .content span {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--bz-ff-body);
}

.header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .content .address,
.header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .content a {
    font-family: var(--bz-ff-body);
    color: var(--bz-color-heading-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 1200px) {

    .header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .content .address,
    .header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .content a {
        font-size: 15px;
    }
}

@media only screen and (max-width: 992px) {

    .header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .content .address,
    .header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .content a {
        font-size: 17px;
    }
}

.header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .content .address:hover,
.header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .content a:hover {
    color: var(--bz-color-theme-primary);
}

.header-6 .middle-header.middle-header-6 .header-items-wrap .header-item .content .address:hover {
    color: var(--bz-color-heading-primary);
}

.header-6 .primary-header {
    width: 100%;
}

.header-6 .primary-header .primary-header-inner {
    background-color: var(--bz-color-common-white);
    border-radius: 0px 0px 15px 15px;
    padding: 0 30px;
}

@media only screen and (max-width: 992px) {
    .header-6 .primary-header .primary-header-inner {
        padding: 10px 30px;
    }
}

.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li a {
    padding: 19.5px 0;
}

.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li ul {
    top: 65px;
}

.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li ul li a {
    padding-left: 30px;
}

.header-6 .primary-header .primary-header-inner .header-right-wrap .header-right .bz-primary-btn {
    text-transform: capitalize;
    border-radius: 100px;
    padding: 14.5px 30px;
}

@media only screen and (max-width: 767px) {
    .header-6 .primary-header .primary-header-inner .header-right-wrap .header-right .bz-primary-btn {
        display: none;
    }
}

.header-6 .primary-header .primary-header-inner .header-right-wrap .header-right .sidebar-icon {
    margin-left: 10px;
    background-color: rgba(14, 89, 242, 0.1);
}

.header-6 .primary-header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger {
    gap: 3px;
}

.header-6 .primary-header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger span {
    background-color: var(--bz-color-theme-primary);
    width: 14px;
    height: 2px;
}

.header-6 .primary-header.fixed {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.header-6 .primary-header.fixed .primary-header-inner {
    -webkit-box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
    box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
}

.header-7 {
    top: 30px;
}

@media only screen and (max-width: 767px) {
    .header-7 {
        top: 0;
    }
}

.header-7 .top-bar.top-bar-7 {
    border-radius: 10px 10px 0px 0px;
    background-color: var(--bz-color-common-white);
    padding: 0px 30px;
    border-bottom: 1px solid rgb(240, 233, 233);
    position: relative;
}

.header-7 .top-bar.top-bar-7::before {
    content: "";
    border-radius: 0px 0px 30px 30px;
    background: var(--bz-color-theme-primary);
    width: 930px;
    height: 5px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
}

@media only screen and (max-width: 992px) {
    .header-7 .top-bar.top-bar-7::before {
        width: 600px;
    }
}

.header-7 .top-bar.top-bar-7 .top-bar-left span {
    font-weight: 500;
    color: var(--bz-color-heading-primary);
}

.header-7 .top-bar.top-bar-7 .top-bar-right span {
    font-weight: 500;
    color: var(--bz-color-heading-primary);
}

.header-7 .top-bar.top-bar-7 .top-bar-right .social-list li {
    color: var(--bz-color-heading-primary);
}

.header-7 .primary-header .primary-header-inner {
    border-radius: 0px 0px 10px 10px;
}

.header-7 .primary-header .primary-header-inner .header-menu-wrap ul li a {
    padding: 42px 0;
}

.header-7 .primary-header .primary-header-inner .header-menu-wrap ul li ul {
    top: 110px;
}

.header-7 .primary-header .primary-header-inner .header-menu-wrap ul li ul li a {
    padding: 17px 0;
    padding-left: 30px;
}

.header-7 .primary-header .primary-header-inner .header-right-wrap .header-right .bz-primary-btn {
    border-radius: 100px;
    padding: 17px 31px;
}

@media only screen and (max-width: 767px) {
    .header-7 .primary-header .primary-header-inner .header-right-wrap .header-right .bz-primary-btn {
        display: none;
    }
}

.header-7 .primary-header .primary-header-inner .header-right-wrap .header-right .sidebar-icon {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    background-color: rgba(14, 89, 242, 0.1);
}

.header-7 .primary-header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger {
    gap: 3px;
}

.header-7 .primary-header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger span {
    background-color: var(--bz-color-theme-primary);
    width: 14px;
    height: 2px;
}

.footer-4 {
    background-color: #191F29;
}

.footer-4 .shape-1 {
    left: 0;
    top: 0px;
    position: absolute;
}

.footer-4 .shape-1 img {
    vertical-align: top;
}

.footer-4 .shape-2 {
    left: 0;
    top: 0px;
    position: absolute;
}

.footer-4 .shape-2 img {
    vertical-align: top;
}

.footer-4 .footer-widget .footer-logo::before {
    bottom: -40px;
}

.footer-4 .footer-widget .widget-title::before {
    bottom: -18px;
}

.footer-4 .footer-list li a {
    font-size: 16px;
}

.footer-4 .footer-list li:not(:last-of-type) {
    margin-bottom: 11px;
}

.footer-4 .footer-form.form-4 .form-control {
    background-color: #292F3D;
}

.footer-4 .footer-social li a:hover {
    background: var(--bz-color-theme-primary);
    color: #fff;
}

.footer-wrap-4 {
    padding: 165px 0px 80px;
}

@media (max-width: 1200px) {
    .footer-wrap-4 {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 992px) {
    .footer-wrap-4 {
        padding-top: 80px;
        padding-bottom: 0;
    }
}

.copyright-area.area-4 .copyright-content {
    border-radius: 5px;
    background-color: #242B38;
    padding: 20px 30px;
}

.footer-5 {
    background-color: transparent;
}

.footer-5 .footer-5-wrapper {
    background-color: #F6F6F6;
    margin: 0px 150px;
    border-radius: 30px;
}

@media (max-width: 1399px) {
    .footer-5 .footer-5-wrapper {
        margin: 0px 50px;
    }
}

@media (max-width: 1200px) {
    .footer-5 .footer-5-wrapper {
        margin: 0;
    }
}

.footer-5 .footer-wrap-4 {
    padding: 130px 0px 60px;
}

@media only screen and (max-width: 992px) {
    .footer-5 .footer-wrap-4 {
        padding: 100px 0px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-5 .footer-wrap-4 {
        padding: 70px 0px 20px;
    }
}

.footer-5 .widget-content h3 span {
    font-weight: 300;
}

.footer-5 .widget-content .bz-primary-btn {
    border-radius: 100px;
    padding: 19.5px 35px;
    text-transform: capitalize;
}

.footer-5 .footer-widget-2 {
    padding-left: 50px;
}

@media (max-width: 1399px) {
    .footer-5 .footer-widget-2 {
        padding-left: 0;
    }
}

.footer-5 p {
    font-size: 15px;
    color: var(--bz-color-text-body);
}

.footer-5 .footer-widget .widget-header.header-5 {
    margin-bottom: 30px;
}

.footer-5 .footer-widget .widget-header.header-5 .widget-title {
    margin-bottom: 14px;
    color: var(--bz-color-heading-primary);
}

.footer-5 .footer-widget .widget-header.header-5 .widget-title:before {
    display: none;
}

.footer-5 .footer-widget .widget-header.header-5 .widget-title-line {
    line-height: 0;
}

.footer-5 .footer-widget .widget-header.header-5 .widget-title-line span {
    width: 6px;
    height: 3px;
    display: inline-block;
    background: var(--bz-color-theme-primary);
}

.footer-5 .footer-widget .footer-list {
    list-style: none;
}

.footer-5 .footer-widget .footer-list li a {
    font-family: var(--bz-ff-body);
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    padding-left: 30px;
}

@media (max-width: 1200px) {
    .footer-5 .footer-widget .footer-list li a {
        font-size: 16px;
        padding-left: 20px;
    }
}

.footer-5 .footer-widget .footer-list li a:before {
    color: var(--rr-color-common-white);
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    font-weight: 700;
    content: "\f101";
    position: absolute;
    top: 55%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.footer-5 .footer-widget .footer-list li a:hover {
    color: var(--bz-color-theme-primary);
}

.footer-5 .footer-widget .footer-list li a:hover:before {
    color: var(--bz-color-theme-primary);
    left: 5px;
}

@media (max-width: 1200px) {
    .footer-5 .footer-widget .footer-list li a:hover:before {
        left: 0;
    }
}

.footer-5 .footer-widget .footer-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

.footer-5 .footer-widget .footer-contact .footer-contact-item {
    grid-gap: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-5 .footer-widget .footer-contact .footer-contact-item:not(:last-of-type) {
    margin-bottom: 30px;
}

.footer-5 .footer-widget .footer-contact .footer-contact-item .icon {
    background: #d80808;
    -webkit-box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
    box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
    color: var(--bz-color-theme-primary);
    height: 35px;
    width: 35px;
    min-width: 35px;
    border-radius: 500px;
    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;
    font-size: 14px;
}

.footer-5 .footer-widget .footer-contact .footer-contact-item .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer-5 .footer-widget .footer-contact .footer-contact-item .content span {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    font-family: var(--bz-ff-body);
}

.footer-5 .footer-widget .footer-contact .footer-contact-item .content .address,
.footer-5 .footer-widget .footer-contact .footer-contact-item .content a {
    font-family: var(--bz-ff-body);
    color: var(--bz-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

@media (max-width: 1200px) {

    .footer-5 .footer-widget .footer-contact .footer-contact-item .content .address,
    .footer-5 .footer-widget .footer-contact .footer-contact-item .content a {
        font-size: 15px;
    }
}

@media only screen and (max-width: 992px) {

    .footer-5 .footer-widget .footer-contact .footer-contact-item .content .address,
    .footer-5 .footer-widget .footer-contact .footer-contact-item .content a {
        font-size: 17px;
        line-height: 1.3;
    }
}

.footer-5 .footer-widget .footer-contact .footer-contact-item .content .address:hover,
.footer-5 .footer-widget .footer-contact .footer-contact-item .content a:hover {
    color: var(--bz-color-theme-primary);
}

.footer-5 .footer-widget .footer-contact .footer-contact-item .content .address:hover {
    color: var(--bz-color-heading-primary);
}

.copyright-area.area-5 {
    background-color: transparent;
}

.copyright-area.area-5 .copyright-content {
    padding: 46px 0;
}

.copyright-area.area-5 .copyright-content p {
    color: var(--bz-color-heading-primary);
}

.copyright-area.area-5 .copyright-content .copy-list li a {
    color: var(--bz-color-heading-primary);
}

.copyright-area.area-5 .copyright-content .copy-list li a:hover {
    color: var(--bz-color-theme-primary);
}

.footer-6 {
    background-color: #171717;
    padding-top: 100px;
}

.footer-6 .footer-6-top-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px 40px;
    gap: 10px;
    margin: 0px 50px;
    border: 1px solid rgb(38, 40, 47);
}

@media (max-width: 1200px) {
    .footer-6 .footer-6-top-wrapper {
        margin: 0;
        padding: 0px 20px;
    }
}

@media only screen and (max-width: 992px) {
    .footer-6 .footer-6-top-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer-6 .footer-6-top-wrapper .footer-contact-item {
    grid-gap: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 21px 0;
}

@media (max-width: 1200px) {
    .footer-6 .footer-6-top-wrapper .footer-contact-item {
        gap: 10px;
    }
}

.footer-6 .footer-6-top-wrapper .footer-contact-item:not(:last-of-type) {
    padding-right: 47px;
    border-right: 1px solid rgb(38, 40, 47);
}

@media (max-width: 1200px) {
    .footer-6 .footer-6-top-wrapper .footer-contact-item:not(:last-of-type) {
        padding-right: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .footer-6 .footer-6-top-wrapper .footer-contact-item:not(:last-of-type) {
        border-right: none;
    }
}

.footer-6 .footer-6-top-wrapper .footer-contact-item .icon {
    background: rgb(43, 43, 43);
    -webkit-box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
    box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
    color: var(--bz-color-common-white);
    height: 50px;
    width: 50px;
    min-width: 50px;
    border-radius: 500px;
    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;
    font-size: 16px;
}

.footer-6 .footer-6-top-wrapper .footer-contact-item .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer-6 .footer-6-top-wrapper .footer-contact-item .content span {
    font-size: 14px;
    font-weight: 500;
    color: #838790;
    margin-bottom: 5px;
    font-family: var(--bz-ff-body);
}

.footer-6 .footer-6-top-wrapper .footer-contact-item .content .address,
.footer-6 .footer-6-top-wrapper .footer-contact-item .content a {
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 1200px) {

    .footer-6 .footer-6-top-wrapper .footer-contact-item .content .address,
    .footer-6 .footer-6-top-wrapper .footer-contact-item .content a {
        font-size: 15px;
    }
}

@media only screen and (max-width: 992px) {

    .footer-6 .footer-6-top-wrapper .footer-contact-item .content .address,
    .footer-6 .footer-6-top-wrapper .footer-contact-item .content a {
        font-size: 17px;
    }
}

.footer-6 .footer-6-top-wrapper .footer-contact-item .content .address:hover,
.footer-6 .footer-6-top-wrapper .footer-contact-item .content a:hover {
    color: var(--bz-color-theme-primary);
}

.footer-6 .footer-6-top-wrapper .footer-contact-item .content .address:hover {
    color: var(--bz-color-common-white);
}

.footer-6 .footer-wrap-6 {
    padding: 78px 50px;
}

@media (max-width: 1200px) {
    .footer-6 .footer-wrap-6 {
        padding: 78px 0px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-6 .footer-wrap-6 {
        padding: 50px 0px 0px;
    }
}

.footer-6 .widget-content h3 span {
    font-weight: 300;
}

.footer-6 .widget-content .bz-primary-btn {
    border-radius: 100px;
    padding: 19.5px 35px;
    text-transform: capitalize;
}

.footer-6 .footer-widget-2 {
    padding-left: 50px;
}

@media (max-width: 1399px) {
    .footer-6 .footer-widget-2 {
        padding-left: 0;
    }
}

.footer-6 p {
    color: #838790;
}

.footer-6 .footer-widget.footer-widget-1 {
    max-width: 298px;
}

@media (max-width: 1200px) {
    .footer-6 .footer-widget.footer-widget-1 {
        max-width: 100%;
    }
}

.footer-6 .footer-widget.footer-widget-2 {
    padding-left: 9px;
}

@media (max-width: 1200px) {
    .footer-6 .footer-widget.footer-widget-2 {
        padding-left: 0;
    }
}

.footer-6 .footer-widget.footer-widget-3 {
    padding-left: 9px;
}

@media (max-width: 1200px) {
    .footer-6 .footer-widget.footer-widget-3 {
        padding-left: 0;
    }
}

@media only screen and (max-width: 992px) {
    .footer-6 .footer-widget.footer-widget-3 {
        margin-left: -26px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-6 .footer-widget.footer-widget-3 {
        margin-left: 0;
    }
}

@media only screen and (max-width: 992px) {
    .footer-6 .footer-widget.footer-widget-4 {
        margin-left: -26px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-6 .footer-widget.footer-widget-4 {
        margin-left: 0;
    }
}

.footer-6 .footer-widget .widget-header.header-5 {
    margin-bottom: 23px;
}

.footer-6 .footer-widget .widget-header.header-5 .widget-title {
    margin-bottom: 14px;
    font-size: 20px;
    color: var(--bz-color-common-white);
}

.footer-6 .footer-widget .widget-header.header-5 .widget-title:before {
    display: none;
}

.footer-6 .footer-widget .widget-header.header-5 .widget-title-line {
    line-height: 0;
}

.footer-6 .footer-widget .widget-header.header-5 .widget-title-line span {
    width: 40px;
    height: 2px;
    display: inline-block;
    position: relative;
    background: var(--bz-color-theme-primary);
}

.footer-6 .footer-widget .widget-header.header-5 .widget-title-line span::before {
    content: "";
    width: 10px;
    height: 2px;
    background: var(--bz-color-theme-primary);
    position: absolute;
    left: 43px;
}

.footer-6 .footer-widget .widget-header.header-5 .widget-title-line span::after {
    content: "";
    width: 5px;
    height: 2px;
    background: var(--bz-color-theme-primary);
    position: absolute;
    left: 56px;
}

.footer-6 .footer-widget .footer-list {
    list-style: none;
}

.footer-6 .footer-widget .footer-list li a {
    font-family: var(--bz-ff-body);
    color: #838790;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    padding-left: 30px;
}

@media (max-width: 1200px) {
    .footer-6 .footer-widget .footer-list li a {
        font-size: 16px;
        padding-left: 20px;
    }
}

.footer-6 .footer-widget .footer-list li a:before {
    color: var(--rr-color-common-white);
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    font-weight: 700;
    content: "\f356";
    position: absolute;
    top: 55%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.footer-6 .footer-widget .footer-list li a:hover {
    color: var(--bz-color-theme-primary);
}

.footer-6 .footer-widget .footer-list li a:hover:before {
    color: var(--bz-color-theme-primary);
    left: 5px;
}

@media (max-width: 1200px) {
    .footer-6 .footer-widget .footer-list li a:hover:before {
        left: 0;
    }
}

.footer-6 .footer-widget .footer-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.footer-6 .footer-post .footer-post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-6 .footer-post .footer-post-item:not(:last-of-type) {
    margin-bottom: 10px;
}

.footer-6 .footer-post .footer-post-item .footer-post-media {
    width: 75px;
    height: 75px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .footer-6 .footer-post .footer-post-item .footer-post-media {
        width: 50px;
        height: 50px;
    }
}

.footer-6 .footer-post .footer-post-item .footer-post-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-6 .footer-post .footer-post-item .footer-post-media img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.footer-6 .footer-post .footer-post-item .footer-post-text span {
    color: #838790;
    font-size: 14px;
}

.footer-6 .footer-post .footer-post-item .footer-post-text h6 a {
    color: var(--bz-color-common-white);
    font-size: 18px;
    font-weight: 600;
}

.footer-6 .footer-post .footer-post-item .footer-post-text h6 a:hover {
    color: var(--bz-color-theme-primary);
}

.footer-6 .footer-post .footer-post-item .footer-post-text .read-more {
    font-size: 14px;
    color: var(--bz-color-theme-primary);
}

.footer-6 .footer-post .footer-post-item .footer-post-text .read-more:hover {
    color: var(--bz-color-common-white);
}

.footer-6 .footer-social li a {
    background-color: rgb(34, 34, 36);
    width: 40px;
    height: 40px;
    color: var(--bz-color-common-white);
}

.footer-6 .footer-social li a:hover {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
}

.copyright-area.area-6 {
    background-color: transparent;
}

.copyright-area.area-6 .copyright-content {
    padding: 15px 0;
    margin: 0px 50px;
    border-radius: 30px 30px 0px 0px;
    border: 1px solid #26282F;
}

@media only screen and (max-width: 767px) {
    .copyright-area.area-6 .copyright-content {
        margin: 0;
    }
}

.copyright-area.area-6 .copyright-content p {
    color: #6F7279;
}

.services-section.services-4 {
    background: #191F29;
    border-radius: 15px;
    margin: 0 120px;
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .services-section.services-4 {
        margin: 0 50px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1200px) {
    .services-section.services-4 {
        margin: 0 0px;
        margin-bottom: 30px;
    }
}

.services-section.services-4 .services-item-4 {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .services-section.services-4 .services-item-4 {
        padding: 29px;
    }
}

@media only screen and (max-width: 767px) {
    .services-section.services-4 .services-item-4 {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 992px) {
    .services-section.services-4 .services-item-4 {
        margin-bottom: 30px;
    }
}

.services-section.services-4 .services-item-4:hover .services-bg-shape {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

.services-section.services-4 .services-item-4 .services-icon {
    width: 110px;
    height: 110px;
    background: #F0F4FA;
    border-radius: 500px;
    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;
}

@media only screen and (max-width: 767px) {
    .services-section.services-4 .services-item-4 .services-icon {
        width: 90px;
        height: 90px;
    }
}

.services-section.services-4 .services-item-4 .services-content p {
    font-size: 16px;
    font-weight: 400;
    color: #74787C;
    line-height: 26px;
    margin-bottom: 22px;
    font-family: var(--bz-ff-p);
}

.services-section.services-4 .services-item-4 .services-content .title {
    font-size: 24px;
    color: #191F29;
    font-weight: 600;
    line-height: 1;
    margin-top: 36px;
    margin-bottom: 15px;
    font-family: var(--bz-ff-heading);
}

@media only screen and (max-width: 767px) {
    .services-section.services-4 .services-item-4 .services-content .title {
        font-size: 20px;
    }
}

.services-section.services-4 .services-bg-shape {
    width: 179px;
    height: 179px;
    background: #1E6EE7;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    position: absolute;
    top: -100%;
    left: -7px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bz-primary-btn.bz-primary-btn-4 {
    background: #F0F4FA;
    color: var(--bz-color-theme-primary);
    text-transform: capitalize;
    font-weight: 600;
    padding: 14.5px 27.3px;
}

.bz-primary-btn.bz-primary-btn-4 i {
    font-weight: 600;
}

.bz-primary-btn.bz-primary-btn-4::before {
    background: var(--bz-color-theme-primary);
}

.bz-primary-btn.bz-primary-btn-4:hover {
    color: var(--bz-color-common-white);
}

.section-heading-4 .sub-heading {
    margin-bottom: 15px;
    padding: 0;
}

.section-heading-4 .section-title {
    font-size: 44px;
}

@media only screen and (max-width: 767px) {
    .section-heading-4 .section-title {
        font-size: 32px;
    }

    .section-heading-4 .section-title br {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    .about-4 {
        padding-top: 60px;
    }
}

.about-4 .about-thumg-4 {
    position: relative;
    text-align: end;
    margin-right: 37px;
}

@media (max-width: 1200px) {
    .about-4 .about-thumg-4 {
        margin-right: 0px;
    }
}

@media only screen and (max-width: 992px) {
    .about-4 .about-thumg-4 {
        max-width: 700px;
    }
}

@media only screen and (max-width: 576px) {
    .about-4 .about-thumg-4 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.about-4 .about-thumg-4 img {
    border-radius: 15px;
    -webkit-filter: drop-shadow(0px 12px 48px rgba(32, 39, 55, 0.22));
    filter: drop-shadow(0px 12px 48px rgba(32, 39, 55, 0.22));
}

.about-4 .about-thumg-4 img.image-2 {
    border: 4px solid #fff;
    position: absolute;
    left: 0;
    top: -71px;
}

@media only screen and (max-width: 576px) {
    .about-4 .about-thumg-4 img.image-2 {
        position: inherit;
        margin-top: 30px;
        top: inherit;
    }
}

.about-4 .about-content {
    padding-left: 0;
}

@media only screen and (max-width: 992px) {
    .about-4 .about-content {
        margin-top: 30px;
    }
}

.about-4 .about-content p {
    font-size: 18px;
    color: #74787C;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0px;
}

.about-4 .about-content .about-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    margin-top: 25px;
}

@media only screen and (max-width: 576px) {
    .about-4 .about-content .about-info {
        display: block;
    }
}

.about-4 .about-content .about-info h3 {
    font-size: 18px;
    color: #191F29;
    font-weight: 600;
    line-height: 28px;
    padding-left: 20px;
    position: relative;
}

.about-4 .about-content .about-info h3::before {
    content: "";
    width: 1px;
    height: 35px;
    background: #D9D9D9;
    position: absolute;
    top: 11px;
    left: 0;
}

@media only screen and (max-width: 767px) {
    .about-4 .about-content .about-info h3::before {
        top: 0;
    }
}

@media only screen and (max-width: 576px) {
    .about-4 .about-content .about-info h3 {
        padding-left: 0;
    }

    .about-4 .about-content .about-info h3::before {
        display: none;
    }
}

.about-4 .about-content .about-info .about-info-count h2 {
    font-size: 48px;
    color: #191F29;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.about-4 .about-content .about-info .about-info-count .odometer.odometer-auto-theme,
.about-4 .about-content .about-info .about-info-count .odometer.odometer-theme-default {
    font-family: var(--bz-ff-heading);
}

.about-4 .about-content .about-info .about-info-count .odometer.odometer-auto-theme .odometer-formatting-mark,
.about-4 .about-content .about-info .about-info-count .odometer.odometer-theme-default .odometer-formatting-mark {
    display: none;
}

.about-4 .about-content .about-btn-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

@media only screen and (max-width: 576px) {
    .about-4 .about-content .about-btn-4 {
        display: block;
    }
}

.about-4 .about-content .about-btn-4 .bz-primary-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 20.5px 31px;
}

@media only screen and (max-width: 576px) {
    .about-4 .about-content .about-btn-4 .bz-primary-btn {
        margin-bottom: 15px;
    }
}

.about-4 .about-content .about-btn-4 .bz-primary-btn.bz-primary-btn-4 {
    padding: 19.5px 28.3px;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    -webkit-box-shadow: 0px 14px 70px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 14px 70px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-4 .section-heading-4 {
    margin-bottom: 25px;
}

@media (max-width: 1200px) {
    .about-4 .section-heading-4 .section-title br {
        display: none;
    }
}

.blog-4 .post-card {
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0px 20px 58px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 20px 58px rgba(0, 0, 0, 0.09);
    border-bottom: solid #0E59F2;
    border-width: 0px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

@media only screen and (max-width: 992px) {
    .blog-4 .post-card {
        margin-bottom: 30px;
    }
}

.blog-4 .post-card .post-thumb {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-4 .post-card .post-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.blog-4 .post-card .post-content-wrap {
    background: #fff;
    padding: 22px 30px;
}

@media only screen and (max-width: 992px) {
    .blog-4 .post-card .post-content-wrap {
        padding: 22px 20px;
    }
}

.blog-4 .post-card .post-content {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.blog-4 .post-card .post-content .title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 13px;
}

@media only screen and (max-width: 992px) {
    .blog-4 .post-card .post-content .title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-4 .post-card .post-content .title {
        font-size: 18px;
    }
}

.blog-4 .post-card .post-content .title a {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--bz-color-theme-primary)), color-stop(98%, var(--bz-color-theme-primary)));
    background: linear-gradient(var(--bz-color-theme-primary) 0%, var(--bz-color-theme-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-4 .post-card .post-content .title a:hover {
    color: var(--bz-color-theme-primary);
    background-size: 100% 2px;
}

.blog-4 .post-card .read-more {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--bz-color-theme-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-4 .post-card .read-more i {
    font-size: 14px;
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-4 .post-card .read-more:hover i {
    margin-left: 8px;
}

.blog-4 .post-card:hover {
    border-width: 4px;
}

.blog-4 .post-card:hover .post-thumb img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.blog-4 .post-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 12px;
}

.blog-4 .post-meta li,
.blog-4 .post-meta a {
    font-family: var(--bz-ff-body);
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
}

.blog-4 .post-meta li i,
.blog-4 .post-meta a i {
    font-size: 16px;
    color: var(--bz-color-theme-primary);
}

.blog-4 .post-meta li:not(:last-of-type),
.blog-4 .post-meta a:not(:last-of-type) {
    margin-right: 20px;
}

@media only screen and (max-width: 767px) {

    .blog-4 .post-meta li,
    .blog-4 .post-meta a {
        font-size: 12px;
    }
}

.blog-4 .post-meta li a:hover {
    color: var(--bz-color-theme-primary);
}

.blog-6 .post-card {
    border-radius: 12px;
    overflow: hidden;
}

.blog-6 .post-card .post-thumb {
    position: relative;
    height: 255px;
    overflow: hidden;
}

.blog-6 .post-card .post-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.blog-6 .post-card .post-content-wrap {
    background: var(--bz-color-grey-4);
    padding: 34px 40px;
}

@media (max-width: 1200px) {
    .blog-6 .post-card .post-content-wrap {
        padding: 34px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-6 .post-card .post-content-wrap {
        padding: 30px 20px;
    }
}

.blog-6 .post-card .post-content {
    margin-bottom: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid #DDDEE1;
}

.blog-6 .post-card .post-content .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .blog-6 .post-card .post-content .title {
        font-size: 18px;
    }
}

.blog-6 .post-card .post-content .title a {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--bz-color-theme-primary)), color-stop(98%, var(--bz-color-theme-primary)));
    background: linear-gradient(var(--bz-color-theme-primary) 0%, var(--bz-color-theme-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-6 .post-card .post-content .title a:hover {
    color: var(--bz-color-theme-primary);
    background-size: 100% 2px;
}

.blog-6 .post-card .post-content .post-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 10px;
}

.blog-6 .post-card .post-content .post-meta li {
    font-family: var(--bz-ff-body);
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.blog-6 .post-card .post-content .post-meta li i {
    font-size: 15px;
    color: var(--bz-color-theme-primary);
}

.blog-6 .post-card .post-content .post-meta li:not(:last-of-type) {
    margin-right: 20px;
}

.blog-6 .post-card .post-content .post-meta li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.blog-6 .post-card .post-content .post-meta li a:hover {
    color: var(--bz-color-theme-primary);
}

@media only screen and (max-width: 767px) {
    .blog-6 .post-card .post-content .post-meta li {
        font-size: 12px;
    }
}

.blog-6 .post-card .read-more {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bz-color-theme-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-6 .post-card .read-more i {
    font-size: 14px;
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-6 .post-card .read-more:hover i {
    margin-left: 8px;
}

.blog-6 .post-card:hover .post-thumb img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.testimonial-4 {
    background: #F6F6F6;
    margin: 0 120px;
    border-radius: 30px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 81%, 50% 100%, 0 81%);
}

@media (max-width: 1399px) {
    .testimonial-4 {
        margin: 0 50px;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 100%, 0 100%);
    }
}

@media (max-width: 1200px) {
    .testimonial-4 {
        margin: 0 0px;
    }
}

.testimonial-4 .testimonial-wrapper {
    padding: 40px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 14px 70px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 14px 70px rgba(0, 0, 0, 0.04);
    border-radius: 15px;
}

@media only screen and (max-width: 992px) {
    .testimonial-4 .testimonial-wrapper {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-4 .testimonial-wrapper {
        padding: 20px 10px;
    }
}

@media only screen and (max-width: 576px) {
    .testimonial-4 .testimonial-wrapper {
        padding: 30px 20px;
    }
}

.testimonial-4 .testimonial-wrapper .testimonial-dec {
    font-size: 18px;
    font-weight: 400;
    color: #74787C;
    line-height: 30px;
    margin-top: 17px;
    margin-bottom: 34px;
    padding-bottom: 29px;
    border-bottom: 1px solid #F1F1F1;
    font-family: var(--bz-ff-p);
}

@media only screen and (max-width: 576px) {
    .testimonial-4 .testimonial-wrapper .testimonial-dec {
        font-size: 16px;
    }
}

.testimonial-4 .testimonial-wrapper .testimonial-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.testimonial-4 .testimonial-wrapper .testimonial-author .testimonial-author-thumb {
    width: 70px;
    height: 70px;
}

@media only screen and (max-width: 767px) {
    .testimonial-4 .testimonial-wrapper .testimonial-author .testimonial-author-thumb {
        width: 60px;
        height: 60px;
    }
}

.testimonial-4 .testimonial-wrapper .testimonial-author .testimonial-author-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100px;
}

.testimonial-4 .testimonial-wrapper .testimonial-author .testimonial-author-text h2 {
    font-size: 20px;
    color: #191F29;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
    font-family: var(--bz-ff-p);
}

@media only screen and (max-width: 767px) {
    .testimonial-4 .testimonial-wrapper .testimonial-author .testimonial-author-text h2 {
        font-size: 16px;
    }
}

.testimonial-4 .testimonial-wrapper .testimonial-author .testimonial-author-text span {
    font-size: 14px;
    color: #1E6EE7;
    font-weight: 500;
    line-height: 1;
    font-family: var(--bz-ff-p);
}

.testimonial-4 .testimonial-4__pagination {
    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;
    gap: 26px;
    margin-top: 43px;
    margin-bottom: 9px;
}

.testimonial-4 .testimonial-4__pagination .swiper-pagination-bullet {
    width: 8.33px;
    height: 8.33px;
    background: #CFCFCF;
    border-radius: 100px;
    opacity: 1;
    outline-offset: 6px;
    margin: 0 !important;
}

.testimonial-4 .testimonial-4__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #1E6EE7;
    outline: 2px solid #1E6EE7;
    opacity: 1;
}

.client-testimonial .mySwiper2 {
    margin-bottom: 30px;
    background: #FFF;
    border-radius: 15px;
    border: 1px solid #F2EEEE;
    -webkit-box-shadow: 0px 15px 47px 0px rgba(21, 28, 41, 0.09);
    box-shadow: 0px 15px 47px 0px rgba(21, 28, 41, 0.09);
}

.client-testimonial .client-testimonial__slider-nav__item .media {
    width: 123px;
    height: 123px;
    overflow: hidden;
    border-radius: 10px;
    border: 3px solid var(--bz-color-common-white);
}

.client-testimonial .client-testimonial__slider-nav__item .media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.client-testimonial .client-testimonial__slider-content__author {
    padding: 50px;
    gap: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .client-testimonial .client-testimonial__slider-content__author {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 992px) {
    .client-testimonial .client-testimonial__slider-content__author {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
}

.client-testimonial .client-testimonial__slider-content__media {
    width: 252px;
    height: 252px;
    min-width: 252px;
    border-radius: 20px;
    overflow: hidden;
}

.client-testimonial .client-testimonial__slider-content__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.client-testimonial .client-testimonial__slider-content__text p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .client-testimonial .client-testimonial__slider-content__text p {
        font-size: 18px;
    }
}

.client-testimonial .client-testimonial__slider-content__text h6 {
    font-size: 24px;
    font-family: var(--bz-color-text-body);
    margin-bottom: 0px;
}

.client-testimonial .client-testimonial__slider-content__text .rating {
    gap: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 57px;
    bottom: 89px;
}

@media only screen and (max-width: 767px) {
    .client-testimonial .client-testimonial__slider-content__text .rating {
        position: inherit;
        margin-top: 30px;
    }
}

.client-testimonial .client-testimonial__slider-content__text .rating i {
    color: var(--bz-color-theme-primary);
}

@media only screen and (max-width: 767px) {
    .client-testimonial .mySwiperDesktop {
        display: none;
    }
}

.client-testimonial .mySwiperDesktop .client-testimonial__thumb {
    width: 123px;
    height: 123px;
    min-width: 123px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
}

.client-testimonial .mySwiperDesktop .client-testimonial__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.client-testimonial .client-testimonial__thumb-wrapper {
    position: relative;
}

.client-testimonial .client-testimonial__thumb-wrapper .swiper-button-next {
    right: -80px;
}

.client-testimonial .client-testimonial__thumb-wrapper .swiper-button-prev {
    left: -80px;
}

.client-testimonial .client-testimonial__thumb-wrapper .swiper-button-next,
.client-testimonial .client-testimonial__thumb-wrapper .swiper-button-prev {
    width: 60px;
    height: 60px;
    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;
    border-radius: 500px;
    border: 2px solid #EFEFEF;
    color: var(--bz-color-theme-primary);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media (max-width: 1600px) {

    .client-testimonial .client-testimonial__thumb-wrapper .swiper-button-next,
    .client-testimonial .client-testimonial__thumb-wrapper .swiper-button-prev {
        display: none;
    }
}

.client-testimonial .client-testimonial__thumb-wrapper .swiper-button-next:hover,
.client-testimonial .client-testimonial__thumb-wrapper .swiper-button-prev:hover {
    background-color: var(--bz-color-theme-primary);
    color: var(--bz-color-common-white);
    border-color: transparent;
}

.client-testimonial .client-testimonial__thumb-wrapper .swiper-button-next::after,
.client-testimonial .client-testimonial__thumb-wrapper .swiper-button-prev::after {
    display: none;
}

.client-testimonial .swiper-slide-thumb-active .client-testimonial__thumb {
    border-color: var(--bz-color-theme-primary);
}

@media (min-width: 768px) {
    .client-testimonial .mySwiper {
        display: none;
    }
}

.project-4 {
    background: -webkit-gradient(linear, left top, left bottom, from(#DAE8FF), to(#EDF0F5));
    background: linear-gradient(180deg, #DAE8FF 0%, #EDF0F5 100%);
    border-radius: 15px;
    margin: 0 120px;
    margin-bottom: 30px;
    position: relative;
}

@media (max-width: 1399px) {
    .project-4 {
        margin: 0 50px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1200px) {
    .project-4 {
        margin: 0 0px;
        margin-bottom: 30px;
    }
}

.project-4 .project-item {
    position: relative;
}

@media only screen and (max-width: 576px) {
    .project-4 .project-item {
        margin-bottom: 30px;
    }
}

.project-4 .project-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

.project-4 .project-item::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10.24%, #1E6EE7), to(rgba(17, 62, 129, 0.57)));
    background: linear-gradient(360deg, #1E6EE7 10.24%, rgba(17, 62, 129, 0.57) 100%);
    border-radius: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.project-4 .project-item:hover::before {
    opacity: 1;
    visibility: visible;
}

.project-4 .project-item:hover .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .project-4 .project-item:hover .project-content {
        bottom: 20px;
    }
}

.project-4 .project-item:hover .project-thumb div {
    opacity: 1;
    visibility: visible;
    top: 40px;
}

@media only screen and (max-width: 767px) {
    .project-4 .project-item:hover .project-thumb div {
        top: 20px;
    }
}

.project-4 .project-item .project-content {
    position: absolute;
    bottom: 0px;
    left: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (max-width: 767px) {
    .project-4 .project-item .project-content {
        left: 20px;
    }
}

.project-4 .project-item .project-content span {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 12px;
    display: inline-block;
    font-family: var(--bz-ff-heading);
}

.project-4 .project-item .project-content .title {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}

@media only screen and (max-width: 992px) {
    .project-4 .project-item .project-content .title {
        font-size: 22px;
    }
}

.project-4 .project-item .project-thumb div {
    position: absolute;
    top: 0px;
    right: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (max-width: 767px) {
    .project-4 .project-item .project-thumb div {
        right: 20px;
    }
}

.project-4 .project-item .project-thumb div a {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #1E6EE7;
    border-radius: 500px;
    text-align: center;
    line-height: 60px;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .project-4 .project-item .project-thumb div a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

.project-4 .project-bg-text h2 {
    font-size: 180px;
    color: #F5F9FF;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    position: absolute;
    right: 86px;
    top: 120px;
}

@media (max-width: 1399px) {
    .project-4 .project-bg-text h2 {
        font-size: 120px;
        right: 30px;
        top: 165px;
    }
}

@media (max-width: 1200px) {
    .project-4 .project-bg-text h2 {
        font-size: 100px;
        top: 183px;
    }
}

@media only screen and (max-width: 992px) {
    .project-4 .project-bg-text h2 {
        display: none;
    }
}

.appointment-form-4 {
    background: #EBF3FF;
    border-radius: 15px;
    margin: 0 120px;
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .appointment-form-4 {
        margin: 0 50px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1200px) {
    .appointment-form-4 {
        margin: 0 0px;
        margin-bottom: 30px;
    }
}

.appointment-form-4 .appointment-form-wrapper {
    max-width: 530.26px;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    margin: 80px 0;
    margin-left: 50px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .appointment-form-4 .appointment-form-wrapper {
        max-width: inherit;
    }
}

@media only screen and (max-width: 992px) {
    .appointment-form-4 .appointment-form-wrapper {
        margin: 70px 0;
        margin-left: 0px;
    }
}

.appointment-form-4 .appointment-form-wrapper .form-title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    background: #1E6EE7;
    padding: 22px 0;
    margin: 0;
    padding-left: 40px;
}

@media only screen and (max-width: 576px) {
    .appointment-form-4 .appointment-form-wrapper .form-title {
        font-size: 22px;
        padding-left: 25px;
    }
}

.appointment-form-4 .appointment-form-wrapper .appointment-form {
    padding: 40px;
}

.appointment-form-4 .appointment-form-wrapper .appointment-form .bz-primary-btn {
    padding: 16.5px 31.5px;
}

@media only screen and (max-width: 576px) {
    .appointment-form-4 .appointment-form-wrapper .appointment-form {
        padding: 25px;
    }
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form input {
    min-height: 50px;
    width: 100%;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 0 25px;
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form input::-webkit-input-placeholder {
    color: #74787C;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bz-ff-body);
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form input::-moz-placeholder {
    color: #74787C;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bz-ff-body);
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form input:-ms-input-placeholder {
    color: #74787C;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bz-ff-body);
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form input::-ms-input-placeholder {
    color: #74787C;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bz-ff-body);
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form input::placeholder {
    color: #74787C;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bz-ff-body);
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form textarea {
    min-height: 100px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 0 25px;
    padding-top: 12px;
    border: 1px solid #EAEAEA;
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form textarea::-webkit-input-placeholder {
    color: #74787C;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bz-ff-body);
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form textarea::-moz-placeholder {
    color: #74787C;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bz-ff-body);
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form textarea:-ms-input-placeholder {
    color: #74787C;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bz-ff-body);
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form textarea::-ms-input-placeholder {
    color: #74787C;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bz-ff-body);
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form textarea::placeholder {
    color: #74787C;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--bz-ff-body);
}

.appointment-form-4 .appointment-form-wrapper .appointment-form form textarea:focus-visible {
    outline: none;
}

.appointment-form-4 .appointment-form-thumb-wrapper {
    position: relative;
    height: 100%;
}

.appointment-form-4 .appointment-form-thumb {
    position: absolute;
    bottom: 0;
    left: 40px;
}

@media (max-width: 1200px) {
    .appointment-form-4 .appointment-form-thumb {
        left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .appointment-form-4 .appointment-form-thumb {
        position: inherit;
    }
}

.appointment-form-4 .appointment-form-bg-shape {
    position: absolute;
}

.appointment-form-4 .appointment-form-bg-shape.appointment-form-bg-shape-1 {
    right: -190px;
    bottom: -23px;
}

.appointment-form-4 .appointment-form-bg-shape.appointment-form-bg-shape-2 {
    top: 197px;
    left: 697px;
}

.appointment-form-4 .appointment-form-bg-shape.appointment-form-bg-shape-3 {
    left: 0;
    bottom: -60px;
}

.hero-section-4 {
    z-index: 2;
    overflow: hidden;
    background-color: rgba(231, 235, 242, 0.9);
    position: relative;
}

.hero-section-4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: -webkit-gradient(linear, right top, left top, color-stop(38.32%, rgba(231, 235, 242, 0)), color-stop(56.35%, #E7EBF2));
    background: linear-gradient(270deg, rgba(231, 235, 242, 0) 38.32%, #E7EBF2 56.35%);
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 576px) {
    .hero-section-4::before {
        background-color: rgba(231, 235, 242, 0.9);
    }
}

.hero-section-4 .container-2 {
    position: relative;
}

.hero-section-4 .hero-thumb {
    position: absolute;
    right: -553px;
    top: -136px;
}

@media only screen and (max-width: 767px) {
    .hero-section-4 .hero-thumb {
        top: 0px;
    }
}

.hero-section-4 .hero-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .hero-section-4 .shapes {
        display: none;
    }
}

.hero-section-4 .shapes .shape {
    position: absolute;
    z-index: 3;
}

.hero-section-4 .shapes .shape.shape-1 {
    top: -95px;
    left: -504px;
}

.hero-section-4 .shapes .shape.shape-2 {
    bottom: -371px;
    left: -784px;
    animation: hero-anim-4 1s infinite linear alternate-reverse;
}

.hero-section-4 .shapes .shape.shape-3 {
    left: 56%;
    bottom: -304px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.hero-section-4 .shapes .box-shape {
    width: 1093.335px;
    height: 1003.012px;
    -webkit-transform: rotate(-16.627deg);
    transform: rotate(-16.627deg);
    background: rgba(255, 255, 255, 0.48);
    position: absolute;
    top: 0px;
    z-index: 2;
    left: -348px;
}

@media (max-width: 1200px) {
    .hero-section-4 .shapes .box-shape {
        display: none;
    }
}

.hero-content-4 {
    z-index: 9;
    padding: 195px 0;
    position: relative;
}

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

@media only screen and (max-width: 767px) {
    .hero-content-4 {
        padding: 70px 0;
    }
}

.hero-content-4 .section-heading .sub-heading {
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .hero-content-4 .section-heading .sub-heading {
        font-size: 14px;
    }
}

.hero-content-4 .section-heading .section-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 64px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
    .hero-content-4 .section-heading .section-title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-4 .section-heading .section-title {
        font-size: 32px;
        line-height: 40px;
    }
}

.hero-content-4 .section-heading p {
    font-size: 18px;
    max-width: 605px;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .hero-content-4 .section-heading p {
        max-width: 500px;
    }
}

.hero-content-4 .hero-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
}

.hero-content-4 .hero-btn-wrap .bz-primary-btn:before {
    background-color: var(--bz-color-heading-primary);
}

.hero-content-4 .hero-btn-wrap .hero-btn {
    background-color: var(--bz-color-heading-primary);
}

.hero-content-4 .hero-btn-wrap .hero-btn:before {
    background-color: var(--bz-color-theme-primary);
}

@-webkit-keyframes hero-anim-4 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(15px);
        transform: translateX(15px);
    }
}

@keyframes hero-anim-4 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(15px);
        transform: translateX(15px);
    }
}

.hero-section-5 {
    z-index: 2;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .hero-section-5 {
        margin-top: 0;
    }
}

.hero-section-5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 20, 23, 0.8);
}

.hero-section-5 .container-2 {
    position: relative;
}

.hero-section-5 .section-heading .sub-heading {
    padding: 0;
    letter-spacing: 1.6px;
}

.hero-section-5 .section-heading .section-title {
    font-weight: 600;
}

.hero-section-5 .section-heading .section-title span {
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .hero-section-5 .shapes {
        display: none;
    }
}

.hero-section-5 .shapes .shape {
    position: absolute;
    z-index: 3;
}

.hero-section-5 .shapes .shape.shape-1 {
    left: -300px;
    top: 0;
    mix-blend-mode: overlay;
}

.hero-section-5 .shapes .shape.shape-2 {
    top: -94px;
    left: -300px;
    mix-blend-mode: overlay;
}

.hero-content-5 {
    z-index: 9;
    padding: 275px 0 215px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .hero-content-5 {
        padding: 150px 0 100px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-5 {
        padding: 130px 0 80px;
    }
}

.hero-content-5 .section-heading .sub-heading {
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .hero-content-5 .section-heading .sub-heading {
        font-size: 14px;
    }
}

.hero-content-5 .section-heading .section-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
    .hero-content-5 .section-heading .section-title {
        font-size: 50px;
        line-height: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-5 .section-heading .section-title {
        font-size: 28px;
        line-height: 35px;
    }
}

.hero-content-5 .section-heading p {
    font-size: 18px;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .hero-content-5 .section-heading p {
        max-width: 500px;
    }
}

.hero-content-5 .hero-btn-wrap .bz-primary-btn {
    padding: 20px 44px;
    border-radius: 100px;
    text-transform: capitalize;
}

.hero-content-5 .hero-btn-wrap .bz-primary-btn:before {
    background-color: var(--bz-color-heading-primary);
}

.hero-section-6 {
    z-index: 2;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .hero-section-6 {
        margin-top: 0;
    }
}

.hero-section-6::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 18, 0.55);
}

.hero-section-6::after {
    content: "";
    top: 280px;
    width: 507px;
    right: 589px;
    height: 507px;
    position: absolute;
    border-radius: 500px;
    background: #1E6EE7;
    mix-blend-mode: multiply;
}

@media (max-width: 1399px) {
    .hero-section-6::after {
        right: 270px;
        top: 310px;
    }
}

@media (max-width: 1200px) {
    .hero-section-6::after {
        left: -130px;
        top: 280px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-6::after {
        left: -130px;
        top: 165px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-section-6::after {
        left: -130px;
        top: 70px;
        height: 400px;
        width: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-section-6::after {
        left: -130px;
        top: 130px;
        height: 400px;
        width: 400px;
    }
}

.hero-content-6 {
    z-index: 9;
    padding: 350px 0 200px;
    position: relative;
    margin-left: 675px;
    max-width: 585px;
}

@media (max-width: 1200px) {
    .hero-content-6 {
        margin-left: 0;
    }
}

@media only screen and (max-width: 992px) {
    .hero-content-6 {
        padding: 250px 0 100px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-6 {
        padding: 130px 0 80px;
    }
}

.hero-content-6 .section-heading .sub-heading {
    color: var(--bz-color-theme-primary);
}

.hero-content-6 .section-heading .sub-heading .left-shape {
    background-color: var(--bz-color-theme-primary);
}

.hero-content-6 .section-heading .sub-heading .left-shape::after {
    background-color: var(--bz-color-theme-primary);
}

.hero-content-6 .section-heading .section-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 64px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
    .hero-content-6 .section-heading .section-title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-6 .section-heading .section-title {
        font-size: 32px;
        line-height: 40px;
    }
}

.hero-content-6 .hero-btn-wrap {
    gap: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.hero-content-6 .hero-btn-wrap .bz-primary-btn {
    padding: 20px 31px;
    border-radius: 7px;
    text-transform: uppercase;
}

.hero-content-6 .hero-btn-wrap .bz-primary-btn:before {
    background-color: var(--bz-color-heading-primary);
}

.hero-content-6 .hero-btn-wrap .bz-primary-btn.hero-btn {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-heading-primary);
}

.hero-content-6 .hero-btn-wrap .bz-primary-btn.hero-btn:before {
    background-color: var(--bz-color-theme-primary);
}

.hero-content-6 .hero-btn-wrap .bz-primary-btn.hero-btn:hover {
    color: var(--bz-color-common-white);
}

.process-section-4-wrapper {
    margin: 0px 120px;
    background-color: var(--bz-color-heading-primary);
    border-radius: 15px;
}

@media (max-width: 1399px) {
    .process-section-4-wrapper {
        margin: 0px 50px;
    }
}

@media (max-width: 1200px) {
    .process-section-4-wrapper {
        margin: 0;
    }
}

.process-section-4-wrapper .mb-minus-30 {
    margin-bottom: -50px;
}

.process-card-4 {
    position: relative;
    margin-bottom: 50px;
}

.process-card-4 .arrow {
    position: absolute;
    top: 90px;
    right: -20%;
}

@media (max-width: 1200px) {
    .process-card-4 .arrow {
        right: -27%;
    }
}

@media only screen and (max-width: 767px) {
    .process-card-4 .arrow {
        display: none;
    }
}

.process-card-4 .icon {
    background-color: var(--bz-color-common-white);
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    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;
    margin: 0 auto;
}

.process-card-4 .icon .number {
    background-color: var(--bz-color-theme-primary);
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    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;
}

.process-card-4 .content {
    margin-top: 30px;
}

@media only screen and (max-width: 576px) {
    .process-card-4 .content {
        margin-top: 20px;
    }
}

.process-card-4 .content .title {
    color: var(--bz-color-common-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-card-4 .content p {
    max-width: 269px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.process-card-4 .content a {
    font-weight: 700;
    color: var(--bz-color-common-white);
}

.process-card-4 .content a i {
    margin-left: 3px;
}

.process-card-4 .content a:hover {
    color: var(--bz-color-theme-primary);
}

@media only screen and (max-width: 992px) {
    .process-card-4.card-2 .arrow {
        display: none;
    }
}

.process-card-4 {
    position: relative;
    margin-bottom: 50px;
}

.process-card-4 .arrow {
    position: absolute;
    top: 90px;
    right: -20%;
}

@media (max-width: 1200px) {
    .process-card-4 .arrow {
        right: -27%;
    }
}

@media only screen and (max-width: 767px) {
    .process-card-4 .arrow {
        display: none;
    }
}

.process-card-4 .icon {
    background-color: var(--bz-color-common-white);
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    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;
    margin: 0 auto;
}

.process-card-4 .icon .number {
    background-color: var(--bz-color-theme-primary);
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    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;
}

.process-card-4 .content {
    margin-top: 30px;
}

@media only screen and (max-width: 576px) {
    .process-card-4 .content {
        margin-top: 20px;
    }
}

.process-card-4 .content .title {
    color: var(--bz-color-common-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-card-4 .content p {
    max-width: 269px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.process-card-4 .content a {
    font-weight: 700;
    color: var(--bz-color-common-white);
}

.process-card-4 .content a i {
    margin-left: 3px;
}

.process-card-4 .content a:hover {
    color: var(--bz-color-theme-primary);
}

@media only screen and (max-width: 992px) {
    .process-card-4.card-2 .arrow {
        display: none;
    }
}

.about-5 .about-thumg {
    margin-right: 46px;
}

.about-5 .about-thumg img {
    border-radius: 30px;
}

@media only screen and (max-width: 992px) {
    .about-5 .about-thumg img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (max-width: 1200px) {
    .about-5 .about-thumg {
        margin-right: 0;
    }
}

@media only screen and (max-width: 576px) {
    .about-5 .about-thumg {
        margin-right: 0;
    }
}

.about-5 .about-content {
    padding-left: 0px;
    margin-left: -15px;
}

@media (max-width: 1399px) {
    .about-5 .about-content {
        margin-left: 0;
    }
}

@media only screen and (max-width: 992px) {
    .about-5 .about-content {
        margin-top: 30px;
    }
}

.about-5 .about-content p {
    font-size: 16px;
    color: #74787C;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
    padding-right: 35px;
}

@media only screen and (max-width: 992px) {
    .about-5 .about-content p {
        padding-right: 0;
    }
}

@media only screen and (max-width: 576px) {
    .about-5 .about-content p {
        font-size: 15px;
    }
}

.about-5 .about-content .about-info-list {
    margin-top: 40px;
}

@media only screen and (max-width: 576px) {
    .about-5 .about-content .about-info-list {
        margin-top: 30px;
    }
}

.about-5 .about-content .about-info-list .about-info-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 32px;
}

@media only screen and (max-width: 576px) {
    .about-5 .about-content .about-info-list .about-info-list-item {
        display: block;
    }
}

.about-5 .about-content .about-info-list .about-info-list-item:last-of-type .about-info-list-icon::before {
    display: none;
}

.about-5 .about-content .about-info-list .about-info-list-item .about-info-list-icon {
    min-width: 75px;
    height: 75px;
    border-radius: 500px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 9px 23px rgba(24, 16, 16, 0.1);
    box-shadow: 0px 9px 23px rgba(24, 16, 16, 0.1);
    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;
    position: relative;
}

@media only screen and (max-width: 576px) {
    .about-5 .about-content .about-info-list .about-info-list-item .about-info-list-icon {
        width: 75px;
        margin-bottom: 15px;
    }
}

.about-5 .about-content .about-info-list .about-info-list-item .about-info-list-icon::before {
    width: 1px;
    height: 42px;
    background-color: #D9D9D9;
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
}

@media only screen and (max-width: 576px) {
    .about-5 .about-content .about-info-list .about-info-list-item .about-info-list-icon::before {
        display: none;
    }
}

.about-5 .about-content .about-info-list .about-info-list-item .about-info-list-text h3 {
    font-size: 22px;
    color: #191F29;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
}

.about-5 .about-content .about-info-list .about-info-list-item .about-info-list-text p {
    font-size: 16px;
    font-weight: 400;
    color: #74787C;
    line-height: 26px;
}

.about-5 .section-heading {
    margin-bottom: 21px;
}

@media (max-width: 1200px) {
    .about-5 .section-heading .section-title br {
        display: none;
    }
}

.blog-5 .post-card {
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .blog-5 .post-card {
        margin-bottom: 30px;
    }
}

.blog-5 .post-card .post-thumb {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 15px;
}

.blog-5 .post-card .post-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-5 .post-card .post-thumb:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-5 .post-card .post-content-wrap {
    background: none;
    padding: 0;
}

.blog-5 .post-card .post-content {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.blog-5 .post-card .post-content .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 0px;
}

@media (max-width: 1200px) {
    .blog-5 .post-card .post-content .title {
        font-size: 19px;
    }
}

@media only screen and (max-width: 992px) {
    .blog-5 .post-card .post-content .title {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-5 .post-card .post-content .title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576px) {
    .blog-5 .post-card .post-content .title {
        font-size: 18px;
    }
}

.blog-5 .post-card .post-content .title a {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--bz-color-theme-primary)), color-stop(98%, var(--bz-color-theme-primary)));
    background: linear-gradient(var(--bz-color-theme-primary) 0%, var(--bz-color-theme-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-5 .post-card .post-content .title a:hover {
    color: var(--bz-color-theme-primary);
    background-size: 100% 2px;
}

.blog-5 .post-card .post-content p {
    font-size: 16px;
    color: #74787C;
    font-weight: 400;
    line-height: 26px;
    margin-top: 7px;
    margin-bottom: 22px;
}

@media only screen and (max-width: 767px) {
    .blog-5 .post-card .post-content p {
        font-size: 14px;
        line-height: 24px;
    }
}

.blog-5 .post-card .read-more {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--bz-color-theme-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-5 .post-card .read-more i {
    font-size: 14px;
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-5 .post-card .read-more:hover i {
    margin-left: 8px;
}

.blog-5 .post-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 16px;
    margin-top: 13px;
    border-bottom: 1px solid #EBEBEB;
}

.blog-5 .post-meta li,
.blog-5 .post-meta a {
    font-family: var(--bz-ff-body);
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.blog-5 .post-meta li i,
.blog-5 .post-meta a i {
    font-size: 16px;
    color: var(--bz-color-text-body);
}

.blog-5 .post-meta li:not(:last-of-type),
.blog-5 .post-meta a:not(:last-of-type) {
    margin-right: 20px;
}

@media only screen and (max-width: 767px) {

    .blog-5 .post-meta li,
    .blog-5 .post-meta a {
        font-size: 12px;
    }
}

.blog-5 .post-meta li a:hover {
    color: var(--bz-color-theme-primary);
}

.blog-5 .post-meta li a:hover i {
    color: var(--bz-color-theme-primary);
}

.Read-more-2 {
    font-size: 16px;
    font-weight: 600;
    color: #191F29;
    display: inline-block;
    font-family: var(--bz-ff-body);
}

.Read-more-2 i {
    font-size: 14px;
    color: #191F29;
    border: 1px solid rgba(25, 31, 41, 0.3);
    width: 35px;
    height: 35px;
    border-radius: 500px;
    text-align: center;
    line-height: 35px;
    margin-right: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.Read-more-2:hover i {
    background-color: #1E6EE7;
    border-color: #1E6EE7;
    color: #fff;
}

.why-choose-us-5 .why-choose-us-content {
    margin-right: 35px;
}

@media (max-width: 1399px) {
    .why-choose-us-5 .why-choose-us-content {
        margin-right: 0;
    }
}

.why-choose-us-5 .why-choose-us-content .accordion-item {
    color: #191F29;
    background-color: #F3F4F6;
    border: 0;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.why-choose-us-5 .why-choose-us-content .accordion-item:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .why-choose-us-5 .why-choose-us-content .accordion-item:last-of-type {
        margin-bottom: 20px;
    }
}

.why-choose-us-5 .why-choose-us-content .accordion-item .accordion-button {
    padding: 15px 20px 15px 30px;
    font-size: 20px;
    color: #191F29;
    background-color: #F3F4F6;
    font-weight: 500;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 576px) {
    .why-choose-us-5 .why-choose-us-content .accordion-item .accordion-button {
        font-size: 16px;
        padding: 15px;
        gap: 5px;
    }
}

.why-choose-us-5 .why-choose-us-content .accordion-item .accordion-button:not(.collapsed) {
    color: #191F29;
    background-color: #F3F4F6;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    padding: 22px 20px 6px 30px;
}

.why-choose-us-5 .why-choose-us-content .accordion-item .accordion-button:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.why-choose-us-5 .why-choose-us-content .accordion-item .accordion-button::after {
    width: 30px;
    height: 30px;
    content: "+";
    font-family: "Font Awesome 6 Pro";
    background: #fff;
    text-align: center;
    line-height: 30px;
    -webkit-transition: inherit;
    transition: inherit;
    color: #1E6EE7;
    border-radius: 5px;
}

.why-choose-us-5 .why-choose-us-content .accordion-item .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background-image: none;
    -webkit-transform: inherit;
    transform: inherit;
}

.why-choose-us-5 .why-choose-us-content .accordion-item .accordion-body {
    padding: 0 30px;
    padding-bottom: 23px;
    border-bottom: 4px solid #1E6EE7;
}

.why-choose-us-5 .why-choose-us-content .accordion-item .accordion-body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
    color: #74787C;
}

@media only screen and (max-width: 576px) {
    .why-choose-us-5 .why-choose-us-content .accordion-item .accordion-body p {
        font-size: 15px;
    }
}

.why-choose-us-5 .why-choose-us-thumb img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.why-choose-us-5 .section-heading {
    margin-bottom: 42px;
}

@media (max-width: 1200px) {
    .why-choose-us-5 .section-heading .section-title br {
        display: none;
    }
}

.cta-5 {
    background: rgba(22, 25, 33, 0.75);
    padding: 111px 0;
}

@media only screen and (max-width: 992px) {
    .cta-5 {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 767px) {
    .cta-5 {
        padding: 60px 0;
    }
}

.cta-5 .cta-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {
    .cta-5 .cta-content-wrapper {
        display: block;
    }
}

.cta-5 .cta-content-wrapper .section-heading-4 {
    margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
    .cta-5 .cta-content-wrapper .section-heading-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 1200px) {
    .cta-5 .cta-content-wrapper .section-heading-4 .section-title br {
        display: none !important;
    }
}

.cta-5 .cta-content-wrapper .cta-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.cta-5 .cta-content-wrapper .cta-btn-wrap .bz-primary-btn {
    padding: 19.5px 38.7px;
    border-radius: 100px;
}

.cta-5 .cta-content-wrapper .cta-btn-wrap .video-btn a {
    background-color: transparent;
    color: var(--bz-color-common-white);
    height: 55px;
    width: 55px;
    border-radius: 100px;
    border: 2px solid var(--bz-color-common-white);
    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;
    position: relative;
    z-index: 2;
}

.cta-5 .cta-content-wrapper .cta-btn-wrap .video-btn a:hover {
    color: rgb(22, 25, 33);
    background-color: var(--bz-color-common-white);
}

.services-5 {
    background: rgba(249, 249, 249, 0.55);
    position: relative;
}

.services-5 .services-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(249, 249, 249, 0.55);
}

.services-5 .services-item {
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services-5 .services-item::before {
    content: "";
    background-color: #1E6EE7;
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    left: 0;
}

.services-5 .services-item:hover::before {
    height: 80%;
    z-index: -1;
}

.services-5 .services-item:hover .services-content .services-icon {
    background-color: #1E6EE7;
}

.services-5 .services-item:hover .services-content .services-icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

@media only screen and (max-width: 992px) {
    .services-5 .services-item {
        margin-bottom: 30px;
    }
}

.services-5 .services-item .services-thumb {
    position: relative;
    z-index: 2;
}

.services-5 .services-item .services-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.services-5 .services-item .services-content {
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    -webkit-box-shadow: 0px 9px 39px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 9px 39px rgba(0, 0, 0, 0.07);
    border-radius: 15px;
    text-align: center;
    margin: 0 30px 30px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

@media (max-width: 1200px) {
    .services-5 .services-item .services-content {
        margin: 0 20px 20px;
        margin-top: -50px;
    }
}

@media only screen and (max-width: 767px) {
    .services-5 .services-item .services-content {
        margin: 0 18px 18px;
        margin-top: -50px;
    }
}

.services-5 .services-item .services-content .services-icon {
    width: 95px;
    height: 95px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    border-radius: 500px;
    margin: auto;
    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;
    margin-top: -48px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.services-5 .services-item .services-content .services-title {
    font-size: 24px;
    font-weight: 600;
    color: #191F29;
    margin-bottom: 10px;
    margin-top: 22px;
}

@media only screen and (max-width: 767px) {
    .services-5 .services-item .services-content .services-title {
        font-size: 20px;
    }
}

.services-5 .services-item .services-content .services-dec {
    line-height: 26px;
    margin-bottom: 0;
    padding: 0px 10px;
}

.services-5 .services-item .services-content .services-btn {
    border-top: 1px solid #E7E7E7;
    padding: 13px 0;
    margin-top: 24px;
}

.services-5 .services-item .services-content .services-btn a {
    font-size: 16px;
    color: #191F29;
    font-weight: 600;
    display: inline-block;
}

.services-5 .services-item .services-content .services-btn a:hover {
    color: #1E6EE7;
}

.feedback-5 {
    background: #F6F7FA;
    position: relative;
}

.feedback-5 .feedback-bg {
    position: absolute;
    top: 0;
    left: 0;
}

.feedback-5 .swiper {
    overflow: inherit;
}

.feedback-5 .swiper.feedback-5__active {
    overflow-x: clip;
}

.feedback-5 .feedback-wrapper {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 15px 41px rgba(13, 22, 39, 0.08);
    box-shadow: 0px 15px 41px rgba(13, 22, 39, 0.08);
    border-radius: 15px;
    padding: 50px;
    padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .feedback-5 .feedback-wrapper {
        padding: 20px;
        padding-bottom: 20px;
    }
}

.feedback-5 .feedback-wrapper .feedback-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #E6E6E7;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.feedback-5 .feedback-wrapper .feedback-author-thumb {
    width: 80px;
    height: 80px;
}

.feedback-5 .feedback-wrapper .feedback-author-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
}

.feedback-5 .feedback-wrapper .name {
    font-size: 24px;
    font-weight: 600;
    color: #191F29;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .feedback-5 .feedback-wrapper .name {
        font-size: 18px;
    }
}

.feedback-5 .feedback-wrapper .position {
    font-size: 16px;
    color: #1E6EE7;
    font-weight: 400;
    font-family: var(--bz-ff-heading);
}

.feedback-5 .feedback-wrapper .feedback-dec {
    font-size: 20px;
    color: #74787C;
    line-height: 34px;
    font-style: italic;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .feedback-5 .feedback-wrapper .feedback-dec {
        font-size: 17px;
        line-height: 30px;
    }
}

.feedback-5 .feedback-wrapper .feedback-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 17px;
}

@media only screen and (max-width: 767px) {
    .feedback-5 .feedback-wrapper .feedback-author {
        gap: 10px;
    }
}

.project-5 .view-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.project-5 .view-more i {
    width: 40px;
    height: 40px;
    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;
    background-color: transparent;
    border: 1px solid var(--bz-color-text-body);
    border-radius: 500px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: var(--bz-color-text-body);
}

.project-5 .view-more:hover i {
    color: var(--bz-color-common-white);
    background-color: var(--bz-color-theme-primary);
    border-color: transparent;
}

.project-5 .project-5-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -170px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .project-5 .project-5-wrapper {
        margin: 0;
    }
}

@media only screen and (max-width: 767px) {
    .project-5 .project-5-wrapper {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .project-5 .project-5-wrapper .project-5__item {
        margin: 15px 0;
    }
}

.project-5 .project-5-wrapper .project-5__item .project-thumb {
    max-width: 397px;
    height: 500px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .project-5 .project-5-wrapper .project-5__item .project-thumb {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .project-5 .project-5-wrapper .project-5__item .project-thumb {
        margin: auto;
    }
}

.project-5 .project-5-wrapper .project-5__item .project-thumb a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 130px;
    height: 130px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 30px;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    border-radius: 500px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--bz-color-theme-primary);
    background: var(--bz-color-common-white);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1200px) {
    .project-5 .project-5-wrapper .project-5__item .project-thumb a {
        width: 100px;
        height: 100px;
    }
}

.project-5 .project-5-wrapper .project-5__item .project-thumb::before {
    bottom: 0;
    left: 0;
    opacity: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    mix-blend-mode: multiply;
    background-color: var(--bz-color-theme-primary);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.project-5 .project-5-wrapper .project-5__item .project-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.project-5 .project-5-wrapper .project-5__item .project-thumb.active {
    max-width: 825px;
    height: 500px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

@media (max-width: 1399px) {
    .project-5 .project-5-wrapper .project-5__item .project-thumb.active {
        max-width: 550px;
    }
}

@media (max-width: 1200px) {
    .project-5 .project-5-wrapper .project-5__item .project-thumb.active {
        height: 400px;
    }
}

.project-5 .project-5-wrapper .project-5__item .project-thumb.active a {
    opacity: 1;
}

.project-5 .project-5-wrapper .project-5__item .project-thumb.active::before {
    opacity: 1;
}

.case-studies-6 .case-studies-top {
    position: relative;
    padding-top: 120px;
}

@media only screen and (max-width: 992px) {
    .case-studies-6 .case-studies-top {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .case-studies-6 .case-studies-top {
        padding-top: 60px;
    }
}

.case-studies-6 .case-studies-top .case-studies-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 574px;
}

.case-studies-6 .case-studies-top .case-studies-bg-shape img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.case-studies-6 .case-studies-top .case-studies-top-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    gap: 30px;
}

@media only screen and (max-width: 767px) {
    .case-studies-6 .case-studies-top .case-studies-top-wrapper {
        display: block;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .case-studies-6 .case-studies-top .case-studies-top-wrapper .section-heading {
        margin-bottom: 20px;
    }
}

.case-studies-6 .case-studies-top .case-studies-top-wrapper .bz-primary-btn {
    padding: 19.5px 41.3px;
    border-radius: 100px;
    text-transform: capitalize;
}

.case-studies-bottom-wrapper {
    margin: 0 120px;
}

@media (max-width: 1399px) {
    .case-studies-bottom-wrapper {
        margin: 0 50px;
    }
}

@media (max-width: 1200px) {
    .case-studies-bottom-wrapper {
        margin: 0 0px;
    }
}

.case-studies-wrapper {
    position: relative;
}

@media only screen and (max-width: 992px) {
    .case-studies-wrapper {
        margin-bottom: 30px;
    }
}

.case-studies-wrapper:hover .case-studies-content {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

@media (max-width: 1399px) {
    .case-studies-wrapper:hover .case-studies-content {
        bottom: 30px;
    }
}

@media (max-width: 1200px) {
    .case-studies-wrapper:hover .case-studies-content {
        bottom: 20px;
    }
}

.case-studies-wrapper:hover .case-studies-thumb a {
    opacity: 1;
    visibility: visible;
}

.case-studies-title {
    font-size: 24px;
    font-weight: 600;
    color: #191F29;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .case-studies-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .case-studies-title {
        font-size: 18px;
    }
}

.case-studies-content {
    position: absolute;
    right: 40px;
    left: 40px;
    bottom: 0px;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media (max-width: 1399px) {
    .case-studies-content {
        right: 30px;
        left: 30px;
        padding: 25px;
    }
}

@media (max-width: 1200px) {
    .case-studies-content {
        right: 20px;
        left: 20px;
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .case-studies-content {
        right: 15px;
        left: 15px;
        padding: 15px;
    }
}

.case-studies-content span {
    font-size: 16px;
    font-weight: 400;
    color: #1E6EE7;
    font-family: var(--bz-ff-heading);
}

.case-studies-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

.case-studies-thumb a {
    width: 55px;
    height: 55px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    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;
    border-radius: 100px;
    color: #1E6EE7;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .case-studies-thumb a {
        width: 45px;
        height: 45px;
    }
}

.counter-6 {
    background: #171717;
    padding: 106px 0;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .counter-6 {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 767px) {
    .counter-6 {
        padding: 60px 0;
    }
}

.counter-6 .left-shape {
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 1200px) {
    .counter-6 .left-shape {
        display: none;
    }
}

.counter-6 .right-shape {
    position: absolute;
    right: 0;
    bottom: 0;
}

.counter-6 .counter-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .counter-6 .counter-wrapper {
        display: block;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (max-width: 767px) {
    .counter-6 .counter-wrapper {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

.counter-6 .counter-wrapper .counter-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}

@media (max-width: 1200px) {
    .counter-6 .counter-wrapper .counter-item {
        max-width: 300px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .counter-6 .counter-wrapper .counter-item {
        margin: 0 auto;
        margin-bottom: 30px;
        max-width: 300px;
    }
}

@media only screen and (max-width: 576px) {
    .counter-6 .counter-wrapper .counter-item {
        gap: 18px;
    }
}

.counter-6 .counter-wrapper .counter-item .counter-icon {
    width: 90px;
    height: 90px;
    background: #1E6EE7;
    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;
    border-radius: 100px;
}

.counter-6 .counter-wrapper .counter-item .counter-count h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
    font-family: var(--bz-ff-heading);
}

@media only screen and (max-width: 576px) {
    .counter-6 .counter-wrapper .counter-item .counter-count h2 {
        font-size: 35px;
    }
}

.counter-6 .counter-wrapper .counter-item .counter-count h2 span {
    line-height: 1 !important;
    font-family: var(--bz-ff-heading) !important;
}

.counter-6 .counter-wrapper .counter-item .counter-count>span {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--bz-ff-heading);
}

.team-strength .team-strength-content {
    position: relative;
}

.team-strength .team-strength-content .section-heading .sub-heading {
    margin-bottom: 14px;
}

.team-strength .team-strength-content .team-strength-counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media only screen and (max-width: 576px) {
    .team-strength .team-strength-content .team-strength-counter {
        display: block;
    }
}

.team-strength .team-strength-content .team-strength-counter .team-strength-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 5px;
    padding: 31px 40px;
    min-width: 270px;
}

@media only screen and (max-width: 767px) {
    .team-strength .team-strength-content .team-strength-counter .team-strength-item {
        min-width: 260px;
    }
}

@media only screen and (max-width: 576px) {
    .team-strength .team-strength-content .team-strength-counter .team-strength-item {
        margin-bottom: 15px;
        padding: 20px;
    }
}

.team-strength .team-strength-content .team-strength-counter .team-strength-item h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
    color: #fff;
}

.team-strength .team-strength-content .team-strength-counter .team-strength-item h2 span {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--bz-ff-heading) !important;
    color: #fff;
}

.team-strength .team-strength-content .team-strength-counter .team-strength-item span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--bz-ff-heading);
    color: #fff;
}

.team-strength .team-strength-content .team-strength-dec {
    font-size: 16px;
    font-weight: 400;
    color: #C8C9CB;
    line-height: 26px;
    margin-bottom: 34px;
    margin-top: 32px;
}

.team-strength .team-strength-thumb-wrapper {
    width: 100%;
    height: 100%;
}

.team-strength .team-strength-thumb-wrapper .team-strength-thumb {
    bottom: 0;
    left: 0;
}

@media (max-width: 1200px) {
    .team-strength .team-strength-thumb-wrapper .team-strength-thumb {
        right: -140px;
        left: auto;
    }
}

@media only screen and (max-width: 992px) {
    .team-strength .team-strength-thumb-wrapper .team-strength-thumb {
        position: inherit;
        right: 0;
    }
}

.team-strength .team-strength-bg-1 {
    width: 88px;
    height: 87px;
    background: #1E6EE7;
    -webkit-transform: matrix(0, -1, -1, 0, 0, 0);
    transform: matrix(0, -1, -1, 0, 0, 0);
    position: absolute;
    bottom: 0;
    right: 0;
}

.team-strength .team-strength-shape-1 {
    right: 88px;
    bottom: 88px;
}

@media (max-width: 1399px) {
    .team-strength .team-strength-shape-1 {
        right: 50px;
    }
}

.team-strength .team-strength-shape-2 {
    left: -169px;
    top: -210px;
}

.services-6 {
    background: #F9F9F9;
    position: relative;
    overflow: hidden;
}

.services-6 .services-item {
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .services-6 .services-item {
        margin-bottom: 30px;
    }
}

.services-6 .services-item::before {
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 3;
    position: absolute;
    border-radius: 10px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(24.52%, rgba(0, 0, 0, 0)), color-stop(87.86%, rgba(6, 9, 12, 0.85)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.52%, rgba(6, 9, 12, 0.85) 87.86%);
}

.services-6 .services-item::after {
    left: 0;
    bottom: 0;
    opacity: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    visibility: hidden;
    background: #1E6EE6;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    mix-blend-mode: soft-light;
}

.services-6 .services-item:hover::before {
    opacity: 1;
}

.services-6 .services-item:hover::after {
    opacity: 1;
    visibility: visible;
}

.services-6 .services-item:hover .services-content {
    bottom: 40px;
}

@media (max-width: 1200px) {
    .services-6 .services-item:hover .services-content {
        bottom: 30px;
    }
}

.services-6 .services-item:hover .services-thumb::before {
    opacity: 1;
}

.services-6 .services-item:hover .services-thumb::after {
    opacity: 1;
    visibility: visible;
}

.services-6 .services-item:hover .services-dec {
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 767px) {
    .services-6 .services-item:hover .services-dec {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    .services-6 .services-item:hover .services-dec {
        display: block;
    }
}

.services-6 .services-item:hover .services-btn {
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 767px) {
    .services-6 .services-item:hover .services-btn {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .services-6 .services-item:hover .services-btn {
        margin-top: 0px;
    }
}

.services-6 .services-thumb {
    position: relative;
}

.services-6 .services-thumb::before {
    content: "";
    left: 0;
    bottom: 0;
    opacity: 1;
    width: 100%;
    opacity: 0;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    visibility: visible;
    mix-blend-mode: multiply;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background: rgba(30, 110, 230, 0.72);
}

.services-6 .services-thumb::after {
    left: 0;
    bottom: 0;
    z-index: 3;
    opacity: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(9.52%, rgba(12, 47, 99, 0.12)), color-stop(87.86%, rgba(30, 110, 230, 0.94)));
    background: linear-gradient(180deg, rgba(12, 47, 99, 0.12) 9.52%, rgba(30, 110, 230, 0.94) 87.86%);
}

.services-6 .services-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.services-6 .services-content {
    position: absolute;
    bottom: -90px;
    left: 40px;
    right: 10px;
    z-index: 9;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media (max-width: 1200px) {
    .services-6 .services-content {
        bottom: -100px;
        left: 25px;
        right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .services-6 .services-content {
        bottom: -90px;
        left: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .services-6 .services-content {
        bottom: -90px;
    }
}

.services-6 .services-content .services-icon {
    width: 80px;
    height: 80px;
    background: var(--bz-color-common-white);
    border-radius: 10px;
    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;
    position: relative;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .services-6 .services-content .services-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

.services-6 .services-content .services-icon::before {
    content: "";
    width: 75px;
    height: 75px;
    background: var(--bz-color-common-white);
    mix-blend-mode: normal;
    opacity: 0.32;
    border-radius: 10px;
    position: absolute;
    top: 10px;
    left: 10px;
}

@media (max-width: 1200px) {
    .services-6 .services-content .services-icon::before {
        width: 65px;
        height: 65px;
    }
}

.services-6 .services-content .services-title {
    font-size: 24px;
    color: var(--bz-color-common-white);
    margin-bottom: 0;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .services-6 .services-content .services-title {
        font-size: 21px;
    }
}

.services-6 .services-content .services-title a:hover {
    color: #F9F9F9;
}

.services-6 .services-content .services-dec {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--bz-color-common-white);
    margin-bottom: 20px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .services-6 .services-content .services-dec {
        font-size: 15px;
        line-height: 22px;
    }
}

.services-6 .services-content .services-btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.services-6 .bz-primary-btn.bz-primary-btn-4 {
    background: var(--bz-color-common-white);
    font-size: 16px;
    color: var(--bz-color-theme-primary);
    text-transform: capitalize;
    font-weight: 600;
    border-radius: 100px;
    padding: 14.5px 32.3px;
}

.services-6 .bz-primary-btn.bz-primary-btn-4::before {
    background: rgba(30, 110, 231, 0.15);
}

.services-6 .services-bg-shape {
    position: absolute;
    top: -110px;
    left: -135px;
}

.global-business-6 .global-business-thumb {
    position: relative;
}

@media only screen and (max-width: 992px) {
    .global-business-6 .global-business-thumb {
        text-align: center;
        margin-bottom: 30px;
    }
}

.global-business-6 .global-business-thumb img {
    border-radius: 20px;
}

.global-business-6 .global-business-thumb .image-2 {
    position: absolute;
    right: 15px;
    bottom: 80px;
}

@media only screen and (max-width: 576px) {
    .global-business-6 .global-business-thumb .image-2 {
        position: inherit;
        right: 0;
        bottom: -10px;
    }
}

.global-business-6 .global-business-thumb::before {
    content: "";
    width: 219px;
    height: 426px;
    background: #FFFFFF;
    border-radius: 20px;
    display: inline-block;
    position: absolute;
    bottom: 70px;
    right: 87px;
}

@media only screen and (max-width: 576px) {
    .global-business-6 .global-business-thumb::before {
        display: none;
    }
}

.global-business-6 .global-business-content {
    margin-left: 28px;
}

@media (max-width: 1200px) {
    .global-business-6 .global-business-content {
        margin-left: 0;
    }
}

.global-business-6 .global-business-content .section-heading {
    margin-bottom: 46px;
}

.global-business-6 .global-business-content .global-business-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 34px;
}

@media only screen and (max-width: 576px) {
    .global-business-6 .global-business-content .global-business-list-item {
        display: block;
        margin-bottom: 30px;
    }
}

.global-business-6 .global-business-content .global-business-list-item:last-of-type {
    margin-bottom: 45px;
}

.global-business-6 .global-business-content .global-business-list-item .global-business-list-icon {
    min-width: 80px;
    height: 80px;
    background: #FFFFFF;
    border: 1px solid #DFE4EF;
    -webkit-box-shadow: 0px 7px 45px rgba(47, 59, 79, 0.25);
    box-shadow: 0px 7px 45px rgba(47, 59, 79, 0.25);
    border-radius: 100px;
    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;
}

@media only screen and (max-width: 576px) {
    .global-business-6 .global-business-content .global-business-list-item .global-business-list-icon {
        max-width: 80px;
        margin-bottom: 15px;
    }
}

.global-business-6 .global-business-content .global-business-list-item .global-business-list-title {
    font-size: 20px;
    font-weight: 600;
    color: #191F29;
    margin-bottom: 8px;
}

.global-business-6 .global-business-content .global-business-list-item .global-business-list-dec {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #74787C;
    margin-bottom: 0;
}

.global-business-6 .global-business-content .global-business-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

@media only screen and (max-width: 576px) {
    .global-business-6 .global-business-content .global-business-btn {
        display: block;
    }
}

.global-business-6 .global-business-content .global-business-btn .bz-primary-btn {
    padding: 19.5px 31px;
    border-radius: 100px;
}

.global-business-6 .global-business-content .global-business-btn .play-btn {
    font-size: 16px;
    font-weight: 500;
    color: #1E6EE7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 35px;
}

@media only screen and (max-width: 576px) {
    .global-business-6 .global-business-content .global-business-btn .play-btn {
        margin: 30px 0 0 15px;
    }
}

.global-business-6 .global-business-content .global-business-btn .play-btn i {
    width: 55px;
    height: 55px;
    background: rgba(30, 110, 231, 0.12);
    color: #1E6EE7;
    font-size: 16px;
    text-align: center;
    line-height: 55px;
    border-radius: 100px;
    display: inline-block;
    outline-offset: 18px;
    outline: 1px solid rgba(30, 110, 231, 0.2);
}

.why-choose-us-6 {
    background: #161921;
    position: relative;
    padding: 118px 0;
}

@media (max-width: 1200px) {
    .why-choose-us-6 {
        padding: 100px 0;
    }
}

@media only screen and (max-width: 992px) {
    .why-choose-us-6 {
        padding: 70px 0;
        padding-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .why-choose-us-6 {
        padding: 60px 0;
        padding-top: 0;
    }
}

.why-choose-us-6 .why-choose-us-bg-thumb {
    width: 45.8%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.why-choose-us-6 .why-choose-us-bg-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-position: center;
    background-size: cover;
}

@media (max-width: 1200px) {
    .why-choose-us-6 .why-choose-us-bg-thumb {
        width: 48%;
    }
}

@media only screen and (max-width: 992px) {
    .why-choose-us-6 .why-choose-us-bg-thumb {
        width: 100%;
        position: inherit;
        margin-bottom: 30px;
    }
}

.why-choose-us-6 .why-choose-us-video {
    position: absolute;
    left: 376px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 1399px) {
    .why-choose-us-6 .why-choose-us-video {
        left: 230px;
    }
}

@media only screen and (max-width: 992px) {
    .why-choose-us-6 .why-choose-us-video {
        left: 50%;
        top: 23%;
        -webkit-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@media only screen and (max-width: 767px) {
    .why-choose-us-6 .why-choose-us-video {
        top: 15%;
    }
}

@media only screen and (max-width: 576px) {
    .why-choose-us-6 .why-choose-us-video {
        top: 8%;
    }
}

.why-choose-us-6 .why-choose-us-video .video-btn-6 {
    width: 120px;
    height: 120px;
    background: #fff;
    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;
    color: #1E6EE7;
    font-size: 24px;
    border-radius: 100px;
}

@media only screen and (max-width: 576px) {
    .why-choose-us-6 .why-choose-us-video .video-btn-6 {
        width: 70px;
        height: 70px;
    }
}

.why-choose-us-6 .why-choose-us-content-wrapper {
    margin-left: 15px;
}

@media (max-width: 1399px) {
    .why-choose-us-6 .why-choose-us-content-wrapper {
        margin-left: 0;
    }
}

.why-choose-us-6 .why-choose-us-content-wrapper .why-choose-us-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 30px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 576px) {
    .why-choose-us-6 .why-choose-us-content-wrapper .why-choose-us-list {
        display: block;
    }
}

.why-choose-us-6 .why-choose-us-content-wrapper .why-choose-us-list:last-of-type {
    margin-bottom: 0;
}

.why-choose-us-6 .why-choose-us-content-wrapper .why-choose-us-list span {
    min-width: 80px;
    height: 80px;
    background: #272A35;
    font-size: 30px;
    font-weight: 700;
    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;
    color: #1E6EE7;
    border-radius: 100px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .why-choose-us-6 .why-choose-us-content-wrapper .why-choose-us-list span {
        max-width: 80px;
        margin-bottom: 15px;
    }
}

.why-choose-us-6 .why-choose-us-content-wrapper .why-choose-us-list span:hover {
    background: #fff;
}

.why-choose-us-6 .why-choose-us-content-wrapper .why-choose-us-list .why-choose-us-list-text p {
    font-size: 16px;
    font-weight: 400;
    color: #808695;
    line-height: 28px;
    margin-bottom: 0;
}

.why-choose-us-6 .why-choose-us-content-wrapper .why-choose-us-list .why-choose-us-list-text .title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member-6 .section-heading .sub-heading {
    margin-bottom: 15px;
    padding: 0;
}

@media only screen and (max-width: 992px) {
    .team-member-6 .team-wrapper {
        margin-bottom: 30px;
    }
}

.team-member-6 .team-wrapper .team-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0px 15px;
}

.team-member-6 .team-wrapper .team-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border-radius: 15px 15px 0px 15px;
}

.team-member-6 .team-wrapper .team-thumb .team-social {
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 11px;
    position: absolute;
    background: #1E6EE7;
    border-radius: 0px 15px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.07);
    -webkit-transform: translate(0px, 100%);
    transform: translate(0px, 100%);
}

.team-member-6 .team-wrapper .team-thumb .team-social a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #1E6EE7;
    font-size: 14px;
    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;
    border-radius: 100px;
    margin-bottom: 5px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.team-member-6 .team-wrapper .team-thumb .team-social a:last-of-type {
    margin-bottom: 0;
}

.team-member-6 .team-wrapper .team-thumb .plus {
    width: 62px;
    height: 62px;
    bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #1E6EE7;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0px 15px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.team-member-6 .team-wrapper .team-thumb .plus span {
    width: 40px;
    height: 40px;
    color: #1E6EE7;
    background: #f6f6f6;
    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;
    border-radius: 100px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.team-member-6 .team-wrapper .team-thumb:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.team-member-6 .team-wrapper .team-thumb:hover .plus {
    -webkit-transform: translate(0px, 100%);
    transform: translate(0px, 100%);
}

.team-member-6 .team-wrapper .team-thumb:hover .team-social {
    -webkit-transform: translate(0px, 0%);
    transform: translate(0px, 0%);
    bottom: 0;
}

.team-member-6 .team-wrapper .team-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.team-member-6 .team-wrapper .team-content div {
    width: 246px;
    padding: 25px 0;
    text-align: center;
    background: #FFFFFF;
    border-radius: 0px 0px 15px 15px;
    -webkit-box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.07);
}

.team-member-6 .team-wrapper .team-content div .team-name {
    font-size: 24px;
    font-weight: 600;
    color: #191F29;
    margin-bottom: 0;
    line-height: 1;
}

.team-member-6 .team-wrapper .team-content div .team-position {
    font-size: 16px;
    font-weight: 400;
    color: #1E6EE7;
    font-family: var(--bz-ff-heading);
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — Boutons arrondis
   ═══════════════════════════════════════════════════════════════════ */
body.contact-page .bz-primary-btn,
body.contact-page .bz-primary-btn-2,
body.contact-page .bz-secondary-btn,
body.contact-page .pb-bottom-bar__btn,
body.contact-page .btn,
body.contact-page button[type="submit"] {
    border-radius: 999px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — Carte Leaflet & section map
   ═══════════════════════════════════════════════════════════════════ */
.contact-section--map {
    background: #fdf5f4;
}

.contact-map-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.contact-map-wrap__iframe {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
}

#contactLeafletMap {
    width: 100%;
    height: 100%;
    min-height: 280px;
    z-index: 1;
}

/* body.index-3-page impose text-align: justify — Leaflet positionne des calques inline; le justify peut casser la carte sur desktop. */
.contact-map-wrap,
.contact-map-wrap .leaflet-container {
    text-align: left;
}

/* Hauteur explicite sur la racine Leaflet (évite chaîne height:100% fragile une fois les classes Leaflet ajoutées). */
.contact-map-wrap__iframe .leaflet-container {
    width: 100%;
    min-height: 480px;
}

@media (max-width: 991.98px) {
    .contact-map-wrap__iframe .leaflet-container {
        min-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .contact-map-wrap__iframe .leaflet-container {
        min-height: 320px;
    }
}

/* Empêche le reset global `img { max-width: 100% }` du thème de casser la grille des tuiles Leaflet (souvent visible en desktop). */
.contact-map-wrap .leaflet-container img,
.contact-map-wrap .leaflet-tile,
.contact-map-wrap .leaflet-tile-container img {
    max-width: none !important;
}

/* ── Badge titre ───────────────────────────────────────────────── */
.contact-map-wrap__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: #E63946;
    color: #fff;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.35);
    pointer-events: none;
    letter-spacing: 0.01em;
}

.contact-map-wrap__badge i {
    font-size: 22px;
}

/* ── Panneaux sous la carte ────────────────────────────────────── */
.contact-panels-below {
    margin-top: 0;
}

.contact-glass-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}

.contact-glass-card .title {
    color: #191F29;
}

.contact-glass-card .contact-list .list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-glass-card .contact-list .list-item .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(230, 57, 70, 0.10);
    color: #E63946;
    font-size: 18px;
}

.contact-glass-card .contact-list .list-item .content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #191F29;
}

.contact-glass-card .contact-list .list-item .content span,
.contact-glass-card .contact-list .list-item .content p {
    font-size: 14px;
    color: #555;
    display: block;
    line-height: 1.5;
}

.contact-glass-card .contact-list .list-item .content a {
    color: #555;
    text-decoration: none;
    transition: color 0.25s;
}

.contact-glass-card .contact-list .list-item .content a:hover {
    color: #E63946;
}

/* ── Animations panneaux (slide in) ────────────────────────────── */
.contact-panel-anim {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-panel-anim--left {
    transform: translateX(-60px);
}

.contact-panel-anim--right {
    transform: translateX(60px);
}

.contact-panel-anim.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Panneaux contact : mobile / tablette — hauteur du visuel + animation verticale */
@media (max-width: 991.98px) {
    .contact-section--map .contact-panel-anim--left,
    .contact-section--map .contact-panel-anim--right {
        transform: translateY(28px);
    }

    .contact-section--map .contact-panel-anim.is-visible {
        transform: translateY(0);
    }

    /* Carte image seule : sans contenu, height:100% ne s'étire pas → bande fine */
    .contact-section--map .contact-visual-card.contact-glass-card {
        height: auto;
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 575.98px) {
    .contact-section--map .contact-visual-card.contact-glass-card {
        min-height: 200px;
        aspect-ratio: 4 / 3;
    }
}

/* ── Marqueurs Leaflet custom ──────────────────────────────────── */
.pb-map-marker {
    background: transparent !important;
    border: none !important;
}

.pb-map-marker__pin {
    width: 36px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E63946;
    font-size: 38px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.30));
    animation: pb-marker-bounce 0.6s ease-out;
}

.pb-map-marker__pin--user {
    color: #1E6EE7;
    animation: pb-marker-pulse 1.5s infinite;
}

@keyframes pb-marker-bounce {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    60% {
        transform: translateY(4px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pb-marker-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* ── Popup custom ──────────────────────────────────────────────── */
.pb-map-popup-wrap .leaflet-popup-content-wrapper {
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.pb-map-popup-wrap .leaflet-popup-content {
    margin: 0;
    min-width: 230px;
}

.pb-map-popup {
    padding: 16px 18px;
}

.pb-map-popup__title {
    font-size: 16px;
    font-weight: 700;
    color: #191F29;
    margin: 0 0 8px 0;
}

.pb-map-popup__address,
.pb-map-popup__phone {
    font-size: 13px;
    color: #555;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pb-map-popup__address i,
.pb-map-popup__phone i {
    color: #E63946;
    font-size: 13px;
    width: 16px;
    text-align: center;
}

.pb-map-popup__route-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 16px;
    background: #E63946;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s;
    width: 100%;
    justify-content: center;
}

.pb-map-popup__route-btn:hover {
    background: #c52d38;
}

/* ── Routing panel ─────────────────────────────────────────────── */
.leaflet-routing-container {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12) !important;
    max-height: 260px;
    overflow-y: auto;
    font-size: 13px;
}

/* ── Download app modal ────────────────────────────────────────── */
.pb-app-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.pb-app-modal.is-open {
    opacity: 1 !important;
    visibility: visible !important;
}

.pb-app-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.pb-app-modal__content {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 14px;
    padding: 6px 18px 18px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    animation: pbModalIn 0.4s ease;
}

@keyframes pbModalIn {
    from {
        transform: scale(0.92) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.pb-app-modal__close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    color: #191F29;
    cursor: pointer;
    line-height: 1;
    transition: color 0.25s;
}

.pb-app-modal__close:hover {
    color: #E63946;
}

.pb-app-modal__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 10px;
    align-items: center;
}

.pb-app-modal__qr {
    grid-row: 1;
    grid-column: 1;
}

.pb-app-modal__qr img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: contain;
}

.pb-app-modal__text {
    grid-row: 1;
    grid-column: 2;
}

.pb-app-modal__title {
    font-size: 25px;
    font-weight: 700;
    color: #191F29;
    line-height: 1.2;
    margin: 0;
}

.pb-app-modal__desc {
    grid-column: 1 / -1;
}

.pb-app-modal__desc p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 10px;
}

.pb-app-modal__stores {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pb-app-modal__stores--ordre {
    display: block;
}

.pb-app-modal__stores--ordre .pb-app-modal__stores-row {
    margin-left: 0;
    margin-right: 0;
}

.pb-app-modal__stores--ordre .pb-app-modal__store-btn {
    width: 100%;
}

.pb-app-modal__store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #191F29;
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s;
}

.pb-app-modal__store-btn:hover {
    background: #E63946;
    color: #fff;
}

.pb-lien-app-footer__img {
    max-height: 44px;
    width: auto;
    display: block;
}

.pb-lien-app-modal__img {
    max-height: 28px;
    width: auto;
    display: block;
}

.pb-app-lien__icon-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* ── Modal responsive ──────────────────────────────────────────── */
@media (max-width: 575.98px) {
    .pb-app-modal__grid {
        grid-template-columns: auto 1fr;
        gap: 14px 14px;
    }

    .pb-app-modal__title {
        font-size: 24px;
    }

    .pb-app-modal__qr img {
        width: 90px;
        height: 90px;
    }

    .pb-app-modal__content {
        padding: 24px 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   CHAUFFEURS — Simulateur de revenus (pb-earn-calc)
   ═══════════════════════════════════════════════════════════════════ */
.pb-earn-calc__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: #191F29;
    letter-spacing: -0.02em;
    margin: 0;
}

.pb-earn-calc__intro-foot {
    font-size: 15px;
    line-height: 1.55;
    color: #5c6470;
    margin: 0;
    max-width: 420px;
}

.pb-earn-calc__panel {
    background: #f0f1f3;
    border-radius: 24px;
    padding: 28px 24px 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.pb-earn-calc__panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
    align-items: start;
}

.pb-earn-calc__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #191F29;
    margin-bottom: 10px;
}

.pb-earn-calc__field {
    margin-bottom: 22px;
}

.pb-earn-calc__field:last-child {
    margin-bottom: 0;
}

.pb-earn-calc__select {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    color: #191F29;
}

.pb-earn-calc__slider-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pb-earn-calc__range {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pb-earn-calc__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 28px;
    border-radius: 6px;
    background: #191F29;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pb-earn-calc__range::-moz-range-thumb {
    width: 22px;
    height: 28px;
    border-radius: 6px;
    background: #191F29;
    cursor: pointer;
    border: 0;
}

.pb-earn-calc__range-badge {
    min-width: 40px;
    padding: 8px 12px;
    background: #191F29;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
}

.pb-earn-calc__toggle {
    display: inline-flex;
    gap: 0;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

.pb-earn-calc__toggle-btn {
    border: 0;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #191F29;
    transition: background 0.2s, color 0.2s;
}

.pb-earn-calc__toggle-btn.is-active {
    background: #191F29;
    color: #fff;
}

.pb-earn-calc__col-output {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pb-earn-calc__hero-result {
    text-align: right;
}

.pb-earn-calc__weekly {
    display: block;
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
    color: #191F29;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.pb-earn-calc__weekly-sub {
    margin: 8px 0 0;
    font-size: 14px;
    color: #5c6470;
    line-height: 1.45;
}

.pb-earn-calc__base-line {
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #191F29;
    line-height: 1.4;
}

.pb-earn-calc__base-line #pbEarnMontantBase {
    color: #E63946;
}

.pb-earn-calc__presets-wrap .pb-earn-calc__label {
    text-align: right;
}

.pb-earn-calc__presets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.pb-earn-calc__preset {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 12px;
    padding: 12px 8px;
    font-size: 15px;
    font-weight: 700;
    color: #191F29;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.pb-earn-calc__preset:hover {
    border-color: #E63946;
    color: #E63946;
}

.pb-earn-calc__preset.is-active {
    background: #191F29;
    color: #fff;
    border-color: #191F29;
}

.pb-earn-calc__disclaimer {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: #8b939e;
    text-align: right;
}

@media (max-width: 991.98px) {
    .pb-earn-calc__panel-inner {
        grid-template-columns: 1fr;
    }

    .pb-earn-calc__hero-result,
    .pb-earn-calc__presets-wrap .pb-earn-calc__label {
        text-align: left;
    }

    .pb-earn-calc__disclaimer {
        text-align: left;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT MAP — Responsive
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .contact-map-wrap__iframe {
        height: 400px;
    }

    .contact-panels-below {
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .contact-map-wrap__iframe {
        height: 320px;
    }

    .contact-panels-below {
        margin-top: 20px;
    }

    .contact-glass-card {
        padding: 22px 18px;
    }

    .contact-map-wrap__badge {
        font-size: 13px;
        padding: 8px 16px;
        top: 12px;
        right: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICE LOCATION CAR — Titre noir
   ═══════════════════════════════════════════════════════════════════ */
.cta-section-3.service_location_car .section-heading .section-title {
    color: #191F29 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICE LOCATION CAR — Image véhicule uniforme
   ═══════════════════════════════════════════════════════════════════ */
.service_location_car .car-hire-panel__image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 0 30px 0;
    min-height: 360px;
}

.service_location_car .car-hire-panel__image img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    object-position: right center;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
}

/* ═══════════════════════════════════════════════════════════════════
   INDEX-3 PAGE — Texte justifié
   ═══════════════════════════════════════════════════════════════════ */
body.index-3-page {
    text-align: justify;
}

/* ═══════════════════════════════════════════════════════════════════
   INDEX-3 PAGE — Boutons arrondis
   ═══════════════════════════════════════════════════════════════════ */
body.index-3-page .bz-primary-btn,
body.index-3-page .bz-primary-btn-2,
body.index-3-page .bz-secondary-btn,
body.index-3-page .pb-bottom-bar__btn,
body.index-3-page .btn,
body.index-3-page button[type="submit"],
body.index-3-page .car-hire-tab {
    border-radius: 999px !important;
}

body.index-3-page .pb-cat-card__accordion-btn {
    border-radius: 12px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE SPECS — Car hire panel
   ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .service_location_car .car-hire-panel__body {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service_location_car .car-hire-panel__info {
        flex: 1 1 50%;
    }

    .service_location_car .car-hire-panel__image {
        flex: 1 1 50%;
    }

    .service_location_car .car-hire-panel__specs {
        flex: 1 1 100%;
    }
}

@media (max-width: 767.98px) {
    .service_location_car .car-hire-panel__body {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
    }

    .service_location_car .car-hire-panel__info {
        flex: none !important;
        padding: 20px !important;
    }

    .service_location_car .car-hire-panel__image {
        flex: none !important;
        min-height: 220px !important;
        padding: 10px 0 !important;
    }

    .service_location_car .car-hire-panel__image img {
        height: 200px !important;
    }

    .service_location_car .car-hire-panel__specs {
        flex: none !important;
        padding: 20px !important;
    }
}

/* ==========================================================================
   P&BEntreprise — règles responsive extraites des templates base.html / index-3.html
   ========================================================================== */

/* Header responsive :
   - Mobile (<= 767.98px) : logo + hamburger uniquement (bouton "Téléchargez l'appli" masqué, top-bar masquée)
   - Tablette (768–991.98px) : logo + bouton + hamburger, top-bar masquée
   - Petits laptops (992–1199.98px, ex. 1114x705) : header compacté sur une ligne, top-bar masquée
   - ≥1200px : top-bar sur une seule ligne avec marquee conservée */
@media only screen and (max-width: 767.98px) {
    .header .primary-header-inner .header-right-wrap .header-right .bz-primary-btn {
        display: none !important;
    }

    .header .top-bar {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .header .primary-header-inner .header-right-wrap .header-right .bz-primary-btn {
        display: inline-flex !important;
    }

    .header .top-bar {
        display: none !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .header .top-bar {
        display: none !important;
    }

    .header .primary-header-inner {
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 10px;
        padding: 10px 20px !important;
    }

    .header .primary-header-inner .inner-left {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        min-width: 0;
        gap: 15px;
    }

    .header .primary-header-inner .header-logo img {
        max-width: 100px !important;
    }

    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 8px !important;
    }

    .header .primary-header-inner .header-menu-wrap ul li a {
        font-size: 14px !important;
        padding: 20px 0 !important;
    }

    .header .primary-header-inner .header-right-wrap {
        flex-shrink: 0;
    }

    .header .primary-header-inner .header-right-wrap .header-right {
        gap: 8px;
    }

    .header .primary-header-inner .header-right-wrap .header-right .bz-primary-btn {
        padding: 10px 18px !important;
        font-size: 13px !important;
        white-space: nowrap;
    }
}

@media only screen and (min-width: 1200px) {
    .header-3 .top-bar .top-bar-inner {
        flex-wrap: nowrap !important;
        gap: 24px;
        align-items: center;
    }

    .header-3 .top-bar .top-bar-inner .top-bar-list {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 28px;
        min-width: 0;
        flex: 1 1 auto;
    }

    .header-3 .top-bar .top-bar-inner .top-bar-list li {
        white-space: nowrap;
    }

    .header-3 .top-bar .top-bar-inner .top-bar-list li:not(:last-of-type) {
        margin-right: 0 !important;
        padding-right: 0 !important;
        border-right: none !important;
    }

    .header-3 .top-bar .top-bar-inner .top-bar-list li .top-bar-location-marquee {
        flex: 0 1 auto;
    }

    .header-3 .top-bar .top-bar-inner .social-list {
        flex-shrink: 0;
    }
}

/* === Strength section : compteurs responsive unifiés ===
   Icône (rouge, compacte) à gauche, chiffre + label à droite. */
.strength-section--index3-stack .team-counter {
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    border-radius: 14px !important;
}

.strength-section--index3-stack .team-counter .icon {
    height: 52px !important;
    width: 52px !important;
    min-width: 52px !important;
    border-radius: 12px !important;
}

.strength-section--index3-stack .team-counter .icon i {
    font-size: 22px !important;
}

.strength-section--index3-stack .team-counter .icon img {
    max-width: 30px !important;
    max-height: 30px !important;
}

.strength-section--index3-stack .team-counter .content {
    min-width: 0;
}

.strength-section--index3-stack .team-counter .content .title {
    font-size: 24px !important;
    white-space: nowrap;
}

.strength-section--index3-stack .team-counter .content p {
    font-size: 11px !important;
    line-height: 1.2 !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .strength-section--index3-stack .team-counter {
        padding: 10px 12px !important;
        gap: 10px !important;
    }

    .strength-section--index3-stack .team-counter .icon {
        height: 44px !important;
        width: 44px !important;
        min-width: 44px !important;
        border-radius: 10px !important;
    }

    .strength-section--index3-stack .team-counter .icon i {
        font-size: 19px !important;
    }

    .strength-section--index3-stack .team-counter .content .title {
        font-size: 20px !important;
    }

    .strength-section--index3-stack .team-counter .content p {
        font-size: 10px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .strength-section--index3-stack .strength-content--index3-stack>.row.justify-content-center {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
    }

    .strength-section--index3-stack .strength-content--index3-stack>.row.justify-content-center>[class*="col-"] {
        flex: 1 1 0;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 767.98px) {
    .strength-section--index3-stack .strength-content--index3-stack>.row.justify-content-center {
        row-gap: 12px;
    }

    .strength-section--index3-stack .strength-content--index3-stack>.row.justify-content-center>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Mobile : images entièrement visibles sans débordement */
@media only screen and (max-width: 767.98px) {
    .about-section-3 .about-img-slide-in {
        overflow: hidden;
        text-align: center;
    }

    .about-section-3 .about-img-slide-in img {
        max-width: 85%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .strength-section--index3-stack .strength-man {
        max-width: 85%;
        margin: 0 auto;
        overflow: hidden;
    }

    .strength-section--index3-stack .strength-man .men {
        max-width: 100%;
        height: auto;
    }

    .team-section-3__mockup {
        max-height: 550px;
    }

    .about-img-wrap-4 {
        height: auto !important;
    }

    .about-img-wrap-4 .about-img {
        height: auto !important;
    }

    .about-img-wrap-4 .about-img img {
        width: 85% !important;
        height: auto !important;
        object-fit: contain !important;
        display: block;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 575.98px) {
    .about-section-3 .about-img-slide-in img {
        max-width: 80%;
    }

    .strength-section--index3-stack .strength-man {
        max-width: 80%;
    }

    .team-section-3__mockup {
        max-height: 450px;
    }

    .about-img-wrap-4 .about-img img {
        width: 80% !important;
    }
}

/* ----- P&B Blog (pb_site/blog.html) ----- */
.pb-blog-article-card.is-hidden {
    display: none !important;
}

.pb-blog-category-list .category-list li.active > a,
.pb-blog-category-list .category-list li.active > button {
    color: var(--bz-color-theme-primary, #EC281C);
}

.pb-blog-tag-list .tags li button.pb-blog-tag-btn {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    background-color: #f1f3f5 !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.pb-blog-tag-list .tags li button.pb-blog-tag-btn:hover:not(.is-active) {
    background-color: #e9ecef !important;
    color: #111 !important;
}

.pb-blog-tag-list .tags li button.pb-blog-tag-btn.is-active {
    background-color: #c62828 !important;
    color: #fff !important;
    border-color: #c62828 !important;
    box-shadow: 0 2px 6px rgba(198, 40, 40, 0.35);
}

#pbBlogArticleModal .modal-body img {
    max-height: 280px;
    object-fit: cover;
    width: 100%;
}

/* ----- P&B Services (pb_site/service.html) — palette rouge / blanc / noir ----- */
.pb-service-page {
    background: #fff;
    color: #111;
}

.pb-service-hero {
    padding: 72px 0 56px;
    border-bottom: 1px solid #e8e8e8;
}

.pb-service-hero__kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c62828;
    margin-bottom: 12px;
}

.pb-service-hero__title {
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0a0a0a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pb-service-hero__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #333;
    max-width: 640px;
    margin-bottom: 28px;
}

.pb-service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pb-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pb-service-btn--primary {
    background: #c62828;
    color: #fff !important;
    border: 2px solid #c62828;
}

.pb-service-btn--primary:hover {
    background: #111;
    border-color: #111;
    color: #fff !important;
    transform: translateY(-1px);
}

.pb-service-btn--ghost {
    background: #fff;
    color: #111 !important;
    border: 2px solid #111;
}

.pb-service-btn--ghost:hover {
    background: #111;
    color: #fff !important;
}

.pb-service-btn--inverse {
    background: #fff;
    color: #111 !important;
    border: 2px solid #fff;
}

.pb-service-btn--inverse:hover {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
}

.pb-service-section {
    padding: 72px 0;
}

.pb-service-section--alt {
    background: #fafafa;
}

.pb-service-section--tight {
    padding-top: 0;
    padding-bottom: 56px;
}

.pb-service-section__title {
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #0a0a0a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.pb-service-section__lead {
    color: #444;
    max-width: 720px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pb-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pb-service-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.pb-service-card__media {
    overflow: hidden;
}

.pb-service-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.pb-service-card__body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.pb-service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.pb-service-card__tagline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #c62828;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pb-service-card__models {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.pb-service-card__desc {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.55;
}

.pb-service-card__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.pb-service-card__toggle:hover {
    border-color: #c62828;
    background: #fff5f5;
}

.pb-service-card__collapse {
    margin-bottom: 12px;
}

.pb-service-card__list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: #333;
}

.pb-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #c62828 !important;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.pb-service-card__link:hover {
    color: #111 !important;
    border-bottom-color: #111;
}

.pb-service-promo {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pb-service-promo:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.pb-service-promo__media {
    overflow: hidden;
}

.pb-service-promo__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.pb-service-promo__body {
    padding: 1.25rem 1.35rem 1.5rem;
}

.pb-service-promo__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.pb-service-promo__desc {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.55;
    margin-bottom: 12px;
}

.pb-service-article-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pb-service-article-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.pb-service-article-card__media {
    overflow: hidden;
}

.pb-service-article-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.pb-service-article-card__body {
    padding: 1.15rem 1.35rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pb-service-article-card__meta {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.pb-service-article-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pb-service-article-card__title a {
    color: #0a0a0a !important;
    text-decoration: none;
    transition: color 0.2s;
}

.pb-service-article-card__title a:hover {
    color: #c62828 !important;
}

.pb-service-article-card__excerpt {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 12px;
}

.pb-service-article-card__more {
    font-weight: 600;
    font-size: 0.9rem;
    color: #c62828 !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pb-service-article-card__more:hover {
    color: #111 !important;
}

.pb-service-info {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.25rem 1.35rem 1.5rem;
    height: 100%;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.pb-service-info:hover {
    border-color: #c62828;
    box-shadow: 0 10px 32px rgba(198, 40, 40, 0.12);
}

.pb-service-info__media {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.pb-service-info__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.pb-service-info__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.pb-service-info__desc {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 10px;
}

.pb-service-qr-wrap {
    padding-bottom: 56px;
}

.pb-service-qr {
    background: #0a0a0a;
    color: #fff;
    border-radius: 16px;
    padding: 40px 36px;
}

.pb-service-qr__kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.pb-service-qr__title {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.pb-service-qr__text {
    color: #e0e0e0;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 520px;
}

.pb-service-qr__figure {
    display: inline-block;
}

.pb-service-qr__img {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.pb-service-qr__caption {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.pb-service-cta-tile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 24px;
    border-bottom: 2px solid #0a0a0a;
    color: #0a0a0a !important;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pb-service-cta-tile:hover {
    background: #c62828;
    color: #fff !important;
    border-bottom-color: #c62828;
}

.pb-service-reveal {
    opacity: 1;
    transform: none;
}

.pb-service-reveal.pb-service-reveal--pending {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.pb-service-reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.pb-service-page .about-section-4 .sub-heading .left-shape,
.pb-service-page .about-cta .sub-heading .left-shape {
    background: #c62828;
}

/* Cartes infos service : bordure alignée sur le thème */
.about-content-4--bordered {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.35rem 1.5rem;
    background: #fff;
}

/* Carte QR — fond noir, texte clair, accents rouges (page Services) */
.pb-service-page .pb-service-qr-section {
    background: transparent;
}

.pb-service-page .pb-service-qr-card {
    background: #0a0a0a;
    color: #fff;
    border-radius: 18px;
    padding: clamp(28px, 4vw, 52px) clamp(22px, 3vw, 48px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pb-service-page .pb-service-qr-card__kicker {
    color: #ff5252 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.pb-service-page .pb-service-qr-card .sub-heading .left-shape {
    background: #c62828;
}

.pb-service-page .pb-service-qr-card__title,
.pb-service-page .pb-service-qr-card .section-title {
    color: #fff !important;
}

.pb-service-page .pb-service-qr-card__lead {
    color: #c8c8c8 !important;
    line-height: 1.65;
    max-width: 36rem;
    margin-bottom: 0;
}

.pb-service-page .pb-service-qr-card__figure {
    text-align: center;
}

@media (min-width: 992px) {
    .pb-service-page .pb-service-qr-card__figure {
        text-align: right;
    }
}

.pb-service-page .pb-service-qr-card__qimg {
    max-width: 260px;
    width: 100%;
    height: auto;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .pb-service-page .pb-service-qr-card__qimg {
        margin-left: auto;
        margin-right: 0;
    }
}

.pb-service-page .pb-service-qr-card__caption {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff !important;
    line-height: 1.35;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .pb-service-page .pb-service-qr-card__caption {
        margin-left: auto;
        margin-right: 0;
    }
}