/* Template Custom CSS */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Manrope", sans-serif;
  color: #f1f1f1;
  background: #121514;
}

.site {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
}
a {
  outline: none;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a,
button,
i {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #c8b49e;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
}
.container {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.section-title h2 {
  font-size: 42px;
  line-height: 52px;
  letter-spacing: -0.96px;
  font-weight: 600;
  margin-bottom: 15px;
}
.section-content p {
  color: #f1f1f1;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}
.pl-50 {
  padding-left: 50px;
}

/* Header CSS */
.header_wrapper_area.sticky-active {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  background: #363535;
  padding: 10px 0px 10px 0px;
}
.header_wrapper_area.sticky-active .menu-toggle {
  top: 28px;
}

.login-btn i {
  margin-right: 5px;
}
.login-btn {
  background: #c8b49e;
  color: #130101;
  border-radius: 30px;
  display: inline-block;
  padding: 13px 32px 13px 32px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  border: 1px solid transparent;
}
.login-btn:hover {
  border: 1px solid #c8b49e;
  background: transparent;
}
.header_right_btn {
  margin-left: 50px;
}

.header_wrapper_area {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 20px;
}
.header__area-menubar ul li {
  position: relative;
  display: inline-block;
  margin-right: 25px;
}
.header__area-menubar ul li.menu-item-has-children {
  margin-right: 45px;
}
.header__area-menubar ul li:last-child {
  margin-right: 0px;
}
.header__area-menubar ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #f1f1f1;
}
.header__area-menubar ul li.menu-item-has-children a {
  color: #fff;
}
.header__area-menubar ul li a:hover {
  color: #c8b49e;
}
.header_right {
  text-align: center;
}
.header_right ul li {
  display: inline-block;
}
.header__area-menubar {
  text-align: center;
}
.header__area-menubar ul li .sub-menu {
  position: absolute;
  background: #fff;
  min-width: 240px;
  transition: all 0.3s ease-out 0s;
  top: 120%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  border-top: 2px solid #c8b49e;
  z-index: 99;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-align: left;
  border-radius: 3px;
}
.header__area-menubar ul li:hover > .sub-menu {
  top: 180%;
  opacity: 1;
  visibility: visible;
}
.header__area-menubar ul li .sub-menu li {
  display: block;
  margin: 0;
  border-bottom: 1px solid #e7e7e7;
}
.header__area-menubar ul li:hover > .sub-menu li a:hover {
  color: #c8b49e;
}
.header__area-menubar .header__area-menubar-menu ul li .sub-menu li > a {
  padding: 10px 10px;
  color: #171717;
  display: inline-block;
}
.header__area-menubar ul li.menu-item-has-children > a::before {
  position: absolute;
  content: "";
  top: 5px;
  right: -25px;
  width: 20px;
  height: 20px;
  background-image: url("../img/menu-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.header_right_wrapper ul {
  display: flex;
  justify-content: end;
  gap: 20px;
}
/* Mobile Off-canvas styles */
.offcanvas-menu {
  position: fixed;
  top: 0;
  left: -350px;
  width: 300px;
  height: 100%;
  background: #050e26;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 9999;
}

.offcanvas-menu.active {
  left: 0;
}

.offcanvas-menu ul {
  list-style: none;
  padding: 0;
}

.offcanvas-menu ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.offcanvas-menu .close-btn {
  text-align: right;
  margin-bottom: 20px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Toggle button */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  top: 17px;
  right: 20px;
}
.menu-toggle span {
  width: 30px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
  z-index: 99;
  margin-bottom: 5px;
}
.offcanvas-logo a img {
  position: absolute;
  top: 20px;
  max-width: 140px;
  left: 10px;
}
.offcanvas-nav-menu {
  margin-top: 45px;
}
.offcanvas-menu ul li a:hover {
  color: #b5a28e;
}
.offcanvas-nav-menu li {
  position: relative;
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu {
  display: none;
  background: #fff;
  padding: 8px;
  border-radius: 3px;
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu li a {
  padding: 10px 10px;
  color: #000;
}
.offcanvas-button .header_right {
  display: block;
  text-align: left;
  margin-top: 30px;
}
.offcanvas-button .header_right .user_register:hover {
  color: #171717 !important;
}
.offcanvas-button {
  margin-top: 35px;
}
.offcanvas-button .header_right_btn:hover {
  color: #fff;
}
.offcanvas-menu .offcanvas-nav-menu li.menu-item-has-children > span::before {
  content: "";
  position: absolute;
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url("../img/menu-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  cursor: pointer;
  top: 15px;
}
.offcanvas-menu .offcanvas-nav-menu li.menu-item-has-children .sub-menu {
  display: none;
  background: #fff;
  padding: 8px;
  border-radius: 3px;
}
.offcanvas-menu .offcanvas-nav-menu li.menu-item-has-children .sub-menu li > a {
  padding: 10px 10px;
  color: #000;
}
.offcanvas-menu
  .offcanvas-nav-menu
  li.menu-item-has-children
  .sub-menu
  li
  > a:hover {
  color: #b5a28e;
}
.offcanvas-meta ul {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.offcanvas-btn {
  margin-top: 30px;
}

/* Hero Banner CSS */
.hero-banner {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* padding: 260px 0px 145px 0px; */
}
.hero-banner {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
}

.hero-banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-banner .container {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-banner-content h5 {
  color: #fff;
  letter-spacing: -0.16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 20px;
}
.hero-banner-content h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 65px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-bottom: 40px;
}
.hero-btn a {
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    rgb(43, 169, 126) 0%,
    rgb(132, 149, 43) 110.91%
  );
  padding: 14px 26px 14px 30px;
  display: inline-block;
  letter-spacing: -0.18px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: 0.3s;
}
.hero-btn a i {
  font-size: 14px;
  margin-left: 7px;
  transform: rotate(-50deg);
  transition: 0.3s;
}
.hero-btn a:hover i {
  transform: rotate(0deg);
}
.hero-btn a:hover {
  background: linear-gradient(
    90deg,
    rgb(132, 149, 43) 0%,
    rgb(43, 169, 126) 110.91%
  );
}
.hero-banner-product-thumb img {
  position: absolute;
  bottom: 0;
  right: 14%;
  left: auto;
  object-position: left;
  object-fit: cover;
}

/* About Us Section */
.about-section-wrap {
  padding: 120px 0px 120px 0px;
}
.about-us-btn a {
  border-radius: 9999px;
  border: 1px solid #2ba97e;
  padding: 15px 25px 15px 30px;
  font-size: 18px;
  letter-spacing: -0.18px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 20px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
}
.about-us-btn a i {
  font-size: 14px;
  margin-left: 7px;
  transform: rotate(-50deg);
  transition: 0.3s;
}
.about-us-btn a:hover i {
  transform: rotate(0deg);
}
.about-content-box {
  border-radius: 10px;
  background: #5c6432;
  padding: 40px;
  margin-top: 50px;
}
.about-content-box p {
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
}
.about-user-content span {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
  margin-left: 10px;
}
.about-content-box p {
  border-top: 1px solid #c8b49e;
  padding-top: 15px;
}
.about-right-thumb {
  padding-left: 15px;
}
.about-right-thumb img {
  height: 41.5vw;
}
/* Capabilities CSS */

.capabilities-right-box h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 20px;
}
.capabilities-right-box p {
  position: relative;
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
.capabilities-left img {
  width: 100%;
}
.capabilities-bg {
  position: relative;
  padding: 50px 30px 50px 40px;
  z-index: 1;
}
.capabilities-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #5c6432 0%, #19201e 100%);
  z-index: -1;
  opacity: 0.5;
}
.capabilities-right-box p::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -30px;
  background: #c8b49e;
  height: 1px;
  width: 200px;
}
.capabilities-buttom {
  margin-top: -140px;
}
.capabilities-left {
  padding-right: 45px;
}
.capabilities-buttom {
  padding-right: 35px;
  position: relative;
  z-index: 1;
}
.capabilities-section-wrap {
  padding-bottom: 120px;
}

/* Service Slider CSS */
.service-slider-wrap {
  position: relative;
  z-index: 1;
  padding: 110px 0px 110px 0px;
}
.service-slider-wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  background: linear-gradient(
    180deg,
    #39584e -4.88%,
    rgba(85, 114, 46, 0.57) 145.77%
  );
  z-index: -1;
}
.service-slider-content h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -0.96px;
  margin-bottom: 15px;
}
.service-slider-content p {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
.service-slider-thumb img {
  border-radius: 10px 10px 0px 0px;
  width: 100%;
}
.service-slider-content-box {
  border-radius: 0px 0px 10px 10px;
  background: #1f332b;
  padding: 30px;
}
.service-slider-content-box p {
  margin-bottom: 0;
  color: #f1f1f1;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  min-height: 235px;
}
.service-slider-meta span {
  position: relative;
  color: #c8b49e;
  font-size: 18px;
  letter-spacing: -0.18px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  border-left: 2px solid #c8b49e;
  padding-left: 8px;
}
.service-slider-content {
  margin-bottom: 45px;
}
.slick-initialized .slick-slide {
  margin: 0 15px 0 0;
}

.service-pagination-next.service_nav_next {
  border-radius: 20px;
  background: #c8b49e;
  width: 40px;
  height: 40px;
  border: none;
  color: rgba(19, 1, 1, 1);
  font-size: 18px;
  transition: 0.3s;
  border: 1px solid transparent;
}
.service-pagination-next.service_nav_next:hover {
  background: transparent;
  color: #c8b49e;
  border: 1px solid #c8b49e;
}
.service-slider-pagination-wrap {
  gap: 15px;
}
.service-pagination-prev.service_nav_prev {
  border-radius: 20px;
  border: 1px solid #c8b49e;
  color: #c8b49e;
  width: 40px;
  height: 40px;
  background: transparent;
  transition: 0.3s;
}
.service-pagination-prev.service_nav_prev:hover {
  background: #c8b49e;
  color: rgba(19, 1, 1, 1);
  border: 1px solid transparent;
}
.service-slider-active .slick-list.draggable {
  overflow: hidden;
  margin-right: -300px;
}

/* Design Process CSS */
.design-process-section-wrap {
  padding: 120px 0px 165px 0px;
}
.design-process-box {
  border-radius: 5px;
  background: linear-gradient(270deg, #39594e 0%, #4d552d 133.44%);
  padding: 25px 30px 25px 70px;
  gap: 25px;
  margin-bottom: 15px;
}
.design-process-content h4 {
  color: #c8b49e;
  letter-spacing: -0.18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 5px;
}
.design-process-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0px;
}
.design-process-icon {
  flex: 0 0 auto;
}
.design-process-bottom-wrap {
  margin-top: 30px;
}
.design-process-box.process-second-box {
  background: #83816e;
  padding: 25px 30px 25px 30px;
}
.design-process-box.process-second-box h4 {
  color: #f1f1f1;
}
.design-process-box.process-third-box {
  padding: 25px 30px 25px 30px;
}
.design-process-right-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 30px;
  padding-top: 20px;
  position: relative;
  margin-top: 45px;
}
.design-process-right-content p::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0px;
  background: #c8b49e;
  height: 1px;
  width: 200px;
}
.theme-primary-btn a {
  border-radius: 50px;
  background: linear-gradient(90deg, #2ba97e 0%, #84952b 110.91%);
  padding: 14px 26px 14px 30px;
  display: inline-block;
  letter-spacing: -0.18px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: 0.3s;
}
.theme-primary-btn a i {
  font-size: 14px;
  margin-left: 7px;
  transform: rotate(-50deg);
  transition: 0.3s;
}
.theme-primary-btn a:hover {
  background: linear-gradient(90deg, #84952b 0%, #2ba97e 110.91%);
}
.theme-primary-btn a:hover i {
  transform: rotate(0deg);
}
.design-process-right {
  padding-left: 40px;
}
.design-process-list-wrap {
  position: relative;
  padding-right: 40px;
}
.design-process-thumb img {
  height: 23.3vw;
  object-fit: cover;
  border-radius: 10px;
}
.design-process-list-wrap::after {
  position: absolute;
  content: "";
  right: -10px;
  background-image: url(../img/design-shape.svg);
  width: 1px;
  height: 100%;
  top: 0;
}
.design-process-list-wrap::after {
  position: absolute;
  content: "";
  right: -15px;
  background-image: url(../img/design-shape.svg);
  top: 0;
  background-position: center;
  background-size: cover;
  width: 6px;
  height: 100%;
}

/* Our Parthner CSS*/
.our-parthner-section {
  padding: 100px 0px 525px 0px;
  background-position: center;
  background-size: cover;
}
.marquee_slider .slick-slide {
  margin-right: 55px;
}
.marquee_slider {
  padding-top: 40px;
}

/* Sustainability CSS */
.sustainability-top-left-content h3 {
  color: #f1f1f1;
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
}
.sustainability-top-right-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
}
.sustainability-bg {
  border-radius: 10px;
  background: #83816e;
  padding: 50px 26px 40px 50px;
}
.sustainability-section-wrap .section-content p {
  margin-bottom: 45px;
}
.sustainability-item-content p {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0px;
}
.sustainability-olive-bg {
  border-radius: 10px;
  background: #5d6533;
}
.sustainability-item-icon img {
  margin-bottom: 40px;
}
.sustainability-item-box {
  padding: 50px 30px 50px 35px;
  border-radius: 10px;
  min-height: 415px;
}
.sustainability-item-content h4 {
  letter-spacing: -0.18px;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 5px;
}
.sustainability-gray-bg {
  background: #c8b49e;
}
.sustainability-gray-bg h4 {
  color: #130101;
}
.sustainability-gray-bg p {
  color: #130101;
}
.sustainability-blue-bg {
  background: #39594e;
}
.sustainability-boxs {
  margin-top: 20px;
}
.sustainability-item-content p::after {
  position: absolute;
  content: "";
  bottom: -16px;
  left: 0;
  background: #c8b49e;
  height: 1px;
  width: 100px;
}
.sustainability-gray-bg .sustainability-item-content p::after {
  background: #130101;
}
.sustainability-section-wrap {
  margin-top: -370px;
}
.sustainability-button a {
  border-radius: 50px;
  border: 1px solid #f1f1f1;
  padding: 14px 20px 14px 25px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.18px;
  font-family: "Poppins", sans-serif;
  margin-top: 35px;
  background: transparent;
}
.sustainability-button a:hover {
  border: 1px solid transparent;
  background: #c8b49e;
  color: #130101;
}
.sustainability-button a i {
  font-size: 14px;
  margin-left: 7px;
  transform: rotate(-50deg);
  transition: 0.3s;
}
.sustainability-button a:hover i {
  transform: rotate(0deg);
}

/* Client Section CSS */
.client-section-wrap {
  padding: 110px 0px 120px 0px;
}
.client-item-bg {
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 440px;
  border-radius: 10px;
}
.client-item-box {
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 30px;
}
.client-olive-bg {
  background: #5d6533;
}
.client-item-content span {
  color: #c8b49e;
  font-size: 16px;
  font-weight: 700;
}
.client-item-content p {
  color: #f1f1f1;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.14px;
  margin-bottom: 0;
}
.client-item-thumb {
  margin-right: 10px;
}
.client-item-author {
  margin-bottom: 30px;
}
.client-ol-content {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.client-review-icon {
  display: flex;
}
.client-review-icon ul li {
  display: inline-block;
  color: rgba(250, 188, 5, 1);
  margin-right: 4px;
  transform: translateY(3px);
}
.client-review-icon ul li:last-child {
  margin-right: 0px;
}
.client-review-icon span {
  color: #f1f1f1;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  margin-right: 10px;
}
.client-review-content p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}
.client-review-wrap {
  margin-top: 25px;
}
.client-review-thumb img {
  margin-right: 10px;
  transform: translateY(3px);
}
.client-blue-bg {
  background: #39594e;
}
.client-blue-bg .client-item-content span {
  color: #fff;
}
.client-item-content p {
  color: #c8b49e;
}
.client-gray-bg {
  background: #b5a28e;
  min-height: 405px;
}
.client-gray-bg .client-item-content span {
  color: #130101;
}
.client-gray-bg .client-item-content p {
  color: #545454;
}
.client-gray-bg .client-ol-content {
  color: #130101;
}
.client-gray-bg .client-review-icon span {
  color: #130101;
}
.client-gray-bg .client-review-content p {
  color: #545454;
}
.client-section-box-wrap {
  margin-top: 20px;
}
.client-button-btn a {
  position: relative;
  border-radius: 50px;
  background: linear-gradient(90deg, #2ba97e 0%, #84952b 110.91%);
  padding: 16px 22px 16px 27px;
  letter-spacing: -0.18px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  margin-top: 10px;
  display: inline-block;
}
.client-button-btn a::after {
  position: absolute;
  content: "";
  left: -7px;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #39594e -57.87%, #7abfa7 100%);
  border-radius: 50px;
  z-index: -1;
  transition: 0.3s;
}
.client-button-btn a:hover {
  background: linear-gradient(90deg, #84952b 0%, #2ba97e 110.91%);
  transition: 0.3s;
}
.client-button-btn a:hover::after {
  left: auto;
  right: -7px;
}
.client-button-btn a i {
  font-size: 14px;
  margin-left: 7px;
  transform: rotate(-50deg);
  transition: 0.3s;
}
.client-button-btn a:hover i {
  transform: rotate(0deg);
}
/* CTA Section CSS */
.cta-bg-thumb-content {
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  padding: 115px 40px 115px 50px;
}
.cta-bg-thumb-content h3 {
  font-size: 32px;
  color: #f1f1f1;
  letter-spacing: -0.32px;
  font-weight: 600;
  margin-bottom: 25px;
}
.cta-bg-thumb-content p {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 30px;
}
.cta-bg-thumb-content .client-button-btn a::after {
  display: none;
}
.cta-section-wrap {
  padding-bottom: 90px;
}
.cta-medile-bg img {
  height: 24.5vw;
}
.cta-counter-gray {
  background: #c8b49e;
}
.cta-counter-olive {
  background: #5d6533;
}
.cta-counter-item {
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  padding-bottom: 60px;
}
.cta-counter-item h3 {
  color: #130101;
  font-size: 65px;
  font-weight: 600;
  line-height: 1.3;
}
.cta-counter-item p {
  color: #130101;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 0;
  margin-top: 20px;
}
.cta-counter-olive h3 {
  color: #f1f1f1;
}
.cta-counter-olive p {
  color: #f1f1f1;
}

/* Contact Us CSS */
.contact-us-section-wrap {
  padding-bottom: 100px;
}
.row.form-bg {
  background: #39594e;
  border-radius: 10px;
  padding: 45px 55px 45px 55px;
}
.contact-form-input input {
  width: 100%;
  height: 60px;
  border-radius: 6px;
  border: none;
  padding: 0px 20px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  background: #999e7d;
}
.contact-form-input input::placeholder {
  color: #000;
  opacity: 1;
}
.contact-form-input input:focus-visible {
  outline: none;
}
.contact-form-textarea textarea:focus-visible {
  outline: none;
}
.contact-form-textarea textarea {
  width: 100%;
  height: 140px;
  border-radius: 6px;
  border: none;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 600;
  background: #999e7d;
  resize: none;
}
.contact-form-textarea textarea::placeholder {
  color: #000;
  opacity: 1;
}
.contact-form-submit-btn {
  text-align: center;
}
.contact-form-submit-btn button {
  position: relative;
  border-radius: 50px;
  background: linear-gradient(90deg, #2ba97e 0%, #84952b 110.91%);
  padding: 16px 30px 16px 35px;
  letter-spacing: -0.18px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  margin-top: 10px;
  display: inline-block;
  border: none;
  margin-top: 30px;
}
.contact-form-submit-btn button i {
  margin-left: 8px;
  font-size: 14px;
  transform: rotate(-50deg);
  transition: 0.3s;
}
.contact-form-submit-btn button:hover i {
  transform: rotate(0deg);
}

/* Footer CSS */
.footer-section-wrap {
  padding: 10px 0px 110px 0px;
}
.footer-social ul {
  display: flex;
  gap: 22px;
}
.footer-social ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid #797979;
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  line-height: 40px;
  color: #797979;
  font-size: 20px;
  background: transparent;
}
.footer-social ul li a:hover {
  background: #b5a28e;
  border: 1px solid transparent;
  color: #000;
}
.footer-logo a img {
  margin-bottom: 50px;
}
.footer-widget-title h3 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.18px;
  color: #fff;
  margin-bottom: 35px;
}
.footer-nav nav {
  background: none !important;
}
.footer-nav ul.navbar-nav {
  flex-direction: column !important;
  gap: 20px;
  padding-left: 10px;
}
.footer-nav ul.navbar-nav li a {
  color: #f1f1f1;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  padding: 0px !important;
}
.footer-nav ul.navbar-nav li a:hover {
  color: #c8b49e;
}
.footer-nav ul.navbar-nav li a.dropdown-toggle.show {
  color: #f1f1f1;
}
.footer-nav ul.navbar-nav li ul.dropdown-menu li a {
  color: #130101;
}
.footer-nav ul.navbar-nav li ul.dropdown-menu li a:hover {
  color: #c8b49e;
}
.footer-nav ul.navbar-nav li ul.dropdown-menu li {
  margin-bottom: 15px;
}
.footer-nav ul.navbar-nav li ul.dropdown-menu li:last-child {
  margin-bottom: 0px;
}
.footer-nav ul.navbar-nav li ul.dropdown-menu {
  padding: 15px 20px;
}

.footer-info-list ul li a {
  letter-spacing: -0.16px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}
.footer-info-list ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer-info-list ul li a img {
  margin-right: 8px;
}

/* Footer Copy right Css */

.footer-copy-right {
  background: #191919;
  padding: 18px 0px;
}
.copy-right-content p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}
