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

    Template Name: gardex - Landscaping and Gardening HTML Template
    Author: ColorPic
    Description: gardex - Landscaping and Gardening HTML Template
    Version: 1.0

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


/************ TABLE OF CONTENTS ***************

	01. Template Default CSS
	02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Template Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --cp-ff-body: 'Inter', sans-serif;
  --cp-ff-heading: 'Inter Tight', sans-serif;
  --cp-ff-p: 'Inter', sans-serif;
  --cp-fw-normal: normal;
  --cp-fw-thin: 100;
  --cp-fw-elight: 200;
  --cp-fw-light: 300;
  --cp-fw-regular: 400;
  --cp-fw-medium: 500;
  --cp-fw-sbold: 600;
  --cp-fw-bold: 700;
  --cp-fw-ebold: 800;
  --cp-fw-black: 900;
  --cp-fs-body: 18px;
  --cp-fs-p: 18px;
  --cp-fs-h1: 65px;
  --cp-fs-h2: 56px;
  --cp-fs-h3: 24px;
  --cp-fs-h4: 20px;
  --cp-fs-h5: 18px;
  --cp-fs-h6: 14px;
  --cp-color-common-white: #ffffff;
  --cp-color-common-black: #000000;
  --cp-color-heading-primary: #10551F;
  --cp-color-text-body: #383838;
  --cp-color-text-black: #111111;
  --cp-color-theme-primary: #00811F;
  --cp-color-theme-secondary: #C7DC49;
  --cp-color-bg-1: #F2F9F6;
  --cp-color-grey-1: #F2F9F6;
  --cp-color-border-1: #B5CBC5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
	Typography CSS
*/
body {
  background-color: var(--cp-color-common-white);
  font-family: var(--cp-ff-body);
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
  color: var(--cp-color-text-body);
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--cp-ff-heading);
  color: var(--cp-color-heading-primary);
  margin-top: 0px;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--cp-fs-h1);
}

h2 {
  font-size: var(--cp-fs-h2);
}

h3 {
  font-size: var(--cp-fs-h3);
}

h4 {
  font-size: var(--cp-fs-h4);
}

h5 {
  font-size: var(--cp-fs-h5);
}

h6 {
  font-size: var(--cp-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--cp-ff-p);
  font-size: 16px;
  font-weight: 400;
  color: var(--cp-color-text-body);
  margin-bottom: 0;
  line-height: 24px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.desc {
  font-size: 18px;
  line-height: 26px;
}

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

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

a:hover {
  color: var(--cp-color-theme-primary);
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

*::-moz-selection {
  background: var(--cp-color-common-black);
  color: var(--cp-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--cp-color-common-black);
  color: var(--cp-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--cp-color-common-black);
  color: var(--cp-color-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--cp-color-common-black);
  font-size: var(--cp-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--cp-color-common-black);
  font-size: var(--cp-fs-body);
  opacity: 1;
}

/**
    Common Classes CSS
*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

.b-radius {
  border-radius: 6px;
}

.overflow-x {
  overflow-x: clip;
}

.container-fluid {
  padding: 0 24px;
}

.bg-grey {
  background-color: var(--cp-color-grey-1);
}

.white-bg {
  background-color: var(--cp-color-common-white);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
  line-height: 1;
}

.author-list {
  display: flex;
  align-items: center;
}
.author-list li {
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--cp-color-common-white);
}
.author-list li.icon {
  background-color: var(--cp-color-heading-primary);
  color: var(--cp-color-common-white);
}
.author-list li:not(:first-of-type) {
  margin-left: -20px;
}

.gardenix-dot-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.gardenix-dot-swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  position: relative;
  margin: 0 !important;
}
.gardenix-dot-swiper-pagination .swiper-pagination-bullet:before {
  background-color: rgba(255, 255, 255, 0.42);
  content: "";
  height: 6px;
  width: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.gardenix-dot-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--cp-color-theme-secondary);
}
.gardenix-dot-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--cp-color-theme-secondary);
}

.swiper-arrow {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.swiper-arrow .swiper-nav {
  background-color: transparent;
  color: var(--cp-color-theme-primary);
  border: 1px solid var(--cp-color-theme-primary);
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.swiper-arrow .swiper-nav:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.bd-bottom {
  border-bottom: 1px solid var(--cp-color-border-1);
}

.bg-color-top {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.bg-color-bottom {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.container {
  max-width: 1345px;
  width: 100%;
  margin: 0 auto;
}

.overflow-h {
  overflow: hidden;
}

.section-heading {
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 50px;
  }
}
.section-heading .sub-heading {
  text-transform: uppercase;
  color: var(--cp-color-theme-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 15px;
  font-family: var(--cp-ff-heading);
  border: 0 !important;
}
.section-heading .sub-heading img {
  margin-top: -5px;
  margin-right: 10px;
}
.section-heading .section-title {
  color: var(--cp-color-heading-primary);
  font-size: 52px;
  line-height: 60px;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  text-transform: inherit;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .section-heading .section-title {
    font-size: 50px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 42px;
    max-width: 100%;
  }
  .section-heading .section-title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
    line-height: 1.2;
  }
  .section-heading .section-title br {
    display: none;
  }
}
.section-heading.white-content .sub-heading {
  color: var(--cp-color-theme-secondary);
}
.section-heading.white-content p,
.section-heading.white-content .section-title {
  color: var(--cp-color-common-white);
}
.section-heading.heading-2 {
  margin-bottom: 30px;
}
.section-heading.heading-2 .section-title {
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .section-heading.heading-2 .section-title {
    margin: 0;
    margin-bottom: 25px;
  }
}

.heading-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .heading-space {
    margin-bottom: 50px;
  }
}

.t-up {
  text-transform: uppercase;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
  color: var(--cp-color-common-white);
}

.img-reveal {
  position: relative;
  overflow: hidden;
  visibility: hidden;
  z-index: 1;
}
.img-reveal .img-overlay {
  background-color: var(--cp-color-theme-primary);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.img-reveal img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.anim-text {
  overflow: hidden;
}

/*  Custom Cursor */
@media (min-width: 992px) {
  .mt-cursor {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    left: 10px;
    top: 10px;
    user-select: none;
    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mt-cursor:before {
    background: var(--cp-color-theme-primary);
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }
  .mt-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }
  .mt-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
  }
  .mt-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
  }
}
.sticky-widget {
  position: sticky; /* default */
  top: 170px;
}

@media only screen and (max-width: 767px) {
  br {
    display: none;
  }
}
/*-- Margin Top --*/
.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;
}

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

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

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

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

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

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

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

.m-0 {
  margin: 0;
}

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

.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-60 {
  margin-bottom: 60px;
}

.p-0 {
  padding: 0;
}

.pt-180 {
  padding-top: 180px;
}
@media only screen and (max-width: 992px) {
  .pt-180 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-180 {
    padding-top: 50px;
  }
}

.pt-140 {
  padding-top: 140px;
}
@media only screen and (max-width: 992px) {
  .pt-140 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-140 {
    padding-top: 70px;
  }
}

.pt-130 {
  padding-top: 130px;
}
@media only screen and (max-width: 992px) {
  .pt-130 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-130 {
    padding-top: 60px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 992px) {
  .pt-120 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media only screen and (max-width: 992px) {
  .pt-90 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-90 {
    padding-top: 60px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .pt-80 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-80 {
    padding-top: 60px;
  }
}

.pt-70 {
  padding-top: 70px;
}
@media only screen and (max-width: 992px) {
  .pt-70 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-70 {
    padding-top: 60px;
  }
}

.pb-180 {
  padding-bottom: 180px;
}
@media only screen and (max-width: 992px) {
  .pb-180 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-180 {
    padding-bottom: 60px;
  }
}

.pb-140 {
  padding-bottom: 140px;
}
@media only screen and (max-width: 992px) {
  .pb-140 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-140 {
    padding-bottom: 70px;
  }
}

.pb-130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 992px) {
  .pb-130 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-130 {
    padding-bottom: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 992px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 992px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-90 {
    padding-bottom: 60px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .pb-80 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 992px) {
  .pb-70 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-70 {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-30 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-40 {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-50 {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 992px) {
  .md-mb-30 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .md-mb-40 {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .md-mb-50 {
    margin-bottom: 50px;
  }
}

/* Scroll To Top */
#scroll-percentage {
  position: absolute;
}

#scroll-percentage {
  height: 60px;
  width: 60px;
  background-color: var(--cp-color-bg-2);
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 50px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
}
@media only screen and (max-width: 992px) {
  #scroll-percentage {
    right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #scroll-percentage {
    bottom: 20px;
    right: 20px;
  }
}

#scroll-percentage.active {
  bottom: 50px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 992px) {
  #scroll-percentage.active {
    bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #scroll-percentage.active {
    bottom: 20px;
  }
}

#scroll-percentage-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}

#scroll-percentage-value i {
  font-size: 20px;
}

@-webkit-keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
/** Buttons CSS */
.cp-primary-btn {
  cursor: pointer;
  display: inline-flex;
  justify-content: flex-start;
  position: relative;
  text-align: left;
  text-decoration: none;
  user-select: none;
  width: auto;
  align-items: stretch;
  background: transparent;
  border-radius: 0;
  height: 56px;
  width: fit-content;
  border-radius: 12px;
}
.cp-primary-btn svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cp-primary-btn svg path {
  transition: fill 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cp-primary-btn .btn_label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
  border-radius: 12px 0 0 12px;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 8px 8px 24px;
  position: relative;
  text-transform: uppercase;
  font-family: var(--cp-ff-body);
  overflow: visible;
  transition: background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s cubic-bezier(0.25, 1, 0.5, 1), margin-inline-end 0.6s cubic-bezier(0.25, 1, 0.5, 1), padding-right 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cp-primary-btn .btn_label .label_corner {
  position: absolute;
  top: 0;
  right: -19px;
  bottom: 0;
  width: 20px;
  height: 100%;
  display: block;
  background: transparent;
}
.cp-primary-btn .btn_label .label_corner svg path {
  fill: var(--cp-color-theme-primary);
}
.cp-primary-btn .btn_icon {
  display: inline-flex;
  background-color: transparent;
  overflow: hidden;
  padding: 10px;
  position: relative;
  width: 56px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cp-primary-btn .btn_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 10px;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  background-color: var(--cp-color-common-white);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11'%3E%3Cpath d='M1 5.5H11.5M7 10L11.5 5.5M7 1L11.5 5.5' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 10px 10px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11'%3E%3Cpath d='M1 5.5H11.5M7 10L11.5 5.5M7 1L11.5 5.5' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 10px 10px;
  transition: -webkit-mask-position 0.6s cubic-bezier(0.25, 1, 0.5, 1), mask-position 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cp-primary-btn .btn_icon svg path {
  fill: var(--cp-color-theme-primary);
}
@media (hover: hover) and (pointer: fine) {
  .cp-primary-btn:hover {
    scale: 1.02;
  }
  .cp-primary-btn:hover .btn_label {
    background-color: var(--cp-color-theme-primary);
    fill: var(--cp-color-common-white);
  }
  .cp-primary-btn:hover .label_corner svg path {
    fill: var(--cp-color-theme-primary);
  }
  .cp-primary-btn:hover .btn_icon::before {
    animation: slideLeft 0.4s;
  }
  .cp-primary-btn:hover .btn_icon svg path {
    fill: var(--cp-color-theme-primary);
  }
}
.cp-primary-btn.secondary-btn .btn_label {
  background-color: var(--cp-color-theme-secondary);
  color: var(--cp-color-heading-primary);
}
.cp-primary-btn.secondary-btn .label_corner svg path {
  fill: var(--cp-color-theme-secondary);
}
.cp-primary-btn.secondary-btn .btn_icon svg path {
  fill: var(--cp-color-theme-secondary);
}
.cp-primary-btn.secondary-btn .btn_icon::before {
  background-color: var(--cp-color-heading-primary);
}

.read-more {
  font-weight: 600;
  font-size: 16px;
  color: var(--cp-color-heading-primary);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: uppercase;
}
.read-more:hover {
  color: var(--cp-color-theme-primary);
  background-size: 85% 1px;
}

@keyframes slideLeft {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
.cp-primary-btn-2 {
  height: 46px;
  border-radius: 8px;
}
.cp-primary-btn-2 .btn_label {
  border-radius: 8px 0 0 8px;
}
.cp-primary-btn-2 .btn_icon {
  width: 46px;
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
  background-color: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.header .top-bar {
  background-color: var(--cp-color-theme-primary);
}
@media only screen and (max-width: 992px) {
  .header .top-bar {
    display: none;
  }
}
.header .top-bar .top-bar-container {
  padding: 0 100px 0 400px;
}
@media (max-width: 1399px) {
  .header .top-bar .top-bar-container {
    padding: 0 100px;
  }
}
.header .top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
}
.header .top-bar .top-bar-inner .top-bar-list {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header .top-bar .top-bar-inner .top-bar-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--cp-color-common-white);
  font-size: 15px;
  font-weight: 400;
}
.header .top-bar .top-bar-inner .top-social-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .top-bar .top-bar-inner .top-social-wrap .follow {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--cp-color-common-white);
  font-family: var(--cp-ff-body);
}
.header .top-bar .top-bar-inner .top-social-wrap .social-list {
  display: flex;
  align-items: center;
  list-style: none;
}
.header .top-bar .top-bar-inner .top-social-wrap .social-list li {
  font-size: 15px;
  color: var(--cp-color-common-white);
}
.header .top-bar .top-bar-inner .top-social-wrap .social-list li a {
  color: var(--cp-color-common-white);
}
.header .top-bar .top-bar-inner .top-social-wrap .social-list li:not(:last-of-type) {
  margin-right: 20px;
}
.header .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--cp-color-common-white);
  padding-right: 100px;
  margin-left: 60px;
  border-radius: 16px 0 0 16px;
  position: relative;
}
@media (max-width: 1600px) {
  .header .primary-header-inner {
    padding: 10px 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner {
    padding: 0;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-btn-wrap {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-btn-wrap {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-btn-wrap {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-btn-wrap {
    display: none;
  }
}
.header .primary-header-inner .header-btn-wrap .cp-primary-btn .btn_label {
  font-size: 14px;
}
.header .primary-header-inner .header-left-wrap {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-left-wrap {
    width: 256px;
    display: block;
  }
}
.header .primary-header-inner .header-logo {
  position: absolute;
  background-color: var(--cp-color-theme-secondary);
  border-radius: 16px;
  bottom: 0;
  width: 256px;
  height: 92px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 252 92" xmlns="http://www.w3.org/2000/svg"><path d="M0 16C0 7.16345 7.16344 0 16 0H219.638C226.92 0 233.282 4.91596 235.12 11.9612L250.772 71.9612C253.417 82.0986 245.767 92 235.291 92H16C7.16344 92 0 84.8366 0 76V16Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 252 92" xmlns="http://www.w3.org/2000/svg"><path d="M0 16C0 7.16345 7.16344 0 16 0H219.638C226.92 0 233.282 4.91596 235.12 11.9612L250.772 71.9612C253.417 82.0986 245.767 92 235.291 92H16C7.16344 92 0 84.8366 0 76V16Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-logo {
    position: relative;
  }
}
.header .primary-header-inner .header-logo img {
  margin-top: 26px;
  margin-left: 32px;
}
.header .primary-header-inner .header-menu-wrap {
  padding-left: 340px;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap {
    padding-left: 300px;
  }
}
.header .primary-header-inner .header-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-menu-wrap ul {
    display: none;
  }
}
.header .primary-header-inner .header-menu-wrap ul li {
  display: inline-block;
  position: relative;
  margin: 0 15px;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul li {
    margin: 0 10px;
  }
}
.header .primary-header-inner .header-menu-wrap ul li:first-child {
  margin-left: 0;
}
.header .primary-header-inner .header-menu-wrap ul li:last-child {
  margin-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul li a {
  color: var(--cp-color-heading-primary);
  display: block;
  font-size: 16px;
  padding: 22px 0;
  letter-spacing: 0px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul li a {
    font-size: 16px;
  }
}
.header .primary-header-inner .header-menu-wrap ul li a:hover {
  color: var(--cp-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li a i {
  font-size: 13px;
}
.header .primary-header-inner .header-menu-wrap ul li.active a {
  color: var(--cp-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li.active ul li a {
  color: var(--cp-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li.active ul li a:hover {
  color: var(--cp-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li.active.menu-item-has-children:after {
  color: var(--cp-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li ul {
  background-color: var(--cp-color-common-white);
  display: block;
  width: 250px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 0;
  top: 70px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: all 0.6s ease;
}
.header .primary-header-inner .header-menu-wrap ul li:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}
.header .primary-header-inner .header-menu-wrap ul li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.header .primary-header-inner .header-menu-wrap ul li li:hover {
  background-color: var(--cp-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
  color: var(--cp-color-common-black);
}
.header .primary-header-inner .header-menu-wrap ul li li a {
  background-color: var(--cp-color-common-white);
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--cp-color-heading-primary);
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  padding-left: 25px;
  letter-spacing: 0px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
}
.header .primary-header-inner .header-menu-wrap ul li li a:hover {
  color: var(--cp-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li a:before {
  background-color: var(--cp-color-theme-primary);
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li li:first-child a {
  padding-top: 20px;
}
.header .primary-header-inner .header-menu-wrap ul li li:first-child a:before {
  top: 59%;
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child {
  margin: 0;
  border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child a {
  padding-bottom: 20px;
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child a:before {
  top: 41%;
}
.header .primary-header-inner .header-menu-wrap ul li li.active {
  background-color: var(--cp-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
  padding-left: 35px;
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a:before {
  width: 10px;
}
.header .primary-header-inner .header-menu-wrap ul li li ul {
  top: 0;
  left: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li li ul li a {
  color: var(--cp-color-common-white);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
  color: var(--cp-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
  color: var(--cp-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a:hover {
  color: var(--cp-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children {
  position: relative;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
  padding-right: 17px;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
    padding-right: 13px;
  }
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li {
  margin: 0;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li a {
  padding-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: 700;
  content: "\f078";
  color: var(--cp-color-heading-primary);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:hover:after {
  color: var(--cp-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.header .primary-header-inner .header-right-wrap .shop-icon {
  width: 46px;
  height: 46px;
  background-color: var(--cp-color-theme-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  color: var(--cp-color-heading-primary);
}
.header .primary-header-inner .header-right-wrap .shop-icon:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}
@media (max-width: 1600px) {
  .header .primary-header-inner .header-right-wrap .shop-icon {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right-wrap .header-logo img {
    width: 90px;
  }
}
.header .primary-header-inner .header-right-wrap .search-icon {
  color: var(--cp-color-heading-primary);
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .search-icon {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right-wrap .search-icon {
    display: none;
  }
}
.header .primary-header-inner .header-right-wrap .header-right-item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right-item {
    line-height: 1;
  }
}
.header .primary-header-inner .header-right-wrap .header-right-item .mobile-side-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header .primary-header-inner .header-right-wrap .header-right-item .mobile-side-menu-toggle span {
  width: 35px;
  height: 2px;
  background-color: var(--cp-color-heading-primary);
  display: block;
}
@media (min-width: 993px) {
  .header .primary-header-inner .header-right-wrap .header-right-item .mobile-side-menu-toggle {
    display: none;
  }
}
.header .primary-header-inner .header-right-wrap .header-right-item .search-icon {
  font-size: 16px;
  margin-left: 55px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right-item .search-icon {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .mean-push {
    display: none;
  }
}
.header.fixed {
  background-color: var(--cp-color-heading-primary);
  top: 0;
  transition: all 0.3s ease-in-out;
}

.header-2 {
  height: auto !important;
}
.header-2 .primary-header-inner {
  background-color: transparent;
  padding: 0 32px;
  margin-left: 0;
  border-radius: 0;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .header-2 .primary-header-inner {
    padding-top: 15px;
    justify-content: space-between;
  }
}
.header-2 .primary-header-inner .header-menu-wrap {
  padding-left: 150px;
}
@media (max-width: 1600px) {
  .header-2 .primary-header-inner .header-menu-wrap {
    padding-left: 60px;
  }
}
.header-2 .primary-header-inner .header-right-wrap .shop-icon {
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-heading-primary);
}
.header-2 .primary-header-inner .header-logo {
  -webkit-mask: none;
  mask: none;
  background-color: transparent;
  width: max-content;
  height: max-content;
  bottom: inherit;
  position: relative;
}
.header-2 .primary-header-inner .header-logo img {
  margin: 0;
}
@media (max-width: 1600px) {
  .header-2 .primary-header-inner .header-btn-wrap {
    display: flex;
  }
}
@media (max-width: 1399px) {
  .header-2 .primary-header-inner .header-btn-wrap {
    display: none;
  }
}
.header-2 .primary-header-inner .hotline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 70px;
}
@media (max-width: 1700px) {
  .header-2 .primary-header-inner .hotline {
    display: none;
  }
}
.header-2 .primary-header-inner .hotline .icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: var(--cp-color-heading-primary);
  width: 46px;
  height: 46px;
  color: var(--cp-color-common-white);
}
.header-2 .primary-header-inner .hotline span {
  font-weight: 500;
  font-size: 14px;
  color: var(--cp-color-text-body);
}
.header-2 .primary-header-inner .hotline .num {
  margin-bottom: 0;
  font-weight: 700;
  margin-top: 2px;
}

.header-3 .primary-header-inner {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}
.header-3 .primary-header-inner .header-logo {
  position: relative;
  margin-left: 280px;
}
@media only screen and (max-width: 992px) {
  .header-3 .primary-header-inner .header-logo {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header-3 .primary-header-inner .header-left-wrap {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .header-3 .primary-header-inner .header-right-wrap {
    display: none;
  }
}
.header-3 .primary-header-inner .header-right-wrap .shop-icon:hover {
  background-color: var(--cp-color-theme-secondary);
  color: var(--cp-color-heading-primary);
}
.header-3 .primary-header-inner .header-btn-wrap .cp-primary-btn .btn_icon::before {
  background-color: var(--cp-color-heading-primary);
}
.header-3 .primary-header-inner .header-btn-wrap .cp-primary-btn .btn_icon svg path {
  fill: var(--cp-color-theme-secondary);
}
.header-3 .primary-header-inner .header-menu-wrap {
  padding-left: 0;
  padding-right: 380px;
}
@media (max-width: 1600px) {
  .header-3 .primary-header-inner .header-menu-wrap {
    padding-right: 180px;
  }
}
@media (max-width: 1199px) {
  .header-3 .primary-header-inner .header-menu-wrap {
    padding-right: 180px;
  }
}
@media only screen and (max-width: 992px) {
  .header-3 .primary-header-inner .header-menu-wrap {
    padding-right: 0;
  }
}
.header-3 .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
  color: var(--cp-color-common-white);
}
.header-3 .primary-header-inner .header-menu-wrap ul li a {
  color: var(--cp-color-common-white);
}
.header-3 .header-menubar {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 8px;
}
.header-3 .header-menubar span {
  width: 24px;
  height: 2px;
  background-color: var(--cp-color-common-white);
  transition: all 0.3s ease-in-out;
}
.header-3 .header-menubar span:nth-child(2) {
  width: 40px;
}
.header-3 .header-menubar:hover span {
  width: 40px;
}

.header-container {
  padding: 0;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}
.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .side-menu-icon {
    display: none;
  }
}

.mobile-menu-items {
  display: block !important;
}

.mobile-menu-items-2 {
  display: none !important;
}

.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
  -ms-transform: translateX(850px);
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--cp-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
  background-color: var(--cp-color-theme-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (max-width: 992px) {
  .side-menu-wrapper {
    display: none;
  }
}

.side-menu-content .side-menu-header {
  font-family: var(--cp-ff-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
  max-width: 150px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
  font-family: var(--cp-ff-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--cp-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
  margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--cp-color-theme-primary);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--cp-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
  transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}
.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.png), auto;
}
@media only screen and (max-width: 992px) {
  .side-menu-overlay {
    display: none;
  }
}

.primary-header {
  width: 100%;
}
.primary-header.fixed {
  background-color: var(--cp-color-heading-primary);
  position: fixed;
  left: 0;
  top: 0;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
  z-index: 99;
}
.primary-header.fixed .primary-header-inner {
  border: none;
}

.header-2 .primary-header {
  width: 100%;
}
.header-2 .primary-header.fixed {
  background-color: var(--cp-color-theme-secondary);
}

.header-3 .primary-header {
  width: 100%;
  padding-bottom: 10px;
}
.header-3 .primary-header.fixed {
  background-color: var(--cp-color-heading-primary);
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}
@-webkit-keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

.mobile-side-menu {
  background-color: var(--cp-color-common-white);
  position: fixed;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 400px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  height: 100%;
  display: block;
  z-index: 100;
  padding: 40px 40px 40px 40px;
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
.mobile-side-menu.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mobile-side-menu .side-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.mobile-side-menu .side-menu-head a img {
  max-width: 120px;
}
.mobile-side-menu .side-menu-head .mobile-side-menu-close {
  position: fixed;
  top: 35px;
  right: 40px;
  color: var(--cp-color-heading-primary);
  font-size: 17px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cp-color-border-1);
}
@media only screen and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
  }
}
.mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}
.mobile-side-menu .side-menu-wrap {
  overflow: hidden;
  margin-bottom: 50px;
}
.mobile-side-menu p {
  color: var(--cp-color-heading-primary);
  margin-bottom: 50px;
}
.mobile-side-menu .list-header {
  color: var(--cp-color-common-white);
  font-family: var(--cp-ff-body);
  font-weight: 400;
  margin-bottom: 30px;
}
.mobile-side-menu .side-menu-list {
  list-style: none;
}
.mobile-side-menu .side-menu-list li {
  font-family: var(--cp-ff-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--cp-color-heading-primary);
}
.mobile-side-menu .side-menu-list li span,
.mobile-side-menu .side-menu-list li a {
  color: var(--cp-color-heading-primary);
  font-size: 16px;
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-list li span,
  .mobile-side-menu .side-menu-list li a {
    margin-left: 0;
  }
}
.mobile-side-menu .side-menu-list li i {
  margin-right: 10px;
}

.mobile-side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
  display: block;
}
.mobile-side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.png), auto;
}

.mean-bar {
  background-color: transparent;
  min-height: auto;
  padding: 0;
}
.mean-bar .meanmenu-reveal {
  display: none !important;
}
.mean-bar .mean-nav {
  background-color: transparent;
  margin-top: 0;
  padding-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul {
  display: block !important;
}
.mean-bar .mean-nav.mean-nav > ul li {
  position: relative;
  float: none;
  display: block;
  width: auto;
}
.mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cp-color-border-1);
}
.mean-bar .mean-nav.mean-nav > ul li a {
  color: var(--cp-color-heading-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  border-top: none;
  padding: 0;
  float: none;
}
@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 16px;
  }
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
  position: absolute;
  padding: 0;
  top: 3px;
  right: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
  font-size: 12px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
  content: "+";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
  content: "\f068";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
  display: none;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
  display: none;
}
.mean-bar .mean-nav.mean-nav > ul li ul {
  padding: 0 0 0 30px;
  margin-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li a {
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 16px;
  }
}

#popup-search-box {
  background-color: var(--cp-color-common-white);
  position: fixed;
  width: 100%;
  height: 20%;
  top: -100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap {
  background-color: var(--cp-color-common-white);
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
#popup-search-box .box-inner-wrap form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 15px;
}
#popup-search-box .box-inner-wrap form input {
  width: 100%;
  padding: 20px 15px;
  padding-right: 80px;
  background: transparent;
  border: none;
  color: #ddd;
  border: 1px solid var(--cp-color-border-1);
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-moz-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-moz-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:focus {
  outline: none;
}
#popup-search-box .box-inner-wrap:hover {
  cursor: url(../img/cross.png), auto;
}
#popup-search-box .box-inner-wrap .search-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: var(--cp-color-heading-primary);
  border: 1px solid var(--cp-color-border-1);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #popup-search-box .box-inner-wrap .search-close {
    height: 35px;
    width: 35px;
    top: 10px;
    right: 10px;
  }
}
#popup-search-box .box-inner-wrap .search-close:hover {
  background-color: var(--cp-color-theme-primary);
  border: 1px solid var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}
#popup-search-box.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.popup-tags {
  position: relative;
  margin: 0 auto;
}

.blog-details-header {
  background-color: var(--cp-color-grey-1);
}
.blog-details-header .primary-header-inner {
  background-color: var(--cp-color-grey-1);
}

/* !END: Theme Header CSS */
/**----------------------------------------
    START: Hero CSS
----------------------------------------*/
.hero-section {
  position: relative;
  z-index: 1;
}
.hero-section .hero-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .hero-section .hero-bg {
    top: 0;
  }
}
.hero-section .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.2);
}
.hero-section .overlay-2 {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 34, 26, 0.44);
}
.hero-section .running-text {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.hero-section .running-text ul {
  display: flex;
  align-items: center;
}
.hero-section .running-text ul li {
  font-weight: 500;
  font-size: 237px;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--cp-color-common-white);
  text-align: center;
  margin-bottom: -5px;
}
@media only screen and (max-width: 767px) {
  .hero-section .running-text ul li {
    font-size: 100px;
    line-height: 0.85;
  }
}
.hero-section .gardex-slider-controls {
  background-color: var(--cp-color-theme-secondary);
  width: max-content;
  padding: 22px 100px 35px 40px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (max-width: 567px) {
  .hero-section .gardex-slider-controls {
    display: none;
  }
}
.hero-section .gardex-slider-controls .gardex-slider-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 15px;
}
.hero-section .gardex-slider-controls .gardex-slider-nav .gardex-prev,
.hero-section .gardex-slider-controls .gardex-slider-nav .gardex-next {
  text-transform: uppercase;
  color: var(--cp-color-heading-primary);
}
.hero-section .gardex-slider-controls .gardex-slider-nav .gardex-prev i,
.hero-section .gardex-slider-controls .gardex-slider-nav .gardex-next i {
  margin-right: 2px;
}
.hero-section .gardex-slider-controls .gardex-counter {
  color: var(--cp-color-heading-primary);
  line-height: 1;
  font-weight: 600;
  display: flex;
  align-items: end;
}
.hero-section .gardex-slider-controls .gardex-counter .gardex-current {
  font-size: 88px;
  line-height: 88px;
}
.hero-section .gardex-slider-controls .gardex-counter .divider {
  position: relative;
  top: -8px;
}
.hero-section .gardex-slider-controls .gardex-counter .gardex-total {
  position: relative;
  top: -8px;
}

.hero-container {
  max-width: 1545px;
}

.hero-content {
  padding: 280px 0 430px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .hero-content {
    padding: 220px 0 200px;
  }
}
.hero-content .hero-content-inner .title {
  font-weight: 600;
  font-size: 88px;
  line-height: 1;
  color: var(--cp-color-common-white);
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .hero-content .hero-content-inner .title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 567px) {
  .hero-content .hero-content-inner .title {
    font-size: 50px;
  }
}
.hero-content .hero-content-inner .title span {
  font-size: 160px;
  line-height: 1;
}
@media only screen and (max-width: 992px) {
  .hero-content .hero-content-inner .title span {
    font-size: 130px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .hero-content-inner .title span {
    font-size: 100px;
  }
}
@media only screen and (max-width: 567px) {
  .hero-content .hero-content-inner .title span {
    font-size: 70px;
  }
}
@media only screen and (max-width: 467px) {
  .hero-content .hero-content-inner .title span {
    font-size: 50px;
  }
}

.hero-section-2 {
  background-color: var(--cp-color-theme-secondary);
  position: relative;
  z-index: 1;
}
.hero-section-2 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 16px;
  opacity: 5%;
}
.hero-section-2 .hero-bg-img {
  position: relative;
  z-index: -1;
  margin-top: 70px;
  width: 100%;
  height: 550px;
  text-align: center;
  padding: 0 32px;
}
@media only screen and (max-width: 767px) {
  .hero-section-2 .hero-bg-img {
    padding: 0 10px;
    height: 380px;
  }
}
.hero-section-2 .hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.hero-section-2 .hero-bottom {
  display: flex;
  align-items: center;
  margin-top: 60px;
  gap: 40px;
}
@media only screen and (max-width: 992px) {
  .hero-section-2 .hero-bottom {
    flex-wrap: wrap;
  }
}
.hero-section-2 .hero-bottom-img {
  border-radius: 8px;
  width: 200px;
  height: 120px;
}
.hero-section-2 .author-list-wrap h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-content-2 {
  padding: 0 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  margin-top: -260px;
}
@media only screen and (max-width: 992px) {
  .hero-content-2 {
    margin-top: 30px;
  }
}
.hero-content-2 .title {
  font-weight: 500;
  font-size: 80px;
  line-height: 100%;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .hero-content-2 .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-2 .title {
    font-size: 40px;
  }
}
.hero-content-2 .consult-contact-content {
  margin-bottom: 0;
}

.hero-section-3 {
  padding-top: 70px;
  background-color: var(--cp-color-heading-primary);
}
@media only screen and (max-width: 992px) {
  .hero-section-3 .container-fluid {
    padding: 0;
  }
}
.hero-section-3 .hero-image {
  width: 100%;
  height: 900px;
  margin-left: 56px;
}
@media (max-width: 1399px) {
  .hero-section-3 .hero-image {
    height: 750px;
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .hero-section-3 .hero-image {
    height: 700px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-3 .hero-image {
    height: 500px;
  }
}
.hero-section-3 .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content-3 {
  background-color: var(--cp-color-theme-secondary);
  padding-left: 76px;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .hero-content-3 {
    padding-left: 0;
  }
}
.hero-content-3 .txt-content {
  padding-top: 130px;
}
@media only screen and (max-width: 992px) {
  .hero-content-3 .txt-content {
    padding: 80px 30px 0;
  }
}
.hero-content-3 .txt-content .hero-bottom {
  padding-top: 198px;
}
@media (max-width: 1399px) {
  .hero-content-3 .txt-content .hero-bottom {
    padding-top: 150px;
  }
}
@media (max-width: 1199px) {
  .hero-content-3 .txt-content .hero-bottom {
    padding-top: 100px;
  }
}
@media (max-width: 1199px) {
  .hero-content-3 .txt-content .hero-bottom {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.hero-content-3 .sub-title {
  font-weight: 600;
  font-size: 24px;
  color: var(--cp-color-theme-primary);
  margin-bottom: 16px;
}
.hero-content-3 .title {
  font-weight: 600;
  font-size: 80px;
  line-height: 110%;
  margin-bottom: 48px;
}
@media (max-width: 1600px) {
  .hero-content-3 .title {
    font-size: 70px;
  }
}
@media (max-width: 1399px) {
  .hero-content-3 .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-3 .title {
    font-size: 40px;
  }
}
.hero-content-3 .hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-content-3 .hero-bottom .rating-wrap .rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-content-3 .hero-bottom .rating-wrap .rating .num {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
}
.hero-content-3 .hero-bottom .rating-wrap .rating .star {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-content-3 .hero-bottom .rating-wrap .rating .star i {
  color: var(--cp-color-heading-primary);
}
.hero-content-3 .hero-bottom .rating-wrap span {
  font-weight: 500;
  font-size: 18px;
  color: var(--cp-color-heading-primary);
}
.hero-content-3 .author-list-wrap h5 {
  margin-bottom: 0;
  margin-top: 12px;
  font-weight: 500;
}
.hero-content-3 .author-list li {
  height: 48px;
  width: 48px;
}

/* !END: Hero CSS */
/**----------------------------------------
    START: About CSS
----------------------------------------*/
.about-section {
  position: relative;
  z-index: 1;
}
.about-section .about-bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.05;
}
.about-section .about-img-wrap {
  position: relative;
}
.about-section .about-img-wrap .about-img-1 {
  width: 872px;
  height: 460px;
  float: right;
  margin-right: 75px;
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .about-section .about-img-wrap .about-img-1 {
    width: 100%;
    float: none;
    margin-top: 0;
    margin-right: 0;
  }
}
.about-section .about-img-wrap .about-img-1 img {
  border-radius: 0 16px 16px 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section .about-img-wrap .experience {
  background-color: var(--cp-color-theme-primary);
  width: max-content;
  padding: 35px 65px 31px 40px;
  border-radius: 16px;
  position: absolute;
  z-index: 2;
}
@media (max-width: 1199px) {
  .about-section .about-img-wrap .experience {
    bottom: 0;
  }
}
.about-section .about-img-wrap .experience-num {
  font-weight: 600;
  font-size: 100px;
  line-height: 1;
  color: var(--cp-color-common-white);
}
.about-section .about-img-wrap .experience-num span {
  font-size: 40px;
}
.about-section .about-img-wrap .experience-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #b5cbc5;
  margin-bottom: 0;
}

.about-content .about-img-2 {
  width: 100%;
  height: 324px;
}
.about-content .about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.about-content .desc {
  line-height: 28px;
  margin-top: 65px;
}
.about-content .about-info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cp-color-border-1);
  margin-top: 40px;
  padding-top: 48px;
}
@media (max-width: 1199px) {
  .about-content .about-info-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .about-content .about-info-wrap {
    justify-content: start;
  }
}
.about-content .about-info-wrap .info-item .icon {
  width: 70px;
  height: 70px;
  background-color: var(--cp-color-theme-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border-radius: 14px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 68 70" xmlns="http://www.w3.org/2000/svg"><path d="M4.89222 12.4103C5.70032 5.33945 11.6848 0 18.8017 0H49.4592C56.7277 0 62.7873 5.5624 63.4081 12.8044L67.0081 54.8044C67.7087 62.9781 61.2629 70 53.0592 70H14.0017C5.63996 70 -0.857223 62.718 0.0922214 54.4103L4.89222 12.4103Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 68 70" xmlns="http://www.w3.org/2000/svg"><path d="M4.89222 12.4103C5.70032 5.33945 11.6848 0 18.8017 0H49.4592C56.7277 0 62.7873 5.5624 63.4081 12.8044L67.0081 54.8044C67.7087 62.9781 61.2629 70 53.0592 70H14.0017C5.63996 70 -0.857223 62.718 0.0922214 54.4103L4.89222 12.4103Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.about-content .about-info-wrap .info-item .title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}
.about-content .about-info-wrap .info-item p {
  margin-bottom: 0;
  line-height: 26px;
  color: var(--cp-color-text-body);
}

.about-image-wrap-2 {
  margin-right: 95px;
}
@media (max-width: 1199px) {
  .about-image-wrap-2 {
    margin-right: 0;
  }
}
.about-image-wrap-2 .image-1 {
  width: 100%;
  height: 314px;
}
@media (max-width: 1199px) {
  .about-image-wrap-2 .image-1 {
    padding-right: 0;
  }
}
.about-image-wrap-2 .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-wrap-2 .image-1:last-of-type {
  margin-top: 24px;
}

.about-content-2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1199px) {
  .about-content-2 {
    justify-content: start;
    gap: 60px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 992px) {
  .about-content-2 {
    padding-bottom: 60px;
    flex-wrap: wrap;
  }
}
.about-content-2 .experience {
  background-color: var(--cp-color-theme-primary);
  padding: 30px 40px 40px;
  border-radius: 16px;
  margin-right: -70px;
}
@media (max-width: 1399px) {
  .about-content-2 .experience {
    margin-right: 0;
  }
}
.about-content-2 .experience .odometer.odometer-auto-theme,
.about-content-2 .experience .odometer.odometer-theme-default {
  line-height: 0.85;
}
.about-content-2 .experience-num {
  color: var(--cp-color-common-white);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 0;
  display: flex;
  align-items: end;
  font-family: var(--cp-ff-heading) !important;
  gap: 3px;
}
.about-content-2 .experience-num span {
  font-size: 100px;
  font-weight: 700;
}
.about-content-2 .experience-text {
  color: var(--cp-color-border-1);
  white-space: nowrap;
  font-weight: 600;
  margin-top: 50px;
  font-size: 20px;
}

.about-content-3 .experience {
  background-color: var(--cp-color-theme-secondary);
  padding: 20px 48px 40px;
  border-radius: 0;
  margin-right: -70px;
}
@media (max-width: 1600px) {
  .about-content-3 .experience {
    display: none;
  }
}
.about-content-3 .experience .odometer.odometer-auto-theme,
.about-content-3 .experience .odometer.odometer-theme-default {
  line-height: 0.89;
}
.about-content-3 .experience-num {
  font-weight: 300;
  font-size: 80px;
  margin-bottom: 88px;
  line-height: 1;
  display: flex;
  align-items: end;
}
.about-content-3 .experience-num span {
  font-size: 140px;
  font-weight: 500;
}
.about-content-3 .experience-text {
  font-weight: 600;
  font-size: 24px;
  color: var(--cp-color-heading-primary);
}
.about-content-3 .image-1 {
  width: 572px;
  height: 288px;
}
@media (max-width: 1399px) {
  .about-content-3 .image-1 {
    width: 100%;
  }
}
.about-content-3 .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content-3 .image-2 {
  width: 428px;
  height: 314px;
  margin-left: -100px;
}
@media (max-width: 1600px) {
  .about-content-3 .image-2 {
    margin-left: 0;
    width: 100%;
  }
}
.about-content-3 .image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content-3 .about-txt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-section-4 {
  background-color: var(--cp-color-heading-primary);
  overflow: hidden;
}
.about-section-4 .desc {
  color: var(--cp-color-border-1);
}
.about-section-4 .image-1 {
  width: 100%;
  height: 344px;
  margin-top: 86px;
}
@media only screen and (max-width: 992px) {
  .about-section-4 .image-1 {
    width: 360px;
  }
}
@media only screen and (max-width: 767px) {
  .about-section-4 .image-1 {
    width: 100%;
  }
}
.about-section-4 .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0px 0px;
}
.about-section-4 .image-2 {
  width: 1172px;
  height: 460px;
}
@media only screen and (max-width: 992px) {
  .about-section-4 .image-2 {
    width: 100%;
  }
}
.about-section-4 .image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0px 8px;
}

.about-content-4 {
  padding-right: 84px;
}
@media (max-width: 1399px) {
  .about-content-4 {
    padding-right: 0;
  }
}

.about-items-wrap-4 {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 992px) {
  .about-items-wrap-4 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .about-items-wrap-4 {
    flex-wrap: wrap;
  }
}

.about-item-4 {
  background-color: var(--cp-color-theme-secondary);
  display: flex;
  gap: 28px;
  width: 100%;
  padding: 45px 40px;
  margin-top: 24px;
  border-radius: 8px;
}
@media (max-width: 1399px) {
  .about-item-4 {
    padding: 35px 20px;
  }
}
.about-item-4 .title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 14px;
}
.about-item-4 p {
  max-width: 260px;
}

/* !END: About CSS */
/**----------------------------------------
    START: Project CSS
----------------------------------------*/
.project-section {
  position: relative;
  z-index: 1;
}
.project-section .project-inner-wrapper {
  position: relative;
  z-index: 1;
}
.project-section .project-inner-wrapper .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.project-section .project-inner-wrapper .bg-img::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  background-color: rgba(0, 25, 5, 0.5);
}
.project-section .container-fluid {
  padding: 0 32px;
}
@media only screen and (max-width: 767px) {
  .project-section .container-fluid {
    padding: 0 0;
  }
}

.project-wrap {
  padding: 0;
  margin: 0;
}
.project-wrap > div {
  padding: 0;
  margin: 0;
}
.project-wrap > div:not(:last-of-type) .project-item {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.project-item {
  height: 700px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .project-item {
    height: 450px;
    border-bottom: 1px solid var(--cp-color-common-white);
    overflow: hidden;
  }
}
.project-item .project-content {
  background-color: var(--cp-color-theme-secondary);
  width: 100%;
  position: absolute;
  bottom: -15px;
  left: 0;
  padding: 48px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 1600px) {
  .project-item .project-content {
    padding: 40px 30px;
  }
}
.project-item .project-content span {
  color: var(--cp-color-heading-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.project-item .project-content .title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 36px;
}
@media (max-width: 1600px) {
  .project-item .project-content .title {
    font-size: 30px;
  }
}
@media (max-width: 1399px) {
  .project-item .project-content .title {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 992px) {
  .project-item .project-content .title {
    font-size: 28px;
    line-height: 1;
  }
}
.project-item:hover .number {
  top: 39%;
  visibility: visible;
  opacity: 0.5;
}
.project-item:hover .title a {
  color: var(--cp-color-heading-primary);
}
.project-item:hover .project-content {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.project-section-2 {
  position: relative;
  z-index: 1;
}
.project-section-2::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  background-color: var(--cp-color-theme-primary);
  height: 440px;
  top: auto;
  bottom: 0;
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 70px;
}

.project-item-2 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 8px;
}
.project-item-2 .project-thumb {
  height: 550px;
  width: 100%;
  overflow: hidden;
}
.project-item-2 .project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.project-item-2 .project-content {
  position: absolute;
  bottom: -4px;
  width: 100%;
  border-radius: 0 0 10px 10px;
  background-color: var(--cp-color-theme-secondary);
  padding: 32px 50px;
  border-radius: 0 0 14px 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-item-2 .project-content .title {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .project-item-2 .project-content .title {
    font-size: 20px;
  }
}
.project-item-2 .project-content .title a {
  color: var(--cp-color-heading-primary);
}
.project-item-2 .project-content span {
  text-transform: capitalize;
  font-weight: 500;
  color: var(--cp-color-theme-primary);
}
.project-item-2 .project-content .arrow-icon {
  width: 50px;
  height: 50px;
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.project-item-2 .project-content .arrow-icon i {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.project-item-2 .project-content .arrow-icon:hover {
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-theme-primary);
}
.project-item-2 .project-content .arrow-icon:hover i {
  transform: rotate(0deg);
}
.project-item-2:hover .project-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.project-item-2:hover::after {
  opacity: 0.3;
  visibility: visible;
}

.project-section-3 {
  overflow: hidden;
}
.project-section-3 .running-text ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.project-section-3 .running-text ul li {
  font-weight: 600;
  font-size: 160px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  margin-left: -15px;
  line-height: 0.8;
  color: var(--cp-color-heading-primary);
}
@media (max-width: 1199px) {
  .project-section-3 .running-text ul li {
    font-size: 150px;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .project-section-3 .running-text ul li {
    font-size: 100px;
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
.project-section-3 .container-fluid {
  padding: 0 40px;
}
.project-section-3 .swiper-arrow {
  justify-content: space-between;
  margin-bottom: 60px;
}
.project-section-3 .swiper-arrow .swiper-nav {
  background-color: transparent;
  border: 0;
  height: auto;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.project-section-3 .swiper-arrow .swiper-nav span {
  font-family: var(--cp-ff-heading);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--cp-color-heading-primary);
}

.project-item-3 {
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.project-item-3 .image-wrap {
  position: relative;
}
.project-item-3 .arrow-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: var(--cp-color-theme-secondary);
  color: var(--cp-color-heading-primary);
  font-size: 38px;
  position: absolute;
  right: 32px;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.project-item-3 .arrow-icon i {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.project-item-3 .arrow-icon:hover i {
  transform: rotate(0deg);
}
.project-item-3 .image {
  width: 100%;
  height: 500px;
  transition: all 0.3s ease-in-out;
}
.project-item-3 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.project-item-3 .hover-image {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 430 500" xmlns="http://www.w3.org/2000/svg"><path d="M352.017 18.1874C443.518 69.7893 456.349 215.407 380.677 343.433C305.004 471.46 169.484 533.414 77.9828 481.813C-13.5179 430.211 -26.3492 284.593 49.3233 156.567C124.996 28.5401 260.516 -33.4144 352.017 18.1874Z" /></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 100%;
  height: 500px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  top: 0;
  left: 0;
}
.project-item-3 .hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-item-3:hover .image {
  opacity: 0;
}
.project-item-3:hover .hover-image {
  opacity: 1;
}
.project-item-3:hover .arrow-icon {
  opacity: 1;
  visibility: visible;
  bottom: 32px;
}

.inner-project-row {
  padding: 0 100px;
}
@media (max-width: 1199px) {
  .inner-project-row {
    padding: 0 10px;
  }
}

.inner-project-item .project-thumb {
  height: 570px;
}
.inner-project-item .project-content {
  padding: 32px 40px;
}
.inner-project-item .project-content .title {
  font-weight: 600;
  font-size: 24px;
}

.inner-project-item-2 {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.inner-project-item-2 .project-thumb {
  height: 470px;
}
.inner-project-item-2 .project-content {
  padding: 32px 40px;
}
.inner-project-item-2 .project-content .title {
  font-weight: 600;
  font-size: 24px;
}
.inner-project-item-2 .arrow-icon {
  width: 60px;
  height: 60px;
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-heading-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.inner-project-item-2 .arrow-icon i {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.inner-project-item-2 .arrow-icon:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}
.inner-project-item-2 .arrow-icon:hover i {
  transform: rotate(0deg);
}
.inner-project-item-2::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  background-color: rgba(0, 129, 31, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  height: 0;
}
.inner-project-item-2:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.inner-project-item-2:hover .arrow-icon {
  opacity: 1;
  top: 142px;
  visibility: visible;
}

.grid-sizer {
  width: 33.333%;
}
@media (max-width: 1199px) {
  .grid-sizer {
    display: none;
  }
}

.masonry-item {
  width: 33.333%;
}
@media only screen and (max-width: 992px) {
  .masonry-item {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .masonry-item {
    width: 100%;
  }
}

.masonry-item.w-66 {
  width: 66.666%;
}
@media only screen and (max-width: 992px) {
  .masonry-item.w-66 {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .masonry-item.w-66 {
    width: 100%;
  }
}

.masonry-item {
  float: left;
  padding: 20px;
}
@media (max-width: 1199px) {
  .masonry-item {
    padding: 8px;
  }
}

.masonry-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .masonry-item img {
    height: 400px;
  }
}

.masonry-project-item {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
}
.masonry-project-item img {
  display: block;
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
  border-radius: inherit;
}
.masonry-project-item .project-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-radius: 0 0 10px 10px;
  background-color: var(--cp-color-theme-secondary);
  padding: 32px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.masonry-project-item .project-content .title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 6px;
}
.masonry-project-item .project-content .title a {
  color: var(--cp-color-heading-primary);
}
.masonry-project-item .project-content span {
  text-transform: capitalize;
  color: var(--cp-color-theme-primary);
  font-weight: 500;
}
.masonry-project-item .arrow-icon {
  width: 60px;
  height: 60px;
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-heading-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.masonry-project-item .arrow-icon i {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.masonry-project-item .arrow-icon:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}
.masonry-project-item .arrow-icon:hover i {
  transform: rotate(0deg);
}
.masonry-project-item::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  background-color: rgba(0, 129, 31, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  height: 0;
}
.masonry-project-item:hover .project-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.masonry-project-item:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.masonry-project-item:hover .arrow-icon {
  opacity: 1;
  top: 142px;
  visibility: visible;
}

.project-details .image-1 {
  width: 100%;
  height: 500px;
}
.project-details .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.project-details .image-2 {
  width: 100%;
  height: 350px;
}
.project-details .image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.project-details .image-wrap {
  position: relative;
}
.project-details .image-wrap .project-details-card {
  width: max-content;
  background-color: var(--cp-color-grey-1);
  border-radius: 10px;
  padding-top: 48px;
  overflow: hidden;
  position: absolute;
  bottom: -56px;
  right: 198px;
  min-width: 450px;
}
@media only screen and (max-width: 767px) {
  .project-details .image-wrap .project-details-card {
    min-width: 100%;
    right: 0;
  }
}
.project-details .image-wrap .project-details-card .title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(16, 85, 31, 0.1);
  padding: 0 48px 24px;
}
.project-details .image-wrap .project-details-card .list {
  padding: 0 48px 48px;
}
.project-details .image-wrap .project-details-card .list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(16, 85, 31, 0.1);
  text-align: left;
}
.project-details .image-wrap .project-details-card .list li .info {
  font-weight: 400;
  font-size: 18px;
  color: var(--cp-color-heading-primary);
}
.project-details .image-wrap .project-details-card .card-btn {
  background-color: var(--cp-color-theme-primary);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--cp-ff-heading);
  color: var(--cp-color-common-white);
}
.project-details .image-wrap .project-details-card .card-btn i {
  rotate: -45deg;
}

.project-details-heading {
  border-top: 1px solid rgba(16, 85, 31, 0.1);
}

.portfolio-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 30px;
  flex-wrap: wrap;
}

.gutter-gap-40 {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
}

.gutter-gap-40-y {
  --bs-gutter-y: 2.5rem;
}

.gutter-gap-40-x {
  --bs-gutter-x: 2.5rem;
}

/**----------------------------------------
    START: Skill CSS
----------------------------------------*/
/* !END: Skill CSS */
/**----------------------------------------
START: Offer CSS
----------------------------------------*/
/**----------------------------------------
    START: Testimonial CSS
----------------------------------------*/
.testimonial-section .testi-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
}

.testi-item {
  background-color: #E7EEE9;
  padding-top: 40px;
  overflow: hidden;
  border-radius: 8px;
}
.testi-item .quate-icon {
  padding-left: 40px;
}
.testi-item .desc {
  font-family: var(--cp-ff-heading);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 0;
  padding: 24px 60px 48px 40px;
  color: var(--cp-color-heading-primary);
}
@media only screen and (max-width: 767px) {
  .testi-item .desc {
    font-size: 22px;
    line-height: 30px;
    padding: 24px 30px 48px 30px;
  }
}
.testi-item .testi-author {
  border-top: 1px solid var(--cp-color-common-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  .testi-item .testi-author {
    padding-left: 30px;
  }
}
.testi-item .testi-author .content .name {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
}
.testi-item .testi-author .content span {
  font-weight: 500;
  color: var(--cp-color-heading-primary);
}
.testi-item .testi-author .author-thumb {
  width: 106px;
  height: 106px;
  border-left: 1px solid var(--cp-color-common-white);
}
.testi-item .testi-author .author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section-2 {
  background-color: var(--cp-color-heading-primary);
  position: relative;
  z-index: 1;
}
.testimonial-section-2 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 2%;
}
.testimonial-section-2 .testi-carousel-2 {
  position: relative;
}
.testimonial-section-2 .swiper-arrow {
  z-index: 2;
  position: absolute;
  display: inline-flex;
  bottom: 23px;
  right: 300px;
}
@media only screen and (max-width: 992px) {
  .testimonial-section-2 .swiper-arrow {
    display: none;
  }
}
.testimonial-section-2 .swiper-arrow .swiper-nav {
  color: var(--cp-color-common-white);
  border-color: var(--cp-color-theme-secondary);
  font-size: 20px;
}
.testimonial-section-2 .swiper-arrow .swiper-nav:hover {
  background-color: var(--cp-color-theme-secondary);
  color: var(--cp-color-heading-primary);
}

.testi-content-2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
@media (max-width: 1199px) {
  .testi-content-2 {
    flex-direction: row;
    align-items: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
  }
}
.testi-content-2 .title {
  font-weight: 600;
  font-size: 52px;
  line-height: 60px;
  color: var(--cp-color-common-white);
  writing-mode: sideways-lr;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .testi-content-2 .title {
    writing-mode: inherit;
  }
}
.testi-content-2 .testi-counter {
  color: var(--cp-color-common-white);
  line-height: 1;
  display: flex;
  align-items: end;
  gap: 2px;
}
.testi-content-2 .testi-counter .testi-current {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
}
.testi-content-2 .testi-counter .divider {
  position: relative;
  top: -8px;
}
.testi-content-2 .testi-counter .testi-total {
  position: relative;
  top: -8px;
  font-size: 14px;
  line-height: 10px;
  color: #b5cbc5;
}

.testi-item-2 {
  display: flex;
  gap: 124px;
}
@media (max-width: 1199px) {
  .testi-item-2 {
    gap: 80px;
  }
}
@media only screen and (max-width: 992px) {
  .testi-item-2 {
    gap: 40px;
  }
}
@media only screen and (max-width: 992px) {
  .testi-item-2 {
    flex-direction: column;
  }
}
.testi-item-2 .testi-image {
  width: 100%;
  height: 500px;
}
@media only screen and (max-width: 992px) {
  .testi-item-2 .testi-image {
    height: 400px;
  }
}
.testi-item-2 .testi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.testi-item-2 .content {
  margin-top: 22px;
  max-width: 424px;
}
.testi-item-2 .desc {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--cp-color-common-white);
  margin-top: 32px;
}
.testi-item-2 .testi-author {
  margin-top: 40px;
}
.testi-item-2 .testi-author .name {
  font-family: var(--cp-ff-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--cp-color-common-white);
  margin-bottom: 6px;
}
.testi-item-2 .testi-author span {
  font-size: 14px;
  color: #b5cbc5;
}

.testi-clints-rating {
  background-color: var(--cp-color-grey-1);
  border-radius: 8px;
  padding: 40px;
}
.testi-clints-rating .rating {
  display: flex;
  gap: 24px;
  padding-bottom: 113px;
}
@media (max-width: 1199px) {
  .testi-clints-rating .rating {
    flex-wrap: wrap;
  }
}
.testi-clints-rating .rating .num {
  font-weight: 600;
  font-size: 72px;
  line-height: 83%;
}
.testi-clints-rating .rating .desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: rgba(16, 85, 31, 0.7);
}
.testi-clints-rating .author-list-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-clints-rating .author-list-wrap .author-list li {
  height: 40px;
  width: 40px;
}
.testi-clints-rating .author-list-wrap .author-list li:not(:first-of-type) {
  margin-left: -12px;
}
.testi-clints-rating .author-list-wrap h5 {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 4px;
}
.testi-clints-rating .author-list-wrap h5 strong {
  font-weight: 600;
}
.testi-clints-rating .author-list-wrap .star i {
  color: var(--cp-color-theme-primary);
}
.testi-clints-rating .review-btn {
  border-radius: 56px;
  padding: 16px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
  font-weight: 600;
  margin-top: 32px;
}

.testi-item-3 .inner-content {
  border: 1px solid rgba(16, 85, 31, 0.15);
  border-bottom: 0;
  padding: 40px 40px 93px;
  border-radius: 8px 8px 0 0;
  background-color: var(--cp-color-grey-1);
}
@media only screen and (max-width: 767px) {
  .testi-item-3 .inner-content {
    padding: 40px;
  }
}
.testi-item-3 .quate-icon {
  padding-left: 40px;
}
.testi-item-3 .desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--cp-color-heading-primary);
  margin-top: 20px;
}
.testi-item-3 .star i {
  color: var(--cp-color-theme-primary);
}
.testi-item-3 .testi-author {
  border: 1px solid rgba(16, 85, 31, 0.15);
  border-top: 0;
  margin-top: 2px;
  background-color: var(--cp-color-grey-1);
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 40px 22px;
}
.testi-item-3 .testi-author .content .name {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 22px;
}
.testi-item-3 .testi-author .content span {
  font-weight: 500;
  color: var(--cp-color-heading-primary);
}
.testi-item-3 .testi-author .author-thumb {
  width: 60px;
  height: 60px;
}
.testi-item-3 .testi-author .author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.testimonial-inner-section {
  border-top: 1px solid rgba(16, 85, 31, 0.2);
}

/* !END: Testimonial CSS */
/**----------------------------------------
    START: Service CSS
----------------------------------------*/
.service-top {
  display: flex;
  align-items: flex-end;
  margin-bottom: 70px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.service-item {
  background-color: rgba(183, 215, 68, 0.2);
  padding: 32px 16px 16px;
  border: 1px solid #e6eeec;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: block;
}
.service-item .content {
  padding: 0 16px;
}
.service-item .content .icon svg {
  color: var(--cp-color-heading-primary);
  transition: all 0.3s ease-in-out;
}
.service-item .content .title {
  font-weight: 600;
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.service-item .content .desc {
  margin-bottom: 32px;
}
.service-item .image {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 321 170" xmlns="http://www.w3.org/2000/svg"><path d="M13.8376 10.8721C14.4194 4.70905 19.594 0 25.7844 0H288.32C294.297 0 299.363 4.39911 300.201 10.3174L320.877 156.317C321.9 163.542 316.292 170 308.995 170H12.0007C4.92777 170 -0.610951 163.914 0.0538448 156.872L13.8376 10.8721Z" /></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 321 170" xmlns="http://www.w3.org/2000/svg"><path d="M13.8376 10.8721C14.4194 4.70905 19.594 0 25.7844 0H288.32C294.297 0 299.363 4.39911 300.201 10.3174L320.877 156.317C321.9 163.542 316.292 170 308.995 170H12.0007C4.92777 170 -0.610951 163.914 0.0538448 156.872L13.8376 10.8721Z" /></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 100%;
  height: 170px;
}
.service-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.service-item:hover {
  background-color: var(--cp-color-heading-primary);
}
.service-item:hover .content .icon svg {
  color: var(--cp-color-theme-secondary);
}
.service-item:hover .content .title {
  color: var(--cp-color-common-white);
}
.service-item:hover .content .desc {
  color: #B5CBC5;
}

.service-item-2 {
  position: relative;
  padding: 42px 48px;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: #E6EEEC;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .service-item-2 {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.service-item-2 .service-bg-shape,
.service-item-2 .service-bg-shape-2 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 6%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.service-item-2 .service-item-inner {
  display: flex;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .service-item-2 .service-item-inner {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .service-item-2 .service-item-inner {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.service-item-2 .service-item-inner .icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-theme-primary);
  width: 60px;
  font-weight: 600;
  height: 60px;
  font-family: var(--cp-ff-body);
}
.service-item-2 .service-item-inner .title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  margin: 0;
}
@media only screen and (max-width: 992px) {
  .service-item-2 .service-item-inner .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.service-item-2 .service-item-inner .title a {
  color: var(--cp-color-theme-primary);
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.service-item-2 .service-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 38.2%;
  width: 250px;
  height: 250px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.5s ease-in-out;
  border: 4px solid var(--cp-color-common-white);
  border-radius: 14px;
  z-index: 5;
}
@media (max-width: 1399px) {
  .service-item-2 .service-img {
    right: 10%;
  }
}
@media (max-width: 1199px) {
  .service-item-2 .service-img {
    display: none;
  }
}
.service-item-2 p {
  max-width: 340px;
  line-height: 26px;
}
.service-item-2:hover {
  background-color: var(--cp-color-theme-primary);
}
.service-item-2:hover .service-img {
  opacity: 1;
}
.service-item-2:hover .service-bg-shape-2 {
  z-index: 1;
  opacity: 10%;
}
.service-item-2:hover .service-item-inner .title a {
  color: var(--cp-color-common-white);
  background-size: 100% 2px;
}
.service-item-2:hover .service-item-inner .icon {
  background-color: var(--cp-color-theme-secondary);
}
.service-item-2:hover p {
  color: var(--cp-color-common-white);
}

.service-section-3 {
  background-color: var(--cp-color-heading-primary);
  position: relative;
  z-index: 1;
}
.service-section-3 .service-bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.06;
  z-index: -1;
}

.service-container {
  max-width: 1545px;
}

.service-item-3 {
  background-color: var(--cp-color-theme-primary);
  padding: 8px;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.service-item-3 .image {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 296 242" xmlns="http://www.w3.org/2000/svg"><path d="M292.241 242C238.425 242 189.988 230.659 157.815 185.597C153.226 179.171 143.052 179.15 138.448 185.566C106.092 230.654 57.9006 242 4.07196 242C1.82308 242 0 240.177 0 237.928L0 9.99999C0 4.47715 4.47715 0 10 0H286C291.523 0 296 4.47715 296 10V238.241C296 240.317 294.317 242 292.241 242Z" /></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 296 242" xmlns="http://www.w3.org/2000/svg"><path d="M292.241 242C238.425 242 189.988 230.659 157.815 185.597C153.226 179.171 143.052 179.15 138.448 185.566C106.092 230.654 57.9006 242 4.07196 242C1.82308 242 0 240.177 0 237.928L0 9.99999C0 4.47715 4.47715 0 10 0H286C291.523 0 296 4.47715 296 10V238.241C296 240.317 294.317 242 292.241 242Z" /></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 100%;
  height: 242px;
}
.service-item-3 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-item-3 .content {
  padding: 0 16px;
}
.service-item-3 .content .title {
  font-weight: 600;
  font-size: 24px;
  color: var(--cp-color-common-white);
  margin-top: 28px;
  margin-bottom: 12px;
}
.service-item-3 .content p {
  color: #b5cbc5;
  margin-bottom: 10px;
}
.service-item-3:hover {
  background-color: var(--cp-color-theme-secondary);
}
.service-item-3:hover .content .title {
  color: var(--cp-color-heading-primary);
}
.service-item-3:hover .content p {
  color: var(--cp-color-text-body);
}

.service-details-section .image-1 {
  width: 100%;
  height: 400px;
}
.service-details-section .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.service-details-section .gx-5 {
  --bs-gutter-x: 2.5rem;
}

.service-details-txt .list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--cp-color-heading-primary);
  padding: 5px 0;
}

.service-details-txt-2 {
  border-bottom: 1px solid #d2d7d7;
  padding-bottom: 100px;
}

/* !END: Service CSS */
/**----------------------------------------
    START: Award CSS
----------------------------------------*/
/**----------------------------------------
    START: Process CSS
----------------------------------------*/
.work-process .image-1 {
  width: 100%;
  height: 350px;
}
.work-process .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.process-item {
  background-color: var(--cp-color-grey-1);
  padding: 32px 32px 30px;
  border-radius: 8px;
  height: 100%;
}
.process-item span {
  font-weight: 500;
  font-family: var(--cp-ff-heading);
  color: var(--cp-color-text-body);
}
.process-item .title {
  font-weight: 600;
  font-family: var(--cp-ff-heading);
  color: var(--cp-color-heading-primary);
  font-size: 20px;
  border-bottom: 1px solid rgba(16, 85, 31, 0.2);
  padding-top: 20px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

/* !END: Process CSS */
/**----------------------------------------
    START: Video CSS
----------------------------------------*/
.section-image {
  position: relative;
}
.section-image .image-1 {
  height: 750px;
}
.section-image .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* !END: Video CSS */
/**----------------------------------------
    START: Team CSS
----------------------------------------*/
.team-item .team-thumb {
  width: 100%;
  background-color: var(--cp-color-common-white);
  height: 340px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.team-item .team-thumb .overlay {
  background-color: rgba(16, 85, 31, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  border-radius: 8px;
}
.team-item .team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.team-item .team-thumb .team-social {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-thumb .team-social li {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-thumb .team-social li:not(:last-of-type) {
  margin-bottom: 5px;
}
.team-item .team-thumb .team-social li a {
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-text-black);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.team-item .team-thumb .team-social li a:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}
.team-item .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--cp-color-heading-primary);
}
.team-item span {
  font-size: 14px;
  display: block;
  line-height: 1;
  font-weight: 500;
  line-height: 1;
  color: var(--cp-color-text-body);
}
.team-item:hover .team-thumb .overlay {
  visibility: visible;
  opacity: 1;
}
.team-item:hover .team-thumb .team-social {
  visibility: visible;
  opacity: 1;
}
.team-item:hover .team-thumb .team-social li:not(:last-of-type) {
  margin-bottom: 10px;
}

.team-details-img {
  max-width: 570px;
  width: 100%;
  height: 600px;
}
@media only screen and (max-width: 767px) {
  .team-details-img {
    height: 450px;
  }
}
.team-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.team-details-content {
  max-width: 670px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .team-details-content {
    margin-top: 50px;
  }
}
.team-details-content .desc {
  color: #696969;
  line-height: 28px;
  border-bottom: 1px solid rgba(16, 85, 31, 0.15);
  padding-bottom: 40px;
}
.team-details-content .name {
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
  .team-details-content .name {
    font-size: 40px;
  }
}
.team-details-content .prof {
  font-weight: 400;
  font-size: 24px;
  color: var(--cp-color-text-body);
  margin-bottom: 40px;
  display: block;
}
.team-details-content .info-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  margin-top: 70px;
  margin-bottom: 24px;
}
.team-details-content .team-details-list {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(4, 92, 90, 0.1);
  flex-wrap: wrap;
}
.team-details-content .team-details-list li {
  display: flex;
  flex-direction: column;
}
.team-details-content .team-details-list li span {
  font-weight: 400;
  font-size: 16px;
  color: var(--cp-color-text-body);
}
.team-details-content .team-details-list li .contact-info {
  font-family: var(--cp-ff-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--cp-color-heading-primary);
  margin-top: 5px;
  display: block;
}
.team-details-content .team-details-degree {
  margin-bottom: 70px;
}
.team-details-content .team-details-degree .degree-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 80px;
  border-bottom: 1px solid rgba(16, 85, 31, 0.15);
  padding-bottom: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}
.team-details-content .team-details-degree .degree-item .top-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.team-details-content .team-details-degree .degree-item .icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  width: 50px;
  height: 50px;
  background-color: var(--cp-color-theme-primary);
}
.team-details-content .team-details-degree .degree-item .title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
}
.team-details-content .team-details-degree .degree-item span {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-family: var(--cp-ff-heading);
  color: var(--cp-color-heading-primary);
}
.team-details-content .contact-content .blog-contact-form {
  padding: 0;
}
.team-details-content .contact-content .contact-title {
  color: var(--cp-color-heading-primary);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}
.team-details-content .contact-content .cp-primary-btn {
  padding: 9px 10px 9px 28px;
}

.skills-item {
  overflow: hidden;
  position: relative;
}
.skills-item:not(:last-of-type) {
  margin-bottom: 32px;
}
.skills-item .progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.skills-item .progress-number {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
}
.skills-item .title {
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 0;
}
.skills-item .progress {
  background-color: rgba(0, 129, 31, 0.2);
  height: 5px;
  overflow: visible;
  border-radius: 0;
  border-radius: 32px;
  position: relative;
}
.skills-item .progress .progress-bar {
  position: relative;
  background-color: var(--cp-color-theme-primary);
  overflow: visible;
  border-radius: 32px;
}

/* !END: Team CSS */
/**----------------------------------------
    START: Pricing CSS
----------------------------------------*/
.pricing-item {
  padding: 14px;
  background: rgba(0, 129, 31, 0.1);
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.pricing-item .top-content {
  padding: 14px 18px 18px;
}
.pricing-item .top-content .title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 2px;
}
.pricing-item .top-content .pricing-offer {
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.pricing-item .pricing-content {
  background-color: var(--cp-color-common-white);
  padding: 18px;
  border-radius: 8px;
}
.pricing-item .pricing-content .price {
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
}
.pricing-item .pricing-content .price .tag {
  font-weight: 700;
  font-size: 14px;
}
.pricing-item .pricing-content .pricing-list {
  margin-top: 5px;
  margin-bottom: 28px;
}
.pricing-item .pricing-content .pricing-list li {
  font-weight: 400;
  color: var(--cp-color-text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
}
.pricing-item .pricing-content .pricing-list li.inactive .icon {
  width: 18px;
  height: 18px;
  background-color: rgba(255, 0, 0, 0.2);
  color: rgb(255, 0, 0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.pricing-item .pricing-content .pricing-list .icon {
  width: 18px;
  height: 18px;
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.pricing-item .pricing-content .pricing-list .icon i {
  font-size: 10px;
}
.pricing-item .pricing-content .pricing-list .icon svg {
  font-size: 11px;
}
.pricing-item .pricing-content .pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 16px;
  color: var(--cp-color-heading-primary);
  border-radius: 48px;
  padding: 15px 24px;
  width: 100%;
  background-color: var(--cp-color-theme-secondary);
  font-family: var(--cp-ff-heading);
}
.pricing-item .pricing-content .pricing-btn:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}
.pricing-item:hover {
  background-color: var(--cp-color-theme-primary);
}
.pricing-item:hover .top-content .title {
  color: var(--cp-color-common-white);
}
.pricing-item:hover .top-content .pricing-offer {
  color: #b5cbc5;
}

.inner-pricing-section {
  border-bottom: 1px solid rgba(16, 85, 31, 0.2);
}

/* !END: Pricing CSS */
/**----------------------------------------
    START: Preloader CSS
----------------------------------------*/
.preloader span {
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  overflow-x: hidden;
}

.site-name {
  background-color: #111;
}

.preloader-gutters {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
}

.preloader-overlay {
  background-color: #111;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  transform: translateX(-100%);
  opacity: 0.2;
}

.preloader {
  width: 100%;
  height: 100vh;
  position: relative;
  --preloader-clip: 0;
  clip-path: inset(0 0 0 var(--preloader-clip));
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.site-name {
  width: 100%;
  height: 100%;
  text-align: center;
  align-content: center;
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .site-name span {
    font-size: 40px;
  }
}

.preloader-gutters .bar {
  width: 12.5%;
  height: 100%;
  background: transparent;
  position: relative;
}

.preloader-gutters .inner-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--cp-color-theme-primary);
}

/* !END: Preloader CSS */
/**----------------------------------------
    START: FAQ CSS
----------------------------------------*/
.faq-section {
  position: relative;
  z-index: 1;
}
.faq-section .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 4%;
  z-index: -1;
}
.faq-section .faq-call-wrap {
  background-color: var(--cp-color-theme-primary);
  display: flex;
  align-items: center;
  max-width: 550px;
  padding: 16px;
  border-radius: 16px;
  gap: 32px;
  margin-top: 140px;
}
@media only screen and (max-width: 992px) {
  .faq-section .faq-call-wrap {
    margin-top: 40px;
    flex-wrap: wrap;
  }
}
.faq-section .faq-call-wrap .image-1 {
  width: 190px;
  height: 118px;
}
.faq-section .faq-call-wrap .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.faq-section .faq-call-wrap .call-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq-section .faq-call-wrap .call-info .icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(181, 203, 197, 0.4);
  color: var(--cp-color-common-white);
}
.faq-section .faq-call-wrap .call-info span {
  color: #b5cbc5;
  font-family: var(--cp-ff-heading);
}
.faq-section .faq-call-wrap .call-info .num {
  font-weight: 500;
  font-size: 20px;
  color: var(--cp-color-common-white);
  margin-top: 4px;
  margin-bottom: 0;
}

.faq-content .faq-accordion {
  border-radius: 0;
}
.faq-content .faq-accordion .accordion-item {
  background-color: var(--cp-color-common-white);
  border: none;
  border-radius: 10px;
  padding: 0 0;
  border: 1px solid #E6EEEC;
}
.faq-content .faq-accordion .accordion-item:not(:last-of-type) {
  margin-bottom: 16px;
}
.faq-content .faq-accordion .accordion-item .accordion-button {
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-heading-primary);
  border: none;
  box-shadow: none;
  font-weight: 600;
  padding: 20px 24px;
  border-bottom: 0;
  border-radius: 8px;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .faq-content .faq-accordion .accordion-item .accordion-button {
    font-size: 18px;
  }
}
.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--cp-color-theme-secondary);
  border-radius: 8px 8px 0 0;
}
.faq-content .faq-accordion .accordion-item .accordion-button span {
  margin-right: 24px;
}
.faq-content .faq-accordion .accordion-item .accordion-button:after {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: var(--cp-color-grey-1);
  border: 1px solid var(--cp-color-border-1);
  color: var(--cp-color-heading-primary);
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "\f077";
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed):after {
  content: "\f078";
  transform: rotate(0);
}
.faq-content .faq-accordion .accordion-item .accordion-body {
  width: 100%;
  font-weight: 400;
  padding: 24px 88px 24px 75px;
  font-size: 18px;
  line-height: 28px;
  color: var(--cp-color-text-body);
  border-top: 1px solid rgba(16, 85, 31, 0.2);
  border-radius: 0 0 8px 8px;
}
@media only screen and (max-width: 767px) {
  .faq-content .faq-accordion .accordion-item .accordion-body {
    padding: 24px 20px 24px 30px;
  }
}
.faq-content .faq-accordion .accordion-item .accordion-body:not(.collapsed) {
  background-color: var(--cp-color-theme-secondary);
}

/* !END: FAQ CSS */
/**----------------------------------------
    START: Shop  CSS
----------------------------------------*/
.shop-item {
  position: relative;
}
.shop-item .shop-thumb {
  width: 100%;
  height: 300px;
  background-color: var(--cp-color-grey-1);
  position: relative;
}
.shop-item .shop-thumb::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  background-color: rgba(16, 85, 31, 0.4);
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.shop-item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--cp-color-heading-primary);
  background-color: var(--cp-color-theme-secondary);
  font-family: var(--cp-ff-heading);
  padding: 3px 10px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.shop-item .card-btn {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  background-color: var(--cp-color-theme-secondary);
  padding: 9.5px 18px;
  border-radius: 5px;
  color: var(--cp-color-heading-primary);
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.shop-item .shop-content {
  text-align: center;
  margin-top: 20px;
}
.shop-item .shop-content .title {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  margin-bottom: 4px;
}
.shop-item .shop-content .title a {
  color: var(--cp-color-heading-primary);
}
.shop-item .shop-content .price {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--cp-color-heading-primary);
  opacity: 0.8;
}
.shop-item:hover .card-btn {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.shop-item:hover .shop-thumb::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.shop-show-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.shop-show-grid .form-control {
  padding: 11px 20px;
  line-height: 1;
  font-weight: 500;
  border: 1px solid rgba(16, 85, 31, 0.1);
  border-radius: 8px;
  margin-bottom: 0;
}

/* !END: Shop CSS */
/**----------------------------------------
    START: Shop Details CSS
----------------------------------------*/
.zoom-container {
  width: 100%;
  height: 623px;
  max-width: 572px;
  overflow: hidden;
}

.zoom-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-right: 80px;
}

/* Hide Drift zoom pane */
.drift-zoom-pane {
  display: none !important;
}

/* Optional: remove bounding box */
.drift-bounding-box {
  display: none !important;
}

.product-details-content .sub-title {
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-details-content .sub-title a {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--cp-color-heading-primary);
}
.product-details-content .sub-title .inner-page {
  color: rgba(16, 85, 31, 0.8);
}
.product-details-content .title {
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  margin-bottom: 40px;
  margin-top: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(16, 85, 31, 0.15);
}
.product-details-content .price-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.product-details-content .price-wrap .num {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0;
}
.product-details-content .price-wrap .star i {
  color: var(--cp-color-theme-primary);
}
.product-details-content .price-wrap .review-txt {
  font-weight: 500;
  font-size: 14px;
  color: var(--cp-color-text-body);
}
.product-details-content .feature {
  margin-top: 32px;
}
.product-details-content .feature h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}
.product-details-content .feature .list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 16px;
  color: var(--cp-color-text-body);
  padding: 3px 0;
}
.product-details-content .card-btn-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.product-details-content .card-btn-wrap .num-icon-2,
.product-details-content .card-btn-wrap .num-icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(16, 85, 31, 0.1);
  background-color: var(--cp-color-grey-1);
  font-weight: 600;
  color: var(--cp-color-heading-primary);
}
.product-details-content .card-btn-wrap .num-icon-2 {
  width: 80px;
}
.product-details-content .card-btn-wrap .card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  color: var(--cp-color-common-white);
  background-color: var(--cp-color-theme-primary);
  font-family: var(--cp-ff-heading);
  transition: all 0.3s ease-in-out;
}
.product-details-content .card-btn-wrap .card-btn:hover {
  background-color: var(--cp-color-heading-primary);
}
.product-details-content .social-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.product-details-content .social-list h6 {
  font-family: var(--cp-ff-body);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0;
}
.product-details-content .social-list .list {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--cp-color-heading-primary);
}

.product-desc .nav {
  display: flex;
  align-items: center;
  gap: 43px;
  border-bottom: 1px solid rgba(16, 85, 31, 0.15);
}
.product-desc .nav .nav-link {
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--cp-color-heading-primary);
  padding-bottom: 8px;
  padding-right: 40px;
}
.product-desc .nav .nav-link.active {
  border-bottom: 2px solid var(--cp-color-heading-primary);
}

.shop-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 30px;
  flex-wrap: wrap;
}

.shop-sec-title {
  font-size: 28px;
  font-weight: 600;
}

.review-content-form .rating {
  margin-bottom: 45px;
}
.review-content-form .rating h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 14px;
}
.review-content-form .rating .star-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-content-form .rating .star-wrap span {
  font-size: 18px;
}
.review-content-form .rating .star-wrap .star {
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-content-form .rating .star-wrap .star i {
  color: #FFC107;
}
.review-content-form .review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-weight: 600;
  color: var(--cp-color-common-white);
  background-color: var(--cp-color-theme-primary);
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  margin-top: 8px;
}
.review-content-form .review-btn:hover {
  background-color: var(--cp-color-heading-primary);
}
.review-content-form .form-control {
  background-color: var(--cp-color-grey-1);
}
.review-content-form .form-control:focus {
  border: 1px solid var(--cp-color-theme-primary);
  background-color: var(--cp-color-common-white);
}

/* !END: Shop Details CSS */
/**----------------------------------------
    START: Who We CSS
----------------------------------------*/
.who-we-section {
  position: relative;
  z-index: 1;
}
.who-we-section .image-wrap {
  position: relative;
  float: right;
  margin-right: 80px;
}
@media (max-width: 1399px) {
  .who-we-section .image-wrap {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .who-we-section .image-wrap {
    float: none;
  }
}
.who-we-section .image-wrap .image-1 {
  width: 872px;
  height: 707px;
}
@media (max-width: 1199px) {
  .who-we-section .image-wrap .image-1 {
    width: 100%;
  }
}
.who-we-section .image-wrap .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
}
.who-we-section .author-wrap {
  background-color: var(--cp-color-theme-secondary);
  padding: 40px 40px 32px;
  border-radius: 10px;
  width: max-content;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .who-we-section .author-wrap {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .who-we-section .author-wrap {
    margin-right: 0;
  }
}
.who-we-section .author-wrap .desc {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 40px;
  color: var(--cp-color-heading-primary);
}
.who-we-section .author-wrap .name {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 6px;
}
.who-we-section .author-wrap span {
  color: var(--cp-color-heading-primary);
}
.who-we-section .author-img {
  position: relative;
  width: max-content;
}
.who-we-section .author-img img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid var(--cp-color-common-white);
}
.who-we-section .author-img .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--cp-color-heading-primary);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--cp-color-common-white);
  top: 0;
  left: 55px;
  border: 2px solid var(--cp-color-common-white);
}
.who-we-section.inner-who-we {
  padding-bottom: 205px;
}
.who-we-section.inner-who-we .image-wrap {
  position: relative;
  margin-right: 0;
}
.who-we-section.inner-who-we .image-wrap .image-1 {
  width: 450px;
  height: 440px;
}
@media (max-width: 1199px) {
  .who-we-section.inner-who-we .image-wrap .image-1 {
    width: 100%;
  }
}
.who-we-section.inner-who-we .image-wrap .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.who-we-section.inner-who-we .author-wrap {
  background-color: var(--cp-color-theme-secondary);
  padding: 40px 40px 32px;
  border-radius: 10px;
  width: max-content;
  position: absolute;
  bottom: -80px;
  right: 190px;
  z-index: 1;
}

.inner-who-we-2 {
  background-color: var(--cp-color-heading-primary);
}

.who-we-content .list {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 44px;
}
.who-we-content .list li {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
  font-family: var(--cp-ff-heading);
  color: var(--cp-color-heading-primary);
}
.who-we-content .list li i {
  margin-right: 10px;
}
.who-we-content.inner-who-we-content .list li {
  color: #b5cbc5;
}

.who-we-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .who-we-items {
    justify-content: start;
  }
}
@media only screen and (max-width: 767px) {
  .who-we-items {
    flex-wrap: wrap;
  }
}

.who-we-item {
  background-color: rgba(16, 85, 31, 0.1);
  padding: 28px 32px;
  border-radius: 10px;
  border: 1px solid rgba(16, 85, 31, 0.1);
}
@media (max-width: 1199px) {
  .who-we-item {
    padding: 20px 10px;
  }
}
.who-we-item .icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 129, 31, 0.1);
  border: 1px solid rgba(16, 85, 31, 0.1);
  color: var(--cp-color-heading-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.who-we-item .title {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
}
.who-we-item.inner-who-we-item {
  background-color: var(--cp-color-common-white);
}

/* !END: Who We CSS */
/**----------------------------------------
    START: Trusted CSS
----------------------------------------*/
.trusted-section .desc-line {
  border-top: 1px solid rgba(16, 85, 31, 0.2);
  padding-top: 60px;
  margin-right: 70px;
}

.trusted-info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1399px) {
  .trusted-info-wrap {
    flex-wrap: wrap;
  }
}
.trusted-info-wrap .info-item .icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: var(--cp-color-theme-primary);
  width: 80px;
  height: 80px;
  border-radius: 14px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 78 80" xmlns="http://www.w3.org/2000/svg"><path d="M6.03508 12.4104C6.84318 5.33945 12.8276 0 19.9445 0H58.6021C65.8706 0 71.9302 5.56241 72.5509 12.8044L77.0081 64.8044C77.7087 72.9782 71.2629 80 63.0592 80H14.0017C5.63996 80 -0.857223 72.718 0.0922214 64.4104L6.03508 12.4104Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 78 80" xmlns="http://www.w3.org/2000/svg"><path d="M6.03508 12.4104C6.84318 5.33945 12.8276 0 19.9445 0H58.6021C65.8706 0 71.9302 5.56241 72.5509 12.8044L77.0081 64.8044C77.7087 72.9782 71.2629 80 63.0592 80H14.0017C5.63996 80 -0.857223 72.718 0.0922214 64.4104L6.03508 12.4104Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.trusted-info-wrap .info-item .title {
  font-weight: 600;
  font-size: 24px;
  margin: 24px 0 14px 0;
}

.trusted-image {
  width: 100%;
  height: 287px;
  margin-top: 88px;
}
.trusted-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* !END: Trusted CSS */
/**----------------------------------------
    START: Feature CSS
----------------------------------------*/
.feature-section {
  background-color: var(--cp-color-heading-primary);
  position: relative;
  z-index: 1;
}
.feature-section .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 4%;
}
.feature-section .image-1 {
  width: 536px;
  height: 643px;
  float: right;
  margin-right: 75px;
  margin-bottom: 70px;
  margin-top: -25px;
}
@media (max-width: 1199px) {
  .feature-section .image-1 {
    width: 100%;
    float: none;
  }
}
.feature-section .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 8px 0;
}
@media (max-width: 1199px) {
  .feature-section .image-1 img {
    border-radius: 8px;
  }
}
.feature-section .author-list-wrap h5 {
  color: var(--cp-color-common-white);
  font-family: var(--cp-ff-body);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-section .author-list-wrap .icon {
  background-color: var(--cp-color-theme-secondary);
  color: var(--cp-color-heading-primary);
}

@media (max-width: 1199px) {
  .feature-content {
    padding-top: 50px;
  }
}
.feature-content .clients-review {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: var(--cp-color-theme-secondary);
  padding: 36px 26px 36px 40px;
  border-radius: 8px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 992px) {
  .feature-content .clients-review {
    flex-wrap: wrap;
  }
}
.feature-content .clients-review .num {
  font-weight: 800;
  font-size: 100px;
  margin-bottom: 0;
  line-height: 0.8;
}
.feature-content .clients-review span {
  font-weight: 500;
  font-size: 24px;
  color: var(--cp-color-heading-primary);
  line-height: 108%;
  margin-top: 14px;
  display: block;
}
.feature-content .clients-review .star i {
  color: var(--cp-color-theme-primary);
}
.feature-content .image-2 {
  width: 100%;
  height: 365px;
}
.feature-content .image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.faeture-item {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.faeture-item:not(:last-of-type) {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(181, 203, 197, 0.4);
}
.faeture-item .icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  width: 90px;
  border-radius: 14px;
  height: 90px;
  background-color: var(--cp-color-theme-primary);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 88 90" xmlns="http://www.w3.org/2000/svg"><path d="M7.17794 12.4103C7.98604 5.33944 13.9705 0 21.0874 0H67.7449C75.0135 0 81.073 5.5624 81.6938 12.8044L87.0081 74.8044C87.7087 82.9781 81.2629 90 73.0592 90H14.0017C5.63996 90 -0.857223 82.718 0.0922214 74.4103L7.17794 12.4103Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.faeture-item .content .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 129%;
  color: var(--cp-color-common-white);
  margin-bottom: 14px;
}
.faeture-item .content p {
  color: var(--cp-color-grey-1);
}

.feature-section-2 {
  background-color: var(--cp-color-grey-1);
  position: relative;
  z-index: 1;
}
.feature-section-2 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 4%;
}
.feature-section-2 .image-2 {
  width: 100%;
  padding-right: 12px;
  height: 330px;
  margin-top: -40px;
}
@media only screen and (max-width: 992px) {
  .feature-section-2 .image-2 {
    margin-top: 0;
    padding-right: 0;
  }
}
.feature-section-2 .image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.feature-section-2 .feature-row {
  align-items: end;
  justify-content: space-between;
}

@media only screen and (max-width: 992px) {
  .feature-content-2 {
    margin-bottom: 24px;
  }
}
.feature-content-2 .image-wrap {
  float: left;
  position: relative;
}
.feature-content-2 .image-wrap .image-1 {
  width: 948px;
  height: 460px;
}
@media only screen and (max-width: 992px) {
  .feature-content-2 .image-wrap .image-1 {
    width: 100%;
  }
}
.feature-content-2 .image-wrap .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 16px;
}
.feature-content-2 .author-list-wrap {
  border-radius: 8px;
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 40px;
  background-color: var(--cp-color-theme-secondary);
}
.feature-content-2 .author-list-wrap h5 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-content-2 .author-list li {
  height: 50px;
  width: 50px;
  border-color: var(--cp-color-theme-primary);
}
.feature-content-2 .author-list .icon {
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-theme-primary);
}

.feature-items-2 {
  padding-left: 30px;
}
.feature-items-2 .icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: var(--cp-color-theme-primary);
  width: 70px;
  height: 70px;
  border-radius: 14px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 68 70" xmlns="http://www.w3.org/2000/svg"><path d="M4.89222 12.4103C5.70032 5.33945 11.6848 0 18.8017 0H49.4592C56.7277 0 62.7873 5.5624 63.4081 12.8044L67.0081 54.8044C67.7087 62.9781 61.2629 70 53.0592 70H14.0017C5.63996 70 -0.857223 62.718 0.0922214 54.4103L4.89222 12.4103Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 68 70" xmlns="http://www.w3.org/2000/svg"><path d="M4.89222 12.4103C5.70032 5.33945 11.6848 0 18.8017 0H49.4592C56.7277 0 62.7873 5.5624 63.4081 12.8044L67.0081 54.8044C67.7087 62.9781 61.2629 70 53.0592 70H14.0017C5.63996 70 -0.857223 62.718 0.0922214 54.4103L4.89222 12.4103Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.feature-items-2 .title {
  font-weight: 600;
  font-size: 24px;
  margin: 32px 0 14px 0;
}

.feature-section-3 .image-1 {
  float: right;
  width: 1620px;
  height: 500px;
}
@media (max-width: 1199px) {
  .feature-section-3 .image-1 {
    width: 100%;
  }
}
.feature-section-3 .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 10px;
}

.feature-items-wrap-3 {
  border-radius: 16px;
  background-color: var(--cp-color-theme-primary);
  margin-left: 48px;
  margin-top: -120px;
}
@media (max-width: 1399px) {
  .feature-items-wrap-3 {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .feature-items-wrap-3 {
    margin-top: 20px;
  }
}

.feature-item-3 {
  display: flex;
  gap: 32px;
  padding: 38.5px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}
.feature-item-3 .icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: var(--cp-color-theme-secondary);
  width: 80px;
  height: 80px;
  border-radius: 14px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 78 80" xmlns="http://www.w3.org/2000/svg"><path d="M6.03508 12.4104C6.84318 5.33945 12.8276 0 19.9445 0H58.6021C65.8706 0 71.9302 5.56241 72.5509 12.8044L77.0081 64.8044C77.7087 72.9782 71.2629 80 63.0592 80H14.0017C5.63996 80 -0.857223 72.718 0.0922214 64.4104L6.03508 12.4104Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 78 80" xmlns="http://www.w3.org/2000/svg"><path d="M6.03508 12.4104C6.84318 5.33945 12.8276 0 19.9445 0H58.6021C65.8706 0 71.9302 5.56241 72.5509 12.8044L77.0081 64.8044C77.7087 72.9782 71.2629 80 63.0592 80H14.0017C5.63996 80 -0.857223 72.718 0.0922214 64.4104L6.03508 12.4104Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.feature-item-3 .content .title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--cp-color-common-white);
}
.feature-item-3 .content p {
  color: #b5cbc5;
}

.feature-inner-section {
  background-color: var(--cp-color-theme-secondary);
}

/* !END: Feature CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.blog-section .running-text ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.blog-section .running-text ul li {
  font-weight: 600;
  font-size: 200px;
  line-height: 85%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 110px;
  white-space: nowrap;
  font-family: var(--cp-ff-heading);
  color: var(--cp-color-heading-primary);
}
@media (max-width: 1199px) {
  .blog-section .running-text ul li {
    font-size: 150px;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section .running-text ul li {
    font-size: 100px;
    margin-bottom: 70px;
  }
}

.post-card {
  position: relative;
  border-top: 1px solid rgba(16, 85, 31, 0.14);
  padding: 40px 0;
}
.post-card .title {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
}
@media only screen and (max-width: 767px) {
  .post-card .title {
    font-size: 30px;
    line-height: 38px;
  }
}
.post-card .title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.post-card .post-card-right {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 1199px) {
  .post-card .post-card-right {
    flex-direction: column;
    gap: 24px;
  }
}
.post-card .post-card-right .desc {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 27px;
  color: rgba(56, 56, 56, 0.8);
}
.post-card .post-card-right .post-meta {
  border-radius: 48px;
  padding: 5px 17px;
  background: rgba(16, 85, 31, 0.1);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--cp-color-text-body);
}
.post-card .post-card-right .image {
  width: 220px;
  height: 180px;
}
@media only screen and (max-width: 767px) {
  .post-card .post-card-right .image {
    width: 100%;
  }
}
.post-card .post-card-right .image img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card:nth-last-child(1) {
  padding-bottom: 0;
}
.post-card:hover .title a {
  background-size: 100% 2px;
}

.blog-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  border-top: 1px solid #d9d9d9;
  gap: 65px;
}
@media (max-width: 1199px) {
  .blog-grid {
    gap: 50px;
    grid-template-columns: auto auto;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid {
    grid-template-columns: auto;
    border-top: 0;
    gap: 40px;
  }
}

.post-card-2 {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .post-card-2 {
    border-top: 1px solid #d9d9d9;
  }
}
.post-card-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -32px;
  width: 1px;
  height: 100%;
  background-color: #d9d9d9;
}
@media (max-width: 1199px) {
  .post-card-2::after {
    right: -25px;
  }
}
@media only screen and (max-width: 767px) {
  .post-card-2::after {
    display: none;
  }
}
.post-card-2:nth-last-child(1)::after {
  display: none;
}
.post-card-2 .post-thumb {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.post-card-2 .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.post-card-2 .post-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.post-card-2 span {
  font-family: var(--cp-ff-heading);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--cp-color-text-body);
  padding: 20px 0;
  display: block;
}
.post-card-2 .post-content .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  padding: 20px 0 24px;
  margin: 0;
}
.post-card-2 .post-content .title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.post-card-2 .post-content .title:hover a {
  background-size: 100% 2px;
}
.post-card-2:hover .post-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.post-card-2:hover .post-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.post-card-3 {
  overflow: hidden;
  border-top: 1px solid rgba(16, 85, 31, 0.1);
  position: relative;
  padding: 24px 0;
}
.post-card-3 .post-meta {
  font-weight: 500;
  text-transform: uppercase;
  color: var(--cp-color-text-body);
  font-family: var(--cp-ff-heading);
}
.post-card-3 .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 129%;
  color: var(--cp-color-heading-primary);
  margin: 16px 0 70px;
}
.post-card-3 .title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.post-card-3 .title:hover a {
  background-size: 100% 2px;
}
@media only screen and (max-width: 992px) {
  .post-card-3 .title {
    margin: 16px 0 40px;
  }
}
.post-card-3 .image {
  width: 100%;
  height: 320px;
  padding-left: 11.5px;
  float: inline-end;
  display: block;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .post-card-3 .image {
    padding-left: 0;
  }
}
.post-card-3 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card-3 .image::before {
  content: "";
  position: absolute;
  top: -125%;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 500%);
}
.post-card-3::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  width: 1px;
  height: 100%;
  left: auto;
  right: 660px;
  background-color: rgba(16, 85, 31, 0.1);
}
@media (max-width: 1399px) {
  .post-card-3::after {
    right: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .post-card-3::after {
    display: none;
  }
}
.post-card-3:nth-last-child(1) {
  padding-bottom: 0;
}
.post-card-3:hover .image::before {
  -webkit-animation: ShineAnimation 0.5s;
  animation: ShineAnimation 0.5s;
}

.post-inner-card .post-thumb {
  width: 100%;
  height: 295px;
  position: relative;
  overflow: hidden;
}
.post-inner-card .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.post-inner-card .post-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.post-inner-card .tag {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 16px;
  background-color: var(--cp-color-theme-secondary);
  color: var(--cp-color-text-body);
  font-family: var(--cp-ff-heading);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  z-index: 2;
}
.post-inner-card .content {
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.post-inner-card .content .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  margin-bottom: 20px;
}
.post-inner-card .content .title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.post-inner-card .content .title:hover a {
  background-size: 100% 2px;
  color: var(--cp-color-heading-primary);
}
.post-inner-card:hover .post-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.post-inner-card:hover .post-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.post-standard-card {
  border: 1px solid rgba(16, 85, 31, 0.15);
  border-radius: 8px;
  padding: 32px;
}
@media only screen and (max-width: 767px) {
  .post-standard-card {
    padding: 32px 10px;
  }
}
.post-standard-card:not(:last-of-type) {
  margin-bottom: 32px;
}
.post-standard-card .post-thumb {
  width: 100%;
  height: 450px;
  position: relative;
}
.post-standard-card .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.post-standard-card .post-content .post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.post-standard-card .post-content .post-meta li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--cp-color-text-body);
}
.post-standard-card .post-content .post-meta li strong {
  font-weight: 500;
  color: var(--cp-color-heading-primary);
}
.post-standard-card .post-content .post-meta li .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background-color: var(--cp-color-heading-primary);
}
.post-standard-card .post-content .title {
  font-weight: 600;
  font-size: 36px;
  line-height: 133%;
  margin: 16px 0;
}
@media only screen and (max-width: 992px) {
  .post-standard-card .post-content .title {
    font-size: 28px;
  }
}
.post-standard-card .post-content .title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.post-standard-card .post-content .desc {
  margin-bottom: 32px;
}
.post-standard-card .post-btn .cp-primary-btn {
  height: 46px;
}
.post-standard-card .post-btn .cp-primary-btn .btn_label {
  border-radius: 8px 0 0 8px;
  margin-right: 12px;
}
.post-standard-card .post-btn .cp-primary-btn .label_corner {
  right: -17px;
}
.post-standard-card:hover .post-content .title a {
  background-size: 100% 2px;
  color: var(--cp-color-heading-primary);
}

.pagination-wrap {
  margin-top: 70px;
}
.pagination-wrap .pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination-wrap .pagination li a {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  width: 48px;
  height: 48px;
  background-color: var(--cp-color-grey-1);
  color: var(--cp-color-heading-primary);
  font-weight: 600 !important;
}
.pagination-wrap .pagination li a.active, .pagination-wrap .pagination li a:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}

@keyframes ShineAnimation {
  100% {
    top: 125%;
  }
}
/* !END: Theme Blog CSS */
/**----------------------------------------
    START: Brand CSS
----------------------------------------*/
.brand-section .brand-title {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.brand-section .brand-title::before, .brand-section .brand-title::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  width: 480px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  border: 1px dashed var(--cp-color-heading-primary);
}
.brand-section .brand-title::after {
  left: auto;
  right: 0;
}
.brand-section .brand-carousel .swiper-wrapper {
  transition-timing-function: linear;
}

.brand-item {
  width: 151px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cp-color-grey-1);
}

.brand-section-2 .brand-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.brand-section-2 .brand-title {
  margin-bottom: 0;
}
.brand-section-2 .brand-title::before {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  width: 900px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  left: 117%;
  border: 1px dashed var(--cp-color-heading-primary);
}
.brand-section-2 .brand-title::after {
  display: none;
}
.brand-section-2 .swiper-arrow .swiper-nav {
  height: 28px;
  width: 28px;
  border-radius: 5px;
  font-size: 12px;
  border-color: var(--cp-color-heading-primary);
  color: var(--cp-color-heading-primary);
}
.brand-section-2 .swiper-arrow .swiper-nav:hover {
  background-color: var(--cp-color-theme-secondary);
  border-color: var(--cp-color-theme-secondary);
}

/* !END: Brand CSS */
/**----------------------------------------
    START: Counter CSS
----------------------------------------*/
.image-text {
  font-size: 239px;
  font-weight: 700;
  background-image: url("../../assets/img/images/text-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  line-height: 190px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: uppercase;
  margin-bottom: 70px;
  text-align: center;
}
@media (max-width: 1399px) {
  .image-text {
    font-size: 200px;
    line-height: 0.8;
  }
}
@media (max-width: 1199px) {
  .image-text {
    font-size: 160px;
  }
}
@media only screen and (max-width: 992px) {
  .image-text {
    font-size: 130px;
  }
}
@media only screen and (max-width: 767px) {
  .image-text {
    font-size: 90px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 567px) {
  .image-text {
    font-size: 60px;
  }
}

.counter-items-gird {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .counter-items-gird {
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-items-gird {
    grid-template-columns: auto auto;
  }
}
@media only screen and (max-width: 467px) {
  .counter-items-gird {
    grid-template-columns: auto;
  }
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: var(--cp-ff-heading) !important;
}

.count-item {
  display: flex;
  align-items: center;
  gap: 87px;
}
@media (max-width: 1399px) {
  .count-item {
    gap: 65px;
  }
}
@media (max-width: 1199px) {
  .count-item .tree-shape {
    display: none;
  }
}
.count-item .content .num {
  font-weight: lighter;
  font-size: 72px;
  line-height: 1;
  margin-bottom: 0;
  font-family: var(--cp-ff-heading) !important;
}
.count-item .content .num span {
  font-weight: 600;
}
.count-item .content .desc {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 20px;
  color: var(--cp-color-heading-primary);
}

.counter-items-gird-2 {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  justify-content: space-between;
  background-color: var(--cp-color-theme-primary);
}
@media only screen and (max-width: 992px) {
  .counter-items-gird-2 {
    grid-template-columns: auto auto auto;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .counter-items-gird-2 {
    grid-template-columns: auto auto;
  }
}
@media only screen and (max-width: 567px) {
  .counter-items-gird-2 {
    grid-template-columns: auto;
  }
}

.count-item-2 {
  padding: 70px 75px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1600px) {
  .count-item-2 {
    padding: 50px 30px;
  }
}
@media (max-width: 1199px) {
  .count-item-2 {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 992px) {
  .count-item-2 {
    border-right: 0;
  }
}
.count-item-2 .odometer.odometer-auto-theme,
.count-item-2 .odometer.odometer-theme-default {
  font-family: var(--cp-ff-heading) !important;
  line-height: 1;
}
.count-item-2 .odometer.odometer-auto-theme .odometer-digit .odometer-value,
.count-item-2 .odometer.odometer-theme-default .odometer-digit .odometer-value {
  line-height: 0.9;
}
.count-item-2 .content .num {
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  text-align: center;
  color: var(--cp-color-common-white);
  margin-bottom: 5px;
}
.count-item-2 .content .desc {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #b5cbc5;
}

/* !END: Counter CSS */
/**----------------------------------------
    START: Login/register CSS
----------------------------------------*/
.order-fail-content,
.order-success-content {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(16, 85, 31, 0.1);
  border-radius: 12px;
  padding: 40px 28px 28px;
  background-color: var(--cp-color-grey-1);
  text-align: center;
}
.order-fail-content .icon,
.order-success-content .icon {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 129, 31, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  color: var(--cp-color-common-white);
  font-size: 24px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
}
.order-fail-content .icon::after,
.order-success-content .icon::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  background-color: var(--cp-color-theme-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  z-index: -1;
}
.order-fail-content .title,
.order-success-content .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  margin-top: 24px;
  margin-bottom: 12px;
}
.order-fail-content p,
.order-success-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
}
.order-fail-content .order-fail-info,
.order-success-content .order-fail-info {
  border: 1px solid rgba(16, 85, 31, 0.1);
  border-radius: 12px;
  background-color: var(--cp-color-common-white);
  padding: 20px 24px;
  text-align: left;
  margin-top: 28px;
}
.order-fail-content .order-fail-info h4,
.order-success-content .order-fail-info h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 14px;
}
.order-fail-content .order-fail-info .list:nth-of-type(1),
.order-success-content .order-fail-info .list:nth-of-type(1) {
  border-bottom: 1px dashed #10551f;
  padding-bottom: 16px;
  margin-bottom: 10px;
}
.order-fail-content .order-fail-info .list li,
.order-success-content .order-fail-info .list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 0;
}
.order-fail-content .order-fail-info .list li .info,
.order-success-content .order-fail-info .list li .info {
  font-weight: 500;
  font-size: 16px;
  color: var(--cp-color-heading-primary);
}
.order-fail-content .back-btn,
.order-success-content .back-btn {
  padding: 15px;
  display: flex;
  align-items: center;
  background-color: var(--cp-color-theme-primary);
  justify-content: center;
  color: var(--cp-color-common-white);
  border-radius: 120px;
  margin-top: 24px;
}
.order-fail-content .back-btn:hover,
.order-success-content .back-btn:hover {
  background-color: var(--cp-color-heading-primary);
}

.order-fail-content .icon {
  background-color: rgba(210, 20, 3, 0.12);
}
.order-fail-content .icon::after {
  background-color: #d21403;
}
.order-fail-content .back-btn {
  background-color: #d21403;
}

.sign-up-section {
  padding-top: 200px;
}

.sign-up-wrap {
  border: 1px solid #b5cbc5;
  border-radius: 16px;
  background-color: var(--cp-color-grey-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  .sign-up-wrap {
    flex-direction: column;
  }
}

.sign-up-content {
  width: 100%;
  flex: 1;
  text-align: center;
}
.sign-up-content .title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 8px;
  margin-top: 5px;
}
.sign-up-content .icon-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
}
.sign-up-content .app-icon {
  width: 100%;
  border: 1px solid #10551f;
  border-radius: 8px;
  background-color: rgba(242, 249, 246, 0.3);
  padding: 4px 10px 8px;
}
.sign-up-content .option {
  text-transform: uppercase;
  display: block;
  margin-top: 24px;
  margin-bottom: 32px;
  position: relative;
}
.sign-up-content .option::after, .sign-up-content .option::before {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  background-color: rgba(16, 85, 31, 0.14);
  width: 157px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.sign-up-content .option::before {
  left: auto;
  right: 0;
}
.sign-up-content .sign-up-form .form-item {
  position: relative;
}
.sign-up-content .sign-up-form .form-control {
  padding: 11px 16px 11px;
  border-radius: 8px;
  padding-right: 50px;
}
.sign-up-content .sign-up-form .eye-btn {
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.sign-up-content .sign-up-form .form-item-check-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.sign-up-content .sign-up-form .form-item-check-box .forget-pass {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--cp-color-heading-primary);
}
.sign-up-content .sign-up-form .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sign-up-content .sign-up-form .form-check-label {
  font-weight: 400;
  font-size: 16px;
  color: var(--cp-color-heading-primary);
  margin-bottom: -4px;
}
.sign-up-content .sign-up-form .form-check-input {
  border-color: var(--cp-color-heading-primary);
}
.sign-up-content .sign-up-form .form-check-input:focus {
  box-shadow: none;
}
.sign-up-content .sign-up-form .form-check-input:checked {
  background-color: var(--cp-color-heading-primary);
}
.sign-up-content .login-btn {
  padding: 11px 15px;
  display: flex;
  align-items: center;
  background-color: var(--cp-color-theme-primary);
  justify-content: center;
  color: var(--cp-color-common-white);
  border-radius: 120px;
  margin-top: 24px;
  font-weight: 600;
}
.sign-up-content .login-btn:hover {
  background-color: var(--cp-color-heading-primary);
}
.sign-up-content .page-switch {
  margin-top: 16px;
  color: var(--cp-color-common-black);
}
.sign-up-content .page-switch a {
  color: var(--cp-color-theme-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.sign-up-img {
  width: 420px;
  height: 584px;
}
@media only screen and (max-width: 767px) {
  .sign-up-img {
    width: 100%;
    height: 500px;
  }
}
.sign-up-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

/* !END: Login/register CSS */
/**----------------------------------------
    START: Consult CSS
----------------------------------------*/
.consult-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  height: 800px;
  width: 100%;
}
.consult-section .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.consult-section .bg-img::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  background-color: rgba(0, 31, 7, 0.36);
}

.consult-contact-content {
  background-color: var(--cp-color-grey-1);
  margin-bottom: -70px;
  border-radius: 8px;
  overflow: hidden;
}
.consult-contact-content .request-form {
  padding: 40px 40px 0;
}
@media (max-width: 1199px) {
  .consult-contact-content .request-form {
    padding: 20px;
  }
}
.consult-contact-content .contact-title {
  font-weight: 600;
  font-size: 24px;
  color: var(--cp-color-heading-primary);
  margin-bottom: 40px;
}

/* !END: Consult CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.breadcum-section {
  background-color: #e7eee9;
  overflow: hidden;
}

.breadcum-image {
  width: 1620px;
  height: 550px;
}
@media (max-width: 1600px) {
  .breadcum-image {
    width: 100%;
  }
}
.breadcum-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 0;
}

.breadcum-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 208px 0 70px;
}
.breadcum-content .title {
  font-weight: 600;
  font-size: 72px;
  line-height: 100%;
}
@media only screen and (max-width: 992px) {
  .breadcum-content .title {
    font-size: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcum-content .title {
    font-size: 42px;
  }
}
.breadcum-content .sub-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcum-content .sub-title .home {
  font-weight: 500;
  font-size: 20px;
}
.breadcum-content .sub-title .home:hover {
  color: var(--cp-color-heading-primary);
}
.breadcum-content .sub-title span {
  color: var(--cp-color-heading-primary);
}
.breadcum-content .sub-title .inner-page {
  font-weight: 500;
  font-size: 20px;
  color: var(--cp-color-theme-primary);
}
.breadcum-content .sub-title .inner-page:hover {
  color: var(--cp-color-heading-primary);
}

.breadcum-image img-reveal {
  width: 1620px;
  height: 550px;
}
@media (max-width: 1600px) {
  .breadcum-image img-reveal {
    width: 100%;
  }
}
.breadcum-image img-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-section-inner {
  position: relative;
  z-index: 2;
}

.form-control {
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  width: 100%;
  border: 0;
  margin-bottom: 16px;
  border: 1px solid #b5cbc5;
  border-radius: 12px;
  padding: 15px 24px;
}
.form-control::-webkit-input-placeholder {
  color: var(--cp-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.form-control:-moz-placeholder {
  color: var(--cp-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.form-control::-moz-placeholder {
  color: var(--cp-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.form-control:-ms-input-placeholder {
  color: var(--cp-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--cp-color-theme-primary);
}

.nice-select {
  height: 100%;
  padding: 7px 24px;
}
.nice-select.open .list {
  width: 100%;
}

.submit-btn {
  background-color: var(--cp-color-theme-primary);
  padding: 20.4px 30px;
  text-align: center;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  color: var(--cp-color-common-white);
  margin-top: 24px;
  font-family: var(--cp-ff-body);
}
.submit-btn:hover {
  background-color: var(--cp-color-heading-primary);
}

.appointment-section .image-1 {
  width: 100%;
  height: 230px;
}
.appointment-section .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.appointment-section .hot-line-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.appointment-section .hotline {
  display: flex;
  align-items: center;
  gap: 16px;
}
.appointment-section .hotline .icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: var(--cp-color-heading-primary);
  width: 46px;
  height: 46px;
  color: var(--cp-color-common-white);
}
.appointment-section .hotline span {
  font-weight: 500;
  font-size: 14px;
  color: var(--cp-color-text-body);
}
.appointment-section .hotline .num {
  margin-bottom: 0;
  font-weight: 700;
  margin-top: 2px;
}
.appointment-section .consult-contact-content {
  border-radius: 16px;
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .appointment-section .consult-contact-content {
    margin-left: 0;
  }
}
.appointment-section .consult-contact-content .request-form {
  padding: 60px;
}
@media only screen and (max-width: 992px) {
  .appointment-section .consult-contact-content .request-form {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .appointment-section .consult-contact-content .request-form {
    padding: 20px;
  }
}
.appointment-section .consult-contact-content .contact-title {
  font-weight: 600;
  font-size: 28px;
  color: var(--cp-color-heading-primary);
  margin-bottom: 35px;
}
.appointment-section .consult-contact-content textarea.form-control {
  max-height: 215px;
}

.contact-content .title {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 70px;
}
.contact-content .contact-info-item {
  margin-bottom: 24px;
}
.contact-content .contact-info-item .num {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 4px;
}
.contact-content .contact-info-item .address {
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
}
.contact-content .contact-info-item .address a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.contact-content-form {
  padding: 70px;
  background-color: var(--cp-color-grey-1);
  border-radius: 16px;
  margin-top: -200px;
}
@media only screen and (max-width: 992px) {
  .contact-content-form {
    margin-top: 40px;
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-content-form {
    padding: 20px;
  }
}
.contact-content-form .contact-title {
  font-size: 28px;
  margin-bottom: 32px;
}
.contact-content-form .message-item .form-control {
  min-height: 210px;
}

.error-section {
  padding-top: 200px;
}

.error-content .title {
  font-weight: 500;
  font-size: 36px;
  margin: 32px 0;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Cart CSS
----------------------------------------*/
.table-responsive {
  width: 100%;
  overflow-x: auto;
}
@media only screen and (max-width: 992px) {
  .table-responsive {
    scrollbar-width: thin;
    overflow-x: scroll;
  }
}

.cart-content {
  vertical-align: middle;
  border-radius: 16px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .cart-content {
    min-width: 850px;
  }
}
.cart-content tr {
  border: 0;
}
.cart-content thead tr th {
  font-weight: 400;
  font-size: 16px;
  color: var(--cp-color-text-body);
}
.cart-content tbody {
  border: 0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.cart-content tbody::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  border: 1px solid rgba(16, 85, 31, 0.15);
  border-radius: 16px;
}
.cart-content tbody tr:not(:last-of-type) {
  border-bottom: 1px solid rgba(16, 85, 31, 0.15) !important;
}

.cart-info {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 15px;
}
.cart-info img {
  border-radius: 8px;
  width: 80px;
  height: 80px;
  background-color: #E7EEE9;
  object-fit: cover;
}
.cart-info .title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
}
.cart-info span {
  font-weight: 400;
  font-size: 14px;
  color: var(--cp-color-text-body);
}

.size {
  font-family: var(--cp-ff-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--cp-color-heading-primary);
}

.cart-info-wrap {
  width: 380px;
}

.quantity-box {
  display: flex;
  align-items: center;
  width: max-content;
}
.quantity-box input {
  width: max-content;
  padding: 0;
  outline: none;
  width: 30px;
  border: 0;
  text-align: center;
  font-family: var(--cp-ff-heading);
  font-weight: 400;
  font-size: 16px;
  background-color: transparent;
  color: var(--cp-color-heading-primary);
}
.quantity-box button {
  font-size: 12px;
  color: var(--cp-color-heading-primary);
}

.table > :not(caption) > * > * {
  padding: 5px;
  color: inherit;
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

.checkout-form {
  border: 1px solid rgba(16, 85, 31, 0.15);
  border-radius: 16px;
  padding: 32px;
  margin-right: 35px;
}
@media (max-width: 1199px) {
  .checkout-form {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.checkout-form .request-form .contact-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
}
.checkout-form .request-form .form-item .form-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--cp-color-heading-primary);
  margin-bottom: 8px;
  display: block;
}
.checkout-form .request-form .form-item .form-check-label {
  font-weight: 400;
  font-size: 16px;
  color: var(--cp-color-heading-primary);
}
.checkout-form .request-form .form-item .form-check-input {
  border-color: var(--cp-color-heading-primary);
}
.checkout-form .request-form .form-item .form-check-input:focus {
  box-shadow: none;
}
.checkout-form .request-form .form-item .form-check-input:checked {
  background-color: var(--cp-color-heading-primary);
}
.checkout-form .request-form .form-control {
  border: 1px solid #b5cbc5;
  border-radius: 12px;
  background-color: var(--cp-color-grey-1);
  margin-bottom: 24px;
}
.checkout-form .request-form .form-control:focus {
  border: 1px solid var(--cp-color-theme-primary);
}
.checkout-form .request-form .form-control.address {
  min-height: 137px;
}

.cart-total-wrap {
  border: 1px solid rgba(16, 85, 31, 0.15);
  border-radius: 16px;
  padding: 32px;
  background-color: var(--cp-color-grey-1);
}
.cart-total-wrap .cart-title {
  border-bottom: 1px solid rgba(16, 85, 31, 0.15);
  font-weight: 500;
  font-size: 24px;
  padding-bottom: 16px;
}
.cart-total-wrap .cart-total li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
}
.cart-total-wrap .cart-total li span {
  font-weight: 400;
  font-size: 16px;
}
.cart-total-wrap .cart-total li.total-amount {
  border-top: 1px solid rgba(16, 85, 31, 0.1);
  padding-top: 16px;
  margin-top: 8px;
}
.cart-total-wrap .cart-total li.total-amount span {
  font-weight: 500;
  font-size: 18px;
  color: var(--cp-color-heading-primary);
}
.cart-total-wrap .checkout-btn {
  width: 100%;
  border-radius: 8px;
  padding: 8px;
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  margin-top: 55px;
}
.cart-total-wrap .checkout-btn:hover {
  background-color: var(--cp-color-heading-primary);
}

.coupon-form {
  position: relative;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.coupon-form .form-item {
  max-width: 300px;
}
.coupon-form .form-control {
  margin-bottom: 0;
  border-radius: 12px 0 0 12px;
}
.coupon-form .coupon-btn {
  background-color: var(--cp-color-theme-primary);
  padding: 15px 20px;
  border-radius: 0 12px 12px 0;
  text-align: center;
  color: var(--cp-color-common-white);
}
.coupon-form .coupon-btn:hover {
  background-color: var(--cp-color-heading-primary);
}

.payment-method {
  margin-top: 35px;
}
.payment-method .payment-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
}
.payment-method .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.payment-method .form-check .form-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--cp-color-heading-primary);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
}
.payment-method .form-check .form-check-input::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--cp-color-heading-primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.25s ease;
  transform: translate(-50%, -50%) scale(0);
}
.payment-method .form-check .form-check-input:focus {
  box-shadow: none;
}
.payment-method .form-check .form-check-input:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
.payment-method .form-check .form-check-input:checked {
  border-color: #2f4f2f;
}
.payment-method .form-check .form-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.order-summery {
  background-color: var(--cp-color-grey-1);
  padding: 32px;
  border-radius: 16px;
}
.order-summery-title {
  font-weight: 600;
  font-size: 24px;
}
.order-summery .summery-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(16, 85, 31, 0.1);
}
.order-summery .summery-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #e7eee9;
}
.order-summery .summery-item .top-content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.order-summery .summery-item .content {
  display: flex;
  flex-direction: column;
}
.order-summery .summery-item .content .title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.order-summery .summery-item .content .title a {
  color: var(--cp-color-heading-primary);
}
.order-summery .summery-item .content span {
  font-weight: 400;
  font-size: 14px;
}
.order-summery .summery-item .content .remove-btn {
  font-family: var(--cp-ff-heading);
  font-weight: 400;
  font-size: 14px;
  color: #9e0e0e;
  text-align: left;
  margin-top: 8px;
}
.order-summery .summery-item .price {
  font-weight: 600;
  font-size: 16px;
}
.order-summery .cart-total-wrap {
  border: 0;
  border-radius: 0;
  padding: 0;
  background-color: transparent;
}
.order-summery .cart-total-wrap .cart-total li span {
  font-weight: 400;
  font-size: 16px;
  color: var(--cp-color-heading-primary);
}
.order-summery .cart-total-wrap .cart-total li.total-amount {
  border-top: 1px solid rgba(16, 85, 31, 0.1);
  padding-top: 16px;
  margin-top: 8px;
}
.order-summery .cart-total-wrap .cart-total li.total-amount span {
  font-weight: 500;
  font-size: 18px;
  color: var(--cp-color-heading-primary);
}
.order-summery .cart-total-wrap .checkout-btn {
  margin-top: 40px;
}

/* !END: Cart CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
  display: none;
}

.sidebar-area {
  position: relative;
  z-index: 1;
}
.sidebar-area:before {
  background-color: rgba(20, 58, 43, 0.2);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 91px;
  left: 0;
  z-index: -1;
}

.sidebar-trigger {
  display: block;
}

.sidebar-area {
  background-color: var(--cp-color-common-white);
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 450px;
  height: 100%;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  padding: 60px 40px;
  padding-top: 34px;
}

.open-sidebar .sidebar-area {
  right: 0;
  visibility: visible;
  transform: translate(0);
}

.sidebar-trigger.close {
  position: absolute;
  right: 30px;
  top: 35px;
  color: var(--grey-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-trigger.close:hover {
  color: var(--cp-color-theme-primary);
}

.sidebar-trigger.close svg {
  fill: currentColor;
  stroke: none;
  width: 20px;
  height: 20px;
}

.sidebar-content .site-logo {
  margin-bottom: 40px;
}

.sidebar-content .site-logo img {
  max-width: 125px;
}

.sidebar-content .sidebar-info li {
  font-size: 18px;
}

.sidebar-content .sidebar-social li {
  display: inline-block;
  margin: 0 3px;
  padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
  display: inline-block;
  border: 1px solid var(--border-1);
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sidebar-content .sidebar-social li a:after {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 59%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
  margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #ccc;
}

.sidebar-area::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area-webkit-::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area::-moz-selection {
  background-color: #999;
  color: #fff;
}

#sidebar-overlay {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0s ease-in-out;
  width: calc(100% - 400px);
  z-index: -1;
}

.open-sidebar #sidebar-overlay {
  opacity: 1;
  z-index: 1002;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}

@media (max-width: 992px) {
  .sidebar-content .list-post-area.list-2 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .sidebar-area {
    width: 400px;
    padding: 60px 30px;
    justify-content: center;
  }
  .side-menu-logo {
    margin-bottom: 50px;
    max-width: 125px;
  }
  .side-menu-wrap {
    margin-bottom: 70px;
  }
  .side-menu-header h3 {
    display: none;
  }
  .side-menu-list li a {
    font-size: 14px;
  }
  .side-menu-list li p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sidebar-area {
    width: 320px;
    padding: 60px 20px 60px 20px;
  }
  .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
    height: 90px;
    width: 90px;
  }
  .sidebar-content .list-post-area.list-2 .list-post-card {
    grid-template-columns: 90px 1fr;
  }
}
.side-menu-logo {
  max-width: 125px;
}

.side-menu-about {
  margin: 75px 0 60px 0;
}
.side-menu-about p {
  font-size: 14px;
}

.side-menu-about p {
  font-size: 15px;
  margin: 25px 0;
}

.side-menu-header h3 {
  font-size: 30px;
  font-weight: 600px;
  line-height: 1;
  font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
  margin-bottom: 20px;
}

.side-menu-list {
  margin: 25px 0 35px 0;
}

.side-menu-list li {
  display: flex;
  align-items: center;
}

.side-menu-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.side-menu-list li i {
  background-color: var(--cp-color-theme-primary);
  font-size: 12px;
  color: var(--cp-color-common-white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid var(--cp-color-border-1);
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.side-menu-list li:hover i {
  background-color: var(--cp-color-theme-primary);
}

.side-menu-list li p {
  font-size: 16px;
  font-weight: 400;
  padding-left: 10px;
  margin-bottom: 0;
}

.side-menu-list li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--cp-color-text-body);
  padding-left: 10px;
}
.side-menu-list li a:hover {
  color: var(--cp-color-theme-primary);
}

.side-menu-social {
  margin-top: 40px;
  list-style: none;
}
.side-menu-social li {
  display: inline-flex;
}
.side-menu-social li:not(:last-of-type) {
  margin-right: 5px;
}
.side-menu-social li a {
  background-color: var(--cp-color-bg-1);
  font-size: 15px;
  color: var(--cp-color-heading-primary);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cp-color-border-1);
  border-radius: 50%;
}
.side-menu-social li a:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}

/* !END: Sidebar CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.blog-details-section {
  padding-top: 240px;
}
@media only screen and (max-width: 992px) {
  .blog-details-section {
    padding-top: 180px;
  }
}

.blog-details-img {
  width: 100%;
  height: 450px;
}
.blog-details-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}
@media only screen and (max-width: 992px) {
  .blog-details-img {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-img {
    height: 300px;
  }
}

.blog-details-wrap .post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.blog-details-wrap .post-meta li {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--cp-color-text-body);
}
.blog-details-wrap .post-meta li strong {
  font-weight: 500;
  color: var(--cp-color-heading-primary);
}
.blog-details-wrap .post-meta li .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background-color: var(--cp-color-heading-primary);
}

@media only screen and (max-width: 992px) {
  .blog-details-content {
    margin-bottom: 40px;
  }
}
.blog-details-content .details-title {
  font-weight: 600;
  font-size: 40px;
  margin-top: 16px;
}
@media only screen and (max-width: 992px) {
  .blog-details-content .details-title {
    font-size: 30px;
  }
}
.blog-details-content .details-title-2 {
  font-weight: 600;
  font-size: 28px;
}
@media only screen and (max-width: 992px) {
  .blog-details-content .details-title-2 {
    font-size: 30px;
  }
}
.blog-details-content .details-img-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.blog-details-content .details-img-wrap img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.blog-details-content .keypoint-wrap .title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 24px;
}
.blog-details-content .keypoint-wrap .list li {
  font-weight: 400;
  font-size: 16px;
  color: var(--cp-color-text-body);
}
.blog-details-content .keypoint-wrap .list li:not(:last-of-type) {
  padding-bottom: 6px;
}
.blog-details-content .keypoint-wrap .list li i {
  color: var(--cp-color-heading-primary);
}

blockquote {
  background-color: var(--cp-color-theme-primary);
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 40px;
  gap: 32px;
  border-radius: 16px;
  border-left: 2px solid var(--cp-color-border-1);
}
@media only screen and (max-width: 767px) {
  blockquote {
    grid-template-columns: 1fr;
  }
}
blockquote .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  color: var(--cp-color-common-white);
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  blockquote .content p {
    font-size: 20px;
  }
}
blockquote .content .author {
  display: flex;
  align-items: center;
  gap: 16px;
}
blockquote .content .author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
blockquote .content .author .name {
  font-weight: 600;
  font-size: 18px;
  color: var(--cp-color-common-white);
  margin-bottom: 0;
}

.tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 30px;
  margin: 70px 0;
}
.tags.blog-tags {
  padding-bottom: 70px;
  margin-bottom: 70px;
  border-bottom: 1px solid rgba(16, 85, 31, 0.2);
}
.tags .tag-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
.tags .tag-left .tag-title {
  font-size: 20px;
  font-weight: 600;
  margin-right: 16px;
  display: block;
  margin-bottom: 0;
}
.tags .tag-left .tag-list {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 8px;
  flex-wrap: wrap;
  row-gap: 8px;
}
.tags .tag-left .tag-list li a {
  font-size: 16px;
  color: var(--cp-color-heading-primary);
  border: 1px solid rgba(16, 85, 31, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
}
.tags .tag-left .tag-list li a:hover {
  background-color: var(--cp-color-heading-primary);
  color: var(--cp-color-common-white);
  border: 1px solid var(--cp-color-heading-primary);
}

.blog-details-social-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}
.blog-details-social-wrap .title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
}
.blog-details-social-wrap .social-list {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.blog-details-social-wrap .social-list li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(16, 85, 31, 0.2);
  color: var(--cp-color-theme-primary);
}
.blog-details-social-wrap .social-list li a:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}

.comments-area .section-heading {
  margin-bottom: 40px;
}
.comments-area .section-heading .section-title {
  font-size: 28px;
  line-height: 36px;
}

.comment-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .comment-item {
    grid-template-columns: 1fr;
  }
}
.comment-item .reply {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  padding: 8.5px 19px;
  display: inline-flex;
  text-transform: uppercase;
  gap: 5px;
  line-height: 1;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: var(--cp-ff-heading);
}
.comment-item .reply i {
  rotate: -45deg;
}
.comment-item .reply:hover {
  background-color: var(--cp-color-theme-primary);
}
.comment-item .comment-thumb img {
  height: 100px;
  width: 100px;
  object-fit: cover;
  object-position: top;
}
.comment-item .comment-info {
  margin-bottom: 48px;
}
.comment-item .comment-info .comments-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.comment-item .comment-info .comments-meta .author {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
}
.comment-item .comment-info .comments-meta span {
  column-gap: 10px;
  font-size: 16px;
}
.comment-item .comment-info .desc {
  margin-bottom: 24px;
}
.comment-item.item-2 {
  padding-left: 84px;
}
@media only screen and (max-width: 767px) {
  .comment-item.item-2 {
    padding-left: 0;
  }
}
.comment-item.item-2 .comment-info {
  margin-bottom: 0;
}

.blog-contact-form .contact-title {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 32px;
}
.blog-contact-form .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-weight: 600;
  color: var(--cp-color-heading-primary);
  background-color: var(--cp-color-theme-secondary);
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  margin-top: 8px;
}
.blog-contact-form .contact-btn:hover {
  background-color: var(--cp-color-heading-primary);
  color: var(--cp-color-common-white);
}
.blog-contact-form .request-form .form-item .form-control {
  background-color: var(--cp-color-grey-1);
}
.blog-contact-form .request-form .form-item .form-control:focus {
  background-color: var(--cp-color-common-white);
  border: 1px solid var(--cp-color-theme-primary);
}

.sidebar-widget-wrapper {
  background-color: var(--cp-color-grey-1);
  margin-left: 22px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(16, 85, 31, 0.2);
}
@media (max-width: 1199px) {
  .sidebar-widget-wrapper {
    margin-left: 0;
    padding: 20px;
  }
}

.sidebar-widget:not(:last-of-type) {
  margin-bottom: 40px;
}
.sidebar-widget .search-form {
  position: relative;
}
.sidebar-widget .search-form .form-control {
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-heading-primary);
  border: 1px solid rgba(4, 92, 90, 0.1);
  border-radius: 30px;
  font-size: 16px;
  border: none;
  box-shadow: none;
  padding: 16px 0;
  padding-left: 55px;
  padding-right: 20px;
  overflow: hidden;
}
.sidebar-widget .search-form .form-control::-webkit-input-placeholder {
  color: var(--cp-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control:-moz-placeholder {
  color: var(--cp-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control::-moz-placeholder {
  color: var(--cp-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control:-ms-input-placeholder {
  color: var(--cp-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .search-btn {
  color: var(--cp-color-heading-primary);
  font-size: 17px;
  position: absolute;
  left: 28px;
  top: 54%;
  transform: translateY(-50%);
  display: block;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-widget .search-form .search-btn:hover {
  background-color: var(--cp-color-bg-1);
  color: var(--cp-color-common-white);
}
.sidebar-widget .widget-title {
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 24px;
  position: relative;
}
.sidebar-widget .category-list {
  list-style: none;
}
.sidebar-widget .category-list li:not(:last-of-type) {
  margin-bottom: 12px;
}
.sidebar-widget .category-list li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--cp-color-text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-widget .category-list li a .dot {
  width: 6px;
  height: 6px;
  background-color: var(--cp-color-text-body);
  transform: rotate(-45deg);
  display: block;
  transition: 0.3s ease-in-out;
}
.sidebar-widget .category-list li a:hover {
  color: var(--cp-color-theme-primary);
}
.sidebar-widget .category-list li a:hover .dot {
  background-color: var(--cp-color-theme-primary);
}
.sidebar-widget .blog-gallery-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
}
@media (max-width: 1399px) {
  .sidebar-widget .blog-gallery-wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .sidebar-widget .blog-gallery-wrap {
    display: flex;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
  }
}
.sidebar-widget .blog-gallery-wrap .gallary-img {
  height: 100px;
  width: 100px;
}
.sidebar-widget .tags {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  row-gap: 12px;
  list-style: none;
  column-gap: 0;
  margin: 0;
}
.sidebar-widget .tags li {
  margin-top: 8px;
}
.sidebar-widget .tags li:not(:last-of-type) {
  margin-right: 8px;
}
.sidebar-widget .tags li a {
  background-color: var(--cp-color-common-white);
  color: var(--cp-color-heading-primary);
  border: 1px solid rgba(16, 85, 31, 0.2);
  border-radius: 8px;
  padding: 7px 16px;
}
.sidebar-widget .tags li a:hover {
  background-color: var(--cp-color-theme-primary);
  color: var(--cp-color-common-white);
}
.sidebar-widget .sidebar-post {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: hidden;
}
.sidebar-widget .sidebar-post:not(:last-of-type) {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(16, 85, 31, 0.15);
  padding-bottom: 24px;
}
.sidebar-widget .sidebar-post img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}
.sidebar-widget .sidebar-post .post-thumb {
  margin-bottom: 0;
}
.sidebar-widget .sidebar-post .post-content .post-meta {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 8px;
  margin-bottom: 0;
  background-color: transparent;
  padding: 0;
}
.sidebar-widget .sidebar-post .post-content .post-meta li {
  color: var(--cp-color-heading-primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.sidebar-widget .sidebar-post .post-content .title {
  font-weight: 600;
  font-size: 18px;
  color: var(--cp-color-heading-primary);
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .title {
    font-size: 16px;
  }
}
.sidebar-widget .sidebar-post .post-content .title a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.sidebar-widget .sidebar-post .post-content .title a:hover {
  color: var(--cp-color-theme-primary);
  background-size: 100% 1px;
}
.sidebar-widget .sidebar-img-wrap {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 14px;
}
.sidebar-widget .sidebar-img-wrap .image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.sidebar-widget .sidebar-img-wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-widget .sidebar-img-wrap .image::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(16, 85, 31, 0.1) 0%, rgb(16, 85, 31) 100%);
}
.sidebar-widget .sidebar-img-wrap .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
}
.sidebar-widget .sidebar-img-wrap .content .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: var(--cp-color-common-white);
  margin-bottom: 16px;
}
.sidebar-widget .sidebar-img-wrap .content .call-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sidebar-widget .sidebar-img-wrap .content .call-info .icon {
  width: 46px;
  height: 46px;
  background-color: var(--cp-color-theme-secondary);
  color: var(--cp-color-heading-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.sidebar-widget .sidebar-img-wrap .content .call-info span {
  font-weight: 500;
  font-size: 14px;
  color: #b5cbc5;
}
.sidebar-widget .sidebar-img-wrap .content .call-info .num {
  font-weight: 700;
  font-size: 16px;
  color: var(--cp-color-common-white);
  margin-bottom: 0;
  margin-top: 2px;
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-1 {
  background-color: var(--cp-color-heading-primary);
}
.footer-1 .footer-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 190px;
}
@media (max-width: 1199px) {
  .footer-1 .footer-wrapper {
    padding-bottom: 130px;
  }
}
@media only screen and (max-width: 992px) {
  .footer-1 .footer-wrapper {
    padding-bottom: 90px;
  }
}
.footer-1 .footer-wrapper .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 2%;
}
.footer-1 .footer-wrapper .footer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 40%;
}

.footer-2 {
  background-color: var(--cp-color-heading-primary);
  position: relative;
}

.footer-wrapper-2 {
  background-color: #003d06;
  padding: 70px 70px 0;
  margin: 24px 0;
  border-radius: 12px;
}
@media only screen and (max-width: 992px) {
  .footer-wrapper-2 {
    padding: 50px 30px 0;
  }
}
.footer-wrapper-2 .footer-widget .footer-list-wrap {
  display: flex;
  justify-content: start;
  gap: 48px;
}

.footer-top {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-top .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.footer-top .bg-img::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 34, 26, 0.4) 0%, rgb(16, 85, 31) 100%);
}
.footer-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  padding: 100px 0;
}
@media only screen and (max-width: 992px) {
  .footer-top {
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 30px;
  }
}
.footer-top .footer-title {
  color: var(--cp-color-common-white);
  font-weight: 600;
  font-size: 52px;
  line-height: 115%;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-title {
    font-size: 38px;
  }
}

.footer-top-3 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-top-3 .footer-content {
  padding-top: 100px;
}
.footer-top-3 .footer-content .title {
  font-weight: 600;
  font-size: 52px;
  line-height: 115%;
  color: var(--cp-color-common-white);
}
@media (max-width: 1199px) {
  .footer-top-3 .footer-content .title {
    font-size: 42px;
  }
}
.footer-top-3 .footer-image {
  width: 948px;
  height: 476px;
}
@media (max-width: 1199px) {
  .footer-top-3 .footer-image {
    width: 100%;
  }
}
.footer-top-3 .footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-top-2 {
  margin-top: 24px;
}
.footer-top-2 .footer-content {
  background-color: var(--cp-color-theme-secondary);
  padding: 48px 68px;
  border-radius: 12px;
}
@media (max-width: 1199px) {
  .footer-top-2 .footer-content {
    padding: 48px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top-2 .footer-content {
    padding: 20px;
  }
}
.footer-top-2 .footer-content .title {
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .footer-top-2 .footer-content .title {
    width: 100%;
    font-size: 30px;
  }
}
.footer-top-2 .footer-content.style-2 {
  background-color: var(--cp-color-common-white);
}

.footer-3 {
  background-color: var(--cp-color-heading-primary);
  position: relative;
}
.footer-3::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  left: 50.6%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .footer-3::after {
    display: none;
  }
}
.footer-3 .copyright-num {
  font-weight: 400 !important;
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  white-space: nowrap;
}
.footer-3 .copyright-num a {
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 400 !important;
  text-decoration-skip-ink: none;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col-1 {
  margin-left: 35px;
}
@media only screen and (max-width: 992px) {
  .footer-col-1 {
    margin-left: 0;
  }
}

.footer-col-2 {
  margin-left: 95px;
}
@media (max-width: 1399px) {
  .footer-col-2 {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 992px) {
  .footer-col-2 {
    margin-left: 0;
  }
}

.footer-col-3 {
  margin-left: 100px;
}
@media (max-width: 1399px) {
  .footer-col-3 {
    margin-left: 0;
  }
}

.footer-wrap {
  padding: 100px 0;
}
@media only screen and (max-width: 992px) {
  .footer-wrap {
    padding: 80px 0;
  }
}

.footer-widget .widget-header {
  margin-bottom: 20px;
}
.footer-widget .widget-header .footer-logo {
  max-width: 170px;
}
.footer-widget .widget-header .widget-title {
  color: var(--cp-color-common-white);
  font-weight: 600;
  font-size: 24px;
}
.footer-widget p {
  color: #b5cbc5;
  margin-top: 24px;
}
.footer-widget .title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 30px;
  text-transform: uppercase;
}
.footer-widget .title span {
  color: var(--cp-color-text-body);
  display: block;
  margin-top: 10px;
  text-transform: inherit;
  font-weight: 400;
}
.footer-widget .footer-list-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .footer-widget .footer-list-wrap {
    justify-content: start;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-widget .footer-list {
  list-style: none;
}
.footer-widget .footer-list li {
  display: flex;
  flex-direction: column;
}
.footer-widget .footer-list li a {
  font-weight: 400;
  color: #b5cbc5;
}
.footer-widget .footer-list li a:hover {
  color: var(--cp-color-common-white);
}
.footer-widget .footer-list li span {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 5px;
  display: block;
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 13px;
}
.footer-widget .footer-list.address-list li a {
  font-family: var(--cp-ff-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--cp-color-common-white);
}
.footer-widget .footer-list.address-list li p {
  font-family: var(--cp-ff-heading);
  margin-top: 0;
  color: var(--cp-color-common-white);
}
.footer-widget .social-list {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget .social-list li a {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cp-color-common-white);
}
.footer-widget .social-list li a:hover {
  background-color: var(--cp-color-theme-secondary);
  color: var(--cp-color-heading-primary);
}
.footer-widget .copyright-num {
  font-weight: 500;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  position: relative;
}
.copyright-area .copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.copyright-area .copyright-content p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}
.copyright-area .copyright-content p a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--cp-color-common-white);
}
.copyright-area .copyright-content .social-list {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.copyright-area .copyright-content .social-list li {
  font-family: var(--cp-ff-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--cp-color-common-white);
}
.copyright-area .copyright-content .social-list li a {
  color: #b5cbc5;
  font-size: 16px;
}
.copyright-area::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  left: auto;
  right: 39.8%;
}
@media (max-width: 1199px) {
  .copyright-area::after {
    display: none;
  }
}

.copyright-area-2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 92px;
}
.copyright-area-2 .copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 30px;
}
.copyright-area-2 .copyright-content p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}
.copyright-area-2 .copyright-content p a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--cp-color-common-white);
}
.copyright-area-2 .copyright-content .copyright-list li a {
  font-weight: 400;
  font-size: 16px;
  text-align: right;
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-wrap {
  margin-top: 32px;
}
.newsletter-wrap .newsletter-logo {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 200px;
  line-height: 0.76;
  text-transform: uppercase;
  margin-bottom: 0;
  color: var(--cp-color-common-white);
}
@media (max-width: 1399px) {
  .newsletter-wrap .newsletter-logo {
    font-size: 180px;
  }
}
@media (max-width: 1199px) {
  .newsletter-wrap .newsletter-logo {
    font-size: 150px;
  }
}
@media only screen and (max-width: 992px) {
  .newsletter-wrap .newsletter-logo {
    font-size: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .newsletter-wrap .newsletter-logo {
    font-size: 80px;
  }
}

.newsletter-form .title {
  font-weight: 600;
  font-size: 20px;
  color: var(--cp-color-common-white);
  margin-bottom: 16px;
}
.newsletter-form .news-form {
  position: relative;
}
.newsletter-form .news-form .form-control {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgb(22, 91, 37);
  color: var(--cp-color-common-white);
  padding-right: 60px;
}
.newsletter-form .news-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.newsletter-form .news-form .icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  width: 46px;
  height: 46px;
  background-color: var(--cp-color-theme-secondary);
  color: var(--cp-color-heading-primary);
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

/* !END: Theme Footer CSS */