/* ///////////////////////////////////////////////////////////
Responsive Layout Declaration 
/////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////
Font Family Declaration 
/////////////////////////////////////////////////////////// */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
/* ///////////////////////////////////////////////////////////
Color Declaration 
/////////////////////////////////////////////////////////// */
:root {
    --clr-common-white: #ffffff;
    --clr-common-black: #202020;
    --clr-common-primary: #28e98c;
    --clr-common-gray: #333333;
    --clr-common-border: #525252;
    --clr-body-heading: #1b2a52;
    --clr-body-text: #6a738b;
    --clr-color-violet: #e825ec;
    --clr-theme-primary: #ec9c25;
    --clr-theme-secondary: #4a4d56;
    --clr-bg-gray: #f6f6f6;
    --clr-bg-gray-2: #f1f1f1;
    --clr-bg-gray-3: #eeeeee;
}

/* ///////////////////////////////////////////////////////////
Mixin Declaration 
/////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////
Animation Declaration 
/////////////////////////////////////////////////////////// */
@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}
@-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);
    }
}
/*
************
*************************

   Template Name: AI Doodle - AI Artificial Tntelligence & AI Technology Startups
   Description: AI Doodle - AI Artificial Tntelligence & AI Technology Startups Template
   Author: _ThemePhi
   Version: 1.0

-----------------------------------------------------------------------------------

CSS INDEX
=================== 
01. common
02. header
03. button
04. banner
05. about
06. section
07. choose
08. feature
09. work
10. apps
11. price
12. testimonial
13. blog
14. blog details
15. brand
16. faq
17. service
18. instagram
19. assistant
20. shop
21. shop details
22. sidebar
23. breadcrumb
24. modal
25. team
26. portfolio
27. wishlist
28. account
29. contact
30. checkout
31. cart
32. 404
33. footer


******************************************************* 
*************************************************************** */
/*
************
*************************
01. common
******************************************************* 
*************************************************************** */
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;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

a,
.button,
button {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-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: "Space Grotesk", sans-serif;
    color: var(--clr-body-heading);
}

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

h1 {
    font-size: 70px;
}

h2 {
    font-size: 44px;
}

h3 {
    font-size: 34px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

a {
    text-decoration: none;
    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);
}

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

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

ul {
    padding: 0;
    margin: 0;
}

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

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

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

input::-webkit-input-placeholder {
    color: #7f879e;
    font-size: 14px;
    opacity: 1;
}
input:-moz-placeholder {
    color: #7f879e;
    font-size: 14px;
    opacity: 1;
}
input::-moz-placeholder {
    color: #7f879e;
    font-size: 14px;
    opacity: 1;
}
input:-ms-input-placeholder {
    color: #7f879e;
    font-size: 14px;
    opacity: 1;
}

textarea::-webkit-input-placeholder {
    color: #7f879e;
    font-size: 14px;
    opacity: 1;
}
textarea:-moz-placeholder {
    color: #7f879e;
    font-size: 14px;
    opacity: 1;
}
textarea::-moz-placeholder {
    color: #7f879e;
    font-size: 14px;
    opacity: 1;
}
textarea:-ms-input-placeholder {
    color: #7f879e;
    font-size: 14px;
    opacity: 1;
}

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

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

.clear {
    clear: both;
}

.w_img img {
    width: 100%;
}

.inner_bg {
    background-color: #f8faff !important;
}

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

.gap-20 {
    gap: 20px;
}

@media (min-width: 1700px) {
    .container.custom-container-1 {
        max-width: 630px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 1600px) and (max-width: 1699px) {
    .container.custom-container-1 {
        max-width: 1530px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 1600px) {
    .container.custom-container-2 {
        max-width: 1700px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* <<<<<<<    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: 1600px) {
    .container.container-full-1 {
        max-width: 1750px;
    }
}
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;
}

.h3_header-nav-menu ul li:hover ~ .cursor2 {
    width: 40px;
    height: 40px;
}

.rts-cursor[data-default="no"] {
    opacity: 0;
}

.rts-cursor[data-default="no"].cursor-inner {
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.rts-cursor[data-default="no"].cursor-inner.cursor-hover,
.rts-cursor[data-default="no"].cursor-inner.cusror-remove {
    opacity: 1;
}

.rts-cursor[data-link="no"].cursor-inner.cursor-hover {
    opacity: 0;
}

.rts-cursor[data-slider="no"].cursor-inner.cusror-remove {
    opacity: 0;
}

.rts-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.rts-cursor.mouse-down .fn-cursor {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

@media (max-width: 1040px) {
    .rts-cursor {
        display: none;
    }
}
.cursor-link {
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    border: 2px solid rgba(0, 0, 0, 0.5);
    z-index: 10000000;
    -webkit-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

/* .cursor-outer {
  z-index: 10000000;
  -webkit-transition: transform 0.08s ease-out, opacity 1s ease;
  -webkit-transition: opacity 1s ease, -webkit-transform 0.08s ease-out;
  transition: opacity 1s ease, -webkit-transform 0.08s ease-out;
  -o-transition: transform 0.08s ease-out, opacity 1s ease;
  transition: transform 0.08s ease-out, opacity 1s ease;
  transition: transform 0.08s ease-out, opacity 1s ease, -webkit-transform 0.08s ease-out;
} */

/* .cursor-outer .fn-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #8f8f8f;
} */

/* .cursor-inner .fn-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #8f8f8f;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
} */

.cursor-outer.cursor-hover {
    opacity: 0;
    -webkit-transition: transform 0.08s ease-out, opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.08s ease-out;
    transition: opacity 0.2s ease, -webkit-transform 0.08s ease-out;
    -o-transition: transform 0.08s ease-out, opacity 0.2s ease;
    transition: transform 0.08s ease-out, opacity 0.2s ease;
    transition: transform 0.08s ease-out, opacity 0.2s ease,
        -webkit-transform 0.08s ease-out;
}

.cursor-inner {
    z-index: 10000001;
}

.cursor-inner.cursor-hover .fn-cursor {
    margin: -30px 0 0 -30px;
    width: 80px;
    height: 80px;
    background-color: rgba(143, 143, 143, 0.3843137255);
}

.cursor-inner.cursor-remove.cursor-hover .fn-cursor {
    display: none;
}

.cursor-outer.cursor-remove {
    display: none;
}

.cursor-inner.cursor-slider:not(.cursor-hover) .fn-cursor {
    margin-left: -30px;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 5px solid #000;
}

.cursor-inner .fn-left,
.cursor-inner .fn-right {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cursor-inner .fn-left:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    left: -20px;
    top: 50%;
    margin-top: -10px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cursor-inner .fn-left:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    -webkit-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    transform: rotate(130deg);
    left: -20px;
    top: 50%;
    margin-top: -2px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cursor-inner .fn-right:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    right: -20px;
    top: 50%;
    margin-top: -2px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cursor-inner .fn-right:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    -webkit-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    transform: rotate(130deg);
    right: -20px;
    top: 50%;
    margin-top: -10px;
    background-color: var(--titleColor);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cursor-outer.cursor-remove {
    opacity: 0;
    -webkit-transition: transform 0.08s ease-out, opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.08s ease-out;
    transition: opacity 0.2s ease, -webkit-transform 0.08s ease-out;
    -o-transition: transform 0.08s ease-out, opacity 0.2s ease;
    transition: transform 0.08s ease-out, opacity 0.2s ease;
    transition: transform 0.08s ease-out, opacity 0.2s ease,
        -webkit-transform 0.08s ease-out;
}

/*
************
*************************
02. header
******************************************************* 
*************************************************************** */
/* ///////////////////////////////////////////////////////////
Header CSS 01 Start
/////////////////////////////////////////////////////////// */
.header-area {
    position: sticky;
    background: rgb(255, 255, 255);
    /* backdrop-filter: blur(10px); */
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}
@media (max-width: 1199px) {
    .header-area {
        width: 100%;
    }
}
.header-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgb(255, 221, 179),
        transparent
    );
    transition: 0.5s;
}
/* .header-area:hover::before {
    left: 100%;
} */
.header-area1 {
    position: fixed;
    background-color: #ffffff;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}
@media (max-width: 1199px) {
    .header-area1 {
        width: 99%;
    }
}

.header-top {
    background: linear-gradient(90deg, #eb42fa 0%, #7720ff 100%);
    background: linear-gradient(90deg, #7720ff 0%, #eb42fa 100%);
    height: 40px;
    display: flex;
    align-items: center;
}
.header-top-text p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}
.header-top-social ul {
    display: flex;
    align-items: center;
    justify-content: end;
    list-style: none;
    margin-bottom: 0;
}
.header-top-social ul li a {
    color: #fff;
    font-size: 16px;
    position: relative;
    z-index: 1;
    padding-left: 10px;
    margin-left: 10px;
}
.header-top-social ul li a::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 16px;
}
.header-top-social ul li a:hover {
    color: #fff;
}
.header-top-social ul li:first-child a {
    padding-left: 0;
    margin-left: 0;
}
.header-top-social ul li:first-child a::before {
    display: none;
}
.header-main-left {
    display: flex;
    align-items: center;
    gap: 85px;
}
@media (max-width: 1199px) {
    .header-main-left {
        gap: 50px;
    }
}
.header-logo {
    width: 100px;
    height: 100px;
}
@media (max-width: 720px) {
    .header-logo {
        width: 70px;
        height: 70px;
    }
}
.header-nav-menu ul {
    list-style: none;
    /* margin-left: 83px; */
}
.header-nav-menu ul li {
    display: inline-block;
    margin-right: 40px;
}

.header-nav-menu ul li:last-child {
    margin-right: 30px;
}
.header-nav-menu ul li:is(.menu-has-child) > a::after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    content: "+";
    font-size: 12px;
    font-weight: 500;
    margin-left: 5px;
}
.header-nav-menu ul li.menu-has-child {
    position: relative;
    z-index: 99;
}
.header-nav-menu ul li a {
    display: block;
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 30px 0;
}
.header-nav-menu ul li .submenu {
    position: absolute;
    left: -75%;
    top: 80%;
    background: #fff;
    width: 270px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
}
.header-nav-menu ul li .submenu li {
    display: block;
    margin-right: 0;
    position: relative;
    z-index: 99;
}
.header-nav-menu ul li .submenu li a {
    padding: 18px 20px;
    color: #6a738b;
    text-align: start;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.header-nav-menu ul li .submenu li .submenu {
    left: 100%;
    top: 0;
}
.header-nav-menu ul li .submenu li:hover > a {
    background-color: #ffffffc4;
    color: #4a5d91;
    margin: 10px;
}
.header-nav-menu ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid #ffffff;
}
.header-nav-menu ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
}
.header-nav-menu ul li:hover > a {
    color: #ff901a;
}

.header-nav-menu ul li a.active {
    color: #ff901a;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.header-action-login {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-action-login:hover {
    color: var(--clr-theme-primary);
}
.header-action-btn {
    color: #fff;
    font-size: 13px;
    font-weight: 650;
    height: 35px;
    line-height: 36px;
    border-radius: 10px;
    background: linear-gradient(180deg, #1efe43 0%, #52f052 100%);
    display: block;
    padding: 0 30px;
}
.header-action-btn:hover {
    color: #fff;
    background: linear-gradient(180deg, #83ee59 0%, #63e442 100%);
}

/* ///////////////////////////////////////////////////////////
Header CSS 01 Start
/////////////////////////////////////////////////////////// */
.h2_header-left {
    margin-right: 98px;
}
@media (max-width: 1399px) {
    .h2_header-left {
        margin-right: 53px;
    }
}
@media (max-width: 1199px) {
    .h2_header-left {
        margin-right: 0;
    }
}
.h2_header-logo {
    width: 135px;
    height: 80px;
    line-height: 80px;
    flex-shrink: 0;
}
.h2_header-nav-menu ul {
    list-style: none;
}
.h2_header-nav-menu ul li {
    display: inline-block;
    margin-right: 8px;
}
.h2_header-nav-menu ul li:last-child {
    margin-right: 30px;
}
.h2_header-nav-menu ul li.menu-has-child {
    position: relative;
    z-index: 99;
}
.h2_header-nav-menu ul li > a {
    display: block;
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 13px;
    border-radius: 6px;
    border: 1px solid transparent;
}
.h2_header-nav-menu ul li .submenu {
    position: absolute;
    left: 0;
    top: 120%;
    background: #fff;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
}
.h2_header-nav-menu ul li .submenu li {
    display: block;
    margin-right: 0;
    position: relative;
    z-index: 99;
}
.h2_header-nav-menu ul li .submenu li a {
    padding: 18px 25px;
    color: #6a738b;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border-radius: 0;
    text-align: start;
}
.h2_header-nav-menu ul li .submenu li .submenu {
    left: 100%;
    top: 0;
}
.h2_header-nav-menu ul li .submenu li:hover > a {
    background-color: #1b2a52;
    color: #fff;
}
.h2_header-nav-menu ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}
.h2_header-nav-menu ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
}
.h2_header-nav-menu ul li:hover > a {
    color: var(--clr-theme-primary);
    border-color: rgba(27, 42, 82, 0.2);
}
.h2_header-action {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
}
.h2_header-action-login {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.h2_header-action-login:hover {
    color: var(--clr-theme-primary);
}
.h2_header-action-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background: linear-gradient(180deg, #9b1efe 0%, #6917d0 100%);
    display: block;
    padding: 0 30px;
}

/* ///////////////////////////////////////////////////////////
Header CSS 01 Start
/////////////////////////////////////////////////////////// */
.h3_header-area {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}
.h3_header-logo {
    width: 135px;
    padding: 32px 0;
    flex-shrink: 0;
}
@media (max-width: 575px) {
    .h3_header-logo {
        padding: 20px 0;
    }
}
.h3_header-nav-menu ul {
    list-style: none;
}
.h3_header-nav-menu ul li {
    display: inline-block;
    margin-right: 30px;
}
.h3_header-nav-menu ul li:last-child {
    margin-right: 30px;
}
.h3_header-nav-menu ul li:is(.menu-has-child) > a::after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    content: "+";
    font-size: 12px;
    font-weight: 500;
    margin-left: 5px;
}
.h3_header-nav-menu ul li.menu-has-child {
    position: relative;
    z-index: 99;
}
.h3_header-nav-menu ul li a {
    display: block;
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 30px 0;
}
.h3_header-nav-menu ul li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
}
.h3_header-nav-menu ul li .submenu li {
    display: block;
    margin-right: 0;
    position: relative;
    z-index: 99;
}
.h3_header-nav-menu ul li .submenu li a {
    padding: 18px 25px;
    color: #6a738b;
    text-align: start;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h3_header-nav-menu ul li .submenu li .submenu {
    left: 100%;
    top: 0;
}
.h3_header-nav-menu ul li .submenu li:hover > a {
    background-color: #1b2a52;
    color: #fff;
}
.h3_header-nav-menu ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}
.h3_header-nav-menu ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
}
.h3_header-nav-menu ul li:hover > a {
    color: #1b2a52;
}
.h3_header-action {
    display: flex;
}
@media (max-width: 1199px) {
    .h3_header-action {
        justify-content: end;
    }
}
.h3_header-action-login {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.h3_header-action-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    line-height: 44px;
    display: block;
    padding: 0 30px;
    border-radius: 8px;
    background: #7d25ec;
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.5);
}
@media (max-width: 1199px) {
    .h3_header-action-btn {
        padding: 0 20px;
    }
}
.h3_header-action-btn:hover {
    color: #fff;
    background-color: var(--clr-color-violet);
}
.h3_header-left {
    gap: 165px;
}
@media (max-width: 1399px) {
    .h3_header-left {
        gap: 150px;
    }
}
@media (max-width: 1199px) {
    .h3_header-left {
        gap: 50px;
    }
}

.h4_header-area {
    background: linear-gradient(90deg, #f6c125 0%, #f64438 50%, #f6c125 100%);
    position: relative;
    z-index: 9;
}
.h4_header-top-text {
    display: flex;
    justify-content: center;
    gap: 10px;
    height: 35px;
    align-items: center;
}
.h4_header-top-text p {
    margin-bottom: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}
.h4_header-top-text a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.h4_header-top-text a i {
    margin-top: 2px;
}

.h4_header-bottom {
    border-radius: 24px 24px 0px 0px;
    background: #fff;
    box-shadow: 0px 1px 1px 0px rgba(27, 42, 82, 0.07);
}
.h4_header-logo {
    width: 135px;
    height: 70px;
    line-height: 70px;
    flex-shrink: 0;
}
.h4_header-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 6px;
    background: #f0f2f8;
}
@media (max-width: 1199px) {
    .h4_header-menu {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.h4_header-nav-menu ul {
    list-style: none;
}
.h4_header-nav-menu ul li {
    display: inline-block;
    margin-right: 38px;
}
.h4_header-nav-menu ul li:last-child {
    margin-right: 0;
}
@media (max-width: 1399px) {
    .h4_header-nav-menu ul li {
        margin-right: 30px;
    }
}
@media (max-width: 1199px) {
    .h4_header-nav-menu ul li {
        margin-right: 20px;
    }
}
.h4_header-nav-menu ul li.menu-has-child {
    position: relative;
    z-index: 99;
}
.h4_header-nav-menu ul li > a {
    display: block;
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 4px;
}
.h4_header-nav-menu ul li .submenu {
    position: absolute;
    left: 0;
    top: 125%;
    background: #fff;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
}
.h4_header-nav-menu ul li .submenu li {
    display: block;
    margin-right: 0;
    position: relative;
    z-index: 99;
}
.h4_header-nav-menu ul li .submenu li a {
    padding: 18px 25px;
    color: #6a738b;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border-radius: 0;
}
.h4_header-nav-menu ul li .submenu li .submenu {
    left: 100%;
    top: 0;
}
.h4_header-nav-menu ul li .submenu li:hover > a {
    background-color: #1b2a52;
    color: #fff;
}
.h4_header-nav-menu ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}
.h4_header-nav-menu ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
}
.h4_header-nav-menu ul li:hover > a {
    color: var(--clr-theme-primary);
    background: #fff;
    box-shadow: 0px 1px 2px 0px rgba(27, 42, 82, 0.2);
}
.h4_header-action {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
}
.h4_header-action-login {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.h4_header-action-login:hover {
    color: var(--clr-theme-primary);
}
.h4_header-action-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 8px;
    border-radius: 8px;
    background: #7d25ec;
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.5);
}
.h4_header-action-btn:hover {
    background-color: var(--clr-color-violet);
    color: #fff;
}

.h5_header-area {
    background: #1b2a52;
}
.h5_header-top {
    height: 35px;
}
.h5_header-top-text {
    display: flex;
    gap: 10px;
    align-items: center;
}
.h5_header-top-text p {
    margin-bottom: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}
.h5_header-top-text a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.h5_header-top-text a i {
    margin-top: 2px;
}
.h5_header-top-text a:hover {
    color: var(--clr-color-violet);
}
.h5_header-top-right {
    display: flex;
    justify-content: end;
    align-items: center;
}
.h5_header-top-language {
    position: relative;
    z-index: 9;
    padding-right: 20px;
    margin-right: 20px;
}
.h5_header-top-language::after {
    position: absolute;
    right: 0;
    top: 50%;
    content: "";
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.2);
}
.h5_header-top-language-option.nice-select {
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    width: 100%;
    padding: 0;
    background: transparent;
    z-index: 99;
    color: #fff;
    height: 22px;
    line-height: 1;
    padding-right: 17px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}
.h5_header-top-language-option.nice-select ul {
    background-color: #fff;
    width: 85px;
    z-index: 99;
    border-radius: 4px;
    border: none;
    margin-top: 7px;
    box-shadow: 0px 6px 50px 0px rgba(27, 42, 82, 0.2);
}
.h5_header-top-language-option.nice-select ul li {
    color: #7f879e;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    padding: 0 15px;
    min-height: 30px;
    height: 30px;
    line-height: 30px;
}
.h5_header-top-language-option.nice-select .option.selected {
    font-weight: 500;
}
.h5_header-top-language-option.nice-select::after {
    display: none;
}
.h5_header-top-language-option.nice-select::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
    margin-top: 1px;
}
.h5_header-top-language-option.nice-select.open::before {
    content: "\f106";
}
.h5_header-top-currency {
    padding-right: 20px;
    margin-right: 20px;
    position: relative;
    z-index: 9;
}
.h5_header-top-currency::after {
    position: absolute;
    right: 0;
    top: 50%;
    content: "";
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.2);
}
.h5_header-top-currency-option.nice-select {
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    width: 100%;
    padding: 0;
    background: transparent;
    z-index: 99;
    color: #fff;
    height: 22px;
    line-height: 1;
    padding-right: 17px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}
.h5_header-top-currency-option.nice-select ul {
    background-color: #fff;
    width: 85px;
    z-index: 99;
    border-radius: 4px;
    border: none;
    margin-top: 7px;
    box-shadow: 0px 6px 50px 0px rgba(27, 42, 82, 0.2);
}
.h5_header-top-currency-option.nice-select ul li {
    color: #7f879e;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    padding: 0 15px;
    min-height: 30px;
    height: 30px;
    line-height: 30px;
}
.h5_header-top-currency-option.nice-select.open ul {
    border-radius: 4px;
    border: none;
    margin-top: 5px;
}
.h5_header-top-currency-option.nice-select .option.selected {
    font-weight: 500;
}
.h5_header-top-currency-option.nice-select::after {
    display: none;
}
.h5_header-top-currency-option.nice-select::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
    margin-top: 1px;
}
.h5_header-top-currency-option.nice-select.open::before {
    content: "\f106";
}
.h5_header-top-account a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.h5_header-left {
    gap: 98px;
}
@media (max-width: 1399px) {
    .h5_header-left {
        gap: 80px;
    }
}
@media (max-width: 1199px) {
    .h5_header-left {
        gap: 40px;
    }
}
.h5_header-bottom {
    border-radius: 24px 24px 0px 0px;
    background: #fff;
    box-shadow: 0px 1px 1px 0px rgba(27, 42, 82, 0.07);
}
.h5_header-logo {
    width: 135px;
    height: 70px;
    line-height: 70px;
    flex-shrink: 0;
}
.h5_header-nav-menu ul {
    list-style: none;
}
.h5_header-nav-menu ul li {
    display: inline-block;
    margin-right: 38px;
}
.h5_header-nav-menu ul li:last-child {
    margin-right: 0;
}
@media (max-width: 1399px) {
    .h5_header-nav-menu ul li {
        margin-right: 30px;
    }
}
@media (max-width: 1199px) {
    .h5_header-nav-menu ul li {
        margin-right: 15px;
    }
}
.h5_header-nav-menu ul li.menu-has-child {
    position: relative;
    z-index: 99;
}
.h5_header-nav-menu ul li > a {
    display: block;
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 4px;
    text-align: start;
}
.h5_header-nav-menu ul li .submenu {
    position: absolute;
    left: 0;
    top: 120%;
    background: #fff;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
}
.h5_header-nav-menu ul li .submenu li {
    display: block;
    margin-right: 0;
    position: relative;
    z-index: 99;
}
.h5_header-nav-menu ul li .submenu li a {
    padding: 18px 25px;
    color: #6a738b;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border-radius: 0;
}
.h5_header-nav-menu ul li .submenu li .submenu {
    left: 100%;
    top: 0;
}
.h5_header-nav-menu ul li .submenu li:hover > a {
    background-color: #1b2a52;
    color: #fff;
}
.h5_header-nav-menu ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}
.h5_header-nav-menu ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
}
.h5_header-nav-menu ul li:hover > a {
    color: var(--clr-theme-primary);
    border-radius: 4px;
    background: rgba(125, 37, 236, 0.1);
    box-shadow: 0px 1px 2px 0px rgba(27, 42, 82, 0.2);
}
.h5_header-action {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: end;
}
.h5_header-action-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 8px;
    border-radius: 8px;
    background: #7d25ec;
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.5);
}
@media (max-width: 1399px) {
    .h5_header-action-btn {
        padding: 0 20px;
    }
}
.h5_header-action-btn:hover {
    background-color: var(--clr-color-violet);
    color: #fff;
}
.h5_header-action-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}
.h5_header-action-inner a {
    border-radius: 40px;
    border: 1.5px solid rgba(27, 42, 82, 0.07);
    background: rgba(27, 42, 82, 0);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b2a52;
    font-size: 16px;
}
.h5_header-action-inner a:hover {
    border-color: rgb(27, 42, 82);
}
.h5_header-action-cart {
    position: relative;
}
.h5_header-action-cart span {
    position: absolute;
    right: -7px;
    top: -5px;
    width: 20px;
    height: 20px;
    background: var(--clr-theme-primary);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box_shadow_none {
    box-shadow: none;
}

/* ///////////////////////////////////////////////////////////
03. button
/////////////////////////////////////////////////////////// */
.theme-btn {
    border-radius: 50px;
    background: linear-gradient(180deg, #9425ec 0%, #7d25ec 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    height: 46px;
    line-height: 45px;
    padding: 0 25px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme-btn:hover {
    background: linear-gradient(180deg, #7d25ec 0%, #9425ec 100%);
    color: #fff;
}

.theme-btn-2 {
    border-radius: 8px;
    background: linear-gradient(180deg, #9425ec 0%, #7d25ec 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme-btn-2:hover {
    background: linear-gradient(180deg, #7d25ec 0%, #9425ec 100%);
    color: #fff;
}

/* ///////////////////////////////////////////////////////////
04. banner
/////////////////////////////////////////////////////////// */
.banner-area {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    /* CSS rules for large screens */
    .banner-area {
        margin-top: 100px;
    }
}

@media (min-width: 1200px) {
    .banner-area {
        width: 100%;
        margin-top: 100px;
    }
}
.banner-single {
    align-items: center;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Extra small (xs): <576px */
@media (max-width: 575.98px) {
    .banner-single {
        flex-wrap: wrap;
        width: 100%;
        gap: 0;
        justify-content: center;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    /* CSS rules for small screens */
    .banner-single {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* lebar layar medium atau tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .banner-single {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 1199px) {
    .banner-single {
        width: 100%;
        gap: 50px;
        justify-content: center;
    }
}

@media (min-width: 1400px) {
    /* CSS rules for extra extra large screens */
    .banner-single {
        margin-top: 100px;
    }
}

.banner-content {
    width: auto;
    flex-shrink: 1;
}

@media (min-width: 1400px) {
    .banner-content {
        flex: 100%;
    }
}

@media (max-width: 1399px) {
    .banner-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 1199px) {
    .banner-content {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .banner-content {
        width: 100%;
    }
}
.banner-wrapper {
    display: flex;
    justify-content: center; /* Horizontal alignment */
    align-items: center; /* Vertical alignment */
}
.banner-content-subtitle {
    border-radius: 50px;
    background: rgba(255, 229, 177, 0.164);
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    display: inline-block;
    color: #fa901f;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 30px;
    height: 36px;
    line-height: 36px;
    margin: 30px 0;
}
@media (max-width: 1199px) {
    .banner-content-subtitle {
        font-size: 11px;
        display: inline-flex;
    }
}
.banner-content-title {
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2.1px;
    margin-bottom: 20px;
}
@media (max-width: 1199px) {
    .banner-content-title {
        font-size: 22px;
        padding-top: 15px;
        text-align: center;
        margin-left: 0px;
        letter-spacing: 1px;
    }
}

/* @media (max-width: 991px) {
  .banner-content-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .banner-content-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .banner-content-title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .banner-content-title {
    font-size: 36px;
  }
} */
.banner-content p {
    color: #524b1b;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    padding-left: 0px;
    text-align: justify;
}
@media (max-width: 1199px) {
    .banner-content p {
        /* display: none; */
        text-align: justify;
    }
}
@media (max-width: 768px) {
    .banner-content p {
        display: block;
        text-align: left;
    }
}
@media (max-width: 576px) {
    .banner-content p {
        text-align: center;
    }
}

.banner-content-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}
.banner-content-btn span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 480px) {
    .banner-content-btn {
        flex-wrap: wrap;
    }
}
.banner-img {
    border-radius: 30px;
    margin-top: 60px;
    margin-bottom: 0px;
    width: 100%;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    /* CSS rules for extra large screens */
    .banner-img {
        margin-bottom: 0;
        width: 100%;
        /* height: 350px; */
        display: flex;
    }
}

@media (min-width: 1400px) {
    /* CSS rules for extra extra large screens */
    .banner-img {
        margin-bottom: 0;
        width: 100%;
        /* height: 350px; */
        display: flex;
    }
}

.banner-shape-1 {
    position: absolute;
    left: 75px;
    top: 195px;
    top: 21%;
    z-index: -1;
}
.banner-shape-2 {
    position: absolute;
    left: calc(37% + 11px);
    transform: translateX(-50%);
    top: 180px;
    z-index: -1;
}
.banner-shape-3 {
    position: absolute;
    left: calc(44% - 5px);
    transform: translateX(-50%);
    bottom: 120px;
    z-index: -1;
}
.banner-shape-4 {
    position: absolute;
    left: calc(51% - 5px);
    transform: translateX(-50%);
    bottom: 395px;
    z-index: -1;
}
.banner-shape-41 {
    position: absolute;
    left: calc(51% - 5px);
    transform: translateX(-50%);
    bottom: 435px;
    z-index: -1;
}
.banner-shape-5 {
    position: absolute;
    left: calc(82% - 5px);
    transform: translateX(-50%);
    z-index: -1;
    bottom: 0%;
}

.banner-shape-51 {
    opacity: 0.1;
    position: absolute;
    height: 690px;
    width: 700px;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.anim-reveal-line {
    overflow: hidden;
}

.h2_banner-area {
    position: relative;
    z-index: 1;
}
.h2_banner-single {
    padding-top: 145px;
    padding-bottom: 150px;
    display: flex;
    align-items: center;
    min-height: 600px;
}
.h2_banner-content {
    padding-left: 180px;
    padding-right: 180px;
    text-align: center;
}
@media (max-width: 1399px) {
    .h2_banner-content {
        padding-left: 150px;
        padding-right: 150px;
    }
}
@media (max-width: 1199px) {
    .h2_banner-content {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media (max-width: 991px) {
    .h2_banner-content {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (max-width: 767px) {
    .h2_banner-content {
        padding-left: 0;
        padding-right: 0;
    }
}
.h2_banner-content-subtitle {
    color: #7d25ec;
    font-size: 18px;
    font-weight: 400;
    display: block;
}
@media (max-width: 767px) {
    .h2_banner-content-subtitle {
        font-size: 16px;
    }
}
.h2_banner-content-title {
    color: #1b2a52;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2.4px;
    margin-bottom: 20px;
}
@media (max-width: 1399px) {
    .h2_banner-content-title {
        font-size: 70px;
    }
}
@media (max-width: 1199px) {
    .h2_banner-content-title {
        font-size: 60px;
    }
}
@media (max-width: 991px) {
    .h2_banner-content-title {
        font-size: 55px;
    }
}
@media (max-width: 767px) {
    .h2_banner-content-title {
        font-size: 45px;
    }
}
@media (max-width: 575px) {
    .h2_banner-content-title {
        font-size: 40px;
    }
}
@media (max-width: 480px) {
    .h2_banner-content-title {
        font-size: 34px;
    }
}
.h2_banner-content p {
    color: #1b2a52;
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0;
}
@media (max-width: 1199px) {
    .h2_banner-content p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .h2_banner-content p {
        font-size: 16px;
    }
}
.h2_banner-shape-1 {
    position: absolute;
    left: 9%;
    top: 15%;
}
@media (max-width: 991px) {
    .h2_banner-shape-1 {
        top: 12%;
    }
}
@media (max-width: 480px) {
    .h2_banner-shape-1 {
        display: none;
    }
}
.h2_banner-shape-2 {
    position: absolute;
    left: 365px;
    top: 45%;
    transform: translateY(-50%);
}
@media (max-width: 991px) {
    .h2_banner-shape-2 {
        display: none;
    }
}
@media (max-width: 480px) {
    .h2_banner-shape-2 {
        display: none;
    }
}
.h2_banner-shape-3 {
    position: absolute;
    left: 11%;
    bottom: 22%;
}
@media (max-width: 991px) {
    .h2_banner-shape-3 {
        left: 6%;
        bottom: 15%;
    }
}
@media (max-width: 480px) {
    .h2_banner-shape-3 {
        display: none;
    }
}
.h2_banner-shape-4 {
    position: absolute;
    right: calc(12% + 15px);
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 991px) {
    .h2_banner-shape-4 {
        right: 3%;
    }
}
@media (max-width: 767px) {
    .h2_banner-shape-4 {
        display: none;
    }
}
.h2_banner-shape-5 {
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 480px) {
    .h2_banner-shape-5 {
        display: none;
    }
}
.h2_banner-bottom {
    margin-left: 190px;
    margin-right: 190px;
    text-align: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 1399px) {
    .h2_banner-bottom {
        margin-left: 150px;
        margin-right: 150px;
    }
}
@media (max-width: 1199px) {
    .h2_banner-bottom {
        margin-left: 100px;
        margin-right: 100px;
    }
}
@media (max-width: 991px) {
    .h2_banner-bottom {
        margin-left: 30px;
        margin-right: 30px;
    }
}
@media (max-width: 767px) {
    .h2_banner-bottom {
        margin-left: 0;
        margin-right: 0;
    }
}
.h2_banner-bottom-shape {
    position: absolute;
    left: 5px;
    top: -50px;
    z-index: -2;
}
.h2_banner-form {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.14);
    backdrop-filter: blur(5px);
    text-align: left;
    padding: 25px 30px 30px;
    margin-top: 65px;
}
.h2_banner-form-title {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}
.h2_banner-form form {
    display: flex;
    gap: 10px;
}
@media (max-width: 480px) {
    .h2_banner-form form {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.h2_banner-form form button {
    border-radius: 8px;
    background: linear-gradient(180deg, #9425ec 0%, #7d25ec 100%);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 42px;
    padding: 0 22px;
    display: block;
    flex-shrink: 0;
}
.h2_banner-form form button i {
    font-size: 12px;
    margin-right: 8px;
}
.h2_banner-form form input {
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    width: 100%;
    height: 42px;
    line-height: 42px;
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
    background: transparent;
}

.h3_banner-area {
    position: relative;
    z-index: 1;
}
.h3_banner-single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
}
.h3_banner-content {
    padding-top: 195px;
    padding-bottom: 140px;
    width: 735px;
    flex-shrink: 0;
}
@media (max-width: 1399px) {
    .h3_banner-content {
        width: 590px;
    }
}
@media (max-width: 1199px) {
    .h3_banner-content {
        width: 530px;
        margin-right: 40px;
    }
}
@media (max-width: 991px) {
    .h3_banner-content {
        width: 100%;
        margin-right: 0;
    }
}
.h3_banner-content-subtitle {
    color: #7d25ec;
    display: block;
    font-size: 16px;
    font-weight: 500;
}
.h3_banner-content-title {
    margin-bottom: 0;
    color: #1b2a52;
    font-size: 76px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2.28px;
}
@media (max-width: 1399px) {
    .h3_banner-content-title {
        font-size: 60px;
    }
}
@media (max-width: 1199px) {
    .h3_banner-content-title {
        font-size: 54px;
    }
}
@media (max-width: 575px) {
    .h3_banner-content-title {
        font-size: 48px;
    }
}
@media (max-width: 480px) {
    .h3_banner-content-title {
        font-size: 40px;
    }
}
.h3_banner-content-title span {
    color: var(--clr-theme-primary);
}
.h3_banner-form {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 8px 0px rgba(27, 42, 82, 0.14);
    padding: 30px 35px 30px;
    margin-top: 45px;
}
@media (max-width: 480px) {
    .h3_banner-form {
        padding: 30px 30px 30px;
    }
}
.h3_banner-form form {
    display: flex;
    gap: 10px;
}
@media (max-width: 480px) {
    .h3_banner-form form {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.h3_banner-form form button {
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    padding: 0 22px;
    display: block;
    flex-shrink: 0;
    border-radius: 8px;
    background: #7d25ec;
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.5);
}
.h3_banner-form form button i {
    font-size: 12px;
    margin-right: 8px;
}
.h3_banner-form form input {
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    width: 100%;
    height: 44px;
    line-height: 44px;
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
    background: transparent;
}
.h3_banner-right {
    width: 495px;
    flex-shrink: 0;
    display: flex;
    gap: 15px;
    max-height: 782px;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
@media (max-width: 1199px) {
    .h3_banner-right {
        width: calc(100% - 570px);
    }
}
.h3_banner-right::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(
        180deg,
        #f2f8fd 0%,
        rgba(242, 248, 253, 0.2) 17.75%,
        rgba(255, 255, 255, 0) 76.89%,
        #f2f8fd 100%
    );
    z-index: 9;
}
.h3_banner-shape-1 {
    position: absolute;
    left: 80px;
    bottom: 100px;
}
.h3_banner-shape-2 {
    position: absolute;
    top: 185px;
    left: 52%;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .h3_banner-shape-2 {
        left: 55%;
        top: 160px;
    }
}
.h3_banner-shape-3 {
    position: absolute;
    bottom: 42%;
    left: 55%;
    transform: translateX(-50%);
}
@media (max-width: 1399px) {
    .h3_banner-shape-3 {
        left: 50%;
    }
}
@media (max-width: 767px) {
    .h3_banner-shape-3 {
        display: none;
    }
}
.h3_banner-img img {
    border-radius: 10px;
}

.h3_banner-active .swiper-wrapper,
.h3_banner-active-2 .swiper-wrapper {
    height: 990px;
    transition-timing-function: linear;
}
@media (max-width: 1199px) {
    .h3_banner-active .swiper-wrapper,
    .h3_banner-active-2 .swiper-wrapper {
        height: 720px;
    }
}

.h4_banner-area {
    position: relative;
    z-index: 1;
}
.h4_banner-single {
    min-height: 600px;
}
.h4_banner-content {
    padding-top: 116px;
    padding-bottom: 70px;
    text-align: center;
}
.h4_banner-content-title {
    color: #1b2a52;
    margin-bottom: 20px;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2.4px;
}
@media (max-width: 1399px) {
    .h4_banner-content-title {
        font-size: 75px;
    }
}
@media (max-width: 1199px) {
    .h4_banner-content-title {
        font-size: 65px;
    }
}
@media (max-width: 991px) {
    .h4_banner-content-title {
        font-size: 60px;
    }
}
@media (max-width: 767px) {
    .h4_banner-content-title {
        font-size: 45px;
    }
}
@media (max-width: 575px) {
    .h4_banner-content-title {
        font-size: 42px;
    }
}
.h4_banner-content p {
    color: #1b2a52;
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .h4_banner-content p br {
        display: none;
    }
}
.h4_banner-shape-1 {
    position: absolute;
    left: calc(6% - 10px);
    top: 15%;
    text-align: center;
}
@media (max-width: 1399px) {
    .h4_banner-shape-1 {
        top: 13%;
        left: 5%;
    }
}
.h4_banner-shape-1 img {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    padding: 11px 11px;
    margin-bottom: 12px;
}
.h4_banner-shape-1 p {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}
.h4_banner-shape-2 {
    position: absolute;
    left: calc(15% + 15px);
    top: calc(25% + 5px);
    text-align: center;
}
@media (max-width: 1399px) {
    .h4_banner-shape-2 {
        top: 25%;
        left: 12%;
    }
}
.h4_banner-shape-2 img {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    padding: 11px 11px;
    margin-bottom: 12px;
}
.h4_banner-shape-2 p {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}
.h4_banner-shape-3 {
    position: absolute;
    left: calc(6% + 5px);
    top: calc(36% - 2px);
    text-align: center;
}
@media (max-width: 1399px) {
    .h4_banner-shape-3 {
        top: 36%;
        left: 5%;
    }
}
.h4_banner-shape-3 img {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    padding: 11px 11px;
    margin-bottom: 12px;
}
.h4_banner-shape-3 p {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}
.h4_banner-shape-4 {
    position: absolute;
    right: calc(6% - 10px);
    top: 15%;
    text-align: center;
}
@media (max-width: 1399px) {
    .h4_banner-shape-4 {
        top: 13%;
        right: 5%;
    }
}
.h4_banner-shape-4 img {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    padding: 11px 11px;
    margin-bottom: 12px;
}
.h4_banner-shape-4 p {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}
.h4_banner-shape-5 {
    position: absolute;
    right: calc(15% + 15px);
    top: calc(25% + 5px);
    text-align: center;
}
@media (max-width: 1399px) {
    .h4_banner-shape-5 {
        top: 25%;
        right: 12%;
    }
}
.h4_banner-shape-5 img {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    padding: 11px 11px;
    margin-bottom: 12px;
}
.h4_banner-shape-5 p {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}
.h4_banner-shape-6 {
    position: absolute;
    right: calc(6% + 5px);
    top: calc(36% - 2px);
    text-align: center;
}
@media (max-width: 1399px) {
    .h4_banner-shape-6 {
        top: 36%;
        right: 5%;
    }
}
.h4_banner-shape-6 img {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    padding: 11px 11px;
    margin-bottom: 12px;
}
.h4_banner-shape-6 p {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}
.h4_banner-bottom {
    position: relative;
    z-index: 1;
}
.h4_banner-bottom-shape {
    position: absolute;
    left: 5px;
    top: -50px;
    z-index: -2;
}
.h4_banner-bottom-img {
    max-width: 1110px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.h4_banner-form {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    text-align: left;
    padding: 25px 35px 30px;
    margin-top: 45px;
    max-width: 910px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
@media (max-width: 480px) {
    .h4_banner-form {
        padding: 25px 30px 30px;
    }
}
.h4_banner-form-top {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 16px;
}
.h4_banner-form-top span {
    color: #7f879e;
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}
.h4_banner-form-title {
    color: #1b2a52;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    text-decoration-line: underline;
    text-transform: uppercase;
}
.h4_banner-form form {
    display: flex;
    gap: 10px;
}
@media (max-width: 767px) {
    .h4_banner-form form {
        flex-wrap: wrap;
    }
}
.h4_banner-form form button {
    border-radius: 8px;
    background: linear-gradient(180deg, #9425ec 0%, #7d25ec 100%);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 42px;
    padding: 0 22px;
    display: block;
    flex-shrink: 0;
}
.h4_banner-form form button svg {
    font-size: 12px;
    margin-right: 5px;
}
.h4_banner-form form input {
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    width: 100%;
    height: 42px;
    line-height: 42px;
    color: #7f879e;
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
    background: transparent;
}
.h4_banner-form form input::-webkit-input-placeholder {
    color: #7f879e;
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
}
.h4_banner-form form input:-moz-placeholder {
    color: #7f879e;
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
}
.h4_banner-form form input::-moz-placeholder {
    color: #7f879e;
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
}
.h4_banner-form form input:-ms-input-placeholder {
    color: #7f879e;
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
}
.h4_banner-form-option.nice-select {
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    width: 250px;
    height: 42px;
    line-height: 40px;
    padding: 0 20px;
    background: transparent;
}
.h4_banner-form-option.nice-select ul li {
    color: #7f879e;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    height: 42px;
    line-height: 42px;
    padding: 0 20px;
}
.h4_banner-form-option.nice-select.open ul {
    width: 100%;
    border-radius: 6px;
    border: none;
    margin-top: 5px;
}
.h4_banner-form-option.nice-select .option.selected {
    font-weight: 500;
}
.h4_banner-form-option.nice-select::after {
    border-bottom: 1.5px solid rgba(18, 18, 18, 0.6);
    border-right: 1.5px solid rgba(18, 18, 18, 0.6);
    content: "";
    display: block;
    height: 5px;
    margin-top: -1px;
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: 50%;
    transform-origin: 50% 50%;
    transform: rotate(45deg) translateY(-50%);
    transition: all 0.3s ease-in-out;
    width: 5px;
}

.h5_banner-area {
    background: linear-gradient(
        180deg,
        rgba(125, 37, 236, 0.2) 0%,
        rgba(125, 37, 236, 0.04) 100%
    );
    position: relative;
}
.h5_banner-single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    padding-top: 125px;
    padding-bottom: 150px;
}
.h5_banner-content {
    text-align: center;
}
.h5_banner-content-title {
    margin-bottom: 20px;
    color: #1b2a52;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2.1px;
}
@media (max-width: 1199px) {
    .h5_banner-content-title {
        font-size: 65px;
    }
}
@media (max-width: 991px) {
    .h5_banner-content-title {
        font-size: 54px;
    }
}
@media (max-width: 767px) {
    .h5_banner-content-title {
        font-size: 46px;
    }
}
@media (max-width: 575px) {
    .h5_banner-content-title {
        font-size: 42px;
    }
}
.h5_banner-content p {
    color: rgba(27, 42, 82, 0.7);
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 45px;
}
@media (max-width: 991px) {
    .h5_banner-content p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .h5_banner-content p {
        font-size: 16px;
    }
}
.h5_banner-form {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 8px 0px rgba(27, 42, 82, 0.14);
    padding: 30px 35px 30px;
    margin-top: 45px;
}
@media (max-width: 480px) {
    .h5_banner-form {
        padding: 30px 30px 30px;
    }
}
.h5_banner-form-title {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}
.h5_banner-form form {
    display: flex;
    gap: 10px;
}
@media (max-width: 480px) {
    .h5_banner-form form {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.h5_banner-form form button {
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    padding: 0 22px;
    display: block;
    flex-shrink: 0;
    border-radius: 8px;
    background: #7d25ec;
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.5);
}
.h5_banner-form form button i {
    font-size: 12px;
    margin-right: 8px;
}
.h5_banner-form form input {
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    width: 100%;
    height: 44px;
    line-height: 44px;
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
    background: transparent;
}
.h5_banner-shape-1 {
    position: absolute;
    left: calc(12% + 5px);
    top: 17%;
}
@media (max-width: 1399px) {
    .h5_banner-shape-1 {
        top: 10%;
    }
}
@media (max-width: 991px) {
    .h5_banner-shape-1 {
        left: 15%;
        top: 8%;
    }
}
.h5_banner-shape-1 p {
    position: absolute;
    right: 80px;
    top: 20px;
    border-radius: 0px 12px 12px 12px;
    background: #d0bee7;
    width: 100px;
    padding: 8px 15px;
    line-height: 1.2;
    font-size: 12px;
    color: var(--clr-body-heading);
}
.h5_banner-shape-2 {
    position: absolute;
    bottom: 43%;
    left: calc(10% + 10px);
}
@media (max-width: 1399px) {
    .h5_banner-shape-2 {
        bottom: 45%;
    }
}
.h5_banner-shape-2 p {
    position: absolute;
    left: 62px;
    top: 20px;
    border-radius: 0px 12px 12px 12px;
    background: #d0bee7;
    width: 100px;
    padding: 8px 15px;
    line-height: 1.2;
    font-size: 12px;
    color: var(--clr-body-heading);
}
.h5_banner-shape-3 {
    position: absolute;
    top: 17%;
    right: 13%;
}
@media (max-width: 1399px) {
    .h5_banner-shape-3 {
        top: 10%;
        right: 10%;
    }
}
@media (max-width: 1199px) {
    .h5_banner-shape-3 {
        top: 10%;
        right: 13%;
    }
}
@media (max-width: 1199px) {
    .h5_banner-shape-3 {
        top: 8%;
        right: 15%;
    }
}
.h5_banner-shape-3 p {
    position: absolute;
    left: 80px;
    top: 18px;
    border-radius: 0px 12px 12px 12px;
    background: #d0bee7;
    width: 100px;
    padding: 8px 15px;
    line-height: 1.2;
    font-size: 12px;
    color: var(--clr-body-heading);
}
.h5_banner-shape-4 {
    position: absolute;
    bottom: 43%;
    right: 12%;
}
@media (max-width: 1399px) {
    .h5_banner-shape-4 {
        bottom: 45%;
        right: 6%;
    }
}
.h5_banner-shape-4 p {
    position: absolute;
    right: 62px;
    top: 18px;
    border-radius: 0px 12px 12px 12px;
    background: #d0bee7;
    width: 100px;
    padding: 8px 15px;
    line-height: 1.2;
    font-size: 12px;
    color: var(--clr-body-heading);
}
.h5_banner-tag {
    display: flex;
    gap: 20px;
    align-items: center;
}
@media (max-width: 991px) {
    .h5_banner-tag {
        align-items: start;
    }
}
.h5_banner-tag span {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    display: block;
}
.h5_banner-tag ul {
    display: flex;
    gap: 10px;
    align-items: center;
    list-style: none;
}
@media (max-width: 991px) {
    .h5_banner-tag ul {
        flex-wrap: wrap;
    }
}
.h5_banner-tag ul li a {
    border-radius: 6px;
    border: 1px solid rgba(27, 42, 82, 0.2);
    display: block;
    padding: 4px 15px;
    color: #1b2a52;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}
.h5_banner-tag ul li a:hover {
    background-color: var(--clr-theme-primary);
    color: #fff;
    border-color: transparent;
}

/* ///////////////////////////////////////////////////////////
05. about
/////////////////////////////////////////////////////////// */
.h2_about-img {
    margin-right: 45px;
    position: relative;
    z-index: 1;
    padding-bottom: 110px;
    padding-right: 70px;
}
@media (max-width: 1399px) {
    .h2_about-img {
        margin-right: 15px;
    }
}
@media (max-width: 1199px) {
    .h2_about-img {
        margin-right: 0;
    }
}
.h2_about-img .inner-img-1 {
    width: 100%;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0px 2px 30px 0px rgba(27, 42, 82, 0.07);
}
.h2_about-img .inner-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 1199px) {
    .h2_about-img .inner-img-2 {
        width: 50%;
    }
}
@media (max-width: 991px) {
    .h2_about-img .inner-img-2 {
        width: 45%;
    }
}
@media (max-width: 767px) {
    .h2_about-img .inner-img-2 {
        width: initial;
    }
}
@media (max-width: 575px) {
    .h2_about-img .inner-img-2 {
        width: 50%;
    }
}
.h2_about-img .inner-img-shape {
    position: absolute;
    left: 18%;
    bottom: calc(5% + 3px);
}

/* ///////////////////////////////////////////////////////////
06. section
/////////////////////////////////////////////////////////// */
.section-subtitle {
    border-radius: 50px;
    background: rgba(255, 229, 177, 0.164);
    box-shadow: 1px 3px 5px 3px rgba(27, 42, 82, 0.2);
    display: inline-block;
    color: #fa901f;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 25px;
    height: 36px;
    line-height: 36px;
    margin-bottom: 20px;
}
@media (max-width: 1199px) {
    .section-subtitle {
        font-size: 11px;
        letter-spacing: 1px;
    }
}
.section-title {
    color: var(--clr-body-heading);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -1.76px;
}
@media (max-width: 991px) {
    .section-title {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .section-title {
        font-size: 36px;
    }
}
@media (max-width: 480px) {
    .section-title {
        font-size: 34px;
    }
}
.section-title-big {
    font-size: 55px;
}
@media (max-width: 991px) {
    .section-title-big {
        font-size: 45px;
    }
}
@media (max-width: 767px) {
    .section-title-big {
        font-size: 40px;
    }
}
@media (max-width: 575px) {
    .section-title-big {
        font-size: 36px;
    }
}

.h2_section-subtitle {
    color: #7d25ec;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    line-height: 20px;
    margin-bottom: 7px;
}
.h2_section-title {
    color: var(--clr-body-heading);
    margin-top: 50px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.2px;
}

.h21_blog-area {
    background-color: #ffffff;
    margin: 120px 0;
}

@media (max-width: 1199px) {
    .h21_blog-area {
        background-color: #ffffff;
    }
}

@media (max-width: 1199px) {
    .h211_blog-area {
        background-color: #ffffff;
        width: auto;
        padding-bottom: 10px;
        padding-left: 0px;
        padding-right: 0px;
    }
}

.h21_section-title {
    color: #000000b3;
    margin-top: 50px;
    font-size: 40px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: -1.2px;
}
@media (max-width: 1199px) {
    .h21_section-title {
        letter-spacing: 0.5px;
    }
}

@media (max-width: 1399px) {
    .h2_section-title {
        font-size: 50px;
    }
}
@media (max-width: 1199px) {
    .h2_section-title {
        font-size: 42px;
    }
}
@media (max-width: 767px) {
    .h2_section-title {
        font-size: 36px;
    }
}
@media (max-width: 480px) {
    .h2_section-title {
        font-size: 34px;
    }
}
.h2_section-text {
    color: #6a738b;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}
@media (max-width: 1399px) {
    .h2_section-text br {
        display: none;
    }
}

.h3_section-title {
    color: var(--clr-body-heading);
    line-height: 1.1;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.92px;
}
@media (max-width: 991px) {
    .h3_section-title {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .h3_section-title {
        font-size: 38px;
    }
}
@media (max-width: 480px) {
    .h3_section-title {
        font-size: 34px;
    }
}

.h4_section-title {
    color: var(--clr-body-heading);
    line-height: 1.1;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 1px;
    letter-spacing: -1.92px;
    letter-spacing: -2.2px;
}
@media (max-width: 1399px) {
    .h4_section-title {
        font-size: 50px;
    }
}
@media (max-width: 1199px) {
    .h4_section-title {
        font-size: 40px;
        letter-spacing: 0.7px;
    }
}
@media (max-width: 767px) {
    .h4_section-title {
        font-size: 38px;
    }
    .h4_section-title br {
        display: none;
    }
}
@media (max-width: 480px) {
    .h4_section-title {
        font-size: 34px;
    }
}

.inner_section-subtitle {
    color: #ff7f32;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    line-height: 20px;
    margin-bottom: 7px;
}
.inner_section-title {
    color: var(--clr-body-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.76px;
    margin-bottom: 50px;
}
@media (max-width: 1199px) {
    .inner_section-title br {
        display: none;
    }
}
@media (max-width: 991px) {
    .inner_section-title {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .inner_section-title {
        font-size: 36px;
    }
}
@media (max-width: 480px) {
    .inner_section-title {
        font-size: 34px;
    }
}
.inner_section-title-big {
    font-size: 55px;
}
@media (max-width: 991px) {
    .inner_section-title-big {
        font-size: 45px;
    }
}
@media (max-width: 767px) {
    .inner_section-title-big {
        font-size: 40px;
    }
}
@media (max-width: 575px) {
    .inner_section-title-big {
        font-size: 36px;
    }
}
.inner_section-text {
    color: #6a738b;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}
@media (max-width: 1399px) {
    .inner_section-text br {
        display: none;
    }
}

/* ///////////////////////////////////////////////////////////
07. choose
/////////////////////////////////////////////////////////// */
.choose-area {
    margin: 150px 0;
}
@media (max-width: 1199px) {
    .choose-area {
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
        margin: 150px 0;
    }
}

.choose-item {
    /* border: 1px solid rgb(190, 181, 169); */
    background: #ffffff;
    padding: 40px 35px 35px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 1399px) {
    .choose-item {
        padding: 0px 0px 0px;
    }
}
@media (max-width: 1199px) {
    .choose-item {
        width: 100%;
        padding: 0px 0px 0px 0px;
        background-color: #ffffff;
        border-radius: 11px;
        border-color: #f21111;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
}
/* .choose-item:hover {
  border-radius: 0px;
  background: #fdc97add;
  box-shadow: 0px 16px 60px 0px rgba(26, 40, 75, 0.1);
  border-color: transparent;
} */
.choose-item-count {
    position: absolute;
    right: 45px;
    top: 44px;
    color: rgba(125, 37, 236, 0.06);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.2px;
    display: block;
    transform: rotate(-15deg);
}
.choose-item-img {
    margin-bottom: 10px;
    width: 254px;
}
@media (max-width: 1199px) {
    .choose-item-img {
        width: 100%;
        align-items: center;
        margin-bottom: 15px;
    }
}

.choose-item-content-title {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
}

@media (max-width: 575.98px) {
    .choose-item-content-title {
        font-size: 20px;
        letter-spacing: 0.2px;
    }
}

.choose-item-content-title:hover a {
    color: #000000;
}

@media (max-width: 1199px) {
    .choose-item-content {
        padding: 15px;
        padding-bottom: 20px;
    }
}

.choose-item-content p {
    color: #6a738bba;
    font-size: 14px;
    text-align: left;
    font-weight: 400;
    line-height: 22px;
}
@media (max-width: 1199px) {
    .choose-item-content p {
        font-size: 15px;
        margin-bottom: 32px;
    }
}
.choose-item-content-btn {
    color: #1b2a52;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 1199px) {
    .choose-item-content-btn {
        font-size: 18px;
    }
}
.choose-item-content-btn i {
    margin-top: 2px;
}
.choose-item-content-btn:hover {
    color: #000000;
}

/* ///////////////////////////////////////////////////////////
08. feature
/////////////////////////////////////////////////////////// */
.feature-area {
    background: #fffaf5;
}
@media (max-width: 1199px) {
    .feature-area {
        width: 100%;
    }
}

.feature-top {
    display: flex;
    gap: 40px;
}

@media (max-width: 991px) {
    .feature-top {
        flex-direction: column;
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .feature-top {
        flex-direction: row;
        justify-content: center;
        padding: 40px 100px;
    }
}

.feature-item {
    /* border-radius: 10px; */
    /* border: 1px solid rgba(27, 42, 82, 0.07); */
    background-color: transparent;
    /* padding: 30px 30px; */
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (max-width: 575px) {
    .feature-item {
        width: 100%;
    }
}
.feature-item-title {
    color: #1b2a52;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 25px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.feature-item p {
    color: #4a4d56;
    font-size: 15px;
    text-align: center;
    font-weight: 420;
    line-height: 28px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.feature-item1 {
    color: #4a4d56;
    list-style-position: inside;
    font-size: 15px;
    font-weight: 400;
    margin-left: 15px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.feature-item1 ul {
    list-style: disc;
    margin-left: 25px;
}

.feature-item-1::after {
    position: absolute;
    right: -84px;
    top: 50%;
    transform: translateY(-50%);
    content: url("../../assets/images/feature/shape-4.png");
}
@media (max-width: 1199px) {
    .feature-item-1::after {
        display: none;
    }
}
.feature-item-2::after {
    position: absolute;
    right: -84px;
    top: 50%;
    transform: translateY(-50%);
    content: url("../../assets/images/feature/shape-5.png");
}
@media (max-width: 1199px) {
    .feature-item-2::after {
        display: none;
    }
}
/* .feature-item:hover {
  background-color: #898989;
  border-color: transparent;
} */
/* .feature-item:hover .feature-item-title {
  color: #fff;
} */
/* .feature-item:hover p {
  color: rgba(255, 255, 255, 0.8);
} */

.feature-left-img {
    margin-right: 30px;
}
.feature-left-img img {
    width: 100%;
}
@media (max-width: 767px) {
    .feature-left-img {
        margin-right: 0;
    }
}
.feature-right-img {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: end;
}
@media (max-width: 575px) {
    .feature-right-img {
        justify-content: center;
        order: 0;
    }
}
.feature-shape-1 {
    position: absolute;
    right: -45px;
    top: 75px;
}
@media (max-width: 1399px) {
    .feature-shape-1 {
        right: -20px;
    }
}
@media (max-width: 767px) {
    .feature-shape-1 {
        display: none;
    }
}
.feature-shape-2 {
    position: absolute;
    left: 105px;
    top: -15px;
}
@media (max-width: 767px) {
    .feature-shape-2 {
        display: none;
    }
}
.feature-shape-3 {
    position: absolute;
    left: 25px;
    top: 135px;
}
@media (max-width: 991px) {
    .feature-shape-3 {
        left: 0;
        top: 30px;
    }
}
@media (max-width: 767px) {
    .feature-shape-3 {
        display: none;
    }
}

.h4_feature-area {
    background: #ffffff;
}
@media (max-width: 1199px) {
    .h4_feature-area {
        width: 100%;
        background: #ffffff;
    }
}

.h4_feature-item {
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 991.98px) {
    .h4_feature-item {
        gap: 10px;
    }
}

/* Small screens (mobile) */
@media (max-width: 768px) {
    .h4_feature-item {
        padding-bottom: 20px;
    }
        .counter h2 {
            font-size: 30px; /* Slightly smaller font size for smaller screens */
        }
    
}

/* Extra small screens (mobile portrait) */
@media (max-width: 480px) {
    .h4_feature-item{
        padding-bottom: 20px;
    }
    .counter h2 {
        font-size: 40px; /* Slightly smaller font size for smaller screens */
    }
}


.h4_feature-item-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Styling for the image */
.h4_feature-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect on image */
.counter-section:hover .h4_feature-item-img img {
    transform: scale(1.1);
    filter: brightness(90%);
}

.h4_feature-item-content-title {
    color: #000000;
    font-size: 21px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.72px;
}

.h4_feature-item-content-title:hover a {
    color: #f59e0b;
}

@media (max-width: 1199.98px) {
    .h4_feature-item-content-title {
        font-size: 19px;
    }
}

.h4_feature-item-content p {
    color: #7f879e;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.inner_feature-content-list {
    list-style: none;
    margin-bottom: 45px;
}
.inner_feature-content-list li {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.inner_feature-content-list li::before {
    position: absolute;
    left: 0;
    top: calc(50% + 2px);
    transform: translateY(-50%);
    content: url("../../assets/images/work/home2/checkmark.png");
}
.inner_feature-content-list li:last-child {
    margin-bottom: 0;
}
.inner_feature-img {
    margin-left: 30px;
}
.inner_feature-img img {
    width: 100%;
}
@media (max-width: 1199px) {
    .inner_feature-img {
        margin-left: 0;
    }
}
.inner_feature-img-2 {
    margin-left: 45px;
    position: relative;
    z-index: 1;
    padding-bottom: 110px;
    padding-right: 70px;
}
@media (max-width: 1399px) {
    .inner_feature-img-2 {
        margin-left: 15px;
    }
}
@media (max-width: 1199px) {
    .inner_feature-img-2 {
        margin-left: 0;
    }
}
.inner_feature-img-2 .inner-img-1 {
    width: 100%;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0px 2px 30px 0px rgba(27, 42, 82, 0.07);
}
.inner_feature-img-2 .inner-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 1199px) {
    .inner_feature-img-2 .inner-img-2 {
        width: 50%;
    }
}
@media (max-width: 991px) {
    .inner_feature-img-2 .inner-img-2 {
        width: 45%;
    }
}
@media (max-width: 767px) {
    .inner_feature-img-2 .inner-img-2 {
        width: initial;
    }
}
@media (max-width: 575px) {
    .inner_feature-img-2 .inner-img-2 {
        width: 50%;
    }
}
.inner_feature-img-2 .inner-img-shape {
    position: absolute;
    left: 18%;
    bottom: calc(5% + 3px);
}

/* ///////////////////////////////////////////////////////////
09. work
/////////////////////////////////////////////////////////// */
.h2_work-area {
    position: relative;
    z-index: 1;
}
.h2_work-content-list {
    list-style: none;
    margin-bottom: 45px;
}
.h2_work-content-list li {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.h2_work-content-list li::before {
    position: absolute;
    left: 0;
    top: calc(50% + 2px);
    transform: translateY(-50%);
    content: url("../../assets/images/work/home2/checkmark.png");
}
.h2_work-content-list li:last-child {
    margin-bottom: 0;
}
.h2_work-img {
    margin-left: 30px;
}
.h2_work-img img {
    width: 100%;
}
@media (max-width: 1199px) {
    .h2_work-img {
        margin-left: 0;
    }
}

.h2_work-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
@media (max-width: 1199px) {
    .h2_work-bottom {
        justify-content: center;
    }
}
.h2_work-item {
    display: flex;
    align-items: center;
    border-radius: 60px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    padding: 15px 60px 15px 15px;
    gap: 10px;
    position: relative;
    z-index: 1;
}
@media (max-width: 1199px) {
    .h2_work-item {
        padding: 15px 30px 15px 15px;
    }
}
.h2_work-item-1::after {
    position: absolute;
    right: -113px;
    top: 50%;
    transform: translateY(-50%);
    content: url("../../assets/images/work/home2/line.png");
}
@media (max-width: 1399px) {
    .h2_work-item-1::after {
        display: none;
    }
}
.h2_work-item-2::after {
    position: absolute;
    right: -113px;
    top: 50%;
    transform: translateY(-50%);
    content: url("../../assets/images/work/home2/line.png");
}
@media (max-width: 1399px) {
    .h2_work-item-2::after {
        display: none;
    }
}
.h2_work-item-icon {
    border-radius: 50px;
    background: #f0f2f8;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h2_work-item-icon i {
    color: #1b2a52;
    font-size: 24px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h2_work-item-info span {
    color: #1b2a52;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    display: block;
}

.h2_work-shape-1 {
    position: absolute;
    left: 6%;
    top: 22%;
}
@media (max-width: 1399px) {
    .h2_work-shape-1 {
        display: none;
    }
}
.h2_work-shape-2 {
    position: absolute;
    left: 10%;
    bottom: calc(28% - 5px);
}
@media (max-width: 1399px) {
    .h2_work-shape-2 {
        display: none;
    }
}
.h2_work-shape-3 {
    position: absolute;
    left: 42%;
    transform: translateX(-50%);
    top: 14%;
}
.h2_work-shape-4 {
    position: absolute;
    top: 30%;
    right: 6%;
}
@media (max-width: 1399px) {
    .h2_work-shape-4 {
        display: none;
    }
}

.h2_work-item:hover .h2_work-item-icon {
    background-color: var(--clr-body-heading);
}
.h2_work-item:hover .h2_work-item-icon i {
    color: #fff;
}

.h3_work-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}
@media (max-width: 767px) {
    .h3_work-wrap {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .h3_work-item {
        width: calc(50% - 10px);
    }
}
@media (max-width: 480px) {
    .h3_work-item {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .h3_work-item-2 {
        width: 100%;
        order: 2;
    }
}
@media (max-width: 480px) {
    .h3_work-item-2 {
        order: 1;
    }
}
@media (max-width: 767px) {
    .h3_work-item-3 {
        order: 1;
    }
}
@media (max-width: 480px) {
    .h3_work-item-3 {
        order: 2;
    }
}
.h3_work-item-img {
    border-radius: 14px;
    overflow: hidden;
}
.h3_work-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.h3_work-item-img a {
    position: relative;
    z-index: 1;
    display: block;
}
.h3_work-item-img a::before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 6 Pro";
    content: "+";
    width: 100%;
    height: 100%;
    background-color: rgba(125, 37, 236, 0.5);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h3_work-item-img a:hover::before {
    opacity: 1;
    visibility: visible;
}

.h3_work-top-btn {
    display: flex;
    justify-content: end;
}
@media (max-width: 767px) {
    .h3_work-top-btn {
        justify-content: flex-start;
    }
}
.h3_work-top-btn a {
    border-radius: 8px;
    border: 1px solid #7d25ec;
    height: 44px;
    padding: 0 30px;
    color: #7d25ec;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.h3_work-top-btn a:hover {
    background-color: #7d25ec;
    color: #fff;
}

.h5_work-item {
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.h5_work-item::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(
        180deg,
        rgba(27, 42, 82, 0) 67.16%,
        rgba(27, 42, 82, 0.5) 82.32%,
        rgba(27, 42, 82, 0.6) 100%
    );
    z-index: 1;
}
.h5_work-item a {
    position: absolute;
    left: 30px;
    bottom: 24px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.6px;
    display: block;
    z-index: 1;
}
.h5_work-item a:hover {
    color: var(--clr-color-violet);
}
.h5_work-item img {
    width: 100%;
}
.h5_work-navigation {
    display: flex;
    gap: 10px;
    justify-content: end;
}
.h5_work-navigation div {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: #1b2a52;
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-weight: 500;
}
.h5_work-navigation div:hover {
    border-color: transparent;
    color: #fff;
    background: #7d25ec;
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.5);
}
@media (max-width: 575px) {
    .h5_work-navigation {
        justify-content: flex-start;
    }
}

.inner_work-img {
    margin-right: 45px;
}
@media (max-width: 1199px) {
    .inner_work-img {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .inner_work-img {
        margin-bottom: 40px;
    }
}
.inner_work-wrap {
    margin-right: 80px;
}
@media (max-width: 1399px) {
    .inner_work-wrap {
        margin-right: 0;
    }
}
.inner_work-content {
    margin-bottom: 42px;
}
.inner_work-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 480px) {
    .inner_work-item {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.inner_work-item:not(:last-child) {
    border-bottom: 1px solid rgba(27, 42, 82, 0.08);
    padding-bottom: 17px;
    margin-bottom: 16px;
}
.inner_work-item-number {
    width: 105px;
}
.inner_work-item-number h3 {
    color: #7d25ec;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.44;
    letter-spacing: -1.44px;
    margin-bottom: 0;
}
.inner_work-item-text p {
    color: #7f879e;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

/* ///////////////////////////////////////////////////////////
10. apps
/////////////////////////////////////////////////////////// */
.apps-area {
    background: #f2f8fd;
    position: relative;
    z-index: 1;
}
.apps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    column-gap: 45px;
    flex-wrap: wrap;
}
.apps-icon-item:nth-child(even) {
    margin-bottom: 50px;
}
.apps-content {
    text-align: center;
}
.apps-content h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.76px;
    margin-bottom: 15px;
}
@media (max-width: 991px) {
    .apps-content h2 {
        font-size: 40px;
    }
}
@media (max-width: 575px) {
    .apps-content h2 {
        font-size: 35px;
    }
}
@media (max-width: 480px) {
    .apps-content h2 {
        font-size: 30px;
    }
}
.apps-content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 45px;
}
@media (max-width: 575px) {
    .apps-content p br {
        display: none;
    }
}
.apps-shape-1 {
    position: absolute;
    left: 5%;
    top: 40%;
}
.apps-shape-2 {
    position: absolute;
    left: calc(22% + 8px);
    bottom: 165px;
}
.apps-shape-3 {
    position: absolute;
    left: 0;
    bottom: 0;
}
.apps-shape-4 {
    position: absolute;
    bottom: 185px;
    right: calc(21% - 12px);
}
.apps-shape-5 {
    position: absolute;
    right: calc(9% + 7px);
    top: 50%;
    transform: translateY(-50%);
}
.apps-shape-6 {
    position: absolute;
    right: calc(13% + 3px);
    bottom: 115px;
}

/* ///////////////////////////////////////////////////////////
11. price
/////////////////////////////////////////////////////////// */
.price-item {
    border-radius: 14px;
    background: #f2f8fd;
    padding: 0 34px 42px;
    margin-bottom: 30px;
}
@media (max-width: 480px) {
    .price-item {
        padding: 0 30px 42px;
    }
}
.price-item-option {
    display: flex;
    justify-content: center;
}
.price-item-option span {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 0px 0px 8px 8px;
    background: #7d25ec;
    padding: 0 12px;
    height: 24px;
    line-height: 24px;
}
.price-item-head {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 30px;
}
.price-item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.price-item-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.price-item-amount del {
    color: #6a738b;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.72px;
    margin-right: 5px;
}
.price-item-amount-title {
    color: #1b2a52;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1.6px;
    margin-bottom: 0px;
}
.price-item-amount-title span {
    color: #1b2a52;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.96px;
}
.price-item-amount .amount-offer {
    position: absolute;
    top: -5px;
    right: 25px;
    content: "";
    background: linear-gradient(180deg, #1fdb00 0%, #099b18 93.72%);
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 0 5px;
    line-height: 1;
    height: 18px;
    line-height: 19px;
    border-radius: 2px;
    letter-spacing: 0px;
}
.price-item-amount .amount-offer::before {
    position: absolute;
    left: 6px;
    bottom: -6px;
    content: "";
    background-color: #099b18;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    width: 9px;
    height: 6px;
}
.price-item p {
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    text-align: center;
    margin-bottom: 15px;
}
.price-item-offer {
    color: #7d25ec;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.39px;
    display: inline-block;
    background: rgba(125, 37, 236, 0.1);
    height: 22px;
    padding: 0 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}
.price-item-offer::before {
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background-color: #f2f8fd;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.price-item-offer::after {
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background-color: #f2f8fd;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.price-item-btn {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #1b2a52;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.price-item-btn i {
    margin-top: 2px;
}
.price-item-btn:hover {
    background-color: var(--clr-theme-primary);
    color: #fff;
}
.price-item-list {
    list-style: none;
}
.price-item-list li {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding-left: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.price-item-list li::before {
    position: absolute;
    left: 0;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(180deg, #1fdb00 0%, #099b18 93.72%);
    top: 7px;
}
.price-item-list li:last-child {
    margin-bottom: 0;
}
.price-item-list li.not-abatable {
    color: #6a738b;
}
.price-item-list li.not-abatable::before {
    background: #6a738b;
}
.price-item.active {
    border-radius: 14px;
    border: 1.5px solid #7d25ec;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(27, 42, 82, 0.07);
}
.price-item.active .price-item-btn {
    background-color: var(--clr-theme-primary);
    color: #fff;
}
.price-item-1 p {
    margin-bottom: 75px;
}

.price-switch-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.price-tab .yearly-pack {
    position: relative;
    z-index: 1;
}
.price-tab .yearly-pack .amount-offer {
    position: absolute;
    top: -30px;
    right: -45px;
    content: "";
    background: linear-gradient(180deg, #1fdb00 0%, #099b18 93.72%);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding: 0 8px;
    height: 20px;
    line-height: 20px;
    border-radius: 3px;
    letter-spacing: 0px;
}
@media (max-width: 480px) {
    .price-tab .yearly-pack .amount-offer {
        right: -15px;
    }
}
.price-tab .yearly-pack .amount-offer::before {
    position: absolute;
    left: 20px;
    bottom: -6px;
    content: "";
    background-color: #099b18;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    width: 9px;
    height: 6px;
}
.price-tab .switch {
    position: absolute;
    left: 5px;
    top: 4px;
    bottom: 4px;
    right: 57.5%;
    background-color: #fff;
    border-radius: 36px;
    z-index: 1;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: 0s, 0.08s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.price-tab .toggle,
.price-tab .toggler {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .price-tab .toggle,
    .price-tab .toggler {
        margin-right: 5px;
    }
}
.price-tab .hide {
    display: none;
}
.price-tab .toggler {
    transition: 0.2s;
    cursor: pointer;
    line-height: 12px;
    text-align: center;
    color: #7f879e;
    font-size: 15px;
    font-weight: 600;
}
.price-tab .toggler--is-active {
    color: var(--clr-body-heading);
}
.price-tab .toggle {
    position: relative;
    width: 70px;
    height: 34px;
    border-radius: 100px;
    background-color: var(--clr-theme-primary);
    overflow: hidden;
    box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05);
}
.price-tab .tp-check {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 6;
}
.price-tab .tp-check:checked ~ .switch {
    right: 5px;
    left: 57.5%;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: 0.08s, 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .price-tab .price-scroll-width {
        width: 1100px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .price-tab .price-scroll {
        overflow-x: scroll;
        scrollbar-color: rgba(181, 165, 165, 0.56) rgba(255, 255, 255, 0.1);
    }
}

.h2_price-area .price-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 8px 0px rgba(27, 42, 82, 0.07);
    padding: 0 70px 50px;
}
@media (max-width: 1399px) {
    .h2_price-area .price-item {
        padding: 0 40px 50px;
    }
}
.h2_price-area .price-item.active {
    box-shadow: 0px 16px 60px 0px rgba(26, 40, 75, 0.1);
}
.h2_price-area .price-item.active .price-item-btn {
    background-color: var(--clr-theme-primary);
    color: #fff;
}
.h2_price-area .price-item-list li {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.h2_price-area .price-item-list li::before {
    display: none;
}
.h2_price-area .price-item-list li svg {
    color: var(--clr-theme-primary);
}
.h2_price-area .price-item-list li.not-abatable svg {
    color: #6a738b;
}

.h3_price-area {
    background: #f2f8fd;
}
.h3_price-area .price-item {
    border-radius: 10px;
    background: #fff;
    padding: 0 70px 50px;
    box-shadow: 0px 2px 8px 0px rgba(27, 42, 82, 0.07);
}
@media (max-width: 1399px) {
    .h3_price-area .price-item {
        padding: 0 40px 50px;
    }
}
.h3_price-area .price-item.active {
    border-radius: 14px;
    border: none;
    background: #fff;
    box-shadow: 0px 20px 60px 0px rgba(27, 42, 82, 0.07);
}
.h3_price-area .price-item.active .price-item-btn {
    background-color: var(--clr-theme-primary);
    color: #fff;
}
.h3_price-area .price-item-list li {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.h3_price-area .price-item-list li::before {
    display: none;
}
.h3_price-area .price-item-list li svg {
    color: var(--clr-theme-primary);
}
.h3_price-area .price-item-list li.not-abatable svg {
    color: #6a738b;
}

.h3_price-tab {
    display: flex;
    justify-content: center;
}
.h3_price-tab ul.nav {
    border-radius: 50px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    background: #fff;
    padding: 5px;
}
.h3_price-tab ul.nav .nav-item .nav-link {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    padding: 9px 35px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h3_price-tab ul.nav .nav-item .nav-link.active {
    border-radius: 50px;
    background: #7d25ec;
    color: #fff;
}

/* ///////////////////////////////////////////////////////////
12. testimonial
/////////////////////////////////////////////////////////// */
.testimonial-area {
    background: linear-gradient(
        180deg,
        rgba(242, 248, 253, 0) 0%,
        #f2f8fd 100%
    );
}
.testimonial-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.07);
    padding: 35px 30px 30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-item:hover {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 20px 100px 0px rgba(27, 42, 82, 0.14);
}
.testimonial-item p {
    color: #6a738b;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 0;
}
.testimonial-icon {
    position: absolute;
    right: 30px;
    top: 35px;
}
.testimonial-head {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 13px;
}
.testimonial-head-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-head-info h6 {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
}
.testimonial-head-info h6:hover {
    color: var(--clr-theme-primary);
}
.testimonial-head-info span {
    color: #6a738b;
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 22px;
}
.testimonial-rating {
    list-style: none;
    display: flex;
    gap: 5px;
    margin-bottom: 17px;
}
.testimonial-rating li {
    font-size: 14px;
    color: #f59e0b;
}

.swiper-wrapper.roll-slider {
    transition-timing-function: linear;
}

.h2_testimonial-area {
    background: #fff;
}
.h2_testimonial-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 6px 0px rgba(27, 42, 82, 0.07);
    padding: 35px 30px 30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h2_testimonial-item:hover {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 16px 60px 0px rgba(26, 40, 75, 0.1);
}
.h2_testimonial-item p {
    color: #6a738b;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 0;
}
.h2_testimonial-icon {
    position: absolute;
    right: 30px;
    top: 35px;
}
.h2_testimonial-head {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 13px;
}
.h2_testimonial-head-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}
.h2_testimonial-head-info h6 {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
}
.h2_testimonial-head-info h6:hover {
    color: var(--clr-theme-primary);
}
.h2_testimonial-head-info span {
    color: #6a738b;
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 22px;
}
.h2_testimonial-rating {
    list-style: none;
    display: flex;
    gap: 5px;
    margin-bottom: 17px;
}
.h2_testimonial-rating li {
    font-size: 14px;
    color: #f59e0b;
}

.h2_testimonial-pagination {
    margin-top: 2px;
}

.h2_testimonial-active.swiper
    .h2_testimonial-pagination
    span.swiper-pagination-bullet {
    margin: 0px 5px;
    border-radius: 50%;
    outline: 1px solid transparent;
    background-color: rgba(27, 42, 82, 0.14);
    width: 8px;
    height: 8px;
    cursor: pointer;
    opacity: 1;
}

.h2_testimonial-active.swiper
    .h2_testimonial-pagination
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--clr-theme-primary);
    width: 8px;
    height: 8px;
    opacity: 1;
    display: inline-block;
    outline: 1px solid var(--clr-theme-primary);
    outline-offset: 6px;
    margin: 0 12px;
}

.h3_testimonial-area {
    background: #f2f8fd;
}
.h3_testimonial-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
    padding: 35px 30px 30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h3_testimonial-item:hover {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 20px 60px 0px rgba(27, 42, 82, 0.07);
}
.h3_testimonial-item p {
    color: #6a738b;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 0;
}
.h3_testimonial-icon {
    position: absolute;
    right: 30px;
    top: 35px;
}
.h3_testimonial-head {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 13px;
}
.h3_testimonial-head-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}
.h3_testimonial-head-info h6 {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
}
.h3_testimonial-head-info h6:hover {
    color: var(--clr-theme-primary);
}
.h3_testimonial-head-info span {
    color: #6a738b;
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 22px;
}
.h3_testimonial-rating {
    list-style: none;
    display: flex;
    gap: 5px;
    margin-bottom: 9px;
}
.h3_testimonial-rating li {
    font-size: 14px;
    color: #f59e0b;
}

.h3_testimonial-pagination {
    margin-top: 2px;
}

.h3_testimonial-active.swiper
    .h3_testimonial-pagination
    span.swiper-pagination-bullet {
    margin: 0px 5px;
    border-radius: 50%;
    outline: 1px solid transparent;
    background-color: rgba(27, 42, 82, 0.14);
    width: 8px;
    height: 8px;
    cursor: pointer;
    opacity: 1;
}

.h3_testimonial-active.swiper
    .h3_testimonial-pagination
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--clr-theme-primary);
    width: 8px;
    height: 8px;
    opacity: 1;
    display: inline-block;
    outline: 1px solid var(--clr-theme-primary);
    outline-offset: 6px;
    margin: 0 12px;
}

.h4_testimonial-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
}
.h4_testimonial-item-top {
    padding: 40px 25px 38px;
    position: relative;
    z-index: 1;
}
.h4_testimonial-item-top p {
    color: #7f879e;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 0;
}
.h4_testimonial-rating {
    list-style: none;
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}
.h4_testimonial-rating li {
    font-size: 14px;
    color: #f59e0b;
    line-height: 22px;
}
.h4_testimonial-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: #f6f6f6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h4_testimonial-icon svg {
    color: rgba(27, 42, 82, 0.5);
}
.h4_testimonial-head {
    display: flex;
    gap: 10px;
    align-items: center;
    border-top: 1px solid rgba(27, 42, 82, 0.07);
    padding: 20px 25px;
}
.h4_testimonial-head-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}
.h4_testimonial-head-info h6 {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
}
.h4_testimonial-head-info h6:hover {
    color: var(--clr-theme-primary);
}
.h4_testimonial-head-info span {
    color: #6a738b;
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 22px;
}

.h4_testimonial-pagination {
    margin-top: 2px;
}

.h4_testimonial-active.swiper
    .h4_testimonial-pagination
    span.swiper-pagination-bullet {
    margin: 0px 5px;
    border-radius: 50%;
    outline: 1px solid transparent;
    background-color: rgba(27, 42, 82, 0.14);
    width: 8px;
    height: 8px;
    cursor: pointer;
    opacity: 1;
}

.h4_testimonial-active.swiper
    .h4_testimonial-pagination
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--clr-theme-primary);
    width: 8px;
    height: 8px;
    opacity: 1;
    display: inline-block;
    outline: 1px solid var(--clr-theme-primary);
    outline-offset: 6px;
    margin: 0 12px;
}

.h4_testimonial-top {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}
@media (max-width: 767px) {
    .h4_testimonial-top {
        justify-content: start;
    }
}
.h4_testimonial-top-icon {
    width: 40px;
    height: 40px;
}
.h4_testimonial-top-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.h4_testimonial-top-rating ul {
    list-style: none;
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}
.h4_testimonial-top-rating ul li {
    font-size: 12px;
    color: #f59e0b;
    line-height: 1;
}
.h4_testimonial-top-rating p {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 0;
}

/* ///////////////////////////////////////////////////////////
13. blog
/////////////////////////////////////////////////////////// */
.blog-item {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 2px 6px rgba(27, 42, 82, 0.07);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.blog-item:hover {
    box-shadow: 0px 16px 80px rgba(26, 40, 75, 0.14);
}
.blog-img img {
    width: 100%;
}
.blog-content {
    padding: 30px 30px 30px;
}
.blog-content-meta {
    /* display: flex; */
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.blog-content-meta a {
    /* border-radius: 40px; */
    background: #ffffff;
    display: block;
    color: #ff7b00;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    /* padding: 6px 15px; */
    line-height: 1;
}
.blog-content-meta span {
    display: flex;
    align-items: center;
    color: #6a738b;
    font-size: 10px;
    font-weight: 500;
    line-height: 22px;
}
.blog-content-title {
    color: #1b2a52;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.66px;
    margin-bottom: 21px;
}
.blog-content-title:hover a {
    color: var(--clr-theme-primary);
}
.blog-content-btn {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 22px;
}
.blog-content-btn i {
    margin-top: 2px;
}
.blog-content-btn:hover {
    color: var(--clr-theme-primary);
}

.h2_blog-item {
    background-color: #ffffff;
}

@media (max-width: 991.98px) {
    .h2_blog-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 1199px) {
    .h2_blog-item {
        width: 100%;
        align-content: center;
        margin-bottom: 40px;
    }
}
.h2_blog-img {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
@media (max-width: 1199px) {
    .h2_blog-img {
        width: 100%;
    }
}
.h2_blog-img:hover img {
    transform: scale(1.03);
}
.h2_blog-img img {
    transition: all 0.5s linear 0s;
}
.h2_blog-content-meta {
    display: flex;
    align-items: center;
}

@media (max-width: 575.98px) {
    /* CSS rules for extra small screens */
    .h2_blog-content-meta {
        display: flex;
        align-items: center;
        margin-top: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    /* CSS rules for medium screens */
    .h2_blog-content-meta {
        display: flex;
        align-items: center;
        margin: 10px 0 5px 0;
    }
}

/* Large (lg): ≥992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* CSS rules for large screens */
    .h2_blog-content-meta {
        margin: 10px 0 5px 0;
    }
}

@media (min-width: 1200px) {
    .h2_blog-content-meta {
        width: 370px;
        margin-top: 10px;
    }
}

.h2_blog-content-meta span {
    display: block;
    color: #6a738b;
    font-size: 11px;
    font-weight: 500;
    line-height: 15px;
    position: relative;
    z-index: 1;
}
.h2_blog-content-meta span a {
    color: #ffa52f;
    text-transform: uppercase;
}
.h2_blog-content-meta span i {
    margin-right: 7px;
}
.h2_blog-content-meta span:not(:last-child) {
    padding-right: 11px;
    margin-right: 10px;
}
.h2_blog-content-meta span:not(:last-child)::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: rgba(27, 42, 82, 0.07);
    width: 1px;
    height: 14px;
}
.h2_blog-content-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.72px;
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .h2_blog-content-title {
        font-size: 19px;
    }
}

@media (max-width: 991.98px) {
    .h2_blog-content-title {
        font-size: 20px;
    }
}

.h2_blog-content-title a {
    transition: all 0.3s linear 0s;
}
.h2_blog-content-title:hover a {
    color: #fdac41;
}

.h2_blog-active.swiper .h2_blog-pagination span.swiper-pagination-bullet {
    margin: 0px 5px;
    border-radius: 50%;
    outline: 1px solid transparent;
    background-color: rgba(27, 42, 82, 0.14);
    width: 8px;
    height: 8px;
    cursor: pointer;
    opacity: 1;
}

.h2_blog-active.swiper
    .h2_blog-pagination
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--clr-theme-primary);
    width: 8px;
    height: 8px;
    opacity: 1;
    display: inline-block;
    outline: 1px solid var(--clr-theme-primary);
    outline-offset: 6px;
    margin: 0 12px;
}

.h3_blog-area {
    background: #f2f8fd;
}
.h3_blog-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.07);
    overflow: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h3_blog-item:hover {
    box-shadow: 0px 10px 60px 0px rgba(68, 82, 119, 0.2);
}
.h3_blog-item:hover .h3_blog-img img {
    transform: scale(1.1);
}
.h3_blog-img {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.h3_blog-img img {
    -webkit-transition: all 0.6s linear 0s;
    -moz-transition: all 0.6s linear 0s;
    -ms-transition: all 0.6s linear 0s;
    -o-transition: all 0.6s linear 0s;
    transition: all 0.6s linear 0s;
}
.h3_blog-date {
    position: absolute;
    right: 30px;
    top: 30px;
    border-radius: 10px;
    background: #fff;
    display: block;
    padding: 13px 15px 12px;
    color: #1b2a52;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}
.h3_blog-date b {
    color: #7d25ec;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.04px;
    display: block;
    margin-top: 6px;
}
.h3_blog-content {
    padding: 50px 30px 50px;
    position: relative;
    z-index: 1;
}
@media (max-width: 480px) {
    .h3_blog-content {
        padding: 50px 25px 50px;
    }
}
.h3_blog-content-meta {
    position: absolute;
    left: 30px;
    top: -14px;
    border-radius: 8px;
    background: #7d25ec;
    display: block;
    height: 28px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 28px;
    text-transform: uppercase;
    padding: 0 14px;
    z-index: 1;
}
.h3_blog-content-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.72px;
}
.h3_blog-content-title:hover a {
    color: var(--clr-theme-primary);
}
@media (max-width: 1399px) {
    .h3_blog-content-title {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .h3_blog-content-title {
        font-size: 20px;
    }
}
.h3_blog-content-admin {
    color: #6a738b;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    display: block;
}
.h3_blog-content-admin a {
    color: #1b2a52;
    font-weight: 500;
    display: inline-block;
}
.h3_blog-content-admin a:hover {
    color: var(--clr-theme-primary);
}

.h3_blog-active.swiper .h3_blog-pagination span.swiper-pagination-bullet {
    margin: 0px 5px;
    border-radius: 50%;
    outline: 1px solid transparent;
    background-color: rgba(27, 42, 82, 0.14);
    width: 8px;
    height: 8px;
    cursor: pointer;
    opacity: 1;
}

.h3_blog-active.swiper
    .h3_blog-pagination
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--clr-theme-primary);
    width: 8px;
    height: 8px;
    opacity: 1;
    display: inline-block;
    outline: 1px solid var(--clr-theme-primary);
    outline-offset: 6px;
    margin: 0 12px;
}

/* ///////////////////////////////////////////////////////////
14. blog details
/////////////////////////////////////////////////////////// */
.blog_details-area {
    background-color: #ffffff;
}

.blog_details-img {
    position: relative;
    z-index: 1;
}
.blog_details-img img {
    border-radius: 14px 14px 0px 0px;
}
.blog_details-meta {
    display: flex;
    align-items: center;
}
.blog_details-meta-box {
    border-radius: 0px 10px 0px 0px;
    background: #fff;
    padding: 25px 30px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin-right: 30px;
    margin-left: 35px;
    box-shadow: 0px 2px 10px rgba(27, 42, 82, 0.06);
}
.blog-details .blog_details-meta-box::before {
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 5px;
    content: "";
    border-radius: 6px 0px 0px 0px;
    background: #7d25ec;
}
@media (max-width: 991px) {
    .blog_details-meta-box {
        flex-wrap: wrap;
        row-gap: 15px;
    }
}
@media (max-width: 480px) {
    .blog_details-meta-box {
        display: none;
    }
}
.blog_details-meta span {
    color: #7f879e;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog_details-meta span:first-child {
    color: #7d25ec;
    text-transform: uppercase;
}
.blog_details-meta span:not(:last-child) {
    position: relative;
    z-index: 1;
    margin-right: 10px;
    padding-right: 10px;
}
.blog_details-meta span:not(:last-child)::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 14px;
    background-color: rgba(27, 42, 82, 0.1);
    width: 1px;
    z-index: 1;
}
.blog_details-meta span a {
    font-size: 14px;
    line-height: 1;
    display: block;
    color: var(--clr-theme-primary);
}
.blog_details-meta span a:hover {
    color: var(--clr-theme-primary);
}
.blog_details-meta-action ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}
.blog_details-meta-action ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(27, 42, 82, 0.7);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
}
.blog_details-meta-action ul li a:hover {
    color: var(--clr-theme-primary);
}
.blog_details-content {
    border-radius: 0px 0px 10px 10px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    border-top: 0;
    padding: 30px 30px 0;
}
@media (max-width: 480px) {
    .blog_details-content {
        padding: 20px 0;
        border: none;
    }
}
.blog_details-content-title {
    color: #1b2a52;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.9px;
    margin-bottom: 22px;
}
@media (max-width: 480px) {
    .blog_details-content-title {
        font-size: 25px;
    }
}
.blog_details-content-text {
    color: #7f879e;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}
.blog_details-content blockquote {
    border-radius: 10px;
    background: #f8faff;
    padding: 25px 50px 20px 25px;
    position: relative;
    z-index: 1;
    margin-bottom: 23px;
}
@media (max-width: 575px) {
    .blog_details-content blockquote {
        padding-right: 25px;
    }
}
.blog_details-content blockquote::before {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    content: "\f10d";
    color: var(--clr-theme-primary);
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 12px;
}
.blog_details-content blockquote p {
    color: #1b2a52;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 15px;
}
@media (max-width: 480px) {
    .blog_details-content blockquote p {
        font-size: 16px;
    }
}
.blog_details-content blockquote span {
    display: block;
    color: #7d25ec;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    position: relative;
    z-index: 1;
    padding-left: 50px;
}
.blog_details-content blockquote span::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--clr-theme-primary);
}
.blog_details-content .inner-img img {
    border-radius: 14px;
}
.blog_details-content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(27, 42, 82, 0.07);
    padding: 20px 0;
}
@media (max-width: 575px) {
    .blog_details-content-bottom {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.blog_details-content-tag {
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 480px) {
    .blog_details-content-tag {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.blog_details-content-tag span {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    display: block;
}
@media (max-width: 480px) {
    .blog_details-content-tag span {
        font-size: 18px;
    }
}
.blog_details-content-tag ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}
.blog_details-content-tag ul li a {
    border-radius: 8px;
    background: #f8faff;
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #1b2a52;
    font-size: 15px;
    font-weight: 500;
}
.blog_details-content-tag ul li a:hover {
    background-color: var(--clr-theme-primary);
    color: #fff;
}
.blog_details-content-share a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(27, 42, 82, 0.7);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Space Grotesk", sans-serif;
}
.blog_details-content-share a i {
    color: #1b2a52;
}
.blog_details-content-share a:hover {
    color: var(--clr-theme-primary);
}

.blog_details-comment-title {
    color: var(--clr-body-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.72px;
    margin-bottom: 23px;
}
.blog_details-comment-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(27, 42, 82, 0.07);
    margin-bottom: 30px;
    padding-bottom: 40px;
}
@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 {
        flex-wrap: wrap;
    }
    .blog_details-comment-item.ml-80 {
        margin-left: 0;
    }
}
.blog_details-comment-img {
    width: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    height: 60px;
}
.blog_details-comment-img img {
    width: 100%;
    height: 100%;
}
.blog_details-comment-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}
.blog_details-comment-content span {
    font-size: 13px;
    color: var(--clr-theme-primary);
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.blog_details-comment-content p {
    margin-bottom: 22px;
}
.blog_details-comment-content .comment-reply {
    font-size: 15px;
    display: inline-block;
    border: 1px solid rgba(27, 42, 82, 0.07);
    height: 30px;
    padding: 0 20px;
    font-weight: 500;
    color: var(--clr-body-heading);
    border-radius: 4px;
}
.blog_details-comment-content .comment-reply:hover {
    background-color: var(--clr-theme-primary);
    color: #fff;
}

.blog_details-bottom .post-comments-title {
    color: #1b2a52;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.72px;
    margin-bottom: 7px;
}
.blog_details-bottom .post-comments p {
    color: #7f879e;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 23px;
}
.blog_details-bottom .post-input {
    position: relative;
    z-index: auto;
}
.blog_details-bottom .post-input i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #7f879e;
    font-size: 16px;
}
.blog_details-bottom .post-input input,
.blog_details-bottom .post-input textarea {
    width: 100%;
    border: 1px solid rgba(27, 42, 82, 0.07);
    border-radius: 8px;
    height: 46px;
    line-height: 46px;
    padding: 0 20px;
    padding-right: 50px;
    color: #7f879e;
    font-size: 14px;
}
.blog_details-bottom .post-input textarea {
    height: 120px;
    padding-right: 20px;
}
.blog_details-bottom .post-comments-btn button {
    border: none;
    border-radius: 8px;
    background: #7d25ec;
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.5);
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 45px;
}

.blog_details-widget {
    border-radius: 14px;
    background: #f8faff;
    padding: 30px 30px 35px;
}
.blog_details-widget-title {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.6px;
    position: relative;
    z-index: 1;
    padding-bottom: 10px;
}
.blog_details-widget-title::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-color: rgba(27, 42, 82, 0.07);
}
.blog_details-widget-title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 1px;
    content: "";
    background-color: var(--clr-theme-primary);
}
.blog_details-widget-search {
    position: relative;
    z-index: 1;
}
.blog_details-widget-search input {
    width: 100%;
    border: 1px solid rgba(27, 42, 82, 0.07);
    height: 58px;
    padding: 0 20px;
    padding-right: 50px;
    background-color: transparent;
    border-radius: 10px;
    color: #7f879e;
    font-size: 14px;
    font-weight: 400;
}
.blog_details-widget-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 47px;
    height: 47px;
    border: none;
    border-radius: 10px;
    background: var(--clr-theme-primary);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog_details-widget-search button:hover {
    background-color: #b5781d;
}

.blog_details-widget ul {
    list-style: none;
}
.blog_details-widget ul li:not(:last-child) {
    margin-bottom: 12px;
}
.blog_details-widget ul li a {
    color: #7f879e;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-left: 17px;
}
.blog_details-widget ul li a::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f105";
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    transform: translateY(-50%);
    font-size: 14px;
}
.blog_details-widget ul li a:hover {
    color: var(--clr-theme-primary);
}
.blog_details-widget-help input,
.blog_details-widget-help textarea {
    width: 100%;
    border: 1px solid rgba(27, 42, 82, 0.07);
    border-radius: 8px;
    height: 46px;
    line-height: 46px;
    padding: 0 20px;
    background-color: transparent;
    margin-bottom: 15px;
    color: #7f879e;
    font-size: 14px;
}
.blog_details-widget-help textarea {
    height: 110px;
    padding-right: 20px;
    margin-bottom: 25px;
}
.blog_details-widget-help button {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: #7d25ec;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* ///////////////////////////////////////////////////////////
15. brand
/////////////////////////////////////////////////////////// */
.brand-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
    align-items: center;
}
.brand-item {
    border-radius: 60px;
    background: #fff;
    box-shadow: 0px 3px 14px 0px rgba(126, 147, 205, 0.1);
    height: 100px;
    width: 230px;
    display: grid;
    place-items: center;
    padding: 0 15px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
}
.brand-item:hover {
    box-shadow: 0px 8px 60px 0px rgba(44, 58, 95, 0.16);
}

.h2_brand-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
    align-items: center;
}
.h2_brand-item {
    border-radius: 60px;
    background: #fff;
    box-shadow: 0px 3px 14px 0px rgba(126, 147, 205, 0.1);
    height: 100px;
    width: 230px;
    display: grid;
    place-items: center;
    padding: 0 15px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
}
.h2_brand-item:hover {
    box-shadow: 0px 8px 60px 0px rgba(44, 58, 95, 0.16);
}

.h3_brand-area {
    background: #f2f8fd;
}
.h3_brand-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px;
}
@media (max-width: 1399px) {
    .h3_brand-wrap {
        padding-bottom: 0;
    }
}
@media (max-width: 991px) {
    .h3_brand-wrap {
        padding-top: 0;
        padding-bottom: 0;
    }
}
.h3_brand-wrap-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: calc(100% - 220px);
    z-index: -1;
    margin-left: auto;
    margin-right: auto;
    border-radius: 500px;
}
@media (max-width: 991px) {
    .h3_brand-wrap-bg {
        display: none;
    }
}
.h3_brand-img {
    border-radius: 100px;
    background: #fff;
    box-shadow: 0px 30px 50px 0px rgba(27, 42, 82, 0.07);
    height: 100px;
    width: 230px;
    display: grid;
    place-items: center;
    padding: 0 15px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
}

.h4_brand-area {
    background: #fff;
}

.h5_brand-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-evenly;
    align-items: center;
}
@media (max-width: 991px) {
    .h5_brand-wrap {
        gap: 30px;
    }
}

/* ///////////////////////////////////////////////////////////
16. faq
/////////////////////////////////////////////////////////// */
.h2_faq-wrap {
    margin-left: 25px;
    margin-right: 25px;
}
@media (max-width: 1399px) {
    .h2_faq-wrap {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media (max-width: 1199px) {
    .h2_faq-wrap {
        margin-left: 0;
        margin-right: 0;
    }
}
.h2_faq-content .accordion-item {
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(27, 42, 82, 0.07);
}
.h2_faq-content .accordion-button {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 23px;
    padding-bottom: 23px;
    cursor: pointer;
    box-shadow: none;
    border: none;
    background: #fff;
    border-radius: 0 !important;
    border: 0;
    color: var(--clr-body-heading);
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.6px;
}
@media (max-width: 767px) {
    .h2_faq-content .accordion-button {
        padding-right: 60px;
    }
}
@media (max-width: 575px) {
    .h2_faq-content .accordion-button {
        font-size: 18px;
        padding-left: 25px;
        padding-right: 60px;
    }
}
@media (max-width: 480px) {
    .h2_faq-content .accordion-button {
        font-size: 16px;
    }
}
.h2_faq-content .accordion-button::after {
    display: none;
}
.h2_faq-content .accordion-button::before {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-weight: 500;
    color: #7f879e;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 15px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    border-radius: 50%;
}
@media (max-width: 575px) {
    .h2_faq-content .accordion-button::before {
        right: 20px;
    }
}
.h2_faq-content .accordion-button:not(.collapsed)::before {
    border-color: transparent;
    background-color: #f2f8fd;
    color: var(--clr-theme-primary);
    content: "\f106";
    line-height: 29px;
}
.h2_faq-content .accordion-button img {
    width: 40px;
}
@media (max-width: 575px) {
    .h2_faq-content .accordion-button img {
        width: 30px;
    }
}
@media (max-width: 767px) {
    .h2_faq-content .accordion-button img {
        width: 40px;
    }
}
.h2_faq-content .accordion-body {
    padding: 0 100px 24px 30px;
    background: #fff;
}
.h2_faq-content .accordion-body p {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .h2_faq-content .accordion-body {
        padding: 0 70px 24px 30px;
    }
}
@media (max-width: 575px) {
    .h2_faq-content .accordion-body {
        padding: 0 25px 24px 25px;
    }
}

.h3_faq-area {
    background: #f2f8fd;
}
.h3_faq-content .accordion-item {
    overflow: hidden;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 6px 20px 0px rgba(121, 133, 165, 0.16);
}
.h3_faq-content .accordion-button {
    position: relative;
    cursor: pointer;
    box-shadow: none;
    border: none;
    background: #fff;
    border-radius: 0 !important;
    border: 0;
    color: var(--clr-body-heading);
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.6px;
    padding: 29px 30px;
    line-height: 1;
}
@media (max-width: 767px) {
    .h3_faq-content .accordion-button {
        padding-right: 60px;
    }
}
@media (max-width: 575px) {
    .h3_faq-content .accordion-button {
        font-size: 18px;
        padding-right: 60px;
        padding-left: 25px;
        line-height: 24px;
    }
}
@media (max-width: 480px) {
    .h3_faq-content .accordion-button {
        font-size: 16px;
        line-height: 22px;
    }
}
.h3_faq-content .accordion-button::after {
    display: none;
}
.h3_faq-content .accordion-button::before {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-weight: 500;
    color: #1b2a52;
    font-size: 16px;
    margin-top: 1px;
}
@media (max-width: 575px) {
    .h3_faq-content .accordion-button::before {
        right: 20px;
    }
}
@media (max-width: 767px) {
    .h3_faq-content .accordion-button::before {
        right: 25px;
    }
}
.h3_faq-content .accordion-button:not(.collapsed)::before {
    content: "\f106";
}
.h3_faq-content .accordion-button img {
    width: 40px;
}
@media (max-width: 575px) {
    .h3_faq-content .accordion-button img {
        width: 30px;
    }
}
@media (max-width: 767px) {
    .h3_faq-content .accordion-button img {
        width: 40px;
    }
}
.h3_faq-content .accordion-body {
    padding: 0 70px 31px 30px;
    background: #fff;
}
@media (max-width: 575px) {
    .h3_faq-content .accordion-body {
        padding: 0 25px 24px 25px;
    }
}
.h3_faq-content .accordion-body p {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
}

.h4_faq-content .accordion-item {
    overflow: hidden;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 5px 20px rgba(27, 42, 82, 0.05);
}
.h4_faq-content .accordion-button {
    position: relative;
    cursor: pointer;
    box-shadow: none;
    border: none;
    background: #f0f2f8;
    border-radius: 0 !important;
    border: 0;
    color: var(--clr-body-heading);
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.6px;
    padding: 29px 30px;
    line-height: 1;
}
@media (max-width: 767px) {
    .h4_faq-content .accordion-button {
        padding-right: 60px;
    }
}
@media (max-width: 575px) {
    .h4_faq-content .accordion-button {
        font-size: 18px;
        padding-right: 60px;
        padding-left: 25px;
        line-height: 24px;
    }
}
@media (max-width: 480px) {
    .h4_faq-content .accordion-button {
        font-size: 16px;
        line-height: 22px;
    }
}
.h4_faq-content .accordion-button::after {
    display: none;
}
.h4_faq-content .accordion-button::before {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-weight: 500;
    color: #1b2a52;
    font-size: 16px;
    margin-top: 1px;
}
@media (max-width: 575px) {
    .h4_faq-content .accordion-button::before {
        right: 20px;
    }
}
@media (max-width: 767px) {
    .h4_faq-content .accordion-button::before {
        right: 25px;
    }
}
.h4_faq-content .accordion-button:not(.collapsed) {
    background-color: #fff;
}
.h4_faq-content .accordion-button:not(.collapsed)::before {
    content: "\f106";
}
.h4_faq-content .accordion-button img {
    width: 40px;
}
@media (max-width: 575px) {
    .h4_faq-content .accordion-button img {
        width: 30px;
    }
}
@media (max-width: 767px) {
    .h4_faq-content .accordion-button img {
        width: 40px;
    }
}
.h4_faq-content .accordion-body {
    padding: 0 70px 29px 30px;
    background: #fff;
}
@media (max-width: 575px) {
    .h4_faq-content .accordion-body {
        padding: 0 25px 24px 25px;
    }
}
.h4_faq-content .accordion-body p {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
}

/* ///////////////////////////////////////////////////////////
17. service
/////////////////////////////////////////////////////////// */
.h3_service-area {
    background: #f2f8fd;
}
.h3_service-item {
    background: #fff;
    padding: 40px 35px 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px 0px rgba(27, 42, 82, 0.08);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (max-width: 1399px) {
    .h3_service-item {
        padding: 40px 30px 40px;
    }
}
@media (max-width: 1199px) {
    .h3_service-item {
        padding: 40px 35px 40px;
    }
}
.h3_service-item:hover {
    box-shadow: 0px 30px 110px 0px rgba(27, 42, 82, 0.14);
}
.h3_service-item-number {
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    color: #1b2a52;
    font-size: 16px;
    font-weight: 700;
}
.h3_service-item-icon {
    margin-bottom: 30px;
}
.h3_service-item-icon img {
    width: 60px;
    height: 60px;
}
.h3_service-item-title {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.6px;
    margin-bottom: 8px;
}
.h3_service-item-title:hover a {
    color: var(--clr-theme-primary);
}
.h3_service-item p {
    color: #6a738b;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 18px;
}
.h3_service-item-btn {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 22px;
}
.h3_service-item-btn i {
    margin-top: 1px;
    font-weight: 500;
}
.h3_service-item-btn:hover {
    color: var(--clr-theme-primary);
}

.h4_service-item {
    padding: 40px 35px 35px;
    border-radius: 14px;
    background: #f0f2f8;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h4_service-item-number {
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    color: #1b2a52;
    font-size: 16px;
    font-weight: 700;
}
.h4_service-item-icon {
    margin-bottom: 30px;
}
.h4_service-item-icon img {
    width: 60px;
    height: 60px;
}
.h4_service-item-title {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.6px;
    margin-bottom: 8px;
}
.h4_service-item-title:hover a {
    color: var(--clr-theme-primary);
}
.h4_service-item p {
    color: #7f879e;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 38px;
}
.h4_service-item-btn {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 22px;
}
.h4_service-item-btn i {
    margin-top: 1px;
    font-weight: 500;
}
.h4_service-item-btn:hover {
    color: var(--clr-theme-primary);
}
.h4_service-navigation {
    display: flex;
    gap: 10px;
    justify-content: end;
}
.h4_service-navigation div {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: #1b2a52;
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-weight: 500;
}
.h4_service-navigation div:hover {
    border-color: transparent;
    color: #fff;
    background: #7d25ec;
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.5);
}
@media (max-width: 575px) {
    .h4_service-navigation {
        justify-content: flex-start;
    }
}

.inner_service-item {
    border-radius: 10px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    background: #fff;
    padding: 40px 34px 35px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (max-width: 1399px) {
    .inner_service-item {
        padding: 40px 30px 35px;
    }
}
@media (max-width: 1199px) {
    .inner_service-item {
        padding: 40px 29px 35px;
    }
}
@media (max-width: 991px) {
    .inner_service-item {
        padding: 40px 34px 35px;
    }
}
.inner_service-item:hover {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 16px 60px 0px rgba(26, 40, 75, 0.1);
    border-color: transparent;
}
.inner_service-item-icon {
    margin-bottom: 34px;
}
.inner_service-item-icon svg {
    color: var(--clr-body-heading);
}
.inner_service-item-content-title {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
}
.inner_service-item-content-title:hover a {
    color: var(--clr-theme-primary);
}
.inner_service-item-content p {
    color: #7f879e;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 18px;
}
.inner_service-item-content-btn {
    color: #1b2a52;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.inner_service-item-content-btn i {
    margin-top: 2px;
}
.inner_service-item-content-btn:hover {
    color: var(--clr-theme-primary);
}

/* ///////////////////////////////////////////////////////////
18. instagram
/////////////////////////////////////////////////////////// */
.h2_instagram-wrap {
    display: flex;
    flex-wrap: wrap;
}
.h2_instagram-item {
    width: 20%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 1199px) {
    .h2_instagram-item {
        width: 33.3333333333%;
    }
}
@media (max-width: 767px) {
    .h2_instagram-item {
        width: 50%;
    }
}
@media (max-width: 480px) {
    .h2_instagram-item {
        width: 100%;
    }
    .h2_instagram-item img {
        width: 100%;
    }
}
.h2_instagram-item-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-theme-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h2_instagram-item-content h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.6px;
    margin-bottom: 15px;
}
.h2_instagram-item-content svg {
    color: #fff;
    width: 100px;
    margin-bottom: 35px;
}
@media (max-width: 991px) {
    .h2_instagram-item-content svg {
        width: 80px;
    }
}
.h2_instagram-item-content a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
}
.h2_instagram-item:hover .h2_instagram-item-content {
    opacity: 1;
    visibility: visible;
}

.h3_instagram-area {
    background: #f2f8fd;
}
.h3_instagram-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.h3_instagram-item {
    width: calc(20% - 8px);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border-radius: 14px;
    overflow: hidden;
}
@media (max-width: 1199px) {
    .h3_instagram-item {
        width: calc(33.3333333333% - 6.7px);
    }
}
@media (max-width: 767px) {
    .h3_instagram-item {
        width: calc(50% - 5px);
    }
}
@media (max-width: 480px) {
    .h3_instagram-item {
        width: 100%;
    }
    .h3_instagram-item img {
        width: 100%;
    }
}
.h3_instagram-item-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-theme-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h3_instagram-item-content h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.6px;
    margin-bottom: 15px;
}
.h3_instagram-item-content svg {
    color: #fff;
    width: 100px;
    margin-bottom: 35px;
}
@media (max-width: 991px) {
    .h3_instagram-item-content svg {
        width: 80px;
    }
}
.h3_instagram-item-content a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
}
.h3_instagram-item:hover .h3_instagram-item-content {
    opacity: 1;
    visibility: visible;
}

.h5_instagram-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.h5_instagram-item {
    width: calc(20% - 24px);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border-radius: 14px;
    overflow: hidden;
}
.h5_instagram-item img {
    width: 100%;
}
@media (max-width: 1199px) {
    .h5_instagram-item {
        width: calc(33.3333333333% - 20px);
    }
}
@media (max-width: 767px) {
    .h5_instagram-item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 480px) {
    .h5_instagram-item {
        width: 100%;
    }
}
.h5_instagram-item-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(125, 37, 236, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h5_instagram-item-content svg {
    color: #fff;
    width: 50px;
    height: 50px;
}
.h5_instagram-item:hover .h5_instagram-item-content {
    opacity: 1;
    visibility: visible;
}

/* ///////////////////////////////////////////////////////////
19. assistant
/////////////////////////////////////////////////////////// */
.h4_assistant-wrap {
    border-radius: 20px 0px 0px 20px;
    background: #1b2a52;
    height: 100%;
    padding: 65px 70px 70px;
}
@media (max-width: 1199px) {
    .h4_assistant-wrap {
        border-radius: 20px 20px 0 0;
    }
}
@media (max-width: 767px) {
    .h4_assistant-wrap {
        padding: 65px 50px 70px;
    }
}
@media (max-width: 480px) {
    .h4_assistant-wrap {
        padding: 45px 35px 50px;
    }
}
.h4_assistant-content {
    margin-top: 51px;
}
@media (max-width: 480px) {
    .h4_assistant-content {
        margin-top: 51px;
    }
}
.h4_assistant-content-title {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.17;
    letter-spacing: -1.02px;
    margin-bottom: 20px;
}
@media (max-width: 480px) {
    .h4_assistant-content-title {
        font-size: 22px;
    }
}
.h4_assistant-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 30px;
}
.h4_assistant-content a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
}
.h4_assistant-content a img {
    margin-top: 2px;
}
.h4_assistant-content a i {
    margin-top: 2px;
    font-weight: 500;
}
.h4_assistant-content a:hover {
    color: var(--clr-color-violet);
}
.h4_assistant-top {
    border: none;
    display: flex;
    align-items: center;
    column-gap: 40px;
    row-gap: 10px;
}
@media (max-width: 767px) {
    .h4_assistant-top {
        column-gap: 25px;
    }
}
.h4_assistant-top .nav-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    padding: 0;
    border: none;
}
.h4_assistant-top .nav-link:hover {
    color: #fff;
    text-decoration: underline;
    border: none;
}
.h4_assistant-top .nav-link.active {
    color: #fff;
    text-decoration: underline;
    background-color: transparent;
}
.h4_assistant-img {
    border-radius: 0px 20px 20px 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1199px) {
    .h4_assistant-img {
        border-radius: 0 0 20px 20px;
    }
}

/* ///////////////////////////////////////////////////////////
20. shop
/////////////////////////////////////////////////////////// */
.h5_shop-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 6px 0px rgba(27, 42, 82, 0.07);
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h5_shop-img {
    position: relative;
    z-index: 1;
}
.h5_shop-img img {
    width: 100%;
}
.h5_shop-img-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear 0s;
    -moz-transition: all 0.4s linear 0s;
    -ms-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
}
.h5_shop-img-icon a {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1b2a52;
    -webkit-transition: all 0.4s linear 0s;
    -moz-transition: all 0.4s linear 0s;
    -ms-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
}
.h5_shop-img-icon a:hover {
    background: #7d25ec;
    color: #fff;
}
.h5_shop-img-icon a:first-child {
    margin-right: 20px;
}
.h5_shop-img-icon a:last-child {
    margin-left: 20px;
}
.h5_shop-premium-icon {
    position: absolute;
    left: 25px;
    top: 25px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h5_shop-premium-icon svg {
    color: #f59e0b;
    width: 20px;
}
.h5_shop-content {
    padding: 25px 25px 20px;
}
@media (max-width: 991px) {
    .h5_shop-content {
        padding: 25px 20px 20px;
    }
}
.h5_shop-content-title {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 7px;
}
.h5_shop-content-title:hover a {
    color: var(--clr-theme-primary);
}
.h5_shop-content-price {
    transform: translateX(0);
}
.h5_shop-content-cart {
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    -webkit-transition: all 0.4s linear 0s;
    -moz-transition: all 0.4s linear 0s;
    -ms-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
}
.h5_shop-content-cart:hover {
    color: var(--clr-theme-primary);
}
.h5_shop-content-cart i {
    display: inline-block;
    margin-right: 5px;
    font-size: 15px;
}
.h5_shop-content-bottom {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 5px;
}
.h5_shop-content-bottom-link {
    color: rgba(27, 42, 82, 0.7);
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.48px;
    font-family: "Space Grotesk", sans-serif;
    display: inline-block;
    -webkit-transition: all 0.4s linear 0s;
    -moz-transition: all 0.4s linear 0s;
    -ms-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
}

.h5_shop-item:hover {
    box-shadow: 0px 10px 60px 0px rgba(26, 40, 75, 0.14);
}
.h5_shop-item:hover .h5_shop-img-icon {
    opacity: 1;
    visibility: visible;
}
.h5_shop-item:hover .h5_shop-img-icon a:first-child {
    margin-right: 0;
}
.h5_shop-item:hover .h5_shop-img-icon a:last-child {
    margin-left: 0;
}
.h5_shop-item:hover .h5_shop-content-price {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50px);
}
.h5_shop-item:hover .h5_shop-content-cart {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50px);
}

.h5_shop-pagination {
    margin-top: 2px;
}

.h5_shop-active.swiper .h5_shop-pagination span.swiper-pagination-bullet {
    margin: 0px 5px;
    border-radius: 50%;
    outline: 1px solid transparent;
    background-color: rgba(27, 42, 82, 0.14);
    width: 8px;
    height: 8px;
    cursor: pointer;
    opacity: 1;
}

.h5_shop-active.swiper
    .h5_shop-pagination
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--clr-theme-primary);
    width: 8px;
    height: 8px;
    opacity: 1;
    display: inline-block;
    outline: 1px solid var(--clr-theme-primary);
    outline-offset: 6px;
    margin: 0 12px;
}

/* ///////////////////////////////////////////////////////////
21. shop details
/////////////////////////////////////////////////////////// */
.shop_details-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
}
@media (max-width: 1199px) {
    .shop_details-wrap {
        gap: 40px;
    }
}
@media (max-width: 991px) {
    .shop_details-wrap {
        flex-wrap: wrap;
    }
}
.shop_details-img {
    width: calc(44% + 3px);
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
}
@media (max-width: 1399px) {
    .shop_details-img {
        width: 45%;
    }
}
@media (max-width: 991px) {
    .shop_details-img {
        width: 100%;
    }
    .shop_details-img img {
        width: 100%;
    }
}
.shop_details-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(27, 42, 82, 0.08);
    padding-bottom: 30px;
    margin-bottom: 15px;
}
@media (max-width: 480px) {
    .shop_details-head {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.shop_details-head-title {
    color: #1b2a52;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.9px;
    margin-bottom: 10px;
}
@media (max-width: 480px) {
    .shop_details-head-title {
        font-size: 26px;
    }
}
.shop_details-head-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.shop_details-head-rating span {
    color: #6a738b;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    display: block;
}
.shop_details-head-rating ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}
.shop_details-head-rating ul li {
    color: #f59e0b;
    font-size: 14px;
}
.shop_details-head-right p {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.6px;
}
@media (max-width: 991px) {
    .shop_details-content {
        width: 100%;
    }
}
.shop_details-content-text {
    color: #6a738b;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 15px;
}
.shop_details-action {
    border-top: 1px solid rgba(27, 42, 82, 0.08);
    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}
@media (max-width: 575px) {
    .shop_details-action {
        flex-wrap: wrap;
    }
}
.shop_details-action-cart {
    border-radius: 8px;
    background: #7d25ec;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    height: 42px;
    padding: 0 23px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s linear 0s;
}
.shop_details-action-cart:hover {
    color: #fff;
}
.shop_details-action-buy {
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    display: flex;
    align-items: center;
    height: 42px;
    padding: 0 45px;
    color: #1b2a52;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s linear 0s;
}
.shop_details-action-buy:hover {
    background: #7d25ec;
    color: #fff;
}
.shop_details-action-box {
    display: flex;
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.07);
}
.shop_details-action-box a {
    height: 42px;
    width: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
}
.shop_details-action-box input {
    width: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    height: 42px;
    text-align: center;
    flex-shrink: 0;
    border-left: 1px solid rgba(27, 42, 82, 0.07);
    border-right: 1px solid rgba(27, 42, 82, 0.07);
    color: #1b2a52;
    font-size: 16px;
    font-weight: 500;
}
.shop_details-action-2 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.shop_details-action-2 a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
}
.shop_details-action-2 a:hover {
    color: #7d25ec;
}
.shop_details-action-2 a i {
    font-size: 16px;
}
.shop_details-payment {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
}
.shop_details-meta {
    margin-bottom: 15px;
}
.shop_details-meta span {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.shop_details-meta span a {
    color: #6a738b;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}
.shop_details-order p {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0;
}

.shop_details-tab .nav {
    border-radius: 8px;
    overflow: hidden;
    border: none;
    background: #f2f8fd;
    width: max-content;
    padding: 0 10px;
    margin-bottom: 33px;
}
.shop_details-tab .nav .nav-item {
    border: none;
}
.shop_details-tab .nav .nav-item .nav-link {
    border: none;
    background: #f2f8fd;
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.6px;
}
@media (max-width: 480px) {
    .shop_details-tab .nav .nav-item .nav-link {
        font-size: 18px;
        font-weight: 600;
        padding: 0 20px;
    }
}
.shop_details-tab .nav .nav-item .nav-link.active {
    color: var(--clr-theme-primary);
}
.shop_details-description-text {
    color: #6a738b;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 20px;
}
.shop_details-description-list {
    list-style: none;
    padding-top: 3px;
    margin-bottom: 21px;
}
.shop_details-description-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6a738b;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 5px;
}
.shop_details-description-list li svg {
    width: 16px;
    flex-shrink: 0;
}
.shop_details-review-item {
    display: flex;
    border-radius: 10px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    background: #fff;
    padding: 25px 40px 20px 25px;
    gap: 25px;
    align-items: start;
}
@media (max-width: 480px) {
    .shop_details-review-item {
        flex-wrap: wrap;
    }
}
.shop_details-review-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
}
.shop_details-review-content-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
    gap: 10px;
}
@media (max-width: 480px) {
    .shop_details-review-content-top {
        flex-wrap: wrap;
        row-gap: 5px;
    }
}
.shop_details-review-content-top h6 {
    color: #1b2a52;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.48px;
    margin-bottom: 0;
}
.shop_details-review-content-top span {
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    display: block;
}
.shop_details-review-content-rating {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}
.shop_details-review-content-rating li {
    font-size: 14px;
    color: #f59e0b;
}
.shop_details-review-content p {
    color: #6a738b;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
}
.shop_details-review-right {
    margin-left: 20px;
}
@media (max-width: 1199px) {
    .shop_details-review-right {
        margin-left: 0;
    }
}
.shop_details-review-right-title {
    color: #1b2a52;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.54px;
    margin-bottom: 18px;
}
.shop_details-review-right-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.shop_details-review-right-rating ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.shop_details-review-right-rating ul li {
    font-size: 14px;
    color: #f59e0b;
}
.shop_details-review-right-rating span {
    color: #1b2a52;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.shop_details-form-item {
    position: relative;
    z-index: 1;
}
.shop_details-form-item i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #7f879e;
    font-size: 16px;
}
.shop_details-form-item input,
.shop_details-form-item textarea {
    width: 100%;
    height: 46px;
    line-height: 46px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    border-radius: 8px;
    padding: 0 20px;
    color: #7f879e;
    font-size: 14px;
    font-weight: 400;
}
.shop_details-form-item textarea {
    height: 140px;
}
.shop_details-form-item button {
    border-radius: 8px;
    background: #7d25ec;
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.5);
    margin-top: 10px;
}

.pagination-area {
    gap: 15px;
}
@media (max-width: 1199px) {
    .pagination-area {
        width: 370px;
        gap: 10px;
        margin-left: 0px;
    }
}
.pagination-area span {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(27, 42, 82, 0.7);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
}
@media (max-width: 1199px) {
    .pagination-area span {
        font-size: 13px;
    }
}
.pagination-area span:hover {
    color: var(--clr-theme-primary);
    border-color: var(--clr-theme-primary);
}
.pagination-area ul {
    display: flex;
    list-style: none;
    gap: 15px;
}
.pagination-area ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(27, 42, 82, 0.7);
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}
.pagination-area ul li a.active {
    background-color: var(--clr-theme-primary);
    color: #fff;
    border-color: transparent;
}
.pagination-area ul li a:hover {
    background-color: var(--clr-theme-primary);
    color: #fff;
    border-color: transparent;
}

.header-menu-bar-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid #ff7614;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ff7614;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-size: 19px;
    margin-right: 8px;
    /* font-weight: 1000; */
}

.header-menu-bar-icon:hover {
    background-color: transparent;
    color: transparent;
    border-color: transparent;
}

/* ///////////////////////////////////////////////////////////
23. breadcrumb
/////////////////////////////////////////////////////////// */
.breadcrumb-area {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .breadcrumb-area {
        padding: 20px 0;
    }
}

/* @media (max-width: 1199px) {
    .breadcrumb-area {
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }
} */
.breadcrumb-title {
    color: #1b2a52;
    text-align: right;
    font-size: 50px;
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -2px;
}

@media (max-width: 767px) {
    .breadcrumb-title {
        font-size: 35px;
    }
}

@media (max-width: 991px) {
    .breadcrumb-title {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .breadcrumb-title {
        font-size: 45px;
    }
}

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

@media (max-width: 575.98px) {
    .breadcrumb-list {
        margin-right: 0;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .breadcrumb-list {
        margin-right: 0;
        align-items: center;
    }
}

.breadcrumb-list a {
    color: rgba(27, 42, 82, 0.7);
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    position: relative;
    z-index: 1;
    padding-right: 13px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 480px) {
    .breadcrumb-list a {
        font-size: 16px;
    }
}
.breadcrumb-list a:hover {
    color: var(--clr-theme-primary);
}
.breadcrumb-list a::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background-color: #1b2a52;
    width: 3px;
    height: 3px;
    border-radius: 50%;
}
.breadcrumb-list span {
    color: var(--clr-theme-primary);
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
    display: block;
    text-align: end;
}
@media (max-width: 575.98px) {
    .breadcrumb-list span {
        font-size: 15px;
        line-height: 20px;
        text-align: end;
    }
}

.breadcrumb-shape-1 {
    position: absolute;
    left: 20%;
    top: 30%;
}
@media (max-width: 991px) {
    .breadcrumb-shape-1 {
        left: 12%;
    }
}
@media (max-width: 767px) {
    .breadcrumb-shape-1 {
        display: none;
    }
}
.breadcrumb-shape-2 {
    position: absolute;
    left: 31%;
    bottom: 32%;
}
@media (max-width: 991px) {
    .breadcrumb-shape-2 {
        left: 20%;
    }
}
@media (max-width: 767px) {
    .breadcrumb-shape-2 {
        display: none;
    }
}
.breadcrumb-shape-3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 24%;
}
@media (max-width: 991px) {
    .breadcrumb-shape-3 {
        display: none;
    }
}
.breadcrumb-shape-4 {
    position: absolute;
    right: -155px;
    top: 50px;
    animation: animation-circle 20s linear 0s infinite;
    z-index: -1;
}

@keyframes animation-circle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* ///////////////////////////////////////////////////////////
24. modal
/////////////////////////////////////////////////////////// */
/* 01. ========= search-modal ========== */
#search-modal {
    background: rgba(0, 0, 0, 0.65);
}
#search-modal a span {
    color: #fff;
    top: 50px;
    right: 50px;
    position: absolute;
    font-size: 50px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
#search-modal a span:hover {
    color: var(--clr-theme-primary);
}
#search-modal .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
    outline: 0;
}
#search-modal .modal-dialog .modal-content {
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}
#search-modal .modal-dialog .modal-content form {
    max-width: 555px;
    position: relative;
}
#search-modal .modal-dialog .modal-content form input {
    width: 100%;
    font-size: 36px;
    border: none;
    border-bottom: 3px solid rgba(255, 255, 255, 0.938);
    background: 0 0;
    color: #fff;
    padding-bottom: 12px;
    padding-right: 40px;
    outline: none;
}
#search-modal
    .modal-dialog
    .modal-content
    form
    input::-webkit-input-placeholder {
    font-size: 35px;
    color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form input:-ms-input-placeholder {
    font-size: 35px;
    color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form input::-ms-input-placeholder {
    font-size: 35px;
    color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form input::placeholder {
    font-size: 35px;
    color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form button {
    position: absolute;
    right: 0;
    margin-bottom: 3px;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.938);
    background: 0 0;
    border: none;
    cursor: pointer;
    top: 11px;
}

/* ///////////////////////////////////////////////////////////
25. team
/////////////////////////////////////////////////////////// */
.inner_team-bottom-area {
    padding-top: 100px;
    padding-bottom: 50px;
}

.inner_team-area {
    position: relative;
    z-index: 1;
}
.inner_team-img {
    position: relative;
    z-index: 1;
    text-align: center;
}
.inner_team-img-shape {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}
.inner_team-content {
    margin-right: 80px;
    margin-left: 20px;
    margin-top: 45px;
}
@media (max-width: 1199px) {
    .inner_team-content {
        margin-top: 0;
        margin-left: 0;
        margin-right: 40px;
    }
}
@media (max-width: 991px) {
    .inner_team-content {
        margin-right: 0;
    }
}
.inner_team-content-title {
    color: #1b2a52;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.76px;
    margin-bottom: 25px;
}
@media (max-width: 480px) {
    .inner_team-content-title {
        font-size: 35px;
    }
}
.inner_team-content-subtitle {
    color: #1b2a52;
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
}
.inner_team-content p {
    color: #7f879e;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 13px;
}
.inner_team-signature {
    margin-top: 30px;
}
.inner_team-shape-1 {
    position: absolute;
    left: 18%;
    top: 24%;
}
@media (max-width: 575px) {
    .inner_team-shape-1 {
        display: none;
    }
}
.inner_team-shape-2 {
    position: absolute;
    right: 27%;
    bottom: 15%;
}
@media (max-width: 575px) {
    .inner_team-shape-2 {
        display: none;
    }
}

.inner_team_member-area {
    background: linear-gradient(
        180deg,
        #f8faff 0%,
        rgba(248, 250, 255, 0) 100%
    );
}
.inner_team_member-img {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}
.inner_team_member-img img {
    width: 100%;
}
.inner_team_member-social {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -65px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear 0s;
    -moz-transition: all 0.4s linear 0s;
    -ms-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
}
.inner_team_member-social ul {
    display: flex;
    gap: 10px;
    list-style: none;
    justify-content: center;
}
.inner_team_member-social ul li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-theme-primary);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_team_member-info {
    text-align: center;
}
.inner_team_member-info-title {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 5px;
}
.inner_team_member-info-title:hover a {
    color: var(--clr-theme-primary);
}
.inner_team_member-info span {
    color: #7f879e;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    display: block;
}

.inner_team_member-item:hover .inner_team_member-social {
    bottom: 25px;
    opacity: 1;
    visibility: visible;
}

/* ///////////////////////////////////////////////////////////
26. portfolio
/////////////////////////////////////////////////////////// */
.inner_portfolio-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 6px 0px rgba(27, 42, 82, 0.07);
    overflow: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.inner_portfolio-item:hover {
    box-shadow: 0px 16px 60px 0px rgba(26, 40, 75, 0.1);
}
.inner_portfolio-content {
    padding: 35px 30px 35px;
}
.inner_portfolio-content-tag {
    color: #7d25ec;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 7px;
}
.inner_portfolio-content-title {
    color: #1b2a52;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.72px;
    margin-bottom: 17px;
}
.inner_portfolio-content-title:hover a {
    color: var(--clr-theme-primary);
}
.inner_portfolio-content p {
    color: #7f879e;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 21px;
}
.inner_portfolio-content-btn {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.inner_portfolio-content-btn i {
    margin-top: 2px;
    font-weight: 500;
}
.inner_portfolio-content-btn:hover {
    color: var(--clr-theme-primary);
}

/* ///////////////////////////////////////////////////////////
27. wishlist
/////////////////////////////////////////////////////////// */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wishlist-table thead tr {
    border: none;
}
.wishlist-table thead tr th {
    vertical-align: middle;
    padding: 17px 0;
    border: none;
    background: #f8faff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.54px;
}
.wishlist-table thead tr th.first {
    padding-left: 30px;
    border-radius: 8px 0 0 8px;
    padding-left: 65px;
}
@media (max-width: 991px) {
    .wishlist-table thead tr th.first {
        padding-left: 50px;
    }
}
.wishlist-table thead tr th.end {
    border-radius: 0 8px 8px 0;
}
.wishlist-table tbody tr {
    border-bottom: 1px solid rgba(27, 42, 82, 0.07);
}
.wishlist-table tbody tr td {
    vertical-align: middle;
    padding: 20px 0;
    border: none;
    min-width: 200px;
}
.wishlist-table tbody tr td h6 {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.45px;
    margin-bottom: 0;
}
.wishlist-table tbody tr td.product {
    display: flex;
    align-items: center;
    gap: 35px;
    padding-left: 20px;
    min-width: 380px;
}
@media (max-width: 991px) {
    .wishlist-table tbody tr td.product {
        gap: 20px;
    }
}
.wishlist-table tbody tr td.product a {
    color: rgba(27, 42, 82, 0.2);
    display: block;
}
.wishlist-table tbody tr td.product a i {
    font-size: 22px;
}
.wishlist-table tbody tr td.product a:hover {
    color: var(--clr-theme-primary);
}
.wishlist-table tbody tr td.product .product-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}
.wishlist-table tbody tr td.product .product-inner img {
    border-radius: 8px;
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.wishlist-coupon {
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 480px) {
    .wishlist-coupon {
        flex-wrap: wrap;
    }
}
.wishlist-coupon input {
    border-radius: 6px;
    border: 1.5px solid rgba(8, 5, 33, 0.1);
    background: #fff;
    width: 420px;
    height: 46px;
    display: flex;
    align-items: center;
    padding: 20px;
    color: #7f879e;
    font-size: 14px;
}
@media (max-width: 1199px) {
    .wishlist-coupon input {
        width: 320px;
    }
}
@media (max-width: 991px) {
    .wishlist-coupon input {
        width: 420px;
    }
}
@media (max-width: 767px) {
    .wishlist-coupon input {
        width: 100%;
    }
}
.wishlist-coupon button {
    border-radius: 10px;
    background: #7d25ec;
    height: 46px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wishlist-cart {
    display: flex;
    justify-content: end;
    gap: 10px;
    align-items: center;
}
@media (max-width: 1199px) {
    .wishlist-cart {
        justify-content: start;
    }
}
@media (max-width: 480px) {
    .wishlist-cart {
        flex-wrap: wrap;
    }
}
.wishlist-cart a {
    border-radius: 10px;
    background: #7d25ec;
    height: 46px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wishlist-cart a:last-child {
    padding: 0 32px;
}

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

28. account
/////////////////////////////////////////////////////////// */
.login-area {
    position: relative;
    z-index: 1;
}
.login-content {
    border-radius: 14px;
    background: #fff;
    box-shadow: 0px 1px 6px 0.5px rgba(27, 42, 82, 0.14);
    padding: 70px 35px 70px;
}
@media (max-width: 767px) {
    .login-content {
        padding: 70px 30px 70px;
    }
}
.login-content-subtitle {
    color: #7d25ec;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
    line-height: 20px;
}
.login-content-title {
    color: #1b2a52;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.9px;
    margin-bottom: 40px;
}
.login-content-link {
    text-align: center;
    margin-bottom: 48px;
}
.login-content-link p {
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 0;
}
.login-content-link p a {
    color: #7d25ec;
}
.login-content-account {
    display: flex;
    gap: 15px;
    padding-top: 55px;
}
@media (max-width: 575px) {
    .login-content-account {
        flex-wrap: wrap;
    }
}
.login-content-account-item {
    width: 100%;
    border-radius: 8px;
    background: #f8faff;
    box-shadow: 0px 1px 1px 0px rgba(27, 42, 82, 0.14);
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-content-account-item span {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}
.login-content-account-item a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.login-form-item {
    position: relative;
    z-index: 1;
}
.login-form-item i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #7f879e;
    font-size: 16px;
}
.login-form-item input {
    width: 100%;
    border: 1px solid rgba(27, 42, 82, 0.07);
    border-radius: 8px;
    height: 46px;
    line-height: 46px;
    padding: 0 20px;
    color: #7f879e;
    font-size: 14px;
    font-weight: 400;
    padding-right: 50px;
}
.login-form-item button {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: #7d25ec;
    height: 46px;
    line-height: 46px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.login-break {
    position: relative;
    z-index: 1;
}
.login-break::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(4, 0, 23, 0.14);
}
.login-break span {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 5px 11px;
    color: rgba(4, 0, 23, 0.7);
}
.login-condition {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
}
@media (max-width: 480px) {
    .login-condition {
        flex-wrap: wrap;
    }
}
.login-condition a {
    color: #7d25ec;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    display: block;
}
.login-condition .condition-checkbox {
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: inline-block;
    user-select: none;
    padding-left: 26px;
}
.login-condition .condition-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.login-condition .condition-checkbox input:checked ~ .checkmark {
    background-color: transparent;
}
.login-condition .condition-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.login-condition .condition-checkbox .checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    border-radius: 4px;
    border: 1px solid rgba(27, 42, 82, 0.7);
    background-color: transparent;
}
.login-condition .condition-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}
.login-condition .condition-checkbox .checkmark:after {
    left: 4.5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #1b2a52;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.login-shape-1 {
    position: absolute;
    left: 14%;
    top: 22%;
}

.login-shape-2 {
    position: absolute;
    left: 47%;
    transform: translateX(-50%);
    bottom: 37%;
}

.login-shape-3 {
    position: absolute;
    right: 9%;
    bottom: 38%;
}

/* ///////////////////////////////////////////////////////////
29. contact
/////////////////////////////////////////////////////////// */
.contact-item {
    border-radius: 10px;
    background: transparent;
    /* box-shadow: 0px 6px 70px 0px rgba(27, 42, 82, 0.06); */
    /* padding: 40px 30px 35px; */
    /* text-align: center; */
}
.contact-icon {
    width: 1px;
    height: 1px;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
    color: #fa901f;
}
.contact-content-title {
    color: #1b2a52;
    text-align: left;
    font-size: 15px;
    margin-left: 65px;
    margin-bottom: 0px;
    margin-top: 0px;
    letter-spacing: 1px;
}
.contact-content p {
    color: #7f879e;
    text-align: left;
    font-size: 13px;
    margin-left: 64px;
}
@media (max-width: 575px) {
    .contact-content p {
        width: 70%;
    }
}

.contact-content a {
    color: #7f879e;
    font-size: 15px;
    letter-spacing: 1px;
}
.contact-content a:not(:last-child) {
    margin-bottom: 0px;
}

.contact-form {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 6px 70px 0px rgba(27, 42, 82, 0.06);
    padding: 44px 40px 50px;
}
@media (max-width: 575px) {
    .contact-form {
        padding: 44px 30px 50px;
    }
}
.contact-form-title {
    color: #1b2a52;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.9px;
    margin-bottom: 35px;
}
@media (max-width: 480px) {
    .contact-form-title {
        font-size: 26px;
    }
}
.contact-form-item {
    position: relative;
    z-index: auto;
}
.contact-form-item i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #7f879e;
    font-size: 16px;
}
.contact-form-item input,
.contact-form-item textarea {
    width: 100%;
    border: 1px solid rgba(27, 42, 82, 0.07);
    border-radius: 8px;
    height: 46px;
    line-height: 46px;
    padding: 0 20px;
    padding-right: 50px;
    color: #7f879e;
    font-size: 14px;
}
.contact-form-item textarea {
    height: 155px;
    padding-right: 20px;
}
.contact-form-item button {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: #f3b353;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.contact-form-item button:hover {
    background-color: #c79852;
}

.contact-bottom-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-right: 30px;
}
@media (max-width: 1199px) {
    .contact-bottom-left {
        margin-right: 0;
    }
}
.contact-map {
    height: 100%;
    width: 100%;
}
.contact-map iframe {
    min-height: 300px;
    width: 100%;
    height: 100%;
    border-radius: 14px;
}

.subject-option.nice-select {
    background: transparent;
    z-index: 99;
    color: #7f879e;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    border: 1px solid rgba(27, 42, 82, 0.07);
    border-radius: 8px;
    height: 46px;
    line-height: 46px;
    padding: 0 20px;
    padding-right: 50px;
}
.subject-option.nice-select ul {
    background-color: #fff;
    width: 100%;
    z-index: 99;
    border-radius: 8px;
    border: none;
    margin-top: 5px;
    box-shadow: 0px 6px 50px 0px rgba(27, 42, 82, 0.2);
}
.subject-option.nice-select ul li {
    color: #7f879e;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    padding: 0 20px;
    height: 46px;
    line-height: 46px;
}
.subject-option.nice-select .option.selected {
    font-weight: 500;
}
.subject-option.nice-select::after {
    display: none;
}
.subject-option.nice-select::before {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
    margin-top: 1px;
}
.subject-option.nice-select.open::before {
    content: "\f106";
}

/* ///////////////////////////////////////////////////////////
30. checkout
/////////////////////////////////////////////////////////// */
@media (max-width: 1399px) {
    .checkout-left {
        margin-right: 20px;
    }
}
@media (max-width: 1199px) {
    .checkout-left {
        margin-right: 0;
    }
}
.checkout-title {
    color: #1b2a52;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -1.76px;
    margin-bottom: 20px;
}
@media (max-width: 1199px) {
    .checkout-title {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .checkout-title {
        font-size: 34px;
    }
}
@media (max-width: 480px) {
    .checkout-title {
        font-size: 32px;
    }
}
.checkout-top {
    display: flex;
    justify-content: center;
}
@media (max-width: 767px) {
    .checkout-top {
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 30px;
    }
}
.checkout-top-item {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.checkout-top-item:not(:last-child) {
    padding-right: 84px;
    margin-right: 70px;
}
.checkout-top-item:not(:last-child)::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    color: rgba(106, 115, 139, 0.7);
}
@media (max-width: 991px) {
    .checkout-top-item:not(:last-child) {
        margin-right: 30px;
        padding-right: 44px;
    }
}
@media (max-width: 767px) {
    .checkout-top-item:not(:last-child) {
        padding-right: 0;
        margin-right: 0;
    }
    .checkout-top-item:not(:last-child)::after {
        display: none;
    }
}
.checkout-top-item span {
    border-radius: 8px;
    background: #7d25ec;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.checkout-top-item p {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.45px;
    margin-bottom: 0;
}
.checkout-top-item.last-item span {
    background: #f2f8fd;
    color: #6a738b;
}
.checkout-top-item.last-item p {
    color: #6a738b;
}
.checkout-form-item {
    position: relative;
    z-index: 1;
}
.checkout-form-item i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #7f879e;
    font-size: 16px;
}
.checkout-form-item input,
.checkout-form-item textarea {
    width: 100%;
    border: 1px solid rgba(27, 42, 82, 0.07);
    border-radius: 8px;
    height: 46px;
    line-height: 46px;
    padding: 0 20px;
    padding-right: 50px;
    color: #7f879e;
    font-size: 14px;
}
.checkout-form-item textarea {
    height: 155px;
    padding-right: 20px;
}
.checkout-form-item button {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: #7d25ec;
    box-shadow: 0px 2px 10px 0px rgba(27, 42, 82, 0.5);
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.checkout-order {
    border-radius: 10px;
    background: #f8faff;
    padding: 26px 30px 22px;
}
.checkout-order h5 {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.6px;
    margin-bottom: 1px;
}
.checkout-order ul {
    list-style: none;
}
.checkout-order ul li {
    color: rgba(27, 42, 82, 0.7);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(27, 42, 82, 0.07);
    gap: 20px;
    padding: 14px 0 6px;
    line-height: 24px;
}
.checkout-order ul li:last-child {
    border-bottom: 0;
    color: rgb(27, 42, 82);
}

.checkout-payment {
    border-radius: 10px;
    background: #f8faff;
    padding: 35px 30px 35px;
}
.checkout-payment-item {
    margin-bottom: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(27, 42, 82, 0.07);
}
.checkout-payment-item p {
    color: #7f879e;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 4px;
    margin-bottom: 9px;
}
.checkout-payment-text p {
    color: #7f879e;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 35px;
}
.checkout-payment-text p a {
    color: #7d25ec;
    text-decoration: underline;
    display: inline-block;
}
.checkout-payment-btn {
    border-radius: 10px;
    background: #7d25ec;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.checkout-payment-item .condition-checkbox {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: inline-block;
    user-select: none;
    padding-left: 26px;
}
.checkout-payment-item .condition-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkout-payment-item .condition-checkbox input:checked ~ .checkmark {
    background-color: transparent;
}
.checkout-payment-item .condition-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.checkout-payment-item .condition-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 4px;
    border: 1px solid #7f879e;
    background-color: transparent;
}
.checkout-payment-item .condition-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}
.checkout-payment-item .condition-checkbox .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: #1b2a52;
}

/* ///////////////////////////////////////////////////////////
31. cart
/////////////////////////////////////////////////////////// */
.cart-table thead tr {
    border: none;
}
.cart-table thead tr th {
    vertical-align: middle;
    padding: 17px 0;
    border: none;
    background: #f8faff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.54px;
}
.cart-table thead tr th.first {
    padding-left: 30px;
    border-radius: 8px 0 0 8px;
}
.cart-table thead tr th.end {
    border-radius: 0 8px 8px 0;
}
.cart-table tbody tr {
    border-bottom: 1px solid rgba(27, 42, 82, 0.07);
}
.cart-table tbody tr td {
    vertical-align: middle;
    padding: 20px 0;
    border: none;
    min-width: 160px;
}
.cart-table tbody tr td h6 {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.45px;
    margin-bottom: 0;
}
.cart-table tbody tr td h6 a:hover {
    color: var(--clr-theme-primary);
}
.cart-table tbody tr td.product {
    padding-left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 400px;
}
.cart-table tbody tr td.product img {
    border-radius: 8px;
    width: 70px;
    height: 70px;
    object-fit: cover;
}
.cart-table tbody tr td a.close {
    color: rgba(27, 42, 82, 0.2);
    color: rgb(106, 115, 139);
    display: block;
}
.cart-table tbody tr td a.close i {
    font-size: 22px;
}

.cart-action-box {
    display: flex;
    border-radius: 8px;
    border: 1px solid rgba(27, 42, 82, 0.1);
    gap: 0;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    width: 100%;
    padding: 0 15px;
}
.cart-action-box a {
    display: block;
    color: #1b2a52;
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
}
.cart-action-box input {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    width: 35px;
    color: #1b2a52;
    font-size: 16px;
    font-weight: 500;
}
.cart-coupon {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.cart-coupon input {
    border-radius: 6px;
    border: 1.5px solid rgba(8, 5, 33, 0.1);
    background: #fff;
    width: 420px;
    height: 46px;
    display: flex;
    align-items: center;
    padding: 20px;
    color: #7f879e;
    font-size: 14px;
    flex: 1;
}
.cart-coupon button {
    border-radius: 10px;
    background: #7d25ec;
    height: 46px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-coupon a {
    border-radius: 10px;
    background: #1b2a52;
    height: 46px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-order {
    border-radius: 10px;
    background: #f8faff;
    padding: 26px 30px 35px;
}
.cart-order h5 {
    color: #1b2a52;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.6px;
    margin-bottom: 1px;
}
.cart-order ul {
    list-style: none;
}
.cart-order ul li {
    color: rgba(27, 42, 82, 0.7);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(27, 42, 82, 0.07);
    gap: 20px;
    padding: 14px 0 6px;
    line-height: 24px;
}
.cart-order ul li:last-child {
    border-bottom: 0;
    color: rgb(27, 42, 82);
}
.cart-order-btn {
    border-radius: 10px;
    background: #7d25ec;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.cart-order-btn:hover {
    color: #fff;
}

.disable-cart-btn {
    border-radius: 10px;
    background: #7d25ec;
    height: 46px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    padding: 0 45px;
    display: inline-block;
    line-height: 44px;
    opacity: 0.5;
    cursor: not-allowed;
}
.disable-cart-btn:hover {
    color: #fff;
}

/* ///////////////////////////////////////////////////////////
32. 404
/////////////////////////////////////////////////////////// */
.error-content-title {
    color: #1b2a52;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.76px;
    margin-bottom: 8px;
}
@media (max-width: 767px) {
    .error-content-title {
        font-size: 40px;
    }
}
@media (max-width: 480px) {
    .error-content-title {
        font-size: 35px;
    }
}
.error-content p {
    color: rgba(27, 42, 82, 0.7);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 33px;
}
@media (max-width: 480px) {
    .error-content p br {
        display: none;
    }
}

/* ///////////////////////////////////////////////////////////
33. footer
/////////////////////////////////////////////////////////// */
.footer-area {
    background: var(--clr-theme-secondary);
}
/* @media (max-width: 1199px) {
    .footer-area {
        width: 610px;
        height: 777px;
    }
} */
.footer-area1 {
    background: #4a4d56;
}
@media (max-width: 1199px) {
    .footer-area1 {
        width: 99%;
        height: 100%;
    }
}
.footer1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

@media (min-width: 991px) {
    .footer1 {
        display: flex;
        align-items: center;
        flex-direction: row;
        margin-bottom: 20px;
        justify-content: start;
    }
}

.footer-top {
    padding: 50px 0;
}

.footer-logo {
    display: flex;
    width: 105px;
    height: 105px;
    align-items: center;
}
.footer-nama {
    font-size: 21px;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 0px;
    color: sandybrown;
}
@media (max-width: 991.98px) {
    .footer-nama {
        margin: 0;
    }
}
.footer-newsletter p {
    color: azure;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    margin: 0;
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    /* CSS untuk perangkat besar */
    .footer-newsletter p {
        color: azure;
        font-size: 15px;
        text-align: start;
        font-weight: 500;
        margin: 0;
    }
}

.footer-newsletter form {
    position: relative;
    z-index: 1;
    position: relative;
    z-index: 1;
}
.footer-newsletter form::before {
    position: absolute;
    left: 0;
    top: 8px;
    content: url("../../assets/images/footer/envelope.svg");
    width: 16px;
    height: auto;
}
.footer-newsletter form input {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    padding: 8px 24px 15px 24px;
}
.footer-newsletter form input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}
.footer-newsletter form input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}
.footer-newsletter form input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}
.footer-newsletter form input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}
.footer-newsletter form button {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    padding: 8px 0 15px;
    color: #fff;
}
.footer-newsletter-condition {
    margin-top: 22px;
}
.footer-newsletter-condition .condition-checkbox {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: block;
    user-select: none;
    padding-left: 26px;
}
.footer-newsletter-condition .condition-checkbox a {
    color: #fff;
    text-decoration: underline;
}
.footer-newsletter-condition .condition-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.footer-newsletter-condition .condition-checkbox input:checked ~ .checkmark {
    background-color: transparent;
}
.footer-newsletter-condition
    .condition-checkbox
    input:checked
    ~ .checkmark:after {
    display: block;
}
.footer-newsletter-condition .condition-checkbox .checkmark {
    position: absolute;
    top: -2px;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background-color: transparent;
}
.footer-newsletter-condition .condition-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}
.footer-newsletter-condition .condition-checkbox .checkmark:after {
    left: 4.5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.footer-right-title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.2px;
    margin-bottom: 60px;
}

.footer-widget-wrap {
    display: flex;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .footer-widget-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
}

@media (min-width: 767px) {
    .footer-widget-wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        justify-content: space-between;
    }
}

@media (min-width: 991px) {
    .footer-widget-wrap {
        text-align: start;
    }
}

.footer-widget h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
}
.footer-widget ul {
    list-style: none;
}
.footer-widget ul li {
    margin-bottom: 15px;
    color: azure;
}
.footer-widget ul li:last-child {
    margin-bottom: 0;
}
.footer-widget ul li a {
    color: azure;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    display: block;
}
.footer-widget ul li a:hover {
    color: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 19px 0 20px;
}
@media (max-width: 767px) {
    .footer-bottom-copyright {
        margin-bottom: 13px;
    }
}
.footer-bottom-copyright p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

@media (max-width: 767px) {
    .footer-bottom-copyright p {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer-bottom-copyright p {
        text-align: center;
    }
}
.footer-bottom-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: end;
}
.footer-bottom-menu ul li {
    position: relative;
    z-index: 1;
    margin-right: 10px;
    padding-right: 11px;
}
.footer-bottom-menu ul li::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 2px;
    height: 16px;
    background: #fff;
}
.footer-bottom-menu ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.footer-bottom-menu ul li:last-child::after {
    display: none;
}
.footer-bottom-menu ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    display: block;
}
.footer-bottom-menu ul li a:hover {
    color: var(--clr-theme-primary);
}

.h2_footer-top {
    position: relative;
    z-index: 1;
}
.h2_footer-top-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.09;
    letter-spacing: -2.2px;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .h2_footer-top-title {
        font-size: 45px;
    }
}
@media (max-width: 480px) {
    .h2_footer-top-title {
        font-size: 35px;
    }
}
.h2_footer-top-content {
    text-align: center;
}
.h2_footer-top-content form {
    position: relative;
    z-index: 1;
    max-width: 515px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.h2_footer-top-content form input {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.07);
    border: none;
    height: 56px;
    padding: 0 20px;
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    padding-right: 158px;
}
@media (max-width: 480px) {
    .h2_footer-top-content form input {
        padding-right: 132px;
    }
}
.h2_footer-top-content form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
    background: linear-gradient(180deg, #9425ec 0%, #7d25ec 100%);
    height: 44px;
    border: none;
    padding: 0 32px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
@media (max-width: 480px) {
    .h2_footer-top-content form button {
        padding: 0 20px;
    }
}
.h2_footer-top-condition .condition-checkbox {
    color: #6a738b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: inline-block;
    user-select: none;
    padding-left: 26px;
}
.h2_footer-top-condition .condition-checkbox a {
    color: #1b2a52;
    text-decoration: underline;
}
.h2_footer-top-condition .condition-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.h2_footer-top-condition .condition-checkbox input:checked ~ .checkmark {
    background-color: transparent;
}
.h2_footer-top-condition .condition-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.h2_footer-top-condition .condition-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 4px;
    border: 1px solid rgba(27, 42, 82, 0.7);
    background-color: transparent;
}
.h2_footer-top-condition .condition-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}
.h2_footer-top-condition .condition-checkbox .checkmark:after {
    left: 4.5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #1b2a52;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}
.h2_footer-shape-1 {
    position: absolute;
    left: 10%;
    top: 16%;
}
.h2_footer-shape-2 {
    position: absolute;
    left: 21%;
    bottom: 27%;
}
@media (max-width: 767px) {
    .h2_footer-shape-2 {
        left: 15%;
        bottom: 20%;
    }
}
.h2_footer-shape-3 {
    position: absolute;
    top: 27%;
    right: calc(10% + 13px);
}
@media (max-width: 767px) {
    .h2_footer-shape-3 {
        top: 18%;
        right: 5%;
    }
}
.h2_footer-shape-4 {
    position: absolute;
    right: 27%;
    bottom: 19%;
}

.h2_footer-bottom {
    background-color: #1b2a52;
    padding: 20px 0;
}
.h2_footer-bottom-copyright p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
}
.h2_footer-bottom-social ul {
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: end;
    gap: 10px;
}
.h2_footer-bottom-social ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
}
.h2_footer-bottom-social ul li a:hover {
    background-color: var(--clr-theme-primary);
    border-color: transparent;
}
.h2_footer-bottom-logo {
    width: 135px;
}

.h3_footer-area {
    background: #f2f8fd;
}
.h3_footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(27, 42, 82, 0.07);
    margin-bottom: 25px;
}
@media (max-width: 575px) {
    .h3_footer-top {
        padding-bottom: 10px;
    }
}
.h3_footer-logo {
    width: 135px;
}
.h3_footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    list-style: none;
}
.h3_footer-menu ul li a {
    color: rgba(27, 42, 82, 0.7);
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}
.h3_footer-menu ul li a:hover {
    color: #1b2a52;
    font-weight: 500;
}
.h3_footer-social ul {
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: end;
    gap: 10px;
}
@media (max-width: 991px) {
    .h3_footer-social ul {
        justify-content: center;
        padding-top: 10px;
    }
}
@media (max-width: 767px) {
    .h3_footer-social ul {
        justify-content: end;
        padding-top: 0;
    }
}
.h3_footer-social ul li a {
    color: #1b2a52;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    display: grid;
    place-items: center;
}
.h3_footer-social ul li a:hover {
    background-color: var(--clr-theme-primary);
    border-color: transparent;
    color: #fff;
}
.h3_footer-bottom-copyright {
    text-align: center;
}
.h3_footer-bottom-copyright p {
    margin-bottom: 0;
    color: rgba(27, 42, 82, 0.7);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.h4_footer-area {
    background: linear-gradient(90deg, #f6c125 0%, #f64438 50%, #f6c125 100%);
}
.h4_footer-top {
    border-radius: 0px 0px 30px 30px;
    background: #f0f2f8;
}
.h4_footer-logo {
    width: 135px;
    margin-bottom: 15px;
}
.h4_footer-widget-text {
    color: #7f879e;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 23px;
}
.h4_footer-widget-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.h4_footer-widget-social a {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 4px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f879e;
    font-size: 14px;
}
.h4_footer-widget-social a:hover {
    background: #7d25ec;
    color: #fff;
    border-color: transparent;
}
.h4_footer-widget-title {
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.h4_footer-widget ul {
    list-style: none;
}
.h4_footer-widget ul li:not(:last-child) {
    margin-bottom: 15px;
}
.h4_footer-widget ul li a {
    color: #7f879e;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    display: block;
}
.h4_footer-widget ul li a:hover {
    color: var(--clr-theme-primary);
}
.h4_footer-widget-address p {
    color: #55585b;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 22px;
}
.h4_footer-widget-address a {
    color: #55585b;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.h4_footer-widget-address a svg {
    color: #010f1c;
    margin-top: 3px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h4_footer-widget-address a:hover {
    color: var(--clr-theme-primary);
}
.h4_footer-widget-address a:hover svg {
    color: var(--clr-theme-primary);
}
.h4_footer-bottom {
    padding: 9px 0 10px;
}
@media (max-width: 767px) {
    .h4_footer-bottom-copyright {
        margin-bottom: 13px;
    }
}
.h4_footer-bottom-copyright p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}
.h4_footer-bottom-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: end;
}
.h4_footer-bottom-menu ul li {
    position: relative;
    z-index: 1;
    margin-right: 10px;
    padding-right: 11px;
}
.h4_footer-bottom-menu ul li::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 2px;
    height: 16px;
    background: #fff;
}
.h4_footer-bottom-menu ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.h4_footer-bottom-menu ul li:last-child::after {
    display: none;
}
.h4_footer-bottom-menu ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    display: block;
}
.h4_footer-bottom-menu ul li a:hover {
    color: var(--clr-theme-primary);
}

.h5_footer-area {
    background: #1b2a52;
}
.h5_footer-top {
    border-radius: 0px 0px 30px 30px;
    background: #f2f8fd;
}
.h5_footer-logo {
    width: 70px;
    margin-bottom: 15px;
}
.h5_footer-widget-text {
    color: #7f879e;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 23px;
}
@media (max-width: 1199px) {
    .h5_footer-widget-text br {
        display: none;
    }
}
.h5_footer-widget-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* CSS untuk perangkat besar */
    .h5_footer-widget-social {
        justify-content: start;
    }
}

@media (min-width: 1200px) {
    .h5_footer-widget-social {
        justify-content: start;
    }
}

.h5_footer-widget-social a {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 4px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-theme-primary);
    font-size: 14px;
}
.h5_footer-widget-social a:hover {
    background: var(--clr-theme-primary);
    color: #fff;
    border-color: transparent;
}
.h5_footer-widget-title {
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.h5_footer-widget ul {
    list-style: none;
}
.h5_footer-widget ul li:not(:last-child) {
    margin-bottom: 15px;
}
.h5_footer-widget ul li a {
    color: #7f879e;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    display: block;
}
.h5_footer-widget ul li a:hover {
    color: var(--clr-theme-primary);
}
.h5_footer-widget form {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 20px;
}
.h5_footer-widget form input {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.07);
    border: none;
    height: 56px;
    padding: 0 20px;
    color: #6a738b;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    padding-right: 158px;
}
@media (max-width: 480px) {
    .h5_footer-widget form input {
        padding-right: 132px;
    }
}
.h5_footer-widget form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
    background: linear-gradient(180deg, #9425ec 0%, #7d25ec 100%);
    height: 44px;
    border: none;
    padding: 0 32px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.h5_footer-widget form button:hover {
    background: linear-gradient(180deg, #e20de6 0%, #e825ec 100%);
}
@media (max-width: 480px) {
    .h5_footer-widget form button {
        padding: 0 20px;
    }
}
.h5_footer-bottom {
    padding: 9px 0 10px;
}
@media (max-width: 767px) {
    .h5_footer-bottom-copyright {
        margin-bottom: 13px;
    }
}
.h5_footer-bottom-copyright p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}
.h5_footer-bottom-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: end;
}
.h5_footer-bottom-menu ul li {
    position: relative;
    z-index: 1;
    margin-right: 10px;
    padding-right: 11px;
}
.h5_footer-bottom-menu ul li::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 2px;
    height: 16px;
    background: #fff;
}
.h5_footer-bottom-menu ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.h5_footer-bottom-menu ul li:last-child::after {
    display: none;
}
.h5_footer-bottom-menu ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    display: block;
}
.h5_footer-bottom-menu ul li a:hover {
    color: var(--clr-theme-primary);
}

/* Container carousel */
.slider_container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Menyembunyikan bagian gambar yang keluar dari kontainer */
}

/* Mengatur carousel-inner untuk menyesuaikan layar penuh (100vh) */
.carousel-inner {
    position: relative;
    width: 100%;
    height: 85vh; /* Membuat carousel mengisi seluruh tinggi layar */
}

/* Gambar pada carousel akan disesuaikan dengan baik */
.carousel-item img {
    width: 100%; /* Gambar akan mengambil lebar penuh dari container */
    height: 85vh; /* Gambar akan mengisi seluruh tinggi dari kontainer */
}

/* Pastikan indikator carousel berada dengan baik */
.carousel-indicators button {
    background-color: rgba(0, 0, 0, 0.5); /* Warna latar belakang indikator */
}

.carousel-indicators .active {
    background-color: rgba(
        0,
        0,
        0,
        0.8
    ); /* Warna latar belakang indikator aktif */
}

/* Tampilan kontrol carousel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Warna kontrol carousel */
}

/* @media (min-width: 1400px) { 
    .carousel-inner {
        height: 50%; 
        width: 100%;
    }

    .carousel-item img {
        object-fit: cover;
        height: 50%;
        width: 100%;
    }
 } */

@media (max-width: 992px) {
    .carousel-inner {
        height: 100%; /* Menyesuaikan tinggi lebih kecil untuk layar kecil */
        width: 100%;
    }

    .carousel-item img {
        object-fit: cover; /* Tetap menjaga gambar agar memenuhi kontainer */
        height: 100%;
        width: 100%;
    }
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .carousel-inner {
        height: 100%; /* Menyesuaikan tinggi lebih kecil untuk layar kecil */

        width: 100%;
    }

    .carousel-item img {
        object-fit: cover; /* Tetap menjaga gambar agar memenuhi kontainer */
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .carousel-inner {
        height: 100%; /* Menyesuaikan tinggi lebih kecil pada layar ponsel */
        width: 100%;
    }

    .carousel-item img {
        object-fit: cover; /* Tetap menjaga gambar agar memenuhi kontainer */
        height: 100%;
        width: 100%;
    }
}
.navigation-manual {
    position: absolute;
    display: flex;
    width: 1349px;
    justify-content: center;
    margin-top: 20px;
}
@media (max-width: 1199px) {
    .navigation-manual {
        width: 100%;
        margin-top: -115px;
        justify-content: center;
        position: absolute;
        display: flex;
    }
}

.manual-btn {
    border: 1px solid #fa7f28;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}
@media (max-width: 1199px) {
    .manual-btn {
        border: 1px solid #fa7f28;
        padding: 5px;
        border-radius: 10px;
        cursor: pointer;
        transition: 1s;
    }
}

.manual-btn:not(:last-child) {
    margin-right: 20px;
}

.manual-btn:hover {
    background: #fa7f28;
}

#radio1:checked ~ .first {
    margin-left: 0;
}

#radio2:checked ~ .first {
    margin-left: -20%;
}

#radio3:checked ~ .first {
    margin-left: -40%;
}

#radio4:checked ~ .first {
    margin-left: -60%;
}

/*css for automatic navigation*/

.navigation-auto {
    position: absolute;
    display: flex;
    width: 1349px;
    justify-content: center;
    margin-top: 519px;
}
@media (max-width: 1199px) {
    .navigation-auto {
        width: 100%;
        margin-top: 334px;
    }
}

.navigation-auto div {
    border: 1px solid #fa7f28;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}
@media (max-width: 1199px) {
    .navigation-auto div {
        border: 1px solid #fa7f28;
        padding: 5px;
        border-radius: 10px;
        transition: 1s;
    }
}

.navigation-auto div:not(:last-child) {
    margin-right: 20px;
}

#radio1:checked ~ .navigation-auto .auto-btn1 {
    background: #fa7f28;
}

#radio2:checked ~ .navigation-auto .auto-btn2 {
    background: #fa7f28;
}

#radio3:checked ~ .navigation-auto .auto-btn3 {
    background: #fa7f28;
}

#radio4:checked ~ .navigation-auto .auto-btn4 {
    background: #fa7f28;
}

.animasiangka-area {
    background: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #ffffff;
}

.counter-container {
    background-color: #ffffff;
}

.choose-itemi {
    /* border: 1px solid rgb(190, 181, 169); */
    background: #ffffff;
    position: relative;
    z-index: 1;
    margin-left: 15px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.choose-itemi-content-title {
    color: #1b2a52;
    font-size: 17px;
    letter-spacing: -0.6px;
    margin-bottom: 15px;
    margin-left: 15px;
    margin-top: 25px;
}

/* Basic styling for each counter */

.counter {
    font-size: 50px;
    font-weight: bold;
    color: #333;
    opacity: 1; /* Hide initially */
    display: inline-block;
    transition: opacity 0.5s;
}

.counter h2 {
    margin: 0;
}

@media (max-width: 767px) {
    .counter{
        padding-top: 10px;
    }
}

@media (max-width: 575px) {
    .counter{
        padding-top: 10px;
    }
}

/* Animation 1: Fade In */
@keyframes fadeIn {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

#counter1 {
    animation: fadeIn 3s ease-out forwards;
}

/* Animation 2: Scale Up */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#counter2 {
    animation: fadeIn 3s ease-out forwards;
}

/* Animation 3: Slide In from Left */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#counter3 {
    animation: fadeIn 3s ease-out forwards;
}

/* Animation 4: Rotate and Fade */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#counter4 {
    animation: fadeIn 3s ease-out forwards;
}

.gallery {
    --s: 350px; /* the size */

    display: grid;
    transform-style: preserve-3d;
    --_p: perspective(calc(2.5 * var(--s)));
    animation: r 25s infinite cubic-bezier(0.3, -0.5, 0.2, 1.5);
}
.gallery img {
    grid-area: 1/1;
    width: var(--s);
    aspect-ratio: 1;
    object-fit: cover;
    transform: var(--_t) translateZ(calc(var(--s) / 2));
}
.gallery img:nth-child(2) {
    --_t: rotateX(-90deg);
}
.gallery img:nth-child(3) {
    --_t: rotateY(90deg);
}
.gallery img:nth-child(4) {
    --_t: rotateX(180deg) rotate(90deg);
}
.gallery img:nth-child(5) {
    --_t: rotateX(90deg);
}
.gallery img:nth-child(6) {
    --_t: rotateY(-90deg);
}

@keyframes r {
    0%,
    3% {
        transform: var(--_p) rotate3d(0, 0, 0, 0deg);
    }
    14%,
    19% {
        transform: var(--_p) rotate3d(-1, 1, 0, 180deg);
    }
    31%,
    36% {
        transform: var(--_p) rotate3d(0, -1, 0, 90deg);
    }
    47%,
    52% {
        transform: var(--_p) rotate3d(1, 0, 0, 90deg);
    }
    64%,
    69% {
        transform: var(--_p) rotate3d(1, 0, 0, -90deg);
    }
    81%,
    86% {
        transform: var(--_p) rotate3d(0, 1, 0, 90deg);
    }
    97%,
    100% {
        transform: var(--_p) rotate3d(0, 0, 0, 0deg);
    }
}

.kubus {
    margin: 0;
    min-height: 100vh;
    display: grid;
    margin-left: 50px;
    place-content: center;
    background: #ffffff;
    /* animation: b 9s infinite; */
}

.center {
    display: flex;
    height: 100vh;
    align-items: left;
    justify-content: left;
    margin-top: 30px;
}

.article-card {
    width: 350px;
    height: 320px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
}

.article-card2 {
    width: 350px;
    height: 320px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
    margin-left: 5px;
}

.article-card3 {
    width: 350px;
    height: 320px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
    margin-left: 5px;
}

.article-card4 {
    width: 350px;
    height: 320px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
    margin-left: 5px;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.article-card img {
    width: 100%;
    height: 100%;
}

.article-card2:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

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

.article-card3:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

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

.article-card4:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

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

.article-card .content {
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    padding: 30px 20px 20px 20px;
    height: auto;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.article-card .date,
.article-card .title {
    margin: 0;
}

.article-card .date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.article-card .title {
    font-size: 17px;
    color: #fff;
}

.rekening-area {
    background-color: #ffffff;
}
@media (max-width: 1199px) {
    .rekening-area {
        width: 100%;
        padding-bottom: 10px;
        padding-top: 10px;
    }
}

.rekening_service-item {
    background: #fff;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (max-width: 1399px) {
    .rekening_service-item {
        width: 100%;
    }
}

/* Medium (md): ≥768px */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* CSS rules for medium screens */
    .rekening_service-item {
        width: 100%;
        padding: 0;
    }
}

/* Extra small (xs): <576px */
@media (max-width: 575.98px) {
    .rekening_service-item {
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }
}

.rekening_service-item1 {
    background: #ffffff;
    padding: 5px 5px 5px;
    transition: transform 0.2s;
    text-align: center;
    /* margin-left: 350px; */
    border-radius: 0px;
    /* box-shadow: 0px 4px 20px 0px rgba(27, 42, 82, 0.08); */
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.rekening_service-item1-icon img:hover {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(1.5);
}

.rekening_service-item1-icon img {
    width: 270px;
    background-color: transparent;
    height: 310px;
}
.rekening_service-item1-title {
    color: #1b2a52;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 2px;
    text-align: center;
}
.rekening_service-item1-title:hover a {
    color: var(--clr-theme-primary);
}
.rekening_service-item1 p {
    color: #6a738b;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    text-align: center;
}

/* Extra small (xs): <576px */
@media (max-width: 575.98px) {
    /* CSS rules for extra small screens */
    .rekening_service-item-icon img {
        width: 120px;
        background-color: transparent;
        margin-bottom: 10px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .rekening_service-item-icon img {
        width: 120px;
        background-color: transparent;
        margin: 0;
    }
}

/* Large (lg): ≥992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* CSS rules for large screens */
    .rekening_service-item-icon img {
        width: 130px;
        background-color: transparent;
        margin-bottom: 0;
    }
}
/* Medium (md): ≥768px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .rekening_service-item-icon img {
        margin-bottom: 0;
        width: 100px;
    }
}

@media (min-width: 1200px) {
    .rekening_service-item-icon img {
        width: 120px;
    }
}

.rekening_service-item-icon {
    display: flex;
    justify-content: center;
}

/* Medium (md): ≥768px */
@media (max-width: 991.98px) {
    /* CSS rules for medium screens */
    .rekening_service-item-icon {
        display: flex;
        justify-content: center;
        height: 60px;
        align-items: center;
    }
}

/* Large (lg): ≥992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* CSS rules for large screens */
    .rekening_service-item-icon {
        display: flex;
        justify-content: center;
        height: 80px;
        align-items: center;
    }
}

/* Extra large (xl): ≥1200px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    /* CSS rules for extra large screens */
    .rekening_service-item-icon {
        display: flex;
        justify-content: center;
        height: 60px;
        align-items: center;
    }
}

@media (min-width: 1400px) {
    .rekening_service-item-icon {
        display: flex;
        justify-content: center;
        height: 80px;
        align-items: center;
    }
}

.rekening_service-item-title {
    color: #1b2a52;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.1px;
    text-align: center;
}

@media (max-width: 575.98px) {
    /* Tambahkan gaya untuk perangkat kecil di sini */
    .rekening_service-item-title {
        margin-bottom: 0;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .rekening_service-item-title {
        margin-bottom: 10px;
    }
}

.rekening_service-item-title:hover a {
    color: var(--clr-theme-primary);
}
.rekening_service-item p {
    color: #6a738b;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    text-align: center;
}
.rekening_service-item-btn {
    color: #1b2a52;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 22px;
}
.rekening_service-item-btn i {
    margin-top: 1px;
    font-weight: 500;
}
.rekening_service-item-btn:hover {
    color: var(--clr-theme-primary);
}
/*# sourceMappingURL=main.css.map */

.container1 {
    display: flex;
    flex-direction: row; /* Membuat sidebar berada di kanan */
    width: 98%; /* Lebar kontainer utama */
    height: 100%;
    /* margin-top: 15px; */
    padding-bottom: 30px;
}
@media (max-width: 1199px) {
    .container1 {
        width: 390px;
        display: flex;
        flex-direction: none;
        padding: 0;
    }
}

.sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
}

.social-media-icons {
    text-align: center;
    background-color: #fff;
    padding: 23px;
    border-radius: 10px;
    box-shadow: 0px 6px 70px 0px rgba(27, 42, 82, 0.06);
    width: auto;
    max-width: 500px;
    margin: 0 auto;
}

.social-media-icons p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}

/* Styling individual icon links */
.social-media-icons .icon {
    display: inline-block;
    font-size: 30px;
    margin: 0 15px;
    color: #333;
    transition: all 0.3s ease;
}

.social-media-icons .icon:hover {
    transform: scale(1.2);
    color: #007bff;
}

/* Specific icon color overrides */
.social-media-icons .facebook:hover {
    color: #3b5998;
}

.social-media-icons .youtube:hover {
    color: #ff0000;
}

.social-media-icons .instagram:hover {
    color: #e4405f;
}

.social-media-icons .x:hover {
    color: #1d9bf0;
}

.social-media-icons .tiktok:hover {
    color: #69c9d0;
}

/* Responsive layout */
@media (max-width: 768px) {
    .social-media-icons {
        padding: 15px;
        width: 80%;
    }

    .social-media-icons .icon {
        font-size: 28px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .social-media-icons {
        padding: 10px;
        width: 90%;
    }

    .social-media-icons p {
        font-size: 18px;
    }

    .social-media-icons .icon {
        font-size: 24px;
        margin: 0 8px;
    }
}

/* Styling untuk setiap ikon */
.icon {
    font-size: 2rem;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Efek hover */
.icon:hover {
    transform: scale(1.2);
    color: #0073e6; /* Ganti dengan warna yang sesuai */
}

/* Warna khusus untuk setiap ikon */
.icon.facebook {
    color: #3b5998; /* Warna biru Facebook */
}

.icon.youtube {
    color: #f64438; /* Warna Merah Youtube */
}

.icon.instagram {
    color: #e4405f; /* Warna merah Instagram */
}
.icon.x {
    color: #000; /* Warna biru Twitter */
}
.icon.linkedin {
    color: #0077b5; /* Warna biru LinkedIn */
}
.icon.tiktok {
    color: #000; /* Warna biru LinkedIn */
}

.button {
    animation: 1.5s ease infinite alternate running shimmer;
    background: linear-gradient(90deg, #ff983d 10%, #fa7f20 30%, #ffbb3d 80%);
    background-size: 200% 100%;
    border: none;
    border-radius: 6px;
    box-shadow: -2px -2px 10px rgba(255, 227, 126, 0.5),
        2px 2px 10px rgba(144, 148, 255, 0.5);
    color: #ffffff;
    cursor: pointer;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 22px;
    overflow: hidden;
    padding: 12px 24px;
    position: relative;
    text-decoration: none;
    transition: 0.2s;
    letter-spacing: 1px;

    svg {
        left: -50px;
        opacity: 0.5;
        position: absolute;
        top: -2px;
        transition: 0.5s cubic-bezier(0.5, -0.5, 0.5, 1.5);
    }

    &:hover svg {
        opacity: 0.8;
        transform: translateX(50px) scale(1.5);
    }

    &:hover {
        transform: rotate(-3deg);
    }

    &:active {
        transform: scale(0.95) rotate(-3deg);
    }
}

@media screen and (max-width: 1199px) {
    .button {
        font-size: 13px;
        font-weight: 700;
        padding: 12px 18px;
        letter-spacing: 0px;
        /* margin-right: 35px; */
    }
}
@keyframes shimmer {
    to {
        background-size: 100% 100%;
        box-shadow: -2px -2px 6px rgba(255, 227, 126, 0.5),
            2px 2px 6px rgba(144, 148, 255, 0.5);
    }
}

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

.text-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4; /* Ubah angka 2 sesuai jumlah baris yang diinginkan */
}

.text-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2; /* Ubah angka 2 sesuai jumlah baris yang diinginkan */
}

.text-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3; /* Ubah angka 2 sesuai jumlah baris yang diinginkan */
}

.content1 {
    flex: 1; /* Isi sisa ruang yang tersedia */
    max-width: 75%; /* Atur lebar maksimal (opsional) */
}

.sidebar1 {
    flex: 0 0 25%; /* Sidebar mengambil 25% dari lebar */
    max-width: 25%; /* Pastikan lebar maksimalnya sesuai */
}

.wrap-item-berita {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

@media (max-width: 991.98px) {
    /* CSS rules for medium screens */
    .wrap-item-berita {
        display: flex;
        flex-wrap: wrap;
        gap: 35px;
        flex-direction: column;
    }

    .content1 {
        flex: 1; /* Isi sisa ruang yang tersedia */
        max-width: 100%; /* Atur lebar maksimal (opsional) */
    }

    .sidebar1 {
        flex: 100%;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .desc_title {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* CSS untuk perangkat besar */
    .footer-left {
        flex: 50%;
    }

    .footer-right {
        flex: 50%;
    }
}

.docs-berita a {
    font-size: 14px;
    color: blue;
    text-decoration: underline;
}

/* dokumentasi gambar berita */

.image-docs {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
}

.wrap-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, 250px);
    gap: 1.5rem;
    justify-content: center;
}

.image-wrap {
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

@media (max-width: 576px) {
    .image-wrap {
        width: 150px;
        height: 150px;
    }

    .wrap-content {
        grid-template-columns: repeat(2, 150px);
    }
}

@media (min-width: 766px) and (max-width: 991.98px) {
    .image-wrap {
        width: 250px;
        height: 250px;
    }

    .wrap-content {
        grid-template-columns: repeat(3, 250px);
    }
}

.image-wrap:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-wrap:hover .image-content {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(236, 156, 37, 0.7);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.image-wrap:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* css modal tampil gambar dokumentasi */

/* Styling untuk modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -10;
}

.image-modal.show {
    opacity: 1;
    pointer-events: all;
    z-index: 1000;
}

.modal-content {
    object-fit: contain;
    max-width: 50%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: scaleIn 0.3s ease;
}

@media (max-width: 576px) {
    .modal-content {
        max-width: 70%;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

/* Tombol close */
.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.close-modal:hover {
    background-color: rgba(247, 69, 93, 0.6);
    border-radius: 100%;
}

/* Tombol prev dan next */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
}

.prev-btn {
    left: 10px;
}

.prev-icon,
.next-icon,
.close-icon {
    fill: white;
    width: 30px;
}

.next-btn {
    right: 10px;
}

.prev-btn,
.next-btn,
.close-modal {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: rgba(236, 156, 37, 0.6);
}

/* alphine js */
[x-cloak] {
    display: none !important;
}

/* styling untuk pesan error form kontak */

.error-form input,
.error-form textarea {
    border: 1px solid red !important;
}

.error-form i {
    color: red;
    transform: translateY(-133%);
}

.form-error-text {
    font-size: 14px;
    color: red;
    margin-left: 5px;
}

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

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

/* styling untuk search berita */

.search-result {
    position: absolute;
    background: #eaecef;
    z-index: 100;
    left: 0;
    right: 0;
    padding: 10px 20px;
    border-radius: 10px;
    max-height: 385px;
    overflow-y: auto;
}

.search-result::-webkit-scrollbar {
    width: 8px; /* Lebar scrollbar */
}

.search-result::-webkit-scrollbar-track {
    background: #d1d5db;
    border-radius: 10px;
}

.search-result::-webkit-scrollbar-thumb {
    background: var(--clr-theme-primary);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.search-result::-webkit-scrollbar-thumb:hover {
    background: #d78e21;
}

.search-result-title {
    text-align: center;
}

.search-result-item {
    margin: 0;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 15px;
    color: #7f879e;
}

.search-result-item:hover {
    color: var(--clr-theme-primary);
}

.search-result-item:last-child {
    margin-bottom: 0;
}

/* styling untuk youtube video detail dokumentasi */

.youtube-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 350px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-item {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    .youtube-wrap {
        width: 100%;
        height: 250px;
    }
}

@media (min-width: 766px) and (max-width: 991px) {
    .youtube-wrap {
        height: 320px;
    }
}

@media (min-width: 991.98px) and (max-width: 1199.98px) {
    .youtube-wrap {
        width: 60%;
        height: 320px;
    }
}

@media (min-width: 1200px) {
    .youtube-wrap {
        width: 50%;
        height: 350px;
    }
}

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

.youtube-content {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* styling untuk modal shareUrl */

.icons::-webkit-scrollbar {
    height: 8px;
}

.icons::-webkit-scrollbar-thumb {
    background-color: var(--clr-theme-primary);
    border-radius: 10px;
}

.icons::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

.icon-share {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#sharePrompt {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

#sharePrompt .container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    padding: 1.5rem;
}

#sharePrompt .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

#sharePrompt .header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

#sharePrompt .header button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.25rem;
}

#sharePrompt .icons {
    display: flex;
    overflow-x: auto;
    padding: 1rem 0;
    gap: 1rem;
}

#sharePrompt .icon {
    flex-shrink: 0;
    width: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#sharePrompt .icon img {
    width: 2.5rem;
    height: 2.5rem;
}

#sharePrompt .icon span {
    font-size: 0.875rem;
    color: #555;
    margin-top: 0.5rem;
}

#sharePrompt .copy-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f3f3f3;
    padding: 0.5rem 0.5rem 0.5rem 0.7rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

#sharePrompt .copy-link input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: "Inter", sans-serif;
    color: #555;
    outline: none;
}

#sharePrompt .copy-link button {
    background-color: var(--clr-theme-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

#sharePrompt .copy-link button:hover {
    background-color: #b5781d;
}

#notification {
    position: fixed;
    bottom: 1.25rem;
    right: 6rem;
    background-color: var(--clr-theme-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section Donasi */

.button1 {
    background: linear-gradient(
        45deg,
        #ff7f32,
        #ffb84d
    ); /* Gradient warna oranye */
    color: white; /* Warna teks putih */
    width: 20%;
    padding: 12px 24px; /* Jarak dalam tombol */
    border-radius: 8px; /* Sudut melengkung */
    border: none; /* Menghilangkan border default */
    font-size: 16px; /* Ukuran font */
    font-weight: bold; /* Teks tebal */
    cursor: pointer; /* Menambahkan pointer saat hover */
    transition: all 0.3s ease; /* Efek transisi saat hover */
}

.button1:hover {
    background: linear-gradient(45deg, #ff9c4d, #ff7f32); /* Warna saat hover */
}

.button1:active {
    transform: scale(1);
    box-shadow: 0px 5px 0px rgba(255, 99, 71, 0.3); /* Small shadow when clicked */
}

/* Section Styles */

.h4_donasi-area {
    display: flex;
    padding-top: 50px;
    justify-content: center; /* Menyusun konten di tengah secara horizontal */
    align-items: center; /* Menyusun konten di tengah secara vertikal */
    text-align: center;
}

.h4_section-area-donasi {
    margin-bottom: 50px;
    text-align: center;
}

/* Title styles */
.h4_section-donasi {
    font-size: 28px;
    font-weight: 800;
    color: #333;
}

/* Hover effect on the button */
.button1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.5);
}

/* Animation for the gradient */
@keyframes gradientAnimation {
    0% {
        background-position: 200% 0%;
    }
    50% {
        background-position: -200% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}
/* Responsive Styles */
@media (max-width: 1200px) {
    .button1 {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 992px) {
    .button1 {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .h4_section-donasi {
        font-size: 20px;
    }

    .button1 {
        font-size: 16px;
        width: 45%;
        padding: 10px 25px;
    }
}

.button2 {
    display: inline-block;
    width: 50%;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #ff983d 10%, #fa7f20 30%, #ffbb3d 80%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.4);
    letter-spacing: 1.4px;
}

/* Hover effect on the button */
.button2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.5);
}

/* Animation for the gradient */
@keyframes gradientAnimation {
    0% {
        background-position: 200% 0%;
    }
    50% {
        background-position: -200% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.h4_section-area-donasi h2 {
    font-size: 30px;
}
.button1 {
    font-size: 14px;
    padding: 8px 16px;
}

@media (max-width: 576px) {
    .h4_donasi-area {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .button1 {
        font-size: 12px;
        padding: 6px 12px;
    }

    .h4_section-area-donasi h2 {
        font-size: 27px;
    }
}

.donasi-area-side {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.h4_section-area-donasi {
    margin-bottom: 20px;
    letter-spacing: -1.6px;
}

/* styling campaign page */

.campaign-section {
    padding: 70px 20px;
}

.card-wrap {
    margin-bottom: 20px;
}

.card-wrap:last-child {
    margin-bottom: 0;
}

/* styling untuk card campaign */

.card-campaign {
    max-width: 360px;
}

.card-campaign .card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-campaign .card-body h5 {
    margin-bottom: 10px;
}

.card-campaign .card-body .text-muted {
    font-size: 14px;
    line-height: 1.5;
}

.card-campaign .card-body .campaign-target {
    font-size: 14px;
}

.card-campaign .card-body .campaign-target,
.card-campaign .card-body .campaign-terkumpul {
    color: var(--clr-theme-primary);
}

.card-campaign .card-body .progress {
    height: 8px;
}

.card-campaign .card-body .button-donasi {
    background-color: var(--clr-theme-primary);
    font-size: 14px;
    color: #fcf9f9;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: "Space Grotesk", sans-serif;
}

.card-campaign .card-body .button-donasi:hover {
    background-color: #fa822d;
    color: #fcf9f9;
}

/* detail campaign */

.detail-campaign h3 {
    font-size: 30px;
}

@media (max-width: 576px) {
    .detail-campaign h3 {
        margin-top: 10px;
        font-size: 25px;
    }
}

.detail-campaign .campaign-deskripsi {
    font-size: 15px;
    line-height: 1.5;
}

.detail-campaign .campaign-terkumpul {
    color: #fa8d20;
    margin-bottom: 0;
}

.detail-campaign .button-donasi {
    background-color: #fa8d20;
    color: #fffefe;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: 600;
}

.detail-campaign .button-donasi:hover {
    background-color: #ff9d3b;
}

.detail-campaign .progress {
    height: 20px;
}

.detail-campaign .progress .progress-bar {
    background-color: #fa8d20;
}

.detail-campaign .progress .progress-bar .label-persentase {
    font-size: 12px;
    color: #fff;
    display: block;
}

.nav-tabs .nav-item .nav-link {
    color: #1b2a52;
}

.tab-content .tab-pane .list-group .list-group-item .badge {
    background-color: var(--clr-theme-primary);
}

/* styling modal donasi */

/* Modal Container */
.modal-donasi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
    opacity: 1;
    transition: visibility 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
}

/* Overlay */
.modal-donasi .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content */
.modal-donasi .modal-content {
    position: relative;
    width: 70%;
    max-width: 550px;
    background-color: white;
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-donasi .modal-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-donasi .modal-content p {
    font-size: 15px;
    line-height: 1.5;
}

.modal-donasi .modal-content .img-gift {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .modal-donasi .modal-content {
        width: 85%;
        padding: 25px;
    }

    .modal-donasi .modal-content .img-gift {
        width: 70px;
        height: 70px;
    }

    .modal-donasi .modal-content h4 {
        font-size: 20px;
    }

    .modal-donasi .modal-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .button-close {
        padding: 5px 10px;
    }
}

/* Tombol Kembali */
.button-close {
    width: 50%;
    display: inline-block;
    padding: 10px;
    background-color: #f6a96c;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    border: none;
    transition: background-color 0.3s ease;
}

.button-close:hover {
    background-color: #f8b436;
}

/* * ini Sidebar custom gua */

.open-sidebar-btn {
    font-size: 30px;
    background: none;
    border: none;
    color: #333;
    padding: 10px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

/* Sidebar style */
.sidebar {
    position: fixed;
    top: 0;
    right: -375px;
    /* Initially hidden on the right */
    width: 375px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
}

.sidebar-header {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    width: 100px;
}

.close-sidebar-btn {
    font-size: 40px;
    background: none;
    border: none;
    color: var(--clr-theme-primary);
    cursor: pointer;
}

.sidebar nav {
    margin-top: 20px;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.menu-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
}

.menu-link:hover {
    background-color: #ffdfb0;
}

.dropdown-program .program-menu-list {
    max-height: 0; /* Menyembunyikan menu */
    overflow: hidden;
    transition: max-height 0.7s ease-out; /* Transisi untuk max-height */
}

/* Menu dropdown yang terbuka */
.dropdown-program .program-menu-list.open {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}
.dropdown-program .program-menu-list .menu-link {
    font-size: 14px;
    color: #585858;
}

.cta-donasi {
    display: block;
    background-color: #f5890f;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    margin-top: 20px;
    width: 50%;
    border-radius: 17px;
}

.cta-donasi:hover {
    background-color: #f5982f;
    color: #fffaf5;
}

/* Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Show sidebar and overlay */
.sidebar.open,
.sidebar-overlay.open {
    right: 0;
    display: block;
}

.sidebar-logo {
    width: 200px;
    height: 200px;
}
