/*
-----------------------------------------------------------------------------------

CSS INDEX
=================== 
01. common
02. header
03. hero
04. about
05. choose
06. service
07. project
08. price
09. team
10. testimonial
11. video
12. blog
13. process
14. section
15. faq
16. error
17. breadcrumb
18. sidebar
19. contact
20. button
21. footer


******************************************************* 
*************************************************************** */
/*
************
*************************
01. common
******************************************************* 
*************************************************************** */
/* ///////////////////////////////////////////////////////////
Responsive Layout Declaration 
/////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////
Font Family Declaration 
/////////////////////////////////////////////////////////// */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&amp;family=Inter:wght@300;400;500;600;700&amp;family=Marcellus&amp;display=swap");
/* ///////////////////////////////////////////////////////////
Color Declaration 
/////////////////////////////////////////////////////////// */
:root {
    --clr-common-white: #FFFFFF;
    --clr-common-black: #000;
    --clr-common-primary: #28E98C;
    --clr-common-gray: #333333;
    --clr-common-border: #525252;
    --clr-body-heading: #000;
    --clr-body-text: rgba(0, 0, 0, 0.7);
    --clr-color-orange: #FCAA04;
    --clr-color-orange-2: #ffd139;
    --clr-color-orange-3: #FFCD00;
    --clr-theme-primary: #008B5D;
    --clr-theme-primary-2: #077d36;
    --clr-theme-primary-4: #4F18A6;
    --clr-theme-primary-5: #F94140;
    --clr-bg-gray: #E3E8EA;
    --clr-bg-gray-2: #F1F1F1;
    --clr-bg-gray-3: #EEEEEE;
}

/* ///////////////////////////////////////////////////////////
Mixin Declaration 
/////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////
Animation Declaration 
/////////////////////////////////////////////////////////// */
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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

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

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

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

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

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

@-webkit-keyframes reveal {
    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

@keyframes reveal {
    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

@-webkit-keyframes wcfadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

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

@keyframes wcfadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

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

@-webkit-keyframes wcSpinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes wcSpinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--clr-body-text);
    font-size: 16px;
    line-height: 26px;
}

.img, img {
    max-width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

a,
.button, button {
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

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

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

a,
button {
    color: inherit;
    outline: medium none;
}

    button:focus, input:focus, input:focus, textarea, textarea:focus {
        outline: 0;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "DM Sans", sans-serif;
}

    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a {
        color: inherit;
    }

h1 {
    font-size: 80px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--clr-body-text);
}

ul {
    margin: 0;
    padding: 0;
}

hr {
    border-top: 0 none;
    padding: 0;
    opacity: 1;
}

label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

*::-moz-selection {
    background-color: var(--clr-theme-primary-2);
    color: var(--clr-common-white);
    text-shadow: none;
}

::-moz-selection {
    background-color: var(--clr-theme-primary-2);
    color: var(--clr-common-white);
    text-shadow: none;
}

::selection {
    background-color: var(--clr-theme-primary-2);
    color: var(--clr-common-white);
    text-shadow: none;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    opacity: 0;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    opacity: 0;
}

input:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
    opacity: 0;
}

input:focus::placeholder, textarea:focus::placeholder {
    opacity: 0;
}

input::-webkit-input-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

input:-moz-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

input::-moz-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

input:-ms-input-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

textarea::-webkit-input-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

textarea:-moz-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

textarea::-moz-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

textarea:-ms-input-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

/* <<<<<<<    Common Classes   >>>>>>>>> */
.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

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

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

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

/* <<<<<<<    Overlay   >>>>>>>>> */
[data-overlay] {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

    [data-overlay]::before {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        content: "";
    }

/* <<<<<<<    Margin & Padding     >>>>>>>>> */
.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}

.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;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    --bs-gutter-x: 30px;
}

    .row.g-0 {
        --bs-gutter-x: 0;
    }

@media (min-width: 1400px) {
    .container {
        max-width: 1326px;
    }

        .container.container-full-1 {
            max-width: 1326px;
        }
}

@media (min-width: 1600px) {
    .container.container-full-1 {
        max-width: 1750px;
    }
}

@media (min-width: 1400px) {
    .custom_width {
        max-width: 1660px;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }
}

i[class^=flaticon-]:before, i[class*=" flaticon-"]:before {
    line-height: inherit;
}

/*---------------------------------------------------*/
/*          mouse cursor animation
/*---------------------------------------------------*/
.cursor {
    position: fixed;
    left: 0;
    pointer-events: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: var(--white);
    background-color: var(--clr-common-primary);
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 999;
    opacity: 0;
    mix-blend-mode: hard-light;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    .cursor.large {
        width: 180px;
        height: 180px;
        text-align: center;
        font-size: 19px;
        font-weight: 400;
    }

.cursor1 {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--clr-common-primary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.15s;
    transition: 0.15s;
    z-index: 999;
    mix-blend-mode: difference;
}

@media (max-width: 1200px) {
    .cursor1 {
        display: none;
    }
}

.cursor1.hide {
    opacity: 0;
    visibility: hidden;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--clr-common-primary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 999;
    mix-blend-mode: difference;
}

.eb-slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .eb-slider-navigation div {
        height: 30px;
        border-radius: 56px;
        border: 1px solid rgba(16, 16, 16, 0.14);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 24px;
        cursor: pointer;
    }

        .eb-slider-navigation div svg {
            color: #101010;
        }

.loader-wrap {
    height: 100vh;
    background: var(--clr-theme-primary-2);
    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: fixed;
    width: 100%;
    z-index: 99;
}

.loader {
    position: relative;
    width: 75px;
    height: 100px;
    z-index: 9;
}

.loader__bar {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 50%;
    background: #fff;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

    .loader__bar:nth-child(1) {
        left: 0px;
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
        -webkit-animation: barUp1 4s infinite;
        animation: barUp1 4s infinite;
    }

    .loader__bar:nth-child(2) {
        left: 15px;
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
        -webkit-animation: barUp2 4s infinite;
        animation: barUp2 4s infinite;
    }

    .loader__bar:nth-child(3) {
        left: 30px;
        -webkit-transform: scale(1, 0.6);
        transform: scale(1, 0.6);
        -webkit-animation: barUp3 4s infinite;
        animation: barUp3 4s infinite;
    }

    .loader__bar:nth-child(4) {
        left: 45px;
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
        -webkit-animation: barUp4 4s infinite;
        animation: barUp4 4s infinite;
    }

    .loader__bar:nth-child(5) {
        left: 60px;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-animation: barUp5 4s infinite;
        animation: barUp5 4s infinite;
    }

.loader__ball {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: ball 4s infinite;
    animation: ball 4s infinite;
}

@-webkit-keyframes ball {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    5% {
        -webkit-transform: translate(8px, -14px);
        transform: translate(8px, -14px);
    }

    10% {
        -webkit-transform: translate(15px, -10px);
        transform: translate(15px, -10px);
    }

    17% {
        -webkit-transform: translate(23px, -24px);
        transform: translate(23px, -24px);
    }

    20% {
        -webkit-transform: translate(30px, -20px);
        transform: translate(30px, -20px);
    }

    27% {
        -webkit-transform: translate(38px, -34px);
        transform: translate(38px, -34px);
    }

    30% {
        -webkit-transform: translate(45px, -30px);
        transform: translate(45px, -30px);
    }

    37% {
        -webkit-transform: translate(53px, -44px);
        transform: translate(53px, -44px);
    }

    40% {
        -webkit-transform: translate(60px, -40px);
        transform: translate(60px, -40px);
    }

    50% {
        -webkit-transform: translate(60px, 0);
        transform: translate(60px, 0);
    }

    57% {
        -webkit-transform: translate(53px, -14px);
        transform: translate(53px, -14px);
    }

    60% {
        -webkit-transform: translate(45px, -10px);
        transform: translate(45px, -10px);
    }

    67% {
        -webkit-transform: translate(37px, -24px);
        transform: translate(37px, -24px);
    }

    70% {
        -webkit-transform: translate(30px, -20px);
        transform: translate(30px, -20px);
    }

    77% {
        -webkit-transform: translate(22px, -34px);
        transform: translate(22px, -34px);
    }

    80% {
        -webkit-transform: translate(15px, -30px);
        transform: translate(15px, -30px);
    }

    87% {
        -webkit-transform: translate(7px, -44px);
        transform: translate(7px, -44px);
    }

    90% {
        -webkit-transform: translate(0, -40px);
        transform: translate(0, -40px);
    }

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

@keyframes ball {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    5% {
        -webkit-transform: translate(8px, -14px);
        transform: translate(8px, -14px);
    }

    10% {
        -webkit-transform: translate(15px, -10px);
        transform: translate(15px, -10px);
    }

    17% {
        -webkit-transform: translate(23px, -24px);
        transform: translate(23px, -24px);
    }

    20% {
        -webkit-transform: translate(30px, -20px);
        transform: translate(30px, -20px);
    }

    27% {
        -webkit-transform: translate(38px, -34px);
        transform: translate(38px, -34px);
    }

    30% {
        -webkit-transform: translate(45px, -30px);
        transform: translate(45px, -30px);
    }

    37% {
        -webkit-transform: translate(53px, -44px);
        transform: translate(53px, -44px);
    }

    40% {
        -webkit-transform: translate(60px, -40px);
        transform: translate(60px, -40px);
    }

    50% {
        -webkit-transform: translate(60px, 0);
        transform: translate(60px, 0);
    }

    57% {
        -webkit-transform: translate(53px, -14px);
        transform: translate(53px, -14px);
    }

    60% {
        -webkit-transform: translate(45px, -10px);
        transform: translate(45px, -10px);
    }

    67% {
        -webkit-transform: translate(37px, -24px);
        transform: translate(37px, -24px);
    }

    70% {
        -webkit-transform: translate(30px, -20px);
        transform: translate(30px, -20px);
    }

    77% {
        -webkit-transform: translate(22px, -34px);
        transform: translate(22px, -34px);
    }

    80% {
        -webkit-transform: translate(15px, -30px);
        transform: translate(15px, -30px);
    }

    87% {
        -webkit-transform: translate(7px, -44px);
        transform: translate(7px, -44px);
    }

    90% {
        -webkit-transform: translate(0, -40px);
        transform: translate(0, -40px);
    }

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

@-webkit-keyframes barUp1 {
    0% {
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
    }

    40% {
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
    }

    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    90% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
    }
}

@keyframes barUp1 {
    0% {
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
    }

    40% {
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
    }

    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    90% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
    }
}

@-webkit-keyframes barUp2 {
    0% {
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
    }

    40% {
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
    }

    50% {
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
    }

    90% {
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
    }

    100% {
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
    }
}

@keyframes barUp2 {
    0% {
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
    }

    40% {
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
    }

    50% {
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
    }

    90% {
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
    }

    100% {
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
    }
}

@-webkit-keyframes barUp3 {
    0% {
        -webkit-transform: scale(1, 0.6);
        transform: scale(1, 0.6);
    }

    100% {
        -webkit-transform: scale(1, 0.6);
        transform: scale(1, 0.6);
    }
}

@keyframes barUp3 {
    0% {
        -webkit-transform: scale(1, 0.6);
        transform: scale(1, 0.6);
    }

    100% {
        -webkit-transform: scale(1, 0.6);
        transform: scale(1, 0.6);
    }
}

@-webkit-keyframes barUp4 {
    0% {
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
    }

    40% {
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
    }

    50% {
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
    }

    90% {
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
    }

    100% {
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
    }
}

@keyframes barUp4 {
    0% {
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
    }

    40% {
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
    }

    50% {
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
    }

    90% {
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
    }

    100% {
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
    }
}

@-webkit-keyframes barUp5 {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    40% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
    }

    90% {
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes barUp5 {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    40% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
    }

    90% {
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
/* ///////////////////////////////////////////////////////////
02. header
/////////////////////////////////////////////////////////// */
.eb-header-area {
    position: absolute;
    left: 0;
    top: -50px;
    right: 0;
    z-index: 9;
}

.eb-header-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;
    padding: 0 24px;
    gap: 20px;
    height: 50px;
}

.eb-header-top-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    max-width: 135px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .eb-header-top-left span {
        color: #000;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-transform: uppercase;
    }

.eb-header-top-right {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .eb-header-top-right span {
        color: #000;
        font-size: 15px;
        font-weight: 500;
        border-radius: 30px;
        border: 1px solid rgba(0, 0, 0, 0.16);
        background: rgba(18, 23, 29, 0);
        height: 30px;
        padding: 0 15px;
        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;
    }

.eb-header-top-center .ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 44px;
}

    .eb-header-top-center .ul .eb-header-center-item {
        color: rgba(0, 0, 0, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: normal;
        text-transform: uppercase;
    }

.eb-header-main {
    padding: 20px 54px 20px;
    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;
    gap: 20px;
}

.eb-header-logo {
    max-width: 155px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.eb-header-menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    gap: 40px;
}

    .eb-header-menu nav ul .menu-has-child {
        position: relative;
        z-index: 99;
        text-align: start;
    }

    .eb-header-menu nav ul li:is(.menu-has-child) > a::after {
        display: inline-block;
        font-family: "Font Awesome 6 Pro";
        content: "\f107";
        font-size: 12px;
        font-weight: 500;
        margin-left: 5px;
    }

    .eb-header-menu nav ul li a {
        color: #797B7D;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        display: block;
        height: 44px;
        line-height: 44px;
    }

    .eb-header-menu nav ul li .submenu {
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        width: 240px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
        -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
        box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
        display: block;
    }

        .eb-header-menu nav ul li .submenu li {
            display: block;
            margin-right: 0;
            position: relative;
            z-index: 99;
        }

            .eb-header-menu nav ul li .submenu li a {
                padding: 12px 25px;
                color: var(--clr-body-heading);
                -webkit-transition: all 0.3s linear 0s;
                transition: all 0.3s linear 0s;
                height: auto;
                line-height: 20px;
            }

            .eb-header-menu nav ul li .submenu li .submenu {
                left: 100%;
                top: 0;
            }

            .eb-header-menu nav ul li .submenu li:hover > a {
                background-color: var(--clr-theme-primary);
                color: #fff;
            }

            .eb-header-menu nav ul li .submenu li:not(:last-child) {
                border-bottom: 1px solid #f2f2f2;
            }

    .eb-header-menu nav ul li:hover > .submenu {
        opacity: 1;
        visibility: visible;
    }

    .eb-header-menu nav ul li:hover > a {
        color: var(--clr-theme-primary);
    }

.eb-header-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.eb-header-action-cart {
    position: relative;
    z-index: 1;
}

    .eb-header-action-cart svg {
        color: #000;
        width: 18px;
        height: 19px;
    }

    .eb-header-action-cart span {
        color: #FFF;
        font-size: 11px;
        font-weight: 700;
        background: #000;
        width: 20px;
        height: 20px;
        display: -ms-grid;
        display: grid;
        place-items: center;
        border-radius: 50%;
        position: absolute;
        left: 11px;
        bottom: 11px;
        line-height: 1;
    }

.eb-header-action-search a i {
    color: #000;
    font-size: 18px;
}

.eb-menubar {
    width: 50px;
    height: 50px;
    background: rgb(207, 212, 214);
    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%;
    cursor: pointer;
}

    .eb-menubar span {
        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-align: end;
        -ms-flex-align: end;
        align-items: end;
        gap: 4px;
    }

        .eb-menubar span span {
            width: 21px;
            height: 2px;
            border-radius: 4px;
            background: #000;
            display: block;
            text-align: center;
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

            .eb-menubar span span:first-child {
                width: 18px;
            }

            .eb-menubar span span:last-child {
                width: 14px;
            }

    .eb-menubar:hover span span:first-child, .eb-menubar:hover span span:last-child {
        width: 21px;
    }

.eb_h2-header-area {
    background-color: #E9EAEB;
}

.eb_h2-header-main {
    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;
    gap: 20px;
    border-bottom: 1px solid rgba(16, 16, 16, 0.1);
    max-width: 1660px;
    padding: 20px 30px 20px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .eb_h2-header-main {
        padding: 15px 15px 15px;
    }
}

.eb_h2-header-logo {
    max-width: 155px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .eb_h2-header-menu {
        display: none;
    }
}

.eb_h2-header-menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
}

@media (max-width: 1199px) {
    .eb_h2-header-menu nav ul {
        gap: 30px;
    }
}

.eb_h2-header-menu nav ul .menu-has-child {
    position: relative;
    z-index: 99;
    text-align: start;
}

.eb_h2-header-menu nav ul li:is(.menu-has-child) > a::after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
    font-size: 12px;
    font-weight: 500;
    margin-left: 5px;
}

.eb_h2-header-menu nav ul li a {
    color: #797B7D;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    height: 44px;
    line-height: 44px;
}

.eb_h2-header-menu nav ul li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
    box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
    display: block;
}

    .eb_h2-header-menu nav ul li .submenu li {
        display: block;
        margin-right: 0;
        position: relative;
        z-index: 99;
    }

        .eb_h2-header-menu nav ul li .submenu li a {
            padding: 12px 25px;
            color: var(--clr-body-heading);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
            height: auto;
            line-height: 20px;
        }

        .eb_h2-header-menu nav ul li .submenu li .submenu {
            left: 100%;
            top: 0;
        }

        .eb_h2-header-menu nav ul li .submenu li:hover > a {
            background-color: var(--clr-theme-primary-2);
            color: #fff;
        }

        .eb_h2-header-menu nav ul li .submenu li:not(:last-child) {
            border-bottom: 1px solid #f2f2f2;
        }

.eb_h2-header-menu nav ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
}

.eb_h2-header-menu nav ul li:hover > a {
    color: var(--clr-theme-primary-2);
}

.eb_h2-header-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

    .eb_h2-header-action .eb_h3-theme-btn {
        padding: 0 25px;
    }

@media (max-width: 575px) {
    .eb_h2-header-action .eb_h3-theme-btn {
        display: none;
    }
}

.eb_h3-header-top {
    background: #101C1F;
    position: relative;
    z-index: 1;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991px) {
    .eb_h3-header-top {
        display: none;
    }
}

.eb_h3-header-top::before {
    position: absolute;
    top: 0;
    right: 640px;
    content: "";
    height: 40px;
    width: 30px;
    background: #101C1F;
    -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
    clip-path: polygon(100% 0, 0 0, 0 100%);
}

@media (max-width: 1599px) {
    .eb_h3-header-top::before {
        right: 440px;
    }
}

@media (max-width: 1399px) {
    .eb_h3-header-top::before {
        right: 400px;
    }
}

@media (max-width: 1199px) {
    .eb_h3-header-top::before {
        right: 300px;
    }
}

.eb_h3-header-top::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 670px;
    background: #28444B;
    content: "";
    height: 40px;
    z-index: -1;
}

@media (max-width: 1599px) {
    .eb_h3-header-top::after {
        width: 470px;
    }
}

@media (max-width: 1399px) {
    .eb_h3-header-top::after {
        width: 430px;
    }
}

@media (max-width: 1199px) {
    .eb_h3-header-top::after {
        width: 330px;
    }
}

.eb_h3-header-top-address ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
}

    .eb_h3-header-top-address ul li {
        position: relative;
        z-index: 1;
    }

        .eb_h3-header-top-address ul li::after {
            position: absolute;
            right: -25px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            content: "";
            height: 18px;
            width: 1px;
            background: rgba(255, 255, 255, 0.14);
        }

        .eb_h3-header-top-address ul li:last-child::after {
            display: none;
        }

        .eb_h3-header-top-address ul li a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            font-weight: 500;
            line-height: normal;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 10px;
        }

            .eb_h3-header-top-address ul li a i {
                color: #fff;
            }

.eb_h3-header-top-social ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

    .eb_h3-header-top-social ul li a {
        color: rgba(255, 255, 255, 0.5);
        font-size: 16px;
    }

        .eb_h3-header-top-social ul li a:hover {
            color: #fff;
        }

.eb_h3-header-main {
    padding: 15px 0;
    background-color: #fff;
}

.eb_h4-header-area {
    background-color: #F0F0F0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 5;
}

.eb_h4-header-main {
    max-width: 1660px;
    padding: 20px 30px 20px;
    margin-left: auto;
    margin-right: auto;
    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;
    gap: 20px;
}

@media (max-width: 991px) {
    .eb_h4-header-main {
        padding: 15px 15px 15px;
    }
}

.eb_h4-header-logo {
    max-width: 155px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .eb_h4-header-menu {
        display: none;
    }
}

.eb_h4-header-menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    gap: 40px;
}

@media (max-width: 1199px) {
    .eb_h4-header-menu nav ul {
        gap: 30px;
    }
}

.eb_h4-header-menu nav ul .menu-has-child {
    position: relative;
    z-index: 99;
    text-align: start;
}

.eb_h4-header-menu nav ul li:is(.menu-has-child) > a::after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
    font-size: 12px;
    font-weight: 500;
    margin-left: 5px;
}

.eb_h4-header-menu nav ul li a {
    color: #797B7D;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    height: 44px;
    line-height: 44px;
}

.eb_h4-header-menu nav ul li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
    box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
    display: block;
}

    .eb_h4-header-menu nav ul li .submenu li {
        display: block;
        margin-right: 0;
        position: relative;
        z-index: 99;
    }

        .eb_h4-header-menu nav ul li .submenu li a {
            padding: 12px 25px;
            color: var(--clr-body-heading);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
            height: auto;
            line-height: 20px;
        }

        .eb_h4-header-menu nav ul li .submenu li .submenu {
            left: 100%;
            top: 0;
        }

        .eb_h4-header-menu nav ul li .submenu li:hover > a {
            background-color: var(--clr-theme-primary-2);
            color: #fff;
        }

        .eb_h4-header-menu nav ul li .submenu li:not(:last-child) {
            border-bottom: 1px solid #f2f2f2;
        }

.eb_h4-header-menu nav ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
}

.eb_h4-header-menu nav ul li:hover > a {
    color: var(--clr-theme-primary-2);
}

.eb_h4-header-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

    .eb_h4-header-action .h4_header-btn {
        color: #000;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: normal;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 36px;
        border-radius: 30px;
        border: 1px solid rgba(0, 0, 0, 0.14);
        padding: 0 20px;
    }

        .eb_h4-header-action .h4_header-btn:hover {
            background-color: var(--clr-theme-primary-4);
            border-color: var(--clr-theme-primary-4);
            color: #fff;
        }

@media (max-width: 480px) {
    .eb_h4-header-action .h4_header-btn {
        display: none;
    }
}

.eb_h4-menubar {
    width: 36px;
    height: 36px;
    background: #000;
    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%;
    cursor: pointer;
}

    .eb_h4-menubar span {
        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-align: end;
        -ms-flex-align: end;
        align-items: end;
        gap: 3px;
    }

        .eb_h4-menubar span span {
            width: 17px;
            height: 2px;
            border-radius: 4px;
            background: #fff;
            display: block;
            text-align: center;
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

            .eb_h4-menubar span span:first-child {
                width: 13px;
            }

            .eb_h4-menubar span span:last-child {
                width: 9px;
            }

    .eb_h4-menubar:hover span span:first-child, .eb_h4-menubar:hover span span:last-child {
        width: 17px;
    }

.eb_h5-header-area {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 9;
    padding: 20px;
    padding-bottom: 0;
}

.eb_h5-header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.eb_h5-header-logo {
    background: #fff;
    padding: 12.5px 14px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: relative;
    z-index: 1;
    left: -56px;
    top: 56px;
}

@media (max-width: 767px) {
    .eb_h5-header-logo {
        -webkit-transform: unset;
        transform: unset;
        left: 0;
        top: 0;
        padding: 10px 10px;
    }
}

@media (max-width: 767px) {
    .eb_h5-header-logo img {
        max-width: 120px;
    }
}

.eb_h5-header-menu {
    margin-top: 35px;
}

@media (max-width: 991px) {
    .eb_h5-header-menu {
        display: none;
    }
}

.eb_h5-header-menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    gap: 28px;
}

    .eb_h5-header-menu nav ul .menu-has-child {
        position: relative;
        z-index: 99;
        text-align: start;
    }

    .eb_h5-header-menu nav ul li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 21px;
        padding: 0 6px;
        color: #D0D0D0;
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 10px;
    }

    .eb_h5-header-menu nav ul li .submenu {
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        width: 240px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
        -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
        box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
        display: block;
    }

        .eb_h5-header-menu nav ul li .submenu li {
            display: block;
            margin-right: 0;
            position: relative;
            z-index: 99;
        }

            .eb_h5-header-menu nav ul li .submenu li a {
                padding: 12px 25px;
                color: var(--clr-body-heading);
                -webkit-transition: all 0.3s linear 0s;
                transition: all 0.3s linear 0s;
                height: auto;
                line-height: 20px;
                margin-bottom: 0;
            }

            .eb_h5-header-menu nav ul li .submenu li .submenu {
                left: 100%;
                top: 0;
            }

            .eb_h5-header-menu nav ul li .submenu li:hover > a {
                background-color: var(--clr-theme-primary-5);
                color: #fff;
            }

            .eb_h5-header-menu nav ul li .submenu li:not(:last-child) {
                border-bottom: 1px solid #f2f2f2;
            }

    .eb_h5-header-menu nav ul li:hover > .submenu {
        opacity: 1;
        visibility: visible;
    }

    .eb_h5-header-menu nav ul li:hover > a {
        background-color: var(--clr-theme-primary-5);
        color: #fff;
    }

.eb_h5-header-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

.eb_h5-header-btn {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    padding: 0 25px;
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    gap: 6px;
}

@media (max-width: 575px) {
    .eb_h5-header-btn {
        display: none;
    }
}

.eb_h5-header-btn:hover {
    background-color: var(--clr-theme-primary-5);
    color: #fff;
}

.eb_inner-header-area {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 9;
    padding: 0 24px;
    border-top: 24px solid #fff;
}

.eb_inner-header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.eb_inner-header-logo {
    background: #fff;
    padding: 12.5px 14px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: relative;
    z-index: 1;
    left: -54px;
    top: 55px;
}

@media (max-width: 767px) {
    .eb_inner-header-logo {
        -webkit-transform: unset;
        transform: unset;
        left: 0;
        top: 0;
        padding: 10px 10px;
    }
}

@media (max-width: 767px) {
    .eb_inner-header-logo img {
        max-width: 120px;
    }
}

.eb_inner-header-menu {
    margin-top: 35px;
}

@media (max-width: 991px) {
    .eb_inner-header-menu {
        display: none;
    }
}

.eb_inner-header-menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    gap: 28px;
}

    .eb_inner-header-menu nav ul .menu-has-child {
        position: relative;
        z-index: 99;
        text-align: start;
    }

    .eb_inner-header-menu nav ul li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 21px;
        padding: 0 6px;
        color: #797B7D;
        color: rgba(0, 0, 0, 0.7);
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 10px;
    }

    .eb_inner-header-menu nav ul li .submenu {
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        width: 240px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
        -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
        box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
        display: block;
    }

        .eb_inner-header-menu nav ul li .submenu li {
            display: block;
            margin-right: 0;
            position: relative;
            z-index: 99;
        }

            .eb_inner-header-menu nav ul li .submenu li a {
                padding: 12px 25px;
                color: rgba(0, 0, 0, 0.7);
                -webkit-transition: all 0.3s linear 0s;
                transition: all 0.3s linear 0s;
                height: auto;
                line-height: 20px;
                margin-bottom: 0;
            }

            .eb_inner-header-menu nav ul li .submenu li .submenu {
                left: 100%;
                top: 0;
            }

            .eb_inner-header-menu nav ul li .submenu li:hover > a {
                background-color: var(--clr-theme-primary-2);
                color: #fff;
            }

            .eb_inner-header-menu nav ul li .submenu li:not(:last-child) {
                border-bottom: 1px solid #f2f2f2;
            }

    .eb_inner-header-menu nav ul li:hover > .submenu {
        opacity: 1;
        visibility: visible;
    }

    .eb_inner-header-menu nav ul li:hover > a {
        background-color: var(--clr-theme-primary-2);
        color: #fff;
    }

.eb_inner-header-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

.eb_inner-header-btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    padding: 0 25px;
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    gap: 6px;
}

    .eb_inner-header-btn:hover {
        background-color: var(--clr-theme-primary-2);
        color: #fff;
    }

@media (max-width: 575px) {
    .eb_inner-header-btn {
        display: none;
    }
}

.eb_inner-header-menubar {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    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;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

@media (max-width: 991px) {
    .eb_inner-header-menubar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.eb_inner-header-menubar span {
    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-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 3px;
}

    .eb_inner-header-menubar span span {
        width: 17px;
        height: 2px;
        border-radius: 4px;
        background: #000;
        display: block;
        text-align: center;
        -webkit-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

        .eb_inner-header-menubar span span:first-child {
            width: 13px;
        }

        .eb_inner-header-menubar span span:last-child {
            width: 9px;
        }

.eb_inner-header-menubar:hover span span:first-child, .eb_inner-header-menubar:hover span span:last-child {
    width: 17px;
}

/* ///////////////////////////////////////////////////////////
03. hero
/////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////
Hero CSS o1 Start
/////////////////////////////////////////////////////////// */
.eb-hero-single {
    background: #E3E8EA;
    margin-left: 24px;
    margin-right: 24px;
    border-radius: 30px;
    padding-top: 156px;
    padding-bottom: 115px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.eb-hero-img {
    margin-left: 136px;
    margin-right: 160px;
    margin-top: -67px;
}

    .eb-hero-img img {
        width: 100%;
    }

.eb-hero-content-subtitle {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
    padding-left: 16px;
}

    .eb-hero-content-subtitle::before {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        content: "";
        width: 8px;
        height: 8px;
        background-color: var(--clr-theme-primary);
        border-radius: 50%;
    }

.eb-hero-content-title {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 70px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.eb-hero-content-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;
    margin-right: 80px;
}

    .eb-hero-content-bottom p {
        color: #000;
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        max-width: 740px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .eb-hero-content-bottom a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .eb-hero-content-bottom a span {
            background: var(--clr-theme-primary);
            color: #FFF;
            font-family: "Inter", sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            border-radius: 14px;
            height: 54px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 0 34px;
        }

            .eb-hero-content-bottom a span:last-child {
                padding: 0 20px;
            }

.eb-hero-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 18px;
}

.eb-hero-brand {
    margin-top: -75px;
}

.eb_h2-hero-single {
    background: #E9EAEB;
    padding-top: 140px;
    padding-bottom: 235px;
    position: relative;
    z-index: 1;
}

.eb_h2-hero-shape-1 {
    position: absolute;
    top: 6%;
    left: 42%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .eb_h2-hero-shape-1 {
        display: none;
    }
}

.eb_h2-hero-shape-2 {
    position: absolute;
    left: 12%;
    bottom: 39%;
}

@media (max-width: 767px) {
    .eb_h2-hero-shape-2 {
        display: none;
    }
}

.eb_h2-hero-content {
    position: relative;
    z-index: 1;
}

.eb_h2-hero-content-title {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(16, 16, 16, 0.2);
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 480px) {
    .eb_h2-hero-content-title {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.eb_h2-hero-content-title::after {
    position: absolute;
    right: 270px;
    top: 0;
    height: 100%;
    width: 1px;
    content: "";
    background-color: rgba(16, 16, 16, 0.2);
}

@media (max-width: 1399px) {
    .eb_h2-hero-content-title::after {
        right: 240px;
    }
}

@media (max-width: 991px) {
    .eb_h2-hero-content-title::after {
        right: 200px;
    }
}

@media (max-width: 767px) {
    .eb_h2-hero-content-title::after {
        right: 110px;
    }
}

@media (max-width: 575px) {
    .eb_h2-hero-content-title::after {
        display: none;
    }
}

.eb_h2-hero-content-title h1 {
    color: #101010;
    display: block;
    font-size: 100px;
    line-height: 1;
    font-family: "Marcellus", serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .eb_h2-hero-content-title h1 {
        font-size: 85px;
    }
}

@media (max-width: 1199px) {
    .eb_h2-hero-content-title h1 {
        font-size: 65px;
    }
}

@media (max-width: 991px) {
    .eb_h2-hero-content-title h1 {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .eb_h2-hero-content-title h1 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .eb_h2-hero-content-title h1 {
        font-size: 45px;
    }
}

@media (max-width: 480px) {
    .eb_h2-hero-content-title h1 {
        font-size: 30px;
    }
}

.eb_h2-hero-content-title-2 {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(16, 16, 16, 0.2);
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(16, 16, 16, 0.2);
}

    .eb_h2-hero-content-title-2 h1 {
        color: #101010;
        display: block;
        font-size: 100px;
        line-height: 1;
        font-family: "Marcellus", serif;
        font-weight: 400;
        text-transform: uppercase;
        margin-bottom: 0;
        text-align: end;
    }

@media (max-width: 1399px) {
    .eb_h2-hero-content-title-2 h1 {
        font-size: 85px;
    }
}

@media (max-width: 1199px) {
    .eb_h2-hero-content-title-2 h1 {
        font-size: 65px;
    }
}

@media (max-width: 991px) {
    .eb_h2-hero-content-title-2 h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .eb_h2-hero-content-title-2 h1 {
        font-size: 50px;
        text-align: start;
    }
}

@media (max-width: 575px) {
    .eb_h2-hero-content-title-2 h1 {
        font-size: 45px;
    }
}

@media (max-width: 480px) {
    .eb_h2-hero-content-title-2 h1 {
        font-size: 30px;
    }
}

.eb_h2-hero-content-img {
    position: absolute;
    right: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
}

@media (max-width: 1399px) {
    .eb_h2-hero-content-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 991px) {
    .eb_h2-hero-content-img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767px) {
    .eb_h2-hero-content-img {
        width: 70px;
        height: 70px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .eb_h2-hero-content-img {
        display: none;
    }
}

.eb_h2-hero-content-admin {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

@media (max-width: 767px) {
    .eb_h2-hero-content-admin {
        display: none;
    }
}

.eb_h2-hero-content-admin-img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.eb_h2-hero-content-admin-info h5 {
    color: #101010;
    font-size: 16px;
    margin-bottom: 4px;
}

.eb_h2-hero-content-admin-info span {
    display: block;
    color: rgba(16, 16, 16, 0.6);
    font-size: 14px;
    line-height: 24px;
    text-decoration: underline;
}

.eb_h2-hero-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 55px;
    -moz-column-gap: 55px;
    column-gap: 55px;
    row-gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 55px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.eb_h2-hero-bottom-ratting ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

    .eb_h2-hero-bottom-ratting ul li {
        color: #FF911B;
        font-size: 12px;
        line-height: normal;
    }

.eb_h2-hero-bottom-ratting span {
    display: block;
    color: #101010;
    font-size: 16px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    line-height: 26px;
}

.eb_h3-hero-single {
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 600px;
    /*padding-top: 210px;
    padding-bottom: 215px;*/
}

    .eb_h3-hero-single::before {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(3deg, rgba(0, 3, 255, 0.7) 3.51%, rgba(2, 3, 57, 0.14) 83.23%);
        z-index: -1;
    }

.eb_h3-hero-shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.eb_h3-hero-content {
    padding-top: 85px;
}

.eb_h3-hero-content-subtitle {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: block;
    padding-left: 45px;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .eb_h3-hero-content-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .eb_h3-hero-single {
        min-height: 153px;
        padding-top: unset;
        padding-bottom: unset;
    }

    .eb_h3-hero-shape {
        display: none;
    }

    .eb_h3-hero-content {
        display: none;
    }

    .eb_h3-hero-social {
        display: none;
    }
}

.eb_h3-hero-content-subtitle::before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 34px;
    height: 6px;
    content: "";
    border-radius: 20px;
    background: #9DFF20;
}

.eb_h3-hero-content-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.125;
    text-transform: uppercase;
    margin-bottom: 48px;
}

    .eb_h3-hero-content-title span {
        color: #9DFF20;
    }

@media (max-width: 1199px) {
    .eb_h3-hero-content-title {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .eb_h3-hero-content-title {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .eb_h3-hero-content-title {
        font-size: 50px;
        line-height: 1.2;
    }
}

@media (max-width: 575px) {
    .eb_h3-hero-content-title {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .eb_h3-hero-content-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

.eb_h3-hero-content a {
    border-radius: 6px;
    background: #FFF;
    height: 54px;
    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;
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0 35px;
    gap: 6px;
}

.eb_h3-hero-social {
    position: absolute;
    left: 30px;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 38px;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1599px) {
    .eb_h3-hero-social {
        left: 15px;
    }
}

@media (max-width: 1399px) {
    .eb_h3-hero-social {
        left: 10px;
    }
}

@media (max-width: 991px) {
    .eb_h3-hero-social {
        display: none;
    }
}

.eb_h3-hero-social span {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    -webkit-writing-mode: sideways-lr;
    -ms-writing-mode: sideways-lr;
    writing-mode: sideways-lr;
}

    .eb_h3-hero-social span::before {
        position: absolute;
        left: 52%;
        top: -24px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        content: "";
        background: #fff;
        width: 2px;
        height: 14px;
    }

.eb_h3-hero-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .eb_h3-hero-social ul li a {
        width: 40px;
        height: 40px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        display: -ms-grid;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #fff;
    }

        .eb_h3-hero-social ul li a:hover {
            background: #fff;
            border-color: #fff;
            color: #000;
        }

.h3_hero-active {
    position: relative;
}

    .h3_hero-active .h3_hero-pagination {
        position: absolute;
        right: 36px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 99;
        left: auto;
        bottom: auto;
        width: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

        .h3_hero-active .h3_hero-pagination span.swiper-pagination-bullet {
            width: 14px;
            height: 14px;
            margin: 0;
            background-color: rgba(255, 255, 255, 0.24);
            border-radius: 50%;
            opacity: 1;
        }

            .h3_hero-active .h3_hero-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
                background-color: #fff;
            }

.eb_h4-hero-area {
    background: #F0F0F0;
    padding-top: 195px;
}

.eb_h4-hero-subtitle {
    color: rgba(0, 0, 0, 0.7);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    padding-left: 64px;
}

@media (max-width: 767px) {
    .eb_h4-hero-subtitle {
        font-size: 14px;
    }
}

.eb_h4-hero-subtitle::before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 54px;
    height: 4px;
    content: "";
    border-radius: 10px;
    background: var(--clr-theme-primary-4);
}

.eb_h4-hero-title {
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 80px;
}

@media (max-width: 1199px) {
    .eb_h4-hero-title {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .eb_h4-hero-title {
        font-size: 55px;
    }

        .eb_h4-hero-title br {
            display: none;
        }
}

@media (max-width: 767px) {
    .eb_h4-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .eb_h4-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .eb_h4-hero-title {
        font-size: 35px;
    }
}

.eb_h4-hero-title span {
    position: relative;
    z-index: 1;
}

    .eb_h4-hero-title span img {
        position: absolute;
        bottom: -11px;
        left: 0;
        z-index: -1;
    }

.eb_h4-hero-wrap {
    max-width: 1660px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 80px 485px;
    grid-template-columns: 1fr 485px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 80px;
}

@media (max-width: 1399px) {
    .eb_h4-hero-wrap {
        -ms-grid-columns: 1fr 350px;
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 1199px) {
    .eb_h4-hero-wrap {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .eb_h4-hero-wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.eb_h4-hero-img img {
    width: 100%;
}

@media (max-width: 991px) {
    .eb_h4-hero-content {
        display: -ms-grid;
        display: grid;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 40px;
        -ms-grid-columns: 1fr 40px 180px;
        grid-template-columns: 1fr 180px;
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .eb_h4-hero-content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.eb_h4-hero-content p {
    color: rgba(0, 0, 0, 0.6);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 95px;
}

@media (max-width: 1599px) {
    .eb_h4-hero-content p {
        margin-bottom: 55px;
    }
}

@media (max-width: 1199px) {
    .eb_h4-hero-content p {
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .eb_h4-hero-content p {
        margin-bottom: 25px;
    }
}

.eb_h4-hero-content a {
    display: block;
    text-align: center;
    position: relative;
    width: 243px;
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
    margin-bottom: 60px;
    -webkit-animation: animation-upDown 3s linear 0s infinite alternate;
    animation: animation-upDown 3s linear 0s infinite alternate;
}

@media (max-width: 1399px) {
    .eb_h4-hero-content a {
        margin-bottom: 40px;
    }
}

@media (max-width: 1199px) {
    .eb_h4-hero-content a {
        width: 180px;
        margin-bottom: 25px;
    }
}

.eb_h4-hero-content a img {
    width: 100%;
    height: 100%;
}

.eb_h4-hero-content a svg {
    position: absolute;
    left: 50%;
    top: 42%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #000;
}

@-webkit-keyframes animation-upDown {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

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

@keyframes animation-upDown {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

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

.eb_h5-hero-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 600px;
    padding-top: 215px;
    padding-bottom: 305px;
    position: relative;
    z-index: 1;
    border: 20px solid #fff;
    border-bottom: 0;
}

@media (max-width: 480px) {
    .eb_h5-hero-area {
        padding-bottom: 160px;
    }
}

.eb_h5-hero-area::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(0.16%, rgba(12, 47, 54, 0.9)), color-stop(99.75%, rgba(14, 56, 65, 0.2)));
    background: linear-gradient(90deg, rgba(12, 47, 54, 0.9) 0.16%, rgba(14, 56, 65, 0.2) 99.75%);
    z-index: -1;
}

.eb_h5-hero-single {
    max-width: 1660px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 767px) {
    .eb_h5-hero-single {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.eb_h5-hero-content-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-left: 27px;
    padding-right: 15px;
    margin-bottom: 15px;
}

    .eb_h5-hero-content-subtitle::before {
        position: absolute;
        left: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        content: "";
        width: 6px;
        height: 6px;
        background: #fff;
    }

.eb_h5-hero-content-title {
    color: #FFF;
    font-family: "Marcellus", serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.17;
    margin-bottom: 50px;
}

@media (max-width: 1399px) {
    .eb_h5-hero-content-title {
        font-size: 70px;
    }
}

@media (max-width: 1199px) {
    .eb_h5-hero-content-title {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .eb_h5-hero-content-title {
        font-size: 50px;
    }

        .eb_h5-hero-content-title br {
            display: none;
        }
}

@media (max-width: 575px) {
    .eb_h5-hero-content-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .eb_h5-hero-content-title {
        font-size: 32px;
    }
}

.eb_h5-hero-content-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    height: 54px;
    background-color: var(--clr-theme-primary-5);
    padding: 0 35px;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

    .eb_h5-hero-content-btn:hover {
        color: #fff;
    }

.eb_h5-hero-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    max-width: 495px;
    width: 100%;
    position: absolute;
    bottom: 180px;
    left: 27%;
}

@media (max-width: 1199px) {
    .eb_h5-hero-bottom {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media (max-width: 575px) {
    .eb_h5-hero-bottom {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .eb_h5-hero-bottom {
        display: none;
    }
}

.eb_h5-hero-bottom-text p {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.eb_h5-hero-bottom-img {
    position: relative;
    z-index: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

    .eb_h5-hero-bottom-img::before {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        -webkit-filter: blur(7.5px);
        filter: blur(7.5px);
    }

    .eb_h5-hero-bottom-img img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

    .eb_h5-hero-bottom-img a {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 1;
        color: #fff;
        text-align: center;
        width: 100%;
        font-size: 24px;
    }

/* ///////////////////////////////////////////////////////////
04. about
/////////////////////////////////////////////////////////// */
.eb_h3-about-img {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

    .eb_h3-about-img img {
        border-radius: 20px;
        max-width: 410px;
        width: 100%;
    }

@media (max-width: 1199px) {
    .eb_h3-about-img img {
        max-width: 330px;
    }
}

@media (max-width: 480px) {
    .eb_h3-about-img img {
        max-width: 190px;
    }
}

.eb_h3-about-img img.eb_h3-about-img-inner {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 330px;
}

@media (max-width: 1199px) {
    .eb_h3-about-img img.eb_h3-about-img-inner {
        max-width: 270px;
    }
}

@media (max-width: 480px) {
    .eb_h3-about-img img.eb_h3-about-img-inner {
        max-width: 180px;
    }
}

.eb_h3-about-img-content {
    background: #fff;
    position: absolute;
    right: 80px;
    bottom: 95px;
    padding: 20px 55px 30px 45px;
    border-radius: 10px;
    z-index: 1;
}

@media (max-width: 480px) {
    .eb_h3-about-img-content {
        padding: 20px 25px 20px 25px;
        right: 35px;
        bottom: 50px;
    }
}

.eb_h3-about-img-content::before {
    position: absolute;
    left: 50%;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #9DFF20;
    border-radius: 10px;
    width: calc(100% + 20px);
    -webkit-transform: translateX(-50%) rotate(-7deg);
    transform: translateX(-50%) rotate(-7deg);
    z-index: -1;
}

.eb_h3-about-img-content::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    z-index: -1;
}

.eb_h3-about-img-content h3 {
    color: #132A13;
    font-family: "DM Sans", sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

@media (max-width: 480px) {
    .eb_h3-about-img-content h3 {
        font-size: 35px;
    }
}

.eb_h3-about-img-content span {
    color: #5F6062;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: block;
}

@media (max-width: 1399px) {
    .eb_h3-about-wrap.ml-50 {
        margin-left: 20px;
    }
}

@media (max-width: 1199px) {
    .eb_h3-about-wrap.ml-50 {
        margin-left: 0px;
    }
}

.eb_h3-about-content ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .eb_h3-about-content ul {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .eb_h3-about-content ul {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .eb_h3-about-content ul {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.eb_h3-about-content ul li {
    color: rgba(11, 23, 40, 0.7);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 44px;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
}

    .eb_h3-about-content ul li i {
        width: 20px;
        height: 20px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        background: rgb(0, 139, 93);
        display: -ms-grid;
        display: grid;
        place-items: center;
        color: #fff;
        border-radius: 50%;
        font-size: 12px;
    }

.eb_h3-about-content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 35px;
}

@media (max-width: 480px) {
    .eb_h3-about-content-bottom {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .eb_h3-about-content-bottom .h3_about-btn {
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2;
        }
}

.eb_h3-about-content-admin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

    .eb_h3-about-content-admin img {
        width: 54px;
        height: 54px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        border-radius: 50%;
    }

    .eb_h3-about-content-admin .eb_h3-admin-info h4 {
        color: #000;
        font-family: "DM Sans", sans-serif;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .eb_h3-about-content-admin .eb_h3-admin-info span {
        color: rgba(0, 0, 0, 0.7);
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: normal;
    }

/* ///////////////////////////////////////////////////////////
05. choose
/////////////////////////////////////////////////////////// */
.eb_h2-choose-area {
    background-color: #E9EAEB;
}

.eb_h2-choose-img {
    margin-right: -25px;
    margin-left: -95px;
}

@media (max-width: 1599px) {
    .eb_h2-choose-img {
        margin-left: -22px;
    }
}

@media (max-width: 1199px) {
    .eb_h2-choose-img {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .eb_h2-choose-img {
        margin-right: 0;
    }
}

.eb_h2-choose-img img {
    width: 100%;
}

.eb_h2-choose-wrap {
    margin-bottom: 205px;
}

@media (max-width: 1599px) {
    .eb_h2-choose-wrap {
        margin-bottom: 135px;
    }
}

@media (max-width: 1399px) {
    .eb_h2-choose-wrap {
        margin-bottom: 100px;
    }
}

@media (max-width: 1199px) {
    .eb_h2-choose-wrap {
        margin-bottom: 70px;
    }
}

.eb_h2-choose-content {
    padding-bottom: 30px;
    margin-left: 212px;
}

@media (max-width: 1399px) {
    .eb_h2-choose-content {
        margin-left: 190px;
    }
}

@media (max-width: 575px) {
    .eb_h2-choose-content {
        margin-left: 0;
    }
}

.eb_h2-choose-btn {
    margin-left: 212px;
}

@media (max-width: 1399px) {
    .eb_h2-choose-btn {
        margin-left: 190px;
    }
}

@media (max-width: 575px) {
    .eb_h2-choose-btn {
        margin-left: 0;
    }
}

.eb_h2-choose-btn a {
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid rgba(16, 16, 16, 0.14);
    font-size: 16px;
    font-weight: 500;
    color: #101010;
    padding: 0 35px;
    border-radius: 10px;
}

    .eb_h2-choose-btn a:hover {
        background-color: var(--clr-theme-primary-2);
        border-color: var(--clr-theme-primary-2);
        color: #fff;
    }

.eb_h2-choose-item {
    margin-bottom: 25px;
}

.eb_h2-choose-item-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;
    gap: 20px;
    margin-bottom: 7px;
}

    .eb_h2-choose-item-top h4 {
        font-size: 15px;
        font-weight: 500;
        color: #101010;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .eb_h2-choose-item-top span {
        font-size: 15px;
        font-weight: 500;
        color: rgba(16, 16, 16, 0.7);
        display: block;
        line-height: normal;
        font-family: "DM Sans", sans-serif;
    }

.eb_h2-choose-item .progress {
    border: 1px solid rgba(16, 16, 16, 0.14);
    height: 14px;
    border-radius: 2px;
    padding: 0 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .eb_h2-choose-item .progress .progress-bar {
        height: 6px;
        border-radius: 2px;
        background-color: #4A5FE1;
    }

.eb_h2-choose-item:nth-child(2) .progress .progress-bar {
    background-color: #C34AE1;
}

.eb_h2-choose-item:nth-child(3) .progress .progress-bar {
    background-color: #E14A4A;
}

/* ///////////////////////////////////////////////////////////
06. service
/////////////////////////////////////////////////////////// */
.eb_h2-service-item {
    padding: 50px 40px 61px;
    border-radius: 10px;
    border: 1px solid rgba(16, 16, 16, 0.14);
}

@media (max-width: 480px) {
    .eb_h2-service-item {
        padding: 50px 30px 61px;
    }
}

.eb_h2-service-item-content h4 {
    color: #101010;
    font-family: "Marcellus", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
}

    .eb_h2-service-item-content h4:hover a {
        color: var(--clr-theme-primary-2);
    }

.eb_h2-service-item-content p {
    color: rgba(16, 16, 16, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}

.eb_h2-service-item-icon {
    margin-bottom: 50px;
}

    .eb_h2-service-item-icon svg {
        color: #101010;
    }

.eb_h3-service-area {
    background-color: #E3E8EA;
}

.eb_h3-service-item {
    background: #fff;
    padding: 40px 40px 33px;
    border-radius: 15px;
}

@media (max-width: 991px) {
    .eb_h3-service-item {
        padding: 40px 30px 33px;
    }
}

.eb_h3-service-item-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
}

    .eb_h3-service-item-head svg {
        color: #000;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
    }

    .eb_h3-service-item-head h3 {
        color: #101010;
        font-family: "DM Sans", sans-serif;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        margin-bottom: 0;
    }

@media (max-width: 1199px) {
    .eb_h3-service-item-head h3 {
        font-size: 20px;
    }
}

.eb_h3-service-item-head h3:hover a {
    color: var(--clr-theme-primary-2);
}

.eb_h3-service-item p {
    color: rgba(0, 0, 0, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 26px;
}

.eb_h3-service-item-btn a {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

    .eb_h3-service-item-btn a:hover {
        color: var(--clr-theme-primary-2);
    }

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

@media (max-width: 1399px) {
    .eb_h4-service-img.ml-80 {
        margin-left: 40px;
    }
}

@media (max-width: 1199px) {
    .eb_h4-service-img.ml-80 {
        margin-left: 0;
    }
}

@media (max-width: 1399px) {
    .eb_h4-service-wrap.mr-80 {
        margin-right: 40px;
    }
}

@media (max-width: 1199px) {
    .eb_h4-service-wrap.mr-80 {
        margin-right: 0;
    }
}

.eb_h4-service-content .accordion-button {
    background: transparent;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .eb_h4-service-content .accordion-button::after {
        content: "+";
        background: none;
        font-family: "Font Awesome 6 Pro";
        font-size: 20px;
        width: auto;
        height: auto;
        color: #000;
    }

    .eb_h4-service-content .accordion-button:not(.collapsed)::after {
        content: "\f068";
        -webkit-transform: none;
        transform: none;
        color: #000;
    }

    .eb_h4-service-content .accordion-button span {
        color: #000;
        font-family: "Marcellus", serif;
        font-size: 24px;
        font-weight: 400;
        line-height: normal;
    }

@media (max-width: 480px) {
    .eb_h4-service-content .accordion-button span {
        font-size: 20px;
    }
}

.eb_h4-service-content .accordion-button svg {
    color: #000;
    width: 55px;
    height: auto;
}

@media (max-width: 480px) {
    .eb_h4-service-content .accordion-button svg {
        width: 30px;
    }
}

.eb_h4-service-content .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    padding: 25px 0;
}

    .eb_h4-service-content .accordion-item:first-child {
        border-top: 1px solid rgba(0, 0, 0, 0.14);
    }

.eb_h4-service-content .accordion-body {
    padding: 0;
    margin-left: 75px;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .eb_h4-service-content .accordion-body {
        margin-left: 0;
    }
}

.eb_h4-service-content .accordion-body ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    margin-right: 65px;
}

@media (max-width: 1399px) {
    .eb_h4-service-content .accordion-body ul {
        margin-right: 30px;
    }
}

@media (max-width: 1199px) {
    .eb_h4-service-content .accordion-body ul {
        margin-right: 0;
    }
}

.eb_h4-service-content .accordion-body ul li {
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    height: 26px;
    padding: 0 15px;
    color: rgba(0, 0, 0, 0.6);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.eb_h4-service-content .accordion-body p {
    color: rgba(0, 0, 0, 0.6);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 12px;
}

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

@media (max-width: 1199px) {
    .eb_h5-service-img.ml-60 {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .eb_h5-service-img.ml-60 {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .eb_h5-service-img img {
        width: 100%;
    }
}

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

    .eb_h5-service-content::before {
        position: absolute;
        left: 30px;
        top: 0;
        content: "";
        height: 100%;
        width: 1px;
        background: rgba(0, 0, 0, 0.2);
    }

@media (max-width: 1199px) {
    .eb_h5-service-content::before {
        left: 10px;
    }
}

@media (max-width: 991px) {
    .eb_h5-service-content::before {
        display: none;
    }
}

@media (max-width: 1199px) {
    .eb_h5-service-content.pl-80 {
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .eb_h5-service-content.pl-80 {
        padding-left: 0;
    }
}

.eb_h5-service-content .accordion-button {
    background: transparent;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .eb_h5-service-content .accordion-button::after {
        display: none;
    }

    .eb_h5-service-content .accordion-button p {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 6px;
        color: #000;
        font-family: "Marcellus", serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 1.8;
        margin-bottom: 0;
    }

        .eb_h5-service-content .accordion-button p span {
            color: rgba(0, 0, 0, 0.5);
            display: block;
            font-size: 20px;
            margin-top: 5px;
        }

.eb_h5-service-content .accordion-item {
    border: 0;
}

    .eb_h5-service-content .accordion-item .accordion-button {
        padding: 10px 0;
    }

    .eb_h5-service-content .accordion-item:first-child .accordion-button {
        padding-top: 0;
    }

    .eb_h5-service-content .accordion-item:last-child .accordion-button.collapsed {
        padding-bottom: 0;
    }

    .eb_h5-service-content .accordion-item:last-child .accordion-body {
        padding-bottom: 0;
    }

.eb_h5-service-content .accordion-body {
    padding: 0;
    padding-bottom: 25px;
}

    .eb_h5-service-content .accordion-body img {
        width: 100%;
    }

/* ///////////////////////////////////////////////////////////
07. project
/////////////////////////////////////////////////////////// */
.eb-project-area {
    max-width: 1790px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.eb-project-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

@media (max-width: 1599px) {
    .eb-project-wrap {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .eb-project-wrap {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .eb-project-wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.eb-project-item {
    position: relative;
    z-index: 1;
}

.eb-project-item-img {
    position: relative;
    z-index: 1;
}

    .eb-project-item-img img {
        width: 100%;
        border-radius: 14px;
    }

    .eb-project-item-img a {
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 20px;
        background: rgb(227, 232, 234);
        height: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 26px;
        padding-right: 16px;
        color: #000;
        font-family: "DM Sans", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
        z-index: auto;
    }

        .eb-project-item-img a::before {
            position: absolute;
            left: 16px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #008B5D;
            z-index: 5;
        }

.eb-project-item-content {
    position: absolute;
    left: 24px;
    bottom: 0;
    z-index: 1;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.24);
    padding: 24px 70px 19px 24px;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1199px) {
    .eb-project-item-content {
        padding: 24px 24px 19px 24px;
    }
}

@media (max-width: 480px) {
    .eb-project-item-content {
        padding: 24px 20px 19px 20px;
        left: 20px;
    }
}

.eb-project-item-content h4 {
    color: rgb(255, 255, 255);
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .eb-project-item-content h4 {
        font-size: 20px;
    }
}

.eb-project-item-content span {
    border-radius: 10px;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.34);
    height: 26px;
    padding-left: 26px;
    padding-right: 16px;
    color: rgb(255, 255, 255);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    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;
    position: relative;
    z-index: 1;
    margin-bottom: 13px;
}

    .eb-project-item-content span::before {
        position: absolute;
        left: 16px;
        top: 50%;
        content: "";
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 5px;
        height: 5px;
        background: #fff;
        border-radius: 50%;
    }

.eb-project-item:hover .eb-project-item-content {
    bottom: 24px;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .eb-project-item:hover .eb-project-item-content {
        bottom: 20px;
    }
}

.eb-project-item-img img {
    width: 100%;
    border-radius: 14px;
    z-index: -1;
    position: relative;
}

.eb-project-item-img a::after {
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    z-index: -1;
    border-bottom-right-radius: 14px;
}

.eb_h2-project-item.eb_h2-project-21 {
    margin-left: 80px;
    margin-right: 20px;
}

@media (max-width: 1199px) {
    .eb_h2-project-item.eb_h2-project-21 {
        margin-left: 30px;
        margin-right: 10px;
    }
}

@media (max-width: 991px) {
    .eb_h2-project-item.eb_h2-project-21 {
        margin-left: 0;
        margin-right: 0;
    }
}

.eb_h2-project-item.eb_h2-project-22 {
    margin-left: 80px;
    margin-right: 125px;
}

@media (max-width: 1199px) {
    .eb_h2-project-item.eb_h2-project-22 {
        margin-left: 45px;
        margin-right: 90px;
    }
}

@media (max-width: 991px) {
    .eb_h2-project-item.eb_h2-project-22 {
        margin-left: 0;
        margin-right: 0;
    }
}

.eb_h2-project-item.eb_h2-project-23 {
    margin-left: 145px;
    margin-right: 20px;
}

@media (max-width: 1199px) {
    .eb_h2-project-item.eb_h2-project-23 {
        margin-left: 70px;
        margin-right: 20px;
    }
}

@media (max-width: 991px) {
    .eb_h2-project-item.eb_h2-project-23 {
        margin-left: 0;
        margin-right: 0;
    }
}

.eb_h2-project-item.eb_h2-project-24 {
    margin-left: 145px;
    margin-right: 20px;
}

@media (max-width: 1199px) {
    .eb_h2-project-item.eb_h2-project-24 {
        margin-left: 45px;
        margin-right: 15px;
    }
}

@media (max-width: 991px) {
    .eb_h2-project-item.eb_h2-project-24 {
        margin-left: 0;
        margin-right: 0;
    }
}

.eb_h2-project-item-img {
    margin-bottom: 15px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

    .eb_h2-project-item-img img {
        width: 100%;
        border-radius: 20px;
        -webkit-transition: all 0.5s linear 0s;
        transition: all 0.5s linear 0s;
    }

.eb_h2-project-item-content {
    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;
    gap: 15px;
}

@media (max-width: 480px) {
    .eb_h2-project-item-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.eb_h2-project-left {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .eb_h2-project-left h4 {
        color: #101010;
        font-family: "Marcellus", serif;
        font-size: 22px;
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 3px;
    }

        .eb_h2-project-left h4:hover a {
            color: var(--clr-theme-primary-2);
        }

    .eb_h2-project-left span {
        color: #101010;
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 26px;
        display: block;
    }

.eb_h2-project-right ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 10px;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

    .eb_h2-project-right ul li a {
        color: #101010;
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 500;
        border-radius: 30px;
        border: 1px solid rgba(16, 16, 16, 0.14);
        height: 26px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 15px;
    }

        .eb_h2-project-right ul li a:hover {
            color: #fff;
            background-color: var(--clr-theme-primary-2);
        }

.eb_h2-project-item:hover .eb_h2-project-item-img img {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

.eb_h3-project-wrap {
    padding: 0 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

@media (max-width: 767px) {
    .eb_h3-project-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.eb_h3-project-item {
    width: calc(24% - 3.8px);
    height: 530px;
    position: relative;
    z-index: 1;
    -webkit-transition: width 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
    transition: width 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

@media (max-width: 767px) {
    .eb_h3-project-item {
        width: 100%;
    }
}

.eb_h3-project-item::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(3deg, rgba(0, 3, 255, 0.7) 3.51%, rgba(2, 3, 57, 0.14) 83.23%);
}

.eb_h3-project-item-img {
    height: 100%;
    width: 100%;
}

    .eb_h3-project-item-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.eb_h3-project-item-content {
    position: absolute;
    left: 30px;
    bottom: 35px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.24);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    padding: 26px 50px 25px 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 991px) {
    .eb_h3-project-item-content {
        padding: 26px 25px 25px 25px;
        left: 20px;
        bottom: 25px;
    }
}

.eb_h3-project-item-content span {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
    position: relative;
    z-index: 1;
    padding-left: 36px;
}

    .eb_h3-project-item-content span::before {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 30px;
        height: 6px;
        content: "";
        border-radius: 20px;
        background: #9DFF20;
    }

@media (max-width: 991px) {
    .eb_h3-project-item-content span {
        font-size: 12px;
    }

        .eb_h3-project-item-content span::before {
            height: 5px;
        }
}

.eb_h3-project-item-content h3 {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .eb_h3-project-item-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .eb_h3-project-item-content h3 {
        font-size: 18px;
    }
}

.eb_h3-project-item-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

    .eb_h3-project-item-icon svg {
        color: #FFF;
    }

.eb_h3-project-item:hover {
    width: 45%;
    width: 690px;
}

@media (max-width: 767px) {
    .eb_h3-project-item:hover {
        width: 100%;
    }
}

.eb_h3-project-item:hover .eb_h3-project-item-content {
    opacity: 1;
    visibility: visible;
}

.eb_h3-project-item:hover .eb_h3-project-item-icon {
    opacity: 1;
    visibility: visible;
}

.eb_h4-project-more-btn a {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    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;
    gap: 8px;
}

@media (max-width: 767px) {
    .eb_h4-project-more-btn a {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .eb_h4-project-more-btn a {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.eb_h4-project-item.eb_h4-project-41 {
    margin-left: 45px;
    margin-right: 55px;
}

@media (max-width: 1199px) {
    .eb_h4-project-item.eb_h4-project-41 {
        margin-left: 25px;
        margin-right: 35px;
    }
}

@media (max-width: 991px) {
    .eb_h4-project-item.eb_h4-project-41 {
        margin-left: 0;
        margin-right: 0;
    }
}

.eb_h4-project-item.eb_h4-project-42 {
    margin-left: 50px;
    margin-right: 160px;
}

@media (max-width: 1199px) {
    .eb_h4-project-item.eb_h4-project-42 {
        margin-left: 30px;
        margin-right: 60px;
    }
}

@media (max-width: 991px) {
    .eb_h4-project-item.eb_h4-project-42 {
        margin-left: 0;
        margin-right: 0;
    }
}

.eb_h4-project-item.eb_h4-project-43 {
    margin-left: 110px;
    margin-right: 50px;
}

@media (max-width: 1199px) {
    .eb_h4-project-item.eb_h4-project-43 {
        margin-left: 60px;
        margin-right: 30px;
    }
}

@media (max-width: 991px) {
    .eb_h4-project-item.eb_h4-project-43 {
        margin-left: 0;
        margin-right: 0;
    }
}

.eb_h4-project-item.eb_h4-project-44 {
    margin-left: 110px;
    margin-right: 55px;
}

@media (max-width: 1199px) {
    .eb_h4-project-item.eb_h4-project-44 {
        margin-left: 50px;
        margin-right: 25px;
    }
}

@media (max-width: 991px) {
    .eb_h4-project-item.eb_h4-project-44 {
        margin-left: 0;
        margin-right: 0;
    }
}

.eb_h4-project-item-img {
    margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
}

    .eb_h4-project-item-img img {
        width: 100%;
        -webkit-transition: all 0.5s linear 0s;
        transition: all 0.5s linear 0s;
    }

.eb_h4-project-item-content {
    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;
    gap: 15px;
}

@media (max-width: 480px) {
    .eb_h4-project-item-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.eb_h4-project-left {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .eb_h4-project-left h4 {
        color: #101010;
        font-family: "Marcellus", serif;
        font-size: 22px;
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 3px;
    }

        .eb_h4-project-left h4:hover a {
            color: var(--clr-theme-primary-4);
        }

    .eb_h4-project-left span {
        color: #101010;
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 26px;
        display: block;
    }

.eb_h4-project-right ul {
    list-style: none;
    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;
    row-gap: 10px;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .eb_h4-project-right ul li a {
        color: #101010;
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 500;
        border-radius: 30px;
        border: 1px solid rgba(16, 16, 16, 0.14);
        height: 26px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 15px;
    }

        .eb_h4-project-right ul li a:hover {
            color: #fff;
            background-color: var(--clr-theme-primary-4);
        }

.eb_h4-project-item:hover .eb_h4-project-item-img img {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

.eb_h5-project-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 767px) {
    .eb_h5-project-wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.eb_h5-project-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.eb_h5-project-right {
    margin-top: -170px;
}

@media (max-width: 767px) {
    .eb_h5-project-right {
        margin-top: 0;
    }
}

.eb_h5-project-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .eb_h5-project-item img {
        width: 100%;
    }

.eb_h5-project-item-info {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    padding: 27px 40px 23px 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
}

@media (max-width: 991px) {
    .eb_h5-project-item-info {
        padding: 22px 25px 18px 25px;
    }
}

.eb_h5-project-item-info span {
    color: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 11px;
    line-height: normal;
    margin-bottom: 10px;
    display: block;
}

    .eb_h5-project-item-info span::before {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        content: "";
        width: 6px;
        height: 6px;
        background: #000;
    }

.eb_h5-project-item-info h3 {
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .eb_h5-project-item-info h3 {
        font-size: 24px;
    }
}

.eb_h5-project-item:hover .eb_h5-project-item-info {
    opacity: 1;
    visibility: visible;
}

.eb-project-corner-left {
    position: absolute;
    left: 0;
    top: 39px;
    z-index: 999;
    line-height: 1;
}

    .eb-project-corner-left svg {
        width: 19px;
        color: #fff;
    }

.eb-project-corner-top {
    position: absolute;
    right: -29px;
    top: -1px;
    z-index: 999;
    line-height: 1;
}

    .eb-project-corner-top svg {
        width: 19px;
        color: #fff;
    }

/* ///////////////////////////////////////////////////////////
08. price
/////////////////////////////////////////////////////////// */
.eb_h2-price-area {
    background-color: #E9EAEB;
}

.eb_h2-price-item {
    border-radius: 20px;
    border: 1px solid rgba(16, 16, 16, 0.14);
    padding: 50px 40px 36px;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .eb_h2-price-item {
        padding: 50px 30px 36px;
    }
}

.eb_h2-price-item-title {
    color: #101010;
    font-family: "Marcellus", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
}

.eb_h2-price-item-text {
    color: #101010;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 25px;
}

.eb_h2-price-item-amount h1 {
    color: #0B1728;
    font-family: "Marcellus", serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
}

    .eb_h2-price-item-amount h1 span {
        color: #545D69;
        font-size: 16px;
        font-weight: 400;
        line-height: normal;
    }

.eb_h2-price-item-amount p {
    color: rgba(16, 16, 16, 0.7);
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 45px;
}

.eb_h2-price-item-btn {
    margin-bottom: 36px;
}

    .eb_h2-price-item-btn a {
        border-radius: 10px;
        border: 1px solid rgba(16, 16, 16, 0.14);
        width: 100%;
        text-align: center;
        color: #101010;
        font-size: 16px;
        font-weight: 600;
        height: 54px;
        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: 6px;
    }

        .eb_h2-price-item-btn a:hover {
            color: #fff;
            background-color: var(--clr-theme-primary-2);
            border-color: var(--clr-theme-primary-2);
        }

.eb_h2-price-item-list {
    list-style: none;
}

    .eb_h2-price-item-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px;
        color: #0B1728;
        font-family: "Marcellus", serif;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 44px;
    }

        .eb_h2-price-item-list li i {
            width: 18px;
            height: 18px;
            background: #D1D1D2;
            border-radius: 50%;
            display: -ms-grid;
            display: grid;
            place-items: center;
            font-size: 10px;
            color: #443F3F;
        }

            .eb_h2-price-item-list li i.fa-check {
                color: #fff;
                background: var(--clr-theme-primary);
            }

.eb_h2-price-tag {
    position: absolute;
    right: 38px;
    top: -15px;
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    background: var(--clr-theme-primary-2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    padding: 0 15px;
    border-radius: 6px;
}

.eb_h2-price-item.eb_h2-price-light {
    background: #fff;
}

    .eb_h2-price-item.eb_h2-price-light .eb-price-item-btn a {
        background: var(--clr-theme-primary-2);
        color: #fff;
    }

.eb_h2-price-item.eb_h2-price-dark {
    background-color: #101010;
}

    .eb_h2-price-item.eb_h2-price-dark .eb_h2-price-item-title {
        color: #fff;
    }

    .eb_h2-price-item.eb_h2-price-dark .eb_h2-price-item-text {
        color: #70767D;
    }

    .eb_h2-price-item.eb_h2-price-dark .eb_h2-price-item-amount h1 {
        color: #fff;
    }

        .eb_h2-price-item.eb_h2-price-dark .eb_h2-price-item-amount h1 span {
            color: #70767D;
        }

    .eb_h2-price-item.eb_h2-price-dark .eb_h2-price-item-amount p {
        color: rgba(255, 255, 255, 0.7);
    }

    .eb_h2-price-item.eb_h2-price-dark .eb_h2-price-item-btn a {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .eb_h2-price-item.eb_h2-price-dark .eb_h2-price-item-list li {
        color: #94989C;
    }

.inner_price-bg {
    background-color: #F7F7F8;
}

/* ///////////////////////////////////////////////////////////
09. team
/////////////////////////////////////////////////////////// */
.eb_h2-team-item-img {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

    .eb_h2-team-item-img::before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        border-radius: 14px;
        background: rgba(26, 28, 31, 0.6);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

    .eb_h2-team-item-img img {
        border-radius: 14px;
        width: 100%;
    }

.eb_h2-team-item-content h4 {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 3px;
}

    .eb_h2-team-item-content h4:hover a {
        color: var(--clr-theme-primary-2);
    }

.eb_h2-team-item-content span {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    text-transform: uppercase;
    display: block;
}

.eb_h2-team-social {
    list-style: none;
    position: absolute;
    left: 0;
    top: 55%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

    .eb_h2-team-social li a {
        display: -ms-grid;
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        color: #fff;
    }

        .eb_h2-team-social li a:hover {
            color: #fff;
            background-color: var(--clr-theme-primary-2);
            border-color: var(--clr-theme-primary-2);
        }

.eb_h2-team-item:hover .eb_h2-team-social {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.eb_h2-team-item:hover .eb_h2-team-item-img::before {
    opacity: 1;
    visibility: visible;
}

.eb_h3-team-item {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.16);
}

    .eb_h3-team-item:hover {
        border-color: #077d36;
    }

.eb_h3-team-item-img img {
    border-radius: 14px;
    width: 100%;
}

.eb_h3-team-item-content {
    text-align: center;
    padding: 25px 15px 25px;
}

    .eb_h3-team-item-content h5 {
        color: #000;
        font-family: "DM Sans", sans-serif;
        font-size: 18px;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 1px;
    }

        .eb_h3-team-item-content h5:hover a {
            color: var(--clr-theme-primary-2);
        }

    .eb_h3-team-item-content span {
        color: rgba(0, 0, 0, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 26px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 12px;
    }

    .eb_h3-team-item-content ul {
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        /*gap: 6px;*/
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        font-size: 14px;
    }

        .eb_h3-team-item-content ul li a {
            width: 34px;
            height: 34px;
            display: -ms-grid;
            display: grid;
            place-items: center;
            border: 1px solid rgba(0, 0, 0, 0.16);
            border-radius: 6px;
            color: #000;
            font-size: 15px;
        }

            .eb_h3-team-item-content ul li a:hover {
                background-color: var(--clr-theme-primary-2);
                color: #fff;
                border-color: transparent;
            }

.eb_h4-team-area {
    background-color: #F0F0F0;
}

.eb_h4-team-img {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    overflow: hidden;
}

    .eb_h4-team-img img {
        width: 100%;
    }

.eb_h4-team-content h4 {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1px;
}

    .eb_h4-team-content h4:hover a {
        color: var(--clr-theme-primary-4);
    }

.eb_h4-team-content span {
    color: rgba(0, 0, 0, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    text-transform: uppercase;
    display: block;
}

.eb_h4-team-social {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    right: -50px;
    bottom: 0;
    -webkit-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    opacity: 0;
    visibility: hidden;
}

    .eb_h4-team-social li a {
        width: 50px;
        height: 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;
        background: #fff;
        color: #000;
        font-size: 18px;
    }

        .eb_h4-team-social li a:hover {
            background-color: var(--clr-theme-primary-4);
            color: #fff;
        }

.eb_h4-team-item:hover ul {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.eb_h4-team-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 575px) {
    .eb_h4-team-head {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.eb_h4-team-head h2 {
    color: rgba(0, 0, 0, 0.2);
    font-family: "Marcellus", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .eb_h4-team-head h2 {
        font-size: 40px;
    }
}

.eb_h4-team-head span {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    display: block;
}

@media (max-width: 767px) {
    .eb_h4-team-head span {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ///////////////////////////////////////////////////////////
10. testimonial
/////////////////////////////////////////////////////////// */
.eb_h2-testimonial-area {
    background-color: #E9EAEB;
}

.eb_h2-testimonial-img img {
    border-radius: 14px;
    width: 100%;
}

@media (max-width: 1399px) {
    .eb_h2-testimonial-img.ml-80 {
        margin-left: 0;
    }
}

.eb_h2-testimonial-wrap {
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 1199px) {
    .eb_h2-testimonial-wrap {
        padding-left: 20px;
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    .eb_h2-testimonial-wrap {
        padding-left: 0;
    }
}

.eb_h2-testimonial-item p {
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 35px;
}

@media (max-width: 480px) {
    .eb_h2-testimonial-item p {
        font-size: 16px;
    }
}

.eb_h2-testimonial-quote-icon {
    margin-bottom: 25px;
}

.eb_h2-testimonial-admin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .eb_h2-testimonial-admin img {
        width: 60px;
        height: 60px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        border-radius: 50%;
    }

.eb_h2-testimonial-admin-info h5 {
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
}

.eb_h2-testimonial-admin-info span {
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    display: block;
}

.eb-slider-navigation.eb_h2-testimonial-nav {
    position: absolute;
    right: 0;
    bottom: 14px;
    z-index: 9;
}

@media (max-width: 575px) {
    .eb-slider-navigation.eb_h2-testimonial-nav {
        position: relative;
        bottom: 0;
        margin-top: 50px;
    }
}

.eb_h3-testimonial-area {
    background-color: #E3E8EA;
}

.eb_h3-testimonial-item {
    background: #fff;
    border-radius: 24px;
    padding: 50px 50px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 64px;
}

@media (max-width: 991px) {
    .eb_h3-testimonial-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .eb_h3-testimonial-item {
        padding: 50px 30px 50px;
    }
}

@media (max-width: 480px) {
    .eb_h3-testimonial-item {
        padding: 30px 20px 30px;
    }
}

.eb_h3-testimonial-item-img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 330px;
    width: 100%;
}

@media (max-width: 991px) {
    .eb_h3-testimonial-item-img {
        max-width: 100%;
    }
}

.eb_h3-testimonial-item-img img {
    border-radius: 14px;
    width: 100%;
}

.eb_h3-testimonial-item-content p {
    color: rgba(0, 0, 0, 0.5);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 35px;
}

.eb_h3-testimonial-quote-icon {
    margin-bottom: 21px;
    max-width: 120px;
    width: 100%;
}

.eb_h3-testimonial-admin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

    .eb_h3-testimonial-admin img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

.eb_h3-testimonial-admin-info h5 {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
}

.eb_h3-testimonial-admin-info span {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    display: block;
}

.swiper.h3_testimonial-active {
    overflow: visible;
}

@media (max-width: 991px) {
    .swiper.h3_testimonial-active {
        overflow: hidden;
    }
}

.swiper.h3_testimonial-active .swiper-slide-prev,
.swiper.h3_testimonial-active .swiper-slide-next {
    position: relative;
    z-index: 1;
}

    .swiper.h3_testimonial-active .swiper-slide-prev::before,
    .swiper.h3_testimonial-active .swiper-slide-next::before {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        content: "";
        width: 100%;
        height: 480px;
        height: 100%;
        background: -webkit-gradient(linear, left top, right top, from(rgba(227, 232, 234, 0)), color-stop(17.14%, #E3E8EA), color-stop(45.83%, #E3E8EA), color-stop(83.5%, #E3E8EA), to(rgba(227, 232, 234, 0)));
        background: linear-gradient(90deg, rgba(227, 232, 234, 0) 0%, #E3E8EA 17.14%, #E3E8EA 45.83%, #E3E8EA 83.5%, rgba(227, 232, 234, 0) 100%);
        z-index: 9;
    }

.eb_h4-testimonial-item {
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 35px 35px 40px;
}

@media (max-width: 480px) {
    .eb_h4-testimonial-item {
        padding: 35px 25px 40px;
    }
}

.eb_h4-testimonial-item ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 17px;
}

    .eb_h4-testimonial-item ul li {
        color: #F7931A;
        font-size: 15px;
    }

.eb_h4-testimonial-item p {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 39px;
}

.eb_h4-testimonial-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .eb_h4-testimonial-bottom img {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

.eb_h4-testimonial-admin h5 {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3px;
}

.eb_h4-testimonial-admin span {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    text-transform: uppercase;
    display: block;
}

@media (max-width: 480px) {
    .eb_h4-testimonial-admin span {
        font-size: 12px;
        line-height: 24px;
    }
}

.eb_h4-navigation-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

@media (max-width: 575px) {
    .eb_h4-navigation-2 {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.eb_h4-navigation-2 div {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    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: #000;
    font-size: 16px;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

    .eb_h4-navigation-2 div:hover {
        background: var(--clr-theme-primary-4);
        color: #fff;
        border-color: var(--clr-theme-primary-4);
    }

.eb_h5-testimonial-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

@media (max-width: 767px) {
    .eb_h5-testimonial-head {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.eb_h5-testimonial-head img {
    width: 44px;
    height: 44px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.eb_h5-testimonial-head-info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 5px;
    margin-bottom: 9px;
}

    .eb_h5-testimonial-head-info ul li {
        color: #FF911B;
        font-size: 12px;
        line-height: normal;
    }

.eb_h5-testimonial-head-info span {
    font-family: "Marcellus", serif;
    color: #000;
    font-size: 15px;
    display: block;
    line-height: normal;
}

.eb_h5-testimonial-wrap {
    border: 1px solid rgba(0, 0, 0, 0.16);
    padding: 40px 40px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .eb_h5-testimonial-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .eb_h5-testimonial-wrap {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .eb_h5-testimonial-wrap {
        padding: 30px 20px;
    }
}

.eb_h5-testimonial-img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 320px;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .eb_h5-testimonial-img {
        max-width: 100%;
    }
}

.eb_h5-testimonial-img-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.eb_h5-testimonial-content {
    width: calc(100% - 320px);
    padding-left: 70px;
    padding-right: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .eb_h5-testimonial-content {
        padding-left: 45px;
        padding-right: 45px;
    }
}

@media (max-width: 991px) {
    .eb_h5-testimonial-content {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

.eb_h5-testimonial-item ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 13px;
}

    .eb_h5-testimonial-item ul li {
        color: #FF911B;
        line-height: normal;
    }

.eb_h5-testimonial-item p {
    font-family: "Marcellus", serif;
    font-size: 18px;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 45px;
}

@media (max-width: 480px) {
    .eb_h5-testimonial-item p {
        font-size: 16px;
    }
}

.eb_h5-testimonial-admin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 480px) {
    .eb_h5-testimonial-admin {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 15px;
    }
}

.eb_h5-testimonial-admin img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.eb_h5-testimonial-admin-info h5 {
    font-family: "Marcellus", serif;
    color: #000;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.eb_h5-testimonial-admin-info span {
    display: block;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    line-height: normal;
}

.eb_h5-testimonial-pagination {
    position: absolute;
    right: 70px;
    bottom: 55px;
}

@media (max-width: 767px) {
    .eb_h5-testimonial-pagination {
        right: 30px;
    }
}

@media (max-width: 480px) {
    .eb_h5-testimonial-pagination {
        position: relative;
        bottom: 0;
        right: auto;
        margin-bottom: 18px;
    }
}

.eb_h5-testimonial-pagination div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

    .eb_h5-testimonial-pagination div span {
        margin: 0 !important;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.2);
        position: relative;
        opacity: 1;
        -webkit-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

        .eb_h5-testimonial-pagination div span::before {
            position: absolute;
            left: 50%;
            top: 50%;
            content: "";
            width: 40px;
            height: 40px;
            background: transparent;
            border: 2px solid var(--clr-theme-primary-5);
            border-radius: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

        .eb_h5-testimonial-pagination div span::after {
            position: absolute;
            left: 50%;
            top: 50%;
            content: "";
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: 6px;
            height: 6px;
            background: var(--clr-theme-primary-5);
            border-radius: 50%;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

        .eb_h5-testimonial-pagination div span.swiper-pagination-bullet-active {
            width: 40px;
            background: transparent;
        }

            .eb_h5-testimonial-pagination div span.swiper-pagination-bullet-active::before {
                opacity: 1;
                visibility: visible;
            }

            .eb_h5-testimonial-pagination div span.swiper-pagination-bullet-active::after {
                opacity: 1;
                visibility: visible;
            }

/* ///////////////////////////////////////////////////////////
11. video
/////////////////////////////////////////////////////////// */
.eb_h2-video-area {
    position: relative;
}

    .eb_h2-video-area::before {
        position: absolute;
        left: 0;
        top: 0;
        height: 50%;
        width: 100%;
        content: "";
        background-color: #E9EAEB;
    }

.eb_h2-video-wrap {
    max-width: 1660px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    padding-left: 30px;
    padding-right: 30px;
}

    .eb_h2-video-wrap img {
        width: 100%;
        border-radius: 20px;
        min-height: 200px;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
    }

@media (max-width: 575px) {
    .eb_h2-video-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.eb_h2-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 180px;
    height: 180px;
    border-radius: 180px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: -ms-grid;
    display: grid;
    place-items: center;
    color: #fff;
}

    .eb_h2-video-play svg {
        width: 55px;
    }

    .eb_h2-video-play:hover {
        color: var(--clr-theme-primary-2);
    }

@media (max-width: 991px) {
    .eb_h2-video-play {
        width: 120px;
        height: 120px;
    }

        .eb_h2-video-play svg {
            width: 45px;
        }
}

@media (max-width: 767px) {
    .eb_h2-video-play {
        width: 100px;
        height: 100px;
    }

        .eb_h2-video-play svg {
            width: 40px;
        }
}

@media (max-width: 575px) {
    .eb_h2-video-play {
        width: 90px;
        height: 90px;
    }

        .eb_h2-video-play svg {
            width: 35px;
        }
}

.eb_h4-video-wrap {
    position: relative;
    z-index: 1;
}

    .eb_h4-video-wrap img {
        width: 100%;
        min-height: 200px;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .eb_h4-video-wrap a {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        content: "";
        width: 180px;
        height: 180px;
        background-color: rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.24);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(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;
        border-radius: 50%;
        color: #FFF;
        font-family: "DM Sans", sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: normal;
    }

@media (max-width: 991px) {
    .eb_h4-video-wrap a {
        width: 150px;
        height: 150px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .eb_h4-video-wrap a {
        width: 130px;
        height: 130px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .eb_h4-video-wrap a {
        width: 120px;
        height: 120px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .eb_h4-video-wrap a {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }
}

.eb_h5-video-wrap {
    position: relative;
    z-index: 1;
    padding-left: 20px;
    padding-right: 20px;
}

    .eb_h5-video-wrap::before {
        position: absolute;
        width: 206px;
        height: 206px;
        left: 50%;
        top: 50%;
        background: rgba(255, 255, 255, 0.14);
        -webkit-backdrop-filter: blur(7px);
        backdrop-filter: blur(7px);
        content: "";
        z-index: 1;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

@media (max-width: 767px) {
    .eb_h5-video-wrap::before {
        width: 140px;
        height: 140px;
    }
}

.eb_h5-video-wrap img {
    width: 100%;
    min-height: 350px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.eb_h5-video-count {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 40px 80px;
}

@media (max-width: 991px) {
    .eb_h5-video-count {
        padding: 25px 35px;
    }
}

@media (max-width: 767px) {
    .eb_h5-video-count {
        padding: 20px 25px;
    }
}

.eb_h5-video-count h2 {
    font-family: "Marcellus", serif;
    font-size: 100px;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
}

@media (max-width: 1399px) {
    .eb_h5-video-count h2 {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .eb_h5-video-count h2 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .eb_h5-video-count h2 {
        font-size: 40px;
    }
}

.eb_h5-video-count span {
    font-size: 24px;
    line-height: 1;
    display: block;
    font-family: "Marcellus", serif;
    color: #000;
}

@media (max-width: 991px) {
    .eb_h5-video-count span {
        font-size: 20px;
    }
}

.eb_h5-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--clr-theme-primary-5);
    background: linear-gradient(140deg, #F94140 0%, #B71B1A 100%);
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 30px;
    color: #fff;
    z-index: 1;
}

@media (max-width: 767px) {
    .eb_h5-video-play {
        width: 100px;
        height: 100px;
        font-size: 22px;
    }
}

.eb_h5-video-play:hover {
    color: #fff;
}

/* ///////////////////////////////////////////////////////////
12. blog
/////////////////////////////////////////////////////////// */
.eb_h2-blog-item {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    padding: 45px 40px 50px;
}

@media (max-width: 1399px) {
    .eb_h2-blog-item {
        padding: 45px 30px 50px;
    }
}

@media (max-width: 480px) {
    .eb_h2-blog-item {
        padding: 45px 25px 50px;
    }
}

.eb_h2-blog-item-title {
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 25px;
}

    .eb_h2-blog-item-title:hover a {
        color: var(--clr-theme-primary-2);
    }

@media (max-width: 991px) {
    .eb_h2-blog-item-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .eb_h2-blog-item-title {
        font-size: 20px;
    }
}

.eb_h2-blog-item-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

    .eb_h2-blog-item-meta span {
        color: rgba(0, 0, 0, 0.6);
        font-size: 13px;
        font-weight: 500;
        line-height: normal;
        display: block;
        position: relative;
        padding-left: 12px;
    }

        .eb_h2-blog-item-meta span::before {
            position: absolute;
            left: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            content: "";
            width: 6px;
            height: 6px;
            background: #000;
        }

        .eb_h2-blog-item-meta span:hover::before {
            background: var(--clr-theme-primary-2);
        }

        .eb_h2-blog-item-meta span:hover a {
            color: var(--clr-theme-primary-2);
        }

.eb_h2-blog-item p {
    color: rgba(16, 16, 16, 0.6);
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 44px;
}

.eb_h2-blog-item-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.eb_h2-blog-item-admin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

    .eb_h2-blog-item-admin img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .eb_h2-blog-item-admin span {
        color: rgba(16, 16, 16, 0.6);
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
    }

.eb_h2-blog-item-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
}

    .eb_h2-blog-item-btn a:hover {
        color: var(--clr-theme-primary-2);
    }

.eb_h3-blog-item {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.16);
}

.eb_h3-blog-item-img {
    overflow: hidden;
    border-radius: 14px;
}

    .eb_h3-blog-item-img img {
        border-radius: 14px;
        width: 100%;
        -webkit-transition: all 0.5s linear 0s;
        transition: all 0.5s linear 0s;
    }

.eb_h3-blog-item-content {
    padding: 24px 30px 23px;
}

@media (max-width: 480px) {
    .eb_h3-blog-item-content {
        padding: 24px 20px 23px;
    }
}

.eb_h3-blog-item-content h3 {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

    .eb_h3-blog-item-content h3:hover a {
        color: var(--clr-theme-primary-2);
    }

.eb_h3-blog-item-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .eb_h3-blog-item-bottom span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
        color: rgba(0, 0, 0, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 26px;
    }

        .eb_h3-blog-item-bottom span i {
            color: #000;
        }

    .eb_h3-blog-item-bottom a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
        color: #000;
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 600;
        line-height: normal;
    }

        .eb_h3-blog-item-bottom a:hover {
            color: var(--clr-theme-primary-2);
        }

.eb_h3-blog-item:hover .eb_h3-blog-item-img img {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

.eb_h4-blog-item-img {
    overflow: hidden;
}

    .eb_h4-blog-item-img img {
        width: 100%;
        -webkit-transition: all 0.5s linear 0s;
        transition: all 0.5s linear 0s;
    }

.eb_h4-blog-item-content {
    padding: 24px 30px 24px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-top: 0;
}

@media (max-width: 991px) {
    .eb_h4-blog-item-content {
        padding: 24px 25px 24px;
    }
}

.eb_h4-blog-item-content h3 {
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.36;
    margin-bottom: 30px;
}

    .eb_h4-blog-item-content h3:hover a {
        color: var(--clr-theme-primary-4);
    }

.eb_h4-blog-item-bottom {
    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;
    row-gap: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .eb_h4-blog-item-bottom span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
        color: rgba(0, 0, 0, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 26px;
    }

        .eb_h4-blog-item-bottom span i {
            color: #000;
        }

    .eb_h4-blog-item-bottom a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
        color: #000;
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 600;
        line-height: normal;
    }

        .eb_h4-blog-item-bottom a:hover {
            color: var(--clr-theme-primary-4);
        }

.eb_h4-blog-item:hover .eb_h4-blog-item-img img {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

.eb_h5-blog-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 270px 1fr;
    grid-template-columns: 270px 1fr;
}

@media (max-width: 1399px) {
    .eb_h5-blog-item {
        -ms-grid-columns: 250px 1fr;
        grid-template-columns: 250px 1fr;
    }
}

@media (max-width: 1199px) {
    .eb_h5-blog-item {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.eb_h5-blog-item-img {
    overflow: hidden;
}

    .eb_h5-blog-item-img img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

@media (max-width: 1199px) {
    .eb_h5-blog-item-img img {
        max-height: 350px;
    }
}

.eb_h5-blog-item-img:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.eb_h5-blog-item-content {
    border: 1px solid rgba(0, 0, 0, 0.16);
    padding: 20px 30px;
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1399px) {
    .eb_h5-blog-item-content {
        padding: 20px 25px;
    }
}

.eb_h5-blog-item-content-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    font-family: "Marcellus", serif;
    color: #000;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .eb_h5-blog-item-content-title {
        font-size: 20px;
    }
}

.eb_h5-blog-item-content-title:hover a {
    color: var(--clr-theme-primary-5);
}

.eb_h5-blog-item-content-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

    .eb_h5-blog-item-content-meta span {
        color: rgba(0, 0, 0, 0.6);
        display: block;
        position: relative;
        z-index: 1;
        font-size: 13px;
        font-weight: 500;
        padding-left: 12px;
    }

        .eb_h5-blog-item-content-meta span::before {
            position: absolute;
            left: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            content: "";
            width: 6px;
            height: 6px;
            background: #000;
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

        .eb_h5-blog-item-content-meta span:hover::before {
            background-color: var(--clr-theme-primary-5);
        }

        .eb_h5-blog-item-content-meta span:hover a {
            color: var(--clr-theme-primary-5);
        }

.eb_h5-blog-item-content-btn {
    font-size: 15px;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

    .eb_h5-blog-item-content-btn:hover {
        color: var(--clr-theme-primary-5);
    }

.eb-blog_details-content img {
    border-radius: 10px;
}

.eb-blog_details-content-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;
    row-gap: 10px;
    margin-bottom: 35px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .eb-blog_details-content-meta span {
        color: #010915;
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        font-weight: 500;
        line-height: 20px;
        text-transform: uppercase;
    }

        .eb-blog_details-content-meta span.category {
            border-radius: 6px;
            background: var(--clr-theme-primary-2);
            color: #fff;
            font-family: "DM Sans", sans-serif;
            font-size: 15px;
            font-weight: 500;
            line-height: 20px;
            text-transform: uppercase;
            padding: 0 12px;
            height: 30px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .eb-blog_details-content-meta span a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 8px;
        }

.eb-blog_details-content-title {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .eb-blog_details-content-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .eb-blog_details-content-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .eb-blog_details-content-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .eb-blog_details-content-title {
        font-size: 24px;
    }
}

.eb-blog_details-content-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.eb-blog_details-content blockquote {
    border-radius: 10px;
    background: #000;
    padding: 40px 35px 40px;
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 25px;
}

@media (max-width: 480px) {
    .eb-blog_details-content blockquote {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.eb-blog_details-content blockquote svg {
    color: #fff;
    width: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.eb-blog_details-content blockquote p {
    color: rgb(255, 255, 255);
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}

    .eb-blog_details-content blockquote p cite {
        color: #fff;
        display: block;
        font-family: "DM Sans", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        font-style: normal;
        margin-top: 19px;
    }

.eb-blog_details-content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border: 1px solid rgba(8, 5, 33, 0.1);
    border-left: 0;
    border-right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.eb-blog_details-content-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .eb-blog_details-content-tag span {
        color: rgb(0, 0, 0);
        font-family: "DM Sans", sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .eb-blog_details-content-tag ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        gap: 6px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .eb-blog_details-content-tag ul li a {
            border: 1px solid rgba(0, 0, 0, 0.16);
            height: 30px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 0 14px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            border-radius: 4px;
            color: rgba(0, 0, 0, 0.6);
            font-family: "Inter", sans-serif;
            font-size: 14px;
            font-weight: 500;
            line-height: 17px;
        }

            .eb-blog_details-content-tag ul li a:hover {
                background-color: var(--clr-theme-primary-2);
                border-color: var(--clr-theme-primary-2);
                color: #fff;
            }

.eb-blog_details-content-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

    .eb-blog_details-content-social span {
        color: rgb(0, 0, 0);
        font-family: "DM Sans", sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .eb-blog_details-content-social ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        gap: 6px;
    }

        .eb-blog_details-content-social ul li a {
            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;
            border-radius: 50%;
            background: #1877F2;
            color: #fff;
            font-size: 16px;
        }

            .eb-blog_details-content-social ul li a.twitter {
                background-color: #040618;
            }

            .eb-blog_details-content-social ul li a.linkedin {
                background-color: #0A66C2;
            }

            .eb-blog_details-content-social ul li a.pinterest {
                background-color: #CB2027;
            }

.blog_details-comment-title {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.blog_details-comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    border-bottom: 1px solid rgba(27, 42, 82, 0.07);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

@media (max-width: 1199px) {
    .blog_details-comment-item.ml-80 {
        margin-left: 60px;
    }
}

@media (max-width: 575px) {
    .blog_details-comment-item.ml-80 {
        margin-left: 50px;
    }
}

@media (max-width: 480px) {
    .blog_details-comment-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .blog_details-comment-item.ml-80 {
            margin-left: 0;
        }
}

.blog_details-comment-img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
}

    .blog_details-comment-img img {
        width: 100%;
        height: 100%;
    }

.blog_details-comment-content h6 {
    color: #080521;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.blog_details-comment-content span {
    display: block;
    color: rgba(8, 5, 33, 0.7);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog_details-comment-content p {
    color: rgba(8, 5, 33, 0.8);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 25px;
}

.blog_details-comment-content .comment-reply {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #080521;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    height: 38px;
    padding: 0 16px;
}

    .blog_details-comment-content .comment-reply:hover {
        background-color: var(--clr-theme-primary-2);
        color: #fff;
    }

@media (max-width: 1399px) {
    .eb-blog_details-left.mr-40 {
        margin-right: 10px;
    }
}

@media (max-width: 1199px) {
    .eb-blog_details-left.mr-40 {
        margin-right: 0;
    }
}

.eb-blog_details-left .post-comments-title {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
}

.eb-blog_details-left .post-comments p {
    color: rgba(0, 0, 0, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 35px;
}

.eb-blog_details-left .post-input label {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.eb-blog_details-left .post-input input, .eb-blog_details-left .post-input textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: rgba(0, 0, 0, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.eb-blog_details-left .post-input textarea {
    height: 200px;
}

.eb-blog_details-left .post-comments-btn button {
    border: none;
    border-radius: 10px;
    height: 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;
    padding: 0 35px;
    background-color: var(--clr-theme-primary-2);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.eb-blog_details-widget {
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 14px;
    padding: 35px 30px 40px;
    margin-bottom: 30px;
}

    .eb-blog_details-widget:nth-child(2) {
        padding-bottom: 35px;
    }

@media (max-width: 480px) {
    .eb-blog_details-widget {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.eb-blog_details-widget-title {
    color: rgb(0, 0, 0);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.eb-blog_details-widget form {
    position: relative;
    z-index: 1;
}

    .eb-blog_details-widget form input {
        border: 1px solid rgba(0, 0, 0, 0.16);
        width: 100%;
        border-radius: 10px;
        height: 58px;
        padding: 0 24px;
        line-height: 58px;
        color: rgba(0, 0, 0, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 13px;
        font-weight: 500;
    }

    .eb-blog_details-widget form button {
        position: absolute;
        right: 5px;
        height: 47px;
        width: 47px;
        border: none;
        background: var(--clr-theme-primary-2);
        color: #fff;
        border-radius: 6px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.eb-blog_details-widget ul {
    list-style: none;
}

    .eb-blog_details-widget ul li a {
        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;
        color: rgba(1, 9, 21, 0.6);
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(1, 9, 21, 0.1);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .eb-blog_details-widget ul li:last-child a {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.eb-blog_details-widget-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .eb-blog_details-widget-post {
        gap: 20px;
    }
}

.eb-blog_details-widget-post:last-child {
    margin-bottom: 0;
}

.eb-blog_details-widget-post .eb_post-img {
    height: 100px;
    width: 100px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .eb-blog_details-widget-post .eb_post-img {
        width: 90px;
        height: 90px;
    }
}

.eb-blog_details-widget-post .eb_post-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.eb-blog_details-widget-post .eb_post-info h5 {
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .eb-blog_details-widget-post .eb_post-info h5 {
        font-size: 16px;
    }
}

.eb-blog_details-widget-post .eb_post-info span {
    display: block;
    position: relative;
    z-index: 1;
    color: rgba(0, 0, 0, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    padding-left: 12px;
    margin-bottom: 8px;
}

    .eb-blog_details-widget-post .eb_post-info span::before {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background: #000;
        width: 6px;
        content: "";
        height: 6px;
    }

.eb-blog_details-widget-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .eb-blog_details-widget-tag a {
        height: 30px;
        border: 1px solid rgba(0, 0, 0, 0.16);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 13px;
        border-radius: 4px;
        color: rgba(0, 0, 0, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 500;
    }

        .eb-blog_details-widget-tag a:hover {
            background-color: var(--clr-theme-primary-2);
            border-color: var(--clr-theme-primary-2);
            color: #fff;
        }

.eb_pagination-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
}

    .eb_pagination-area a, .eb_pagination-area span a {
        height: 44px;
        width: 44px;
        border-radius: 6px;
        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 rgba(23, 23, 24, 0.1);
        gap: 5px;
        color: rgb(1, 9, 21);
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        font-family: "Inter", sans-serif;
    }

        .eb_pagination-area a:hover, .eb_pagination-area span a:hover {
            background-color: var(--clr-theme-primary-2);
            border-color: var(--clr-theme-primary-2);
            color: #fff;
        }

    .eb_pagination-area span a {
        padding: 0 20px;
        width: auto;
    }

/* ///////////////////////////////////////////////////////////
13. process
/////////////////////////////////////////////////////////// */
.eb_h3-process-item-icon {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.eb_h3-process-item-icon-number {
    position: absolute;
    right: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: radial-gradient(146.54% 146.36% at 7.61% 1.86%, #F7F7F8 0%, #FAFAFB 51%, #FFF 72%);
    -webkit-box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.1);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
}

    .eb_h3-process-item-icon-number.item-2 h4 {
        color: #FB1E21;
    }

    .eb_h3-process-item-icon-number.item-3 h4 {
        color: #06B336;
    }

    .eb_h3-process-item-icon-number h4 {
        color: #1E80FC;
        text-align: center;
        font-family: "DM Sans", sans-serif;
        font-size: 20px;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        margin-bottom: 0;
    }

        .eb_h3-process-item-icon-number h4 span {
            font-size: 44px;
            line-height: 1;
            display: block;
        }

.eb_h3-process-item p {
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 1199px) {
    .eb_h3-process-item p br {
        display: none;
    }
}

.eb_h3-process-item-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

    .eb_h3-process-item-head h3 {
        color: #101010;
        font-family: "DM Sans", sans-serif;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        margin-bottom: 0;
    }

        .eb_h3-process-item-head h3:hover a {
            color: var(--clr-theme-primary-2);
        }

    .eb_h3-process-item-head svg {
        color: #000;
    }

@media (max-width: 991px) {
    .eb_h3-process-item.item-2 {
        display: -ms-grid;
        display: grid;
    }

        .eb_h3-process-item.item-2 .eb_h3-process-item-icon {
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1;
            margin-top: 0;
            margin-bottom: 30px;
        }

        .eb_h3-process-item.item-2 .eb_h3-process-item-content {
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2;
        }
}

.eb_h5-process-item {
    border: 1px solid rgba(0, 0, 0, 0.16);
    padding: 60px 70px 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
}

@media (max-width: 1399px) {
    .eb_h5-process-item {
        padding: 60px 50px 52px;
    }
}

@media (max-width: 1199px) {
    .eb_h5-process-item {
        padding: 50px 30px 42px;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .eb_h5-process-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.eb_h5-process-item-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .eb_h5-process-item-icon svg {
        width: 50px;
    }
}

.eb_h5-process-item-content h3 {
    font-family: "Marcellus", serif;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 7px;
    font-weight: 400;
    color: #000;
}

@media (max-width: 1199px) {
    .eb_h5-process-item-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .eb_h5-process-item-content h3 {
        font-size: 20px;
    }
}

.eb_h5-process-item-content p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 25px;
}

.eb_h5-process-item-content a {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

    .eb_h5-process-item-content a:hover {
        color: var(--clr-theme-primary-5);
    }

/* ///////////////////////////////////////////////////////////
14. section
/////////////////////////////////////////////////////////// */
.anim-reveal-line {
    overflow: hidden;
}

.eb-section-subtitle {
    display: block;
    position: relative;
    z-index: 1;
    padding-left: 16px;
    color: rgb(0, 0, 0);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}

@media (max-width: 575px) {
    .eb-section-subtitle {
        font-size: 16px;
    }
}

.eb-section-subtitle::before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #008B5D;
}

.eb-section-title {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .eb-section-title {
        font-size: 42px;
    }
}

@media (max-width: 1199px) {
    .eb-section-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .eb-section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .eb-section-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .eb-section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .eb-section-title {
        font-size: 24px;
    }
}

.eb_h2-section-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 115px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .eb_h2-section-area {
        gap: 80px;
    }
}

@media (max-width: 767px) {
    .eb_h2-section-area {
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .eb_h2-section-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }
}

.eb_h2-section-subtitle {
    color: rgba(16, 16, 16, 0.6);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    position: relative;
    z-index: 1;
    padding-left: 12px;
    margin-top: 3px;
}

    .eb_h2-section-subtitle::before {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        content: "";
        width: 6px;
        height: 6px;
        background-color: #101010;
    }

.eb_h2-section-title {
    color: #101010;
    font-family: "Marcellus", serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .eb_h2-section-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .eb_h2-section-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .eb_h2-section-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .eb_h2-section-title {
        font-size: 26px;
    }
}

.eb_h2-section-area.eb_h2-choose-section {
    gap: 88px;
}

@media (max-width: 1399px) {
    .eb_h2-section-area.eb_h2-choose-section {
        gap: 65px;
    }
}

@media (max-width: 575px) {
    .eb_h2-section-area.eb_h2-choose-section {
        gap: 10px;
    }
}

.eb_h3-section-subtitle {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: inline-block;
    padding-left: 45px;
    position: relative;
    z-index: 1;
    margin-bottom: 11px;
}

@media (max-width: 480px) {
    .eb_h3-section-subtitle {
        font-size: 14px;
    }
}

.eb_h3-section-subtitle::before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 34px;
    height: 6px;
    content: "";
    border-radius: 20px;
    background: #9DFF20;
}

.eb_h3-section-title {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

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

@media (max-width: 991px) {
    .eb_h3-section-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .eb_h3-section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .eb_h3-section-title {
        font-size: 24px;
    }
}

.eb_h3-section-text {
    color: rgba(0, 0, 0, 0.6);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.eb_h4-section-subtitle {
    color: rgba(0, 0, 0, 0.7);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: block;
    position: absolute;
    left: 47px;
    top: 12px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

@media (max-width: 1399px) {
    .eb_h4-section-subtitle {
        padding-left: 64px;
        position: relative;
        left: 0;
        top: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        margin-bottom: 12px;
    }
}

.eb_h4-section-subtitle::before {
    position: absolute;
    content: "";
    border-radius: 10px;
    background: var(--clr-theme-primary-4);
    bottom: -17px;
    right: -38px;
    width: 4px;
    height: 54px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media (max-width: 1399px) {
    .eb_h4-section-subtitle::before {
        right: auto;
        left: 0;
        width: 54px;
        height: 4px;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.eb_h4-section-title {
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
}

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

@media (max-width: 767px) {
    .eb_h4-section-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .eb_h4-section-title {
        font-size: 28px;
    }
}

.eb_h4-section-title span {
    position: relative;
    z-index: 1;
}

    .eb_h4-section-title span img {
        position: absolute;
        bottom: -4px;
        left: 5px;
        z-index: -1;
    }

.eb_h5-section-subtitle {
    border: 1px solid rgba(0, 0, 0, 0.14);
    color: rgba(0, 0, 0, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    height: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-left: 27px;
    padding-right: 15px;
    margin-bottom: 20px;
}

    .eb_h5-section-subtitle::before {
        position: absolute;
        left: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        content: "";
        width: 6px;
        height: 6px;
        background: #000;
    }

.eb_h5-section-title {
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

@media (max-width: 1399px) {
    .eb_h5-section-title {
        font-size: 44px;
    }
}

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

@media (max-width: 991px) {
    .eb_h5-section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .eb_h5-section-title {
        font-size: 28px;
    }

        .eb_h5-section-title br {
            display: none;
        }
}

@media (max-width: 480px) {
    .eb_h5-section-title {
        font-size: 24px;
    }
}

.eb_h5-section-title-small {
    font-size: 34px;
    line-height: 1.3;
}

@media (max-width: 1399px) {
    .eb_h5-section-title-small {
        font-size: 32px;
    }
}

@media (max-width: 1199px) {
    .eb_h5-section-title-small {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .eb_h5-section-title-small {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .eb_h5-section-title-small {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .eb_h5-section-title-small {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .eb_h5-section-title-small {
        font-size: 22px;
    }
}

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

@media (max-width: 991px) {
    .gap-120 {
        -webkit-column-gap: 60px;
        -moz-column-gap: 60px;
        column-gap: 60px;
    }
}

@media (max-width: 767px) {
    .gap-120 {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}

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

@media (max-width: 991px) {
    .gap-105 {
        -webkit-column-gap: 60px;
        -moz-column-gap: 60px;
        column-gap: 60px;
    }
}

@media (max-width: 767px) {
    .gap-105 {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}

/* ///////////////////////////////////////////////////////////
15. faq
/////////////////////////////////////////////////////////// */
.eb-faq-content .accordion-item {
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.eb-faq-content .accordion-button {
    position: relative;
    padding-left: 24px;
    padding-right: 54px;
    padding-top: 20px;
    padding-bottom: 20px;
    cursor: pointer;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fff;
    border-radius: 0 !important;
    border: 0;
    color: rgb(0, 0, 0);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 480px) {
    .eb-faq-content .accordion-button {
        font-size: 16px;
    }
}

.eb-faq-content .accordion-button::after {
    display: none;
}

.eb-faq-content .accordion-button::before {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    width: 32px;
    height: 32px;
    line-height: 31px;
    text-align: center;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

@media (max-width: 575px) {
    .eb-faq-content .accordion-button::before {
        right: 20px;
    }
}

.eb-faq-content .accordion-button:not(.collapsed)::before {
    border-color: transparent;
    background-color: #008B5D;
    color: #fff;
    content: "\f106";
    line-height: 31px;
}

.eb-faq-content .accordion-body {
    padding: 0 40px 24px 24px;
    background: #fff;
}

    .eb-faq-content .accordion-body p {
        color: rgba(0, 0, 0, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 26px;
        margin-bottom: 0;
    }

@media (max-width: 1399px) {
    .eb-faq-img.mr-30 {
        margin-right: 20px;
    }
}

@media (max-width: 1199px) {
    .eb-faq-img.mr-30 {
        margin-right: 0;
    }
}

@media (max-width: 1399px) {
    .eb-faq-wrap.ml-20 {
        margin-left: 0;
    }
}

/* ///////////////////////////////////////////////////////////
16. error
/////////////////////////////////////////////////////////// */
.eb-error-area {
    padding-bottom: 24px;
}

.eb-error-wrap {
    background: #E3E8EA;
    margin-left: 24px;
    margin-right: 24px;
    border-radius: 30px;
    padding-top: 210px;
    padding-bottom: 80px;
    position: relative;
    min-height: 955px;
    height: calc(100vh - 24px);
}

@media (max-width: 767px) {
    .eb-error-wrap {
        padding-top: 180px;
        min-height: 700px;
    }
}

.eb-error-info a {
    border-radius: 10px;
    background: var(--clr-theme-primary-2);
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgb(255, 255, 255);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 0 45px;
}

.eb-error-img {
    margin-bottom: 42px;
}

.eb-error-info h4 {
    color: rgb(0, 0, 0);
    font-family: "DM Sans", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.25;
    text-transform: uppercase;
}

@media (max-width: 575px) {
    .eb-error-info h4 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .eb-error-info h4 {
        font-size: 22px;
    }
}

.eb-error-info p {
    color: rgba(16, 16, 16, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 38px;
}

.eb-error-shape-1 {
    position: absolute;
    left: 335px;
    top: 120px;
}

@media (max-width: 767px) {
    .eb-error-shape-1 {
        display: none;
    }
}

.eb-error-shape-2 {
    position: absolute;
    left: 60px;
    bottom: 80px;
}

@media (max-width: 767px) {
    .eb-error-shape-2 {
        display: none;
    }
}

.eb-error-shape-3 {
    position: absolute;
    right: 170px;
    top: 290px;
}

@media (max-width: 767px) {
    .eb-error-shape-3 {
        display: none;
    }
}

/* ///////////////////////////////////////////////////////////
17. breadcrumb
/////////////////////////////////////////////////////////// */
.eb-breadcrumb-area {
    background-color: #ef7f1a;
    margin: 0 0px;
    border-radius: 0px;
    position: relative;
    z-index: 1;
}

.eb-breadcrumb-wrap {
    max-width: 1630px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 18px;
    padding-bottom: 18px;
}

@media (max-width: 991px) {
    .eb-breadcrumb-wrap {
        padding-top: 15px;
    }
}

.eb-breadcrumb-img {
    position: relative;
    z-index: auto;
    margin-top: -35px;
}

@media (max-width: 767px) {
    .eb-breadcrumb-img {
        margin-top: 0;
    }
}

.eb-breadcrumb-img img {
    width: 100%;
}

.eb-breadcrumb-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .eb-breadcrumb-content h1 {
        color: #a94100;
        font-family: "DM Sans", sans-serif;
        font-size: 35px;
        font-weight: 500;
        line-height: 1.2;
        text-transform: uppercase;
        margin-bottom: 22px;
    }

@media (max-width: 1199px) {
    .eb-breadcrumb-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .eb-breadcrumb-content h1 {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .eb-breadcrumb-content h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .eb-breadcrumb-content h1 {
        font-size: 25px;
    }
}

.eb-breadcrumb-list {
    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;
}

    .eb-breadcrumb-list span {
        font-family: "DM Sans", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
        text-align: center;
        text-transform: uppercase;
        color: var(--clr-theme-primary-2);
    }

@media (max-width: 575px) {
    .eb-breadcrumb-list span {
        font-size: 14px;
    }

    .eb-breadcrumb-list a {
        font-size: 14px;
    }
}

@media xxs {
    .eb-breadcrumb-list span {
        font-size: 14px;
    }
}

.eb-breadcrumb-list span::before {
    display: inline-block;
    content: "/";
    font-family: "Font Awesome 6 Pro";
    color: #010915;
    font-size: 14px;
    padding-left: 12px;
    padding-right: 12px;
}

.eb-breadcrumb-list a {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    color: #a94100;
}

@media (max-width: 575px) {

    .eb-breadcrumb-list a {
        font-size: 14px;
    }
}

@media xs {
    .eb-breadcrumb-list a {
        font-size: 15px;
    }
}

@media xxs {
    .eb-breadcrumb-list a {
        font-size: 14px;
    }
}

.eb-breadcrumb-list a:hover {
    color: var(--clr-theme-primary-2);
}

.eb-breadcrumb-shape-1 {
    position: absolute;
    left: 18%;
    top: 8%;
}

@media (max-width: 1399px) {
    .eb-breadcrumb-shape-1 {
        top: 10%;
    }
}

@media (max-width: 1199px) {
    .eb-breadcrumb-shape-1 {
        top: 15%;
    }
}

@media (max-width: 991px) {
    .eb-breadcrumb-shape-1 {
        display: none;
    }
}

.eb-breadcrumb-shape-2 {
    position: absolute;
    left: 3%;
    bottom: 13%;
}

@media (max-width: 1399px) {
    .eb-breadcrumb-shape-2 {
        bottom: 10%;
    }
}

@media (max-width: 991px) {
    .eb-breadcrumb-shape-2 {
        bottom: 7%;
        left: 2%;
    }
}

@media (max-width: 991px) {
    .eb-breadcrumb-shape-2 {
        display: none;
    }
}

.eb-breadcrumb-shape-3 {
    position: absolute;
    right: 20%;
    top: 27%;
}

@media (max-width: 1399px) {
    .eb-breadcrumb-shape-3 {
        top: 30%;
    }
}

@media (max-width: 1199px) {
    .eb-breadcrumb-shape-3 {
        top: 40%;
    }
}

@media (max-width: 991px) {
    .eb-breadcrumb-shape-3 {
        display: none;
    }
}

/* ///////////////////////////////////////////////////////////
18. sidebar
/////////////////////////////////////////////////////////// */
.side-info {
    width: 100%;
    max-width: 400px;
    background-color: #000;
    -webkit-box-shadow: 0 13px 29px rgba(4, 0, 23, 0.1);
    box-shadow: 0 13px 29px rgba(4, 0, 23, 0.1);
    height: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    right: -400px;
    -webkit-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    padding: 40px;
}

    .side-info:is(.info-open) {
        right: 0;
        overflow-y: scroll;
        scrollbar-width: thin;
    }

.offcanvas-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(4, 0, 23, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    cursor: url(../img/bg/close.png), auto;
}

    .offcanvas-overlay:is(.overlay-open) {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

.mean-container .mean-nav {
    background: transparent;
}

    .mean-container .mean-nav ul li a {
        border-color: #2c2a2a;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
    }

.pl-sidebar-close.side-info-close {
    background: transparent;
    border: none;
    font-size: 25px;
    color: #fff;
}

.mean-container .mean-nav ul li a.mean-expand {
    padding: 9px 12px;
    border-color: transparent;
}

    .mean-container .mean-nav ul li a.mean-expand:hover {
        background: rgba(255, 255, 255, 0.2);
    }

/* sidebar contact info */
.sidebar-contact-title {
    font-size: 24px;
    color: var(--clr-common-white);
    margin-bottom: 20px;
}

.sidebar-contact > a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

    .sidebar-contact > a:hover {
        color: #fff;
    }

    .sidebar-contact > a i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background-color: #ddd;
        color: var(--clr-body-text);
        display: inline-block;
        margin-right: 15px;
        -webkit-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

    .sidebar-contact > a:hover i {
        background-color: var(--clr-theme-primary-2);
        color: #fff;
    }

.sidebar-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
}

    .sidebar-address span {
        color: rgba(255, 255, 255, 0.7);
    }

    .sidebar-address i {
        max-width: 40px;
        height: 40px;
        background-color: #ddd;
        line-height: 40px;
        text-align: center;
        margin-right: 15px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
        flex: 0 0 40px;
    }

.sidebar-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    text-align: center;
}

    .sidebar-social a:not(:last-child) {
        margin-right: 7px;
    }

    .sidebar-social a:hover {
        color: #fff;
        background-color: var(--clr-theme-primary-2);
    }

/* Search */
.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background: #253A1A;
    z-index: 999;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    cursor: url(../img/bg/close.png), auto;
}

    .body-overlay.active {
        visibility: visible;
        opacity: 0.97;
    }

.td-search-popup .search-form {
    width: 35%;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 999;
}

.td-search-popup.active .search-form {
    visibility: visible;
    opacity: 1;
    width: 40%;
}

@media (max-width: 767px) {
    .td-search-popup.active .search-form {
        width: calc(100% - 50px);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .td-search-popup.active .search-form {
        width: 70%;
    }
}

.td-search-popup.active .search-form {
    visibility: visible;
}

.td-search-popup .search-form .form-group .form-control {
    border: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    height: 60px;
    padding: 0 75px 0 25px;
    background: #f7f9fb;
    line-height: 60px;
}

.td-search-popup .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #ffffff;
    -webkit-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    padding: 0;
    text-align: center;
    cursor: pointer;
    background: #FF9400;
}

.sidebar-close {
    border: 0;
    background-color: transparent;
    font-size: 25px;
    color: #fff;
}

    .sidebar-close:hover {
        color: #fff;
    }

/* ///////////////////////////////////////////////////////////
19. contact
/////////////////////////////////////////////////////////// */
.contact-wrap {
    padding: 80px 80px 60px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
    box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
    position: relative;
    z-index: 1;
    margin-bottom: -160px;
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .contact-wrap {
        padding: 80px 60px 60px;
    }
}

@media (max-width: 991px) {
    .contact-wrap {
        padding: 80px 40px 60px;
    }
}

@media (max-width: 767px) {
    .contact-wrap {
        padding: 60px 40px 40px;
    }
}

@media (max-width: 575px) {
    .contact-wrap {
        padding: 60px 20px 40px;
    }
}

.contact-content {
    border-right: 1px solid rgba(4, 0, 23, 0.14);
}

@media (max-width: 1399px) {
    .contact-content {
        padding-right: 60px;
    }
}

@media (max-width: 1199px) {
    .contact-content {
        padding-right: 40px;
    }
}

@media (max-width: 991px) {
    .contact-content {
        padding-right: 30px;
    }
}

@media (max-width: 575px) {
    .contact-content {
        padding-right: 0;
        border-right: 0;
    }
}

.contact-title {
    font-size: 32px;
}

@media (max-width: 767px) {
    .contact-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .contact-title {
        font-size: 26px;
    }
}

.contact-form-input {
    position: relative;
    z-index: auto;
}

    .contact-form-input input, .contact-form-input textarea {
        width: 100%;
        height: 60px;
        line-height: 60px;
        border: none;
        border-bottom: 1px solid rgba(4, 0, 23, 0.14);
        padding: 0 30px;
        color: rgba(4, 0, 23, 0.6);
        font-size: 16px;
    }

        .contact-form-input input::-webkit-input-placeholder, .contact-form-input textarea::-webkit-input-placeholder {
            color: rgba(4, 0, 23, 0.6);
            font-size: 16px;
            opacity: 1;
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

        .contact-form-input input:-moz-placeholder, .contact-form-input textarea:-moz-placeholder {
            color: rgba(4, 0, 23, 0.6);
            font-size: 16px;
            opacity: 1;
            -webkit-transition: all 0.3s linear 0s;
            -moz-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

        .contact-form-input input::-moz-placeholder, .contact-form-input textarea::-moz-placeholder {
            color: rgba(4, 0, 23, 0.6);
            font-size: 16px;
            opacity: 1;
            -webkit-transition: all 0.3s linear 0s;
            -moz-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

        .contact-form-input input:-ms-input-placeholder, .contact-form-input textarea:-ms-input-placeholder {
            color: rgba(4, 0, 23, 0.6);
            font-size: 16px;
            opacity: 1;
            -webkit-transition: all 0.3s linear 0s;
            -ms-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

    .contact-form-input .inner-icon {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 14px;
        color: rgba(4, 0, 23, 0.6);
    }

    .contact-form-input .inner-icon-select {
        top: 30px;
        z-index: 99;
    }

    .contact-form-input textarea {
        height: 95px;
        line-height: 22px;
        padding-top: 20px;
    }

.contact-form-textarea .inner-icon {
    top: 17px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.contact-form-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

@media (max-width: 1199px), (max-width: 991px), (max-width: 575px) {
    .contact-form-submit {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media (max-width: 1199px), (max-width: 991px), (max-width: 575px) {
    .contact-form-btn {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.contact-form-condition .condition_label {
    display: block;
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .contact-form-condition .condition_label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.contact-form-condition .check_mark {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    height: 14px;
    width: 14px;
    background-color: transparent;
    border: 1px solid rgba(30, 30, 30, 0.2);
    border-radius: 2px;
}

    .contact-form-condition .check_mark:after {
        content: "";
        position: absolute;
        display: none;
    }

.contact-form-condition .condition_label input:checked ~ .check_mark:after {
    display: block;
}

.contact-form-condition .condition_label .check_mark:after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid rgba(30, 30, 30, 0.4);
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nice-select.contact-form-list {
    width: 100%;
    height: 60px;
    line-height: 60px;
    color: rgba(4, 0, 23, 0.6);
    font-size: 16px;
    border: none;
    border-bottom: 1px solid rgba(4, 0, 23, 0.14);
    border-radius: 0;
    padding: 0 30px;
}

    .nice-select.contact-form-list::after {
        border-bottom: 1.5px solid rgba(30, 30, 30, 0.6);
        border-right: 1.5px solid rgba(30, 30, 30, 0.6);
        content: "";
        display: block;
        height: 7px;
        margin-top: -1px;
        pointer-events: none;
        position: absolute;
        right: 3px;
        top: 50%;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: rotate(45deg) translateY(-50%);
        transform: rotate(45deg) translateY(-50%);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        width: 7px;
    }

    .nice-select.contact-form-list ul {
        width: 100%;
        border-radius: 0;
        border: none;
        background-color: #fff;
        margin-top: 0;
        list-style: none;
    }

        .nice-select.contact-form-list ul li {
            color: rgba(4, 0, 23, 0.6);
            font-size: 15px;
            font-weight: 400;
            width: 100%;
            height: 50px;
            line-height: 50px;
            padding: 0 30px;
            min-height: 50px;
        }

            .nice-select.contact-form-list ul li.selected {
                font-weight: 400;
            }

.theme-btn.contact-btn {
    height: 50px;
    line-height: 50px;
    padding: 0 45px;
}

@media (max-width: 1399px) {
    .contact-info {
        margin-left: 30px;
    }
}

@media (max-width: 1199px) {
    .contact-info {
        margin-left: 10px;
    }
}

@media (max-width: 991px), (max-width: 575px) {
    .contact-info {
        margin-left: 0;
    }
}

.contact-info-item {
    margin-bottom: 20px;
}

    .contact-info-item span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 500;
        line-height: 30px;
    }

    .contact-info-item p {
        margin-bottom: 0;
        color: var(--clr-body-heading);
        font-size: 16px;
        font-weight: 500;
        line-height: 30px;
    }

    .contact-info-item a {
        font-size: 16px;
        display: block;
        color: var(--clr-body-heading);
        font-weight: 500;
    }

        .contact-info-item a:hover {
            color: var(--clr-theme-primary-2);
        }

.contact-social span {
    color: #747474;
    font-weight: 500;
    line-height: 30px;
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
}

    .contact-social ul li a {
        display: -ms-grid;
        display: grid;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(30, 30, 30, 0.1);
        place-items: center;
        border-radius: 4px;
        color: rgba(30, 30, 30, 0.3);
        font-size: 15px;
    }

        .contact-social ul li a:hover {
            background: var(--clr-theme-primary-2);
            color: #fff;
        }

.contact-map {
    height: 540px;
    width: 100%;
}

    .contact-map iframe {
        width: 100%;
        height: 100%;
    }

/* ///////////////////////////////////////////////////////////
20. button
/////////////////////////////////////////////////////////// */
.eb-theme-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    background: #101010;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    padding: 0 35px;
    border-radius: 6px;
}

    .eb-theme-btn:hover {
        color: #fff;
        background-color: var(--clr-theme-primary-2);
    }

.eb_h3-theme-btn {
    border-radius: 6px;
    background: var(--clr-theme-primary-2);
    height: 54px;
    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;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0 35px;
    gap: 6px;
}

    .eb_h3-theme-btn:hover {
        color: #fff;
    }

/* ///////////////////////////////////////////////////////////
21. footer
/////////////////////////////////////////////////////////// */
.eb-footer-headline {
    background: #f5f5fb;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 480px) {
    .eb-footer-headline {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

.eb-footer-headline-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

    .eb-footer-headline-content h2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 24px;
        margin-bottom: 0;
    }

.eb-footer-headline-title {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

@media (max-width: 575px) {
    .eb-footer-headline-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .eb-footer-headline-title {
        font-size: 30px;
    }
}

.eb-footer-headline-title.eb-title-2 {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}

.eb-footer-headline a {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
}

    .eb-footer-headline a span {
        background-color: var(--clr-theme-primary-2);
        height: 54px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #FFF;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: normal;
        padding: 0 34px;
        border-radius: 14px;
    }

@media (max-width: 575px) {
    .eb-footer-headline a span {
        height: 50px;
        padding: 0 32px;
    }
}

@media (max-width: 480px) {
    .eb-footer-headline a span {
        height: 46px;
        padding: 0 30px;
    }
}

.eb-footer-headline a span:first-child {
    padding: 0 21px;
}

@media (max-width: 575px) {
    .eb-footer-headline a span:first-child {
        padding: 0 19px;
    }
}

@media (max-width: 480px) {
    .eb-footer-headline a span:first-child {
        padding: 0 17px;
    }
}

.eb-footer-wrap {
    background-color: #f5f5fb;
    padding-left: 24px;
    padding-right: 24px;
}

.eb-footer-top {
    background: #141414;
    position: relative;
    z-index: 1;
    border-radius: 30px 30px 0px 0px;
}

.eb-footer-shape {
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 1599px) {
    .eb-footer-shape {
        max-width: 90px;
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .eb-footer-shape {
        max-width: 80px;
        width: 100%;
    }
}

.eb-footer-address {
    padding-bottom: 20px;
}

    .eb-footer-address a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        color: rgba(255, 255, 255, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        gap: 10px;
        margin-bottom: 15px;
    }

        .eb-footer-address a i {
            color: var(--clr-theme-primary-2);
            margin-top: 5px;
        }

.eb-footer-logo {
    margin-bottom: 30px;
}

    .eb-footer-logo img {
        max-width: 155px;
        width: 100%;
    }

.eb-footer-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    list-style: none;
}

    .eb-footer-social ul li a {
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.5);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .eb-footer-social ul li a:hover {
            background: var(--clr-theme-primary-2);
            color: #fff;
            border-color: var(--clr-theme-primary-2);
        }

.eb-footer-widget-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.eb-footer-widget ul {
    list-style: none;
}

    .eb-footer-widget ul li a {
        color: rgba(255, 255, 255, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        margin-bottom: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .eb-footer-widget ul li a:hover {
            color: #fff;
        }

    .eb-footer-widget ul li:last-child a {
        margin-bottom: 0;
    }

.eb-footer-widget form {
    position: relative;
    z-index: 1;
}

    .eb-footer-widget form input {
        width: 100%;
        height: 50px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: transparent;
        border-radius: 10px;
        padding: 0 20px;
        color: #FFF;
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 20px;
    }

        .eb-footer-widget form input::-webkit-input-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

        .eb-footer-widget form input:-moz-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

        .eb-footer-widget form input::-moz-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

        .eb-footer-widget form input:-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

    .eb-footer-widget form button {
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: transparent;
    }

        .eb-footer-widget form button span {
            background-color: var(--clr-theme-primary-2);
            height: 54px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            color: #FFF;
            font-family: "Inter", sans-serif;
            font-size: 16px;
            font-weight: 600;
            line-height: normal;
            padding: 0 34px;
            border-radius: 14px;
        }

            .eb-footer-widget form button span:first-child {
                padding: 0 21px;
            }

.eb-footer-bottom {
    background: #212224;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 22px;
    padding-bottom: 15px;
}

.eb-footer-copyright-text {
    margin-bottom: 7px;
}

@media (max-width: 767px) {
    .eb-footer-copyright-text {
        text-align: center;
    }
}

.eb-footer-copyright-text p {
    margin-bottom: 0;
    color: #A1A1A1;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

@media (max-width: 480px) {
    .eb-footer-copyright-text p {
        font-size: 14px;
    }
}

.eb-footer-menu {
    margin-bottom: 7px;
}

    .eb-footer-menu ul {
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 21px;
    }

@media (max-width: 767px) {
    .eb-footer-menu ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.eb-footer-menu ul li a {
    color: #A1A1A1;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: block;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .eb-footer-menu ul li a {
        font-size: 14px;
    }
}

.eb-footer-menu ul li a:hover {
    color: #fff;
}

.eb-footer-menu ul li:not(:last-child) a::before {
    position: absolute;
    right: -11px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: #A1A1A1;
    content: "";
}

.eb_h2-footer-top {
    background: #273C41;
}

.eb_h2-footer-logo {
    margin-bottom: 15px;
}

.eb_h2-footer-widget-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 22px;
}

.eb_h2-footer-widget-social {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

    .eb_h2-footer-widget-social li a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.14);
        display: -ms-grid;
        display: grid;
        place-items: center;
        color: #fff;
    }

        .eb_h2-footer-widget-social li a:hover {
            background: var(--clr-theme-primary-2);
        }

.eb_h2-footer-widget-title {
    color: #FFF;
    font-family: "Marcellus", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 23px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

    .eb_h2-footer-widget-title::before {
        position: absolute;
        right: 0;
        bottom: 2px;
        content: "";
        background: rgba(255, 255, 255, 0.3);
        height: 5px;
        width: calc(100% - 10px);
    }

.eb_h2-footer-widget ul {
    list-style: none;
}

    .eb_h2-footer-widget ul li a {
        display: block;
        position: relative;
        color: rgba(255, 255, 255, 0.7);
        font-size: 16px;
        font-weight: 500;
        line-height: 22px;
        padding-left: 18px;
    }

        .eb_h2-footer-widget ul li a::before {
            position: absolute;
            left: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            content: "";
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

        .eb_h2-footer-widget ul li a:hover {
            color: #fff;
        }

            .eb_h2-footer-widget ul li a:hover::before {
                background-color: #fff;
            }

    .eb_h2-footer-widget ul li:not(:last-child) a {
        margin-bottom: 13px;
    }

.eb_h2-footer-widget form {
    position: relative;
    z-index: 1;
}

    .eb_h2-footer-widget form input {
        background: transparent;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: #FFF;
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
        width: 100%;
        height: 44px;
        line-height: 44px;
        padding-left: 20px;
        padding-right: 60px;
    }

        .eb_h2-footer-widget form input::-webkit-input-placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
        }

        .eb_h2-footer-widget form input:-moz-placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
        }

        .eb_h2-footer-widget form input::-moz-placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
        }

        .eb_h2-footer-widget form input:-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
        }

    .eb_h2-footer-widget form button {
        position: absolute;
        right: 0;
        top: 0;
        height: 44px;
        width: 44px;
        border-radius: 0px 10px 10px 0px;
        background: var(--clr-theme-primary-2);
        color: #fff;
        border: 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;
    }

.eb_h2-footer-bottom {
    background: #1A2B2F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 22px;
    padding-bottom: 15px;
}

.eb_h2-footer-copyright-text {
    margin-bottom: 7px;
}

@media (max-width: 767px) {
    .eb_h2-footer-copyright-text {
        text-align: center;
    }
}

.eb_h2-footer-copyright-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .eb_h2-footer-copyright-text p {
        font-size: 14px;
    }
}

.eb_h2-footer-menu {
    margin-bottom: 7px;
}

    .eb_h2-footer-menu ul {
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 21px;
    }

@media (max-width: 767px) {
    .eb_h2-footer-menu ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.eb_h2-footer-menu ul li a {
    color: #B0BBBE;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: block;
    position: relative;
    z-index: 1;
}

    .eb_h2-footer-menu ul li a:hover {
        color: #fff;
    }

@media (max-width: 480px) {
    .eb_h2-footer-menu ul li a {
        font-size: 14px;
    }
}

.eb_h2-footer-menu ul li:not(:last-child) a::before {
    position: absolute;
    right: -11px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: #B0BBBE;
    content: "";
}

.eb_h3-footer-width {
    max-width: 350px;
}

.eb_h3-footer-top {
    background: #101C1F;
    position: relative;
    z-index: 1;
}

.eb_h3-footer-shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.eb_h3-footer-shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.eb_h3-footer-address {
    padding-bottom: 20px;
}

    .eb_h3-footer-address a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        color: rgba(255, 255, 255, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        gap: 10px;
        margin-bottom: 15px;
    }

        .eb_h3-footer-address a i {
            color: var(--clr-theme-primary-2);
            margin-top: 5px;
        }

.eb_h3-footer-logo {
    margin-bottom: 30px;
}

    .eb_h3-footer-logo img {
        max-width: 155px;
        width: 100%;
    }

.eb_h3-footer-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    list-style: none;
}

    .eb_h3-footer-social ul li a {
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 6px;
        color: rgba(255, 255, 255, 0.5);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .eb_h3-footer-social ul li a:hover {
            background: var(--clr-theme-primary-2);
            color: #fff;
            border-color: var(--clr-theme-primary-2);
        }

.eb_h3-footer-widget-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.eb_h3-footer-widget ul {
    list-style: none;
}

    .eb_h3-footer-widget ul li a {
        color: rgba(255, 255, 255, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        margin-bottom: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .eb_h3-footer-widget ul li a:hover {
            color: #fff;
        }

    .eb_h3-footer-widget ul li:last-child a {
        margin-bottom: 0;
    }

.eb_h3-footer-widget form {
    position: relative;
    z-index: 1;
}

    .eb_h3-footer-widget form input {
        width: 100%;
        height: 50px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: transparent;
        border-radius: 10px;
        padding: 0 20px;
        color: #FFF;
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 20px;
    }

        .eb_h3-footer-widget form input::-webkit-input-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

        .eb_h3-footer-widget form input:-moz-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

        .eb_h3-footer-widget form input::-moz-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

        .eb_h3-footer-widget form input:-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

    .eb_h3-footer-widget form button {
        height: 50px;
        border-radius: 14px;
        background: var(--clr-theme-primary-2);
        border: none;
        padding: 0 35px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
        color: #FFF;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: normal;
    }

.eb_h3-footer-bottom {
    background: #17282C;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 22px;
    padding-bottom: 15px;
}

.eb_h3-footer-copyright-text {
    margin-bottom: 7px;
}

@media (max-width: 767px) {
    .eb_h3-footer-copyright-text {
        text-align: center;
    }
}

.eb_h3-footer-copyright-text p {
    margin-bottom: 0;
    color: #A1A1A1;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

@media (max-width: 480px) {
    .eb_h3-footer-copyright-text p {
        font-size: 14px;
    }
}

.eb_h3-footer-menu {
    margin-bottom: 7px;
}

    .eb_h3-footer-menu ul {
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 21px;
    }

@media (max-width: 767px) {
    .eb_h3-footer-menu ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.eb_h3-footer-menu ul li a {
    color: #A1A1A1;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    display: block;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .eb_h3-footer-menu ul li a {
        font-size: 14px;
    }
}

.eb_h3-footer-menu ul li a:hover {
    color: #fff;
}

.eb_h3-footer-menu ul li:not(:last-child) a::before {
    position: absolute;
    right: -11px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: #B0BBBE;
    content: "";
}

.eb_h4-footer-area {
    background-color: #1D1D1D;
    padding-top: 90px;
    padding-bottom: 90px;
}

.eb_h4-footer-top {
    position: relative;
    z-index: 1;
    border: 1px solid #414141;
    border-bottom: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 345px 240px 300px 408px;
    grid-template-columns: 345px 240px 300px 408px;
    -ms-grid-columns: 26.7% 18.5% 23.2% 31.6%;
    grid-template-columns: 26.7% 18.5% 23.2% 31.6%;
}

@media (max-width: 1199px) {
    .eb_h4-footer-top {
        -ms-grid-columns: 25.7% 20.5% 25.2% 28.6%;
        grid-template-columns: 25.7% 20.5% 25.2% 28.6%;
    }
}

@media (max-width: 991px) {
    .eb_h4-footer-top {
        -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
    }
}

@media (max-width: 480px) {
    .eb_h4-footer-top {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.eb_h4-footer-top-item {
    padding: 50px 50px 50px 45px;
}

@media (max-width: 1399px) {
    .eb_h4-footer-top-item {
        padding: 50px 40px 50px 40px;
    }
}

@media (max-width: 1199px) {
    .eb_h4-footer-top-item {
        padding: 50px 25px 50px 25px;
    }
}

.eb_h4-footer-top-item:not(:first-child) {
    border-left: 1px solid #414141;
}

@media (max-width: 480px) {
    .eb_h4-footer-top-item:nth-child(2) {
        border-top: 1px solid #414141;
        border-left: 0;
    }
}

@media (max-width: 991px) {
    .eb_h4-footer-top-item:nth-child(3) {
        border-top: 1px solid #414141;
        border-left: 0;
    }

    .eb_h4-footer-top-item:nth-child(4) {
        border-top: 1px solid #414141;
    }
}

.eb_h4-footer-top-item.h4-footer-item-2 {
    padding-top: 42px;
    padding-bottom: 45px;
}

.eb_h4-footer-top-item.h4-footer-item-3 {
    padding-top: 42px;
    padding-bottom: 45px;
}

.eb_h4-footer-top-item.h4-footer-item-4 {
    padding-top: 42px;
}

.eb_h4-footer-address {
    padding-bottom: 20px;
}

    .eb_h4-footer-address a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        color: rgba(255, 255, 255, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        gap: 10px;
        margin-bottom: 15px;
    }

        .eb_h4-footer-address a i {
            color: var(--clr-theme-primary-4);
            margin-top: 5px;
        }

.eb_h4-footer-logo {
    margin-bottom: 30px;
}

    .eb_h4-footer-logo img {
        max-width: 155px;
        width: 100%;
    }

.eb_h4-footer-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    list-style: none;
}

    .eb_h4-footer-social ul li a {
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.5);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .eb_h4-footer-social ul li a:hover {
            background: var(--clr-theme-primary-4);
            color: #fff;
            border-color: var(--clr-theme-primary-4);
        }

.eb_h4-footer-widget-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.eb_h4-footer-widget ul {
    list-style: none;
}

    .eb_h4-footer-widget ul li a {
        color: rgba(255, 255, 255, 0.6);
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 500;
        line-height: 18px;
        margin-bottom: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .eb_h4-footer-widget ul li a:hover {
            color: #fff;
        }

    .eb_h4-footer-widget ul li:last-child a {
        margin-bottom: 0;
    }

.eb_h4-footer-widget form {
    position: relative;
    z-index: 1;
}

    .eb_h4-footer-widget form input {
        width: 100%;
        height: 46px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: transparent;
        padding: 0 20px;
        color: rgba(255, 255, 255, 0.5);
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 15px;
    }

        .eb_h4-footer-widget form input::-webkit-input-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

        .eb_h4-footer-widget form input:-moz-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

        .eb_h4-footer-widget form input::-moz-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

        .eb_h4-footer-widget form input:-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
        }

    .eb_h4-footer-widget form button {
        height: 46px;
        background: var(--clr-theme-primary-4);
        border: none;
        padding: 0 25px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
        color: #FFF;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: normal;
    }

.eb_h4-footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #414141;
    padding: 21px 45px 21px 45px;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1399px) {
    .eb_h4-footer-bottom {
        padding: 21px 40px 21px 40px;
    }
}

@media (max-width: 1199px) {
    .eb_h4-footer-bottom {
        padding: 21px 25px 21px 25px;
    }
}

@media (max-width: 767px) {
    .eb_h4-footer-bottom {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 10px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.eb_h4-footer-copyright-text p {
    margin-bottom: 0;
    color: #A1A1A1;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

@media (max-width: 480px) {
    .eb_h4-footer-copyright-text p {
        font-size: 14px;
    }
}

.eb_h4-footer-menu ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

    .eb_h4-footer-menu ul li a {
        color: #A1A1A1;
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        display: block;
        position: relative;
        z-index: 1;
    }

@media (max-width: 480px) {
    .eb_h4-footer-menu ul li a {
        font-size: 14px;
    }
}

.eb_h4-footer-menu ul li a:hover {
    color: #fff;
}

.eb_h4-footer-menu ul li:not(:last-child) a::before {
    position: absolute;
    right: -11px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: #A1A1A1;
    content: "";
}

.eb_h5-footer-top {
    background: #14203A;
}

.eb_h5-footer-logo {
    margin-bottom: 15px;
}

.eb_h5-footer-widget-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 22px;
}

.eb_h5-footer-widget-social {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

    .eb_h5-footer-widget-social li a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.14);
        display: -ms-grid;
        display: grid;
        place-items: center;
        color: #fff;
    }

        .eb_h5-footer-widget-social li a:hover {
            background: var(--clr-theme-primary-5);
        }

.eb_h5-footer-widget-title {
    color: #FFF;
    font-family: "Marcellus", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 23px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

    .eb_h5-footer-widget-title::before {
        position: absolute;
        right: 0;
        bottom: 2px;
        content: "";
        background: rgba(255, 255, 255, 0.3);
        height: 5px;
        width: calc(100% - 10px);
    }

.eb_h5-footer-widget ul {
    list-style: none;
}

    .eb_h5-footer-widget ul li a {
        display: block;
        position: relative;
        color: rgba(255, 255, 255, 0.7);
        font-size: 16px;
        font-weight: 500;
        line-height: 22px;
        padding-left: 18px;
    }

        .eb_h5-footer-widget ul li a::before {
            position: absolute;
            left: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            content: "";
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }

        .eb_h5-footer-widget ul li a:hover {
            color: #fff;
        }

            .eb_h5-footer-widget ul li a:hover::before {
                background-color: #fff;
            }

    .eb_h5-footer-widget ul li:not(:last-child) a {
        margin-bottom: 13px;
    }

.eb_h5-footer-widget form {
    position: relative;
    z-index: 1;
}

    .eb_h5-footer-widget form input {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
        width: 100%;
        height: 44px;
        line-height: 44px;
        padding-left: 20px;
        padding-right: 60px;
    }

        .eb_h5-footer-widget form input::-webkit-input-placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .eb_h5-footer-widget form input:-moz-placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .eb_h5-footer-widget form input::-moz-placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .eb_h5-footer-widget form input:-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

    .eb_h5-footer-widget form button {
        position: absolute;
        right: 0;
        top: 0;
        height: 44px;
        width: 44px;
        background: var(--clr-theme-primary-5);
        color: #fff;
        border: 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;
    }

.eb_h5-footer-bottom {
    background: #03102D;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 22px;
    padding-bottom: 15px;
}

.eb_h5-footer-copyright-text {
    margin-bottom: 7px;
}

@media (max-width: 767px) {
    .eb_h5-footer-copyright-text {
        text-align: center;
    }
}

.eb_h5-footer-copyright-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .eb_h5-footer-copyright-text p {
        font-size: 14px;
    }
}

.eb_h5-footer-menu {
    margin-bottom: 7px;
}

    .eb_h5-footer-menu ul {
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 21px;
    }

@media (max-width: 767px) {
    .eb_h5-footer-menu ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.eb_h5-footer-menu ul li a {
    color: #B0BBBE;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: block;
    position: relative;
    z-index: 1;
}

    .eb_h5-footer-menu ul li a:hover {
        color: #fff;
    }

@media (max-width: 480px) {
    .eb_h5-footer-menu ul li a {
        font-size: 14px;
    }
}

.eb_h5-footer-menu ul li:not(:last-child) a::before {
    position: absolute;
    right: -11px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: #B0BBBE;
    content: "";
}
