/* ///////////////////////////////////////////////////////////
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: #7D25EC;
  --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: 1630px;
    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: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 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: 135px;
  padding: 20px 0;
  flex-shrink: 0;
}
.header-nav-menu ul {
  list-style: none;
}
.header-nav-menu ul li {
  display: inline-block;
  margin-right: 30px;
}
.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: 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);
}
.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 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;
}
.header-nav-menu ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.header-nav-menu ul li .submenu li:hover > a {
  background-color: #1B2A52;
  color: #fff;
}
.header-nav-menu ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.header-nav-menu ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}
.header-nav-menu ul li:hover > a {
  color: #1B2A52;
}
.header-action {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}
.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: 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-action-btn:hover {
  color: #fff;
  background: linear-gradient(180deg, #7D25EC 0%, #9425EC 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: #F2F8FD;
  position: relative;
  z-index: 1;
}
.banner-single {
  padding-top: 240px;
  padding-bottom: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 600px;
  gap: 40px;
}
@media (max-width: 991px) {
  .banner-single {
    flex-wrap: wrap;
    gap: 70px;
  }
}
@media (max-width: 575px) {
  .banner-single {
    padding-top: 200px;
    padding-bottom: 160px;
  }
}
.banner-content {
  width: 720px;
  flex-shrink: 0;
}
@media (max-width: 1399px) {
  .banner-content {
    width: 610px;
  }
}
@media (max-width: 1199px) {
  .banner-content {
    width: 465px;
  }
}
@media (max-width: 991px) {
  .banner-content {
    width: 100%;
  }
}
.banner-content-subtitle {
  border-radius: 50px;
  background: rgba(125, 37, 236, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
  display: inline-block;
  color: #7D25EC;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 30px;
  height: 36px;
  line-height: 36px;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .banner-content-subtitle {
    font-size: 13px;
    padding: 0 20px;
    height: 32px;
    line-height: 32px;
  }
}
.banner-content-title {
  color: #1B2A52;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2.1px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .banner-content-title {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .banner-content-title {
    font-size: 46px;
  }
}
@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: #1B2A52;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 43px;
}
@media (max-width: 1199px) {
  .banner-content p br {
    display: none;
  }
}
@media (max-width: 991px) {
  .banner-content p br {
    display: block;
  }
}
@media (max-width: 767px) {
  .banner-content p br {
    display: none;
  }
}
@media (max-width: 480px) {
  .banner-content p {
    font-size: 16px;
  }
}
.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 {
  max-width: 644px;
}
@media (max-width: 991px) {
  .banner-img {
    max-width: 100%;
    width: 100%;
  }
  .banner-img img {
    width: 100%;
  }
}
.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-5 {
  position: absolute;
  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: 991px) {
  .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(125, 37, 236, 0.06);
  box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.2);
  display: inline-block;
  color: var(--clr-theme-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 25px;
  height: 36px;
  line-height: 36px;
  margin-bottom: 11px;
}
.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);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.76px;
}
@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;
  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: 45px;
  }
}
@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: #7D25EC;
  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: 44px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.76px;
}
@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-item {
  border-radius: 10px;
  border: 1px solid rgba(27, 42, 82, 0.07);
  background: #FFF;
  padding: 40px 35px 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) {
  .choose-item {
    padding: 40px 30px 35px;
  }
}
@media (max-width: 1199px) {
  .choose-item {
    padding: 40px 35px 35px;
  }
}
.choose-item:hover {
  border-radius: 10px;
  background: #FFF;
  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: 34px;
}
.choose-item-content-title {
  color: #1B2A52;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 15px;
}
.choose-item-content-title:hover a {
  color: var(--clr-theme-primary);
}
.choose-item-content p {
  color: #6A738B;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  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;
}
.choose-item-content-btn i {
  margin-top: 2px;
}
.choose-item-content-btn:hover {
  color: var(--clr-theme-primary);
}

/* ///////////////////////////////////////////////////////////
08. feature
/////////////////////////////////////////////////////////// */
.feature-top {
  display: flex;
  gap: 105px;
}
@media (max-width: 1199px) {
  .feature-top {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .feature-top {
    flex-wrap: wrap;
  }
}
.feature-item {
  border-radius: 10px;
  border: 1px solid rgba(27, 42, 82, 0.07);
  background-color: #FFF;
  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: 991px) {
  .feature-item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 575px) {
  .feature-item {
    width: 100%;
  }
}
.feature-item-title {
  color: #1B2A52;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
  -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: #6A738B;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  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-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: var(--clr-theme-primary);
  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-item {
  border-radius: 14px;
  background: #F0F2F8;
  padding: 0 50px 55px;
  text-align: center;
}
@media (max-width: 480px) {
  .h4_feature-item {
    padding: 0 30px 55px;
  }
}
.h4_feature-item-img {
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h4_feature-item-content-title {
  color: #1B2A52;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.72px;
}
.h4_feature-item-content-title:hover a {
  color: var(--clr-theme-primary);
}
.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: 10px;
  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;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.blog-content-meta a {
  border-radius: 40px;
  background: #7D25EC;
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 15px;
  line-height: 1;
}
.blog-content-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6A738B;
  font-size: 14px;
  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-img {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.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;
  margin-bottom: 10px;
}
.h2_blog-content-meta span {
  display: block;
  color: #6A738B;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  position: relative;
  z-index: 1;
}
.h2_blog-content-meta span a {
  color: #7D25EC;
  text-transform: uppercase;
}
.h2_blog-content-meta span i {
  margin-right: 6px;
}
.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: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.72px;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .h2_blog-content-title {
    font-size: 22px;
  }
}
.h2_blog-content-title a {
  transition: all 0.3s linear 0s;
}
.h2_blog-content-title:hover a {
  color: #7D25EC;
}

.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-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-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;
}
.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 a {
  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: 30px 20px 0;
  }
}
.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;
  text-transform: uppercase;
  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: #7D25EC;
}
.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: #7D25EC;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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;
}
.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;
}
.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: 16px;
  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;
}

/* ///////////////////////////////////////////////////////////
22. sidebar
/////////////////////////////////////////////////////////// */
.side-info {
  width: 100%;
  max-width: 400px;
  background-color: #000;
  box-shadow: 0 13px 29px rgba(4, 0, 23, 0.1);
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  right: -400px;
  -webkit-transition: all 0.4s linear 0s;
  -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;
  padding: 30px 40px 40px 40px;
}
.side-info:is(.info-open) {
  right: 0;
  overflow-y: scroll;
  scrollbar-width: thin;
}
@media (max-width: 480px) {
  .side-info {
    padding: 30px 30px 30px 30px;
  }
}

.offcanvas-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(4, 0, 23, 0.5);
  z-index: 9;
  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;
  cursor: url(../../assets/img/bg/close.png), auto;
}
.offcanvas-overlay:is(.overlay-open) {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.mean-container .mean-nav {
  background: transparent;
  margin-top: 0;
}

.mean-container .mean-nav ul li a {
  border: none;
  font-size: 16px;
  padding-left: 0;
  padding-right: 0;
  color: #fff;
}

.mean-container .mean-nav ul li:hover > a {
  background: transparent;
  color: var(--clr-theme-primary);
}

.pl-sidebar-close.side-info-close {
  background: transparent;
  border: none;
  font-size: 25px;
  color: #fff;
}

.mean-container .mean-nav ul li a.mean-expand {
  padding: 8px 0;
  border: none;
  background-color: transparent;
  color: #fff;
  width: auto;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: transparent;
}

.sidebar-close {
  border: 0;
  background-color: transparent;
  font-size: 25px;
  color: #fff;
  padding-left: 0;
  padding-right: 0;
}

.sidebar-close:hover {
  color: #fff;
}

.header-menu-bar-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--clr-theme-primary);
  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: 18px;
}
.header-menu-bar-icon:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
  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;
  margin-left: 30px;
  margin-right: 30px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .breadcrumb-area {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.breadcrumb-title {
  color: #1B2A52;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2.1px;
  margin-bottom: 8px;
}
@media (max-width: 1199px) {
  .breadcrumb-title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-title {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .breadcrumb-title {
    font-size: 40px;
  }
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: 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: #7D25EC;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  display: block;
}
@media (max-width: 480px) {
  .breadcrumb-list span {
    font-size: 16px;
  }
}

.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-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: #FFF;
  box-shadow: 0px 6px 70px 0px rgba(27, 42, 82, 0.06);
  padding: 40px 30px 35px;
  height: 100%;
  text-align: center;
}
.contact-icon {
  width: 70px;
  height: 70px;
  background: #F2F8FD;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  color: var(--clr-theme-primary);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.contact-content-title {
  color: #1B2A52;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.72px;
  margin-bottom: 13px;
}
.contact-content p {
  color: #7F879E;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 0;
}
.contact-content a {
  color: #7F879E;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  display: block;
}
.contact-content a:not(:last-child) {
  margin-bottom: 2px;
}

.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: #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;
}
.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: #1B2A52;
}
.footer-logo {
  margin-bottom: 60px;
  width: 135px;
}
.footer-newsletter h5 {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.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;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer-widget-wrap {
    flex-wrap: wrap;
  }
}
.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;
}
.footer-widget ul li:last-child {
  margin-bottom: 0;
}
.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  display: block;
}
.footer-widget ul li a:hover {
  color: var(--clr-color-violet);
}

.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;
}
.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-color-violet);
}

.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: 135px;
  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;
  gap: 10px;
}
.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: #7F879E;
  font-size: 14px;
}
.h5_footer-widget-social a:hover {
  background: #7D25EC;
  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);
}

/*# sourceMappingURL=main.css.map */
