@charset "UTF-8";
/*
-----------------------------------------------------------------------------------

CSS INDEX
=================== 
01. common
02. common section
03. header
04. hero
05. features
06. about us
07. watch video
08. services
09. services details
10. work process
11. our project
12. project details
13. our product
14. product details
15. call to action
16. our team
17. team details
18. testimonial
19. blog
20. blog details
21. contact us
22. brand
23. cart
24. checkout
25. error
26. footer
27. Back To Top

******************************************************* 
*************************************************************** */
/*
************
*************************
01. common
******************************************************* 
*************************************************************** */
:root {
  --font_gray: #141414;
  --theme_color: #215300;
  --yollow_color: #FFC400;
  --white-color: #fff;
  --yollow-deep: #B4830D;
  --hover-color-1: #215300;
  --hover-color-2: #FFC400;
  --hover-color-3: #B4830D;
}

.white-color {
  color: var(--white-color) !important;
}

.yollow-deep-color {
  color: var(--yollow-deep) !important;
}

.yollow-deep-bg {
  background-color: var(--yollow-deep) !important;
}

.theme-color {
  color: var(--theme_color) !important;
}

.theme-bg {
  background-color: var(--theme_color) !important;
}

.white-bg {
  background-color: #ffffff;
}

.black-bg {
  background-color: #000;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

.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;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

a,
.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;
  text-decoration: none;
}

button:focus, input:focus, input:focus, textarea, textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
  margin-top: 0px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  line-height: 1.2;
}

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: 34px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  color: var(--font_gray);
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

hr {
  border-bottom: 1px solid #2E421E;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
  opacity: 1;
}

label {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

.w_100 img {
  width: 100%;
}

*::-moz-selection {
  background-color: var(--theme_color);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--theme_color);
  color: #fff;
  text-shadow: none;
}

::selection {
  background-color: var(--theme_color);
  color: #fff;
  text-shadow: none;
}

/* <<<<<<<    Input Placeholder   >>>>>>>>> */
input::-webkit-input-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
input:-moz-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
input::-moz-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
input:-ms-input-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}

textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
textarea:-moz-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
textarea::-moz-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}
textarea:-ms-input-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  transition: 0.5s;
}

input:focus::placeholder, textarea:focus::placeholder {
  opacity: 0;
}

/* <<<<<<<    Common Classes   >>>>>>>>> */
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.p-rel {
  position: relative;
}

.p-abs {
  position: absolute;
}

.p-static {
  position: static;
}

.w_img img {
  width: 100%;
}

@media (max-width: 767px) {
  .d-xs-none {
    display: none !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .d-xs-none {
    display: flex !important;
  }
}

/* <<<<<<<    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: "";
}

[data-overlay=light]::before {
  background-color: #f2f2f2;
}

[data-overlay=dark]::before {
  background-color: #1a1a1a;
}

[data-overlay=soft]::before {
  background-color: #f6f6f6;
}

[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

/* <<<<<<<    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;
}

.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;
}

.bg-default {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

@media only screen and (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.g-0 {
  --bs-gutter-x: 0;
}

.custom-z-index {
  z-index: 8;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .custom-width {
    width: 930px;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom-width {
    width: 720px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .custom-width {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-width {
    width: 540px;
    margin: auto;
  }
}

/*
************
*************************
02. common section
******************************************************* 
*************************************************************** */
.btn-1 {
  width: 190px;
  height: 60px;
  background: var(--yollow_color);
  border-radius: 5px;
  font-size: 16px;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
}
.btn-1:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}

.btn-2 {
  width: 190px;
  height: 60px;
  background: var(--theme_color);
  color: var(--white-color);
  border-radius: 5px;
  font-size: 16px;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
  border: 0;
}
.btn-2:hover {
  background-color: var(--yollow_color);
  color: var(--white-color);
}

.btn-3 {
  width: 190px;
  height: 60px;
  background: var(--yollow-deep);
  color: var(--white-color);
  border-radius: 5px;
  font-size: 16px;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
  position: relative;
}
.btn-3::after {
  position: absolute;
  content: "";
  height: 95%;
  left: 50%;
  top: 50%;
  width: 2px;
  background-color: white;
  border-radius: 10px;
  transform: translate(0%, -50%);
  -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;
}
.btn-3::before {
  position: absolute;
  content: "";
  height: 95%;
  right: 50%;
  top: 50%;
  width: 2px;
  background-color: white;
  border-radius: 10px;
  transform: translate(0%, -50%);
  -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;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .btn-3 {
    width: 160px;
  }
}
.btn-3:hover {
  color: var(--white-color);
  letter-spacing: 0.5px;
}
.btn-3:hover::after {
  left: 2px;
  opacity: 1;
  visibility: visible;
}
.btn-3:hover::before {
  right: 2px;
  opacity: 1;
  visibility: visible;
}

.form-btn {
  width: 100%;
  height: 60px;
  background: var(--yollow_color);
  color: var(--theme_color);
  border-radius: 5px;
  font-size: 16px;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
  border: 0;
}
.form-btn:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}

.ac-section-name {
  display: inline-block;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
  color: var(--theme_color);
}
.ac-section-name img {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin-top: -12px;
  margin-right: 5px;
}

.ac-section-title {
  line-height: 1.2;
  font-size: 48px;
  margin-bottom: 20px;
}
.ac-section-title span {
  color: var(--yollow_color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .ac-section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-section-title {
    font-size: 40px;
  }
}

.ac-section-subtitle-2 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 9px;
  display: inline-block;
  color: var(--yollow-deep);
  text-transform: capitalize;
}
.ac-section-subtitle-2 img {
  margin-right: 8px;
}

.ac-section-title-2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--yollow-deep);
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-section-title-2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-section-title-2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .ac-section-title-2 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-section-title-2 {
    font-size: 40px;
  }
}

.ac-breadcrumb-area {
  position: relative;
  z-index: 1;
}
.ac-breadcrumb-area::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0));
  top: 0;
  left: 0;
  z-index: 1;
}

.breadcrumb-section {
  position: relative;
  z-index: 7;
}

.ac-breadcrumb-title {
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: var(--white-color);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-breadcrumb-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .ac-breadcrumb-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-breadcrumb-title {
    font-size: 50px;
  }
}

.breadcrumb-navigation {
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb-navigation li {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  color: var(--white-color);
}
.breadcrumb-navigation li a {
  position: relative;
  z-index: 1;
  display: block;
  margin-right: 10px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}
.breadcrumb-navigation li a:hover {
  color: var(--theme_color);
}
.breadcrumb-navigation li a::after {
  content: "\f068";
  font-family: "font awesome 5 Pro";
  display: inline-block;
  font-weight: 500;
  margin-left: 15px;
  font-weight: 300;
  color: var(--white-color);
}
.breadcrumb-navigation li span {
  text-transform: capitalize;
}

.ac-defualt-header-area .ac-botton-header {
  padding: 0 5px;
}

.ac-preloader {
  background-color: var(--white-color);
  padding: 0;
  margin: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99999;
  -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;
}

.loader {
  -webkit-perspective: 700px;
  perspective: 700px;
}

.loader > span {
  font-size: 130px;
  font-family: 'Roboto Condensed', sans-serif;
  display: inline-block;
  animation: flip 2.6s infinite linear;
  transform-origin: 0 70%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  color: var(--theme_color);
}
@media (max-width: 767px) {
  .loader > span {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .loader > span {
    font-size: 60px;
  }
}

@keyframes flip {
  35% {
    transform: rotateX(360deg);
  }
  100% {
    transform: rotatex(360deg);
  }
}
.loader > span:nth-child(6) {
  color: var(--yollow_color);
}

.loader > span:nth-child(2) {
  animation-delay: 0.3s;
}

.loader > span:nth-child(3) {
  animation-delay: 0.6s;
}

.loader > span:nth-child(4) {
  animation-delay: 0.9s;
}

.loader > span:nth-child(5) {
  animation-delay: 1.2s;
}

.loader > span:nth-child(6) {
  animation-delay: 1.5s;
}

.loader > span:nth-child(7) {
  animation-delay: 1.8s;
}

.loader > span:nth-child(8) {
  animation-delay: 2s;
}

.ac-search-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9991;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}
.ac-search-area:is(.active) {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.ac-search-area .ac-search-overly {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
  opacity: 0.9;
  top: 0;
  left: 0;
}

.ac-search-box form {
  position: relative;
}
.ac-search-box form input {
  border-radius: 5px;
  width: 450px;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 20px 98px 20px 30px;
  font-family: 'Roboto Condensed', sans-serif;
}
@media (max-width: 767px) {
  .ac-search-box form input {
    width: 275px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-search-box form input {
    width: 375px;
  }
}
.ac-search-box form input::placeholder {
  color: var(--font_gray);
  font-size: 18px;
}
.ac-search-box form .ac-search-btn {
  position: absolute;
  border: none;
  outline: none;
  right: 0;
  border-radius: 0px 5px 5px 0px;
  top: 0;
  width: 70px;
  height: 67px;
  font-size: 18px;
  color: var(--white-color);
  background-color: var(--theme_color);
  -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;
}
.ac-search-box form .ac-search-btn:hover {
  background-color: var(--yollow_color);
}

/*
************
*************************
03. header
******************************************************* 
*************************************************************** */
.ac-header-area {
  /*position: absolute;
  top: 0;
  left: 0;*/
  width: 100%;
  z-index: 999;
}

.ac-top-header-area {
  background-color: rgba(34, 71, 0, 0.6);
}

@media (max-width: 767px) {
  .ac-top-header-left {
    text-align: center;
    width: 100%;
  }
}

.ac-top-header-text {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  display: inline-block;
  color: var(--white-color);
}
.ac-top-header-text i {
  color: var(--white-color);
  display: inline-block;
  font-size: 14px;
  margin-right: 8px;
}

.ac-logp {
  padding: 25px 0;
  display: inline-block;
}

@media (max-width: 767px) {
  .ac-top-header-right {
    text-align: center;
    width: 100%;
  }
}

.ac-top-header-link a {
  color: var(--white-color);
  font-size: 14px;
  padding: 8px 10px;
  display: inline-block;
  margin-left: 6px;
}
.ac-top-header-link a:hover {
  color: var(--hover-color-2);
}

.ac-user-wrapper {
  position: relative;
  display: inline-block;
}
.ac-user-wrapper .ac-user-dropdown {
  border-top: 3px solid #829B85;
  background-color: #fff;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.16);
  border-radius: 1px 1px 5px 5px;
  position: absolute;
  right: -45px;
  top: 160%;
  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;
  width: 140px;
  z-index: 6;
}
.ac-user-wrapper .ac-user-dropdown a {
  display: block;
  font-size: 16px;
  padding: 12px 0;
  text-align: center;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}
.ac-user-wrapper .ac-user-dropdown a:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}
.ac-user-wrapper .ac-user-dropdown a:hover {
  color: var(--yollow_color);
  background-color: var(--theme_color);
}
.ac-user-wrapper:hover .ac-user-dropdown {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.ac-botton-header {
  padding: 0px 40px;
  background: var(--white-color);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-botton-header {
    padding: 0 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-botton-header {
    padding: 0 35px;
  }
}
@media (max-width: 767px) {
  .ac-botton-header {
    padding: 0 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-botton-header {
    padding: 0 35px;
  }
}

.ac-navbar li {
  list-style: none;
  display: inline-block;
  position: relative;
  padding: 0 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;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-navbar li {
    padding: 0 14px;
  }
}
.ac-navbar li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 37px 0px;
  display: inline-block;
  color: var(--theme_color);
}
.ac-navbar li a:hover {
  color: var(--hover-color-2);
}
.ac-navbar li .ac-submenu {
  width: 250px;
  background: var(--white-color);
  position: absolute;
  left: 0;
  top: 130%;
  border-top: 3px solid var(--theme_color);
  transform-origin: top;
  visibility: hidden;
  opacity: 0;
  z-index: 8;
  -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;
}
.ac-navbar li .ac-submenu li {
  display: block;
  padding: 0;
}
.ac-navbar li .ac-submenu li a {
  display: block;
  padding: 15px 18px;
  text-align: start;
  border-bottom: 1px solid #ebebeb;
}
.ac-navbar li .ac-submenu li a:hover {
  background-color: var(--theme_color);
}
.ac-navbar li .ac-submenu li:last-child a {
  border-bottom: 0;
}
.ac-navbar li:hover .ac-submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  transform-origin: top;
  -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;
}

.ac-main-menu-link a {
  display: inline-block;
  padding: 20px 8px;
  font-size: 18px;
  color: var(--theme_color);
}
.ac-main-menu-link a:hover {
  color: var(--hover-color-2);
}
.ac-main-menu-link a:hover .ac-shopping-count::after {
  background-color: var(--hover-color-2);
}

.ac-shopping-count {
  position: relative;
}
.ac-shopping-count::after {
  position: absolute;
  background-color: var(--theme_color);
  color: var(--white-color);
  height: 18px;
  width: 18px;
  content: "0";
  border-radius: 50%;
  right: -4px;
  text-align: center;
  line-height: 20px;
  top: 20px;
  font-size: 12px;
  -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;
}
.ac-shopping-count:hover::after {
  background-color: var(--hover-color-2);
}

.mobile-toggle i {
  display: inline-block;
  font-size: 30px;
  cursor: pointer;
  color: var(--theme_color);
}
.mobile-toggle i:hover {
  color: var(--yollow_color);
}

@media (max-width: 767px) {
  .ac-header-2:is(.pl-45) {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .ac-header-2:is(.pr-45) {
    padding-right: 10px;
  }
}

.ac-mobile-menu-2 .mobile-toggle i {
  color: var(--white-color);
}

.ac-header-2-area {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 7;
}

.ac-main-menu-2 .ac-navbar li a {
  color: var(--white-color);
  padding: 48px 0px;
}
.ac-main-menu-2 .ac-navbar li a:hover {
  color: var(--hover-color-3);
}
.ac-main-menu-2 .ac-navbar li .ac-submenu {
  border-top: 3px solid var(--yollow-deep);
}
.ac-main-menu-2 .ac-navbar li .ac-submenu li a {
  color: var(--yollow-deep);
}
.ac-main-menu-2 .ac-navbar li .ac-submenu li a:hover {
  color: var(--white-color);
  background-color: var(--hover-color-3);
}

.ac-main-menu-link-2 a {
  color: var(--white-color);
}
.ac-main-menu-link-2 .ac-shopping-count::after {
  background-color: var(--yollow-deep);
}
.ac-main-menu-link-2 .ac-user-wrapper .ac-user-dropdown {
  border-top: 3px solid var(--yollow-deep);
}
.ac-main-menu-link-2 .ac-user-wrapper .ac-user-dropdown a {
  color: var(--yollow-deep);
}
.ac-main-menu-link-2 .ac-user-wrapper .ac-user-dropdown a:hover {
  background-color: var(--yollow-deep);
  color: var(--white-color);
}

.mobile-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  z-index: 999;
}
.mobile-nav-wrapper:is(.expanded) {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.mobile-nav-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.8;
  cursor: pointer;
  z-index: 99;
}

.mobile-nav-content {
  width: 400px;
  background-color: var(--theme_color);
  padding: 40px 30px 40px 30px;
  position: fixed;
  z-index: 999;
  right: 0;
  overflow-y: scroll;
  height: 100vh;
}
@media (max-width: 767px) {
  .mobile-nav-content {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mobile-nav-content {
    width: 400px;
  }
}

span.mobile-nav-close i {
  padding: 5px 18px;
  font-size: 28px;
  color: var(--white-color);
  cursor: pointer;
}
span.mobile-nav-close i:hover {
  color: var(--yollow_color);
}

.mobile-nav-container .container {
  padding: 0;
}
.mobile-nav-container .container .main-menu-list li {
  list-style: none;
}
.mobile-nav-container .container .main-menu-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--white-color);
  text-transform: capitalize;
}
.mobile-nav-container .container .main-menu-list li a:hover {
  color: var(--yollow_color);
}
.mobile-nav-container .container .main-menu-list li a:is(.expanded) {
  color: var(--yollow_color);
}
.mobile-nav-container .container .main-menu-list li a button {
  background-color: transparent;
  border-left: 1px solid var(--font_gray);
  outline: none;
  border-bottom: none;
  border-right: none;
  border-top: none;
  width: 50px;
}
.mobile-nav-container .container .main-menu-list li a button:is(.expanded) i {
  transform: rotate(90deg);
  color: var(--yollow_color);
}
.mobile-nav-container .container .main-menu-list li ul {
  margin-left: 35px;
}

.mobile-nav-contact li {
  list-style: none;
}
.mobile-nav-contact li i {
  font-size: 16px;
  display: inline-block;
  color: var(--white-color);
  margin-right: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.mobile-nav-contact li a {
  font-size: 16px;
  display: inline-block;
  color: var(--white-color);
}
.mobile-nav-contact li:hover i, .mobile-nav-contact li:hover a {
  color: var(--yollow_color);
}
.mobile-nav-contact li:not(:last-child) {
  margin-bottom: 15px;
}

.mobile-nav-social a {
  font-size: 20px;
  display: inline-block;
  margin-right: 15px;
  color: var(--white-color);
}
.mobile-nav-social a:hover {
  color: var(--yollow_color);
}

.home-page-2 .mobile-nav-content {
  background-color: var(--yollow-deep);
}

.mean-container .mean-nav {
  background: transparent;
}
.mean-container .mean-nav ul.ac-navbar li {
  padding: 0;
}
.mean-container .mean-nav .ac-submenu {
  position: static;
  width: auto;
  opacity: 1;
  visibility: visible;
  background-color: transparent;
  border: 0;
}

.mean-container .mean-nav ul.ac-navbar li > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 0;
  padding: 15px 5%;
}
.mean-container .mean-nav ul.ac-navbar li > a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mean-container .mean-nav ul.ac-navbar li ul li a {
  padding: 15px 10%;
}

.mean-container .mean-nav ul.ac-navbar li:not(:last-child) > a:not(.mean-expand) {
  width: 100%;
}

.mean-container .mean-nav ul.ac-navbar li:not(:last-child) > a.mean-expand {
  border: 0;
  margin-top: 0;
  background-color: rgba(255, 255, 255, 0.05);
}

/*
************
*************************
04. hero
******************************************************* 
*************************************************************** */
.ac-hero-wrapper {
  position: relative;
  padding-top: 380px;
  padding-bottom: 95px;
}
.ac-hero-wrapper::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 22%, rgba(255, 255, 255, 0) 60%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ac-hero-content-area {
  position: relative;
  z-index: 999;
}

.ac-hero-tilte {
  line-height: 1.12;
  color: var(--white-color);
  font-size: 80px;
}
.ac-hero-tilte span {
  color: var(--hover-color-2);
  display: inline-block;
}
@media (max-width: 767px) {
  .ac-hero-tilte {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-hero-tilte {
    font-size: 60px;
  }
}

.ac-hero-subtitle {
  font-size: 22px;
  line-height: 32px;
  display: inline-block;
  text-transform: capitalize;
  color: var(--white-color);
}
@media (max-width: 767px) {
  .ac-hero-subtitle {
    font-size: 20px;
  }
}
.ac-hero-subtitle img {
  width: 18px;
  height: 28px;
  display: inline-block;
  margin-top: -10px;
  margin-right: 15px;
}

.ac-hero-video {
  display: inline-block;
  position: relative;
}

.ac-hero-video-link {
  width: 60px !important;
  height: 60px;
  display: inline-block;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (max-width: 767px) {
  .ac-hero-video-link {
    width: 40px;
    height: 40px;
  }
}
.ac-hero-video-link img {
  width: 100%;
  height: 100%;
}
.ac-hero-video-link:hover {
  border-color: var(--hover-color-2);
}

.ac-hero-video-count {
  display: inline-block;
}
.ac-hero-video-count span {
  display: inline-block;
  font-size: 12px;
  color: var(--white-color);
}

.ac-hero-slider-btn-wrapper {
  transform: translateX(-100px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-hero-slider-btn-wrapper {
    transform: translateX(-50px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-hero-slider-btn-wrapper {
    transform: translateX(-25px);
  }
}
@media (max-width: 767px) {
  .ac-hero-slider-btn-wrapper {
    transform: translateX(0px);
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-hero-slider-btn-wrapper {
    transform: translateX(0px);
    justify-content: end;
  }
}

.ac-hero-slider-btn i {
  display: block;
  width: 60px;
  height: 60px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: var(--white-color);
  font-size: 22px;
  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;
}
.ac-hero-slider-btn i:is(:nth-child(1)) {
  margin-bottom: 20px;
}
.ac-hero-slider-btn i:hover {
  border-color: var(--hover-color-2);
  color: var(--white-color);
  background-color: var(--hover-color-2);
}

@media (max-width: 767px) {
  .ac-hero-slider-btn i:is(:nth-child(1)) {
    margin-bottom: 0;
  }
  .ac-hero-slider-btn {
    display: flex;
    grid-gap: 15px;
  }
}
.ac-hero-2-style-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}
.ac-hero-2-style-wrapper .ac-hero-2-style-1 {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.11);
  left: 20%;
}
.ac-hero-2-style-wrapper .ac-hero-2-style-1::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background-color: var(--white-color);
  left: 0;
  top: 0;
  opacity: 1;
  animation-name: toTopBottom;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 15s;
}
.ac-hero-2-style-wrapper .ac-hero-2-style-2 {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.11);
  left: 40%;
}
.ac-hero-2-style-wrapper .ac-hero-2-style-2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background-color: var(--white-color);
  left: 0;
  top: 0;
  opacity: 1;
  animation-name: toTopBottom;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 15s;
  animation-delay: 2s;
}
.ac-hero-2-style-wrapper .ac-hero-2-style-3 {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.11);
  left: 60%;
}
.ac-hero-2-style-wrapper .ac-hero-2-style-3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background-color: var(--white-color);
  left: 0;
  top: 0;
  opacity: 1;
  animation-name: toTopBottom;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 15s;
  animation-delay: 1s;
}
.ac-hero-2-style-wrapper .ac-hero-2-style-4 {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.11);
  left: 80%;
}
.ac-hero-2-style-wrapper .ac-hero-2-style-4::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background-color: var(--white-color);
  left: 0;
  top: 0;
  opacity: 1;
  animation-name: toTopBottom;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 15s;
  animation-delay: 3s;
}

@keyframes toTopBottom {
  0% {
    top: 0;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 10;
  }
}
.ac-hero-2-img-wrapper {
  position: relative;
}
.ac-hero-2-img-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
}

.ac-hero-2-wrapper {
  background: transparent;
  z-index: 7;
  position: relative;
  padding-bottom: 250px;
  padding-top: 370px;
}
@media (max-width: 767px) {
  .ac-hero-2-wrapper {
    padding-top: 180px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-hero-2-wrapper {
    padding-top: 190px;
    padding-bottom: 200px;
  }
}

.ac-hero-2-text .ac-hero-subtitle img {
  margin-top: -3px;
  margin-right: 5px;
}

.ac-hero-2-slide-btn-wrapper {
  position: absolute;
  bottom: 60px;
  right: 51px;
}
@media (max-width: 767px) {
  .ac-hero-2-slide-btn-wrapper {
    right: 0;
    left: 0;
    margin: auto;
  }
}

.ac-hero-2-slider-btn-wrapper .ac-hero-slider-btn i:hover {
  background-color: var(--hover-color-3);
  border-color: var(--hover-color-3);
}

@media (max-width: 767px) {
  .ac-hero-2-slider-btn-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .ac-hero-2-slider-btn-wrapper .ac-hero-slider-btn {
    justify-content: center;
  }
}

/*
************
*************************
05. features
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-g-0 {
    --bs-gutter-x: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-border-left {
    border-radius: 10px 0px 0px 10px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-border-redius-left {
    border-radius: 10px 0px 0px 10px;
    overflow: hidden;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-border-redius-right {
    border-radius: 0px 10px 10px 0px;
    overflow: hidden;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-border-right {
    border-right: 1px solid #ffffff;
  }
}

.ac-features-single-box {
  position: relative;
}

.ac-features-single-box-bg-shpae {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.ac-features-single-box-bg-shpae .ac-features-box-bg-shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-features-single-box {
    margin-bottom: 30px;
  }
}

.ac-features-area {
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-features-area:is(.mb-110) {
    margin-bottom: 138px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-features-area:is(.mb-110) {
    margin-bottom: 165px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-features-area:is(.mb-110) {
    margin-bottom: 0;
  }
}

.ac-features-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-features-wrapper {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .ac-features-wrapper {
    height: 1140px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-features-wrapper {
    height: 705px;
  }
}
.ac-features-wrapper::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: #8B6228;
  opacity: 0.9;
}

.ac-features-content {
  position: absolute;
  width: 100%;
  top: 95px;
  left: 0;
  z-index: 7;
}

.ac-features-single-box-wrapper {
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 20px;
  padding-bottom: 8px;
  position: relative;
  overflow: hidden;
  background-color: var(--yollow-deep);
  -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: 10px;
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-features-single-box-wrapper {
    border-radius: 0;
  }
}
.ac-features-single-box-wrapper:hover {
  background-color: transparent;
  -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;
}
.ac-features-single-box-wrapper:hover .ac-featues-single-box-hover {
  opacity: 1;
}
.ac-features-single-box-wrapper:hover .ac-featues-single-box-hover .ac-features-single-box-hover-img img {
  transform: scale(1.5);
}
.ac-features-single-box-wrapper:hover .ac-features-single-box-bg-shpae {
  display: none;
}

.ac-featues-single-box-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 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;
}

.ac-features-single-box-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.ac-features-single-box-img span {
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  font-family: 'Roboto Condensed', sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px var(--white-color);
  opacity: 0.2;
}

.ac-features-single-box-title {
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 10px;
}

.ac-features-single-box-text p {
  color: #F6F6E8;
}

.ac-features-single-box-hover-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.ac-features-single-box-hover-img::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-color: #362600;
  opacity: 0.8;
}
.ac-features-single-box-hover-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transform: scale(1);
}

/*
************
*************************
06. about us
******************************************************* 
*************************************************************** */
@media (max-width: 767px) {
  .ac-about-left {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-left {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .ac-about-left {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-left {
    margin-bottom: 50px;
  }
}

.ac-about-content-wrapper {
  position: relative;
}

.ac-about-bg-shape {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ac-about-bg-shape .shape-3 {
  top: 30%;
  left: 10%;
  position: absolute;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ac-about-bg-shape .shape-3 {
    top: 18%;
    left: 0%;
  }
}
.ac-about-bg-shape .shape-2 {
  position: absolute;
  bottom: 24%;
  left: 10%;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ac-about-bg-shape .shape-2 {
    bottom: 20%;
    left: 0%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-bg-shape .shape-2 {
    bottom: 38%;
    left: 80%;
  }
}
.ac-about-bg-shape .shape-5 {
  position: absolute;
  top: 8%;
  left: 37%;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ac-about-bg-shape .shape-5 {
    top: 11%;
    left: 25%;
  }
}
.ac-about-bg-shape .shape-4 {
  position: absolute;
  bottom: 13%;
  left: 34%;
}
.ac-about-bg-shape .shape-6 {
  position: absolute;
  right: 3%;
  top: 1%;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ac-about-bg-shape .shape-6 {
    right: -12%;
    top: 1%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-about-bg-shape .shape-6 {
    right: -24%;
    top: 1%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-bg-shape .shape-6 {
    right: -35%;
    top: 1%;
  }
}

.ac-about-left {
  position: relative;
}

.ac-about-img-wrapper-postion {
  position: absolute;
  left: 180px;
  top: 189px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-about-img-wrapper-postion {
    left: 138px;
    top: 157px;
    width: 50%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-img-wrapper-postion {
    position: unset;
    margin-top: 9px;
    margin-left: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-about-img-wrapper-postion {
    position: unset;
    margin-top: 5px;
    margin-left: 5px;
  }
}

.ac-about-img-postion {
  position: relative;
}

.ac-about-img-wrapper img.about-img-3 {
  margin-top: -5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-about-img-wrapper img.about-img-3 {
    margin-top: -10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-img-wrapper img.about-img-3 {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-img-wrapper img.about-img-3 {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-img-wrapper img.about-img-3 {
    margin-top: 10px;
  }
}
.ac-about-img-wrapper .about-img-4 {
  border: 5px solid #fff;
}
.ac-about-img-wrapper a {
  display: inline-block;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.ac-about-img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-about-img-wrapper:is(.ml-30) {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-img-wrapper:is(.mt-40) {
    margin-top: 0px;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-about-img-wrapper:is(.mt-40) {
    margin-top: 0px;
    width: 100%;
    height: 100%;
  }
}

.ac-about-experience {
  display: inline-block;
  z-index: 99;
  position: absolute;
  bottom: -95px;
  right: -75px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-experience {
    top: -115px;
    left: -110px;
    bottom: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-experience {
    top: -100px;
    left: -115px;
    right: auto;
  }
}
@media (max-width: 767px) {
  .ac-about-experience {
    top: -120px;
    right: 40px;
    bottom: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-experience {
    bottom: auto;
    top: -125px;
    left: -115px;
  }
}

.ac-about-experience-img {
  display: inline-block;
  position: relative;
}

.ac-about-experience-text {
  display: inline-block;
  position: absolute;
  left: 51px;
  top: 55px;
  text-align: center;
}
.ac-about-experience-text span {
  font-size: 70px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1;
}
.ac-about-experience-text p {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-text-right:is(.ml-50) {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-about-text-right:is(.ml-50) {
    margin-left: 0;
  }
}

.ac-about-feature-title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.ac-about-feature-content {
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-feature-content.mb-25 {
    margin-bottom: 39px;
  }
}

.ac-about-feature-icon {
  display: inline-block;
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
}

.ac-about-feature-text {
  display: inline-block;
}

.ac-about-feature-title {
  line-height: 1.4;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .ac-about-feature-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-feature-title {
    font-size: 24px;
  }
}

.ac-about-feature-subtitle {
  font-size: 14px;
  line-height: 24px;
  padding-right: 130px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ac-about-feature-subtitle {
    padding-right: 0;
  }
}

.ac-about-author-area {
  border-top: 1px solid #E8E8E8;
  padding-top: 30px;
}

.ac-about-author-content {
  border-right: 1px solid #E8E8E8;
}
@media (max-width: 767px) {
  .ac-about-author-content {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 30px;
    border-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-author-content {
    border-bottom: 0;
    padding-bottom: 0px;
    border-right: 1px solid #E8E8E8;
  }
}

.ac-about-author-img {
  display: flex;
  align-items: center;
}
.ac-about-author-img .about-author-img {
  display: inline-block;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
}

.ac-about-author-name a {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: var(--theme_color);
}
@media (max-width: 767px) {
  .ac-about-author-name a {
    font-size: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-author-name a {
    font-size: 22px;
  }
}
.ac-about-author-name a:hover {
  color: var(--hover-color-2);
}
.ac-about-author-name span {
  font-size: 14px;
  line-height: 24px;
  color: var(--font_gray);
}

.ac-about-author-signature {
  text-align: center;
}
@media (max-width: 767px) {
  .ac-about-author-signature {
    margin-top: 30px;
    text-align: left;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-author-signature {
    margin-top: 0;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .ac-top-header-area {
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
.ac-about-feature-text .ac-about-feature-title {
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-wrapper.pt-135.pb-130 {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-2-right .ac-about-section-title-wrapper {
    width: 67%;
  }
}

.ac-about-2-area {
  position: relative;
}

.ac-about-2-bg-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.ac-about-2-bg-shape .ac-about-2-shape-1 {
  bottom: 0;
  right: 0;
  position: absolute;
}
.ac-about-2-bg-shape .ac-about-2-shape-2 {
  top: 0;
  left: 0;
  position: absolute;
}

.ac-about-2-left-img-content {
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-2-left-img-wrapper:is(.mt-50) {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .ac-about-2-left-img-wrapper:is(.mt-50) {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-2-left-img-wrapper:is(.mt-50) {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .ac-about-2-left-img-wrapper:is(.mr-20) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-2-left-img-wrapper:is(.mr-20) {
    margin-right: 20px;
  }
}
.ac-about-2-left-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.ac-about-2-left-img {
  position: relative;
}
.ac-about-2-left-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.3;
  border-radius: 10px;
}
.ac-about-2-left-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.ac-about-2-left-img-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ac-play-btn {
  display: inline-block;
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 64px;
  font-size: 18px;
  color: var(--yollow-deep);
  position: relative;
}
.ac-play-btn::after {
  position: absolute;
  content: "";
  width: 72px;
  height: 72px;
  background: linear-gradient(49deg, rgb(139, 98, 40) 20%, rgb(255, 255, 255) 100%);
  top: -4px;
  left: -4px;
  border-radius: 50%;
  z-index: -1;
  animation: carcle 2s infinite;
  animation-timing-function: cubic-bezier(0, 0, 0, 0);
}

@keyframes carcle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ac-about-2-left-img-side {
  position: relative;
}
.ac-about-2-left-img-side img {
  height: 550px;
  object-fit: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-about-2-left-img-side img {
    height: 470px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-2-left-img-side img {
    height: 703px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-2-left-img-side img {
    height: 515px;
  }
}
@media (max-width: 767px) {
  .ac-about-2-left-img-side img {
    height: 470px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-2-left-img-side img {
    height: 380px;
  }
}

.ac-about-2-left-img-text {
  position: absolute;
  width: 169px;
  height: 169px;
  display: inline-block;
  border: 5px solid var(--yollow-deep);
  border-radius: 50%;
  text-align: center;
  background-color: var(--white-color);
  left: -88px;
  top: 213px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-about-2-left-img-text {
    top: 155px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-2-left-img-text {
    top: 345px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-2-left-img-text {
    top: 200px;
  }
}
@media (max-width: 767px) {
  .ac-about-2-left-img-text {
    top: 220px;
    left: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-2-left-img-text {
    top: 105px;
    left: -100px;
  }
}
.ac-about-2-left-img-text h1 {
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--yollow-deep);
  line-height: 70px;
}
.ac-about-2-left-img-text span {
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 26px;
  color: var(--yollow-deep);
}

.ac-about-2-feature-title {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--yollow-deep);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-2-feature-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-2-feature-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .ac-about-2-feature-title {
    font-size: 20px;
  }
}

.ac-about-2-play-btn {
  position: relative;
  width: 56px;
  height: 56px;
  display: inline-block;
  border: 3px solid var(--yollow-deep);
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-2-play-btn {
    margin-right: 5px;
  }
}
.ac-about-2-play-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ac-about-2-play-btn i {
  color: #fff;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ac-about-2-play-btn::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -1px;
  left: 0;
  content: "";
  background-color: #000;
  opacity: 0.3;
  border-radius: 50%;
}
.ac-about-2-play-btn a {
  display: inline-block;
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  z-index: 1;
}
.ac-about-2-play-btn:hover a {
  color: var(--hover-color-3);
}

.ac-about-2-vdeo-play-btn-wrapper {
  margin-left: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-about-2-vdeo-play-btn-wrapper {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-2-vdeo-play-btn-wrapper {
    margin-left: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-2-vdeo-play-btn-wrapper {
    margin-left: 90px;
  }
}
@media (max-width: 767px) {
  .ac-about-2-vdeo-play-btn-wrapper {
    margin-left: 0px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-2-vdeo-play-btn-wrapper {
    margin-left: 50px;
    margin-top: 0px;
  }
}
.ac-about-2-vdeo-play-btn-wrapper span {
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--font_gray);
}

.ac-about-2-btn-wrapper {
  border-right: 1px solid #CCCCCC;
}
@media (max-width: 767px) {
  .ac-about-2-btn-wrapper {
    border: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-about-2-btn-wrapper {
    border-right: 1px solid #CCCCCC;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-2-btn-wrapper .btn-3 {
    margin-right: 50px;
  }
}

.ac-about-section-title-wrapper {
  margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-about-2-right:is(.ml-50) {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-2-right:is(.ml-50) {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-about-2-right:is(.ml-50) {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-about-2-right:is(.mt-85) {
    margin-top: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-about-2-right:is(.mt-85) {
    margin-top: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-about-2-right:is(.mt-85) {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .ac-about-2-right:is(.mt-85) {
    margin-top: 45px;
  }
}

.ac-about-2-vdeo-play-btn-wrapper {
  display: flex;
  align-items: center;
}

/*
************
*************************
07. watch video
******************************************************* 
*************************************************************** */
.ac-watch-video-bg {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ac-watch-video-bg {
    background-color: var(--theme_color);
  }
}

.ac-watch-video-bg-shape-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ac-watch-video-bg-shape-wrapper .ac-watch-video-bg-shape {
  position: absolute;
  z-index: 1;
  top: 30%;
  left: 50%;
}
@media (max-width: 767px) {
  .ac-watch-video-bg-shape-wrapper .ac-watch-video-bg-shape {
    left: 0;
  }
}

.ac-watch-video-wrapper {
  background-color: var(--theme_color);
  position: relative;
  border-radius: 0px 10px 10px 0px;
}
.ac-watch-video-wrapper::after {
  position: absolute;
  content: "";
  background-color: var(--theme_color);
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
}

.ac-watch-video-content {
  position: relative;
  z-index: 7;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-watch-video-content {
    padding-right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-slide-active .swiper-wrapper .swiper-slide {
    width: 201px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-slide-active .swiper-wrapper .swiper-slide {
    width: 201px !important;
  }
}
@media (max-width: 767px) {
  .ac-watch-video-slide-active .swiper-wrapper .swiper-slide {
    width: 201px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-watch-video-slide-active .swiper-wrapper .swiper-slide {
    width: 201px !important;
  }
}

.ac-watch-video-items img {
  width: 100%;
  border-radius: 5px;
}

.ac-watch-video-items {
  position: relative;
}
.ac-watch-video-items img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.ac-watch-video-items::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2117647059);
  border-radius: 5px;
  -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;
}
.ac-watch-video-items::after {
  position: absolute;
  content: "\f04b";
  width: 35px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  height: 35px;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  background-color: var(--white-color);
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  color: var(--theme_color);
  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;
}
.ac-watch-video-items:hover::after {
  color: var(--hover-color-2);
}

.ac-watch-video-right-area {
  display: inline-block;
  position: absolute;
  right: 0px;
  width: 100%;
  top: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-right-area {
    position: unset;
    margin-top: -82px;
    padding-bottom: 130px;
  }
}
@media (max-width: 767px) {
  .ac-watch-video-right-area {
    position: unset;
    margin-top: -82px;
    padding-bottom: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-watch-video-right-area {
    position: unset;
    margin-top: -82px;
    padding-bottom: 130px;
  }
}

.ac-watch-video-right-content {
  position: relative;
  width: 100%;
  height: 480px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-watch-video-right-content {
    height: 340px;
    margin-top: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-right-content {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .ac-watch-video-right-content {
    height: 250px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-watch-video-right-content {
    height: 350px;
  }
}
.ac-watch-video-right-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ac-watch-video-right-content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2117647059);
  border-radius: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-watch-video-right-content:hover::after {
  color: var(--hover-color-2);
}

.ac-watch-video-slide-btn i {
  display: inline-block;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  margin-right: 15px;
  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;
}
.ac-watch-video-slide-btn i:hover {
  border-color: var(--hover-color-2);
  background-color: var(--hover-color-2);
}

@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-watch-video-slide-btn-wrapper-2 {
    text-align: center;
    margin-bottom: 50px;
  }
}

/*
************
*************************
08. services
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-service-area-right:is(.ml-50) {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .ac-service-area-right {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-service-area-right {
    margin: 0;
  }
}

.ac-service-card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.ac-service-card-wrapper:hover .ac-service-card-hover {
  opacity: 1;
  visibility: visible;
}

.ac-service-card-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 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: hidden;
}

.ac-service-card-hover-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.ac-service-card-hover-img {
  width: 100%;
  height: 100%;
}
.ac-service-card-hover-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.ac-service-card-hover-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3882352941);
  padding: 35px 35px;
  border-radius: 10px;
  color: var(--white-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-service-card-hover-text {
    padding: 15px 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-service-card-hover-text {
    padding: 39px 14px;
  }
}
.ac-service-card-hover-text h4 {
  color: var(--white-color);
  margin-bottom: 10px;
}
.ac-service-card-hover-text span {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}
.ac-service-card-hover-text a {
  display: inline-block;
  text-transform: capitalize;
  text-decoration: underline;
}
.ac-service-card-hover-text a:hover {
  color: var(--hover-color-2);
}

.ac-service-card {
  text-align: center;
  border-radius: 10px;
  width: 100%;
  height: 185px;
  background-color: #F6F6E8;
}
.ac-service-card img {
  margin-bottom: 25px;
  margin-top: 35px;
}
.ac-service-card h4 {
  -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;
}
.ac-service-card h4:hover {
  color: var(--hover-color-2);
}

@media (max-width: 767px) {
  .ac-service-2-section-title-wrapper p.yollow-deep-color br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-service-2-section-title-wrapper p.yollow-deep-color br {
    display: block;
  }
}

.ac-service-2-area {
  background-color: #FFFAF2;
}

.ac-service-2-box-wrapper {
  background-color: var(--white-color);
  border-bottom: 3px solid transparent;
  border-radius: 10px 10px 10px 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-service-2-box-wrapper::not(:last-child) {
  margin-bottom: 30px;
}
.ac-service-2-box-wrapper:hover {
  border-bottom: 3px solid var(--yollow-deep);
}
.ac-service-2-box-wrapper:hover .ac-service-2-box-img::after {
  opacity: 0.4;
  width: 100%;
}
.ac-service-2-box-wrapper:hover .ac-service-2-box-icon {
  background-color: var(--yollow-deep);
}
.ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_10089, .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_238, .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_239, .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_240, .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_25726, .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_271 {
  -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;
  fill: var(--white-color);
}

.ac-service-2-box-img {
  position: relative;
  margin-bottom: 50px;
}
.ac-service-2-box-img::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 1;
  border-radius: 10px 10px 0px 0px;
  -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;
}
.ac-service-2-box-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
}

.ac-service-2-box-icon {
  width: 60px;
  height: 60px;
  display: flex;
  background-color: var(--white-color);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -30px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  z-index: 1;
  box-shadow: 0px 2px 16px 2px rgba(0, 0, 0, 0.2196078431);
  -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;
}
.ac-service-2-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: none;
}

.ac-service-2-box-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: capitalize;
  color: var(--yollow-deep);
  margin-bottom: 5px;
}

.ac-service-2-box-content {
  margin-bottom: 30px;
  padding: 0 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 767px) {
  .ac-service-2-box-content {
    padding: 0 25px;
  }
}

.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_10089, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_238, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_239, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_240, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_25726, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-img .ac-service-2-box-icon #Path_271 {
  -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;
  fill: var(--theme_color);
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-content .ac-service-2-box-title {
  color: var(--theme_color);
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper .ac-service-2-box-content .ac-service-2-box-title:hover {
  color: var(--hover-color-2);
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover {
  border-bottom: 3px solid var(--theme_color);
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon {
  background-color: var(--theme_color);
}
.ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_10089, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_238, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_239, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_240, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_25726, .ac-services-page .ac-service-2-box .ac-service-2-box-wrapper:hover .ac-service-2-box-icon #Path_271 {
  fill: var(--white-color);
}

/*
************
*************************
09. services details
******************************************************* 
*************************************************************** */
.ac-services-details-img {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-services-details-img {
    height: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-services-details-img {
    height: 350px;
  }
}
.ac-services-details-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.ac-services-details-title {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 18px;
  color: var(--theme_color);
}
@media (max-width: 767px) {
  .ac-services-details-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-services-details-title {
    font-size: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-services-details-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-services-details-title {
    font-size: 42px;
  }
}

.ac-services-details-list ul li {
  list-style: none;
  display: flex;
}
.ac-services-details-list ul li i {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  background-color: var(--theme_color);
  color: var(--white-color);
  display: inline-block;
  margin-right: 15px;
  border-radius: 50%;
  -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 only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-services-details-list ul li i {
    margin-top: 7px;
  }
}
.ac-services-details-list ul li span strong {
  font-size: 18px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
  text-transform: capitalize;
}
.ac-services-details-list ul li:not(:last-child) {
  margin-bottom: 22px;
}
.ac-services-details-list ul li:hover i {
  background-color: var(--hover-color-2);
  transform: rotate(360deg);
}

.ac-services-details-quest-box span {
  font-size: 26px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  background-color: var(--theme_color);
  color: var(--white-color);
  padding: 30px 60px;
  display: block;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-services-details-quest-box span {
    font-size: 18px;
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-services-details-quest-box span {
    font-size: 22px;
    padding: 20px 40px;
  }
}
.ac-services-details-quest-box span::selection {
  color: black;
}

.ac-services-dl-feature-content span {
  font-size: 26px;
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
  margin-bottom: 15px;
}
.ac-services-dl-feature-content ul li {
  align-items: baseline;
  list-style: none;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}
.ac-services-dl-feature-content ul li:not(:last-child) {
  margin-bottom: 8px;
}
.ac-services-dl-feature-content ul li i {
  flex: 0 0 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--theme_color);
  border-radius: 50%;
  color: var(--white-color);
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  margin-right: 10px;
}

.ac-services-dl-feature-img {
  width: 100%;
  height: 220px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .ac-services-dl-feature-img {
    margin-bottom: 35px;
  }
}
.ac-services-dl-feature-img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.ac-services-sidebar {
  padding: 34px 30px;
  padding-bottom: 44px;
  background-color: #F6F6E8;
  margin-bottom: 50px;
  border-radius: 10px;
}

.ac-sidebar-title {
  font-size: 34px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ac-sidebar-title {
    font-size: 30px;
  }
}

.ac-sidebar-category ul li {
  list-style: none;
}
.ac-sidebar-category ul li:not(:last-child) {
  margin-bottom: 20px;
}
.ac-sidebar-category ul li a {
  display: block;
  padding: 25px;
  text-decoration: none;
  background-color: var(--white-color);
  border-radius: 5px;
  color: var(--theme_color);
}
.ac-sidebar-category ul li a i {
  display: inline-block;
  margin-top: 3px;
  float: right;
}
.ac-sidebar-category ul li a:hover {
  color: var(--white-color);
  background-color: var(--theme_color);
}

.ac-service-sidebar-call-bg {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.ac-service-sidebar-call-bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  border-radius: 10px;
}
.ac-service-sidebar-call-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ac-service-sidebar-call-bg h3 {
  color: #fff;
  z-index: 1;
  padding: 35px;
}

/*
************
*************************
10. work process
******************************************************* 
*************************************************************** */
.ac-work-process-area {
  position: relative;
}

.ac-work-process-bg-shape-wrapper {
  position: absolute;
  left: 0;
  bottom: 5%;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-work-process-left:is(.mt-30) {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-work-process-right-wrapper:is(.ml-70) {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-work-process-right-wrapper:is(.ml-70) {
    margin-top: 50px;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-work-process-right-wrapper:is(.ml-70) {
    margin-left: 0px;
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .ac-work-process-right-wrapper:is(.ml-70) {
    margin-left: 0px;
    margin-top: 70px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-work-process-section-title-wrapper p br {
    display: none;
  }
}

.ac-work-process-left-item img {
  margin-top: -5px;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .ac-work-process-left-item img {
    margin-right: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-work-process-left-item img {
    margin-right: 15px;
  }
}
.ac-work-process-left-item h4 {
  margin-bottom: 10px;
  color: var(--yollow-deep);
  line-height: 34px;
}
@media (max-width: 767px) {
  .ac-work-process-left-item h4 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-work-process-left-item h4 {
    font-size: 24px;
  }
}

.ac-work-process-left.content-wrapper {
  display: inline-block;
  text-align: center;
  background-color: #FFFAF2;
  padding: 18px;
  border-radius: 5px;
  -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;
}
.ac-work-process-left.content-wrapper:not(:last-child) {
  margin-bottom: 30px;
  margin-right: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-work-process-left.content-wrapper:not(:last-child) {
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .ac-work-process-left.content-wrapper:not(:last-child) {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-work-process-left.content-wrapper:not(:last-child) {
    margin-right: 18px;
  }
}
.ac-work-process-left.content-wrapper a {
  display: block;
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 26px;
  color: var(--yollow-deep);
}
.ac-work-process-left.content-wrapper svg {
  display: inline-block;
  margin-bottom: 13px;
}
.ac-work-process-left.content-wrapper:hover {
  background-color: var(--yollow-deep);
}
.ac-work-process-left.content-wrapper:hover a {
  color: var(--white-color);
}
.ac-work-process-left.content-wrapper:hover #Path_25732, .ac-work-process-left.content-wrapper:hover #Path_25733, .ac-work-process-left.content-wrapper:hover #Path_25734, .ac-work-process-left.content-wrapper:hover #Path_25735, .ac-work-process-left.content-wrapper:hover #Path_25736, .ac-work-process-left.content-wrapper:hover #Path_25737, .ac-work-process-left.content-wrapper:hover #Path_25738, .ac-work-process-left.content-wrapper:hover #Path_25739, .ac-work-process-left.content-wrapper:hover #Path_25740, .ac-work-process-left.content-wrapper:hover #Path_25741, .ac-work-process-left.content-wrapper:hover #Path_25742, .ac-work-process-left.content-wrapper:hover #Path_25728, .ac-work-process-left.content-wrapper:hover #Path_25729, .ac-work-process-left.content-wrapper:hover #Path_25730, .ac-work-process-left.content-wrapper:hover #Path_25731, .ac-work-process-left.content-wrapper:hover #Path_25727, .ac-work-process-left.content-wrapper:hover #Path_25745, .ac-work-process-left.content-wrapper:hover #Path_25746, .ac-work-process-left.content-wrapper:hover #Path_25747, .ac-work-process-left.content-wrapper:hover #Path_25748, .ac-work-process-left.content-wrapper:hover #Path_25749, .ac-work-process-left.content-wrapper:hover #Path_25750, .ac-work-process-left.content-wrapper:hover #Path_25751, .ac-work-process-left.content-wrapper:hover #Path_25752, .ac-work-process-left.content-wrapper:hover #Path_25753, .ac-work-process-left.content-wrapper:hover #Path_25754, .ac-work-process-left.content-wrapper:hover #Path_25755, .ac-work-process-left.content-wrapper:hover #Path_25756, .ac-work-process-left.content-wrapper:hover #Path_25757 {
  fill: var(--white-color);
  -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;
}

.ac-work-process-right-video-img {
  position: relative;
}
.ac-work-process-right-video-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.3;
  border-radius: 10px;
}
.ac-work-process-right-video-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.ac-work-process-right-play-btn {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 1;
}
.ac-work-process-right-play-btn:hover .ac-play-btn {
  background-color: var(--hover-color-3);
  color: var(--white-color);
}

/*
************
*************************
11. our project
******************************************************* 
*************************************************************** */
.ac-our-project-area {
  position: relative;
}

.ac-our-project-bg-shape-area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #F6F6E8;
}
.ac-our-project-bg-shape-area .our-project-shape-1 {
  position: absolute;
  top: 170px;
  left: 50px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ac-our-project-bg-shape-area .our-project-shape-1 {
    left: 47%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-our-project-bg-shape-area .our-project-shape-1 {
    left: 47%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-project-bg-shape-area .our-project-shape-1 {
    left: 16%;
    top: 1%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-our-project-bg-shape-area .our-project-shape-1 {
    left: 16%;
    top: 1%;
  }
}
@media (max-width: 767px) {
  .ac-our-project-bg-shape-area .our-project-shape-1 {
    left: 16%;
    top: 1%;
  }
}
.ac-our-project-bg-shape-area .our-project-shape-2 {
  position: absolute;
  bottom: 170px;
  left: 50px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ac-our-project-bg-shape-area .our-project-shape-2 {
    bottom: 10%;
    left: 40%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-our-project-bg-shape-area .our-project-shape-2 {
    bottom: 10%;
    left: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-project-bg-shape-area .our-project-shape-2 {
    bottom: 10%;
    left: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-our-project-bg-shape-area .our-project-shape-2 {
    bottom: 10%;
    left: 40%;
  }
}
@media (max-width: 767px) {
  .ac-our-project-bg-shape-area .our-project-shape-2 {
    bottom: 10%;
    left: 40%;
  }
}
.ac-our-project-bg-shape-area .our-project-shape-3 {
  position: absolute;
  top: 170px;
  right: 50px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ac-our-project-bg-shape-area .our-project-shape-3 {
    top: 5%;
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-our-project-bg-shape-area .our-project-shape-3 {
    top: 5%;
    right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-project-bg-shape-area .our-project-shape-3 {
    right: 10%;
    top: 3%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-our-project-bg-shape-area .our-project-shape-3 {
    right: 10%;
    top: 3%;
  }
}
@media (max-width: 767px) {
  .ac-our-project-bg-shape-area .our-project-shape-3 {
    right: 10%;
    top: 3%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-our-project-tab-action {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .ac-our-project-tab-action {
    margin-bottom: 70px;
  }
}
.ac-our-project-tab-action .nav {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .ac-our-project-tab-action .nav {
    justify-content: flex-start;
  }
}
.ac-our-project-tab-action .nav .nav-link {
  font-weight: 400;
  font-size: 16px;
  background: transparent;
  padding: 8px 13px;
  border: 1px solid var(--theme_color);
  position: relative;
  margin-left: 20px;
  text-transform: capitalize;
  border-radius: 5px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-our-project-tab-action .nav .nav-link {
    margin-right: 20px;
    margin-left: 0;
  }
}
.ac-our-project-tab-action .nav .nav-link span {
  position: absolute;
  top: -10px;
  left: 18px;
  background: var(--white-color);
  line-height: 1;
  color: var(--theme_color);
  display: inline-block;
  padding: 2px 2px;
  display: none;
}
.ac-our-project-tab-action .nav .nav-link:is(.active) {
  color: var(--white-color);
  background: var(--theme_color);
}
.ac-our-project-tab-action .nav .nav-link:is(.active) span {
  display: block;
  background: var(--theme_color);
  color: var(--white-color);
}

.ac-our-project-slide-wrapper {
  position: relative;
}
.ac-our-project-slide-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ac-our-project-item-text-wrapper {
  position: absolute;
  left: 0;
  bottom: 20px;
  display: none;
}

.ac-our-project-item-text {
  position: relative;
  width: 300px;
  height: 80px;
  background-color: #fff;
  border-radius: 0px 10px 10px 0px;
}
@media (max-width: 767px) {
  .ac-our-project-item-text {
    width: 250px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-our-project-item-text {
    width: 220px;
  }
}
.ac-our-project-item-text::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 50px;
  background-color: var(--theme_color);
  top: 15px;
  left: 10px;
  border-radius: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-our-project-item-text a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--theme_color);
  margin-left: 35px;
  margin-top: 10px;
  display: inline-block;
}
.ac-our-project-item-text a:hover {
  color: var(--hover-color-2);
}
.ac-our-project-item-text p {
  margin-left: 35px;
}
.ac-our-project-item-text:hover::after {
  background-color: var(--hover-color-2);
}

.ac-our-project-carousel-active {
  transform: translateX(calc((100% - 1290px) / 2));
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-our-project-carousel-active {
    transform: translateX(calc((100% - 1110px) / 2));
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-project-carousel-active {
    transform: unset;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-our-project-carousel-active {
    transform: translateX(calc((100% - 690px) / 2));
  }
}
@media (max-width: 767px) {
  .ac-our-project-carousel-active {
    transform: unset;
  }
}

.ac-out-project-slide-area {
  width: 100%;
  overflow: hidden;
}

.ac-our-project-slide-dots {
  margin-top: 65px;
  width: 100%;
  text-align: center;
}
.ac-our-project-slide-dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 0 6px;
  background-color: transparent;
  border: 2px solid var(--theme_color);
}
.ac-our-project-slide-dots .swiper-pagination-bullet:is(.swiper-pagination-bullet-active) {
  background-color: var(--theme_color);
}

.ac-our-project-slide-item:is(.swiper-slide-active) .ac-our-project-item-text-wrapper {
  display: block;
}

@media (max-width: 767px) {
  .ac-our-project-2-section-title-wrapper p br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-our-project-2-section-title-wrapper p br {
    display: block;
  }
}

.ac-our-project-2-area {
  background-color: #FFFAF2;
  position: relative;
}

.ac-our-project-2-bg-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

.ac-our-project-2-item-wrapper {
  position: relative;
}

.ac-our-project-2-item-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.ac-our-project-2-item-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  border-radius: 10px;
  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;
}
.ac-our-project-2-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.ac-our-project-2-item-wrapper {
  overflow: hidden;
  height: 450px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-our-project-2-item-wrapper {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .ac-our-project-2-item-wrapper {
    height: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-our-project-2-item-wrapper {
    height: 400px;
  }
}
.ac-our-project-2-item-wrapper:hover .ac-our-project-2-item-text {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-our-project-2-item-wrapper:hover .ac-our-project-2-item-text {
    bottom: 30px;
  }
}
.ac-our-project-2-item-wrapper:hover .ac-our-project-2-item-img::after {
  visibility: visible;
  opacity: 0.4;
  height: 100%;
}

.ac-our-project-2-item-text {
  text-align: center;
}
.ac-our-project-2-item-text span {
  font-size: 16px;
  display: inline-block;
  line-height: 26px;
  text-transform: capitalize;
  background-color: var(--yollow-deep);
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: 0px 0px 5px 5px;
  margin-bottom: 15px;
}
.ac-our-project-2-item-text a {
  display: block;
  font-size: 24px;
  line-height: 34px;
  color: var(--yollow-deep);
  font-weight: 700;
}
.ac-our-project-2-item-text a:hover {
  color: var(--theme_color);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-our-project-2-item-text a {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-our-project-2-item-text a {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-our-project-2-item-text a {
    font-size: 22px;
  }
}

.ac-our-project-2-item-text {
  text-align: center;
  position: absolute;
  bottom: -60px;
  right: 0;
  width: 85%;
  margin: auto;
  left: 0;
  background-color: #fff;
  border-radius: 10px;
  padding-bottom: 15px;
  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;
}

.ac-our-project-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-our-project-2-item-text {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-our-project-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-our-project-2-item-text {
    bottom: 30px;
  }
}
.ac-our-project-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-our-project-2-item-img::after {
  visibility: visible;
  opacity: 0.4;
  height: 100%;
}

.ac-our-project-2-pagination {
  text-align: center;
}
.ac-our-project-2-pagination span {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background: transparent;
  border: 2px solid var(--yollow-deep);
  display: inline-block;
}
.ac-our-project-2-pagination span:is(.swiper-pagination-bullet-active) {
  background-color: var(--hover-color-3);
}

.ac-our-project-page .ac-our-project-2-acive .swiper-wrapper .swiper-slide .ac-our-project-2-item-wrapper .ac-our-project-2-item-text a {
  color: var(--theme_color);
}
.ac-our-project-page .ac-our-project-2-acive .swiper-wrapper .swiper-slide .ac-our-project-2-item-wrapper .ac-our-project-2-item-text a:hover {
  color: var(--hover-color-2);
}
.ac-our-project-page .ac-our-project-2-acive .swiper-wrapper .swiper-slide .ac-our-project-2-item-wrapper .ac-our-project-2-item-text span {
  background-color: var(--theme_color);
  color: var(--white-color);
}
.ac-our-project-page .ac-our-project-2-acive .ac-our-project-2-pagination span {
  border: 2px solid var(--theme_color);
}
.ac-our-project-page .ac-our-project-2-acive .ac-our-project-2-pagination span:is(.swiper-pagination-bullet-active) {
  background-color: var(--theme_color);
}

/*
************
*************************
12. project details
******************************************************* 
*************************************************************** */
@media (max-width: 767px) {
  .project-details-page p br {
    display: none;
  }
}

.ac-project-details-wrapper p {
  font-size: 18px;
  color: var(--font_gray);
}

.ac-project-details-img {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-project-details-img:is(.mb-180) {
    margin-bottom: 285px;
  }
}
@media (max-width: 767px) {
  .ac-project-details-img:is(.mb-180) {
    height: 350px;
    margin-bottom: 735px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-project-details-img:is(.mb-180) {
    margin-bottom: 350px;
  }
}
.ac-project-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.ac-project-details-title {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-project-details-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-project-details-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ac-project-details-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-project-details-title {
    font-size: 34px;
  }
}

h3.ac-project-details-title {
  margin-bottom: 25px;
  margin-top: 21px;
}

.projects-details-info {
  background: #F6F6E8;
  border-radius: 10px;
  padding-top: 75px;
  padding-bottom: 75px;
  position: absolute;
  width: 95%;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-details-info {
    padding-bottom: 45px;
    bottom: -235px;
  }
}
@media (max-width: 767px) {
  .projects-details-info {
    position: unset;
    width: 100%;
    padding-bottom: 45px;
    margin-top: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .projects-details-info {
    padding-bottom: 45px;
    bottom: -300px;
    position: absolute;
    width: 95%;
  }
}

.project-details-info-text {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .project-details-info-text {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .project-details-info-text:not(:last-child) {
    margin-bottom: 30px;
  }
}
.project-details-info-text p {
  margin: 0;
}
.project-details-info-text a:hover {
  color: var(--theme_color);
  font-weight: 700;
}

.ac-project-details-list ul li {
  list-style: none;
  display: flex;
}
.ac-project-details-list ul li i {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
  background-color: var(--theme_color);
  color: var(--white-color);
  display: inline-block;
  margin-right: 15px;
  border-radius: 50%;
  -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) {
  .ac-project-details-list ul li i {
    margin-top: 7px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-project-details-list ul li i {
    margin-top: 0px;
  }
}
.ac-project-details-list ul li span {
  font-size: 18px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
  text-transform: capitalize;
  font-weight: 700;
}
.ac-project-details-list ul li:not(:last-child) {
  margin-bottom: 22px;
}
.ac-project-details-list ul li:hover i {
  background-color: var(--hover-color-2);
  transform: rotate(360deg);
}

.projects-details-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
.projects-details-pagination a {
  width: 50px;
  height: 50px;
  background-color: var(--theme_color);
  color: var(--white-color);
  display: inline-block;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  border-radius: 50%;
}
.projects-details-pagination a:hover {
  background-color: var(--hover-color-2);
}

.project-page .ac-our-project-2-item-text {
  background-color: var(--theme_color);
}
.project-page .ac-our-project-2-item-text a {
  color: var(--white-color);
}
.project-page .ac-our-project-2-item-text a:hover {
  color: var(--hover-color-2);
}
.project-page .ac-our-project-2-item-text span {
  background-color: var(--white-color);
  color: var(--theme_color);
}

.project-page span {
  border: 2px solid var(--theme_color);
}
.project-page span:is(.swiper-pagination-bullet-active) {
  background-color: var(--theme_color);
}

/*
************
*************************
13. our product
******************************************************* 
*************************************************************** */
.ac-our-product-content-wrapper {
  background-color: #F6F6E8;
  border-radius: 10px;
  text-align: center;
  min-height: 390px;
  padding: 40px;
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-product-content-wrapper {
    padding: 30px 15px;
    min-height: 350px;
  }
}
.ac-our-product-content-wrapper:hover .ac-our-product-item-action {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.ac-product-offer {
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
}
.ac-product-offer span {
  font-size: 14px;
  font-weight: 700;
  background-color: var(--theme_color);
  padding: 4px 13px;
  color: var(--white-color);
  border-radius: 2px;
}

.ac-our-product-item-img {
  /*height: 220px;
  width: 220px;*/
  height: 100%;
  width: 100%;
  margin: auto;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-our-product-item-img {
    /*height: 220px;
    width: 220px;*/
    height: 100%;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-product-item-img {
    /*width: 180px;
    height: 180px;*/
    height: 100%;
    width: 100%;
  }
}
.ac-our-product-item-img a {
  width: 30px;
  height: 30px;
  background-color: var(--white-color);
  line-height: 30px;
  font-size: 16px;
  margin: 0 5px;
  border-radius: 3px;
  box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1803921569);
  display: inline-block;
}
.ac-our-product-item-img a:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}
.ac-our-product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ac-our-product-item-action {
  position: absolute;
  bottom: 35px;
  right: 0;
  left: 0;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.ac-our-product-item-review i {
  font-size: 14px;
  margin: 0 1px;
  display: inline-block;
  color: var(--yollow_color);
}

.ac-our-product-item-name a {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
  text-transform: capitalize;
  margin-bottom: 7px;
}
.ac-our-product-item-name a:hover {
  color: var(--hover-color-2);
}

.ac-our-product-item-price .new-price {
  display: inline-block;
  font-weight: 700;
  color: var(--theme_color);
}
.ac-our-product-item-price .old-price {
  display: inline-block;
  margin: 0 10px;
  font-weight: 700;
  color: var(--font_gray);
  text-decoration: line-through;
}

/*
************
*************************
14. product details
******************************************************* 
*************************************************************** */
.ac-product-details-item-img {
  width: 100%;
  /*height: 620px;*/
  height: auto;
  border-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-product-details-item-img {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .ac-product-details-item-img {
    /*height: 300px;*/
    margin-bottom: 48px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-img {
    /*height: 550px;*/
    margin-bottom: 48px;
  }
}
.ac-product-details-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.ac-product-details-item-name {
  display: inline-block;
  font-size: 48px;
  color: var(--theme_color);
  margin-bottom: 25px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-product-details-item-name {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-product-details-item-name {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ac-product-details-item-name {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-name {
    font-size: 34px;
  }
}

.ac-product-details-item-price {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .ac-product-details-item-price {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-price {
    font-size: 24px;
  }
}

.ac-product-details-item-review {
  margin-bottom: 15px;
}
.ac-product-details-item-review i {
  display: inline-block;
  color: var(--yollow_color);
  margin: 0 2px;
}
.ac-product-details-item-review span {
  display: inline-block;
  font-size: 16px;
  color: var(--font_gray);
  margin-left: 15px;
}
@media (max-width: 767px) {
  .ac-product-details-item-review span {
    margin-left: 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-review span {
    margin-left: 15px;
  }
}

.ac-product-details-item-text .ac-product-availabe {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}

.product-details-item-quantity {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 41px;
  margin-top: 30px;
}
.product-details-item-quantity .ac-quantity-box {
  width: 97px;
  height: 60px;
  border: 1px solid #eceae0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.product-details-item-quantity .ac-quantity-box .sub {
  padding: 0;
  border: none;
  outline: none;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 8px;
  width: 30px;
  border-left: 1px solid #eceae0;
  height: 30px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.product-details-item-quantity .ac-quantity-box .sub:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}
.product-details-item-quantity .ac-quantity-box .add {
  padding: 0;
  border: none;
  outline: none;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 8px;
  width: 30px;
  border-left: 1px solid #eceae0;
  border-top: 1px solid #eceae0;
  height: 30px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.product-details-item-quantity .ac-quantity-box .add:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}
.product-details-item-quantity .ac-quantity-box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  padding-right: 30px;
  text-align: center;
}

.product-details-item-quantity-text {
  font-size: 22px;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
  line-height: 1;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .ac-product-details-item-btn-wrapper .btn-1 {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-btn-wrapper .btn-1 {
    margin-bottom: 0px;
  }
}

.ac-product-details-item-share-link span {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: var(--font_gray);
  margin-right: 20px;
}
@media (max-width: 767px) {
  .ac-product-details-item-share-link span {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-share-link span {
    font-size: 18px;
  }
}
.ac-product-details-item-share-link a {
  display: inline-block;
  font-size: 20px;
  color: var(--font_gray);
  padding: 0 8px;
}
.ac-product-details-item-share-link a:hover {
  color: var(--yollow_color);
}

.ac-product-item-description-title {
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-product-item-description-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-product-item-description-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ac-product-item-description-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-description-title {
    font-size: 34px;
  }
}

.ac-product-item-description {
  margin-bottom: 45px;
}

.ac-product-details-item-review-img a {
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .ac-product-details-item-review-img a {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-review-img a {
    margin-bottom: 0px;
  }
}
.ac-product-details-item-review-img a img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.ac-product-details-item-review-box h2 {
  margin-bottom: 57px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-product-details-item-review-box h2 {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-product-details-item-review-box h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ac-product-details-item-review-box h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-review-box h2 {
    font-size: 34px;
  }
}

.ac-product-details-item-review-wrapper {
  display: flex;
  padding-left: 20px;
  border-bottom: 1px solid #eceae0;
  padding-right: 20px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .ac-product-details-item-review-wrapper {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-details-item-review-wrapper {
    flex-wrap: unset;
  }
}
.ac-product-details-item-review-wrapper:not(:last-child) {
  margin-bottom: 70px;
}

.ac-product-item-review-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .ac-product-item-review-title-wrapper {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-review-title-wrapper {
    flex-wrap: unset;
  }
}

.ac-product-item-review-title a {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--theme_color);
  line-height: 1;
  margin-bottom: 20px;
}
.ac-product-item-review-title a:hover {
  color: var(--hover-color-2);
}
.ac-product-item-review-title span {
  font-size: 14px;
  line-height: 1;
  display: block;
  color: var(--font_gray);
  margin: 0;
}
@media (max-width: 767px) {
  .ac-product-item-review-title span {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-review-title span {
    margin-bottom: 0;
  }
}

.ac-product-item-review-star i {
  font-size: 16px;
  display: inline-block;
  margin: 0 2px;
  color: var(--yollow_color);
}

.ac-product-item-review-text p {
  font-size: 18px;
}

.ac-product-item-comment-form {
  font-size: 48px;
  margin-bottom: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-product-item-comment-form {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-product-item-comment-form {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ac-product-item-comment-form {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-comment-form {
    font-size: 34px;
  }
}

.ac-product-item-comment-form-review {
  margin-bottom: 35px;
}
.ac-product-item-comment-form-review span {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--font_gray);
  margin-right: 15px;
  line-height: 1;
}
@media (max-width: 767px) {
  .ac-product-item-comment-form-review span {
    font-size: 16px;
    margin-right: 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-comment-form-review span {
    font-size: 18px;
    margin-right: 15px;
  }
}
.ac-product-item-comment-form-review i {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: var(--font_gray);
  margin: 0 4px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .ac-product-item-comment-form-review i {
    margin: 0 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-product-item-comment-form-review i {
    margin: 0 4px;
  }
}
.ac-product-item-comment-form-review i:hover {
  color: var(--hover-color-2);
}

/*
************
*************************
15. call to action
******************************************************* 
*************************************************************** */
.z-index-7 {
  z-index: 7;
  position: relative;
}

.ac-cta-area {
  position: relative;
  margin-bottom: 130px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-cta-area {
    margin-bottom: 135px;
  }
}
@media (max-width: 767px) {
  .ac-cta-area {
    margin-bottom: 935px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-cta-area {
    margin-bottom: 400px;
  }
}

.ac-cta-top-area {
  position: relative;
}
.ac-cta-top-area::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  opacity: 0.5;
}

@media (max-width: 767px) {
  .ac-cta-top-left {
    text-align: center;
  }
}

.ac-cta-right {
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.ac-cta-right-content {
  margin-left: 130px;
}
@media (max-width: 767px) {
  .ac-cta-right-content {
    margin-top: 58px;
    margin-left: 0;
  }
}

.ac-cta-play-btn a {
  display: inline-block;
  width: 86px;
  height: 86px;
  background-color: var(--white-color);
  color: var(--theme_color);
  border-radius: 10px;
  text-align: center;
  line-height: 86px;
  font-size: 25px;
  position: relative;
}
.ac-cta-play-btn a:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}
.ac-cta-play-btn a::after {
  position: absolute;
  content: "";
  width: 105px;
  height: 105px;
  background-color: transparent;
  top: -10px;
  left: -10px;
  border: 1px solid rgba(255, 255, 255, 0.5411764706);
  border-radius: 10px;
}

.ac-cta-bottom-area {
  position: absolute;
  width: 65%;
  bottom: -125px;
  right: 0;
  background-color: var(--theme_color);
  padding-left: 48px;
  padding-right: 200px;
  border-radius: 10px 0px 0px 10px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ac-cta-bottom-area {
    width: 70%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-cta-bottom-area {
    width: 80%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-cta-bottom-area {
    position: absolute;
    padding: 0;
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .ac-cta-bottom-area {
    position: absolute;
    padding: 0;
    width: 100%;
    border-radius: 0;
    bottom: -900px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-cta-bottom-area {
    position: absolute;
    padding: 0;
    width: 100%;
    border-radius: 0;
    bottom: -387px;
  }
}

.ac-cta-bg-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

.ac-cta-bottom-box-2 {
  text-align: center;
}
.ac-cta-bottom-box-2 img {
  margin-bottom: 23px;
}
.ac-cta-bottom-box-2 span {
  display: block;
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  color: var(--white-color);
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .border-top-sm {
    border-top: 1px solid rgba(232, 232, 232, 0.568627451);
  }
}

@media (max-width: 767px) {
  .border-top-xs {
    border-top: 1px solid rgba(232, 232, 232, 0.568627451);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .border-top-xs {
    border-top: none;
  }
}

@media (max-width: 767px) {
  .ac-cta-2-section-title-wrapper p br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-cta-2-section-title-wrapper p br {
    display: block;
  }
}

.ac-cta-2-wrapper {
  position: relative;
}
.ac-cta-2-wrapper::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.65;
}

.ac-cta-2-title {
  position: relative;
  z-index: 1;
}

.ac-cta-2-section-title-wrapper p {
  color: #cccccc;
}

.ac-cta-2-subscribe {
  position: relative;
  z-index: 1;
}

.ac-cta-2-input input {
  height: 60px;
  width: 100%;
  padding: 0 25px;
  border: 0;
  padding-right: 60px;
  border-radius: 3px;
}
.ac-cta-2-input input::placeholder {
  font-size: 14px;
  color: var(--font-gray);
}

@media (max-width: 767px) {
  .ac-cta-2-input-btn {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-cta-2-input-btn {
    text-align: left;
  }
}

/*
************
*************************
16. our team
******************************************************* 
*************************************************************** */
.ac-our-team-area {
  position: relative;
}

.ac-our-team-bg-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.ac-our-team-bg-shape .our-team-bg-shape-1 {
  position: absolute;
  right: 0;
  top: 5%;
}
.ac-our-team-bg-shape .our-team-bg-shape-2 {
  position: absolute;
  left: 0;
  top: 5%;
}

.ac-our-team-member-wrapper {
  position: relative;
  overflow: hidden;
}
.ac-our-team-member-wrapper:hover .ac-our-member-name {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.ac-our-team-member-wrapper:hover .ac-our-team-member-social-link {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.ac-our-team-member-wrapper:hover .ac-our-team-member-img::after {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.ac-our-team-member-img {
  position: relative;
  width: 100%;
  height: 300px;
}
.ac-our-team-member-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.ac-our-team-member-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(1deg, rgba(0, 0, 0, 0.6) 22%, rgba(255, 255, 255, 0) 60%);
  top: 100%;
  left: 0;
  border-radius: 10px;
  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;
}

.ac-our-member-name {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  bottom: 20px;
  transform: translateY(70px);
  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 only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-member-name {
    bottom: 10px;
  }
}
.ac-our-member-name a {
  font-size: 20px;
  display: block;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--white-color);
}
.ac-our-member-name a:hover {
  color: var(--hover-color-2);
}
.ac-our-member-name span {
  display: block;
  font-size: 14px;
  color: var(--white-color);
}

.ac-our-team-member-social-link {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  transform: translateX(60px);
  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;
}
.ac-our-team-member-social-link a {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--font_color);
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-team-member-social-link a {
    margin-bottom: 10px;
  }
}
.ac-our-team-member-social-link a:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}

.ac-our-team-item img {
  margin-top: -5px;
  margin-right: 15px;
}
.ac-our-team-item h4 {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .ac-our-team-item h4 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-our-team-item h4 {
    font-size: 24px;
  }
}

.ac-our-team-right-area {
  margin-left: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-our-team-right-area {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-our-team-right-area {
    margin-top: 65px;
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  .ac-our-team-right-area {
    margin-top: 65px;
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .ac-our-team-page-top-area .ac-our-team-right-area .section-title-wrapper p br {
    display: none;
  }
}

/*
************
*************************
17. team details
******************************************************* 
*************************************************************** */
.ac-team-details-img {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-team-details-img {
    margin-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .ac-team-details-img {
    margin-bottom: 55px;
    height: 350px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-team-details-img {
    margin-bottom: 55px;
    height: 500px;
  }
}
.ac-team-details-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.ac-team-details-img::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 100%;
  background: var(--yollow_color);
  opacity: 0.1;
  left: 0;
  top: 0;
  border-radius: 10px;
  animation: color_grident linear infinite 20s;
}
@media (max-width: 767px) {
  .ac-team-details-img::after {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-team-details-img::after {
    display: block;
  }
}
.ac-team-details-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  background: var(--theme_color);
  opacity: 0.1;
  left: 0;
  top: 0;
  border-radius: 10px;
  animation: color_grident-2 linear infinite 20s;
}
@media (max-width: 767px) {
  .ac-team-details-img::before {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-team-details-img::before {
    display: block;
  }
}

@keyframes color_grident {
  0% {
    left: 92%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 92%;
  }
}
@keyframes color_grident-2 {
  0% {
    top: 92%;
    @media (max-width: 767px) {
      top: 85%;
    }
  }
  50% {
    top: 0%;
  }
  100% {
    top: 92%;
    @media (max-width: 767px) {
      top: 85%;
    }
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-team-details-content:is(.pl-40) {
    padding-left: 19px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-team-details-content:is(.pl-40) {
    padding-left: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-team-details-area:is(.pb-130) {
    padding-bottom: 105px;
  }
}

.ac-team-details-name {
  line-height: 1;
  font-size: 48px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
  margin-bottom: 26px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-team-details-name {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-team-details-name {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .ac-team-details-name {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-team-details-name {
    font-size: 34px;
  }
}

.ac-team-details-postion {
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  display: inline-block;
  margin-bottom: 37px;
}
.ac-team-details-postion::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--theme_color);
  top: 50%;
  right: -80px;
  transform: translate(-50%, -50%);
  animation: sping linear infinite 5s;
}

@keyframes sping {
  0% {
    background-color: var(--yollow_color);
  }
  50% {
    background-color: var(--theme_color);
  }
  100% {
    background-color: var(--yollow_color);
  }
}
.ac-team-details-social {
  margin-bottom: 30px;
}
.ac-team-details-social li {
  list-style: none;
  display: inline-block;
}
.ac-team-details-social li a {
  font-size: 16px;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #F6F6E8;
  color: var(--font_gray);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 15px;
}
.ac-team-details-social li a:hover {
  color: var(--white-color);
  background-color: var(--theme_color);
}

.ac-team-details-highlight {
  font-size: 26px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  padding-right: 150px;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-team-details-highlight {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .ac-team-details-highlight {
    padding-right: 0px;
  }
}

.ac-team-details-text p {
  font-size: 18px;
}

.ac-getintouch-area .section-title-wrapper {
  border-top: 1px solid #E8E8E8;
}

/*
************
*************************
18. testimonial
******************************************************* 
*************************************************************** */
.ac-testimonial-area {
  background-color: #F6F6E8;
  position: relative;
}

.ac-testimonial-left-area {
  position: relative;
  z-index: 8;
}

.ac-testimonial-shape-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.ac-testimonial-shape-wrapper .ac-testimonial-bg-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.ac-testimonial-slide-item {
  text-align: center;
  background-color: var(--white-color);
  border-radius: 10px;
  padding-bottom: 45px;
}
.ac-testimonial-slide-item img {
  margin-bottom: 30px;
}
.ac-testimonial-slide-item p {
  font-size: 18px;
  padding: 0 50px;
  line-height: 28px;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .ac-testimonial-slide-item p {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-testimonial-slide-item p {
    padding: 0 20px;
  }
}
.ac-testimonial-slide-item:hover .ac-testimonial-item-style span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 1%, rgb(33, 83, 0) 68%);
  -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;
}

.ac-testimonial-item-style span {
  display: block;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 38%, rgb(33, 83, 0) 68%);
  margin-bottom: 40px;
  border-radius: 0px 10px 0px 0px;
  -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;
}

.ac-testimonial-parson-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-testimonial-parson-wrapper:hover .ac-testimonial-person-img {
  border-color: var(--hover-color-2);
}

.ac-testimonial-person-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--theme_color);
  -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;
}
.ac-testimonial-person-img img {
  width: 100%;
  height: 100%;
}

.ac-testimonial-person-name a {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
}
.ac-testimonial-person-name a:hover {
  color: var(--hover-color-2);
}
.ac-testimonial-person-name span {
  display: block;
  font-size: 12px;
  line-height: 28px;
  text-align: start;
}

.ac-testimonial-right .ac-testimonial-slide-active {
  height: 360px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ac-testimonial-right .ac-testimonial-slide-active {
    height: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-testimonial-right .ac-testimonial-slide-active {
    height: 360px;
  }
}

.ac-testimonial-slide-dots {
  text-align: center;
  margin-top: 30px;
}
.ac-testimonial-slide-dots span {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background: transparent;
  border: 2px solid var(--theme_color);
  display: inline-block;
}
.ac-testimonial-slide-dots span:is(.swiper-pagination-bullet-active) {
  background-color: var(--theme_color);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-testimonial-right {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .ac-testimonial-2-section-title-wrapper p br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-testimonial-2-section-title-wrapper p br {
    display: block;
  }
}

.ac-testimonial-2-area {
  position: relative;
  background-color: #FFFAF2;
}

.ac-testimonial-2-bg-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.ac-testimonial-2-item {
  position: relative;
}

.ac-testimonial-2-item-content {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.ac-testimonial-2-item-content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
}

.ac-testimonial-2-item-text-wrapper {
  z-index: 1;
  position: relative;
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 45px 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;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-testimonial-2-item-text-wrapper {
    padding: 45px 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-testimonial-2-item-text-wrapper {
    padding: 45px 30px;
  }
}
@media (max-width: 767px) {
  .ac-testimonial-2-item-text-wrapper {
    padding: 45px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-testimonial-2-item-text-wrapper {
    padding: 45px 60px;
  }
}

.ac-testimonial-2-rating i {
  display: inline-block;
  font-size: 10px;
  color: var(--yollow-deep);
}

.ac-testimonial-2-text span {
  font-size: 18px;
  display: inline-block;
  line-height: 28px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--yollow-deep);
  font-weight: 400;
}

.ac-testimonial-2-profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  margin-bottom: 22px;
}
.ac-testimonial-2-profile-img a {
  display: block;
}
.ac-testimonial-2-profile-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ac-testimonial-2-profile-text a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--yollow-deep);
  line-height: 28px;
  text-transform: capitalize;
}
.ac-testimonial-2-profile-text a:hover {
  color: var(--yollow-deep);
}
.ac-testimonial-2-profile-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--font_gray);
  line-height: 22px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-testimonial-2-slide-btn {
    display: flex;
    justify-content: center;
  }
}
.ac-testimonial-2-slide-btn .ac-testimonial-2-prev {
  position: absolute;
  left: 175px;
  top: 50%;
  z-index: 8;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .ac-testimonial-2-slide-btn .ac-testimonial-2-prev {
    left: 50px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ac-testimonial-2-slide-btn .ac-testimonial-2-prev {
    left: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-testimonial-2-slide-btn .ac-testimonial-2-prev {
    left: 5px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-testimonial-2-slide-btn .ac-testimonial-2-prev {
    position: unset;
    margin-right: 15px;
    margin-top: 40px;
  }
}
.ac-testimonial-2-slide-btn .ac-testimonial-2-next {
  position: absolute;
  right: 175px;
  top: 50%;
  z-index: 8;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .ac-testimonial-2-slide-btn .ac-testimonial-2-next {
    right: 50px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ac-testimonial-2-slide-btn .ac-testimonial-2-next {
    right: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-testimonial-2-slide-btn .ac-testimonial-2-next {
    right: 5px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-testimonial-2-slide-btn .ac-testimonial-2-next {
    position: unset;
    margin-left: 15px;
    margin-top: 40px;
  }
}
.ac-testimonial-2-slide-btn i {
  cursor: pointer;
  font-size: 18px;
  display: inline-block;
  color: var(--font_gray);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--font_gray);
  text-align: center;
  line-height: 40px;
  -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;
}
.ac-testimonial-2-slide-btn i:hover {
  color: var(--hover-color-3);
  border-color: var(--hover-color-3);
}

.ac-testimonial-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-testimonial-2-item-wrapper .ac-testimonial-2-item-text-wrapper {
  background-color: transparent;
}
.ac-testimonial-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-testimonial-2-item-wrapper .ac-testimonial-2-rating i {
  color: var(--white-color);
}
.ac-testimonial-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-testimonial-2-item-wrapper .ac-testimonial-2-text span {
  color: var(--white-color);
}
.ac-testimonial-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-testimonial-2-item-wrapper .ac-testimonial-2-profile-text a {
  color: var(--white-color);
}
.ac-testimonial-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-testimonial-2-item-wrapper .ac-testimonial-2-profile-text span {
  color: var(--white-color);
}

.ac-testimonial-2-item-wrapper:hover .ac-testimonial-2-item-text-wrapper {
  background-color: transparent;
}
.ac-testimonial-2-item-wrapper:hover .ac-testimonial-2-rating i {
  color: var(--white-color);
}
.ac-testimonial-2-item-wrapper:hover .ac-testimonial-2-text span {
  color: var(--white-color);
}
.ac-testimonial-2-item-wrapper:hover .ac-testimonial-2-profile-text a {
  color: var(--white-color);
}
.ac-testimonial-2-item-wrapper:hover .ac-testimonial-2-profile-text span {
  color: var(--white-color);
}

.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide .ac-testimonial-2-item-wrapper .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-rating i {
  color: var(--theme_color);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide .ac-testimonial-2-item-wrapper .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-text span {
  color: var(--theme_color);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide .ac-testimonial-2-item-wrapper .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-profile .ac-testimonial-2-profile-text a {
  color: var(--theme_color);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide .ac-testimonial-2-item-wrapper .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-profile .ac-testimonial-2-profile-text a:hover {
  color: var(--hover-color-2);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide .ac-testimonial-2-item-wrapper:hover .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-rating i {
  color: var(--white-color);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide .ac-testimonial-2-item-wrapper:hover .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-text span {
  color: var(--white-color);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide .ac-testimonial-2-item-wrapper:hover .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-profile .ac-testimonial-2-profile-text a {
  color: var(--white-color);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide .ac-testimonial-2-item-wrapper:hover .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-profile .ac-testimonial-2-profile-text a:hover {
  color: var(--hover-color-2);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-testimonial-2-item-wrapper .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-rating i {
  color: var(--white-color);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-testimonial-2-item-wrapper .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-text span {
  color: var(--white-color);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-testimonial-2-item-wrapper .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-profile .ac-testimonial-2-profile-text a {
  color: var(--white-color);
}
.ac-testimonial-page .ac-testimonial-2-acive .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-testimonial-2-item-wrapper .ac-testimonial-2-item-content .ac-testimonial-2-item-text-wrapper .ac-testimonial-2-profile .ac-testimonial-2-profile-text a:hover {
  color: var(--hover-color-2);
}

/*
************
*************************
19. blog
******************************************************* 
*************************************************************** */
.ac-blog-single-post-img-wrapper {
  position: relative;
}

.ac-blog-single-post-date {
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: var(--white-color);
  padding: 4px 10px;
  border-radius: 4px;
}
.ac-blog-single-post-date span {
  display: block;
  font-size: 16px;
  line-height: 18px;
  text-transform: capitalize;
  text-align: center;
  color: var(--theme_color);
  font-family: 'Roboto Condensed', sans-serif;
  margin: 2px 0;
}

.ac-blog-single-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.ac-blog-single-post-meta {
  /*position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--white-color);*/
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 0px 10px 0px 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-single-post-meta {
    /*padding-top: 20px;
    padding-right: 5px;*/
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-single-post-meta {
    /*padding-top: 20px;
    padding-right: 30px;*/
  }
}
@media (max-width: 767px) {
  .ac-blog-single-post-meta {
    /*padding-top: 20px;
    padding-right: 0px;*/
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-single-post-meta {
    /*padding-top: 30px;
    padding-right: 50px;*/
  }
}
.ac-blog-single-post-meta a {
  font-size: 14px;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  color: var(--font-gray);
  padding-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-blog-single-post-meta a {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-single-post-meta a {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-single-post-meta a {
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .ac-blog-single-post-meta a {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-single-post-meta a {
    padding-right: 30px;
  }
}
.ac-blog-single-post-meta a i {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
  color: var(--theme_color);
  -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 only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-blog-single-post-meta a i {
    margin-right: 2px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-single-post-meta a i {
    margin-right: 2px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-single-post-meta a i {
    margin-right: 2px;
  }
}
@media (max-width: 767px) {
  .ac-blog-single-post-meta a i {
    margin-right: 2px;
  }
}
.ac-blog-single-post-meta a:hover {
  color: var(--hover-color-2);
}
.ac-blog-single-post-meta a:hover i {
  color: var(--hover-color-2);
}

.ac-blog-single-post-name .ac-blog-single-post-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-blog-single-post-name .ac-blog-single-post-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-single-post-name .ac-blog-single-post-title {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .ac-blog-single-post-name .ac-blog-single-post-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-single-post-name .ac-blog-single-post-title {
    font-size: 25px;
  }
}
.ac-blog-single-post-name .ac-blog-single-post-title:hover {
  color: var(--hover-color-2);
}

.ac-watch-video-icon-box {
  width: 73px;
  height: 73px;
  display: inline-block;
  background: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 73px;
  font-size: 20px;
}
.ac-watch-video-icon-box:hover {
  background-color: #fff;
  color: #215300;
}

.ac-blog-single-post-img {
  /*height: 250px;*/
}

@media (max-width: 767px) {
  .ac-blog-2-section-title-wrapper p br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-section-title-wrapper p br {
    display: block;
  }
}

.ac-blog-2-wrapper {
  position: relative;
}

.ac-blog-2-img {
  width: 100%;
  border-radius: 10px;
  position: relative;
}
.ac-blog-2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ac-blog-2-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 15%, rgba(0, 0, 0, 0.4) 60%);
}

.ac-blog-2-cetegories {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
  background-color: var(--yollow-deep);
  padding: 3px 10px;
  display: inline-block;
  color: var(--white-color);
  border-radius: 3px;
  margin-bottom: 15px;
}

.ac-blog-2-title {
  font-size: 30px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.33;
  color: var(--white-color);
  -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;
  margin-bottom: 23px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-blog-2-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-2-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-2-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .ac-blog-2-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-title {
    font-size: 30px;
  }
}
.ac-blog-2-title:hover {
  text-decoration: underline;
}

.ac-blog-2-text {
  position: absolute;
  left: 0;
  bottom: 0px;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .ac-blog-2-text {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-text {
    padding: 0 40px;
  }
}
.ac-blog-2-text p {
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 26px;
  color: var(--white-color);
}

.ac-blog-2-date {
  position: absolute;
  top: 40px;
  left: 40px;
  background-color: var(--yollow-deep);
  padding: 15px 19px;
  border-radius: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-2-date {
    padding: 9px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-2-date {
    padding: 15px 19px;
  }
}
@media (max-width: 767px) {
  .ac-blog-2-date {
    padding: 9px 15px;
    top: 20px;
    left: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-date {
    padding: 15px 19px;
    top: 40px;
    left: 40px;
  }
}
.ac-blog-2-date span {
  display: inline-block;
  font-size: 34px;
  line-height: 28px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--white-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-2-date span {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-2-date span {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .ac-blog-2-date span {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-date span {
    font-size: 34px;
  }
}
.ac-blog-2-date p {
  display: block;
  font-size: 24px;
  line-height: 28px;
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
  text-transform: capitalize;
  color: var(--white-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-blog-2-date p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-2-date p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ac-blog-2-date p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-date p {
    font-size: 24px;
  }
}

.ac-blog-2-wrapper .ac-blog-2-img {
  height: 690px;
}
@media (max-width: 767px) {
  .ac-blog-2-wrapper .ac-blog-2-img {
    height: 600px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-2-wrapper .ac-blog-2-img {
    height: 690px;
  }
}

.ac-blog-2-sm .ac-blog-2-img {
  height: 330px;
}

.ac-blog-2-sm .ac-blog-2-text .ac-blog-2-title {
  margin-bottom: 30px;
}

.ac-blog-details-img {
  width: 100%;
  /*height: 420px;*/
  border-radius: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .ac-blog-details-img {
    /*height: 300px;*/
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-img {
    /*height: 420px;*/
  }
}
.ac-blog-details-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.ac-blog-details-date {
  background-color: var(--theme_color);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  border: 4px solid var(--white-color);
  text-align: center;
  position: absolute;
  left: 20px;
  top: 20px;
}
.ac-blog-details-date span {
  display: block;
  color: var(--white-color);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 26px;
  line-height: 1;
}
.ac-blog-details-date p {
  display: block;
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  color: var(--white-color);
  line-height: 1;
}

.ac-blog-details-post-author a {
  display: inline-block;
  color: var(--font_gray);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  margin-right: 20px;
}
.ac-blog-details-post-author a i {
  display: inline-block;
  font-size: 18px;
  color: var(--font_gray);
  margin-right: 10px;
}
.ac-blog-details-post-author a:hover {
  color: var(--theme_color);
}
.ac-blog-details-post-author a:hover i {
  color: var(--theme_color);
}

.ac-blog-details-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-details-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .ac-blog-details-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-title {
    font-size: 35px;
  }
}

.ac-blog-details-tag-title {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .ac-blog-details-tag-link {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-tag-link {
    margin-bottom: 0px;
  }
}
.ac-blog-details-tag-link a {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 16px;
  color: var(--font_gray);
  margin-right: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-tag-link a {
    margin-right: 5px;
  }
}
.ac-blog-details-tag-link a:hover {
  color: var(--theme_color);
}

.ac-blog-details-share-link {
  text-align: right;
}
@media (max-width: 767px) {
  .ac-blog-details-share-link {
    text-align: left;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-share-link {
    text-align: right;
  }
}
.ac-blog-details-share-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--font_gray);
  background-color: #ccc;
  border-radius: 50%;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .ac-blog-details-share-link a {
    margin-left: 0;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-share-link a {
    margin-left: 10px;
    margin-right: 0px;
  }
}
.ac-blog-details-share-link a:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}

.ac-blog-details-meta {
  padding-top: 40px;
  padding-bottom: 37px;
  border-top: 1px solid #ccc;
  margin-top: 31px;
}

.ac-blog-details-author {
  padding: 30px;
  display: flex;
  align-items: center;
  background-color: #F6F6E8;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-blog-details-author {
    padding: 20px;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-author {
    padding: 20px;
    flex-wrap: unset;
  }
}

.ac-blog-details-author-img a {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .ac-blog-details-author-img a {
    width: 110px;
    height: 110px;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-author-img a {
    width: 110px;
    height: 110px;
  }
}
.ac-blog-details-author-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.blog-details-author-name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 10px;
}
.blog-details-author-name:hover {
  color: var(--hover-color-2);
}

.ac-blog-details-comment-title {
  margin-bottom: 30px;
}

.ac-blog-details-comment-box {
  display: flex;
  align-items: center;
  padding: 30px;
  background-color: #F6F6E8;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-blog-details-comment-box {
    padding: 20px;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-comment-box {
    padding: 20px;
  }
}

.ac-blog-details-comment-img a {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .ac-blog-details-comment-img a {
    width: 110px;
    height: 110px;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-comment-img a {
    width: 110px;
    height: 110px;
    margin-right: 20px;
  }
}
.ac-blog-details-comment-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ac-blog-details-comment-content p {
  margin: 0;
}

.ac-blog-details-comment-author-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.ac-blog-details-comment-author-name a {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: capitalize;
}
.ac-blog-details-comment-author-name a:hover {
  color: var(--hover-color-2);
}
.ac-blog-details-comment-author-name .blog-details-comment-reply-btn {
  background-color: var(--theme_color);
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 5px;
  font-weight: 400;
  color: var(--white-color);
}
.ac-blog-details-comment-author-name .blog-details-comment-reply-btn:hover {
  color: var(--white-color);
  background-color: var(--hover-color-2);
}

.ac-blog-details-comment h3 {
  margin-bottom: 30px;
}

.blog-sidebar-search {
  margin-bottom: 30px;
}

.ac-blog-sidebar-search form {
  width: 100%;
  height: 90px;
  background-color: var(--theme_color);
  border-radius: 5px;
  position: relative;
}
.ac-blog-sidebar-search form input {
  padding-left: 50px;
  padding-right: 50px;
}
.ac-blog-sidebar-search form input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  padding-left: 30px;
  padding-right: 70px;
  display: block;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.ac-blog-sidebar-search form button {
  width: auto;
  padding: 0;
  font-size: 22px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.ac-blog-sidebar-search form button:hover {
  color: var(--hover-color-2);
}

.ac-blog-sidebar-posts {
  background-color: #F6F6E8;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 26px;
  padding-bottom: 13px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-blog-sidebar-posts {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.ac-blog-sidebar-posts h3 {
  margin-bottom: 30px;
}

.ac-blog-sidebar-posts ul li {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-blog-sidebar-posts ul li:hover {
  background-color: var(--white-color);
}

.ac-blog-sidebar-post-img {
  margin-right: 15px;
}
.ac-blog-sidebar-post-img a {
  width: 90px;
  height: 90px;
  display: inline-block;
  border-radius: 5px;
}
.ac-blog-sidebar-post-img a img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.ac-blog-sidebar-post-comment {
  display: block;
  font-size: 14px;
  color: var(--font_gray);
}
.ac-blog-sidebar-post-comment i {
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  color: var(--font_gray);
}

.ac-sidebar-post-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme_color);
  display: block;
}
.ac-sidebar-post-title:hover {
  color: var(--hover-color-2);
}

.blog-sidebar-categories {
  background-color: #F6F6E8;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 26px;
  padding-bottom: 35px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .blog-sidebar-categories {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog-sidebar-categories h3 {
  margin-bottom: 30px;
}

.blog-sidebar-categories ul li {
  list-style: none;
}
.blog-sidebar-categories ul li a {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
  display: block;
  padding: 10px 0;
}
.blog-sidebar-categories ul li a:hover {
  color: var(--hover-color-2);
  background-color: var(--white-color);
}
.blog-sidebar-categories ul li a i {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
}

.blog-sidebar-tags {
  background-color: #F6F6E8;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 26px;
  padding-bottom: 35px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .blog-sidebar-tags {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog-sidebar-tags h3 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .blog-sidebar-tags-links {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-sidebar-tags-links {
    margin-bottom: 0px;
  }
}
.blog-sidebar-tags-links a {
  display: inline-block;
  font-size: 16px;
  color: var(--font_gray);
  margin-right: 10px;
  margin-bottom: 5px;
}
.blog-sidebar-tags-links a:hover {
  color: var(--hover-color-2);
}

/*
************
*************************
20. blog details
******************************************************* 
*************************************************************** */
.ac-blog-details-img {
  width: 100%;
  /*height: 420px;*/
  border-radius: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .ac-blog-details-img {
    /*height: 300px;*/
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-img {
    /*height: 420px;*/
  }
}
.ac-blog-details-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.ac-blog-details-date {
  background-color: var(--theme_color);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  border: 4px solid var(--white-color);
  text-align: center;
  position: absolute;
  left: 20px;
  top: 20px;
}
.ac-blog-details-date span {
  display: block;
  color: var(--white-color);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 26px;
  line-height: 1;
}
.ac-blog-details-date p {
  display: block;
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  color: var(--white-color);
  line-height: 1;
}

.ac-blog-details-post-author a {
  display: inline-block;
  color: var(--font_gray);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  margin-right: 20px;
}
.ac-blog-details-post-author a i {
  display: inline-block;
  font-size: 18px;
  color: var(--font_gray);
  margin-right: 10px;
}
.ac-blog-details-post-author a:hover {
  color: var(--theme_color);
}
.ac-blog-details-post-author a:hover i {
  color: var(--theme_color);
}

.ac-blog-details-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-blog-details-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .ac-blog-details-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-title {
    font-size: 35px;
  }
}

.ac-blog-details-tag-title {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .ac-blog-details-tag-link {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-tag-link {
    margin-bottom: 0px;
  }
}
.ac-blog-details-tag-link a {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 16px;
  color: var(--font_gray);
  margin-right: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-tag-link a {
    margin-right: 5px;
  }
}
.ac-blog-details-tag-link a:hover {
  color: var(--theme_color);
}

.ac-blog-details-share-link {
  text-align: right;
}
@media (max-width: 767px) {
  .ac-blog-details-share-link {
    text-align: left;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-share-link {
    text-align: right;
  }
}
.ac-blog-details-share-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--font_gray);
  background-color: #ccc;
  border-radius: 50%;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .ac-blog-details-share-link a {
    margin-left: 0;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-share-link a {
    margin-left: 10px;
    margin-right: 0px;
  }
}
.ac-blog-details-share-link a:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}

.ac-blog-details-meta {
  padding-top: 40px;
  padding-bottom: 37px;
  border-top: 1px solid #ccc;
  margin-top: 31px;
}

.ac-blog-details-author {
  padding: 30px;
  display: flex;
  align-items: center;
  background-color: #F6F6E8;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-blog-details-author {
    padding: 20px;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-author {
    padding: 20px;
    flex-wrap: unset;
  }
}

.ac-blog-details-author-img a {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .ac-blog-details-author-img a {
    width: 110px;
    height: 110px;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-author-img a {
    width: 110px;
    height: 110px;
  }
}
.ac-blog-details-author-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.blog-details-author-name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 10px;
}
.blog-details-author-name:hover {
  color: var(--hover-color-2);
}

.ac-blog-details-comment-title {
  margin-bottom: 30px;
}

.ac-blog-details-comment-box {
  display: flex;
  align-items: center;
  padding: 30px;
  background-color: #F6F6E8;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-blog-details-comment-box {
    padding: 20px;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-comment-box {
    padding: 20px;
  }
}

.ac-blog-details-comment-img a {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .ac-blog-details-comment-img a {
    width: 110px;
    height: 110px;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-blog-details-comment-img a {
    width: 110px;
    height: 110px;
    margin-right: 20px;
  }
}
.ac-blog-details-comment-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ac-blog-details-comment-content p {
  margin: 0;
}

.ac-blog-details-comment-author-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.ac-blog-details-comment-author-name a {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: capitalize;
}
.ac-blog-details-comment-author-name a:hover {
  color: var(--hover-color-2);
}
.ac-blog-details-comment-author-name .blog-details-comment-reply-btn {
  background-color: var(--theme_color);
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 5px;
  font-weight: 400;
  color: var(--white-color);
}
.ac-blog-details-comment-author-name .blog-details-comment-reply-btn:hover {
  color: var(--white-color);
  background-color: var(--hover-color-2);
}

.ac-blog-details-comment h3 {
  margin-bottom: 30px;
}

.blog-sidebar-search {
  margin-bottom: 30px;
}

.ac-blog-sidebar-search form {
  width: 100%;
  height: 65px;
  background-color: var(--theme_color);
  border-radius: 5px;
  position: relative;
}
.ac-blog-sidebar-search form input {
  padding-left: 50px;
  padding-right: 50px;
}
.ac-blog-sidebar-search form input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  padding-left: 30px;
  padding-right: 70px;
  display: block;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.ac-blog-sidebar-search form button {
  width: auto;
  padding: 0;
  font-size: 22px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.ac-blog-sidebar-search form button:hover {
  color: var(--hover-color-2);
}

.ac-blog-sidebar-posts {
  background-color: #F6F6E8;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 26px;
  padding-bottom: 13px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ac-blog-sidebar-posts {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.ac-blog-sidebar-posts h3 {
  margin-bottom: 30px;
}

.ac-blog-sidebar-posts ul li {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-blog-sidebar-posts ul li:hover {
  background-color: var(--white-color);
}

.ac-blog-sidebar-post-img {
  margin-right: 15px;
}
.ac-blog-sidebar-post-img a {
  width: 90px;
  height: 90px;
  display: inline-block;
  border-radius: 5px;
}
.ac-blog-sidebar-post-img a img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.ac-blog-sidebar-post-comment {
  display: block;
  font-size: 14px;
  color: var(--font_gray);
}
.ac-blog-sidebar-post-comment i {
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  color: var(--font_gray);
}

.ac-sidebar-post-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme_color);
  display: block;
}
.ac-sidebar-post-title:hover {
  color: var(--hover-color-2);
}

.blog-sidebar-categories {
  background-color: #F6F6E8;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 26px;
  padding-bottom: 35px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .blog-sidebar-categories {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog-sidebar-categories h3 {
  margin-bottom: 30px;
}

.blog-sidebar-categories ul li {
  list-style: none;
}
.blog-sidebar-categories ul li a {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
  display: block;
  padding: 10px 0;
}
.blog-sidebar-categories ul li a:hover {
  color: var(--hover-color-2);
  background-color: var(--white-color);
}
.blog-sidebar-categories ul li a i {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
}

.blog-sidebar-tags {
  background-color: #F6F6E8;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 26px;
  padding-bottom: 35px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .blog-sidebar-tags {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog-sidebar-tags h3 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .blog-sidebar-tags-links {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-sidebar-tags-links {
    margin-bottom: 0px;
  }
}
.blog-sidebar-tags-links a {
  display: inline-block;
  font-size: 16px;
  color: var(--font_gray);
  margin-right: 10px;
  margin-bottom: 5px;
}
.blog-sidebar-tags-links a:hover {
  color: var(--hover-color-2);
}

.ac-faq-section-title-wrapper .ac-section-subtitle-2 {
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-faq-section-title-wrapper p br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-faq-right {
    margin-bottom: 60px;
  }
}

.ac-faq-right-text-box {
  border: 1px solid var(--yollow-deep);
  border-radius: 5px;
  margin-bottom: 30px;
}
.ac-faq-right-text-box .ac-faq-right-text-title .accordion-button {
  color: var(--yollow-deep);
  border: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.41;
  font-family: 'Roboto Condensed', sans-serif;
  background-color: transparent;
  box-shadow: none;
  padding: 20px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-faq-right-text-box .ac-faq-right-text-title .accordion-button {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .ac-faq-right-text-box .ac-faq-right-text-title .accordion-button {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-faq-right-text-box .ac-faq-right-text-title .accordion-button {
    font-size: 24px;
  }
}
.ac-faq-right-text-box .ac-faq-right-text-title .accordion-button::after {
  flex-shrink: 0;
  margin-left: auto;
  height: 100%;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  background-image: unset;
  font-weight: 300;
  background-size: unset;
  transition: transform 0.2s ease-in-out;
}
.ac-faq-right-text-box .ac-faq-right-text-title .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.ac-faq-right-text-box .ac-faq-right-text {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 22px;
  margin-top: -8px;
  font-size: 16px;
  line-height: 26px;
  color: var(--font_gray);
}

.ac-faq-page .ac-faq-right-text-box {
  border: 1px solid var(--theme_color);
}

/*
************
*************************
21. contact us
******************************************************* 
*************************************************************** */
.ac-contact-page-social-link ul li {
  display: inline-block;
  margin-right: 10px;
}
.ac-contact-page-social-link ul li a {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  background: #f6f4ec;
  color: var(--theme_color);
  line-height: 45px;
}
.ac-contact-page-social-link ul li a:hover {
  background-color: var(--theme_color);
  color: var(--white-color);
}

.comment-form-input-box input {
  height: 70px;
  width: 100%;
  border: none;
  background: #f6f4ec;
  padding: 0 30px;
  margin-bottom: 20px;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  color: var(--theme_color);
  font-weight: 400;
  text-transform: capitalize;
  font-family: 'Roboto Condensed', sans-serif;
}
.comment-form-input-box input::placeholder {
  color: rgb(136, 136, 136);
  font-size: 16;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
}
.comment-form-input-box textarea {
  font-size: 16px;
  color: var(--theme_color);
  height: 190px;
  width: 100%;
  background: #f6f4ec;
  padding: 18px 30px 30px;
  border: none;
  border-radius: 5px;
  outline: none;
  margin-bottom: 30px;
  font-weight: 400;
  text-transform: capitalize;
}
.comment-form-input-box textarea::placeholder {
  color: rgb(136, 136, 136);
  font-size: 16;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ac-contact-page-left .section-title-wrapper:is(.pr-60) {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ac-contact-page-left .section-title-wrapper:is(.pr-60) {
    padding-right: 0px;
  }
}

.ac-contact-map {
  width: 100%;
  height: 400px;
}
.ac-contact-map iframe {
  width: 100%;
  height: 100%;
}

.ac-contact-address {
  background-color: #F6F6E8;
}

.ac-contact-address-wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-contact-address-wrapper {
    margin-bottom: 30px;
  }
}
.ac-contact-address-wrapper .icon {
  width: 60px;
  height: 60px;
  background-color: var(--theme_color);
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 20px;
  color: var(--white-color);
  -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;
  margin-right: 20px;
}
.ac-contact-address-wrapper .title span {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
}
.ac-contact-address-wrapper .title p {
  margin: 0;
}
.ac-contact-address-wrapper:hover .icon {
  background-color: var(--white-color);
  color: var(--theme_color);
}

/*
************
*************************
22. brand
******************************************************* 
*************************************************************** */
.ac-brand-area {
  border-top: 1px solid #e9e9e9;
}

.ac-brand-slide-item-wrapper {
  text-align: center;
}
.ac-brand-slide-item-wrapper img {
  display: inline-block;
  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;
}
.ac-brand-slide-item-wrapper a {
  font-size: 24px;
  line-height: 34px;
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: var(--theme_color);
}
.ac-brand-slide-item-wrapper a:hover {
  color: var(--hover-color-2);
}
.ac-brand-slide-item-wrapper span {
  display: block;
  font-size: 14px;
  line-height: 24px;
}
.ac-brand-slide-item-wrapper:hover img {
  filter: saturate(0%);
}

.ac-brand-2-area {
  position: relative;
}

.ac-brand-2-bg-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  text-align: center;
}
.ac-brand-2-bg-text span {
  color: #cccccc;
  font-size: 160px;
  line-height: 170px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  opacity: 0.1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ac-brand-2-bg-text span {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .ac-brand-2-bg-text span {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-brand-2-bg-text span {
    font-size: 70px;
  }
}

.ac-brand-2-item a {
  display: inline-block;
}

.ac-brand-2-wrapper .ac-brand-2-slide-active .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-brand-2-item svg path {
  fill: var(--yollow-deep);
}

.ac-brand-2-item:hover svg path {
  fill: var(--yollow-deep);
}

.faq-page .ac-brand-2-slide-active .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .ac-brand-2-item svg path {
  fill: var(--theme_color);
}
.faq-page .ac-brand-2-item:hover svg path {
  fill: var(--theme_color);
}

/*
************
*************************
23. cart
******************************************************* 
*************************************************************** */
.ac-shopping-cart-table {
  overflow-x: auto;
  background-color: #F6F6E8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-shopping-cart-table.table-full table {
    width: 100%;
  }
}
.ac-shopping-cart-table table {
  border-radius: 5px;
  border: 1px solid #dedede;
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-shopping-cart-table table {
    width: 774px;
  }
}
.ac-shopping-cart-table table thead th {
  font-weight: 700;
  font-size: 16px;
  padding: 25px 0;
  color: #1d1d1e;
  border-bottom: 1px solid #dedede;
  padding-right: 15px;
  padding-left: 15px;
}
.ac-shopping-cart-table table thead th:first-child {
  padding-left: 25px;
}
.ac-shopping-cart-table table tbody td {
  vertical-align: middle;
  padding: 30px 15px;
}
.ac-shopping-cart-table table tbody td .ac-product-cart-price {
  font-size: 16px;
  color: var(--theme_color);
  font-weight: 700;
}
.ac-shopping-cart-table tr:not(:last-child) tbody td {
  border-bottom: 1px solid #dedede;
}

.table > :not(:last-child) > :last-child > * {
  border-bottom-color: #dedede;
}

.ac-shopping-cart-product-box {
  align-items: center;
  display: flex;
}
.ac-shopping-cart-product-box > * {
  flex: 0 0 auto;
}
.ac-shopping-cart-product-box .image {
  width: 64px;
  margin-right: 22px;
}
.ac-shopping-cart-product-box .title-wrap {
  overflow: hidden;
}
.ac-shopping-cart-product-box .title-wrap .title {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}
.ac-shopping-cart-product-box .title-wrap .title a {
  text-decoration: none;
}
.ac-shopping-cart-product-box .title-wrap .title a:hover {
  color: var(--hover-color-2);
}

.ac-cart-times-btn {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--font_gray);
  text-align: center;
  display: inline-block;
  transition: 0.3s;
}
.ac-cart-times-btn:hover {
  color: var(--hover-color-2);
}

.ac-cart-total-box-2 {
  border: 1px solid #dedede;
  background-color: #F6F6E8;
  border-radius: 10px;
  padding-bottom: 40px;
}
.ac-cart-total-box-2 ul li .label {
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--theme_color);
}
.ac-cart-total-box-2 ul li .price {
  font-weight: 700;
  font-size: 16px;
  color: var(--theme_color);
  float: right;
}
.ac-cart-total-box-2 ul {
  padding: 0 20px;
}
.ac-cart-total-box-2 ul li {
  list-style-type: none;
  border-bottom: 1px solid #dedede;
  padding: 20px 0;
}
.ac-cart-total-box-2 ul li.has-cart-checkout-list-form-style {
  border: 0;
  padding: 0;
}
.ac-cart-total-box-2 ul .list li {
  padding: 0 10px;
}
.ac-cart-total-box-2 .nice-select {
  float: right;
  height: auto;
  border: 0;
  padding: 0;
  padding-right: 20px;
  line-height: 1;
  margin-top: 5px;
}
.ac-cart-total-box-2 .nice-select span.current {
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: var(--hover-color-2);
}
.ac-cart-total-box-2 .nice-select::after {
  display: none;
}
.ac-cart-total-box-2 .nice-select::before {
  content: "\f107";
  font-family: "Font awesome 5 pro";
  right: 0;
  top: 3px;
  position: absolute;
  color: var(--hover-color-2);
  font-weight: 500;
}
.ac-cart-total-box-2 .title {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px solid #dedede;
  padding: 25px 20px;
}

.cart-checkout-form-btn, .cart-checkout-form-btn-2 {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  height: 55px;
  width: 100%;
  border: 0;
  display: inline-block;
  background: red;
  border-radius: 5px;
  line-height: 55px;
  text-decoration: none;
}
.cart-checkout-form-btn-2 {
  background-color: red;
  color: #fff;
}
.cart-checkout-form-btn-2:hover {
  background: red;
  color: #fff;
}
.cart-checkout-form-btn:hover, .cart-checkout-form-btn-2:hover {
  background-color: red;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .pl-40.ac-cart-widget-left-space {
    padding-left: 0;
  }
}

.ac-single-product-popup-quantity-box {
  width: 130px;
  height: 40px;
  border-radius: 5px;
  background: #dedede;
  position: relative;
}
.ac-single-product-popup-quantity-box input {
  width: 100%;
  border: 0;
  background: transparent;
  height: 40px;
  text-align: center;
  font-size: 16px;
  color: red;
  font-weight: 700;
}
.ac-single-product-popup-quantity-box .plus {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  right: 16px;
  background-color: transparent;
  transition: 0.3s;
}
.ac-single-product-popup-quantity-box .plus:hover {
  color: red;
}
.ac-single-product-popup-quantity-box .minus {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  left: 16px;
  background-color: transparent;
  transition: 0.3s;
}
.ac-single-product-popup-quantity-box .minus:hover {
  color: red;
}

.cart-checkout-form-btn, .cart-checkout-form-btn-2 {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  height: 65px;
  width: 100%;
  border: 0;
  display: inline-block;
  background: var(--theme_color);
  border-radius: 5px;
  line-height: 65px;
  text-decoration: none;
  transition: 0.3s;
}
.cart-checkout-form-btn:hover, .cart-checkout-form-btn-2:hover {
  background-color: var(--hover-color-2);
  color: #fff;
}

.ac-shop-details-content-quantity-box {
  width: 120px;
  height: 60px;
  background: transparent;
  position: relative;
  border: 1px solid #dee2e6;
}
.ac-shop-details-content-quantity-box .plus {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0;
  right: 16px;
  background-color: transparent;
  color: var(--theme_color);
}
.ac-shop-details-content-quantity-box .plus:hover {
  color: var(--hover-color-2);
}
.ac-shop-details-content-quantity-box input {
  width: 100%;
  border: 0;
  background: transparent;
  height: 60px;
  text-align: center;
  font-size: 16px;
  color: #1a213e;
  font-weight: 700;
}
.ac-shop-details-content-quantity-box .minus {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0;
  left: 16px;
  background-color: transparent;
  color: var(--theme_color);
}
.ac-shop-details-content-quantity-box .minus:hover {
  color: var(--hover-color-2);
}

/*
************
*************************
24. checkout
******************************************************* 
*************************************************************** */
label {
  color: var(--theme_color);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
label:hover {
  color: var(--hover-color-2);
}

.ac-return-customar-login-warning-link span {
  font-size: 16px;
  margin-right: 10px;
}
.ac-return-customar-login-warning-link a {
  font-weight: 700;
  text-decoration: none;
  color: var(--theme_color);
  font-family: 'Roboto Condensed', sans-serif;
}
.ac-return-customar-login-warning-link a:hover {
  color: var(--hover-color-2);
}

.ac-billing-details-title {
  font-size: 24px;
  font-weight: 500;
}

.ac-submit-form-default-single .select2 {
  width: 100% !important;
  height: 65px;
  border-radius: 5px;
  padding: 0 7px;
  color: red;
  border: 1px solid #dedede;
}
.ac-submit-form-default-single .select2 .select2-selection {
  height: 100%;
  border: 0;
}
.ac-submit-form-default-single span#select2-country-container {
  transform: translateY(12px);
  color: red;
}
.ac-submit-form-default-single .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 14px;
  right: 9px;
}

.ac-checkout-order-summery-box {
  background-color: #F6F6E8;
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 50px 40px;
  padding-bottom: 43px;
}
@media (max-width: 767px) {
  .ac-checkout-order-summery-box {
    padding: 30px 24px;
  }
}
.ac-checkout-order-summery-box-wrap {
  padding-bottom: 17px;
}
.ac-checkout-order-summery-box-pricing-list ul {
  margin-bottom: 0;
}
.ac-checkout-order-summery-box-pricing-list ul li {
  overflow: hidden;
  list-style-type: none;
}
.ac-checkout-order-summery-box-pricing-list ul li:not(:last-child) {
  border-bottom: 1px solid #dedede;
  padding-bottom: 20px;
  margin-bottom: 17px;
}
.ac-checkout-order-summery-box-pricing-list ul li span.label {
  font-size: 16px;
  display: inline-block;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}
.ac-checkout-order-summery-box-pricing-list ul li span.label.total {
  font-weight: 700;
  color: var(--theme_color);
}
.ac-checkout-order-summery-box-pricing-list ul li span.price {
  font-size: 16px;
  float: right;
  font-weight: 700;
  color: var(--theme_color);
}
.ac-checkout-order-summery-box-pricing-list ul li span.price.flat {
  color: var(--yollow_color);
}
.ac-checkout-order-summery-box-pricing-list ul li span.price.flat span {
  color: var(--yollow_color);
}
.ac-checkout-order-summery-box-pricing-list ul li span.price.total {
  font-weight: 700;
  color: var(--theme_color);
}
.ac-checkout-order-summery-box-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dedede;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .ac-checkout-order-summery-box-product {
    display: block;
  }
}
.ac-checkout-order-summery-box-product:not(:first-child) {
  padding-top: 15px;
}
.ac-checkout-order-summery-box-product .left {
  display: flex;
  align-items: center;
  grid-gap: 29px;
}
@media (max-width: 767px) {
  .ac-checkout-order-summery-box-product .left {
    margin-bottom: 15px;
    grid-gap: 9px;
    flex-wrap: wrap;
  }
}
.ac-checkout-order-summery-box-product .left > * {
  flex: 0 0 auto;
}
.ac-checkout-order-summery-box-product .left .image {
  max-width: 53px;
}
.ac-checkout-order-summery-box-product .left .title-wrap span {
  font-size: 16px;
}
.ac-checkout-order-summery-box-product .left .title-wrap .title {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 0;
  margin-right: 8px;
  color: var(--theme_color);
}
.ac-checkout-order-summery-box-product .left .title-wrap .title a {
  text-decoration: none;
}
.ac-checkout-order-summery-box-product .left .title-wrap .title a:hover {
  color: var(--hover-color-2);
}

.ac-price {
  font-size: 16px;
  color: var(--theme_color);
  font-weight: 700;
}

.ac-checkout-payment-info-box .accordion-collapse {
  padding-top: 9px;
}
.ac-checkout-payment-info-box p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  padding-right: 20px;
  padding-left: 20px;
}
.ac-checkout-payment-info-box .ac-checkout-payment-condition-text {
  font-size: 16px;
  line-height: 26px;
}
.ac-checkout-payment-info-box .ac-checkout-payment-condition-text a {
  text-decoration: none;
  color: var(--yollow_color);
  font-weight: 500;
}
.ac-checkout-payment-info-box .ac-checkout-payment-condition-text a:hover {
  color: var(--theme_color);
}
.ac-checkout-payment-info-box .accordion {
  border-bottom: 1px solid #dedede;
}
.ac-checkout-payment-info-box .accordion button {
  width: 100%;
  height: 65px;
  border-radius: 5px;
  background-color: #dedede;
  border: 1px solid #dedede;
  color: var(--theme_color);
  text-align: left;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  padding: 0 20px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ac-checkout-payment-info-box .accordion button i {
  font-size: 25px;
  margin-right: 11px;
  vertical-align: middle;
  margin-top: -2px;
  color: var(--theme_color);
  -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;
}
.ac-checkout-payment-info-box .accordion button.collapsed {
  color: var(--theme_color);
  background: transparent;
  border: 1px solid #dedede;
}
.ac-checkout-payment-info-box .accordion button.collapsed i {
  color: var(--theme_color);
  -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;
}
.ac-checkout-payment-info-box .accordion button:hover {
  color: var(--hover-color-2);
}
.ac-checkout-payment-info-box .accordion button:hover i {
  color: var(--yollow_color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-billing-details-space-right.pr-20 {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-billing-details-space-right.pr-20 {
    padding-right: 0;
  }
}

.ac-submit-form-default-single input[type=text], .ac-submit-form-default-single input[type=email], .ac-submit-form-default-single input[type=number] {
  width: 100%;
  height: 65px;
  border-radius: 5px;
  padding: 0 25px;
  color: var(--theme_color);
  font-weight: 700;
  border: 1px solid #dedede;
}
.ac-submit-form-default-single input[type=text]::placeholder, .ac-submit-form-default-single input[type=email]::placeholder, .ac-submit-form-default-single input[type=number]::placeholder {
  color: rgb(136, 136, 136);
  font-size: 16;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
}

.ac-submit-form-default-single .ac-has-select-2 {
  width: 100% !important;
  height: 65px;
  border-radius: 5px;
  padding: 0 7px;
  color: var(--theme_color);
  border: 1px solid #dedede;
  line-height: 65px;
  padding: 0 25px;
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
}
.ac-submit-form-default-single .ac-has-select-2 .list {
  width: 100%;
}
.ac-submit-form-default-single .ac-has-select-2 .list ul li {
  width: 100%;
  height: 65px;
  line-height: 65px;
}
.ac-submit-form-default-single .ac-has-select-2 .option {
  height: 65px;
  line-height: 65px;
}
.ac-submit-form-default-single .ac-has-select-2::after {
  border-bottom: 1px solid #707480;
  border-right: 1px solid #707480;
  height: 8px;
  width: 8px;
  right: 25px;
}

.ac-submit-form-default-singlelabel {
  font-size: 16px;
  color: red;
  display: block;
  margin-bottom: 15px;
}
.ac-submit-form-default-singlelabel .condition {
  font-size: 16px;
  color: red;
  display: block;
  padding-left: 25px;
  position: relative;
}
.ac-submit-form-default-singleinput .has-condition {
  display: none;
}

.condition-box input {
  margin-right: 2px;
}

.ac-submit-form-default-single label.condition::before {
  position: absolute;
  left: 2px;
  top: 2px;
  transition: all 0.3s;
  font-family: "Font awesome 5 pro";
  color: red;
  content: "\f00c";
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
}

.ac-submit-form-default-single label.condition::after {
  position: absolute;
  left: 0;
  top: 3px;
  width: 13px;
  height: 13px;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.3s;
  content: "";
  border: 1px solid #dedede;
}

.ac-checkout-payment-info-box form {
  background-color: #F6F6E8;
}

/*
************
*************************
25. error
******************************************************* 
*************************************************************** */
.error-page-big-title h1 {
  font-size: 400px;
  line-height: 1;
  color: var(--font_gray);
}
@media (max-width: 767px) {
  .error-page-big-title h1 {
    font-size: 140px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .error-page-big-title h1 {
    font-size: 270px;
  }
}

.ac-error-page-search .search-form {
  position: relative;
  display: inline-block;
}
.ac-error-page-search .search-form input {
  font-size: 16px;
  outline: none;
  border: 1px solid #ccc;
  width: 270px;
  padding: 10px 50px 10px 10px;
}
.ac-error-page-search .search-form input::placeholder {
  color: var(--font_gray);
}
.ac-error-page-search .search-form button {
  border: none;
  background-color: #ccc;
  width: 40px;
  height: 45px;
  position: absolute;
  right: 0px;
  text-align: center;
  line-height: 45px;
  color: var(--theme_color);
  -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;
}
.ac-error-page-search .search-form button:hover {
  color: var(--yollow_color);
  background-color: var(--theme_color);
}

/*
************
*************************
26. footer
******************************************************* 
*************************************************************** */
.ac-footer-area {
  background-color: var(--theme_color);
}

.ac-footer-wrapper {
  position: relative;
}

.ac-footer-bg-shape-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ac-footer-bg-shape-wrapper .ac-footer-bg-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

.ac-footer-logo {
  padding-bottom: 40px;
  border-bottom: 1px solid #416422;
}
.ac-footer-logo a {
  display: block;
  margin-bottom: 30px;
}
.ac-footer-logo p {
  color: #CCCCCC;
  margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ac-footer-address-area {
    margin-bottom: 60px;
  }
}
.ac-footer-address-area ul li {
  list-style: none;
  font-size: 16;
  line-height: 26px;
  color: #cccccc;
}
.ac-footer-address-area ul li:not(:last-child) {
  margin-bottom: 10px;
}
.ac-footer-address-area ul li img {
  margin-right: 10px;
  margin-top: -5px;
}

.ac-footer-widget-title {
  color: var(--white-color);
  margin-bottom: 35px;
  text-transform: capitalize;
}

.ac-footer-link {
  list-style: none;
}
.ac-footer-link li a {
  line-height: 26px;
  color: #CCCCCC;
  display: flex;
  align-items: center;
  padding: 6px 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;
  text-transform: capitalize;
}
.ac-footer-link li a:hover {
  color: var(--hover-color-2);
}
.ac-footer-link li a i {
  margin-right: 10px;
  font-size: 26px;
}

.ac-footer-input-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.ac-footer-input-btn input {
  height: 60px;
  width: 100%;
  padding: 0 25px;
  border: 0;
  padding-right: 60px;
  border-radius: 3px;
}
.ac-footer-input-btn input::placeholder {
  font-size: 14px;
  color: var(--font-gray);
}
.ac-footer-input-btn i {
  height: 60px;
  width: 60px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  line-height: 60px;
  color: var(--font-gray);
  -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;
}
.ac-footer-input-btn:hover i {
  color: var(--hover-color-2);
}

.ac-footer-copyright-text p {
  font-size: 16px;
  color: #cccccc;
  text-transform: capitalize;
}
.ac-footer-copyright-text a {
  font-weight: 700;
}
.ac-footer-copyright-text a:hover {
  color: var(--hover-color-2);
}

.ac-copyright-menu {
  list-style: none;
}
.ac-copyright-menu li {
  display: inline-block;
}
.ac-copyright-menu li:not(:first-child) a {
  padding-left: 20px;
}
@media (max-width: 767px) {
  .ac-copyright-menu li:not(:first-child) a {
    padding-left: 9px;
  }
}
.ac-copyright-menu li a {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: var(--white-color);
  position: relative;
  text-transform: capitalize;
}
.ac-copyright-menu li a:hover {
  color: var(--hover-color-2);
}

.ac-footer-copyright-area {
  border-top: 1px solid #416422;
}

@media (max-width: 767px) {
  .ac-footer-copyright-text {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-footer-copyright-text {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .ac-footer-copyright-link {
    text-align: center;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-footer-copyright-link {
    text-align: center;
    width: 100%;
  }
}

.ac-footer-widget p {
  color: #cccccc;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ac-footer-widget.mb-50.pr-70 {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .ac-footer-widget.mb-50.pr-70 {
    padding-right: 0;
  }
}
.ac-footer-2-area {
  background-color: #784D10;
}

.ac-footer-2-widget .ac-footer-logo {
  border-bottom: none;
  padding-bottom: 33px;
}
.ac-footer-2-widget .ac-footer-logo p {
  color: var(--white-color);
}

.ac-footer-2-btn-area .form-btn {
  color: #fff;
}

.ac-footer-2-widget .ac-footer-link li a {
  color: #DBD8D8;
}
.ac-footer-2-widget .ac-footer-link li a:hover {
  color: var(--white-color);
}

.ac-footer-2-single-blog {
  display: flex;
  align-items: center;
}

.ac-footer-2-single-blog-img {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 5px;
  margin-right: 20px;
}
.ac-footer-2-single-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.ac-footer-2-single-blog-title {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 28px;
  color: var(--white-color);
  display: block;
}
.ac-footer-2-single-blog-title:hover {
  color: var(--white-color);
}

.ac-footer-2-single-blog-text span {
  display: block;
  color: #DBD8D8;
  font-size: 14px;
  line-height: 24px;
}

.ac-footer-2-copyright-area {
  border-top: 1px solid #8B6228;
}

@media (max-width: 767px) {
  .ac-footer-2-widget:is(.ml-35) {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ac-footer-2-widget:is(.ml-35) {
    margin-left: 35px;
  }
}

.ac-footer-btn-area .form-btn:hover {
  background-color: var(--white-color);
  color: var(--theme_color);
}

/*
************
*************************
27. Back To Top
******************************************************* 
*************************************************************** */
.progress-wrap {
  position: fixed;
  right: -100px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--theme_color);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background-color: #fff;
}
.progress-wrap::after {
  position: absolute;
  content: "\f176";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--theme_color);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--yollow_color);
  stroke-width: 4;
  box-sizing: border-box;
  -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;
}
.progress-wrap:is(.progress-wrap-dark) {
  box-shadow: inset 0 0 0 2px #f6f8fa;
  background-color: transparent;
}
.progress-wrap:is(.progress-wrap-dark)::after {
  color: #f6f8fa;
}
.progress-wrap:is(.progress-wrap-dark) svg.progress-circle path {
  stroke: #1a1a1a;
}
.progress-wrap:hover {
  background-color: var(--theme_color);
}
.progress-wrap:hover::after {
  color: var(--white-color);
}

.progress-wrap.active-progress {
  opacity: 1;
  right: 50px;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .progress-wrap.active-progress {
    right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .progress-wrap.active-progress {
    right: 30px;
  }
}

/*# sourceMappingURL=main.css.map */
