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

   Template Name: Care Link - Health & Medical HTML Template
   Description: Care Link - Health & Medical HTML Template
   Author: _ThemePhi
   Version: 1.0

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

CSS INDEX
=================== 
01. common
02. header
03. hero
04. appointment
05. about
06. service
07. section
08. team
09. price
10. testimonial
11. cta
12. blog
13. choose
14. contact
15. brand
16. counter
17. process
18. feature
19. staff
20. schedule
21. discount
22. breadcrumb
23. faq
24. portfolio
25. 404
26. sidebar
27. footer


******************************************************* 
*************************************************************** */
/*
************
*************************
01. common
******************************************************* 
*************************************************************** */
/* ///////////////////////////////////////////////////////////
Responsive Layout Declaration 
/////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////
Font Family Declaration 
/////////////////////////////////////////////////////////// */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sora:wght@100..800&display=swap");
/* ///////////////////////////////////////////////////////////
Color Declaration 
/////////////////////////////////////////////////////////// */
:root {
  --clr-common-white: #FFFFFF;
  --clr-common-lightWhite: #fff9e9;
 /* --clr-common-black: var(--clr-body-heading); */
  --clr-common-black: #967459;
  --clr-common-gray: #333333;
  --clr-common-border: #525252;
/*  --clr-common-lightBlack: #2A4741; */
  --clr-common-lightBlack: #2A4741;
 /* --clr-body-heading: var(--clr-body-heading); */
  --clr-body-heading: #6f533b;
 /* --clr-body-text: var(--clr-body-heading); */
  --clr-body-text: #6f533b;
/*  --clr-color-skyBlue: #A1EEFF; */
  --clr-color-skyBlue: #A1EEFF;
  --clr-color-lightPink: #FFBD8C;
  --clr-color-lightGreen: #C7FF6B;
/*  --clr-theme-primary: #35CC95; */
  --clr-theme-primary: #d6ba7b;
  --clr-bg-gray: #F6F6F6;
}

/* ///////////////////////////////////////////////////////////
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);
  }
}
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr-body-text);
  font-size: 16px;
  line-height: 26px;
  background-color: var(--clr-common-lightWhite);
}

.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;
  resize: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Sora", sans-serif;
  color: var(--clr-body-heading);
}

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

h1 {
  font-size: 80px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

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

ul {
  margin: 0;
  padding: 0;
}

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

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

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

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

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

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

input::-webkit-input-placeholder {
  color: var(--clr-body-text);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -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;
}
input:-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
input::-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
input:-ms-input-placeholder {
  color: var(--clr-body-text);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -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;
}

textarea::-webkit-input-placeholder {
  color: var(--clr-body-text);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
textarea:-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
textarea::-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
textarea:-ms-input-placeholder {
  color: var(--clr-body-text);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -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;
}

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

.clear {
  clear: both;
}

.common_width_1 {
  max-width: 1860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 575px) {
  .common_width_1 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.common_width_2 {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.mb-05 {
  margin-bottom: 5px;
}

.w-90 {
  width: 90%;
}

.w-94 {
  width: 94%;
}

.w-99 {
  width: 99%;
}

/* <<<<<<<    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;
}

.row {
  --bs-gutter-x: 30px;
}
.row.g-0 {
  --bs-gutter-x: 0;
}
.row.gap-18 {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}
.row.gap-20 {
  --bs-gutter-x: 20px;
}
.row.gap-110 {
  --bs-gutter-x: 110px;
}

@media (min-width: 1400px) {
  .container.container-full-1 {
    max-width: 1326px;
  }
}
@media (min-width: 1600px) {
  .container.container-full-1 {
    max-width: 1750px;
  }
}
/*---------------------------------------------------*/
/*          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-theme-primary);
  text-transform: none;
  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-theme-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-theme-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;
}

.cl_inner-pagination ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.cl_inner-pagination ul li a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(111, 83, 59, 0.2);
  border-radius: 50%;
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.cl_inner-pagination ul li a:hover {
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
  border-color: transparent;
}
.cl_inner-pagination ul li a.active {
  background-color: rgba(53, 204, 149, 0.1);
  border-color: transparent;
  color: var(--clr-theme-primary);
}

/* Search  */
.ba-search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-110%);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -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;
}
.ba-search-popup::after {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 560px;
  background-image: url(../images/bg/waves-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0px;
  content: "";
}
.ba-search-popup .ba-color-layer {
  position: fixed;
  content: "";
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.ba-search-popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  width: 50%;
}
@media (max-width: 991px) {
  .ba-search-popup-inner {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .ba-search-popup-inner {
    width: 85%;
  }
}
@media (max-width: 767px) {
  .ba-search-popup-inner {
    width: 70%;
  }
}
.ba-search-popup-inner form {
  position: relative;
}
.ba-search-popup-inner form input {
  width: 100%;
  height: 70px;
  border: 0;
  border-radius: 60px;
  padding: 0 20px;
  padding-right: 90px;
}
.ba-search-popup-inner form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 70px;
  border: 0;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  background: var(--clr-theme-primary);
  color: #fff;
  font-size: 20px;
}

.search-active .ba-search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.cl_navigation {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
}
@media (max-width: 767px) {
  .cl_navigation {
    justify-content: flex-start;
  }
}
.cl_navigation div {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-body-heading);
  border-radius: 50%;
  color: var(--clr-body-heading);
  font-size: 16px;
  -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;
}
.cl_navigation div:hover {
  background-color: var(--clr-common-black);
  color: #fff;
}
.cl_navigation_white div {
  border: 1px solid #fff;
  color: #fff;
}
.cl_navigation_white div:hover {
  background-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}

.cl_pagination {
  text-align: center;
}
.cl_pagination .swiper-pagination-bullets {
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cl_pagination .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  background: rgba(53, 204, 149, 0.3);
  opacity: 1;
}
.cl_pagination .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #35CC95;
}
.cl_pagination_white .swiper-pagination-bullets .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
}
.cl_pagination_white .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #fff;
}

.cl_highlight-title {
  display: flex;
  align-items: center;
  gap: 60px;
  -webkit-text-stroke: 1px var(--clr-body-heading);
  -webkit-text-fill-color: transparent;
  font-family: Sora;
  font-size: 78px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -5px;
  margin-bottom: 0;
  text-align: center;
  margin-right: 60px;
  width: max-content !important;
  -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;
}
.cl_highlight-title:hover {
  -webkit-text-stroke: 1px transparent;
  -webkit-text-fill-color: var(--clr-body-heading);
}

/* ///////////////////////////////////////////////////////////
02. header
/////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////
Header CSS 01 Start
/////////////////////////////////////////////////////////// */
.cl_header-area {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 480px) {
  .cl_header-area {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.cl_header-wrap {
  display: flex;
  align-items: center;
  gap: 120px;
  justify-content: space-between;
}
@media (max-width: 1599px) {
  .cl_header-wrap {
    gap: 60px;
  }
}
.cl_header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 905px;
  width: 100%;
  gap: 40px;
}
@media (max-width: 1399px) {
  .cl_header-left {
    gap: 30px;
  }
}
.cl_header-logo {
  max-width: 150px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cl_header-logo {
    max-width: 140px;
  }
}
@media (max-width: 1199px) {
  .cl_header-menu {
    display: none;
  }
}
.cl_header-menu nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
}
@media (max-width: 1599px) {
  .cl_header-menu nav ul {
    gap: 30px;
  }
}
@media (max-width: 1399px) {
  .cl_header-menu nav ul {
    gap: 25px;
  }
}
.cl_header-menu nav ul .menu-has-child {
  position: relative;
  z-index: 99;
  text-align: start;
}
.cl_header-menu nav ul li a {
  color: var(--clr-body-text);
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  height: 44px;
  line-height: 44px;
}
.cl_header-menu nav ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -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);
  display: block;
}
.cl_header-menu nav ul li .submenu li {
  display: block;
  margin-right: 0;
  position: relative;
  z-index: 99;
}
.cl_header-menu nav ul li .submenu li a {
  padding: 12px 25px;
  color: var(--clr-common-black);
  -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;
  height: auto;
  line-height: 20px;
}
.cl_header-menu nav ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.cl_header-menu nav ul li .submenu li:hover > a {
  background-color: var(--clr-theme-primary);
  color: #fff;
}
.cl_header-menu nav ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.cl_header-menu nav ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}
.cl_header-menu nav ul li:hover > a {
  color: var(--clr-theme-primary);
}

.cl_header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.cl_header-action-btn {
  width: 48px;
  height: 48px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--clr-theme-primary);
  position: relative;
  z-index: 1;
}
.cl_header-action-btn span {
  position: absolute;
  right: -2px;
  top: -5px;
  width: 17px;
  height: 17px;
  background-color: var(--clr-theme-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cl_header-action-btn:hover {
  color: #fff;
  background-color: var(--clr-theme-primary);
}
.cl_header-action-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(0, 0, 0);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.5px;
}
.cl_header-action-call:hover {
  color: var(--clr-theme-primary);
}
.cl_header-action-call i {
  width: 48px;
  height: 48px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--clr-theme-primary);
  -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;
}
.cl_header-action-call:hover i {
  color: #fff;
  background-color: var(--clr-theme-primary);
}
.cl_header-action-call span {
  margin-right: 10px;
}
@media (max-width: 1599px) {
  .cl_header-action-call span {
    display: none;
  }
}
@media (max-width: 480px) {
  .cl_header-action-call {
    display: none;
  }
}
.cl_header-btn {
  background-color: var(--clr-common-black);
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.6px;
  border-radius: 60px;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  height: 48px;
}
.cl_header-btn svg {
  width: 14px;
  height: 16px;
}
.cl_header-btn:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
}
.cl_header-menubar {
  color: var(--clr-common-white);
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  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;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  justify-content: center;
  background-color: var(--clr-common-black);
}
.cl_header-menubar:hover {
  color: #fff;
  background-color: var(--clr-theme-primary);
}

.cl_h2_header-area {
  position: absolute;
  left: 0;
  top: 35px;
  width: 100%;
  z-index: 9;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 575px) {
  .cl_h2_header-area {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 20px;
    top: 15px;
  }
}
.cl_h2_header-wrap {
  display: flex;
  align-items: center;
  gap: 120px;
  justify-content: space-between;
}
@media (max-width: 1599px) {
  .cl_h2_header-wrap {
    gap: 80px;
  }
}
@media (max-width: 1399px) {
  .cl_h2_header-wrap {
    gap: 40px;
  }
}
.cl_h2_header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 895px;
  width: 100%;
  gap: 40px;
}
@media (max-width: 1399px) {
  .cl_h2_header-left {
    gap: 30px;
  }
}
.cl_h2_header-logo {
  max-width: 150px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cl_h2_header-logo {
    max-width: 140px;
  }
}
@media (max-width: 1199px) {
  .cl_h2_header-menu {
    display: none;
  }
}
.cl_h2_header-menu nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 35px;
}
@media (max-width: 1399px) {
  .cl_h2_header-menu nav ul {
    gap: 25px;
  }
}
.cl_h2_header-menu nav ul .menu-has-child {
  position: relative;
  z-index: 99;
  text-align: start;
}
.cl_h2_header-menu nav ul li a {
  color: var(--clr-body-text);
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  height: 44px;
  line-height: 44px;
}
.cl_h2_header-menu nav ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -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);
  display: block;
}
.cl_h2_header-menu nav ul li .submenu li {
  display: block;
  margin-right: 0;
  position: relative;
  z-index: 99;
}
.cl_h2_header-menu nav ul li .submenu li a {
  padding: 12px 25px;
  color: var(--clr-common-black);
  -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;
  height: auto;
  line-height: 20px;
}
.cl_h2_header-menu nav ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.cl_h2_header-menu nav ul li .submenu li:hover > a {
  background-color: var(--clr-theme-primary);
  color: #fff;
}
.cl_h2_header-menu nav ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.cl_h2_header-menu nav ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}
.cl_h2_header-menu nav ul li:hover > a {
  color: var(--clr-theme-primary);
}
.cl_h2_header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.cl_h2_header-action-btn {
  width: 48px;
  height: 48px;
  background: var(--clr-body-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  position: relative;
  z-index: 1;
}
.cl_h2_header-action-btn span {
  position: absolute;
  right: -2px;
  top: -5px;
  width: 17px;
  height: 17px;
  background-color: var(--clr-theme-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cl_h2_header-action-btn:hover {
  color: #fff;
  background-color: var(--clr-theme-primary);
}
.cl_h2_header-action-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(0, 0, 0);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.5px;
}
.cl_h2_header-action-call:hover {
  color: var(--clr-theme-primary);
}
.cl_h2_header-action-call i {
  width: 48px;
  height: 48px;
  background: var(--clr-body-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.cl_h2_header-action-call:hover i {
  color: #fff;
  background-color: var(--clr-theme-primary);
}
.cl_h2_header-action-call span {
  margin-right: 10px;
}
@media (max-width: 1599px) {
  .cl_h2_header-action-call span {
    display: none;
  }
}
@media (max-width: 480px) {
  .cl_h2_header-action-call {
    display: none;
  }
}
.cl_h2_header-btn {
  background-color: var(--clr-common-black);
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.6px;
  border-radius: 60px;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  height: 48px;
}
.cl_h2_header-btn svg {
  width: 14px;
  height: 16px;
}
.cl_h2_header-btn:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
}

.cl_h3_header-menu {
  background-color: var(--clr-common-black);
  border-radius: 56px;
  padding-left: 35px;
  padding-right: 35px;
}
.cl_h3_header-menu nav ul li a {
  color: #fff;
}

.cl_h3_header-left {
  max-width: 1035px;
}

@media (max-width: 1599px) {
  .cl_h3_header-cart {
    display: none;
  }
}

@media (max-width: 991px) {
  .cl_h4_header-area {
    padding-left: 0;
    padding-right: 0;
    padding-top: 15px;
    top: 15px;
  }
}
@media (max-width: 575px) {
  .cl_h4_header-area {
    padding-top: 0;
  }
}
.cl_h4_header-left {
  max-width: 911px;
}

.common_width_5 {
  margin-left: 30px;
  margin-right: 30px;
  background-color: #fff;
  padding: 20px 95px 20px;
  border-radius: 60px;
}
@media (max-width: 1599px) {
  .common_width_5 {
    padding: 15px 20px 15px;
  }
}
@media (max-width: 575px) {
  .common_width_5 {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.cl_h5_header-area {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 575px) {
  .cl_h5_header-area {
    padding-top: 15px;
  }
}
.cl_h5_header-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}
.cl_h5_header-left {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  max-width: 750px;
  width: 100%;
}
@media (max-width: 1199px) {
  .cl_h5_header-left {
    gap: 50px;
  }
}
.cl_h5_header-logo {
  max-width: 150px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cl_h5_header-logo {
    max-width: 140px;
  }
}
@media (max-width: 1399px) {
  .cl_h5_header-menu {
    display: none;
  }
}
.cl_h5_header-menu nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}
@media (max-width: 1199px) {
  .cl_h5_header-menu nav ul {
    gap: 20px;
  }
}
.cl_h5_header-menu nav ul .menu-has-child {
  position: relative;
  z-index: 99;
  text-align: start;
}
.cl_h5_header-menu nav ul li a {
  color: var(--clr-body-text);
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  height: 44px;
  line-height: 44px;
}
.cl_h5_header-menu nav ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -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);
  display: block;
}
.cl_h5_header-menu nav ul li .submenu li {
  display: block;
  margin-right: 0;
  position: relative;
  z-index: 99;
}
.cl_h5_header-menu nav ul li .submenu li a {
  padding: 12px 25px;
  color: var(--clr-common-black);
  -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;
  height: auto;
  line-height: 20px;
}
.cl_h5_header-menu nav ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.cl_h5_header-menu nav ul li .submenu li:hover > a {
  background-color: var(--clr-theme-primary);
  color: #fff;
}
.cl_h5_header-menu nav ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.cl_h5_header-menu nav ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}
.cl_h5_header-menu nav ul li:hover > a {
  color: var(--clr-theme-primary);
}
.cl_h5_header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.cl_h5_header-action-btn {
  width: 48px;
  height: 48px;
  background: var(--clr-body-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  position: relative;
  z-index: 1;
}
.cl_h5_header-action-btn span {
  position: absolute;
  right: -2px;
  top: -5px;
  width: 17px;
  height: 17px;
  background-color: var(--clr-theme-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cl_h5_header-action-btn:hover {
  color: #fff;
  background-color: var(--clr-theme-primary);
}
.cl_h5_header-action-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(0, 0, 0);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.5px;
}
.cl_h5_header-action-call:hover {
  color: var(--clr-theme-primary);
}
.cl_h5_header-action-call i {
  width: 48px;
  height: 48px;
  background: var(--clr-body-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.cl_h5_header-action-call:hover i {
  color: #fff;
  background-color: var(--clr-theme-primary);
}
.cl_h5_header-action-call span {
  margin-right: 10px;
}
@media (max-width: 1599px) {
  .cl_h5_header-action-call span {
    display: none;
  }
}
@media (max-width: 480px) {
  .cl_h5_header-action-call {
    display: none;
  }
}
.cl_h5_header-btn {
  background-color: var(--clr-common-black);
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.6px;
  border-radius: 60px;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  height: 48px;
}
.cl_h5_header-btn svg {
  width: 14px;
  height: 16px;
}
.cl_h5_header-btn:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
}

.cl_inner_header-area {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1399px) {
  .cl_inner_header-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1199px) {
  .cl_inner_header-area {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ///////////////////////////////////////////////////////////
03. hero
/////////////////////////////////////////////////////////// */
.cl_hero-wrap {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 24px;
  overflow: hidden;
}
.cl_hero-wrap::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(111, 83, 59, 0.2);
  z-index: 1;
}
.cl_hero-content {
  padding-top: 220px;
  padding-bottom: 240px;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .cl_hero-content {
    padding-top: 180px;
    padding-bottom: 190px;
  }
}
.cl_hero-content h1 {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -5px;
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .cl_hero-content h1 {
    font-size: 86px;
  }
}
@media (max-width: 1199px) {
  .cl_hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .cl_hero-content h1 {
    font-size: 60px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .cl_hero-content h1 {
    font-size: 50px;
    letter-spacing: -4px;
  }
}
@media (max-width: 480px) {
  .cl_hero-content h1 {
    font-size: 35px;
    letter-spacing: -2.2px;
  }
}
.cl_hero-content-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.cl_hero-btn-2 {
  border: 1px solid #fff;
  height: 55px;
  border-radius: 60px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 243px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.6px;
  text-transform: none;
}
.cl_hero-btn-2 svg {
  width: 14px;
  height: 16px;
}
.cl_hero-btn-2:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
  border-color: var(--clr-theme-primary);
}

.cl_theme-btn {
  background-color: var(--clr-theme-primary);
  height: 55px;
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 60px;
  gap: 10px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.6px;
  text-transform: none;
}
.cl_theme-btn svg {
  width: 14px;
  height: 16px;
}
.cl_theme-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.cl_theme-btn-black {
  background-color: var(--clr-common-black);
}
.cl_theme-btn-black:hover {
  background-color: #fff;
  color: var(--clr-common-black);
}

@media (max-width: 575px) {
  .cl_h2_hero-area {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
  }
}
.cl_h2_hero-wrap {
  padding-top: 226px;
  padding-bottom: 210px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 30px 30px 0px 0px;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .cl_h2_hero-wrap {
    padding-top: 200px;
    padding-bottom: 180px;
  }
}
.cl_h2_hero-wrap::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-radius: 30px 30px 0px 0px;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0) 100%);
  height: 100%;
  width: 65%;
  z-index: -1;
}
.cl_h2_hero-content {
  margin-right: 80px;
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .cl_h2_hero-content {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .cl_h2_hero-content {
    padding-left: 18px;
  }
}
@media (max-width: 575px) {
  .cl_h2_hero-content {
    padding-left: 0;
  }
}
.cl_h2_hero-content-subtitle {
  color: rgb(53, 204, 149);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -0.4px;
  display: inline-flex;
  border: 2px dotted var(--clr-theme-primary);
  border-radius: 60px;
  padding: 0 16px;
  height: 25px;
  align-items: center;
  margin-bottom: 20px;
}
.cl_h2_hero-content-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 78px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -3.5px;
  border-bottom: 1px solid rgba(111, 83, 59, 0.1);
  padding-bottom: 18px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cl_h2_hero-content-title {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .cl_h2_hero-content-title {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .cl_h2_hero-content-title {
    font-size: 45px;
    letter-spacing: -3px;
  }
}
@media (max-width: 480px) {
  .cl_h2_hero-content-title {
    font-size: 34px;
    letter-spacing: -2px;
  }
}
.cl_h2_hero-content-text {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 23px;
}
@media (max-width: 575px) {
  .cl_h2_hero-content-text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .cl_h2_hero-content-text {
    font-size: 16px;
  }
}
.cl_h2_hero-content-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  background-color: var(--clr-theme-primary);
  border-radius: 60px;
  height: 55px;
  padding: 0 32px;
}

@media (max-width: 575px) {
  .cl_h3_hero-area {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
  }
}
.cl_h3_hero-wrap {
  padding-top: 300px;
  padding-bottom: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .cl_h3_hero-wrap {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .cl_h3_hero-wrap {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .cl_h3_hero-wrap {
    padding-top: 185px;
    padding-bottom: 120px;
  }
}
.cl_h3_hero-wrap::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  max-width: 915px;
  width: 100%;
  border-radius: 30px 0px 0px 30px;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}
.cl_h3_hero-content {
  margin-right: 80px;
}
@media (max-width: 1399px) {
  .cl_h3_hero-content {
    margin-right: 30px;
  }
}
.cl_h3_hero-content-subtitle {
  color: rgb(53, 204, 149);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -0.4px;
  display: inline-flex;
  border: 2px dotted var(--clr-theme-primary);
  border-radius: 60px;
  padding: 0 16px;
  height: 25px;
  align-items: center;
  margin-bottom: 21px;
}
.cl_h3_hero-content-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 78px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -3.5px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .cl_h3_hero-content-title {
    font-size: 65px;
  }
}
@media (max-width: 1199px) {
  .cl_h3_hero-content-title {
    font-size: 60px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .cl_h3_hero-content-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .cl_h3_hero-content-title {
    font-size: 42px;
    letter-spacing: -2px;
  }
}
@media (max-width: 480px) {
  .cl_h3_hero-content-title {
    font-size: 30px;
    line-height: 1.4;
  }
}
.cl_h3_hero-content-title span {
  color: #fff;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cl_h3_hero-content-title span::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: calc(100% + 10px);
  height: 71px;
  background-color: var(--clr-theme-primary);
  z-index: -1;
}
@media (max-width: 767px) {
  .cl_h3_hero-content-title span::before {
    height: 55px;
  }
}
@media (max-width: 575px) {
  .cl_h3_hero-content-title span::before {
    height: 45px;
  }
}
@media (max-width: 480px) {
  .cl_h3_hero-content-title span::before {
    height: 35px;
  }
}
.cl_h3_hero-content-text {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 42px;
}
@media (max-width: 767px) {
  .cl_h3_hero-content-text {
    font-size: 18px;
  }
  .cl_h3_hero-content-text br {
    display: none;
  }
}
@media (max-width: 480px) {
  .cl_h3_hero-content-text {
    font-size: 16px;
  }
}
.cl_h3_hero-content-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  background-color: var(--clr-theme-primary);
  border-radius: 60px;
  height: 55px;
  padding: 0 32px;
}

@media (max-width: 575px) {
  .cl_h4_hero-area {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
}
.cl_h4_hero-wrap {
  padding-top: 247px;
  padding-bottom: 216px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 30px 30px 0px 0px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cl_h4_hero-wrap {
    padding-top: 195px;
    padding-bottom: 100px;
  }
}
.cl_h4_hero-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  max-width: 50%;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cl_h4_hero-img {
    display: none;
  }
}
.cl_h4_hero-content {
  margin-right: 80px;
}
@media (max-width: 1199px) {
  .cl_h4_hero-content {
    margin-right: 0;
  }
}
.cl_h4_hero-content-subtitle {
  color: rgb(53, 204, 149);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -0.4px;
  display: inline-flex;
  border: 2px dotted var(--clr-theme-primary);
  border-radius: 60px;
  padding: 0 16px;
  height: 25px;
  align-items: center;
  margin-bottom: 20px;
}
.cl_h4_hero-content-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 78px;
  font-weight: 600;
  line-height: 81px;
  letter-spacing: -3.5px;
  border-bottom: 1px solid rgba(111, 83, 59, 0.1);
  padding-bottom: 18px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .cl_h4_hero-content-title {
    font-size: 65px;
  }
}
@media (max-width: 1199px) {
  .cl_h4_hero-content-title {
    font-size: 60px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .cl_h4_hero-content-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .cl_h4_hero-content-title {
    font-size: 45px;
    letter-spacing: -2px;
  }
}
@media (max-width: 480px) {
  .cl_h4_hero-content-title {
    font-size: 36px;
    line-height: 1.4;
  }
}
.cl_h4_hero-content-title span {
  color: var(--clr-theme-primary);
}
.cl_h4_hero-content-text {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 23px;
}
@media (max-width: 767px) {
  .cl_h4_hero-content-text {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .cl_h4_hero-content-text {
    font-size: 16px;
  }
}
.cl_h4_hero-content-bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.cl_h4_hero-content-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  background-color: var(--clr-theme-primary);
  border-radius: 60px;
  height: 55px;
  padding: 0 32px;
}
.cl_h4_hero-content-play {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.cl_h4_hero-content-play span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  border: 3px solid var(--clr-theme-primary);
  color: var(--clr-theme-primary);
  border-radius: 50%;
  font-size: 18px;
}

.cl_h5_hero-area {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 575px) {
  .cl_h5_hero-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_h5_hero-wrap {
  padding-top: 160px;
  padding-bottom: 245px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}
.cl_h5_hero-wrap::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  max-width: 1247px;
  width: 100%;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--clr-body-heading) 8.019%, rgba(111, 83, 59, 0) 100%);
  z-index: -1;
}
.cl_h5_hero-content {
  margin-right: 80px;
}
@media (max-width: 1399px) {
  .cl_h5_hero-content {
    margin-right: 0;
  }
}
.cl_h5_hero-content-subtitle {
  color: rgb(53, 204, 149);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -0.4px;
  display: inline-flex;
  border: 2px dotted var(--clr-theme-primary);
  border-radius: 60px;
  padding: 0 16px;
  height: 25px;
  align-items: center;
  margin-bottom: 21px;
}
.cl_h5_hero-content-title {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 78px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -3.5px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .cl_h5_hero-content-title {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .cl_h5_hero-content-title {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cl_h5_hero-content-title {
    font-size: 45px;
    letter-spacing: -2px;
  }
}
@media (max-width: 480px) {
  .cl_h5_hero-content-title {
    font-size: 38px;
    line-height: 1.4;
  }
}
.cl_h5_hero-content-title span {
  color: #fff;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cl_h5_hero-content-title span::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: calc(100% + 10px);
  height: 71px;
  background-color: var(--clr-theme-primary);
  z-index: -1;
}
.cl_h5_hero-content-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 42px;
}
@media (max-width: 767px) {
  .cl_h5_hero-content-text {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .cl_h5_hero-content-text {
    font-size: 16px;
  }
}
.cl_h5_hero-content-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  background-color: var(--clr-theme-primary);
  border-radius: 60px;
  height: 55px;
  padding: 0 32px;
}

/* ///////////////////////////////////////////////////////////
04. appointment
/////////////////////////////////////////////////////////// */
.cl_appointment-item.cl_appointment-time {
  background-color: var(--clr-theme-primary);
  border-radius: 16px;
  padding: 40px 40px 43px;
}
@media (max-width: 480px) {
  .cl_appointment-item.cl_appointment-time {
    padding: 40px 20px 43px;
  }
}
.cl_appointment-item.cl_appointment-location {
  background-color: var(--clr-common-black);
  border-radius: 16px;
  padding: 40px 40px 50px;
}
@media (max-width: 1399px) {
  .cl_appointment-item.cl_appointment-location {
    padding: 40px 35px 50px;
  }
}
@media (max-width: 480px) {
  .cl_appointment-item.cl_appointment-location {
    padding: 40px 20px 50px;
  }
}
.cl_appointment-item.cl_appointment-contact {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  padding: 40px 40px 45px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .cl_appointment-item.cl_appointment-contact {
    padding: 40px 35px 45px;
  }
}
@media (max-width: 480px) {
  .cl_appointment-item.cl_appointment-contact {
    padding: 40px 20px 45px;
  }
}
.cl_appointment-item.cl_appointment-contact::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: rgba(111, 83, 59, 0.5);
  border-radius: 16px;
}
.cl_appointment-item-title {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 24px;
  margin-bottom: 35px;
}
.cl_appointment-item ul {
  list-style: none;
}
.cl_appointment-item ul li {
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  gap: 30px;
  justify-content: space-between;
}
.cl_appointment-item ul li:not(:last-child) {
  margin-bottom: 20px;
}
.cl_appointment-item ul li p {
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cl_appointment-item ul li p span {
  position: absolute;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.2px;
  background: var(--clr-common-black);
  display: flex;
  height: 22px;
  line-height: 21px;
  right: -58px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 11px;
  border-radius: 40px;
}
.cl_appointment-item p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 28px;
}
.cl_appointment-item-btn {
  border: 1px solid rgba(240, 252, 248, 0.3);
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.6px;
  border-radius: 60px;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  height: 48px;
}
.cl_appointment-item-btn:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
  border-color: var(--clr-theme-primary);
}
.cl_appointment-item-call {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cl_appointment-item-call-icon {
  width: 78px;
  height: 78px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--clr-theme-primary);
}
@media (max-width: 480px) {
  .cl_appointment-item-call-icon {
    width: 65px;
    height: 65px;
  }
}
.cl_appointment-item-call-info span {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  display: block;
  line-height: normal;
  margin-bottom: 7px;
}
.cl_appointment-item-call-info a {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .cl_appointment-item-call-info a {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .cl_appointment-item-call-info a {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .cl_appointment-item-call-info a {
    font-size: 18px;
  }
}
.cl_appointment-item-call-info a:hover {
  color: var(--clr-theme-primary);
}

@media (max-width: 575px) {
  .cl_h2_appointment-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_h2_appointment-wrap {
  background-color: var(--clr-theme-primary);
  border-radius: 0px 0px 30px 30px;
  padding-top: 55px;
  padding-bottom: 55px;
}
.cl_h2_appointment-content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .cl_h2_appointment-content {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cl_h2_appointment-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.cl_h2_appointment-content-left {
  width: 320px;
  flex-shrink: 0;
}
.cl_h2_appointment-content-left h3 {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cl_h2_appointment-content-left h3 {
    font-size: 26px;
  }
}
.cl_h2_appointment-content-left span {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}
.cl_h2_appointment-content-right {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cl_h2_appointment-content-right {
    flex-wrap: wrap;
  }
}
.cl_h2_appointment-content-option {
  width: 100%;
}
@media (max-width: 991px) {
  .cl_h2_appointment-content-option {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .cl_h2_appointment-content-option {
    width: 100%;
  }
}
.cl_h2_appointment-content-option:last-child {
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cl_h2_appointment-content-option:last-child {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .cl_h2_appointment-content-option:last-child {
    width: 100%;
  }
}
.cl_h2_appointment-content-option button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: #fff;
  border-radius: 60px;
  height: 56px;
  padding: 0 32px;
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
@media (max-width: 991px) {
  .cl_h2_appointment-content-option button {
    width: 100%;
    justify-content: center;
  }
}

.nice-select.has-nice-select-2 {
  height: 56px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  border: none;
  border-radius: 60px;
  padding: 0 20px;
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  align-items: center;
}
.nice-select.has-nice-select-2::after {
  border: none;
  content: "\f0d7";
  font-weight: 700;
  font-family: "Font Awesome 6 Pro";
  display: block;
  margin-top: -10px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.nice-select.has-nice-select-2 ul {
  width: 100%;
  border-radius: 8px;
  border: none;
  background-color: var(--clr-common-black);
  margin-top: 4px;
}
.nice-select.has-nice-select-2 ul li {
  color: var(--clr-common-white);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  min-height: 50px;
}
.nice-select.has-nice-select-2 ul li.selected {
  font-weight: 400;
}
.nice-select.has-nice-select-2 ul li:hover {
  background-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}
.nice-select.has-nice-select-2 .option.focus, .nice-select.has-nice-select-2 .nice-select .option.selected.focus {
  background-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}

.cl_h5_appointment-area {
  margin-top: -140px;
  position: relative;
  z-index: 1;
  padding-left: 30px;
  padding-right: 30px;
}
.cl_h5_appointment-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
  padding: 45px 105px 50px 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .cl_h5_appointment-wrap {
    padding: 45px 50px 50px 50px;
  }
}
@media (max-width: 767px) {
  .cl_h5_appointment-wrap {
    padding: 45px 30px 50px 30px;
  }
}
@media (max-width: 480px) {
  .cl_h5_appointment-wrap {
    padding: 45px 25px 50px 25px;
  }
}
.cl_h5_appointment-wrap::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(53, 204, 149, 0.85);
  z-index: -1;
}
.cl_h5_appointment-title {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .cl_h5_appointment-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .cl_h5_appointment-title {
    font-size: 24px;
  }
}
.cl_h5_appointment-form {
  gap: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 345px 145px;
}
@media (max-width: 1199px) {
  .cl_h5_appointment-form {
    grid-template-columns: 1fr 1fr 270px 132px;
  }
}
@media (max-width: 991px) {
  .cl_h5_appointment-form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .cl_h5_appointment-form {
    grid-template-columns: 1fr;
  }
}
.cl_h5_appointment-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cl_h5_appointment-item:last-child {
  padding-left: 13px;
}
@media (max-width: 1199px) {
  .cl_h5_appointment-item:last-child {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cl_h5_appointment-item {
    gap: 30px;
  }
}
.cl_h5_appointment-item input, .cl_h5_appointment-item .nice-select.appointment_select {
  background-color: #fff;
  width: 100%;
  border: none;
  height: 55px;
  border-radius: 8px;
  padding: 0 20px;
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 55px;
}
.cl_h5_appointment-item input::-webkit-input-placeholder, .cl_h5_appointment-item .nice-select.appointment_select::-webkit-input-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_h5_appointment-item input:-moz-placeholder, .cl_h5_appointment-item .nice-select.appointment_select:-moz-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_h5_appointment-item input::-moz-placeholder, .cl_h5_appointment-item .nice-select.appointment_select::-moz-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_h5_appointment-item input:-ms-input-placeholder, .cl_h5_appointment-item .nice-select.appointment_select:-ms-input-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_h5_appointment-item .nice-select.appointment_select {
  margin-bottom: 0;
}
.cl_h5_appointment-item textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  height: 100%;
  padding: 0 20px;
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 55px;
}
.cl_h5_appointment-item textarea::-webkit-input-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_h5_appointment-item textarea:-moz-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_h5_appointment-item textarea::-moz-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_h5_appointment-item textarea:-ms-input-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_h5_appointment-item button {
  border: none;
  background: transparent;
  width: 132px;
  height: 132px;
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}
.cl_h5_appointment-item button img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cl_h5_appointment-item button svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #fff;
}

/* ///////////////////////////////////////////////////////////
05. about
/////////////////////////////////////////////////////////// */
.cl_about-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.cl_about-img {
  overflow: hidden;
  border-radius: 20px;
}
.cl_about-img img {
  width: 100%;
}
@media (max-width: 1399px) {
  .cl_about-content.ml-10 {
    margin-left: 0px;
  }
}
@media (max-width: 1399px) {
  .cl_about-content.mr-80 {
    margin-right: 30px;
  }
}
@media (max-width: 1199px) {
  .cl_about-content.mr-80 {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .cl_about-content {
    padding: 40px 30px;
  }
}
@media (max-width: 480px) {
  .cl_about-content {
    padding: 30px 20px;
  }
}
.cl_about-content-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.cl_about-content-list li {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 575px) {
  .cl_about-content-list li {
    width: 100%;
  }
}
.cl_about-content-list li i {
  font-size: 14px;
  color: var(--clr-theme-primary);
}

.cl_h2_about-img {
  overflow: hidden;
  border-radius: 24px;
}
.cl_h2_about-img img {
  width: 100%;
}
@media (max-width: 1399px) {
  .cl_h2_about-content.ml-10 {
    margin-left: 0px;
  }
}
@media (max-width: 1399px) {
  .cl_h2_about-content.mr-80 {
    margin-right: 0;
  }
}
.cl_h2_about-content-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.cl_h2_about-content-list li {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 575px) {
  .cl_h2_about-content-list li {
    width: 100%;
  }
}
.cl_h2_about-content-list li i {
  font-size: 14px;
  color: var(--clr-theme-primary);
}

.cl_h2_about-img {
  position: relative;
  z-index: 1;
}
.cl_h2_about-img-info {
  background: #fff;
  border: 2px solid var(--clr-theme-primary);
  border-radius: 32px;
  padding: 30px 45px 25px 30px;
}
@media (max-width: 767px) {
  .cl_h2_about-img-info {
    padding: 25px 25px 20px 25px;
  }
}
@media (max-width: 480px) {
  .cl_h2_about-img-info {
    padding: 20px 20px 20px 20px;
  }
}
.cl_h2_about-img-content {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.cl_h2_about-img-content::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--clr-common-lightWhite);
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  z-index: -1;
  border-top-left-radius: 50px;
}
@media (max-width: 480px) {
  .cl_h2_about-img-content::before {
    border-top-left-radius: 40px;
    width: calc(100% + 13px);
    height: calc(100% + 13px);
  }
}
.cl_h2_about-img-content h2 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .cl_h2_about-img-content h2 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .cl_h2_about-img-content h2 {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .cl_h2_about-img-content h2 {
    font-size: 24px;
  }
}
.cl_h2_about-img-content span {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: block;
}
@media (max-width: 480px) {
  .cl_h2_about-img-content span {
    font-size: 14px;
  }
}
.cl_h2_about-img-content img {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .cl_h2_about-img-content img {
    max-width: 120px;
  }
}
@media (max-width: 575px) {
  .cl_h2_about-img-content img {
    max-width: 100px;
    margin-bottom: 22px;
  }
}
@media (max-width: 480px) {
  .cl_h2_about-img-content img {
    max-width: 80px;
    margin-bottom: 17px;
  }
}

.cl_h2_about-img-shape-1 {
  position: absolute;
  right: 0px;
  top: -60px;
  width: 32px;
  height: 32px;
  transform: rotate(180deg);
}
.cl_h2_about-img-shape-1 svg {
  color: var(--clr-common-lightWhite);
}
@media (max-width: 480px) {
  .cl_h2_about-img-shape-1 {
    top: -45px;
  }
}
.cl_h2_about-img-shape-2 {
  position: absolute;
  left: -60px;
  bottom: 0;
  width: 32px;
  height: 32px;
  transform: rotate(180deg);
}
.cl_h2_about-img-shape-2 svg {
  color: var(--clr-common-lightWhite);
}
@media (max-width: 480px) {
  .cl_h2_about-img-shape-2 {
    left: -45px;
  }
}

.cl_h3_about-img img {
  width: 100%;
}
@media (max-width: 1399px) {
  .cl_h3_about-content.ml-10 {
    margin-left: 0px;
  }
}
@media (max-width: 1399px) {
  .cl_h3_about-content.mr-80 {
    margin-right: 0;
  }
}
.cl_h3_about-content-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.cl_h3_about-content-list li {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 575px) {
  .cl_h3_about-content-list li {
    width: 100%;
  }
}
.cl_h3_about-content-list li i {
  font-size: 14px;
  color: var(--clr-theme-primary);
}

.cl_h4_about-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 575px) {
  .cl_h4_about-img {
    flex-wrap: wrap;
  }
}
.cl_h4_about-img img {
  width: 100%;
}
.cl_h4_about-img-inner-2 {
  margin-top: 105px;
}
@media (max-width: 575px) {
  .cl_h4_about-img-inner-2 {
    margin-top: 0;
  }
}
.cl_h4_about-img-content {
  position: absolute;
  top: 23px;
  right: 26px;
  background: var(--clr-theme-primary);
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 60px;
  border: 3px solid #fff;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .cl_h4_about-img-content {
    display: none;
  }
}
@media (max-width: 1399px) {
  .cl_h4_about-content.ml-15 {
    margin-left: 0;
  }
}
.cl_h4_about-content-counter {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 43px;
}
@media (max-width: 480px) {
  .cl_h4_about-content-counter {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
.cl_h4_about-content-counter-item h2 {
  color: rgb(53, 204, 149);
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 6px;
}
.cl_h4_about-content-counter-item span {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display: block;
}

@media (max-width: 1199px) {
  .cl_h5_about-area .cl_about-img.mr-25 {
    margin-right: 0;
  }
}

/* ///////////////////////////////////////////////////////////
06. service
/////////////////////////////////////////////////////////// */
@media (max-width: 1399px) {
  .cl_service-left {
    margin-right: 40px;
  }
}
@media (max-width: 1199px) {
  .cl_service-left {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cl_service-left {
    margin-right: 0;
  }
}
.cl_service-item {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  -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;
  background-color: #fff;
}
.cl_service-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 60%;
  z-index: -1;
  border-radius: 0px 0px 20px 20px;
  background: linear-gradient(180deg, rgba(111, 83, 59, 0) 0.01%, rgb(0, 0, 0) 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;
  opacity: 0;
  visibility: hidden;
}
.cl_service-item-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
.cl_service-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cl_service-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 30px 23px;
  border-radius: 20px;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.cl_service-item-content-info span {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 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;
}
.cl_service-item-content-info h4 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  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;
}
.cl_service-item-content-info h4:hover a {
  color: var(--clr-theme-primary);
}
.cl_service-item-content-icon svg {
  color: var(--clr-body-heading);
  width: 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;
}
.cl_service-item-content-icon a:hover svg {
  color: #fff;
}

.cl_service-item.active {
  min-height: 470px;
}
.cl_service-item.active::before {
  opacity: 1;
  visibility: visible;
}
.cl_service-item.active .cl_service-item-img {
  opacity: 1;
  visibility: visible;
}
.cl_service-item.active .cl_service-item-content-info span {
  color: #fff;
}
.cl_service-item.active .cl_service-item-content-info h4 {
  color: #fff;
}
.cl_service-item.active .cl_service-item-content-info h4:hover a {
  color: var(--clr-theme-primary);
}
.cl_service-item.active .cl_service-item-content-icon svg {
  color: #fff;
}
.cl_service-item.active .cl_service-item-content-icon a:hover svg {
  color: var(--clr-theme-primary);
}

@media (max-width: 575px) {
  .cl_h2_service-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_h2_service-wrap {
  background-color: var(--clr-theme-primary);
  border-radius: 30px;
}
.cl_h2_service-item {
  position: relative;
  z-index: 1;
}
.cl_h2_service-item-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
}
.cl_h2_service-item-img::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  content: "";
  border-radius: 0px 0px 20px 20px;
  background: linear-gradient(180deg, rgba(111, 83, 59, 0) 0.01%, rgb(0, 0, 0) 100%);
}
.cl_h2_service-item-img img {
  width: 100%;
  object-fit: cover;
}
.cl_h2_service-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: absolute;
  left: 30px;
  bottom: 25px;
  right: 30px;
  z-index: 9;
}
.cl_h2_service-item-content-info span {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 3px;
}
.cl_h2_service-item-content-info h4 {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
.cl_h2_service-item-content-info h4:hover a {
  color: var(--clr-theme-primary);
}
.cl_h2_service-item-content-icon svg {
  width: 28px;
  color: #fff;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.cl_h2_service-item-content-icon svg:hover {
  color: var(--clr-theme-primary);
}

.cl_h2_service-nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
}
.cl_h2_service-nav div {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
}

@media (max-width: 575px) {
  .cl_h3_service-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_h3_service-wrap {
  background-color: var(--clr-theme-primary);
  border-radius: 30px;
}
.cl_h3_service-img img {
  width: 100%;
}
.cl_h3_service-content {
  display: flex;
}
@media (max-width: 575px) {
  .cl_h3_service-content {
    flex-wrap: wrap;
  }
}
.cl_h3_service-content-single {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cl_h3_service-content-single {
    width: 100%;
    align-items: flex-start;
  }
}
.cl_h3_service-content-single ul {
  list-style: none;
}
.cl_h3_service-content-single ul li {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  gap: 5px;
  align-items: flex-start;
  margin-bottom: 11px;
}
.cl_h3_service-content-single ul li span {
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
.cl_h3_service-content-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 0 32px;
  color: rgb(53, 204, 149);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  height: 55px;
  gap: 8px;
  border-radius: 60px;
  margin-top: 10px;
}
.cl_h3_service-content-btn:hover {
  background-color: var(--clr-common-black);
  color: #fff;
}

.cl_h4_service-item {
  background: #fff;
  border-radius: 20px;
  padding: 30px 30px 22px;
}
@media (max-width: 767px) {
  .cl_h4_service-item {
    padding: 25px 20px 22px;
  }
}
.cl_h4_service-item-img {
  margin-bottom: 25px;
}
.cl_h4_service-item-img img {
  width: 100%;
  border-radius: 13px;
}
.cl_h4_service-item-content span {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}
.cl_h4_service-item-content h4 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cl_h4_service-item-content h4 {
    font-size: 22px;
  }
}
.cl_h4_service-item-content h4:hover a {
  color: var(--clr-theme-primary);
}
.cl_h4_service-item-content p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}

.cl_h5_service-item {
  position: relative;
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 27px;
  padding-bottom: 23px;
  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;
}
@media (max-width: 991px) {
  .cl_h5_service-item {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .cl_h5_service-item {
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .cl_h5_service-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.cl_h5_service-item:last-child {
  padding-bottom: 0;
}
.cl_h5_service-item-img {
  position: absolute;
  left: 52%;
  top: -15px;
  transform: translateX(-50%);
  border-radius: 16px;
  overflow: hidden;
  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;
}
@media (max-width: 575px) {
  .cl_h5_service-item-img {
    display: none;
  }
}
.cl_h5_service-item-head-subtitle {
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  display: block;
  margin-bottom: 7px;
}
.cl_h5_service-item-head-title {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
}
.cl_h5_service-item-head-title span {
  color: rgb(53, 204, 149);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  display: block;
}
.cl_h5_service-item-text p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}
.cl_h5_service-item-btn a {
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cl_h5_service-item-btn a svg {
  color: var(--clr-body-heading);
  width: 18px;
  -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;
}

.cl_h5_service-item:hover {
  -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;
}
.cl_h5_service-item:hover .cl_h5_service-item-img {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.cl_h5_service-item:hover .cl_h5_service-item-btn a {
  background-color: var(--clr-theme-primary);
}
.cl_h5_service-item:hover .cl_h5_service-item-btn a svg {
  color: #fff;
}

.cl_h5_service-wrap:hover > .cl_h5_service-item:not(:hover) {
  opacity: 0.3;
  -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: 767px) {
  .cl_service_info-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_service_info-main {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 75px;
  border-radius: 20px;
}
.cl_service_info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .cl_service_info-wrap {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
.cl_service_info-item {
  width: 25%;
  text-align: center;
}
@media (max-width: 1199px) {
  .cl_service_info-item {
    width: 33.3333333333%;
  }
}
@media (max-width: 991px) {
  .cl_service_info-item {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  .cl_service_info-item {
    width: 100%;
  }
}
.cl_service_info-item-icon {
  width: 120px;
  height: 120px;
  background: var(--clr-theme-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  margin-bottom: 35px;
}
.cl_service_info-item-icon h3 {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  margin-bottom: 0;
}
.cl_service_info-item-icon span {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-common-black);
  color: rgb(255, 255, 255);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.cl_service_info-item-content h4 {
  color: rgb(22, 22, 22);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 19px;
}
@media (max-width: 767px) {
  .cl_service_info-item-content h4 {
    font-size: 22px;
  }
}
.cl_service_info-item-content p {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cl_service_info-item-content p br {
    display: none;
  }
}

/* ///////////////////////////////////////////////////////////
07. section
/////////////////////////////////////////////////////////// */
.cl_section-subtitle {
  background-color: #fff;
  color: var(--clr-theme-primary);
  padding: 0 16px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 21px;
}
.cl_section-subtitle-light {
 /* background: #fff9e9; */
  background: #fff9e9;
}
.cl_section-subtitle-about {
  font-size: 14px;
  font-weight: 600;
}
.cl_section-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -2.6px;
  text-transform: none;
}
@media (max-width: 1199px) {
  .cl_section-title {
    font-size: 44px;
  }
}
@media (max-width: 991px) {
  .cl_section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .cl_section-title {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  .cl_section-title {
    font-size: 30px;
    letter-spacing: -1px;
  }
}
.cl_section-title-white {
  color: #fff;
}
.cl_section-title-small {
  font-size: 44px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .cl_section-title-small {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .cl_section-title-small {
    font-size: 27px;
    letter-spacing: -1.5px;
  }
}
.cl_section-text {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.cl_section-text-white {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1199px) {
  .cl_section-text br {
    display: none;
  }
}

/* ///////////////////////////////////////////////////////////
08. team
/////////////////////////////////////////////////////////// */
@media (max-width: 575px) {
  .cl_team-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_team-wrap {
  background-color: var(--clr-theme-primary);
  border-radius: 30px;
}
.cl_team-item-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 23px;
}
.cl_team-item-img::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  content: "";
  border-radius: 0px 0px 16px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 100%);
  height: calc(100% - 60px);
  -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;
  opacity: 0;
  visibility: visible;
}
.cl_team-item-img img {
  width: 100%;
}
.cl_team-item-img-social {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  right: 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;
  opacity: 0;
  visibility: visible;
}
.cl_team-item-img-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
}
.cl_team-item-img-social a:hover {
  background: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
}
.cl_team-item-content {
  text-align: center;
}
.cl_team-item-content h4 {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cl_team-item-content span {
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  display: block;
}

.cl_team-item:hover .cl_team-item-img::before {
  opacity: 1;
  visibility: visible;
}
.cl_team-item:hover .cl_team-item-img-social {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.cl_h2_team-wrap {
  background-color: var(--clr-theme-primary);
  border-radius: 30px;
}
.cl_h2_team-item-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 23px;
}
.cl_h2_team-item-img::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  content: "";
  border-radius: 0px 0px 16px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 100%);
  height: calc(100% - 60px);
  -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;
  opacity: 0;
  visibility: visible;
}
.cl_h2_team-item-img img {
  width: 100%;
}
.cl_h2_team-item-img-social {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  right: 0;
  opacity: 0;
  visibility: visible;
  -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;
}
.cl_h2_team-item-img-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
}
.cl_h2_team-item-img-social a:hover {
  background: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
}
.cl_h2_team-item-content {
  text-align: center;
}
.cl_h2_team-item-content h4 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cl_h2_team-item-content span {
  color: rgba(111, 83, 59, 0.3);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  display: block;
}

.cl_h2_team-item:hover .cl_h2_team-item-img::before {
  opacity: 1;
  visibility: visible;
}
.cl_h2_team-item:hover .cl_h2_team-item-img-social {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.cl_inner_team-item-img {
  width: 205px;
  height: 205px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -105px;
}
.cl_inner_team-item-content {
  background: #fff;
  padding: 125px 30px 30px;
  border-radius: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .cl_inner_team-item-content {
    padding: 125px 20px 30px;
  }
}
.cl_inner_team-item-content-title {
  color: rgb(22, 22, 22);
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 7px;
}
@media (max-width: 767px) {
  .cl_inner_team-item-content-title {
    font-size: 22px;
  }
}
.cl_inner_team-item-content-title:hover a {
  color: var(--clr-theme-primary);
}
.cl_inner_team-item-content span {
  color: rgb(53, 204, 149);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
  display: block;
  margin-bottom: 14px;
}
.cl_inner_team-item-content-social {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.cl_inner_team-item-content-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 22, 22, 0.1);
  color: #161616;
}
.cl_inner_team-item-content-social a:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-primary);
}

.cl_team_details-img img {
  width: 100%;
  border-radius: 8px;
}
@media (max-width: 1399px) {
  .cl_team_details-wrap.ml-70 {
    margin-left: 50px;
  }
}
@media (max-width: 1199px) {
  .cl_team_details-wrap.ml-70 {
    margin-left: 10px;
  }
}
@media (max-width: 991px) {
  .cl_team_details-wrap.ml-70 {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .cl_team_details-wrap.mr-45 {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .cl_team_details-wrap.mr-45 {
    margin-right: 0;
  }
}
.cl_team_details-contact {
  display: grid;
  align-items: center;
  gap: 3px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 480px) {
  .cl_team_details-contact {
    grid-template-columns: 1fr;
  }
}
.cl_team_details-contact-item {
  padding: 20px 25px 20px;
  background-color: #fff;
}
.cl_team_details-contact-item span {
  display: block;
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.cl_team_details-contact-item a, .cl_team_details-contact-item p {
  display: block;
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}
.cl_team_details-contact-item a:hover {
  color: var(--clr-theme-primary);
}

.cl_skill-wrap {
  background-color: #fff;
  border-radius: 20px;
  padding: 80px 100px 80px 50px;
}
@media (max-width: 1199px) {
  .cl_skill-wrap {
    padding: 80px 50px 80px 50px;
  }
}
@media (max-width: 480px) {
  .cl_skill-wrap {
    padding: 50px 30px 50px 30px;
  }
}
@media (max-width: 1399px) {
  .cl_skill-content.ml-80 {
    margin-left: 50px;
  }
}
@media (max-width: 1199px) {
  .cl_skill-content.ml-80 {
    margin-left: 10px;
  }
}
@media (max-width: 991px) {
  .cl_skill-content.ml-80 {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .cl_skill-content.mr-45 {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .cl_skill-content.mr-45 {
    margin-right: 0;
  }
}
.cl_skill-content-progress {
  margin-bottom: 24px;
}
.cl_skill-content-progress .progress-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}
.cl_skill-content-progress .progress-title p {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0;
}
.cl_skill-content-progress .progress-title span {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: block;
}
.cl_skill-content-progress .progress {
  height: 10px;
  border-radius: 20px;
  background-color: rgba(53, 204, 149, 0.3);
}
.cl_skill-content-progress .progress-bar {
  background-color: var(--clr-theme-primary);
  border-radius: 20px;
}

/* ///////////////////////////////////////////////////////////
09. price
/////////////////////////////////////////////////////////// */
.cl_price-item {
  background: #fff;
  border-radius: 20px;
  padding: 35px 40px 40px;
}
@media (max-width: 991px) {
  .cl_price-item {
    padding: 35px 30px 40px;
  }
}
.cl_price-item-subtitle {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin-bottom: 10px;
  display: block;
}
.cl_price-item-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 25px;
}
.cl_price-item-amount {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 34px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-bottom: 45px;
}
.cl_price-item-amount span {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
.cl_price-item-feature {
  list-style: none;
  margin-bottom: 37px;
}
.cl_price-item-feature li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 16px;
}
.cl_price-item-feature li i {
  font-size: 13px;
  color: var(--clr-theme-primary);
}
.cl_price-item-btn a {
  width: 100%;
  height: 52px;
  border: 1px solid var(--clr-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 60px;
}
.cl_price-item-btn a:hover {
  background-color: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
  color: #fff;
}

.cl_price-item.active {
  background-color: var(--clr-theme-primary);
}
.cl_price-item.active .cl_price-item-subtitle {
  color: #fff;
}
.cl_price-item.active .cl_price-item-title {
  color: #fff;
}
.cl_price-item.active .cl_price-item-amount {
  color: #fff;
}
.cl_price-item.active .cl_price-item-amount span {
  color: rgba(255, 255, 255, 0.7);
}
.cl_price-item.active .cl_price-item-feature li {
  color: #fff;
}
.cl_price-item.active .cl_price-item-feature li i {
  color: #fff;
}
.cl_price-item.active .cl_price-item-btn a {
  background-color: #fff;
  border-color: #fff;
}
.cl_price-item.active .cl_price-item-btn a:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.cl_h3_price-tab {
  border: none;
  width: max-content;
  position: relative;
  z-index: 1;
  list-style: none;
}
.cl_h3_price-tab::before {
  position: absolute;
  left: 0;
  bottom: -9px;
  content: "";
  height: 1px;
  width: 100%;
  background: rgba(111, 83, 59, 0.1);
}
.cl_h3_price-tab .nav-item {
  border: none;
  position: relative;
  z-index: 1;
}
.cl_h3_price-tab .nav-item:not(:last-child) {
  margin-right: 12px;
  padding-right: 12px;
}
.cl_h3_price-tab .nav-item:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 13px;
  width: 1px;
  background: rgba(111, 83, 59, 0.1);
}
.cl_h3_price-tab .nav-item .nav-link {
  background: transparent;
  border: none;
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.cl_h3_price-tab .nav-item .nav-link.active {
  color: var(--clr-body-heading);
}
.cl_h3_price-tab .nav-item .nav-link.active::before {
  position: absolute;
  left: 0;
  bottom: -9px;
  content: "";
  height: 3px;
  width: 100%;
  background: #35CC95;
}

/* ///////////////////////////////////////////////////////////
10. testimonial
/////////////////////////////////////////////////////////// */
@media (max-width: 575px) {
  .cl_testimonial-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_testimonial-wrap {
  background-color: #fff;
  border-radius: 30px;
}
.cl_testimonial-item {
  border-radius: 20px;
  background: rgb(240, 252, 248);
  padding: 50px 50px 50px 60px;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cl_testimonial-item {
    padding: 40px 40px 40px 50px;
  }
}
@media (max-width: 480px) {
  .cl_testimonial-item {
    padding: 50px 20px 50px 20px;
  }
}
.cl_testimonial-item-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}
.cl_testimonial-item-rating ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cl_testimonial-item-rating ul li {
  font-size: 15px;
  color: #FDCF00;
}
.cl_testimonial-item-rating p {
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 26px;
  color: var(--clr-body-heading);
}
.cl_testimonial-item-rating p span {
  color: rgba(111, 83, 59, 0.3);
}
.cl_testimonial-item-text {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .cl_testimonial-item-text {
    font-size: 16px;
  }
}
.cl_testimonial-item-quote {
  position: absolute;
  right: 35px;
  top: -50px;
  border: 15px solid #fff;
  border-radius: 50%;
}
@media (max-width: 480px) {
  .cl_testimonial-item-quote {
    border-width: 10px;
    top: -37px;
    right: 30px;
  }
}
.cl_testimonial-item-quote span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: var(--clr-theme-primary);
  border-radius: 50%;
  font-size: 40px;
  color: #fff;
}
@media (max-width: 480px) {
  .cl_testimonial-item-quote span {
    width: 60px;
    height: 60px;
  }
}
.cl_testimonial-item-admin {
  border-top: 1px solid rgba(111, 83, 59, 0.05);
  padding-top: 25px;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cl_testimonial-item-admin img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
}
.cl_testimonial-item-admin-info h5 {
  color: rgb(0, 0, 0);
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.cl_testimonial-item-admin-info span {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
  display: block;
}

@media (max-width: 575px) {
  .cl_h3_testimonial-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_h3_testimonial-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .cl_h3_testimonial-wrap.pt-150 {
    padding-top: 100px;
  }
  .cl_h3_testimonial-wrap.pb-200 {
    padding-bottom: 100px;
  }
}
.cl_h3_testimonial-main {
  width: 575px;
  margin-left: auto;
  position: relative;
  z-index: 1;
  margin-right: -20px;
}
@media (max-width: 767px) {
  .cl_h3_testimonial-main {
    width: 100%;
    margin-right: 0;
  }
}
.cl_h3_testimonial-main .cl_testimonial-item {
  background-color: #fff;
  margin-right: 20px;
}
.cl_h3_testimonial-main .cl_testimonial-item-quote {
  border: 16px solid rgba(240, 252, 248, 0.5);
  right: -20px;
}

.cl_h3_testimonial-pagination {
  position: absolute;
  right: 55px;
  bottom: 50px;
  z-index: 9;
}

.cl_h4_testimonial-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.cl_h4_testimonial-wrap {
  background-color: var(--clr-theme-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .cl_h4_testimonial-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .cl_h4_testimonial-wrap .cl_section-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .cl_h4_testimonial-wrap .cl_section-title {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  .cl_h4_testimonial-wrap .cl_section-title {
    font-size: 30px;
    letter-spacing: -1px;
  }
}
.cl_h4_testimonial-img {
  width: 553px;
  flex-shrink: 0;
  height: 100%;
}
@media (max-width: 1199px) {
  .cl_h4_testimonial-img {
    width: 48%;
  }
}
@media (max-width: 991px) {
  .cl_h4_testimonial-img {
    width: 100%;
  }
}
.cl_h4_testimonial-img img {
  width: 100%;
  border-radius: 20px;
}
.cl_h4_testimonial-content {
  padding: 30px 60px;
  width: 100%;
  max-width: calc(100% - 573px);
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .cl_h4_testimonial-content {
    padding: 30px 25px;
    max-width: calc(52% - 20px);
  }
}
@media (max-width: 991px) {
  .cl_h4_testimonial-content {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .cl_h4_testimonial-content {
    padding: 30px 20px;
  }
}
.cl_h4_testimonial-main {
  position: relative;
  z-index: 1;
}
.cl_h4_testimonial-box {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 1399px) {
  .cl_h4_testimonial-box {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .cl_h4_testimonial-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cl_h4_testimonial-box {
    flex-wrap: wrap;
  }
}
.cl_h4_testimonial-quote span {
  display: block;
  font-size: 96px;
  line-height: 1;
  color: #fff;
  margin-top: -15px;
}
@media (max-width: 1199px) {
  .cl_h4_testimonial-quote span {
    font-size: 56px;
    margin-top: -8px;
  }
}
.cl_h4_testimonial-item {
  position: relative;
  z-index: 1;
}
.cl_h4_testimonial-item-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}
.cl_h4_testimonial-item-rating ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cl_h4_testimonial-item-rating ul li {
  font-size: 15px;
  color: #FDCF00;
}
.cl_h4_testimonial-item-rating p {
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
}
.cl_h4_testimonial-item-rating p span {
  color: rgba(240, 252, 248, 0.5);
}
.cl_h4_testimonial-item-text {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
}
.cl_h4_testimonial-item-admin {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cl_h4_testimonial-item-admin img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
}
.cl_h4_testimonial-item-admin-info h5 {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.cl_h4_testimonial-item-admin-info span {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
  display: block;
}

.cl_inner_testimonial-area .cl_testimonial-item {
  background-color: #fff;
}
.cl_inner_testimonial-area .cl_testimonial-item-quote {
  border: 15px solid #fff9e9;
}

/* ///////////////////////////////////////////////////////////
11. cta
/////////////////////////////////////////////////////////// */
.cl_cta-area {
  margin-top: -130px;
  position: relative;
  z-index: 1;
}
.cl_cta-wrap {
  padding: 80px 45px 80px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .cl_cta-wrap {
    padding: 50px 45px 50px 45px;
  }
}
@media (max-width: 991px) {
  .cl_cta-wrap {
    flex-wrap: wrap;
    row-gap: 30px;
  }
}
@media (max-width: 480px) {
  .cl_cta-wrap {
    padding: 50px 25px 50px 25px;
  }
}
.cl_cta-form {
  position: relative;
  z-index: 1;
  max-width: 490px;
  width: 100%;
}
@media (max-width: 1199px) {
  .cl_cta-form {
    max-width: 420px;
  }
}
.cl_cta-form input {
  width: 100%;
  border: none;
  border-radius: 60px;
  height: 65px;
  padding-left: 30px;
  padding-right: 185px;
}
@media (max-width: 480px) {
  .cl_cta-form input {
    margin-bottom: 10px;
    padding-right: 30px;
    height: 55px;
  }
}
.cl_cta-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  border: none;
  background-color: var(--clr-theme-primary);
  height: 55px;
  border-radius: 60px;
  transform: translateY(-50%);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 480px) {
  .cl_cta-form button {
    position: relative;
    top: 0;
    transform: none;
    right: 0;
  }
}
.cl_cta-content h2 {
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0;
}
.cl_cta-content h2 span {
  color: var(--clr-theme-primary);
  display: block;
}
@media (max-width: 1199px) {
  .cl_cta-content h2 {
    font-size: 44px;
  }
  .cl_cta-content h2 span {
    display: inline-block;
  }
}
@media (max-width: 1199px) {
  .cl_cta-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .cl_cta-content h2 {
    font-size: 32px;
  }
}

.cl_h2_cta-area {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .cl_h2_cta-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_h2_cta-main {
  padding: 80px 45px 80px 80px;
  padding: 80px 0;
  border-radius: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 480px) {
  .cl_h2_cta-main {
    padding: 60px 0 60px 0;
  }
}
.cl_h2_cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .cl_h2_cta-wrap {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.cl_h2_cta-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .cl_h2_cta-content {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.cl_h2_cta-content img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 1399px) {
  .cl_h2_cta-content img {
    width: 160px;
    height: 160px;
  }
}
.cl_h2_cta-content h2 {
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .cl_h2_cta-content h2 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  .cl_h2_cta-content h2 {
    font-size: 40px;
  }
  .cl_h2_cta-content h2 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .cl_h2_cta-content h2 {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .cl_h2_cta-content h2 {
    font-size: 28px;
    text-align: center;
  }
}
.cl_h2_cta-content h2 span {
  color: var(--clr-theme-primary);
}
@media (max-width: 991px) {
  .cl_h2_cta-content h2 span {
    display: block;
  }
}
.cl_h2_cta-btn {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  border: none;
  background-color: var(--clr-theme-primary);
  height: 55px;
  border-radius: 60px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cl_h2_cta-btn:hover {
  background-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}

/* ///////////////////////////////////////////////////////////
12. blog
/////////////////////////////////////////////////////////// */
.cl_blog_big-item {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cl_blog_big-item {
    flex-wrap: wrap;
  }
}
.cl_blog_big-item-img {
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cl_blog_big-item-img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cl_blog_big-item-img {
    width: 100%;
  }
}
.cl_blog_big-item-img img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.cl_blog_big-item-content {
  padding: 40px 40px;
}
@media (max-width: 1399px) {
  .cl_blog_big-item-content {
    padding-left: 20px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cl_blog_big-item-content {
    padding: 18px 30px 30px;
  }
}
@media (max-width: 480px) {
  .cl_blog_big-item-content {
    padding: 18px 20px 30px;
  }
}
.cl_blog_big-item-content-meta {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
.cl_blog_big-item-content-meta span {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: block;
  position: relative;
  z-index: 1;
}
.cl_blog_big-item-content-meta span a {
  color: rgba(111, 83, 59, 0.5);
}
.cl_blog_big-item-content-meta span:not(:last-child) {
  margin-right: 8px;
  padding-right: 12px;
}
.cl_blog_big-item-content-meta span:not(:last-child) ::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 4px;
  background: var(--clr-theme-primary);
  border-radius: 50%;
}
.cl_blog_big-item-content h3 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .cl_blog_big-item-content h3 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .cl_blog_big-item-content h3 {
    font-size: 24px;
  }
}
.cl_blog_big-item-content h3:hover a {
  color: var(--clr-theme-primary);
}
.cl_blog_big-item-content p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 33px;
}
.cl_blog_big-item-content-btn {
  height: 55px;
  display: inline-flex;
  background-color: var(--clr-theme-primary);
  align-items: center;
  padding: 0 32px;
  border-radius: 60px;
  gap: 5px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.cl_blog_big-item-content-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}

.cl_blog_big-item:hover .cl_blog_big-item-img img {
  transform: scale(1.08);
}

.cl_blog-item {
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 30px 30px;
}
@media (max-width: 480px) {
  .cl_blog-item {
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 30px 20px;
  }
}
@media (max-width: 1399px) {
  .cl_blog-item {
    padding: 21px 20px;
  }
}
@media (max-width: 1199px) {
  .cl_blog-item {
    padding: 30px 30px;
    margin-bottom: 20px;
  }
}
.cl_blog-item-img {
  flex-shrink: 0;
}
.cl_blog-item-img img {
  width: 100%;
}
.cl_blog-item-content-meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cl_blog-item-content-meta span {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: block;
  position: relative;
  z-index: 1;
}
.cl_blog-item-content-meta span a {
  color: rgba(111, 83, 59, 0.5);
}
.cl_blog-item-content-meta span:not(:last-child) {
  margin-right: 8px;
  padding-right: 12px;
}
.cl_blog-item-content-meta span:not(:last-child) ::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 4px;
  background: var(--clr-theme-primary);
  border-radius: 50%;
}
.cl_blog-item-content h4 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}
.cl_blog-item-content h4:hover a {
  color: var(--clr-theme-primary);
}

.cl_h2_blog-item-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.cl_h2_blog-item-img img {
  width: 100%;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.cl_h2_blog-item-img span {
  position: absolute;
  left: 20px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -5%;
  top: 20px;
  background: var(--clr-theme-primary);
  height: 25px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 60px;
}
.cl_h2_blog-item-content {
  background-color: #fff;
  padding: 20px 20px 29px;
  border-radius: 0 0 20px 20px;
}
.cl_h2_blog-item-content-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.cl_h2_blog-item-content-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-theme-primary);
  font-size: 14px;
}
.cl_h2_blog-item-content-meta span i {
  margin-top: -2px;
}
.cl_h2_blog-item-content-meta span a {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.5px;
}
.cl_h2_blog-item-content h4 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cl_h2_blog-item-content h4 {
    font-size: 20px;
  }
}
.cl_h2_blog-item-content h4:hover a {
  color: var(--clr-theme-primary);
}

.cl_h2_blog-item:hover .cl_h2_blog-item-img img {
  transform: scale(1.08);
}

.cl_h3_blog-item {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cl_h3_blog-item {
    flex-wrap: wrap;
  }
}
.cl_h3_blog-item-img {
  width: 302px;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cl_h3_blog-item-img {
    width: 100%;
  }
}
.cl_h3_blog-item-img img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
  object-fit: cover;
}
.cl_h3_blog-item-content {
  background: #fff;
  height: 100%;
  padding: 30px 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 480px) {
  .cl_h3_blog-item-content {
    padding: 30px 25px 35px;
  }
}
.cl_h3_blog-item-content-meta {
  display: flex;
  align-items: center;
  margin-bottom: 19px;
}
.cl_h3_blog-item-content-meta span {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: block;
  position: relative;
  z-index: 1;
}
.cl_h3_blog-item-content-meta span a {
  color: rgba(111, 83, 59, 0.5);
}
.cl_h3_blog-item-content-meta span:not(:last-child) {
  margin-right: 8px;
  padding-right: 12px;
}
.cl_h3_blog-item-content-meta span:not(:last-child) ::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 4px;
  background: var(--clr-theme-primary);
  border-radius: 50%;
}
.cl_h3_blog-item-content-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .cl_h3_blog-item-content-title {
    font-size: 22px;
  }
}
.cl_h3_blog-item-content-title:hover a {
  color: var(--clr-theme-primary);
}
.cl_h3_blog-item-content p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 24px;
}
.cl_h3_blog-item-content-btn {
  color: rgb(53, 204, 149);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  width: max-content;
}
.cl_h3_blog-item-content-btn::before {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--clr-theme-primary);
  -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;
}
.cl_h3_blog-item-content-btn:hover {
  color: var(--clr-common-black);
}
.cl_h3_blog-item-content-btn:hover::before {
  background-color: var(--clr-common-black);
}

.cl_h3_blog-item:hover .cl_h3_blog-item-img img {
  transform: scale(1.08);
}

.cl_blog_classic-item {
  border-radius: 20px;
  padding: 30px 30px 30px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cl_blog_classic-item {
    padding: 30px 20px 30px;
  }
}
.cl_blog_classic-item-img {
  overflow: hidden;
  border-radius: 20px;
}
.cl_blog_classic-item-img img {
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
  width: 100%;
  border-radius: 20px;
}
.cl_blog_classic-item-content {
  background-color: #fff;
  padding-top: 31px;
  border-radius: 0 0 20px 20px;
}
.cl_blog_classic-item-content-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.cl_blog_classic-item-content-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-theme-primary);
  font-size: 14px;
}
.cl_blog_classic-item-content-meta span i {
  margin-top: -2px;
}
.cl_blog_classic-item-content-meta span a {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.5px;
}
.cl_blog_classic-item-content h4 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .cl_blog_classic-item-content h4 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .cl_blog_classic-item-content h4 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .cl_blog_classic-item-content h4 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .cl_blog_classic-item-content h4 {
    font-size: 22px;
  }
}
.cl_blog_classic-item-content h4:hover a {
  color: var(--clr-theme-primary);
}
.cl_blog_classic-item-content p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 22px;
}

.cl_blog_classic-item:hover .cl_blog_classic-item-img img {
  transform: scale(1.08);
}

.cl_blog-widget {
  background-color: #fff;
  padding: 40px 30px 40px;
  border-radius: 20px;
}
.cl_blog-widget-author {
  text-align: center;
  padding: 0 20px;
}
.cl_blog-widget-author img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  margin-bottom: 30px;
}
.cl_blog-widget-author-title {
  color: rgb(25, 25, 25);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 23px;
}
.cl_blog-widget-author p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
  margin-bottom: 35px;
}
.cl_blog-widget-author-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.cl_blog-widget-author-social a {
  font-size: 18px;
  color: var(--clr-theme-primary);
  display: block;
}
.cl_blog-widget form {
  position: relative;
  z-index: 1;
}
.cl_blog-widget form input {
  width: 100%;
  height: 56px;
  line-height: 56px;
  border: 1px solid rgba(111, 83, 59, 0.08);
  padding: 0 20px;
  background: #fff9e9;
  border-radius: 60px;
  color: rgb(133, 133, 133);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  padding-right: 60px;
}
.cl_blog-widget form button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--clr-theme-primary);
  color: #fff;
  font-size: 18px;
  padding: 0;
  margin: 0;
}
.cl_blog-widget-title {
  color: rgb(25, 25, 25);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}
.cl_blog-widget ul {
  list-style: none;
}
.cl_blog-widget ul li:not(:last-child) {
  margin-bottom: 18px;
}
.cl_blog-widget ul li a {
  color: rgb(22, 22, 22);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.cl_blog-widget ul li a span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cl_blog-widget ul li a span i {
  font-weight: 600;
  font-size: 14px;
}
.cl_blog-widget ul li a:hover {
  color: var(--clr-theme-primary);
}
.cl_blog-widget-post {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 480px) {
  .cl_blog-widget-post {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
.cl_blog-widget-post:not(:last-child) {
  border-bottom: 1px solid rgba(22, 22, 22, 0.07);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.cl_blog-widget-post-img {
  flex-shrink: 0;
}
.cl_blog-widget-post-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.cl_blog-widget-post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cl_blog-widget-post-meta span {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: block;
  position: relative;
  z-index: 1;
}
.cl_blog-widget-post-meta span a {
  color: rgba(111, 83, 59, 0.5);
}
.cl_blog-widget-post-meta span:not(:last-child) {
  margin-right: 8px;
  padding-right: 12px;
}
.cl_blog-widget-post-meta span:not(:last-child) ::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 4px;
  background: var(--clr-theme-primary);
  border-radius: 50%;
}
.cl_blog-widget-post-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 0;
}
.cl_blog-widget-post-title:hover a {
  color: var(--clr-theme-primary);
}
.cl_blog-widget-tag {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 8px;
}
.cl_blog-widget-tag a {
  height: 32px;
  border: 1px solid rgba(133, 133, 133, 0.2);
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 60px;
  color: rgb(133, 133, 133);
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
}
.cl_blog-widget-tag a:hover {
  background: var(--clr-theme-primary);
  color: #fff;
  border-color: transparent;
}

.cl_blog_details-left {
  background-color: #fff;
  padding: 30px 30px;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .cl_blog_details-left {
    padding: 30px 20px;
  }
}
.cl_blog_details-content-img {
  position: relative;
  z-index: 1;
}
.cl_blog_details-content-img img {
  border-radius: 20px;
  width: 100%;
}
.cl_blog_details-content-img-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  height: 25px;
  display: flex;
  align-items: center;
  border-radius: 60px;
  background-color: var(--clr-theme-primary);
  padding: 0 10px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -0.6px;
}
.cl_blog_details-content-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .cl_blog_details-content-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .cl_blog_details-content-title {
    font-size: 24px;
  }
}
.cl_blog_details-content-text {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.cl_blog_details-content blockquote {
  background: #fff9e9;
  padding: 36px 26px 30px;
  border-radius: 8px;
  border: 2px solid var(--clr-theme-primary);
  margin: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cl_blog_details-content blockquote svg {
  color: var(--clr-theme-primary);
  margin-bottom: 20px;
}
.cl_blog_details-content blockquote p {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .cl_blog_details-content blockquote p {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .cl_blog_details-content blockquote p {
    font-size: 18px;
  }
}
.cl_blog_details-content blockquote span {
  display: flex;
  justify-content: end;
}
.cl_blog_details-content blockquote cite {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-style: normal;
  position: relative;
  z-index: 1;
  display: block;
}
.cl_blog_details-content blockquote cite::before {
  position: absolute;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: rgba(111, 83, 59, 0.3);
  content: "";
}
.cl_blog_details-content-bottom {
  border-top: 1px solid rgba(111, 83, 59, 0.08);
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .cl_blog_details-content-bottom {
    flex-wrap: wrap;
  }
}
.cl_blog_details-content-list {
  list-style: none;
}
.cl_blog_details-content-list li {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cl_blog_details-content-list li:last-child {
  margin-bottom: 0;
}
.cl_blog_details-content-list li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cl_blog_details-content-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cl_blog_details-content-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(111, 83, 59, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  color: var(--clr-common-black);
}
.cl_blog_details-content-social a:hover {
  background: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.cl_blog_details-comment {
  background: #fff9e9;
  border-radius: 20px;
  padding: 40px 35px 35px;
  display: flex;
  align-items: start;
  gap: 20px;
}
@media (max-width: 767px) {
  .cl_blog_details-comment {
    padding: 40px 30px 35px;
  }
}
@media (max-width: 575px) {
  .cl_blog_details-comment {
    flex-wrap: wrap;
  }
}
.cl_blog_details-comment img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cl_blog_details-comment-info-title {
  color: rgb(25, 25, 25);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 18px;
}
.cl_blog_details-comment-info-text {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
  margin-bottom: 20px;
}
.cl_blog_details-comment-social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cl_blog_details-comment-social a {
  font-size: 18px;
  color: var(--clr-theme-primary);
  display: block;
}
.cl_blog_details-reply-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .cl_blog_details-reply-title {
    font-size: 28px;
  }
}
.cl_blog_details-reply p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 25px;
}
.cl_blog_details-reply-item label {
  display: flex;
  align-items: center;
  gap: 1px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 5px;
}
.cl_blog_details-reply-item label span {
  color: var(--clr-theme-primary);
}
.cl_blog_details-reply-item input,
.cl_blog_details-reply-item textarea {
  background: #fff9e9;
  border: 1px solid rgba(111, 83, 59, 0.08);
  border-radius: 58px;
  height: 56px;
  line-height: 56px;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(111, 83, 59, 0.5);
}
.cl_blog_details-reply-item input:focus,
.cl_blog_details-reply-item textarea:focus {
  border-color: var(--clr-theme-primary);
}
.cl_blog_details-reply-item textarea {
  margin-bottom: 0;
  height: 220px;
  border-radius: 20px;
  resize: none;
}
.cl_blog_details-reply-item button {
  margin-top: 27px;
  border: none;
  background-color: var(--clr-theme-primary);
  height: 55px;
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 60px;
  gap: 10px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.6px;
  text-transform: none;
}
.cl_blog_details-reply-item button svg {
  width: 14px;
  height: 16px;
}
.cl_blog_details-reply-item button:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}

/* ///////////////////////////////////////////////////////////
13. choose
/////////////////////////////////////////////////////////// */
.cl_h2_choose-item-icon {
  width: 70px;
  height: 70px;
  background: rgba(53, 204, 149, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.cl_h2_choose-item-icon svg {
  -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;
  width: 45px;
  color: var(--clr-theme-primary);
}
.cl_h2_choose-item-content-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.cl_h2_choose-item-content-title:hover a {
  color: var(--clr-theme-primary);
}
.cl_h2_choose-item-content p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}

.cl_h2_choose-item:hover .cl_h2_choose-item-icon {
  background-color: var(--clr-theme-primary);
}
.cl_h2_choose-item:hover .cl_h2_choose-item-icon svg {
  color: #fff;
}

@media (max-width: 575px) {
  .cl_h5_choose-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_h5_choose-wrap {
  background-color: var(--clr-theme-primary);
  border-radius: 30px;
}
.cl_h5_choose-img {
  position: relative;
  z-index: 1;
}
.cl_h5_choose-img-inner {
  width: 100%;
  border-radius: 20px;
}
.cl_h5_choose-img-content {
  position: absolute;
  right: -32px;
  bottom: 65px;
  background-color: #fff;
  border: 2px solid var(--clr-theme-primary);
  padding: 25px 20px 15px;
  border-radius: 16px;
}
@media (max-width: 575px) {
  .cl_h5_choose-img-content {
    right: -15px;
  }
}
.cl_h5_choose-img-content img {
  margin-bottom: 15px;
}
.cl_h5_choose-img-content p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}
.cl_h5_choose-img-content p span {
  color: var(--clr-body-heading);
}
@media (max-width: 1199px) {
  .cl_h5_choose-content.ml-35 {
    margin-left: 15px;
  }
}
@media (max-width: 991px) {
  .cl_h5_choose-content.ml-35 {
    margin-left: 0;
  }
}

.cl_h5_choose-content-list {
  list-style: none;
  max-width: 505px;
  margin-bottom: 44px;
}

.cl_h5_choose-content-list li {
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 480px) {
  .cl_h5_choose-content-list li {
    font-size: 16px;
  }
}

.cl_h5_choose-content-list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 11px;
  padding-bottom: 13px;
}

/* ///////////////////////////////////////////////////////////
14. contact
/////////////////////////////////////////////////////////// */
.cl_h2_contact-wrap {
  display: flex;
}
@media (max-width: 1199px) {
  .cl_h2_contact-wrap {
    flex-wrap: wrap;
  }
}
.cl_h2_contact-img {
  width: 100%;
  height: 100%;
  max-width: 948px;
  margin-left: -312px;
}
@media (max-width: 1399px) {
  .cl_h2_contact-img {
    min-height: 710px;
  }
}
@media (max-width: 1199px) {
  .cl_h2_contact-img {
    width: 100%;
    margin-left: 0;
    min-height: auto;
  }
}
.cl_h2_contact-img img {
  width: 100%;
  height: 100%;
  border-radius: 24px 0 0 24px;
  object-fit: cover;
}
@media (max-width: 1399px) {
  .cl_h2_contact-img img {
    min-height: 710px;
  }
}
@media (max-width: 1199px) {
  .cl_h2_contact-img img {
    border-radius: 24px 24px 0 0;
    min-height: auto;
  }
}
.cl_h2_contact-content {
  padding: 75px 40px 75px 65px;
  background: #fff;
  border-radius: 0 24px 24px 0;
  flex-shrink: 0;
  width: 660px;
}
@media (max-width: 1399px) {
  .cl_h2_contact-content {
    padding-left: 50px;
    width: 600px;
  }
}
@media (max-width: 1199px) {
  .cl_h2_contact-content {
    width: 100%;
    border-radius: 0 0 24px 24px;
  }
}
@media (max-width: 767px) {
  .cl_h2_contact-content {
    padding: 60px 40px 60px 40px;
  }
}
@media (max-width: 575px) {
  .cl_h2_contact-content {
    padding: 50px 30px 50px 30px;
  }
}
@media (max-width: 480px) {
  .cl_h2_contact-content {
    padding: 50px 20px 50px 20px;
  }
}
@media (max-width: 1399px) {
  .cl_h2_contact-content .cl_section-title {
    font-size: 44px;
  }
}
@media (max-width: 991px) {
  .cl_h2_contact-content .cl_section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .cl_h2_contact-content .cl_section-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .cl_h2_contact-content .cl_section-title {
    font-size: 24px;
  }
}
.cl_h2_contact-content-form input, .cl_h2_contact-content-form textarea {
  width: 100%;
  border: 1px solid rgba(111, 83, 59, 0.08);
  border-radius: 54px;
  background: rgb(240, 252, 248);
  height: 50px;
  padding: 0 20px;
  margin-bottom: 20px;
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
}
.cl_h2_contact-content-form input::-webkit-input-placeholder, .cl_h2_contact-content-form textarea::-webkit-input-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
  opacity: 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;
}
.cl_h2_contact-content-form input:-moz-placeholder, .cl_h2_contact-content-form textarea:-moz-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
  opacity: 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;
}
.cl_h2_contact-content-form input::-moz-placeholder, .cl_h2_contact-content-form textarea::-moz-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
  opacity: 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;
}
.cl_h2_contact-content-form input:-ms-input-placeholder, .cl_h2_contact-content-form textarea:-ms-input-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
  opacity: 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;
}
.cl_h2_contact-content-form input:focus, .cl_h2_contact-content-form textarea:focus {
  border-color: var(--clr-theme-primary);
}
.cl_h2_contact-content-form textarea {
  height: 150px;
  border-radius: 12px;
  margin-bottom: 30px;
}
.cl_h2_contact-content-form button {
  border: none;
  background-color: var(--clr-theme-primary);
  height: 55px;
  padding: 0 32px;
  border-radius: 60px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cl_inner_contact-form {
  background: #fff;
  padding: 50px 40px 50px;
  border-radius: 24px;
}
@media (max-width: 575px) {
  .cl_inner_contact-form {
    padding: 40px 30px 40px;
  }
}
.cl_inner_contact-form-title {
  color: rgb(29, 29, 29);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 30px;
}
.cl_inner_contact-form input,
.cl_inner_contact-form textarea {
  height: 51px;
  width: 100%;
  background: #fff9e9;
  box-sizing: border-box;
  border: 1px solid rgba(111, 83, 59, 0.08);
  border-radius: 54px;
  margin-bottom: 20px;
  line-height: 51px;
  padding: 0 20px;
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.cl_inner_contact-form input::-webkit-input-placeholder,
.cl_inner_contact-form textarea::-webkit-input-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_inner_contact-form input:-moz-placeholder,
.cl_inner_contact-form textarea:-moz-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_inner_contact-form input::-moz-placeholder,
.cl_inner_contact-form textarea::-moz-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_inner_contact-form input:-ms-input-placeholder,
.cl_inner_contact-form textarea:-ms-input-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_inner_contact-form input:focus,
.cl_inner_contact-form textarea:focus {
  border-color: var(--clr-theme-primary);
}
.cl_inner_contact-form textarea {
  height: 240px;
  margin-bottom: 27px;
  border-radius: 12px;
}
.cl_inner_contact-form-btn {
  background-color: var(--clr-theme-primary);
  height: 55px;
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 60px;
  gap: 10px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.6px;
  text-transform: none;
  border: none;
}
.cl_inner_contact-form-btn svg {
  width: 14px;
  height: 16px;
}
.cl_inner_contact-form-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.cl_inner_contact-call {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cl_inner_contact-call-icon {
  width: 50px;
  height: 50px;
  background: var(--clr-theme-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cl_inner_contact-call-icon svg {
  color: var(--clr-common-black);
}
.cl_inner_contact-call-info span {
  color: rgb(163, 163, 163);
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.cl_inner_contact-call-info a {
  color: rgb(255, 255, 255);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  display: block;
}
.cl_inner_contact-call-info a:hover {
  color: var(--clr-theme-primary);
}

.cl_inner_contact_top-item {
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 50px 40px 45px;
  -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: 767px) {
  .cl_inner_contact_top-item {
    padding: 40px 25px 35px;
  }
}
.cl_inner_contact_top-item-icon {
  -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;
  width: 70px;
  height: 70px;
  background: rgba(53, 204, 149, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
.cl_inner_contact_top-item-icon svg {
  color: var(--clr-theme-primary);
  width: 30px;
}
.cl_inner_contact_top-item-info h4 {
  color: var(--clr-body-heading);
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 18px;
  -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;
}
.cl_inner_contact_top-item-info a, .cl_inner_contact_top-item-info p {
  display: block;
  color: rgba(111, 83, 59, 0.7);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.5px;
  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;
}
.cl_inner_contact_top-item-info a:not(:last-child), .cl_inner_contact_top-item-info p:not(:last-child) {
  margin-bottom: 3px;
}
@media (max-width: 1199px) {
  .cl_inner_contact_top-item-info a br, .cl_inner_contact_top-item-info p br {
    display: none;
  }
}

.cl_inner_contact_top-item:hover {
  background-color: var(--clr-theme-primary);
}
.cl_inner_contact_top-item:hover .cl_inner_contact_top-item-icon {
  background-color: #fff;
}
.cl_inner_contact_top-item:hover .cl_inner_contact_top-item-info h4 {
  color: #fff;
}
.cl_inner_contact_top-item:hover .cl_inner_contact_top-item-info a, .cl_inner_contact_top-item:hover .cl_inner_contact_top-item-info p {
  color: #fff;
}

.zq_inner_map-wrap {
  position: relative;
  z-index: 1;
}
.zq_inner_map-wrap iframe {
  width: 100%;
  height: 500px;
  border-radius: 8px;
}
.zq_inner_map-item_1 {
  position: absolute;
  left: 170px;
  top: 100px;
  z-index: 1;
  cursor: pointer;
}
.zq_inner_map-item_1::before {
  position: absolute;
  left: 50%;
  top: -35px;
  content: "";
  width: 23px;
  height: 23px;
  background: rgba(53, 204, 149, 0.2);
  border-radius: 50%;
  transform: translateX(-50%);
}
.zq_inner_map-item_1::after {
  box-shadow: 0px 0px 20px 0px rgb(96, 193, 255);
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  content: "";
  background-color: var(--clr-theme-primary);
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.zq_inner_map-item_2 {
  position: absolute;
  left: 50%;
  top: 160px;
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
}
.zq_inner_map-item_2::before {
  position: absolute;
  left: 50%;
  top: -35px;
  content: "";
  width: 23px;
  height: 23px;
  background: rgba(53, 204, 149, 0.2);
  border-radius: 50%;
  transform: translateX(-50%);
}
.zq_inner_map-item_2::after {
  box-shadow: 0px 0px 20px 0px rgb(96, 193, 255);
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  content: "";
  background-color: var(--clr-theme-primary);
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.zq_inner_map-item-content {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #2A4741;
  width: 320px;
  border-radius: 8px;
  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;
}
.zq_inner_map-item-head {
  display: flex;
  align-items: center;
  background: var(--clr-theme-primary);
  padding: 22px 30px 24px;
  justify-content: space-between;
  gap: 20px;
  border-radius: 8px 8px 0 0;
}
.zq_inner_map-item-head h4 {
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -1px;
  margin-bottom: 0;
}
.zq_inner_map-item-head span {
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -1px;
  display: block;
}
.zq_inner_map-item-info {
  padding: 21px 30px 21px;
}
.zq_inner_map-item-info span {
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-transform: none;
  display: block;
}
.zq_inner_map-item-info span:not(:last-child) {
  margin-bottom: 14px;
}

.zq_inner_map-item_1:hover .zq_inner_map-item-content,
.zq_inner_map-item_2:hover .zq_inner_map-item-content {
  opacity: 1;
  visibility: visible;
}

.cl_inner_contact-form .nice-select.has-nice-select {
  height: 51px;
  width: 100%;
  background: #fff9e9;
  box-sizing: border-box;
  border: 1px solid rgba(111, 83, 59, 0.08);
  border-radius: 54px;
  margin-bottom: 20px;
  line-height: 51px;
  padding: 0 20px;
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.cl_inner_contact-form .nice-select.has-nice-select::after {
  border-bottom: 1px solid rgba(111, 83, 59, 0.5);
  border-right: 1px solid rgba(111, 83, 59, 0.5);
  content: "";
  display: block;
  height: 10px;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  right: 26px;
  top: 50%;
  transform-origin: 50% 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.3s ease-in-out;
  width: 9.5px;
}
.cl_inner_contact-form .nice-select.has-nice-select ul {
  width: 100%;
  border-radius: 8px;
  border: none;
  background-color: #fff;
  margin-top: 4px;
}
.cl_inner_contact-form .nice-select.has-nice-select ul li {
  color: rgba(111, 83, 59, 0.5);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  min-height: 45px;
}
.cl_inner_contact-form .nice-select.has-nice-select ul li.selected {
  font-weight: 400;
}
.cl_inner_contact-form .nice-select.has-nice-select ul li:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
}
.cl_inner_contact-form .nice-select.has-nice-select .option.focus, .cl_inner_contact-form .nice-select.has-nice-select .nice-select .option.selected.focus {
  background-color: var(--clr-theme-primary);
}
.cl_inner_contact-form .nice-select.has-nice-select:focus {
  border-color: var(--clr-theme-primary);
}

.cl_inner-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cl_inner-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(111, 83, 59, 0.08);
  font-size: 15px;
  color: var(--clr-body-heading);
}
.cl_inner-social a:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
}

.cl_inner_contact-content {
  padding: 50px 40px;
  background-color: #fff;
  border-radius: 24px;
}
@media (max-width: 575px) {
  .cl_inner_contact-content {
    padding: 40px 30px;
  }
}
.cl_inner_contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cl_inner_contact-info .icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-theme-primary);
}
.cl_inner_contact-info .icon svg {
  color: #fff;
  width: 24px;
}
.cl_inner_contact-info .info span {
  color: rgb(163, 163, 163);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.cl_inner_contact-info .info a {
  color: var(--clr-body-heading);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  display: block;
}

.cl_h2_contact-content-form .nice-select.has-nice-select {
  height: 50px;
  width: 100%;
  background: #fff9e9;
  box-sizing: border-box;
  border: 1px solid rgba(111, 83, 59, 0.08);
  border-radius: 58px;
  margin-bottom: 20px;
  line-height: 50px;
  padding: 0 20px;
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.cl_h2_contact-content-form .nice-select.has-nice-select::after {
  border-bottom: 1px solid rgba(111, 83, 59, 0.5);
  border-right: 1px solid rgba(111, 83, 59, 0.5);
  content: "";
  display: block;
  height: 10px;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  right: 26px;
  top: 50%;
  transform-origin: 50% 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.3s ease-in-out;
  width: 9.5px;
}
.cl_h2_contact-content-form .nice-select.has-nice-select ul {
  width: 100%;
  border-radius: 8px;
  border: none;
  background-color: #fff;
  margin-top: 4px;
}
.cl_h2_contact-content-form .nice-select.has-nice-select ul li {
  color: rgba(111, 83, 59, 0.5);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  min-height: 45px;
}
.cl_h2_contact-content-form .nice-select.has-nice-select ul li.selected {
  font-weight: 400;
}
.cl_h2_contact-content-form .nice-select.has-nice-select ul li:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
}
.cl_h2_contact-content-form .nice-select.has-nice-select .option.focus, .cl_h2_contact-content-form .nice-select.has-nice-select .nice-select .option.selected.focus {
  background-color: var(--clr-theme-primary);
}
.cl_h2_contact-content-form .nice-select.has-nice-select:focus {
  border-color: var(--clr-theme-primary);
}

.cl_inner_contact-form_2 {
  background: #fff;
  padding: 45px 30px 50px;
  border-radius: 20px;
}
.cl_inner_contact-form_2-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: none;
  margin-bottom: 33px;
}
@media (max-width: 575px) {
  .cl_inner_contact-form_2-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .cl_inner_contact-form_2-title {
    font-size: 26px;
  }
}
.cl_inner_contact-form_2-item label {
  display: flex;
  align-items: center;
  gap: 1px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 5px;
}
.cl_inner_contact-form_2-item label span {
  color: var(--clr-theme-primary);
}
.cl_inner_contact-form_2-item input,
.cl_inner_contact-form_2-item textarea {
  height: 56px;
  width: 100%;
  background: #fff9e9;
  box-sizing: border-box;
  border: 1px solid rgba(111, 83, 59, 0.08);
  border-radius: 58px;
  margin-bottom: 25px;
  line-height: 56px;
  padding: 0 20px;
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.cl_inner_contact-form_2-item input::-webkit-input-placeholder,
.cl_inner_contact-form_2-item textarea::-webkit-input-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_inner_contact-form_2-item input:-moz-placeholder,
.cl_inner_contact-form_2-item textarea:-moz-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_inner_contact-form_2-item input::-moz-placeholder,
.cl_inner_contact-form_2-item textarea::-moz-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_inner_contact-form_2-item input:-ms-input-placeholder,
.cl_inner_contact-form_2-item textarea:-ms-input-placeholder {
  color: rgba(111, 83, 59, 0.5);
  font-size: 16px;
}
.cl_inner_contact-form_2-item input:focus,
.cl_inner_contact-form_2-item textarea:focus {
  border-color: var(--clr-theme-primary);
}
.cl_inner_contact-form_2-item textarea {
  height: 220px;
  margin-bottom: 27px;
  border-radius: 20px;
  resize: none;
}
.cl_inner_contact-form_2-btn {
  background-color: var(--clr-theme-primary);
  height: 55px;
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 60px;
  gap: 10px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.6px;
  text-transform: none;
  border: none;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.cl_inner_contact-form_2-btn svg {
  width: 14px;
  height: 16px;
}
.cl_inner_contact-form_2-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.cl_inner_contact-img img {
  width: 100%;
}

.cl_inner_contact-form_2 .nice-select.has-nice-select {
  height: 56px;
  width: 100%;
  background: #fff9e9;
  box-sizing: border-box;
  border: 1px solid rgba(111, 83, 59, 0.08);
  border-radius: 58px;
  margin-bottom: 25px;
  line-height: 56px;
  padding: 0 20px;
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.cl_inner_contact-form_2 .nice-select.has-nice-select::after {
  border-bottom: 1px solid rgba(111, 83, 59, 0.5);
  border-right: 1px solid rgba(111, 83, 59, 0.5);
  content: "";
  display: block;
  height: 10px;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  right: 26px;
  top: 50%;
  transform-origin: 50% 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.3s ease-in-out;
  width: 9.5px;
}
.cl_inner_contact-form_2 .nice-select.has-nice-select ul {
  width: 100%;
  border-radius: 8px;
  border: none;
  background-color: #fff;
  margin-top: 4px;
}
.cl_inner_contact-form_2 .nice-select.has-nice-select ul li {
  color: rgba(111, 83, 59, 0.5);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  min-height: 45px;
}
.cl_inner_contact-form_2 .nice-select.has-nice-select ul li.selected {
  font-weight: 400;
}
.cl_inner_contact-form_2 .nice-select.has-nice-select ul li:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
}
.cl_inner_contact-form_2 .nice-select.has-nice-select .option.focus, .cl_inner_contact-form_2 .nice-select.has-nice-select .nice-select .option.selected.focus {
  background-color: var(--clr-theme-primary);
}
.cl_inner_contact-form_2 .nice-select.has-nice-select:focus {
  border-color: var(--clr-theme-primary);
}

@media (max-width: 1399px) {
  .cl_inner_contact-left .cl_section-area.mr-40 {
    margin-right: 0;
  }
}

.nice-select.has-nice-select_common {
  height: 51px;
  width: 100%;
  background: #fff9e9;
  box-sizing: border-box;
  border: 1px solid rgba(111, 83, 59, 0.08);
  border-radius: 54px;
  margin-bottom: 20px;
  line-height: 51px;
  padding: 0 20px;
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.nice-select.has-nice-select_common::after {
  border-bottom: 1px solid rgba(111, 83, 59, 0.5);
  border-right: 1px solid rgba(111, 83, 59, 0.5);
  content: "";
  display: block;
  height: 10px;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  right: 26px;
  top: 50%;
  transform-origin: 50% 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.3s ease-in-out;
  width: 9.5px;
}
.nice-select.has-nice-select_common ul {
  width: 100%;
  border-radius: 8px;
  border: none;
  background-color: #fff;
  margin-top: 4px;
}
.nice-select.has-nice-select_common ul li {
  color: rgba(111, 83, 59, 0.5);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  min-height: 45px;
}
.nice-select.has-nice-select_common ul li.selected {
  font-weight: 400;
}
.nice-select.has-nice-select_common ul li:hover {
  background-color: var(--clr-theme-primary);
  color: #fff;
}
.nice-select.has-nice-select_common .option.focus, .nice-select.has-nice-select_common .nice-select .option.selected.focus {
  background-color: var(--clr-theme-primary);
}

.nice-select.has-nice-select_common:focus {
  border-color: var(--clr-theme-primary);
}

/* ///////////////////////////////////////////////////////////
15. brand
/////////////////////////////////////////////////////////// */
.cl_h2_brand-item {
  text-align: center;
}

.cl_inner_brand-wrap {
  background-color: #fff;
  border-radius: 24px;
}

/* ///////////////////////////////////////////////////////////
16. counter
/////////////////////////////////////////////////////////// */
.cl_h3_counter-item h1 {
  color: rgb(0, 0, 0);
  font-family: "Sora", sans-serif;
  font-size: 78px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -3px;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 575px) {
  .cl_h3_counter-item h1 {
    font-size: 60px;
  }
}

.cl_h3_counter-item p {
  color: rgb(53, 204, 149);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display: block;
  margin-bottom: 0;
}

.cl_h3_counter-item {
  text-align: center;
}

/* ///////////////////////////////////////////////////////////
17. process
/////////////////////////////////////////////////////////// */
.cl_h3_process-item {
  text-align: center;
}
.cl_h3_process-item-img {
  position: relative;
  z-index: 1;
  width: 216px;
  height: 216px;
  border: 1px dashed var(--clr-theme-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.cl_h3_process-item-img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: -1;
}
.cl_h3_process-item-img span {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-theme-primary);
  border-radius: 50%;
  position: absolute;
  right: 8px;
  top: 21px;
  z-index: auto;
}
.cl_h3_process-item-img span::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  background: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.cl_h3_process-item-content h4 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}
.cl_h3_process-item-content p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}

.cl_h3_process-area .cl_h3_process-item-img.cl_h3_process-arrow::after {
  position: absolute;
  top: 50%;
  right: -195px;
  transform: translateY(-50%);
  content: "";
  background-image: url("../../assets/images/process/h3_line.png");
  background-position: right;
  width: 158px;
  height: 14px;
}
@media (max-width: 1399px) {
  .cl_h3_process-area .cl_h3_process-item-img.cl_h3_process-arrow::after {
    right: -145px;
    width: 120px;
  }
}
@media (max-width: 991px) {
  .cl_h3_process-area .cl_h3_process-item-img.cl_h3_process-arrow::after {
    display: none;
  }
}

/* ///////////////////////////////////////////////////////////
18. feature
/////////////////////////////////////////////////////////// */
@media (max-width: 575px) {
  .cl_h4_feature-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_h4_feature-wrap {
  background-color: var(--clr-theme-primary);
  border-radius: 30px;
}
.cl_h4_feature-content.ml-35 {
  margin-left: 0;
}
@media (max-width: 1199px) {
  .cl_h4_feature-img {
    margin-bottom: 30px;
  }
}

.cl_h4_feature-main {
  margin-left: -30px;
  margin-right: -30px;
}
@media (max-width: 1599px) {
  .cl_h4_feature-main {
    margin-left: 0;
    margin-right: 0;
  }
}
.cl_h4_feature-main .nav {
  list-style: none;
  border: none;
}
@media (max-width: 767px) {
  .cl_h4_feature-main .nav {
    gap: 10px;
    margin-bottom: 10px;
  }
}
.cl_h4_feature-main .nav-item {
  border: none;
}
.cl_h4_feature-main .nav-link {
  background: transparent;
  border: none;
  height: 73px;
  padding: 0 15px;
  border-radius: 0;
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-transform: none;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 767px) {
  .cl_h4_feature-main .nav-link {
    height: 55px;
    border-radius: 20px;
    border: 1px solid #fff;
    padding: 0 25px;
  }
}
.cl_h4_feature-main .nav-link.active {
  background: #fff;
  color: rgb(0, 0, 0);
}
.cl_h4_feature-main .tab-content {
  background: #fff;
  padding: 30px 30px 30px;
  border-radius: 0 18px 18px 18px;
  border-radius: 18px 18px 18px 18px;
}
@media (max-width: 575px) {
  .cl_h4_feature-main .tab-content {
    padding: 30px 20px 30px;
  }
}
.cl_h4_feature-main .tab-content .cl_h4_feature-img img {
  width: 100%;
  border-radius: 17px;
}
.cl_h4_feature-main .tab-content .cl_h4_feature-content h3 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cl_h4_feature-main .tab-content .cl_h4_feature-content h3 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .cl_h4_feature-main .tab-content .cl_h4_feature-content h3 {
    font-size: 26px;
  }
}
.cl_h4_feature-main .tab-content .cl_h4_feature-content p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 22px;
}
.cl_h4_feature-main .tab-content .cl_h4_feature-content-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cl_h4_feature-main .tab-content .cl_h4_feature-content-list ul {
  list-style: none;
  margin-bottom: 32px;
  width: 50%;
}
@media (max-width: 575px) {
  .cl_h4_feature-main .tab-content .cl_h4_feature-content-list ul {
    width: 100%;
  }
}
.cl_h4_feature-main .tab-content .cl_h4_feature-content-list ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 16px;
}
.cl_h4_feature-main .tab-content .cl_h4_feature-content-list ul li:last-child {
  margin-bottom: 0;
}
.cl_h4_feature-main .tab-content .cl_h4_feature-content-list ul li i {
  font-size: 14px;
  color: var(--clr-theme-primary);
}

.cl_h4_feature-main .nav-item {
  width: 23%;
}
.cl_h4_feature-main .nav-item:first-child {
  width: 31%;
}
.cl_h4_feature-main .nav-item:first-child .nav-link.active::after {
  position: absolute;
  left: 0;
  bottom: -25px;
  content: "";
  width: 25px;
  height: 25px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cl_h4_feature-main .nav-item:first-child .nav-link.active::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .cl_h4_feature-main .nav-item {
    width: 25%;
  }
  .cl_h4_feature-main .nav-item:first-child {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .cl_h4_feature-main .nav-item {
    width: auto;
  }
  .cl_h4_feature-main .nav-item:first-child {
    width: auto;
  }
}
.cl_h4_feature-main .nav-item:last-child .nav-link.active::before {
  position: absolute;
  right: 0;
  bottom: -25px;
  content: "";
  width: 25px;
  height: 25px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cl_h4_feature-main .nav-item:last-child .nav-link.active::before {
    display: none;
  }
}
.cl_h4_feature-main .nav-item:not(:first-child) .nav-link.active::after {
  position: absolute;
  left: -20px;
  bottom: 2px;
  content: url("../../assets/images/bg/corner.svg");
  width: 20px;
  transform: rotate(180deg);
}
@media (max-width: 1199px) {
  .cl_h4_feature-main .nav-item:not(:first-child) .nav-link.active::after {
    bottom: 1px;
  }
}
@media (max-width: 991px) {
  .cl_h4_feature-main .nav-item:not(:first-child) .nav-link.active::after {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .cl_h4_feature-main .nav-item:not(:first-child) .nav-link.active::after {
    display: none;
  }
}
.cl_h4_feature-main .nav-item:not(:last-child) .nav-link.active::before {
  position: absolute;
  right: -24px;
  bottom: -2px;
  content: url("../../assets/images/bg/corner.svg");
  width: 20px;
  transform: rotate(270deg);
}
@media (max-width: 1199px) {
  .cl_h4_feature-main .nav-item:not(:last-child) .nav-link.active::before {
    bottom: -3px;
  }
}
@media (max-width: 767px) {
  .cl_h4_feature-main .nav-item:not(:last-child) .nav-link.active::before {
    display: none;
  }
}

/* ///////////////////////////////////////////////////////////
19. staff
/////////////////////////////////////////////////////////// */
.cl_h4_staff-left-btn {
  color: rgb(53, 204, 149);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  width: max-content;
}
.cl_h4_staff-left-btn::before {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--clr-theme-primary);
}
@media (max-width: 1399px) {
  .cl_h4_staff-left .cl_section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .cl_h4_staff-left .cl_section-title {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  .cl_h4_staff-left .cl_section-title {
    font-size: 30px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1199px) {
  .cl_h4_staff-right.ml-20 {
    margin-left: 0;
  }
}
.cl_h4_staff-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 480px) {
  .cl_h4_staff-item {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
.cl_h4_staff-item-icon {
  width: 80px;
  height: 80px;
  background: var(--clr-theme-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
}
.cl_h4_staff-item-icon svg {
  width: 40px;
  color: #fff;
}
.cl_h4_staff-item-content {
  padding-top: 12px;
}
.cl_h4_staff-item-content h4 {
  color: rgb(0, 0, 0);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .cl_h4_staff-item-content h4 {
    font-size: 22px;
  }
}
.cl_h4_staff-item-content p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}

/* ///////////////////////////////////////////////////////////
20. schedule
/////////////////////////////////////////////////////////// */
.cl_h2_schedule-item {
  background: #fff;
  border-radius: 30px;
  padding: 30px 30px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 480px) {
  .cl_h2_schedule-item {
    padding: 30px 20px 30px;
  }
}
.cl_h2_schedule-item::before {
  position: absolute;
  right: -20px;
  bottom: -20px;
  content: "";
  background: var(--clr-common-lightWhite);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  z-index: -1;
}
.cl_h2_schedule-item-icon {
  width: 66px;
  height: 66px;
  background: #fff9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cl_h2_schedule-item-icon svg {
  width: 40px;
  color: var(--clr-theme-primary);
}
.cl_h2_schedule-item-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
  border-top: 1px solid rgba(111, 83, 59, 0.1);
  padding-top: 25px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cl_h2_schedule-item-title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .cl_h2_schedule-item-title {
    font-size: 20px;
  }
}
.cl_h2_schedule-item-title:hover a {
  color: var(--clr-theme-primary);
}
.cl_h2_schedule-item p {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cl_h2_schedule-item p {
    margin-right: 35px;
  }
  .cl_h2_schedule-item p br {
    display: none;
  }
}
.cl_h2_schedule-item-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--clr-common-black);
  z-index: 9;
  background: #fff;
}

.cl_h2_schedule-item:hover .cl_h2_schedule-item-btn {
  background-color: var(--clr-theme-primary);
  color: #fff;
}

.cl_h5_schedule-item {
  background: #fff;
  border-radius: 20px;
  padding: 30px 40px 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cl_h5_schedule-item {
    height: 290px;
  }
}
.cl_h5_schedule-item::before {
  position: absolute;
  right: -20px;
  bottom: -20px;
  content: "";
  background: var(--clr-common-lightWhite);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  z-index: -1;
}
.cl_h5_schedule-item-icon svg {
  color: var(--clr-theme-primary);
  width: 60px;
}
.cl_h5_schedule-item-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--clr-common-black);
  z-index: 9;
  background: #fff;
}
.cl_h5_schedule-content-subtitle {
  color: rgba(111, 83, 59, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  display: block;
  margin-bottom: 11px;
  position: relative;
  z-index: 1;
  padding-left: 12px;
}
.cl_h5_schedule-content-subtitle::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--clr-theme-primary);
  border-radius: 50%;
  z-index: 1;
}
.cl_h5_schedule-content-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}
.cl_h5_schedule-content-title:hover a {
  color: var(--clr-theme-primary);
}

.cl_h5_schedule-item:hover .cl_h5_schedule-item-btn {
  background-color: var(--clr-theme-primary);
  color: #fff;
}

/* ///////////////////////////////////////////////////////////
21. discount
/////////////////////////////////////////////////////////// */
.cl_h5_discount-wrap {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 20px;
}
.cl_h5_discount-content {
  padding-top: 164px;
  padding-bottom: 163px;
}
@media (max-width: 991px) {
  .cl_h5_discount-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cl_h5_discount-content {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (max-width: 575px) {
  .cl_h5_discount-content {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_h5_discount-content span {
  display: inline-flex;
  color: rgb(53, 204, 149);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -0.5px;
  height: 25px;
  align-items: center;
  padding: 0 10px;
  background: rgba(53, 204, 149, 0.1);
  border-radius: 60px;
  margin-bottom: 21px;
}
.cl_h5_discount-content h2 {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 38px;
}
@media (max-width: 991px) {
  .cl_h5_discount-content h2 {
    font-size: 40px;
  }
  .cl_h5_discount-content h2 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .cl_h5_discount-content h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cl_h5_discount-content h2 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .cl_h5_discount-content h2 {
    font-size: 28px;
  }
}

/* ///////////////////////////////////////////////////////////
22. breadcrumb
/////////////////////////////////////////////////////////// */
.cl_breadcrumb-area {
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1399px) {
  .cl_breadcrumb-area {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 1199px) {
  .cl_breadcrumb-area {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .cl_breadcrumb-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cl_breadcrumb-wrap {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding-top: 135px;
  padding-bottom: 144px;
}
@media (max-width: 767px) {
  .cl_breadcrumb-wrap {
    padding-top: 115px;
    padding-bottom: 124px;
  }
}
.cl_breadcrumb-wrap::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: rgb(150, 116, 89);
  z-index: -1;
}
.cl_breadcrumb-content {
  text-align: center;
}
.cl_breadcrumb-content-title {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
  margin-bottom: 19px;
}
@media (max-width: 767px) {
  .cl_breadcrumb-content-title {
    font-size: 46px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .cl_breadcrumb-content-title {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
.cl_breadcrumb-content-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cl_breadcrumb-content-list a, .cl_breadcrumb-content-list span {
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
}
.cl_breadcrumb-content-list a:hover {
  color: var(--clr-common-black);
}
.cl_breadcrumb-content-list span {
  position: relative;
  z-index: 1;
}
.cl_breadcrumb-content-list span::before {
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}

/* ///////////////////////////////////////////////////////////
23. faq
/////////////////////////////////////////////////////////// */
.cl_faq-content {
  margin-left: -15px;
}
@media (max-width: 991px) {
  .cl_faq-content {
    margin-left: 0;
  }
}
.cl_faq-content .accordion-item {
  overflow: hidden;
  background: transparent;
  border-radius: 8px;
  border: none;
}
.cl_faq-content .accordion-button {
  position: relative;
  cursor: pointer;
  box-shadow: none;
  background: #fff;
  border: none;
  -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;
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
  border-radius: 8px 8px 0 0 !important;
  padding: 24px 70px 24px 30px;
}
@media (max-width: 1199px) {
  .cl_faq-content .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .cl_faq-content .accordion-button {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .cl_faq-content .accordion-button {
    padding: 24px 60px 24px 20px;
  }
}
.cl_faq-content .accordion-button::after {
  display: none;
}
.cl_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: var(--clr-theme-primary);
  text-align: center;
  font-size: 15px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media (max-width: 480px) {
  .cl_faq-content .accordion-button::before {
    right: 20px;
  }
}
.cl_faq-content .accordion-button:not(.collapsed) {
  background-color: #fff;
}
.cl_faq-content .accordion-button:not(.collapsed)::before {
  background-color: var(--clr-theme-primary);
  color: #fff;
  content: "\f106";
}
.cl_faq-content .accordion-body {
  padding: 0 30px;
  background: #fff;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border-radius: 0 0 8px 8px;
}
@media (max-width: 480px) {
  .cl_faq-content .accordion-body {
    padding: 0 20px;
  }
}
.cl_faq-content .accordion-body p {
  padding: 20px 0 38px;
  border-top: 1px solid rgba(111, 83, 59, 0.1);
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
  margin-bottom: 0;
}

/* ///////////////////////////////////////////////////////////
24. portfolio
/////////////////////////////////////////////////////////// */
.cl_portfolio-item {
  position: relative;
  z-index: 1;
}
.cl_portfolio-item-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
}
.cl_portfolio-item-img::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 51%;
  content: "";
  border-radius: 0px 0px 20px 20px;
  background: linear-gradient(180deg, rgba(111, 83, 59, 0) 0.01%, rgb(0, 0, 0) 100%);
}
.cl_portfolio-item-img img {
  width: 100%;
}
.cl_portfolio-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: absolute;
  left: 30px;
  bottom: 25px;
  right: 30px;
  z-index: 9;
}
@media (max-width: 991px) {
  .cl_portfolio-item-content {
    left: 25px;
    right: 25px;
  }
}
.cl_portfolio-item-content-info span {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 3px;
}
.cl_portfolio-item-content-info h4 {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cl_portfolio-item-content-info h4 {
    font-size: 22px;
  }
}
.cl_portfolio-item-content-info h4:hover a {
  color: var(--clr-theme-primary);
}
.cl_portfolio-item-content-icon svg {
  width: 28px;
  color: #fff;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.cl_portfolio-item-content-icon svg:hover {
  color: var(--clr-theme-primary);
}

.cl_portfolio_details-img-big img {
  width: 100%;
  border-radius: 20px;
}
.cl_portfolio_details-img {
  position: relative;
  z-index: 1;
}
.cl_portfolio_details-img img {
  border-radius: 8px;
  width: 100%;
}
.cl_portfolio_details-img a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: transparent;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid #fff;
}
.cl_portfolio_details-img a:hover {
  background-color: var(--clr-common-white);
  border-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}
.cl_portfolio_details-list ul {
  list-style: none;
}
.cl_portfolio_details-list ul li {
  color: rgba(111, 83, 59, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.cl_portfolio_details-list ul li:last-child {
  margin-bottom: 0;
}
.cl_portfolio_details-list ul li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cl_portfolio_details-info {
  background: #fff;
  padding: 40px 30px 40px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
}
@media (max-width: 1199px) {
  .cl_portfolio_details-info {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cl_portfolio_details-info {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .cl_portfolio_details-info {
    grid-template-columns: 1fr;
  }
}
.cl_portfolio_details-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cl_portfolio_details-info-item-icon {
  width: 50px;
  height: 50px;
  background: var(--clr-theme-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cl_portfolio_details-info-item-icon svg {
  color: #fff;
  width: 30px;
}
.cl_portfolio_details-info-item-info p {
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}
.cl_portfolio_details-info-item-info span {
  display: block;
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 2px;
}

.cl_portfolio_details-nav {
  border-top: 1px solid rgba(111, 83, 59, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cl_portfolio_details-nav-item {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.cl_portfolio_details-nav-item:hover {
  color: var(--clr-theme-primary);
}

/* ///////////////////////////////////////////////////////////
25. 404
/////////////////////////////////////////////////////////// */
.cl_error-content-title {
  color: var(--clr-body-heading);
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-transform: none;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .cl_error-content-title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .cl_error-content-title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cl_error-content-title {
    font-size: 30px;
  }
}

.cl_error-content {
  text-align: center;
}

.cl_error-content-img img {
  width: 100%;
}

.cl_error-content-img {
  margin-bottom: 50px;
}

/* ///////////////////////////////////////////////////////////
26. sidebar
/////////////////////////////////////////////////////////// */
.cursor-pointer {
  cursor: pointer;
}

ul {
  list-style: none;
}

.zq_mobile_menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #1d1d1d;
  overflow: hidden;
  z-index: 9999;
  transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
}
.zq_mobile_menu .logo {
  position: absolute;
  top: 40px;
  left: 40px;
  max-width: 140px;
  width: 100%;
}
@media (max-width: 767px) {
  .zq_mobile_menu .logo {
    left: 25px;
  }
}
@media (max-width: 480px) {
  .zq_mobile_menu .logo {
    left: 15px;
  }
}
.zq_mobile_menu .close-menu {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 4;
  color: #fff;
  font-size: 22px;
}
@media (max-width: 767px) {
  .zq_mobile_menu .close-menu {
    top: 25px;
    right: 25px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .zq_mobile_menu .close-menu {
    right: 15px;
    font-size: 18px;
  }
}
.zq_mobile_menu .logo, .zq_mobile_menu .close-menu {
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.4s;
}
.zq_mobile_menu .menu-navbar {
  color: #fff;
  height: 100vh;
  padding-top: 140px;
  overflow: auto;
  padding-bottom: 50px;
}
.zq_mobile_menu .menu-navbar::-webkit-scrollbar {
  width: 5px;
}
.zq_mobile_menu .menu-navbar::-webkit-scrollbar-track {
  background: #111;
}
.zq_mobile_menu .menu-navbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.zq_mobile_menu .menu-navbar .main-menu {
  position: relative;
  z-index: 2;
}
.zq_mobile_menu .menu-navbar .main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.zq_mobile_menu .menu-navbar .main-menu > li {
  transition: all 0.5s;
}
.zq_mobile_menu .menu-navbar .main-menu > li:last-of-type .link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.zq_mobile_menu .menu-navbar .main-menu > li .link {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  position: relative;
  display: block;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.7s;
  letter-spacing: -0.5px;
}
@media (max-width: 1399px) {
  .zq_mobile_menu .menu-navbar .main-menu > li .link {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .zq_mobile_menu .menu-navbar .main-menu > li .link {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .zq_mobile_menu .menu-navbar .main-menu > li .link {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .zq_mobile_menu .menu-navbar .main-menu > li .link {
    font-size: 20px;
  }
}
.zq_mobile_menu .menu-navbar .main-menu > li .link i {
  position: absolute;
  width: 100px;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}
@media (max-width: 767px) {
  .zq_mobile_menu .menu-navbar .main-menu > li .link i {
    width: 90px;
  }
}
@media (max-width: 480px) {
  .zq_mobile_menu .menu-navbar .main-menu > li .link i {
    width: 70px;
  }
}
.zq_mobile_menu .menu-navbar .main-menu > li .link i::before, .zq_mobile_menu .menu-navbar .main-menu > li .link i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "+";
  font-family: "Font Awesome 6 Sharp";
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
}
@media (max-width: 575px) {
  .zq_mobile_menu .menu-navbar .main-menu > li .link i::before, .zq_mobile_menu .menu-navbar .main-menu > li .link i::after {
    font-size: 22px;
  }
}
.zq_mobile_menu .menu-navbar .main-menu > li .link i::after {
  content: "\f068";
}
.zq_mobile_menu .menu-navbar .main-menu > li .link.dopen i:before {
  opacity: 0;
}
.zq_mobile_menu .menu-navbar .main-menu > li .link .fill-text {
  position: relative;
  color: rgba(255, 255, 255, 0.4);
}
.zq_mobile_menu .menu-navbar .main-menu > li .link .fill-text:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.75s cubic-bezier(0.63, 0.03, 0.21, 1);
}
.zq_mobile_menu .menu-navbar .main-menu > li.hoverd .link .fill-text:after {
  width: 0;
}
.zq_mobile_menu .menu-navbar .main-menu .sub-menu {
  display: none;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.zq_mobile_menu .menu-navbar .main-menu .sub-menu li {
  padding: 0;
  margin: 0;
}
.zq_mobile_menu .menu-navbar .main-menu .sub-menu li:last-child a {
  border-bottom: 0;
}
.zq_mobile_menu .menu-navbar .main-menu .sub-menu li a {
  padding: 20px 20px 20px 40px;
  opacity: 0.6;
  transition: all 0.4s;
  display: block;
  font-size: 29px;
  font-weight: 500;
  padding-left: 50px;
  text-transform: none;
  letter-spacing: normal;
  border-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.009);
}
@media (max-width: 991px) {
  .zq_mobile_menu .menu-navbar .main-menu .sub-menu li a {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .zq_mobile_menu .menu-navbar .main-menu .sub-menu li a {
    padding-left: 30px;
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .zq_mobile_menu .menu-navbar .main-menu .sub-menu li a {
    font-size: 20px;
    padding-left: 25px;
    padding-top: 18px;
    padding-bottom: 21px;
  }
}
@media (max-width: 480px) {
  .zq_mobile_menu .menu-navbar .main-menu .sub-menu li a {
    font-size: 16px;
    padding-left: 20px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.zq_mobile_menu .menu-navbar .main-menu .sub-menu li a:hover {
  opacity: 1;
}
.zq_mobile_menu .menu-text {
  position: relative;
  z-index: 1;
  height: 100%;
}
.zq_mobile_menu .menu-text:after {
  content: "";
  width: 1px;
  height: 0;
  background: rgba(255, 255, 255, 0.05);
  position: absolute;
  right: -30px;
  bottom: -75vh;
  transition: all 1s ease;
}
.zq_mobile_menu .menu-text .text {
  position: absolute;
  right: 25%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
}
.zq_mobile_menu .menu-text .text h2 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10vw;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.08;
  margin: 0;
  color: #fff;
}
.zq_mobile_menu .cont-info {
  padding-top: 140px;
  padding-left: 15px;
  position: relative;
  z-index: 3;
}
.zq_mobile_menu .cont-info:after {
  content: "";
  width: 300%;
  height: 200vh;
  position: absolute;
  left: -30px;
  top: -75vh;
  background: #1a1a1a;
  z-index: -1;
}
.zq_mobile_menu .cont-info .sub-title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  color: var(--clr-theme-primary);
}
.zq_mobile_menu .cont-info .item {
  transform: translateY(50px);
  transition: all 0.4s;
  opacity: 0;
}
.zq_mobile_menu .cont-info .item h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  color: #fff;
}
.zq_mobile_menu .cont-info .item h5:hover a {
  color: var(--clr-theme-primary);
}
.zq_mobile_menu .cont-info .item ul.social {
  list-style: none;
}
.zq_mobile_menu .cont-info .item ul.social li a {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.zq_mobile_menu .cont-info .item ul.social li a:hover {
  color: var(--clr-theme-primary);
}
.zq_mobile_menu.open .logo, .zq_mobile_menu.open .close-menu {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1s;
}
.zq_mobile_menu.open .menu-navbar .main-menu > li .link {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1s;
}
.zq_mobile_menu.open .cont-info .item {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1.4s;
}
.zq_mobile_menu.open .menu-text .text {
  opacity: 1;
  transition-delay: 1s;
}
.zq_mobile_menu.open .menu-text:after {
  height: 200vh;
  transition-delay: 0.7s;
}

@media screen and (max-width: 991px) {
  .navbar .search-form,
  .zq_mobile_menu .menu-text,
  .zq_mobile_menu .cont-info {
    display: none;
  }
  .zq_mobile_menu .menu-navbar {
    height: calc(100vh - 40px);
  }
}
/* ///////////////////////////////////////////////////////////
27. footer
/////////////////////////////////////////////////////////// */
.cl_footer-area {
  background-color: #6f533b;
}
.cl_footer-top {
  padding: 50px 0 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .cl_footer-logo {
    margin-bottom: 30px;
  }
}
.cl_footer-action {
  display: flex;
  align-items: center;
  gap: 45px;
  row-gap: 20px;
  justify-content: end;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cl_footer-action {
    justify-content: flex-start;
  }
}
.cl_footer-action a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
}
@media (max-width: 480px) {
  .cl_footer-action a {
    font-size: 16px;
  }
}
.cl_footer-action a span {
  width: 44px;
  height: 44px;
/*  background: rgba(53, 204, 149, 0.3); */
  background: rgb(150, 116, 89);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--clr-theme-primary);
  font-size: 18px;
}
.cl_footer-bottom {
  padding-top: 97px;
  padding-bottom: 63px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cl_footer-widget-title {
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 23px;
}
.cl_footer-widget-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.cl_footer-widget-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cl_footer-widget-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.cl_footer-widget-social a:hover {
  background: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
}
.cl_footer-widget ul {
  list-style: none;
}
.cl_footer-widget ul li {
  position: relative;
  z-index: 1;
  margin-bottom: 11px;
  width: max-content;
}
.cl_footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  display: block;
}
.cl_footer-widget ul li a:hover {
  color: #fff;
}
.cl_footer-widget ul li span {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-theme-primary);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0 6px;
  height: 18px;
  display: flex;
  align-items: center;
  border-radius: 60px;
}
.cl_footer-widget-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
}
.cl_footer-widget-address svg {
  color: var(--clr-theme-primary);
  width: 20px;
  margin-top: 4px;
}
.cl_footer-widget-address a {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.cl_footer-widget form {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cl_footer-widget form input {
  width: 100%;
  background: #144F3A;
  border: none;
  border-radius: 60px;
  height: 56px;
  padding: 0 25px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 56px;
  padding-right: 60px;
}
.cl_footer-widget form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.cl_footer-widget form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.cl_footer-widget form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.cl_footer-widget form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.cl_footer-widget form button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-theme-primary);
  color: #fff;
  font-size: 15px;
}
.cl_footer-copyright {
  padding: 23px 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cl_footer-copyright {
    justify-content: center;
    row-gap: 10px;
  }
}
.cl_footer-copyright-text {
  flex-shrink: 0;
}
.cl_footer-copyright-text p {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.cl_footer-copyright-text p a {
  color: #fff;
}
.cl_footer-copyright-menu ul {
  list-style: none;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 480px) {
  .cl_footer-copyright-menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.cl_footer-copyright-menu ul li {
  position: relative;
  z-index: 1;
}
.cl_footer-copyright-menu ul li:not(:last-child) {
  margin-right: 10px;
  padding-right: 12px;
  line-height: normal;
}
.cl_footer-copyright-menu ul li:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  width: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  height: 15px;
}
.cl_footer-copyright-menu ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.cl_h4_footer-area .cl_footer-widget-title {
  color: #000;
}
.cl_h4_footer-area .cl_footer-widget-text {
  color: rgba(0, 0, 0, 0.7);
}
.cl_h4_footer-area .cl_footer-widget-social a {
  border-color: #000;
  color: #000;
}
.cl_h4_footer-area .cl_footer-widget-social a:hover {
  border-color: var(--clr-theme-primary);
  color: #fff;
}
.cl_h4_footer-area .cl_footer-widget ul li a {
  color: rgba(0, 0, 0, 0.7);
}
.cl_h4_footer-area .cl_footer-widget form input {
  background-color: #fff;
}
.cl_h4_footer-area .cl_footer-widget form input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}
.cl_h4_footer-area .cl_footer-widget form input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}
.cl_h4_footer-area .cl_footer-widget form input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}
.cl_h4_footer-area .cl_footer-widget form input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}
.cl_h4_footer-area .cl_footer-bottom {
  background-color: #fff9e9;
  border-color: rgba(0, 0, 0, 0.2);
}
.cl_h4_footer-area .cl_footer-copyright-text p {
  color: rgba(111, 83, 59, 0.7);
}
.cl_h4_footer-area .cl_footer-copyright-text p a {
  color: var(--clr-body-heading);
}
.cl_h4_footer-area .cl_footer-copyright-menu ul li:not(:last-child)::after {
  background-color: rgba(0, 0, 0, 0.7);
}
.cl_h4_footer-area .cl_footer-copyright-menu ul li a {
  color: rgba(0, 0, 0, 0.7);
}
.cl_h4_footer-copyright-wrap {
  background-color: #fff9e9;
}

/*# sourceMappingURL=main.css.map */
