/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --dropbe-font: "Myriad Pro", sans-serif;
  --dropbe-heading-font: "Myriad Pro", serif;
  --dropbe-heading-font2: "Urbanist", sans-serif;
  --dropbe-special-font:"DM Sans", sans-serif;
  --dropbe-text: #0e0502;
  --dropbe-text-rgb: 14, 5, 2;
  --dropbe-text-dark: #0E0B06;
  --dropbe-text-dark-rgb: 14, 11, 6;
  --dropbe-base: #ffb336;
  --dropbe-base-rgb: 255, 179, 54;
  --dropbe-primary: #e26d47;
  --dropbe-primary-rgb: 226, 109, 71;
  --dropbe-gray: #f5e2c6;
  --dropbe-gray-rgb: 245, 226, 198;
  --dropbe-gray2: #efd5b0;
  --dropbe-gray2-rgb: 239, 213, 176;
  --dropbe-hero: #f4d3a2;
  --dropbe-hero-rgb: 244, 211, 162;
  --dropbe-white: #fff;
  --dropbe-white-rgb: 255, 255, 255;
  --dropbe-black: #302a1f;
  --dropbe-black-rgb: 48, 42, 31;
  --dropbe-black2: #c9c9c9;
  --dropbe-black2-rgb: 201, 201, 201;
  --dropbe-black3: #000;
  --dropbe-black3-rgb: 0, 0, 0;
  --dropbe-border-color: #d7d3c0;
  --dropbe-border-color-rgb: 215, 211, 192;
  --dropbe-bg-gray: #fff3e7;
  --dropbe-text-gray-rgb: 255, 243, 231;
  --dropbe-letter-space: 0.1em;
  --dropbe-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.dropbe-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--dropbe-black, #302a1f);
  color: #fff;
  font-weight: 500;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  padding: 15px 42px;
  transition: 500ms;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1.25;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}
.dropbe-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 130%;
  height: 0%;
  margin: auto;
  transform: rotate(-45deg);
  background-color: var(--dropbe-primary, #e26d47);
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.dropbe-btn span {
  position: relative;
  color: inherit;
  z-index: 2;
}
.dropbe-btn:hover {
  color: var(--dropbe-white, #fff);
}
.dropbe-btn:hover::before {
  height: 550%;
}
.dropbe-btn--black:hover {
  color: var(--dropbe-white, #fff);
}
.dropbe-btn--black::before {
  background-color: var(--dropbe-black, #302a1f);
}
.dropbe-btn--base:hover {
  color: var(--dropbe-white, #fff);
}
.dropbe-btn--base::before {
  background-color: var(--dropbe-base, #ffb336);
}

/*** Section Title***/
.sec-title {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 46px;
  }
}
.sec-title__tagline {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-primary, #e26d47);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.167;
  margin-bottom: 13px;
}
.sec-title__title {
  margin: 0;
  font-size: 35px;
  margin-top: 5px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.091;
}
@media (min-width: 768px) {
  .sec-title__title {
    font-size: 55px;
    margin-top: -2px;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-size: 16px;
  line-height: 2.125;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--dropbe-base, #ffb336);
  transition: all 400ms ease;
}

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

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--dropbe-heading-font, "Myriad Pro", serif);
  color: var(--dropbe-black, #302a1f);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

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

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-40 {
  --bs-gutter-y: 40px;
}

.gutter-y-50 {
  --bs-gutter-y: 50px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.gutter-x-10 {
  --bs-gutter-x: 10px;
}

.gutter-x-15 {
  --bs-gutter-x: 15px;
}

.gutter-x-20 {
  --bs-gutter-x: 20px;
}

.gutter-x-30 {
  --bs-gutter-x: 30px;
}

.gutter-x-35 {
  --bs-gutter-x: 35px;
}

.gutter-x-40 {
  --bs-gutter-x: 40px;
}

.gutter-x-50 {
  --bs-gutter-x: 50px;
}

.gutter-x-60 {
  --bs-gutter-x: 60px;
}

.section-space {
  padding: 0;
  padding: 45px 0;
}
@media (max-width: 991px) {
  .section-space {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .section-space {
    padding: 80px 0;
  }
}

.section-space-top {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .section-space-top {
    padding-top: 80px;
  }
}

.section-space-bottom {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

/*****Tab Style******/
.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--dropbe-base, #ffb336);
}

/*****Tiny slider button customize******/
.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dropbe-text, #0e0502);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

/*****Block Title Style******/
.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}
.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.png);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}
.block-title p {
  margin: 0;
  color: var(--dropbe-text, #0e0502);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--dropbe-black, #302a1f);
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
}
@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dropbe-black, #302a1f);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--dropbe-base, #ffb336);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--dropbe-black, #302a1f);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--dropbe-base, #ffb336);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dropbe-black, #302a1f);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* post paginations */
/* post paginations */
.post-pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}
.post-pagination .previous,
.post-pagination .next {
  width: auto;
  height: auto;
  padding: 7px 30px;
}
.post-pagination .previous:hover,
.post-pagination .next:hover {
  background-color: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
}
.post-pagination a {
  padding: 7px 13px;
  display: inline-block;
  background-color: transparent;
  color: var(--dropbe-text, #0e0502);
  text-transform: capitalize;
  border: 1px solid #e5e1db;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-primary, #e26d47);
  line-height: 1.875;
}
.post-pagination a .post-pagination__icon {
  font-size: 14.77px;
  color: var(--dropbe-text, #0e0502);
  transition: all 400ms ease;
}
.post-pagination a:hover {
  border-color: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
  background-color: var(--dropbe-primary, #e26d47);
}
.post-pagination li.active a {
  background-color: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
}
.post-pagination--two .previous,
.post-pagination--two .next {
  padding: 9px 14px;
  border-radius: 0;
}
.post-pagination--two .previous:hover,
.post-pagination--two .next:hover {
  background-color: var(--dropbe-base, #ffb336);
  color: var(--dropbe-text, #0e0502);
}
.post-pagination--two a {
  padding: 9px 13px;
  border: 1px solid #e1e1e1;
  border-radius: 20px;
  background-color: var(--dropbe-white, #fff);
  color: var(--dropbe-text, #0e0502);
}
.post-pagination--two a:hover {
  background-color: var(--dropbe-base, #ffb336);
  color: var(--dropbe-text, #0e0502);
  border-color: var(--dropbe-base, #ffb336);
}
.post-pagination--two li.active a {
  background-color: var(--dropbe-base, #ffb336);
  color: var(--dropbe-text, #0e0502);
}

/*****Owl Carousel customize******/
.dropbe-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.dropbe-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.dropbe-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.dropbe-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.dropbe-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}
.dropbe-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: var(--dropbe-gray, #f5e2c6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dropbe-text, #0e0502);
  border-radius: 50%;
  font-size: 14px;
  color: var(--dropbe-text, #0e0502);
  transition: all 500ms ease;
}
.dropbe-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
  background-color: var(--dropbe-black, #302a1f);
  color: var(--dropbe-white, #fff);
}
.dropbe-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
.dropbe-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: var(--dropbe-black, #302a1f);
  border: 2px solid var(--dropbe-white, #fff);
  box-shadow: 0 0 1px rgba(var(--dropbe-black-rgb, 48, 42, 31), 1);
  margin: 0;
}
.dropbe-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .dropbe-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--dropbe-black, #302a1f);
  border: 2px solid var(--dropbe-black, #302a1f);
  box-shadow: 0 0 1px rgba(var(--dropbe-black-rgb, 48, 42, 31), 1);
}
.dropbe-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 60px;
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--dropbe-black, #302a1f);
  color: var(--dropbe-white, #fff);
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--dropbe-gray, #f5e2c6);
  background-image: none;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  color: var(--dropbe-text, #0e0502);
}
.ui-datepicker-calendar td a {
  border-color: var(--dropbe-border-color, #d7d3c0);
  background-color: var(--dropbe-gray, #f5e2c6);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--dropbe-border-color, #d7d3c0);
  background-color: var(--dropbe-gray, #f5e2c6);
  background-image: none;
  color: var(--dropbe-text, #0e0502);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--dropbe-white, #fff);
  background-color: var(--dropbe-base, #ffb336);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--dropbe-white, #fff);
  background-color: var(--dropbe-base, #ffb336);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--dropbe-white, #fff);
  color: var(--dropbe-black, #302a1f);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--dropbe-base, #ffb336);
  color: var(--dropbe-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
  background-color: var(--dropbe-black, #302a1f);
  padding: 100px 0;
}
.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dropbe-black, #302a1f);
  background-size: cover;
  background-position: center center;
  opacity: 0.5;
}
.video-one .container {
  position: relative;
  text-align: center;
}
.video-one__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}
.video-one__btn .video-popup {
  font-size: 24px;
  color: var(--dropbe-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-one__btn .video-popup:hover {
  color: var(--dropbe-base, #ffb336);
}
.video-one__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-one__btn .curved-circle--item {
  width: 145px;
}
.video-one__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--dropbe-white, #fff);
  letter-spacing: 0.4em;
}
.video-one__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--dropbe-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .video-one__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-one__title {
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 35px;
  }
}
.video-one__link::before {
  background-color: var(--dropbe-base, #ffb336);
}

.video-two {
  position: relative;
  background-color: var(--dropbe-black, #302a1f);
  padding: 143px 0 320px;
}
@media (max-width: 767px) {
  .video-two {
    padding: 100px 0 270px;
  }
  .video-two .text-end {
    text-align: left !important;
  }
}
.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dropbe-black, #302a1f);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.video-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1199px) {
  .video-two__shape {
    display: none;
  }
}
.video-two .container {
  position: relative;
}
.video-two__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  margin-top: 42px;
}
.video-two__btn .video-popup {
  font-size: 24px;
  color: var(--dropbe-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-two__btn .video-popup:hover {
  color: var(--dropbe-base, #ffb336);
}
.video-two__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-two__btn .curved-circle--item {
  width: 145px !important;
  height: 145px !important;
}
.video-two__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--dropbe-white, #fff);
  letter-spacing: 0.4em;
}
.video-two__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--dropbe-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .video-two__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-two__title {
    font-size: 60px;
    margin-bottom: 35px;
  }
}
.video-two__link::before {
  background-color: var(--dropbe-base, #ffb336);
}

.team-card__image {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}
.team-card__image img {
  border-radius: 20px;
  position: relative;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.team-card__image::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(var(--dropbe-text-rgb, 14, 5, 2), 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.team-card__content {
  margin-top: -34px;
  z-index: 1;
  position: relative;
  z-index: 1;
  background-color: #775d54;
  border-radius: 35px 0 0 35px;
  padding: 34px 20px 34px 30px;
  margin-left: 50px;
}
.team-card__content::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/shapes/team-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 35px 0 0 35px;
}
.team-card__content::before {
  content: "";
  width: calc(100% + 3px);
  height: 100%;
  background-color: var(--dropbe-white, #fff);
  position: absolute;
  border-radius: 35px 0 0 35px;
  top: 0;
  transform: translate(-3px, -3px);
  left: 0;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .team-card__content {
    margin-left: 20px;
    padding: 30px 10px 20px 20px;
  }
}
.team-card__title {
  font-size: 24px;
  font-family: var(--dropbe-heading-font, "Myriad Pro", serif);
  color: var(--dropbe-white, #fff);
  font-weight: bold;
  line-height: 1.583;
  text-align: left;
  margin: 0;
  text-transform: capitalize;
  margin-bottom: 3px;
}
.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__title a:hover {
  background-size: 100% 1px;
}
.team-card__title a:hover {
  color: var(--dropbe-text, #0e0502);
}
.team-card__designation {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #faedd7;
  line-height: 1.375;
  text-transform: capitalize;
  margin: 0;
}
.team-card__social {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
}
.team-card__social a {
  max-width: 36px;
  width: 100%;
  height: 36px;
  border-radius: 50%;
  background-color: var(--dropbe-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dropbe-text, #0e0502);
  transition: all 0.4s ease-in-out;
}
.team-card__social a:hover {
  background-color: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
}
.team-card:hover .team-card__image img {
  transform: scale(1.1);
}
.team-card:hover .team-card__image::after {
  visibility: visible;
  opacity: 1;
}
.team-card:hover .team-card__content::before {
  background-color: var(--dropbe-primary, #e26d47);
}

.team-one {
  background-color: var(--dropbe-white, #fff);
  position: relative;
  z-index: 1;
}
.team-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.team-one {
  position: relative;
  z-index: 1;
}
.team-one__top {
  padding-bottom: 57px;
}
.team-one__top .sec-title {
  padding-bottom: 0;
}
.team-one__top .sec-title .sec-title__title {
  margin-bottom: -8px;
}
.team-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.team-one__item {
  position: relative;
  z-index: 1;
}
.team-one__item__image {
  padding: 45px 45px 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1199px) and (min-width: 991px), (max-width: 767px) {
  .team-one__item__image {
    padding: 20px 20px 10px;
  }
}
.team-one__item__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}
.team-one__item__image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--dropbe-primary, #e26d47);
  border-radius: 29px;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.team-one__item__content {
  margin-top: -35px;
  z-index: 1;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  background-color: #ffeedc;
  border-radius: 0 50px 50px;
  border: 5px solid var(--dropbe-white, #fff);
  padding: 0px 20px 35px;
}
@media (max-width: 1199px) and (min-width: 991px), (max-width: 500px) {
  .team-one__item__content {
    padding: 0px 10px 20px;
  }
}
.team-one__item__icon {
  margin-top: -30px;
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dropbe-base, #ffb336);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.team-one__item__icon:hover {
  color: var(--dropbe-white, #fff);
  background-color: var(--dropbe-primary, #e26d47);
}
.team-one__item__hover {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: var(--dropbe-base, #ffb336);
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%) rotateY(-90deg);
  transition: all 0.5s ease-in-out;
}
.team-one__item__hover::after {
  content: "";
  width: 20px;
  height: 15px;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translate(-50%);
  background-color: var(--dropbe-base, #ffb336);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.team-one__item__hover a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--dropbe-white, #fff);
  font-size: 13px;
}
.team-one__item__hover a:hover {
  background-color: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
}
.team-one__item__icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.team-one__item__icon-box:hover .team-one__item__hover {
  transform: translateX(-50%) rotateY(0deg);
}
.team-one__item__title {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.583;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: -8px;
}
.team-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-one__item__title a:hover {
  background-size: 100% 1px;
}
.team-one__item__title a:hover {
  color: var(--dropbe-primary, #e26d47);
}
.team-one__item__text {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #7d7775;
  line-height: 2.375;
  text-align: center;
  margin-bottom: -15px;
}
.team-one__item__shape {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team-one__item__shape img {
  animation: xTranslate 2s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 1199px) and (min-width: 991px), (max-width: 500px) {
  .team-one__item__shape {
    display: none;
  }
}
.team-one__item:hover .team-one__item__image::after {
  background-color: var(--dropbe-base, #ffb336);
}
.team-one__inner {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .team-one__inner {
    margin-top: 10px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
  }
}
.team-one__inner__title {
  margin: 0;
  font-size: 50px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.24;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .team-one__inner__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .team-one__inner__title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .team-one__inner__title {
    font-size: 30px;
  }
}
.team-one__inner__btn .dropbe-btn {
  max-width: 95px;
  width: 100%;
  height: 95px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  color: var(--dropbe-white, #fff);
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  background-color: var(--dropbe-primary, #e26d47);
}
.team-one__inner__btn .dropbe-btn::before {
  background-color: var(--dropbe-base, #ffb336);
}
.team-one__inner__left + .team-one__inner__right {
  position: relative;
  z-index: 1;
}
.team-one__inner__left + .team-one__inner__right::after {
  content: "";
  width: 145px;
  height: 4px;
  position: absolute;
  left: -160px;
  top: 50%;
  transform: translateY(-50%);
  background: -moz-linear-gradient(180deg, rgb(253, 251, 246) 0%, rgb(226, 109, 71) 48%, rgb(226, 109, 71) 100%);
  background: -webkit-linear-gradient(180deg, rgb(253, 251, 246) 0%, rgb(226, 109, 71) 48%, rgb(226, 109, 71) 100%);
  background: -ms-linear-gradient(180deg, rgb(253, 251, 246) 0%, rgb(226, 109, 71) 48%, rgb(226, 109, 71) 100%);
}
@media (max-width: 991px) {
  .team-one__inner__left + .team-one__inner__right::after {
    display: none;
  }
}
.team-one__btn .dropbe-btn {
  max-width: 95px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  height: 95px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  color: var(--dropbe-white, #fff);
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  background-color: var(--dropbe-primary, #e26d47);
}
.team-one__btn .dropbe-btn::before {
  background-color: var(--dropbe-base, #ffb336);
}

/**** Blog Card One*****/
.blog-card {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background-color: var(--dropbe-white, #fff);
  padding: 30px;
  border: 1px solid rgb(229, 227, 224);
  box-shadow: 0px 0px 35px 0px rgba(209, 210, 212, 0.35);
}
@media (max-width: 1199px) {
  .blog-card {
    padding: 15px;
  }
}
.blog-card__image {
  position: relative;
  overflow: hidden;
  margin: 0 0 30px;
}
.blog-card__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
  border-radius: 5px;
}
.blog-card__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  visibility: hidden;
  height: 100%;
  width: 0;
  transition: 1s;
  overflow: hidden;
}
.blog-card__image__link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: var(--dropbe-primary, #e26d47);
  font-size: 18px;
  position: absolute;
  top: 25px;
  left: 20px;
}
.blog-card__image__link:hover {
  color: var(--dropbe-white, #fff);
}
.blog-card__image__link::before {
  background-color: var(--dropbe-base, #ffb336);
}
.blog-card__tag {
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-white, #fff);
  line-height: 1.3;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--dropbe-text, #0e0502);
  border-radius: 50px 50px 50px 0px;
  padding: 5px 15px;
  text-transform: capitalize;
}
.blog-card__content {
  position: relative;
}
.blog-card__content__inner {
  padding-left: 60px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .blog-card__content__inner {
    padding-left: 40px;
  }
}
.blog-card__content__date {
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  line-height: 1.467;
  -moz-transform: matrix(0, -1, 1, 0, 0, 0);
  -webkit-transform: matrix(0, -1, 1, 0, 0, 0);
  -ms-transform: matrix(0, -1, 1, 0, 0, 0);
  position: absolute;
  left: -42px;
  bottom: 55px;
  text-transform: capitalize;
  padding: 5px 15px;
  background-color: var(--dropbe-base, #ffb336);
  border-radius: 50px 0px 50px 50px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
  margin-left: 0;
}
.blog-card__meta li a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 1.208;
  text-transform: capitalize;
  font-weight: 600;
}
.blog-card__meta li a i {
  margin-right: 5px;
}
.blog-card__title {
  font-size: 20px;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.4;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 12px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .blog-card__title {
    font-size: 17px;
  }
}
.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__title a:hover {
  background-size: 100% 1px;
}
.blog-card__title a:hover {
  color: var(--dropbe-primary, #e26d47);
}
.blog-card__link {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.75;
  text-transform: capitalize;
}
.blog-card__link:hover {
  color: var(--dropbe-primary, #e26d47);
}
.blog-card:hover .blog-card__image img:nth-child(2) {
  width: 100%;
  visibility: visible;
}

/**** Blog List*****/
.blog-card-list {
  position: relative;
  z-index: 1;
  background-color: var(--dropbe-gray2, #efd5b0);
}
.blog-card-list__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  mix-blend-mode: overlay;
  z-index: -3;
}
.blog-card-list__image {
  position: relative;
  overflow: hidden;
  margin: 0 0 0px;
}
.blog-card-list__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
  border-radius: 5px;
}
.blog-card-list__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  visibility: hidden;
  height: 100%;
  width: 0;
  transition: 1s;
  overflow: hidden;
}
.blog-card-list__content {
  padding: 0px 30px 30px;
}
.blog-card-list__title {
  font-size: 32px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.25;
  text-align: left;
  margin-bottom: 33px;
}
.blog-card-list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-list__title a:hover {
  background-size: 100% 1px;
}
.blog-card-list__title a:hover {
  color: var(--dropbe-primary, #e26d47);
}
.blog-card-list__meta {
  position: relative;
  margin-top: -20px;
  margin-bottom: 33px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card-list__meta li a {
  font-size: 14px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-white, #fff);
  text-transform: capitalize;
  padding: 7px 20px;
  border-radius: 50px;
  background-color: var(--dropbe-primary, #e26d47);
  transition: all 0.4s ease-in-out;
}
.blog-card-list__meta li a:hover {
  background-color: var(--dropbe-primary, #e26d47) !important;
}
.blog-card-list__meta li:first-child a {
  background-color: var(--dropbe-base, #ffb336);
}
.blog-card-list__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-card-list__btn .dropbe-btn {
  background-color: transparent;
  border: 2px solid var(--dropbe-primary, #e26d47);
  color: var(--dropbe-primary, #e26d47);
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
}
.blog-card-list__btn .dropbe-btn::before {
  background-color: var(--dropbe-primary, #e26d47);
}
.blog-card-list__btn .dropbe-btn:hover {
  color: var(--dropbe-white, #fff);
}
.blog-card-list__comment {
  color: var(--dropbe-black, #302a1f);
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
}
.blog-card-list__comment i {
  margin-right: 6px;
}
.blog-card-list:hover .blog-card-list__image img:nth-child(2) {
  width: 100%;
  visibility: visible;
}

/**** Blog One*****/
.blog-page,
.blog-one {
  position: relative;
  background-color: var(--dropbe-bg-gray, #fff3e7);
}
.blog-page--two .blog-card__title,
.blog-one--two .blog-card__title {
  font-size: 24px;
  font-weight: bold;
  text-transform: capitalize;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
}
.blog-page--two .blog-card__title a,
.blog-one--two .blog-card__title a {
  text-decoration: underline;
}
.blog-page--two .blog-card__content__date,
.blog-one--two .blog-card__content__date {
  bottom: 25px;
}
.blog-page .page__element-one,
.blog-one .page__element-one {
  position: absolute;
  bottom: -5%;
  left: 0;
}
.blog-page .page__element-two,
.blog-one .page__element-two {
  position: absolute;
  right: 0;
  bottom: -2%;
}
.blog-page .page__element-three,
.blog-one .page__element-three {
  position: absolute;
  top: 0;
  right: 0;
}
.blog-page .page__element-four,
.blog-one .page__element-four {
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
}
.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none !important;
  color: var(--dropbe-text, #0e0502);
  font-size: 14px;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 58px;
  background-color: var(--dropbe-gray, #f5e2c6);
  color: var(--dropbe-text, #0e0502);
  font-size: 14px;
  font-weight: 500;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}
.form-one textarea {
  height: 195px;
  padding-top: 20px;
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--dropbe-primary, #e26d47);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}
.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--dropbe-primary, #e26d47);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}
.custom-cursor__hover {
  background-color: var(--dropbe-primary, #e26d47);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  background-color: var(--dropbe-black2, #c9c9c9);
  z-index: 1;
  /*Element Animation*/
  /**Three Footer**/
}
.main-footer__top {
  padding-top: 110px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .main-footer__top {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .main-footer__top {
    padding-top: 70px;
    padding-bottom: 20px;
  }
}
.main-footer__element {
  position: absolute;
  top: 10%;
  left: 10%;
}
.main-footer__element img {
  animation: beeScale 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .main-footer__element {
    display: none;
  }
}
.main-footer__element-one {
  position: absolute;
  top: 8%;
  right: 1%;
}
.main-footer__element-one img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .main-footer__element-one {
    display: none;
  }
}
.main-footer__element-two {
  position: absolute;
  top: 0;
  right: 3%;
}
@media (max-width: 1199px) {
  .main-footer__element-two {
    display: none;
  }
}
.main-footer__element-three {
  position: absolute;
  bottom: 5%;
  left: 0;
}
@media (max-width: 1199px) {
  .main-footer__element-three {
    display: none;
  }
}
.main-footer__element-four {
  position: absolute;
  bottom: 15%;
  left: 20%;
}
.main-footer__element-four img {
  animation: rotate 6s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .main-footer__element-four {
    display: none;
  }
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-size: cover;
  background-position: center center;
}
.main-footer .container {
  position: relative;
}
.main-footer__bottom {
  text-align: center;
  position: relative;
  z-index: 1;
}
.main-footer__bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/shapes/footer-bottom-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.main-footer__bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid rgba(var(--dropbe-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 767px) {
  .main-footer__bottom__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.main-footer__bottom__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-footer__bottom__social span {
  font-size: 15px;
  color: var(--dropbe-white, #fff);
  line-height: 1.13;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  font-weight: 600;
}
.main-footer__bottom__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  color: var(--dropbe-text-dark, #0E0B06);
  font-size: 16px;
  background-color: var(--dropbe-white, #fff);
  transition: all 0.4s ease-in-out;
}
.main-footer__bottom__social a:hover {
  background-color: var(--dropbe-text-dark, #0E0B06);
  color: var(--dropbe-white, #fff);
}
.main-footer__copyright {
  font-size: 15px;
  color: var(--dropbe-white, #fff);
  line-height: 1.13;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  font-weight: 500;
  margin-bottom: 0;
  padding-bottom: 0;
}
.main-footer__copyright a {
  color: var(--dropbe-white, #fff);
}
.main-footer__copyright a:hover {
  color: var(--dropbe-text-dark, #0E0B06);
}
.main-footer--three .main-footer__content__title {
  margin: 0;
  font-size: 55px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0502;
  font-weight: bold;
  line-height: 1.091;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 31px;
}
@media (max-width: 991px) {
  .main-footer--three .main-footer__content__title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .main-footer--three .main-footer__content__title {
    font-size: 40px;
  }
  .main-footer--three .main-footer__content__title br {
    display: none;
  }
}
.main-footer--three .main-footer__content__text {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #72655c;
  line-height: 1.417;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .main-footer--three .main-footer__content__text {
    font-size: 20px;
  }
}
.main-footer--three .main-footer__content__btn {
  text-align: center;
}
.main-footer--three .main-footer__content__btn .dropbe-btn {
  background-color: var(--dropbe-primary, #e26d47);
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  padding: 20px 47px;
}
.main-footer--three .main-footer__content__btn .dropbe-btn::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.main-footer--three .main-footer__bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/shapes/footer-bg-3-2-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .main-footer--three .main-footer__top {
    padding-bottom: 60px;
  }
}

.footer-widget {
  margin-bottom: 40px;
}
.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 24px;
}
.footer-widget__title {
  font-weight: bold;
  text-transform: capitalize;
  margin: 0;
  margin-top: -5px;
  margin-bottom: 35px;
  font-size: 22px;
  color: var(--dropbe-text, #0e0502);
  line-height: 1.455;
}
.footer-widget__instagram {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
  align-items: start;
  justify-content: start;
}
.footer-widget__instagram a {
  position: relative;
  z-index: 1;
  border-radius: 3px;
}
.footer-widget__instagram a img {
  object-fit: cover;
  width: 100%;
  border-radius: 3px;
}
.footer-widget__instagram a::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "+";
  margin: auto;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 400;
  color: var(--dropbe-white, #fff);
  transform: scale(0);
  opacity: 0;
  transition: all 500ms ease;
  transition-delay: 0s;
  z-index: 2;
}
.footer-widget__instagram a::after {
  border-radius: 3px;
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--dropbe-black-rgb, 48, 42, 31), 0.7);
  transition: all 0.4s ease-in-out;
}
.footer-widget__instagram a:hover::after {
  height: 100%;
}
.footer-widget__instagram a:hover::before {
  transform: scale(1);
  transition-delay: 400ms;
  opacity: 1;
}
.footer-widget__links {
  margin-top: -10px;
  margin-bottom: -13px;
}
.footer-widget__links li {
  font-weight: 500;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #7e7b7a;
  line-height: 1.5;
  text-transform: capitalize;
  text-transform: capitalize;
}
.footer-widget__links li a {
  color: inherit;
}
.footer-widget__links li a:hover {
  color: var(--dropbe-black, #302a1f);
  text-shadow: 0 0 0.1px currentColor;
}
.footer-widget__links li a i {
  margin-right: 10px;
}
.footer-widget__links li + li {
  margin-top: 16px;
}
.footer-widget__text {
  max-width: 280px;
  font-size: 16px;
  color: rgb(126, 123, 122);
  line-height: 1.875;
  margin-bottom: 0;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
}
.footer-widget__text-two {
  margin-top: 14px;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  line-height: 1.75;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
  letter-spacing: -0.3px;
  font-weight: 500;
}
.footer-widget__newsletter {
  position: relative;
  width: 100%;
  max-width: 285px;
  background-color: var(--dropbe-white, #fff);
  border: 1px solid #efefee;
  border-radius: 3px;
}
.footer-widget__newsletter input[type=text] {
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  width: 100%;
  display: block;
  border-radius: 3px;
  border: none;
  outline: none;
  height: 60px;
  background-color: var(--dropbe-white, #fff);
  color: var(--dropbe-text-dark, #0E0B06);
  font-size: 14px;
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 500ms ease;
}
.footer-widget__newsletter input[type=text]:focus {
  color: var(--dropbe-white, #fff);
}
.footer-widget__newsletter input[type=text]::placeholder {
  font-size: 14px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  color: rgba(132, 132, 132, 0.702);
  line-height: 1.462;
}
.footer-widget__newsletter button[type=submit] {
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  background-color: var(--dropbe-primary, #e26d47);
  width: auto;
  height: 60px;
  padding-left: 22px;
  padding-right: 22px;
  border: none;
  border-radius: 3px;
  outline: none;
  color: var(--dropbe-white, #fff);
  text-transform: capitalize;
  font-size: 15px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.footer-widget__newsletter button[type=submit]:hover {
  color: var(--dropbe-white, #fff);
  background-color: var(--dropbe-text, #0e0502);
}

.footer-widget--newsletter {
  margin-left: -17px;
}
.footer-widget--newsletter .footer-widget__text {
  margin-top: -9px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .footer-widget--newsletter {
    margin-left: 0px;
  }
}
.footer-widget--gallery {
  margin-left: 27px;
  margin-right: 60px;
}
@media (max-width: 1199px) {
  .footer-widget--gallery {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.footer-widget--links {
  margin-left: 11px;
  margin-right: -5px;
}
@media (max-width: 1199px) {
  .footer-widget--links {
    margin-left: 0px;
    margin-right: 0px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  z-index: 1;
}
.contact-one__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.contact-one__content .sec-title {
  padding-bottom: 27px;
}
.contact-one__content .sec-title__title {
  margin: 0;
  font-size: 43px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.163;
  margin-bottom: 27px;
}
.contact-one__content .contact-one__text {
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(42, 40, 38, 0.8);
  line-height: 1.667;
  max-width: 380px;
  width: 100%;
}
.contact-one__form .form-one__group {
  grid-gap: 12px;
  margin-top: -19px;
  position: relative;
}
.contact-one__form .form-one__control__icon {
  right: 0;
  color: var(--dropbe-white, #fff);
}
.contact-one__form label {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #080501;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.contact-one__form input[type=text],
.contact-one__form input[type=email],
.contact-one__form input[type=tel],
.contact-one__form textarea {
  height: 60px;
  width: 100%;
  border: 1px solid #eaeaea;
  background-color: var(--dropbe-white, #fff);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--dropbe-text, #0e0502);
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  display: block;
  font-weight: 500;
}
.contact-one__form input[type=text]::placeholder,
.contact-one__form input[type=email]::placeholder,
.contact-one__form input[type=tel]::placeholder,
.contact-one__form textarea::placeholder {
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(8, 5, 1, 0.5019607843);
  line-height: 1.267;
  text-transform: capitalize;
}
.contact-one__form textarea {
  height: 175px;
}
.contact-one__form .dropbe-btn {
  margin-top: 10px;
  padding-left: 45px;
  padding-right: 45px;
  background-color: var(--dropbe-primary, #e26d47);
  border-radius: 5px;
}
.contact-one__form .dropbe-btn::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}

.contact-map {
  position: relative;
  z-index: 1;
}
.contact-map__content .sec-title {
  padding-bottom: 27px;
}
.contact-map__content .sec-title__title {
  margin: 0;
  font-size: 43px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.163;
  margin-bottom: 27px;
}
.contact-map__content .contact-map__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(42, 40, 38, 0.8);
  line-height: 1.667;
}
.contact-map__list {
  margin-bottom: 0;
}
.contact-map__list__item {
  display: flex;
  align-items: start;
  gap: 20px;
  padding-bottom: 45px;
}
.contact-map__list__item:hover .contact-map__list__icon {
  background-color: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
}
.contact-map__list__icon {
  max-width: 86px;
  width: 100%;
  height: 86px;
  border-radius: 50%;
  background-color: var(--dropbe-base, #ffb336);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dropbe-text-dark, #0E0B06);
  font-size: 45px;
  transition: all 0.4s ease-in-out;
}
.contact-map__list__title {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  text-transform: capitalize;
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.5;
}
.contact-map__list__location {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 1.75;
}
.contact-map__list__link {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #2a2826;
  line-height: normal;
  display: block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-map__list__link:hover {
  background-size: 100% 1px;
}
.contact-map__list__link:hover {
  color: var(--dropbe-primary, #e26d47);
}
.contact-map__list li + li {
  margin-top: 50px;
}
.contact-map .google-map__contact {
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  display: none;
  background-color: var(--dropbe-gray, #f5e2c6);
}
@media (min-width: 768px) {
  .topbar-one {
    display: block;
  }
}
.topbar-one .container-fluid {
  max-width: 1684px;
}
.topbar-one__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--dropbe-border-color, #d7d3c0);
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .topbar-one__inner {
    flex-direction: row;
  }
}
.topbar-one__info {
  display: flex;
  align-items: center;
  margin: 0;
}
.topbar-one__info__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.2em;
}
.topbar-one__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__info__item a:hover {
  background-size: 100% 1px;
}
.topbar-one__info__item + .topbar-one__info__item {
  margin-left: 20px;
}
.topbar-one__info__icon {
  font-size: 14px;
  color: var(--dropbe-base, #ffb336);
  position: relative;
  top: 2px;
  margin-right: 9px;
}
.topbar-one__right {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .topbar-one__right {
    margin-top: 0;
    margin-left: auto;
  }
}
.topbar-one__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.2em;
}
.topbar-one__social {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--dropbe-border-color, #d7d3c0);
  padding: 3.5px 0;
  padding-left: 30px;
  margin-left: 30px;
  line-height: 1em;
}
.topbar-one__social a {
  font-size: 14px;
  color: var(--dropbe-black, #302a1f);
  transition: all 500ms ease;
}
.topbar-one__social a:hover {
  color: var(--dropbe-base, #ffb336);
}
.topbar-one__social a + a {
  margin-left: 20px;
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product-three {
  position: relative;
  z-index: 1;
}
.product-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.product-three__carousel .owl-item img {
  display: flex;
  justify-content: center;
  width: auto;
}
.product-three__carousel .product__item__img {
  display: flex;
  justify-content: center;
}
.product-three__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 60px !important;
}
.product-three__carousel .owl-dots .owl-dot span {
  background-color: #f0e5d5;
  width: 25px;
  height: 15px;
  margin: 0;
  border-radius: 0;
  clip-path: polygon(20% 0, 100% 0%, 80% 100%, 0% 100%);
}
.product-three__carousel .owl-dots .owl-dot:hover span, .product-three__carousel .owl-dots .owl-dot.active span {
  background-color: var(--dropbe-primary, #e26d47);
}
.product-three__shape-four {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .product-three__shape-four {
    display: none;
  }
}
.product-three__shape-one {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .product-three__shape-one {
    display: none;
  }
}
.product-three__shape-two {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .product-three__shape-two {
    display: none;
  }
}
.product-three__shape-three {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .product-three__shape-three {
    display: none;
  }
}

.product-one__carousel .owl-carousel .owl-item img {
  width: auto !important;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header .container-fluid {
  max-width: 1630px;
}
.main-header__inner {
  display: flex;
  align-items: center;
  background-color: var(--dropbe-white, #fff);
  padding: 20px 0;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
@media (min-width: 1200px) {
  .main-header__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1320px) {
  .main-header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .main-header__inner {
    padding: 9px 0;
  }
}
.main-header__logo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .main-header__logo {
    width: auto;
  }
}
@media (min-width: 768px) {
  .main-header__logo .mobile-nav__btn {
    margin-left: 30px;
  }
}
.main-header__btn {
  display: inline-flex;
  margin-left: 30px;
  font-size: 16px;
  padding: 15px 45px;
  background-color: var(--dropbe-white, #fff);
  border: 2px solid var(--dropbe-black, #302a1f);
  color: var(--dropbe-text, #0e0502);
}
.main-header__btn::before {
  background-color: var(--dropbe-primary, #e26d47);
}
.main-header__btn:hover {
  color: var(--dropbe-white, #fff);
  border-color: var(--dropbe-primary, #e26d47);
}
@media (max-width: 1300px) and (min-width: 1199px), (max-width: 767px) {
  .main-header__btn {
    display: none;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
@media (min-width: 768px) {
  .main-header__right {
    margin-left: auto;
    padding: 0;
    padding-left: 10px;
  }
}
@media (min-width: 1200px) {
  .main-header__right {
    margin-left: 0;
  }
}
.main-header__right__info {
  display: flex;
  align-items: center;
  margin-left: 34px;
}
.main-header__right__info a {
  font-size: 16px;
  color: var(--dropbe-text, #0e0502);
}
.main-header__right__info a + a {
  margin-left: 20px;
  border-left: 1px solid #d5cdca;
  padding-left: 20px;
}
@media (max-width: 500px) {
  .main-header__right__info a + a {
    margin-left: 0;
    padding-left: 0;
    border-color: transparent;
    display: none;
  }
}
.main-header__right__info a + .main-header__right__info__count {
  margin-left: 20px;
}
@media (max-width: 500px) {
  .main-header__right__info a + .main-header__right__info__count {
    margin-left: 0;
  }
}
.main-header__right__info__count {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: var(--dropbe-primary, #e26d47);
  font-size: 16px;
  color: var(--dropbe-white, #fff);
  line-height: 1.625;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  .main-header__right__info__count {
    display: none;
  }
}
.main-header__nav {
  margin-left: auto;
  margin-right: 0;
}
.main-header--one {
  position: relative;
  margin-bottom: -107px;
  z-index: 3;
  border-bottom: 1px solid var(--dropbe-border-color, #d7d3c0);
}
.main-header--one .main-header__inner {
  background-color: transparent;
}
.main-header--two {
  position: relative;
  margin-bottom: -108px;
  z-index: 3;
  border-bottom: 1px solid var(--dropbe-border-color, #d7d3c0);
}
@media screen and (max-width: 768px) {
  .main-header--two {
    background-color: var(--dropbe-white, #fff);
  }
}
.main-header--two .main-header__inner {
  background-color: var(--dropbe-white, #fff);
  position: relative;
}
.main-header--two .main-header__inner::after {
  content: "";
  background: var(--dropbe-white, #fff);
  width: 9999999px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 99%;
}
@media screen and (max-width: 768px) {
  .main-header--two .main-header__inner::after {
    display: none;
  }
}
@media (max-width: 1199px) {
  .main-header--two .main-header__inner {
    padding: 0px 15px;
  }
  .main-header--two .main-header__inner::before {
    content: "";
    background-color: var(--dropbe-base, #ffb336);
    width: 9999999px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 99%;
  }
}
@media screen and (max-width: 1199px) and (max-width: 768px) {
  .main-header--two .main-header__inner::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .main-header--two .main-header__inner {
    padding: 20px 0px;
  }
}
.main-header--two .main-header__logo {
  clip-path: polygon(0 0, 85% 0%, 100% 100%, 0% 100%);
  margin-left: -15px;
  background-color: var(--dropbe-base, #ffb336);
  padding: 26px 55px 26px 28px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-header--two .main-header__logo {
    background-color: transparent;
    padding: 0;
    margin-left: 0;
    clip-path: none;
  }
}
.main-header--three {
  border-color: rgb(255, 230, 187);
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--dropbe-white, #fff);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--dropbe-black-rgb, 48, 42, 31), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: 30px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .mobile-nav__btn {
    margin-left: 30px;
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--dropbe-black, #302a1f);
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 40.5px;
  padding-bottom: 40.5px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 34px;
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 20px;
  }
}
.main-menu .main-menu__list > li > a {
  display: flex;
  align-items: center;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  position: relative;
  transition: all 500ms ease;
  font-size: 16px;
  color: var(--dropbe-text-dark, #0E0B06);
  line-height: 1.625;
  text-shadow: 0 0 0.1px currentColor;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--dropbe-primary, #e26d47);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--dropbe-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--dropbe-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 14px;
  line-height: 26px;
  color: var(--dropbe-text, #0e0502);
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  font-weight: 400;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
  text-shadow: 0 0 0.1px currentColor;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--dropbe-base, #ffb336);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--dropbe-gray, #f5e2c6);
  color: var(--dropbe-black, #302a1f);
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--dropbe-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--dropbe-black, #302a1f);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--dropbe-base, #ffb336);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}
.demo-one .row {
  --bs-gutter-y: 30px;
}
.demo-one__card {
  background-color: var(--dropbe-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--dropbe-black3-rgb, 0, 0, 0), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__title {
  margin: 0;
  font-size: 20px;
  color: var(--dropbe-text, #0e0502);
  font-weight: 600;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
}
.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.demo-one__title a:hover {
  background-size: 100% 1px;
}
.demo-one__image {
  position: relative;
  overflow: hidden;
}
.demo-one__image img {
  max-width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demo-one__card:hover .demo-one__image img {
  filter: blur(2px);
}
.demo-one__btns {
  background-color: rgba(var(--dropbe-black3-rgb, 0, 0, 0), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__btn {
  width: 140px;
  font-size: 14px;
  padding: 15px 35px;
  font-weight: 600;
  color: var(--dropbe-text, #0e0502);
  border-radius: 4px;
  display: inline-flex;
  background-color: var(--dropbe-white, #fff);
}
.demo-one__btn::before {
  background-color: var(--dropbe-primary, #e26d47);
}
.demo-one__btn:hover {
  color: var(--dropbe-white, #fff);
}
@media (min-width: 768px) {
  .demo-one__btn {
    display: inline-flex;
  }
}
.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase {
  margin-top: -20px;
  margin-bottom: -20px;
}
.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--dropbe-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--dropbe-black3-rgb, 0, 0, 0), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__btns {
  flex-direction: column;
}
.home-showcase .demo-one__btn {
  min-width: 135px;
  text-align: center;
  justify-content: center;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-size: 18px;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.why-choose {
  position: relative;
  z-index: 1;
  background-color: #fef9f1;
}
.why-choose--one {
  padding-top: 310px;
}
.why-choose--one .why-choose__shape-three {
  top: 150px;
}
.why-choose .sec-title {
  padding-bottom: 22px;
}
.why-choose__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.667;
  margin-bottom: 32px;
}
.why-choose__list__title {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 28px;
}
.why-choose__list {
  margin-bottom: 0;
}
.why-choose__list li {
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text, #0e0502);
  line-height: 1.667;
}
.why-choose__list li i {
  margin-right: 8px;
  color: var(--dropbe-base, #ffb336);
}
.why-choose__list li + li {
  margin-top: 5px;
}
.why-choose__right {
  background-color: var(--dropbe-white, #fff);
  border-radius: 15px;
  padding: 50px 70px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .why-choose__right {
    margin-left: 25px;
  }
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .why-choose__right {
    padding: 30px 20px;
  }
}
.why-choose__right__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: -1;
}
.why-choose__item + .why-choose__item {
  margin-top: 50px;
}
@media (max-width: 575px) {
  .why-choose__item + .why-choose__item {
    margin-top: 30px;
  }
}
.why-choose__item {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .why-choose__item {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
  }
}
.why-choose__item__title {
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.25;
}
.why-choose__item__text {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.875;
}
.why-choose__shape-one {
  position: absolute;
  bottom: 0;
  right: 7%;
  z-index: -1;
}
.why-choose__shape-three {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.why-choose__shape-two {
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
  background-color: var(--dropbe-base, #ffb336);
  background-image: url(../images/shapes/funfact-bg-1-1.jpg);
  background-size: cover;
  background-position: center center;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 1200px) {
  .funfact-one {
    padding-top: 73.5px;
    padding-bottom: 73.5px;
  }
}
.funfact-one__list {
  margin: 0;
}
@media (min-width: 768px) {
  .funfact-one__list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .funfact-one__list {
    justify-content: space-between;
    gap: 0;
  }
}
.funfact-one__item {
  display: flex;
  align-items: center;
  margin-top: -6px;
  position: relative;
}
.funfact-one__item:not(:first-of-type)::before {
  content: "";
  width: 1px;
  height: 67px;
  background-color: var(--dropbe-white, #fff);
  position: absolute;
  top: 50%;
  left: -57px;
  transform: translateY(-50%);
  opacity: 0.3;
  display: none;
}
@media (min-width: 1200px) {
  .funfact-one__item:not(:first-of-type)::before {
    display: block;
  }
}
@media (min-width: 768px) {
  .funfact-one__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .funfact-one__item {
    flex: 0 0 auto;
    max-width: none;
  }
}
.funfact-one__item:hover .funfact-one__icon {
  transform: rotateY(360deg);
}
.funfact-one__item + .funfact-one__item {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .funfact-one__item + .funfact-one__item {
    margin-top: 0;
  }
}
.funfact-one__icon {
  font-size: 60px;
  color: var(--dropbe-white, #fff);
  margin-right: 20px;
  flex-shrink: 0;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.funfact-one__count {
  margin: 0;
  color: var(--dropbe-white, #fff);
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .funfact-one__count {
    font-size: 40px;
  }
}
.funfact-one__text {
  margin: 0;
  color: var(--dropbe-white, #fff);
  font-size: 16px;
  line-height: 36px;
  margin-top: 7px;
  margin-bottom: -6px;
}

.funfact-two {
  position: relative;
  background-color: var(--dropbe-base, #ffb336);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.funfact-two__shape {
  position: absolute;
  left: -10px;
  top: 0;
}
.funfact-two__shape img {
  animation: shapeMove 3s linear 0s infinite;
}
@media (max-width: 767px) {
  .funfact-two {
    padding: 80px 0;
  }
}
.funfact-two .sec-title {
  padding-bottom: 33px;
}
.funfact-two .sec-title__tagline,
.funfact-two .sec-title__title {
  color: var(--dropbe-white, #fff);
}
.funfact-two__list {
  position: relative;
  background-color: var(--dropbe-white, #fff);
  margin: 0 0 0 -7px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
}
@media (max-width: 991px) {
  .funfact-two__list {
    margin: 50px 0 0;
  }
}
.funfact-two__list__icon {
  width: 94px;
  height: 94px;
  background-color: var(--dropbe-base, #ffb336);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.funfact-two__list__icon img {
  height: 65px;
  transform: scale(1);
  transition: 500ms ease;
}
@media (max-width: 767px) {
  .funfact-two__list__icon {
    display: none;
  }
}
.funfact-two__list:hover .funfact-two__list__icon img {
  transform: scale(0.9);
}
.funfact-two__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 42px 58px;
}
.funfact-two__item:nth-child(1), .funfact-two__item:nth-child(3) {
  border-right: 1px solid var(--dropbe-base, #ffb336);
}
.funfact-two__item:nth-child(1), .funfact-two__item:nth-child(2) {
  border-bottom: 1px solid var(--dropbe-base, #ffb336);
}
@media (max-width: 1199px) {
  .funfact-two__item {
    padding-left: 30px;
    padding-right: 25px;
  }
}
@media (max-width: 991px) {
  .funfact-two__item {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .funfact-two__item {
    padding-left: 50px;
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid var(--dropbe-base, #ffb336);
  }
}
.funfact-two__count {
  margin: 0;
  color: var(--dropbe-black, #302a1f);
  font-size: 40px;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .funfact-two__count {
    font-size: 50px;
  }
}
.funfact-two__text {
  margin: 0;
  font-size: 18px;
  margin: 0;
}

.funfact-three {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .funfact-three {
    padding: 80px 0 50px;
  }
}
.funfact-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--dropbe-gray, #f5e2c6);
}
@media (min-width: 1400px) {
  .funfact-three__bg {
    width: calc(100% - 240px);
    left: 120px;
  }
}
.funfact-three__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
}
@media (max-width: 767px) {
  .funfact-three__list {
    display: block;
  }
}
.funfact-three__item {
  flex: 0 0 25%;
  max-width: 25%;
  position: relative;
}
@media (max-width: 991px) {
  .funfact-three__item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0 30px !important;
  }
}
@media (max-width: 767px) {
  .funfact-three__item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0 30px !important;
    text-align: center;
  }
}
.funfact-three__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--dropbe-border-color, #d7d3c0);
  position: absolute;
  top: 0;
  right: 54px;
}
@media (max-width: 991px) {
  .funfact-three__item:not(:last-of-type)::before {
    right: 50px !important;
  }
}
@media (max-width: 767px) {
  .funfact-three__item:not(:last-of-type)::before {
    display: none;
  }
}
.funfact-three__item:not(:first-of-type) {
  padding-left: 37px;
}
@media (max-width: 1199px) {
  .funfact-three__item:not(:first-of-type) {
    padding-left: 0;
  }
}
.funfact-three__item:nth-child(2)::before {
  right: 16px;
}
@media (max-width: 991px) {
  .funfact-three__item:nth-child(2)::before {
    display: none;
  }
}
.funfact-three__item:nth-child(3)::before {
  right: -20px;
}
.funfact-three__item:nth-child(3) {
  padding-left: 63px;
}
@media (max-width: 1199px) {
  .funfact-three__item:nth-child(3) {
    padding-left: 40px;
  }
}
.funfact-three__item:last-child {
  padding-left: 104px;
}
@media (max-width: 1199px) {
  .funfact-three__item:last-child {
    padding-left: 70px;
  }
}
.funfact-three__item:hover .funfact-three__icon::before {
  transform: scale(0.9);
}
.funfact-three__icon {
  width: 103px;
  height: 104px;
  background-color: var(--dropbe-base, #ffb336);
  font-size: 60px;
  color: var(--dropbe-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 13px;
}
@media (max-width: 767px) {
  .funfact-three__icon {
    margin-left: auto;
    margin-right: auto;
  }
}
.funfact-three__icon::before {
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}
.funfact-three__count {
  margin: 0;
  color: var(--dropbe-black, #302a1f);
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .funfact-three__count {
    font-size: 40px;
  }
}
.funfact-three__text {
  margin: 0;
  color: var(--dropbe-text, #0e0502);
  font-size: 16px;
  margin-top: 9px;
  margin-bottom: -6px;
}

/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/
.project-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.project-card__image img {
  object-fit: cover;
  width: 100%;
}
.project-card__image__hover {
  background-color: rgba(var(--dropbe-black-rgb, 48, 42, 31), 0.7);
  height: 100%;
  top: 0;
  position: absolute;
  transform: translateY(-100%);
  transition: all 0.5s ease 0s;
  width: 20%;
}
.project-card__image__hover--1 {
  left: 0;
  transition-delay: 0.105s;
}
.project-card__image__hover--2 {
  left: 20%;
  transition-delay: 0.15s;
}
.project-card__image__hover--3 {
  left: 40%;
  transition-delay: 0.2s;
}
.project-card__image__hover--4 {
  left: 60%;
  transition-delay: 0.25s;
}
.project-card__image__hover--5 {
  left: 80%;
  transition-delay: 0.3s;
}
.project-card__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 33px;
  background-color: transparent;
  z-index: 1;
}
.project-card__bottom::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition-delay: 1s;
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(90deg, rgba(111, 79, 67, 0.8) 0%, rgba(111, 79, 67, 0.8) 45%, rgba(111, 79, 67, 0) 100%);
  z-index: -1;
  opacity: 1;
  visibility: visible;
}
.project-card__bottom::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition-delay: 1s;
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(90deg, rgba(226, 109, 71, 0.8) 0%, rgba(226, 109, 71, 0.8) 45%, rgba(226, 109, 71, 0) 100%);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.project-card__content {
  line-height: normal;
}
.project-card__dec {
  margin: 0;
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-white, #fff);
  line-height: 2;
  text-transform: capitalize;
  text-align: left;
  display: block;
  margin-top: -8px;
  margin-bottom: -2px;
}
.project-card__title {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-white, #fff);
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: -8px;
  text-transform: capitalize;
}
.project-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.project-card__title a:hover {
  background-size: 100% 1px;
}
.project-card__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--dropbe-base, #ffb336);
  border: 2px solid var(--dropbe-white, #fff);
  color: var(--dropbe-white, #fff);
}
.project-card__link a:hover {
  background-color: var(--dropbe-text-dark, #0E0B06);
  color: var(--dropbe-primary, #e26d47);
  border-color: var(--dropbe-text-dark, #0E0B06);
}
.project-card:hover .project-card__image__hover {
  transform: translateY(0);
}
.project-card:hover .demos-one__image img {
  filter: blur(2px);
}
.project-card:hover .project-card__bottom::after {
  visibility: hidden;
  opacity: 0;
}
.project-card:hover .project-card__bottom::before {
  visibility: visible;
  opacity: 1;
}

.project-details__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 37px;
}
@media (max-width: 991px) {
  .project-details__top {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.project-details__top__title {
  margin: 0;
  font-size: 55px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.164;
  text-align: left;
  margin-top: -10px;
}
@media (max-width: 991px) {
  .project-details__top__title {
    font-size: 40px;
  }
}
.project-details__top__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-details__top__social span {
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  line-height: 1.133;
}
.project-details__top__social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #faecd7;
  font-size: 15px;
  color: var(--dropbe-text, #0e0502);
}
.project-details__thumb {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.project-details__thumb__item img {
  object-fit: cover;
  width: 100%;
}
.project-details__thumb__content {
  position: absolute;
  left: 30px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 44px 55px;
}
.project-details__thumb__content__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}
.project-details__thumb__content__top + .project-details__thumb__content__bottom {
  margin-top: 5px;
  border-top: 1px solid #e8dac5;
  padding-top: 5px;
}
.project-details__thumb__dec {
  display: block;
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #635f5b;
  line-height: 2;
  text-transform: capitalize;
  margin-bottom: -5px;
}
.project-details__thumb__name {
  margin: 0;
  font-size: 20px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.6;
  text-transform: capitalize;
}
.project-details__content {
  margin-bottom: 25px;
}
.project-details__content__title {
  margin: 0;
  font-size: 36px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.778;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.project-details__content__text {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 2;
}
.project-details__content__text + .project-details__content__text {
  margin-top: 25px;
}
.project-details__feature {
  margin-bottom: 15px;
}
.project-details__feature__item + .project-details__feature__item {
  margin-top: 13px;
}
.project-details__feature__title {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 2.667;
}
.project-details__feature__text {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 2;
}
.project-details__bottom__title {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 2.667;
}
.project-details__bottom__text + .project-details__bottom__text {
  margin-top: 15px;
}
.project-details__bottom__text {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 2;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  z-index: 1;
  background-color: #fbeedb;
}
.testimonials-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
@media (min-width: 1200px) {
  .testimonials-one__top {
    margin-right: 70px;
  }
}
.testimonials-one__top .sec-title {
  padding-bottom: 25px;
}
@media (max-width: 1199px) {
  .testimonials-one__top .sec-title .sec-title__title {
    font-size: 50px;
  }
}
.testimonials-one__image {
  width: 100%;
  height: 100%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 300.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,300.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2810 5973 c-300 -100 -413 -229 -559 -644 -50 -140 -94 -258 -98 -263 -5 -5 -124 46 -266 112 -477 223 -744 209 -1009 -56 -264 -265 -279 -531 -56 -1010 66 -142 113 -264 104 -272 -9 -7 -115 -48 -236 -90 -469 -162 -651 -346 -683 -694 -36 -383 167 -631 663 -808 143 -51 264 -96 268 -100 5 -4 -47 -124 -114 -267 -149 -314 -173 -403 -157 -574 50 -542 585 -799 1123 -539 110 53 237 112 283 132 l83 37 85 -244 c166 -475 356 -660 709 -688 380 -31 626 173 802 665 51 143 95 262 97 265 3 3 130 -56 283 -130 l278 -135 210 0 c399 0 677 248 713 637 16 170 -9 262 -154 568 -65 138 -119 257 -119 265 0 7 88 43 195 80 488 166 627 281 716 589 122 423 -99 744 -641 932 -132 46 -247 90 -256 98 -8 8 41 135 110 283 l126 268 0 200 c0 406 -274 702 -672 726 -180 10 -227 -2 -545 -150 -130 -60 -239 -106 -243 -102 -4 4 -47 115 -96 246 -117 318 -153 386 -264 488 -183 169 -474 244 -680 175z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 300.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,300.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2810 5973 c-300 -100 -413 -229 -559 -644 -50 -140 -94 -258 -98 -263 -5 -5 -124 46 -266 112 -477 223 -744 209 -1009 -56 -264 -265 -279 -531 -56 -1010 66 -142 113 -264 104 -272 -9 -7 -115 -48 -236 -90 -469 -162 -651 -346 -683 -694 -36 -383 167 -631 663 -808 143 -51 264 -96 268 -100 5 -4 -47 -124 -114 -267 -149 -314 -173 -403 -157 -574 50 -542 585 -799 1123 -539 110 53 237 112 283 132 l83 37 85 -244 c166 -475 356 -660 709 -688 380 -31 626 173 802 665 51 143 95 262 97 265 3 3 130 -56 283 -130 l278 -135 210 0 c399 0 677 248 713 637 16 170 -9 262 -154 568 -65 138 -119 257 -119 265 0 7 88 43 195 80 488 166 627 281 716 589 122 423 -99 744 -641 932 -132 46 -247 90 -256 98 -8 8 41 135 110 283 l126 268 0 200 c0 406 -274 702 -672 726 -180 10 -227 -2 -545 -150 -130 -60 -239 -106 -243 -102 -4 4 -47 115 -96 246 -117 318 -153 386 -264 488 -183 169 -474 244 -680 175z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.testimonials-one__image img {
  object-fit: cover;
  width: 100%;
}
@media (min-width: 1200px) {
  .testimonials-one__carousel {
    margin-left: -30px;
  }
}
.testimonials-one__box__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 60px;
  position: absolute;
  bottom: 65px;
  left: 30%;
}
.testimonials-one__box__carousel .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #d0c1a2;
  margin: 0;
}
.testimonials-one__box__carousel .owl-dots .owl-dot:hover span, .testimonials-one__box__carousel .owl-dots .owl-dot.active span {
  background-color: var(--dropbe-base, #ffb336);
}
.testimonials-one__box__carousel .owl-dots::before, .testimonials-one__box__carousel .owl-dots::after {
  content: "";
  width: 110px;
  height: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: -moz-linear-gradient(0deg, rgb(255, 236, 196) 0%, rgb(255, 179, 54) 48%, rgb(255, 236, 196) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(255, 236, 196) 0%, rgb(255, 179, 54) 48%, rgb(255, 236, 196) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(255, 236, 196) 0%, rgb(255, 179, 54) 48%, rgb(255, 236, 196) 100%);
}
.testimonials-one__box__carousel .owl-dots::before {
  left: -120px;
}
.testimonials-one__box__carousel .owl-dots::after {
  right: -120px;
}
.testimonials-one__item {
  padding: 50px 50px 50px 60px;
  background-color: #fbecd2;
  border-radius: 0 50px 50px 50px;
}
.testimonials-one__item__icon {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
.testimonials-one__item__text {
  margin: 0;
  font-size: 36px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0502;
  font-weight: 600;
  line-height: 1.667;
  margin-bottom: 50px;
}
@media (max-width: 1199px) and (min-width: 991px), (max-width: 500px) {
  .testimonials-one__item__text {
    font-size: 25px;
  }
}
.testimonials-one__item__author {
  margin-left: auto;
  margin-right: 0;
  text-align: end;
}
.testimonials-one__item__author__name {
  font-size: 26px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0502;
  font-weight: bold;
  line-height: 1.308;
  text-transform: capitalize;
  margin-bottom: -2px;
}
.testimonials-one__item__author__dec {
  display: block;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #e26d47;
  line-height: 1.75;
  text-transform: capitalize;
  margin-bottom: -4px;
}
.testimonials-one__shape-one {
  position: absolute;
  bottom: 0%;
  left: 2%;
}
.testimonials-one__shape-one img {
  animation: xTranslate 3s ease-in-out infinite;
}
.testimonials-one__shape-two {
  position: absolute;
  bottom: 0;
  left: 50%;
}
.testimonials-one__shape-three {
  position: absolute;
  top: 20%;
  right: 10%;
}
.testimonials-one__shape-three img {
  animation: rotate 6s ease-in-out infinite;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details-card {
  position: relative;
  margin-bottom: 60px;
}
.team-details-card__inner {
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
  border-radius: 8px;
  padding: 30px;
}
.team-details-card__thumb {
  margin-right: -20px;
}
@media (max-width: 991px) {
  .team-details-card__thumb {
    margin-right: 0px;
  }
}
.team-details-card__thumb img {
  object-fit: cover;
  width: 100%;
}
.team-details-card__content {
  margin-left: 20px;
}
@media (max-width: 991px) {
  .team-details-card__content {
    margin-left: 0px;
  }
}
.team-details-card__content__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--dropbe-border-color, #d7d3c0);
}
@media (max-width: 575px) {
  .team-details-card__content__top {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }
}
.team-details-card__content__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 3px;
  color: var(--dropbe-black, #302a1f);
}
.team-details-card__content__dec {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-transform: capitalize;
  color: var(--dropbe-text, #0e0502);
  display: block;
}
.team-details-card__content__social {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}
.team-details-card__content__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dropbe-bg-gray, #fff3e7);
  font-size: 15px;
  color: var(--dropbe-text-dark, #0E0B06);
  position: relative;
  z-index: 1;
}
.team-details-card__content__social a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: var(--dropbe-primary, #e26d47);
  left: 50%;
  top: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.team-details-card__content__social a:hover {
  color: var(--dropbe-white, #fff);
}
.team-details-card__content__social a:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.team-details-card__content__signeture {
  margin-top: 50px;
}
.team-details-card__content__list {
  margin-top: 30px;
  border-top: 1px solid var(--dropbe-border-color, #d7d3c0);
  padding-top: 25px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.team-details-card__content__list li {
  position: relative;
  z-index: 1;
}
.team-details-card__content__list li:hover .team-details-card__content__list__icon {
  color: var(--dropbe-white, #fff);
}
.team-details-card__content__list li:hover .team-details-card__content__list__icon::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.team-details-card__content__list__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dropbe-bg-gray, #fff3e7);
  font-size: 17px;
  color: var(--dropbe-text-dark, #0E0B06);
  position: absolute;
  transform: translateY(-10%);
  top: 0;
  z-index: 1;
}
.team-details-card__content__list__icon::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: var(--dropbe-primary, #e26d47);
  left: 50%;
  top: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.team-details-card__content__list a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--dropbe-black, #302a1f);
  margin-left: 46px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-details-card__content__list a:hover {
  background-size: 100% 1px;
}
.team-details-card__content__list a:hover {
  color: var(--dropbe-base, #ffb336);
}

/*team-details*/
.team-skills-one {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
  background: var(--dropbe-bg-gray, #fff3e7);
}
.team-skills-one__top {
  margin-bottom: 50px;
}
.team-skills-one__top__title {
  font-style: normal;
  font-size: 25px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--dropbe-black, #302a1f);
  text-shadow: 0 0 0.1px currentColor;
  margin-bottom: 18px;
}
.team-skills-one__top__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--dropbe-text, #0e0502);
}
.team-skills-one__top__text + .team-skills-one__top__text {
  margin-top: 29px;
}
@media (max-width: 991px) {
  .team-skills-one__top__text + .team-skills-one__top__text {
    margin-top: 20px;
  }
}
.team-skills-one__inner {
  background: var(--dropbe-white, #fff);
  padding: 30px 40px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.04);
}
@media (max-width: 991px) {
  .team-skills-one__inner {
    padding: 20px;
  }
}
.team-skills-one__inner__title {
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--dropbe-black, #302a1f);
  margin-bottom: 27px;
}
.team-skills-one__skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 31px;
  margin-bottom: 42px;
}
@media (max-width: 991px) {
  .team-skills-one__skills {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

/*team-Progress*/
.progress-box__title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--dropbe-black, #302a1f);
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
}
.progress-box__bar {
  width: 100%;
  height: 15px;
  background-color: var(--dropbe-gray, #f5e2c6);
  position: relative;
}
.progress-box__bar__inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--dropbe-base, #ffb336);
  transition: all 800ms linear;
  width: 0px;
}
.progress-box__number {
  position: absolute;
  bottom: calc(100% + 2px);
  right: 0;
  font-size: 16px;
  color: var(--dropbe-black, #302a1f);
  font-weight: 700;
  line-height: 1.875;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
  padding-bottom: 120px;
  position: relative;
}
.cta-one .container-fluid {
  max-width: 1380px;
}
.cta-one__inner {
  position: relative;
  padding: 20px;
}
.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cta-one__title {
  margin: 0;
  text-transform: uppercase;
  max-width: 513px;
  width: 100%;
  font-size: 35px;
  line-height: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
}
.cta-one__title span {
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  font-weight: 400;
}
@media (min-width: 992px) {
  .cta-one__title {
    font-size: 50px;
    margin-bottom: 30px;
    margin-top: -10px;
  }
}
.cta-one__content {
  position: relative;
  border: 1px solid var(--dropbe-white, #fff);
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .cta-one__content {
    padding: 60px;
  }
}
@media (min-width: 1200px) {
  .cta-one__content {
    padding: 100px;
  }
}
.cta-one__link:hover {
  color: var(--dropbe-white, #fff);
}
.cta-one__link::after {
  background-color: var(--dropbe-black, #302a1f);
}
.cta-one__link::before {
  background-color: var(--dropbe-base, #ffb336);
}

.cta-two {
  position: relative;
  background-color: var(--dropbe-base, #ffb336);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-two__shape {
  position: absolute;
  left: -10px;
  top: 0;
}
.cta-two__shape img {
  animation: shapeMove 3s linear 0s infinite;
}
.cta-two__content {
  position: relative;
  padding: 85px 0 90px;
}
.cta-two__sub-title {
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin: 0 0 2px;
}
.cta-two__title {
  color: var(--dropbe-white, #fff);
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 37px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cta-two__title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .cta-two__title {
    font-size: 35px;
  }
}
.cta-two__thumb {
  position: relative;
}
.cta-two__thumb__one {
  position: relative;
  right: 35px;
  margin-top: -28px;
}
@media (max-width: 991px) {
  .cta-two__thumb__one {
    right: 0;
  }
}
.cta-two__thumb__one__shape {
  position: absolute;
  left: -40px;
  top: -40px;
  width: 545px;
  height: 408px;
}
.cta-two__thumb__one__thumb {
  width: 482px;
  height: auto;
  border: 20px solid var(--dropbe-white, #fff);
  position: relative;
  z-index: 2;
  transform: rotate(5deg);
}
@media (max-width: 767px) {
  .cta-two__thumb__one__thumb {
    width: 100%;
  }
}
.cta-two__thumb__one__thumb img {
  width: 100%;
  height: 282px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cta-two__thumb__one__thumb img {
    height: auto;
  }
}
.cta-two__thumb__two {
  position: absolute;
  right: -48px;
  top: 195px;
  z-index: 3;
}
@media (max-width: 991px) {
  .cta-two__thumb__two {
    top: 45px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .cta-two__thumb__two {
    position: relative;
    top: 0;
    right: 0;
  }
}
.cta-two__thumb__two__flower {
  position: absolute;
  right: -10px;
  top: -121px;
  z-index: 4;
}
@media (max-width: 767px) {
  .cta-two__thumb__two__flower {
    display: none;
  }
}
.cta-two__thumb__two__flower img {
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.cta-two__thumb__two__shape {
  position: absolute;
  left: -45px;
  top: -60px;
  width: 446px;
  height: 421px;
}
.cta-two__thumb__two__thumb {
  width: 360px;
  height: auto;
  border: 20px solid var(--dropbe-white, #fff);
  position: relative;
  z-index: 2;
  transform: rotate(-17.2deg);
}
@media (max-width: 767px) {
  .cta-two__thumb__two__thumb {
    width: 100%;
  }
}
.cta-two__thumb__two__thumb img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cta-two__thumb__two__thumb img {
    height: auto;
  }
}

.cta-three {
  position: relative;
  z-index: 1;
}
.cta-three__content {
  margin-right: 60px;
}
.cta-three__content .sec-title {
  padding-bottom: 22px;
}
.cta-three__content__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.667;
}
@media (min-width: 992px) {
  .cta-three__form {
    margin-left: 60px;
  }
}
.cta-three__form__text {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #0e0502;
  line-height: 1.417;
  margin-bottom: 30px;
}
.cta-three__form .form-one__control + .form-one__control {
  margin-top: 15px;
}
.cta-three__form .form-one__control label {
  display: block;
  text-align: start;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #0e0502;
  line-height: 1.889;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cta-three__form .form-one__control label input[type=radio] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
}
.cta-three__form .form-one__control label + label {
  margin-top: 0px;
}
.cta-three__form .form-one__control__box {
  position: relative;
  z-index: 1;
}
.cta-three__form .form-one__control__box input[type=text] {
  background-color: #ffe0c0;
  height: 65px;
  padding-right: 160px;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
}
.cta-three__form .form-one__control__box input[type=text]::placeholder {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 2.125;
  text-transform: capitalize;
}
.cta-three__form .form-one__control__box .dropbe-btn {
  position: absolute;
  height: 65px;
  background-color: var(--dropbe-primary, #e26d47);
  border-radius: 5px 0 0 5px;
  right: 0;
  top: 0;
}
.cta-three__form .form-one__control__box .dropbe-btn::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.cta-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.cta-three__shape-one {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .cta-three__shape-one {
    display: none;
  }
}
.cta-three__shape-two {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.cta-three__shape-two img {
  animation: xTranslate 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 991px) {
  .cta-three__shape-two {
    display: none;
  }
}
.cta-three__shape-three {
  position: absolute;
  right: 5%;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
}
.cta-three__shape-three img {
  animation: beeScaleTwo 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .cta-three__shape-three {
    display: none;
  }
}

.cta-four {
  position: relative;
  z-index: 1;
  padding: 130px 0;
}
@media (max-width: 1199px) {
  .cta-four {
    padding: 120px 0;
  }
}
@media (max-width: 991px) {
  .cta-four {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .cta-four {
    padding: 80px 0;
  }
}
.cta-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.cta-four__content {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta-four__title {
  margin: 0;
  font-size: 70px;
  color: #ffffff;
  line-height: 1.143;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .cta-four__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cta-four__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .cta-four__title {
    font-size: 40px;
  }
  .cta-four__title br {
    display: none;
  }
}
.cta-four__btn {
  background-color: var(--dropbe-primary, #e26d47);
  padding: 20px 50px;
}
.cta-four__btn::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.cta-four__shape {
  position: absolute;
  bottom: -25%;
  z-index: -1;
  left: 0;
}

.service-cta {
  position: relative;
  z-index: 1;
  background-color: var(--dropbe-primary, #e26d47);
  padding: 31px 0px;
}
.service-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .service-cta__inner {
    flex-direction: column;
    gap: 20px;
    justify-content: start;
    align-items: start;
  }
}
.service-cta .container-fluid {
  max-width: 1650px;
}
.service-cta__left, .service-cta__right {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: 55%;
  flex: 55%;
}
@media (max-width: 991px) {
  .service-cta__left, .service-cta__right {
    justify-content: start;
    align-items: center;
    flex: 100%;
    width: 100%;
  }
}
.service-cta__right {
  width: 45%;
  flex: 45%;
  border-radius: 15px 0px 0px 15px;
  padding: 15px 0 15px 25px;
  display: flex;
  align-items: center;
  background-color: var(--dropbe-white, #fff);
  position: relative;
}
.service-cta__right::after {
  content: "";
  width: 999px;
  left: 99%;
  position: absolute;
  height: 100%;
  background-color: var(--dropbe-white, #fff);
  top: 0;
}
@media (max-width: 991px) {
  .service-cta__right {
    flex: 100%;
    width: 100%;
  }
}
.service-cta__right .service-cta__title {
  color: var(--dropbe-primary, #e26d47);
}
.service-cta__icon {
  max-width: 105px;
  height: 105px;
  border-radius: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dropbe-white, #fff);
  transition: all 0.4s ease-in-out;
}
.service-cta__icon--two {
  background-color: transparent;
  max-width: 80px;
  height: auto;
}
.service-cta__title {
  font-size: 40px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-white, #fff);
  font-weight: bold;
  line-height: 1.425;
  letter-spacing: -0.3px;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
}
@media (max-width: 1600px) {
  .service-cta__title {
    font-size: 30px;
  }
}
@media (max-width: 1340px) {
  .service-cta__title {
    font-size: 25px;
  }
}
.service-cta__btn {
  padding: 0;
  margin-left: 10px;
  width: 100%;
  max-width: 75px;
  height: 75px;
  border: 1px solid var(--dropbe-text, #0e0502);
  color: var(--dropbe-text, #0e0502);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  background-color: var(--dropbe-gray, #f5e2c6);
}
.service-cta__btn:hover {
  border-color: var(--dropbe-primary, #e26d47);
}
.service-cta__left:hover .service-cta__icon {
  background-color: var(--dropbe-base, #ffb336);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-page {
  padding-top: 0px;
  padding-bottom: 120px;
}
.gallery-page .container-fluid {
  width: 100%;
  max-width: 1572px;
}
.gallery-page--page {
  padding-top: 100px;
}
.gallery-page .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}
@media (min-width: 992px) {
  .gallery-page__carousel .owl-nav {
    display: none;
  }
}
.gallery-page__filter__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-page__filter__list li {
  cursor: pointer;
}
.gallery-page__filter__list li span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  background-color: var(--dropbe-base, #ffb336);
  transition: all 500ms ease;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 20px;
  line-height: 1.2em;
}
.gallery-page__filter__list li.active span, .gallery-page__filter__list li:hover span {
  background-color: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
}
.gallery-page__card {
  position: relative;
  overflow: hidden;
  background-color: var(--dropbe-black, #302a1f);
}
.gallery-page__card img {
  transform: scale(1);
  display: block;
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-page__card__hover {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background-color: rgba(var(--dropbe-white-rgb, 255, 255, 255), 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0, 0);
  transition: transform 500ms ease;
  transform-origin: center center;
}
.gallery-page__card__hover .img-popup {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: transparent;
  border-radius: 50%;
  transition: all 400ms ease;
}
@media (max-width: 1399px) {
  .gallery-page__card__hover .img-popup {
    width: 50px;
    height: 50px;
  }
}
.gallery-page__card__hover .img-popup:hover {
  background-color: transparent;
}
.gallery-page__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.gallery-page__card:hover .gallery-page__card__hover {
  transform-origin: center center;
  transform: scale(1, 1);
}
.gallery-page__card__icon {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}
.gallery-page__card__icon::after, .gallery-page__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--dropbe-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-page__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.img-popup:hover .gallery-page__card__icon::before, .img-popup:hover .gallery-page__card__icon::after {
  background-color: var(--dropbe-white, #fff);
}

.gallery-two {
  position: relative;
  overflow: hidden;
  padding: 0 0 20px;
}
.gallery-two .container-fluid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .gallery-two .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.gallery-two .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.gallery-two__col-one {
  width: 65%;
}
@media (max-width: 1199px) {
  .gallery-two__col-one {
    width: 100%;
  }
}
.gallery-two__col-two {
  width: 35%;
}
@media (max-width: 1199px) {
  .gallery-two__col-two {
    width: 100%;
  }
}
.gallery-two__card {
  position: relative;
  overflow: hidden;
  background-color: var(--dropbe-black, #302a1f);
}
.gallery-two__card img {
  transform: scale(1);
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-two__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--dropbe-black-rgb, 48, 42, 31), 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-two__card__hover .img-popup {
  position: relative;
}
.gallery-two__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.gallery-two__card:hover .gallery-two__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-two__card a {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--dropbe-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-two__card a:hover .gallery-two__card__icon::after, .gallery-two__card a:hover .gallery-two__card__icon::before {
  background-color: var(--dropbe-base, #ffb336);
}
.gallery-two__card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}
.gallery-two__card__icon::after, .gallery-two__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--dropbe-black, #302a1f);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-two__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.gallery-two__info {
  position: relative;
  background-color: var(--dropbe-base, #ffb336);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 50px 0 100px;
  height: 100%;
}
@media (min-width: 1200px) {
  .gallery-two__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 1500px) {
  .gallery-two__info {
    padding-left: 40px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .gallery-two__info {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .gallery-two__info {
    padding: 50px 30px;
  }
}
.gallery-two__info__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}
.gallery-two__info__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-two__info__title {
  color: var(--dropbe-white, #fff);
  font-size: 44px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 45px;
  }
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
/*blog sidebar*/
.sidebar__single {
  background-color: var(--dropbe-gray2, #efd5b0);
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.sidebar__single::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/shapes/blog-card-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  mix-blend-mode: overlay;
  z-index: -3;
}
.sidebar .sidebar__form {
  background-color: var(--dropbe-black, #302a1f);
}
.sidebar .sidebar__form::after {
  display: none;
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  text-transform: capitalize;
  display: inline-block;
  position: relative;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  z-index: 1;
  margin-top: -5px;
  color: var(--dropbe-text-dark, #0E0B06);
  margin-bottom: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 118%;
  font-size: 20px;
}
@media (min-width: 768px) {
  .sidebar__title {
    font-size: 22px;
  }
}
.sidebar__title::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--dropbe-text, #0e0502);
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
.sidebar__title::before {
  width: 90px;
  height: 1px;
  background-color: var(--dropbe-text, #0e0502);
  content: "";
  position: absolute;
  top: 50%;
  right: -105px;
  transform: translateY(-50%);
}
.sidebar__form__title {
  margin-top: -6px;
}
.sidebar__search {
  position: relative;
  overflow: hidden;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: var(--dropbe-white, #fff);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 500ms ease;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--dropbe-text, #0e0502);
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.sidebar__search input[type=search]::placeholder,
.sidebar__search input[type=text]::placeholder {
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: var(--dropbe-black, #302a1f);
  text-transform: capitalize;
}
.sidebar__search button[type=submit] {
  border: 1px solid var(--dropbe-white, #fff);
  outline: none;
  background-color: var(--dropbe-black, #302a1f);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding-left: 19px;
  padding-right: 19px;
  border-radius: 0px;
  line-height: 1;
  width: auto;
  font-size: 22px;
  color: var(--dropbe-white, #fff);
}
.sidebar__categories {
  margin-bottom: 0px;
}
.sidebar__categories li a {
  font-size: 17px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  text-align: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  padding: 15px 0px;
  background-color: transparent;
  transition: all 0.4s ease-in-out;
}
.sidebar__categories li a::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 9999px;
  z-index: -1;
  left: 0%;
  background-color: var(--dropbe-primary, #e26d47);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.sidebar__categories li a span {
  color: var(--dropbe-text-dark, #0E0B06);
  transition: all 0.4s ease-in-out;
}
.sidebar__categories li a:hover {
  color: var(--dropbe-white, #fff);
  text-shadow: 0 0 1px currentColor;
  padding-left: 20px;
}
.sidebar__categories li a:hover span {
  color: var(--dropbe-white, #fff);
}
.sidebar__categories li a:hover::after {
  opacity: 1;
}
.sidebar__categories li + li {
  margin-top: 12px;
}
.sidebar__posts {
  margin-bottom: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: center;
}
.sidebar__posts__item + .sidebar__posts__item {
  margin-top: 19px;
  padding-top: 20px;
  border-top: 1px solid #ebd7b8;
}
.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 15px;
  position: relative;
  width: 75px;
  height: 73px;
  overflow: hidden;
  border-radius: 50%;
}
.sidebar__posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
}
.sidebar__posts__title {
  margin: 0;
  margin-bottom: -5px;
  padding-bottom: 0;
  text-transform: capitalize;
  font-style: normal;
  font-size: 18px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.389;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .sidebar__posts__title {
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .sidebar__posts__title {
    font-size: 14px;
  }
}
.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}
.sidebar__posts__title a:hover {
  color: var(--dropbe-primary, #e26d47);
}
.sidebar__posts__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.sidebar__posts__meta a {
  display: inline-flex;
  align-items: center;
  color: var(--dropbe-primary, #e26d47);
  transition: all 500ms ease;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 157%;
}
.sidebar__posts__meta a:hover {
  color: var(--dropbe-text, #0e0502);
  text-shadow: 0 0 1px currentColor;
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar__tags a {
  background-color: var(--dropbe-gray, #f5e2c6);
  color: var(--dropbe-text, #0e0502);
  transition: all 500ms ease;
  display: inline-flex;
  padding: 7px 17px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 114%;
  text-transform: capitalize;
}
.sidebar__tags a:hover {
  color: var(--dropbe-white, #fff);
}
.sidebar__tags a::after, .sidebar__tags a::before {
  background-color: var(--dropbe-primary, #e26d47);
}
.sidebar__massage__item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.sidebar__massage__item:hover .sidebar__massage__icon {
  background-color: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
}
.sidebar__massage__icon {
  max-width: 65px;
  height: 65px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--dropbe-white, #fff);
  font-size: 24px;
  color: #6d665b;
  transition: all 0.4s ease-in-out;
}
.sidebar__massage__subtitle {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-primary, #e26d47);
  font-weight: bold;
  line-height: 1.75;
  text-align: left;
}
.sidebar__massage__text {
  font-size: 16px;
  color: #6a6e6b;
  line-height: 1.625;
  text-align: left;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sidebar__massage__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__massage__text a:hover {
  background-size: 100% 1px;
}
.sidebar__massage__item + .sidebar__massage__item {
  margin-top: 19px;
  padding-top: 20px;
  border-top: 1px solid #ebd7b8;
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  z-index: 1;
  background-color: #fefaf3;
}
.blog-details__card__image {
  margin-bottom: 30px;
}
.blog-details__card__image img {
  object-fit: cover;
  width: 100%;
}
.blog-details__card__content {
  padding: 0px 35px 35px;
}
.blog-details__card__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
.blog-details__card__meta a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(115, 105, 102, 0.8);
  line-height: 1.143;
}
.blog-details__card__meta a i {
  margin-right: 6px;
}
.blog-details__card__title {
  font-size: 30px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.167;
  text-transform: capitalize;
  margin-bottom: 26px;
  padding-bottom: 0;
}
.blog-details__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-details__card__title a:hover {
  background-size: 100% 1px;
}
.blog-details__card__title a:hover {
  color: var(--dropbe-primary, #e26d47);
}
@media (min-width: 992px) {
  .blog-details__card__title {
    font-size: 36px;
  }
}
.blog-details__card__text {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.875;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-details__attention {
  padding: 0px 35px;
  margin-bottom: 40px;
}
.blog-details__attention__title {
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.083;
  text-transform: capitalize;
  margin-bottom: 22px;
  padding-bottom: 0;
}
.blog-details__attention__text {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.875;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.blog-details__attention__list {
  margin-bottom: 0;
  padding-left: 0;
}
.blog-details__attention__list__item {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 10px;
}
.blog-details__attention__list__item i {
  font-size: 18px;
  color: var(--dropbe-primary, #e26d47);
  line-height: 1.875;
}
.blog-details__attention__list__item + .blog-details__attention__list__item {
  margin-top: 22px;
}
.blog-details__attention__list__text {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.875;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-details__feature {
  padding: 0px 35px;
}
.blog-details__feature__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .blog-details__feature__box {
    gap: 30px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.blog-details__feature__item {
  display: flex;
  align-items: start;
  gap: 22px;
}
.blog-details__feature__icon {
  width: 100%;
  max-width: 73px;
  height: 90px;
  background-color: #f1e5d4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-details__feature__title {
  font-size: 22px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-primary, #e26d47);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  padding-bottom: 0;
}
.blog-details__feature__text {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-details__feature__text-two {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.875;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.blog-details__tags {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 35px;
}
.blog-details__tags__title {
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  margin: 0;
  line-height: 1em;
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: -4px;
}
.blog-details__tags .sidebar__tags a {
  padding: 7px 17px;
  font-size: 14px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text, #0e0502);
  line-height: 1.143;
  background-color: #f8eee4;
}
.blog-details__tags .sidebar__tags a:hover {
  background-color: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
}
.blog-details__item {
  padding: 0px 35px 40px;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  background-color: var(--dropbe-white, #fff);
  position: relative;
  padding: 45px 30px 40px;
}
.comments-one__title {
  margin: 0;
  text-transform: capitalize;
  margin-top: -4px;
  margin-bottom: -4px;
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.333;
}
.comments-one__list {
  margin: 0;
  margin-top: 40px;
}
.comments-one__card {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--dropbe-border-color, #d7d3c0);
}
.comments-one__card:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .comments-one__card {
    display: flex;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .comments-one__card__image {
    margin-right: 30px;
  }
}
.comments-one__card__image img {
  border-radius: 50%;
}
.comments-one__card__top {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 12px;
}
.comments-one__card__title {
  margin: 0;
  text-transform: capitalize;
  margin-top: 20px;
  font-size: 18px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.422;
}
.comments-one__card__text, .comments-one__card span {
  margin: 0;
  margin-bottom: 20px;
  max-width: 500px;
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(115, 105, 102, 0.702);
  line-height: 2;
}
@media (min-width: 768px) {
  .comments-one__card__text, .comments-one__card span {
    margin-bottom: 0;
  }
}
.comments-one__card__reply {
  padding: 3.5px 13px;
  font-size: 13px;
  color: var(--dropbe-white, #fff);
  background-color: var(--dropbe-primary, #e26d47);
}
.comments-one__card__reply::before {
  background-color: var(--dropbe-black, #302a1f);
}
.comments-one__card__reply:hover {
  color: var(--dropbe-white, #fff);
}
.comments-one__card__content {
  position: relative;
}

.comments-form {
  background-color: var(--dropbe-white, #fff);
  position: relative;
  padding: 0px 30px 45px;
}
.comments-form__title {
  margin: 0;
  margin-top: -4px;
  margin-bottom: -4px;
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.333;
}
.comments-form__form {
  margin-top: 45px;
}
.comments-form__form input[type=text],
.comments-form__form input[type=email],
.comments-form__form textarea {
  background-color: transparent;
  padding-left: 20px;
  border: 1px solid #e9decc;
}
.comments-form__form input[type=text]:focus,
.comments-form__form input[type=email]:focus,
.comments-form__form textarea:focus {
  border: 1px solid #7f7e7d;
}
.comments-form__form input[type=text]::placeholder,
.comments-form__form input[type=email]::placeholder,
.comments-form__form textarea::placeholder {
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(115, 105, 102, 0.6);
  line-height: 1.133;
}
.comments-form__form .dropbe-btn {
  background-color: transparent;
  border: 2px solid #1d170d;
  text-transform: capitalize;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
}
.comments-form__form .dropbe-btn:hover {
  color: var(--dropbe-white, #fff);
  border-color: var(--dropbe-primary, #e26d47);
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
}
.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border: 1px solid #dabd95;
  border-radius: 5px;
  padding: 0px 30px;
}
@media (max-width: 767px) {
  .product__info-top {
    display: block;
    padding: 20px 30px;
  }
}
.product__showing-text {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 1.125;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 20px;
  }
}
.product__showing-sort {
  margin: 0;
  font-size: 16px;
}
.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 150px !important;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
}
@media (max-width: 360px) {
  .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 300px !important;
  }
}
.product__showing-sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 52px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: transparent !important;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76 !important;
  line-height: 52px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: #827e76;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--dropbe-border-color, #d7d3c0);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 3px 20px;
  color: #827e76;
  background-color: var(--dropbe-gray, #f5e2c6);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
  border-color: var(--dropbe-base, #ffb336);
}
.product__item {
  position: relative;
  transition: all 500ms ease;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  border-color: #dabd95;
  border-radius: 30px;
  background-color: #fcf3e6;
}
.product__item__img {
  background-color: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px 20px;
  height: 315px;
}
.product__item__img__feature {
  font-size: 14px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text, #0e0502);
  line-height: 1.571;
  padding: 4px 10px;
  background-color: var(--dropbe-base, #ffb336);
  text-transform: capitalize;
  position: absolute;
  top: 20px;
  right: 20px;
}
.product__item__img img {
  object-fit: cover;
  width: auto !important;
  transition: all 500ms ease;
  transform: scale(1);
}
.product__item:hover .product__item__img img {
  transform: scale(0.9);
}
.product__item__content {
  position: relative;
  z-index: 1;
  text-align: center;
  border-style: solid;
  border-width: 1px;
  border-color: #dabd95;
  border-radius: 100px 100px 0 0;
  padding: 30px 20px;
  margin-left: -2px;
  margin-right: -2px;
  margin-bottom: -2px;
  background-color: #fff1db;
}
.product__item__title {
  margin: 0;
  margin-bottom: 3px;
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-transform: capitalize;
}
.product__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product__item__title a:hover {
  background-size: 100% 1px;
}
.product__item__title a:hover {
  color: var(--dropbe-primary, #e26d47);
}
.product__item__price {
  margin-bottom: 25px;
  font-size: 19px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.158;
  text-align: center;
}
.product__item__link {
  color: var(--dropbe-text, #0e0502);
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  border: 1px solid var(--dropbe-text, #0e0502);
  background-color: transparent;
  padding: 14px 40px;
}
.product__item__link:hover {
  color: var(--dropbe-white, #fff);
  border-color: var(--dropbe-primary, #e26d47);
}
.product__item__element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.product-one {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .product-one {
    padding: 80px 0;
  }
}
.product-one--page {
  padding-top: 0px;
}
@media (max-width: 767px) {
  .product-one--page {
    padding-top: 60px;
  }
}
.product-one--home {
  position: relative;
  padding: 0 0 90px;
}
@media (max-width: 767px) {
  .product-one--home {
    padding-bottom: 50px;
  }
}
.product-one--home .sec-title {
  text-align: center;
}
.product-one--home .product__item {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .product-one__carousel .owl-nav {
    display: none;
  }
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
}
@media (min-width: 1199px) {
  .product-details__content {
    margin-left: 20px;
  }
}
@media (min-width: 1199px) {
  .product-details__img {
    margin-right: 35px;
  }
}
.product-details__img__item {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background-color: rgb(253, 246, 235);
  padding: 64px 0;
}
.product-details__img__item img {
  object-fit: cover;
  width: auto;
}
.product-details__slick-button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}
.product-details__slick-button--prev, .product-details__slick-button--next {
  position: absolute;
  top: 70%;
  left: 10px;
  z-index: 1;
}
.product-details__slick-button--next {
  left: auto;
  right: 10px;
}
.product-details__slick-button i {
  border: none;
  outline: none;
  width: 60px;
  height: 60px;
  background-color: var(--dropbe-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dropbe-text, #0e0502);
  border-radius: 50%;
  font-size: 16px;
  color: var(--dropbe-text, #0e0502);
  transition: all 500ms ease;
}
.product-details__slick-button i:hover {
  background-color: var(--dropbe-black, #302a1f);
  color: var(--dropbe-white, #fff);
}
.product-details__thumb-box {
  margin-top: -50px;
  width: 270px;
  margin-bottom: -175px;
  transform: rotate(90deg);
  margin-left: auto;
  margin-right: auto;
}
.product-details__thumb {
  position: relative;
}
.product-details__thumb__image {
  height: 130px;
  max-height: 100%;
  width: 95px;
  border-radius: 30px;
  border: 2px solid var(--dropbe-border-color, #d7d3c0);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dropbe-white, #fff);
  margin: 4px 0px;
}
.product-details__thumb__image img {
  transform: rotate(-90deg);
}
.product-details__content {
  position: relative;
  margin: -10px 0 0 0;
}
@media (max-width: 991px) {
  .product-details__content {
    margin: 50px 0 0;
  }
}
.product-details__top {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.product-details__title {
  margin: 0;
  font-size: 32px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1;
  left: 993.892px;
  top: 716.154px;
  z-index: 227;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.product-details__price {
  font-size: 28px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.143;
  margin-bottom: 8px;
}
.product-details__price del {
  font-size: 14px;
  color: rgba(8, 5, 1, 0.5019607843);
  line-height: 2.286;
  margin-left: 29px;
}
.product-details__price span {
  font-size: 14px;
  color: #f42647;
  line-height: 2.286;
  margin-left: 10px;
}
.product-details__price a {
  font-size: 13px;
  text-transform: capitalize;
  color: var(--dropbe-text-dark, #0E0B06);
  line-height: 2.462;
  text-align: center;
  border-radius: 3px;
  padding: 5px 6px;
  background-color: #bde6a7;
  margin-left: 7px;
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  font-size: 16px;
  color: #efce4a;
  margin-bottom: 35px;
}
.product-details__review span:last-child {
  color: var(--dropbe-gray, #f5e2c6);
}
.product-details__review a {
  display: inline-block;
  letter-spacing: 0;
  font-weight: 500;
  transition: all 500ms ease;
  font-size: 14px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 2.286;
}
.product-details__review a:hover {
  color: var(--dropbe-base, #ffb336);
}
.product-details__excerpt-text1 {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 1.875;
}
.product-details__list {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  line-height: 2;
  font-weight: 500;
}
.product-details__list i {
  margin-right: 10px;
}
.product-details__list span {
  font-weight: bold;
}
.product-details__quantity-box {
  display: flex;
  align-items: end;
  margin: 20px 0 30px;
}
.product-details__quantity {
  position: relative;
}
.product-details__quantity-title {
  margin: 0;
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #2a2826;
  font-weight: bold;
  line-height: 15px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.product-details__quantity .quantity-box {
  position: relative;
  width: 120px;
  height: 45px;
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
}
.product-details__quantity .quantity-box input {
  width: 98px;
  height: 45px;
  border: none;
  appearance: textfield;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  padding-left: 26px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
}
.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  color: var(--dropbe-text, #0e0502);
  font-size: 14px;
  position: absolute;
  top: 1px;
  right: 15px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
}
.product-details__quantity .quantity-box button:hover {
  color: var(--dropbe-base, #ffb336);
}
.product-details__buttons {
  margin-left: 30px;
}
.product-details__buttons .dropbe-btn {
  border-radius: 5px;
  background-color: var(--dropbe-primary, #e26d47);
}
.product-details__buttons .dropbe-btn::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.product-details__action a {
  max-width: 45px;
  width: 100%;
  margin-left: 30px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f7f7;
  color: var(--dropbe-text-dark, #0E0B06);
}
.product-details__action a:hover {
  background-color: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
}
.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.product-details__socials__title {
  margin: 0;
  margin-right: 10px;
  flex: 0 0 100%;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(42, 40, 38, 0.8);
  line-height: 2;
}
@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}
.product-details__socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 14px;
  color: var(--dropbe-black, #302a1f);
  transition: all 500ms ease;
  border-radius: 50%;
}
.product-details__socials a:hover {
  color: var(--dropbe-base, #ffb336);
}
.product-details__socials a + a {
  margin-left: 15px;
}
.product-details .product-description {
  margin-top: 90px;
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
  padding: 0 60px 60px;
  border-radius: 10px;
  margin-bottom: 75px;
}
.product-details .product-description__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 5px;
}
.product-details .product-description__btn .dropbe-btn {
  border-radius: 0 0 10px 10px;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  color: var(--dropbe-text-dark, #0E0B06);
  line-height: 1.778;
  background-color: #fdf5e7;
  padding-top: 10px;
  padding-bottom: 10px;
}
.product-details .product-description__btn .active-btn,
.product-details .product-description__btn .dropbe-btn:hover {
  background-color: var(--dropbe-base, #ffb336);
}
.product-details .product-description__btn .active-btn::before,
.product-details .product-description__btn .dropbe-btn:hover::before {
  background-color: var(--dropbe-base, #ffb336);
}
.product-details .product-description .product-description__text + .product-description__text {
  margin-top: 30px;
}
.product-details .product-description__text {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 1.875;
  text-align: center;
}
.product-details__product__title {
  margin-bottom: 40px;
  font-size: 36px;
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 0.889;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  z-index: 1;
}
.cart-page .table-responsive {
  position: relative;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}
@media (min-width: 1199px) {
  .cart-page .table-responsive {
    margin-right: -30px;
  }
}
@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-right: 0px;
  }
}
.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 60px;
}
@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}
.cart-page__table thead tr th {
  padding: 0 0 24px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #eaeaea !important;
  box-shadow: none;
  font-size: 18px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #2a2826;
  text-transform: capitalize;
  font-weight: bold;
  line-height: 1.889;
}
.cart-page__table thead tr th:last-child {
  text-align: right;
}
.cart-page__table tbody tr td {
  font-weight: 700;
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 30px 0;
  letter-spacing: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #2a2826;
  line-height: 1.625;
}
.cart-page__table tbody tr td:last-child {
  text-align: right;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
}
.cart-page__table__meta-img {
  width: 92px;
  height: 92px;
  background-color: #f9efe0;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.cart-page__table__meta-img img {
  object-fit: cover;
  mix-blend-mode: multiply;
}
.cart-page__table__meta-title {
  text-transform: capitalize;
  margin: 0;
  font-weight: bold;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #2a2826;
  line-height: 1.625;
  text-align: left;
}
.cart-page__table__meta-title a {
  color: inherit;
}
.cart-page__table__meta-title a:hover {
  color: var(--dropbe-base, #ffb336);
}
.cart-page__table__remove {
  position: absolute;
  left: 80px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--dropbe-text-dark, #0E0B06);
  font-size: 10px;
  background-color: var(--dropbe-base, #ffb336);
}
.cart-page__table__quantity .quantity-box {
  position: relative;
  width: 156px;
  height: 50px;
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
  border-radius: 4px;
  background-color: #fcf8f2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-page__table__quantity .quantity-box input {
  width: 60px;
  height: 50px;
  border: none;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  color: var(--dropbe-text, #0e0502);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
}
.cart-page__table__quantity .quantity-box button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--dropbe-text, #0e0502);
  font-size: 16px;
  background-color: var(--dropbe-white, #fff);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.cart-page__table__quantity .quantity-box button:hover {
  color: var(--dropbe-white, #fff);
  background-color: var(--dropbe-primary, #e26d47);
}
.cart-page__coupone__title {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  line-height: 1.889;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.cart-page__coupone__link {
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-primary, #e26d47);
  font-weight: bold;
  text-decoration: underline;
  line-height: 1.267;
}
.cart-page__coupone-form {
  position: relative;
  display: flex;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .cart-page__coupone-form {
    display: block;
  }
}
.cart-page__coupone-form input[type=text] {
  height: 58px;
  width: 80%;
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
  background-color: transparent;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  border-radius: 3px;
  font-size: 16px;
  color: var(--dropbe-text, #0e0502);
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  font-weight: 500;
}
.cart-page__coupone-form input[type=text]::placeholder {
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(70, 70, 70, 0.5019607843);
  line-height: 1.267;
}
@media (max-width: 1199px) {
  .cart-page__coupone-form input[type=text] {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .cart-page__coupone-form input[type=text] {
    width: 100%;
    margin: 0 0 10px;
  }
}
.cart-page__coupone-form button {
  border-radius: 5px;
  margin-left: -5px;
  background-color: var(--dropbe-base, #ffb336);
  color: var(--dropbe-text, #0e0502);
  font-weight: 700;
}
.cart-page__coupone-form button::before {
  background-color: var(--dropbe-primary, #e26d47);
}
.cart-page__cart-total {
  position: relative;
  margin: -8px 0 24px;
  padding: 0;
}
@media (max-width: 991px) {
  .cart-page__cart-total {
    text-align: left;
    margin-top: 45px;
  }
}
.cart-page__cart-total li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
  margin: 0 0 0px;
  font-size: 18px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #2a2826;
  font-weight: bold;
  line-height: 1.889;
}
.cart-page__cart-total li + li {
  margin-top: 30px;
}
.cart-page__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 991px) {
  .cart-page__buttons {
    justify-content: flex-start;
  }
}
@media (min-width: 1199px) {
  .cart-page__cart-address {
    margin-left: 45px;
  }
}
.cart-page__cart-address__item {
  background-color: #fdfaf3;
  overflow: hidden;
}
.cart-page__cart-address__title {
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  color: #2a2826;
  font-weight: bold;
  line-height: 1.7;
  border-bottom: 1px solid #e4e2e0;
  padding-bottom: 10px;
}
.cart-page__cart-address__list {
  margin-bottom: 45px;
  padding: 23px 20px;
}
.cart-page__cart-address__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}
.cart-page__cart-address__list li span {
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  color: #2a2826;
  font-weight: bold;
  line-height: 1.1;
  text-align: left;
}
.cart-page__cart-address__list li:nth-child(3) {
  border-top: 1px solid #e4e2e0;
  border-bottom: 1px solid #e4e2e0;
}
.cart-page__cart-address__list li:first-child {
  padding-top: 0;
}
.cart-page__cart-address__list li:last-child {
  padding-bottom: 0px;
}
.cart-page__cart-address__name {
  margin: 0;
  font-size: 14px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #080501;
  line-height: 1.571;
  text-transform: capitalize;
}
.cart-page__cart-address__right span {
  font-size: 14px !important;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(42, 40, 38, 0.7019607843);
  font-weight: bold;
  line-height: 1.429;
  text-transform: capitalize;
  display: block;
}
.cart-page__cart-address__amount {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #2a2826;
  text-transform: capitalize;
  font-weight: bold;
  line-height: 1.125;
}
.cart-page__cart-address__link {
  font-size: 14px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  color: var(--dropbe-primary, #e26d47);
  font-weight: bold;
  text-decoration: underline;
  line-height: 1.429;
  display: block;
}
.cart-page__cart-address__btn a {
  width: 100%;
  background-color: var(--dropbe-primary, #e26d47);
  border-radius: 5px;
}
.cart-page__cart-address__btn a::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.cart-page__cart-address__btn a:hover {
  background-color: var(--dropbe-text-dark, #0E0B06);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  z-index: 1;
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page__billing-address__title {
  text-transform: capitalize;
  margin: 0 0 34px;
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #2a2826;
  font-weight: bold;
  line-height: 1.7;
  padding-bottom: 5px;
  border-bottom: 1px solid #eaeaea;
}
.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
}
.checkout-page__input-box label {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #080501;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel],
.checkout-page__input-box textarea {
  height: 60px;
  width: 100%;
  border: 1px solid #eaeaea;
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--dropbe-text, #0e0502);
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  display: block;
  font-weight: 500;
}
.checkout-page__input-box input[type=text]::placeholder,
.checkout-page__input-box input[type=email]::placeholder,
.checkout-page__input-box input[type=tel]::placeholder,
.checkout-page__input-box textarea::placeholder {
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(8, 5, 1, 0.5019607843);
  line-height: 1.267;
  text-transform: capitalize;
}
.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: 0;
  border: 1px solid #eaeaea;
  background-color: transparent !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(8, 5, 1, 0.5019607843);
  line-height: 60px;
  text-transform: capitalize;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: rgba(8, 5, 1, 0.5019607843);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--dropbe-border-color, #d7d3c0);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: none;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  color: var(--dropbe-text, #0e0502);
  background-color: var(--dropbe-base, #ffb336);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li:hover > a,
.checkout-page__input-box .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--dropbe-primary, #e26d47);
  color: var(--dropbe-white, #fff);
  border-color: var(--dropbe-primary, #e26d47);
}
.checkout-page__update {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  margin-bottom: 22px;
}
.checkout-page__checked-box {
  position: relative;
  display: block;
}
.checkout-page__checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(8, 5, 1, 0.8705882353);
  line-height: 1.867;
  font-weight: 600;
  text-transform: none;
  cursor: pointer;
}
.checkout-page__checked-box label span:before {
  position: absolute;
  top: 2px;
  left: 3px;
  display: block;
  border-bottom: 2px solid var(--dropbe-text, #0e0502);
  border-right: 2px solid var(--dropbe-text, #0e0502);
  content: "";
  width: 5px;
  height: 8px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__checked-box input[type=checkbox] {
  display: none;
}
.checkout-page__checked-box input[type=checkbox] + label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 1px solid #d8d7d6;
}
.checkout-page__checked-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__your-order {
  position: relative;
  margin: 32px 0 0;
}
.checkout-page__your-order__title {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 35px;
  font-weight: bold;
}
.checkout-page__your-order .dropbe-btn {
  padding: 16px 49.5px 17px;
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--dropbe-border-color, #d7d3c0);
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  font-size: 20px;
  color: var(--dropbe-black, #302a1f);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--dropbe-heading-font, "Myriad Pro", serif);
  margin: 0;
  padding: 15.5px 0;
  border: none;
  border-top: 1px solid var(--dropbe-border-color, #d7d3c0);
  border-bottom: 1px solid var(--dropbe-border-color, #d7d3c0);
  font-weight: bold;
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td {
  font-size: 16px;
  line-height: 24px;
  color: var(--dropbe-text, #0e0502);
  margin: 0;
  padding: 0 0 24px;
  border: none;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}
.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 26px;
}
.checkout-page__payment {
  background-color: var(--dropbe-gray, #f5e2c6);
  padding: 45px 50px 17px;
  min-height: 295px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .checkout-page__payment {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.checkout-page__payment__item {
  position: relative;
}
.checkout-page__payment__title {
  display: flex;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
  align-items: center;
  margin-bottom: 28px;
  cursor: pointer;
  font-weight: bold;
  color: var(--dropbe-black, #302a1f);
}
.checkout-page__payment__title::before {
  content: "";
  width: 19px;
  height: 19px;
  background-color: var(--dropbe-white, #fff);
  border: 2px solid var(--dropbe-border-color, #d7d3c0);
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  position: relative;
  top: 1px;
  transition: all 500ms ease;
}
.checkout-page__payment__title img {
  margin-left: 15px;
}
.checkout-page__payment__item--active .checkout-page__payment__title::before {
  background-color: var(--dropbe-base, #ffb336);
  border-color: var(--dropbe-base, #ffb336);
  content: "\f00c";
  color: var(--dropbe-white, #fff);
}
.checkout-page__payment__content {
  margin-left: 35px;
  margin-bottom: 39px;
  font-size: 15px;
  line-height: 30px;
}
.checkout-page textarea {
  height: 120px;
  border-radius: 15px;
  padding-top: 15px;
}

@media (min-width: 1199px) {
  .checkout-page__cart-address {
    margin-left: 40px;
  }
}
.checkout-page__cart-address__item {
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
  border-radius: 10px;
  padding: 30px 18px;
  background-color: #fefdfa;
  overflow: hidden;
}
.checkout-page__cart-address__title {
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  color: #2a2826;
  font-weight: bold;
  line-height: 1.7;
  border-bottom: 1px solid #e4e2e0;
  padding-bottom: 10px;
}
.checkout-page__cart-address__list {
  margin-bottom: 0;
}
.checkout-page__cart-address__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}
.checkout-page__cart-address__list li span {
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  color: #2a2826;
  font-weight: bold;
  line-height: 1.1;
  text-align: left;
}
.checkout-page__cart-address__list li:nth-child(2) {
  position: relative;
  z-index: 1;
}
.checkout-page__cart-address__list li:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  right: -20px;
  background-color: #fff1ec;
  z-index: -1;
}
.checkout-page__cart-address__list li:nth-child(4) {
  border-top: 1px solid #e4e2e0;
  border-bottom: 1px solid #e4e2e0;
}
.checkout-page__cart-address__list li:last-child {
  padding-bottom: 5px;
}
.checkout-page__cart-address__left {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.checkout-page__cart-address__image {
  max-width: 52px;
  width: 100%;
  height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeec;
}
.checkout-page__cart-address__name {
  margin: 0;
  font-size: 14px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #080501;
  line-height: 1.571;
  text-transform: capitalize;
}
.checkout-page__cart-address__right span {
  font-size: 14px !important;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(42, 40, 38, 0.7019607843);
  font-weight: bold;
  line-height: 1.429;
  text-transform: capitalize;
  display: block;
}
.checkout-page__cart-address__amount {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #2a2826;
  text-transform: capitalize;
  font-weight: bold;
  line-height: 1.125;
}
.checkout-page__cart-address__link {
  font-size: 14px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  color: var(--dropbe-primary, #e26d47);
  font-weight: bold;
  text-decoration: underline;
  line-height: 1.429;
  display: block;
}
.checkout-page__cart-address__item + .checkout-page__cart-payment__item {
  margin-top: 30px;
}
.checkout-page__cart-payment__item {
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
  border-radius: 10px;
  padding: 30px 18px;
  background-color: #fefdfa;
  overflow: hidden;
}
.checkout-page__cart-payment__title {
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  color: #2a2826;
  font-weight: bold;
  line-height: 1.7;
  border-bottom: 1px solid #e4e2e0;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.checkout-page__cart-payment__list {
  margin-bottom: 30px;
}
.checkout-page__cart-payment__list__item {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #2a2826;
  line-height: 1.125;
  text-align: left;
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
  border-radius: 5px;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.checkout-page__cart-payment__list__item i {
  margin-right: 10px;
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
.checkout-page__cart-payment__list__item:hover, .checkout-page__cart-payment__list__item.active {
  border-color: #147b3b;
}
.checkout-page__cart-payment__list__item:hover i, .checkout-page__cart-payment__list__item.active i {
  color: #147b3b;
}
.checkout-page__cart-payment__list__item + .checkout-page__cart-payment__list__item {
  margin-top: 11px;
}
.checkout-page__cart-payment__btn {
  margin-top: 5px;
  margin-bottom: 20px;
}
.checkout-page__cart-payment__btn a {
  width: 100%;
  border-radius: 5px;
  background-color: var(--dropbe-primary, #e26d47);
}
.checkout-page__cart-payment__btn a::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.checkout-page__cart-payment__btn a:hover {
  background-color: var(--dropbe-text-dark, #0E0B06);
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
  position: relative;
  z-index: 1;
}
.login-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.login-page__title {
  margin: 0;
  font-size: 50px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 100%;
  text-align: center;
  margin-bottom: 77px;
}
.login-page__wrap {
  position: relative;
  background-color: var(--dropbe-white, #fff);
  padding: 40px 50px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .login-page__wrap {
    padding: 30px 30px;
  }
}
.login-page__wrap__title {
  font-size: 36px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.333;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.login-page__form {
  position: relative;
  display: block;
}
.login-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password],
.login-page__form-input-box input[type=text] {
  height: 60px;
  width: 100%;
  border: 1px solid #edebe8;
  background-color: transparent;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--dropbe-text, #0e0502);
  display: block;
  font-weight: 600;
}
.login-page__form-input-box input[type=email]::placeholder,
.login-page__form-input-box input[type=password]::placeholder,
.login-page__form-input-box input[type=text]::placeholder {
  font-size: 16px;
  color: rgba(14, 11, 6, 0.5019607843);
  line-height: normal;
  font-weight: 600;
}
.login-page__update {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -8px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .login-page__update {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.login-page__checked-box {
  position: relative;
  display: block;
}
.login-page__checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: rgba(14, 11, 6, 0.5019607843);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
}
.login-page__checked-box label span:before {
  position: absolute;
  top: 2px;
  left: 3px;
  display: block;
  border-bottom: 2px solid var(--dropbe-text, #0e0502);
  border-right: 2px solid var(--dropbe-text, #0e0502);
  content: "";
  width: 5px;
  height: 8px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.login-page__checked-box input[type=checkbox] {
  display: none;
}
.login-page__checked-box input[type=checkbox] + label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: #f9f5ed;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 1px solid #d8d7d6;
}
.login-page__checked-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.login-page__form-forgot-password {
  position: relative;
  display: block;
  margin-left: 0px;
  flex: 0 0 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .login-page__form-forgot-password {
    margin-left: 20px;
    flex: 0 0 auto;
    margin-top: 0;
  }
}
.login-page__form-forgot-password a {
  color: rgba(14, 11, 6, 0.5019607843);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.login-page__form-forgot-password a:hover {
  background-size: 100% 1px;
}
.login-page__form-forgot-password a:hover {
  color: var(--dropbe-base, #ffb336);
}
.login-page__form-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.login-page__form-btn-box .dropbe-btn {
  width: 100%;
  text-transform: capitalize;
  font-weight: 600;
  background-color: var(--dropbe-primary, #e26d47);
}
.login-page__form-btn-box .dropbe-btn::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.login-page__form-btn-box .dropbe-btn:hover {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.login-page__or {
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 3.455;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  display: block;
}
.login-page__button {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .login-page__button {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.login-page__button a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  line-height: 1.5;
  text-transform: capitalize;
  text-align: left;
  padding: 15px 18px;
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
}
.login-page .form-one__group .login-page__form-input-box {
  margin-bottom: 0;
}
.login-page .login-page__form-singup .login-page__update {
  margin-top: 11px !important;
}
.login-page .login-page__form-singup .login-page__checked-box label {
  color: var(--dropbe-text-dark, #0E0B06);
}
.login-page .login-page__form-singup .login-page__checked-box {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: 600;
}
.login-page .login-page__form-singup .login-page__checked-box a {
  color: inherit;
  text-decoration: underline;
}
.login-page .login-page__form-singup .login-page__checked-box a:hover {
  color: var(--dropbe-base, #ffb336);
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
  position: relative;
  z-index: 1;
  padding-top: 211px;
  overflow: hidden;
}
.error-404 .container {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}
.error-404__inner {
  position: relative;
  z-index: 1;
}
.error-404__inner::after {
  content: "";
  width: 1200px;
  height: 1200px;
  position: absolute;
  bottom: -300px;
  left: 0;
  border-radius: 50%;
  background-color: #fdfbf8;
  z-index: -1;
  animation: beeScaleTwo 3s ease-in-out infinite;
}
.error-404__top {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 75px;
}
.error-404__top__item-one img {
  object-fit: cover;
}
@media (max-width: 767px) {
  .error-404__top__item-one img {
    width: 100%;
  }
}
.error-404__top__item-two {
  position: absolute;
  top: -96px;
  left: 30%;
}
.error-404__top__item-two img {
  animation: xTranslate 4s ease-in-out infinite;
  animation-delay: 0.5s;
}
.error-404__sub-title {
  font-size: 34px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}
.error-404__text {
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 37px;
}
.error-404__search {
  position: relative;
  margin-bottom: 40px;
  border-radius: 3px;
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e8e6e3;
}
.error-404__search input[type=text] {
  border: none;
  outline: none;
  display: block;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(130, 126, 118, 0.7019607843);
  line-height: 1.125;
  max-width: 550px;
  width: 100%;
  padding-left: 30px;
  height: 62px;
}
.error-404__search input[type=text]::placeholder {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgba(130, 126, 118, 0.7019607843);
  line-height: 1.125;
  text-transform: capitalize;
}
.error-404__search__btn {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 18px;
}
.error-404__btns {
  text-align: center;
}
.error-404__btns a {
  padding-left: 50px;
  padding-right: 50px;
  background-color: var(--dropbe-primary, #e26d47);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
}
.error-404__btns a:hover {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.error-404__btns a::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  z-index: 1;
}
.faq-page__sec-title__title {
  margin: 0;
  font-size: 43px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.163;
  margin-bottom: 27px;
}
.faq-page__sec-title__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 1.667;
}
.faq-page__top__btn {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 991px) {
  .faq-page__top__btn {
    justify-content: start;
  }
}
.faq-page__top__btn a {
  max-width: 105px;
  height: 105px;
  width: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-transform: capitalize;
  font-size: 18px;
  color: var(--dropbe-white, #fff);
  font-weight: bold;
  line-height: 1.667;
  background-color: var(--dropbe-primary, #e26d47);
}
.faq-page__inner {
  position: relative;
  z-index: 1;
  background-color: #f8f6f0;
  max-width: 1550px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0;
  border-radius: 6px;
}
.faq-page__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  background-image: url(../images/shapes/faq-bg-1-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  border-radius: 6px;
}
.faq-page__accordion {
  border-top: 1px dashed var(--dropbe-primary, #e26d47);
  margin-top: 50px;
  padding-top: 43px;
}
.faq-page__accordion__title {
  margin: 0;
  font-size: 28px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.786;
  text-align: left;
  margin-bottom: 30px;
}
.faq-page__accordion .accrodion {
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
  background-color: var(--dropbe-white, #fff);
  border-radius: 10px;
}
.faq-page__accordion .accrodion + .accrodion {
  margin-top: 20px;
}
.faq-page__accordion .accrodion-title {
  padding: 21.4px 30px;
  padding-right: 70px;
  cursor: pointer;
}
.faq-page__accordion .accrodion-title h4 {
  margin: 0;
  transition: all 500ms ease;
  text-transform: capitalize;
  position: relative;
  font-size: 22px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #01050c;
  font-weight: bold;
  line-height: 1.2;
}
.faq-page__accordion .accrodion-title__icon {
  width: 33px;
  height: 33px;
  background-color: var(--dropbe-primary, #e26d47);
  background-color: #f6eae7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}
.faq-page__accordion .accrodion-title__icon::after, .faq-page__accordion .accrodion-title__icon::before {
  width: 2px;
  height: 12px;
  position: absolute;
  background-color: var(--dropbe-base, #ffb336);
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}
.faq-page__accordion .accrodion-title__icon::after {
  width: 12px;
  height: 2px;
}
.faq-page__accordion .active {
  border: 1px solid #01050c;
}
.faq-page__accordion .active .accrodion-title__icon {
  background-color: var(--dropbe-primary, #e26d47);
}
.faq-page__accordion .active .accrodion-title__icon::after, .faq-page__accordion .active .accrodion-title__icon::before {
  background-color: var(--dropbe-white, #fff);
  opacity: 0;
}
.faq-page__accordion .active .accrodion-title__icon::after {
  opacity: 1;
}
.faq-page__accordion .accrodion-content .inner {
  padding: 10px 30px 37px;
  margin-top: -3px;
}
.faq-page__accordion .accrodion-content .inner p {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  color: #827e76;
  line-height: 1.875;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-card {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  background-color: var(--dropbe-white, #fff);
}
.package-card__image {
  position: relative;
  overflow: hidden;
}
.package-card__image > img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}
.package-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--dropbe-black-rgb, 48, 42, 31), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.package-card__image__link::before, .package-card__image__link::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.package-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.package-card:hover .package-card__image > a {
  opacity: 1;
  transform: translateY(0);
}
.package-card:hover .package-card__image > img {
  transform: scale(1.05);
}
.package-card__content {
  background-repeat: no-repeat;
  background-position: right bottom;
  position: relative;
  padding: 50px;
}
.package-card__content__shape {
  display: block;
  width: auto !important;
}
.package-card__price {
  width: 81px;
  height: 81px;
  background-color: var(--dropbe-base, #ffb336);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dropbe-white, #fff);
  font-size: 18px;
  position: absolute;
  right: 40px;
  top: 0;
  transform: translateY(-50%);
  line-height: 1;
}
@media (min-width: 768px) {
  .package-card__price {
    font-size: 20px;
  }
}
.package-card__title {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--dropbe-black, #302a1f);
  font-size: 22px;
  line-height: 1.2em;
  margin-top: -5px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .package-card__title {
    font-size: 24px;
  }
}
.package-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.package-card__title a:hover {
  background-size: 100% 1px;
}
.package-card__title a:hover {
  color: var(--dropbe-base, #ffb336);
}
.package-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
  border-bottom: 1px solid var(--dropbe-border-color, #d7d3c0);
  margin-top: 10px;
  padding-bottom: 21px;
  margin-bottom: 6px;
}
.package-card__link {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--dropbe-letter-space, 0.1em);
  color: var(--dropbe-black, #302a1f);
  transition: all 500ms ease;
  line-height: 1em;
  position: relative;
  top: 10px;
  text-shadow: 0 0 1px currentColor;
}
.package-card__link:hover {
  color: var(--dropbe-base, #ffb336);
}
.package-card__link i {
  font-size: 16px;
  margin-left: 9px;
}

.package-page {
  padding: 120px 0;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .package-page {
    padding: 80px 0;
    padding-top: 60px;
  }
}

/*--------------------------------------------------------------
# Offer
--------------------------------------------------------------*/
.offer-one {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .offer-one {
    padding-bottom: 80px;
  }
}
.offer-one--home {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .offer-one--home {
    padding: 80px 0;
  }
}
.offer-one .container-fluid {
  max-width: 1604px;
}
.offer-one__card {
  padding: 20px;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.offer-one__card::before {
  background: linear-gradient(90deg, rgba(var(--dropbe-white-rgb, 255, 255, 255), 0.13) 0px, rgba(var(--dropbe-white-rgb, 255, 255, 255), 0.13) 77%, rgba(var(--dropbe-white-rgb, 255, 255, 255), 0.5) 92%, rgba(var(--dropbe-white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.7s ease 0s;
  width: 200%;
}
.offer-one__card:hover::before {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.offer-one__card__inner {
  position: relative;
  border: 1px solid var(--dropbe-white, #fff);
  padding: 40px;
}
@media (min-width: 992px) {
  .offer-one__card__inner {
    padding: 50px;
  }
}
.offer-one__card__shape {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
@media (min-width: 992px) {
  .offer-one__card__shape {
    display: block;
  }
}
.offer-one__card__value {
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  font-weight: 400;
  font-size: 30px;
  color: var(--dropbe-base, #ffb336);
  line-height: 1;
  margin: 0;
}
@media (min-width: 992px) {
  .offer-one__card__value {
    font-size: 40px;
  }
}
.offer-one__card__title {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  font-size: 30px;
  line-height: 1.2em;
  margin-bottom: 17px;
}
@media (min-width: 992px) {
  .offer-one__card__title {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Membership
--------------------------------------------------------------*/
.membership-one {
  padding: 120px 0;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .membership-one {
    padding: 80px 0;
    padding-top: 60px;
  }
}
.membership-one .sec-title {
  text-align: center;
  padding-bottom: 25px;
}
.membership-one__tab__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.membership-one__tab__list li {
  cursor: pointer;
}
.membership-one__tab__list li span {
  display: block;
  font-size: 10px;
  background-color: var(--dropbe-gray, #f5e2c6);
  transition: all 500ms ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: var(--dropbe-letter-space, 0.1em);
  padding: 15px 20px;
  line-height: 1.2em;
  color: var(--dropbe-text, #0e0502);
}
.membership-one__tab__list li.active-btn span, .membership-one__tab__list li:hover span {
  background-color: var(--dropbe-base, #ffb336);
  color: var(--dropbe-white, #fff);
}
.membership-one__card {
  background-repeat: no-repeat;
  background-position: top right;
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
  padding: 50px;
  background-color: var(--dropbe-white, #fff);
  transition: all 500ms ease;
}
.membership-one__card:hover {
  border-color: var(--dropbe-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.membership-one__card__price {
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  color: var(--dropbe-black, #302a1f);
  line-height: 1;
  font-size: 40px;
  line-height: 1em;
  font-weight: 500;
}
.membership-one__card__tagline {
  margin: 0;
  font-size: 16px;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  line-height: 2.5em;
  color: var(--dropbe-text, #0e0502);
  border-bottom: 1px solid var(--dropbe-border-color, #d7d3c0);
  padding-bottom: 16px;
  margin-bottom: 33px;
}
.membership-one__card__text {
  margin: 0;
  font-weight: 600;
  color: var(--dropbe-black, #302a1f);
  font-size: 16px;
  line-height: 2.5em;
  margin-top: 13px;
}
.membership-one__card__list {
  margin-bottom: 26px;
}
.membership-one__card__list li {
  position: relative;
  font-size: 16px;
  line-height: 2.5em;
  color: var(--dropbe-text, #0e0502);
  display: flex;
  justify-content: center;
  align-items: center;
}
.membership-one__card__list li > i {
  font-size: 14px;
  color: var(--dropbe-base, #ffb336);
  margin-right: 10px;
  position: relative;
  top: 1px;
}

.membership-two {
  padding: 120px 0;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .membership-two {
    padding: 80px 0;
    padding-top: 60px;
  }
}
.membership-two--padding {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .membership-two--padding {
    padding: 80px 0;
  }
}
.membership-two .sec-title {
  text-align: center;
}
.membership-two-card {
  background-repeat: no-repeat;
  background-position: top right;
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
  padding: 36px 40px;
  transition: all 500ms ease;
  background-color: var(--dropbe-white, #fff);
}
.membership-two-card:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
@media (min-width: 992px) {
  .membership-two-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.membership-two-card__icon i,
.membership-two-card__icon span {
  color: var(--dropbe-base, #ffb336);
  font-size: 60px;
}
@media (min-width: 992px) {
  .membership-two-card__icon {
    margin-right: 30px;
  }
}
.membership-two-card__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--dropbe-black, #302a1f);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: bold;
}
.membership-two-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.membership-two-card__title a:hover {
  background-size: 100% 1px;
}
.membership-two-card__text {
  font-size: 15px;
  line-height: 2em;
  margin: 0;
}
.membership-two-card__price {
  margin: 0;
  color: var(--dropbe-base, #ffb336);
  font-size: 16px;
  line-height: 1.6666666667em;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .membership-two-card__price {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .membership-two-card__price {
    margin-left: 90px;
  }
}
@media (min-width: 1200px) {
  .membership-two-card__price {
    margin-top: 0;
    margin-left: auto;
  }
}

/*--------------------------------------------------------------
# Gift Card
--------------------------------------------------------------*/
.gift-page {
  padding: 120px 0;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .gift-page {
    padding: 80px 0;
    padding-top: 60px;
  }
}
@media (min-width: 992px) {
  .gift-page__carousel .owl-nav {
    display: none;
  }
}

.gift-card-one {
  background-repeat: no-repeat;
  background-position: left top;
  border: 1px solid var(--dropbe-border-color, #d7d3c0);
  text-align: center;
  padding: 30px;
  position: relative;
  transition: all 500ms ease;
}
.gift-card-one:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.gift-card-one__inner {
  padding: 45px;
  border: 6px solid var(--dropbe-black, #302a1f);
  transition: all 500ms ease;
}
.gift-card-one:hover .gift-card-one__inner {
  border-color: var(--dropbe-base, #ffb336);
}
.gift-card-one__flower {
  position: absolute;
  top: 0;
  right: 0;
  width: auto !important;
  animation: flowerRotate 2s linear 0s infinite;
}
.gift-card-one__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--dropbe-black, #302a1f);
  font-weight: bold;
  font-size: 25px;
  line-height: 1em;
  margin-top: -5px;
}
@media (min-width: 768px) {
  .gift-card-one__title {
    font-size: 30px;
  }
}
.gift-card-one__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  color: inherit;
}
.gift-card-one__title a:hover {
  background-size: 100% 1px;
}
.gift-card-one__title a:hover {
  color: var(--dropbe-base, #ffb336);
}
.gift-card-one__price {
  margin: 0;
  font-size: 20px;
  color: var(--dropbe-base, #ffb336);
  line-height: 1.5em;
}
.gift-card-one__code {
  margin: 0;
  font-size: 16px;
  color: var(--dropbe-black, #302a1f);
  line-height: 22px;
}
.gift-card-one__shape {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto !important;
  margin-top: 25px;
  margin-bottom: 25px;
}
.gift-card-one__text {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--dropbe-letter-space-xl, 0.2em);
  line-height: 22px;
  margin-bottom: 23px;
}
.gift-card-one__link {
  font-size: 10px;
  padding: 11px 29.5px;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes xTranslate {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes xTranslateTwo {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes yTranslateTwo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes yTranslate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes beeScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes beeScaleTwo {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--dropbe-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--dropbe-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dropbe-black, #302a1f);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--dropbe-black, #302a1f);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--dropbe-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--dropbe-base, #ffb336);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--dropbe-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--dropbe-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--dropbe-white, #fff);
  font-size: 16px;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  text-transform: capitalize;
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--dropbe-base, #ffb336);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--dropbe-primary, #e26d47);
  border: none;
  outline: none;
  color: var(--dropbe-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--dropbe-white, #fff);
  color: var(--dropbe-black, #302a1f);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--dropbe-white, #fff);
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--dropbe-base, #ffb336);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--dropbe-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--dropbe-base, #ffb336);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--dropbe-primary, #e26d47);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
  color: var(--dropbe-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--dropbe-white, #fff);
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text, #0e0502);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .dropbe-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--dropbe-primary, #e26d47);
}
.search-popup__form .dropbe-btn i {
  margin: 0;
}
.search-popup__form .dropbe-btn::after {
  background-color: var(--dropbe-base, #ffb336);
}
.search-popup__form .dropbe-btn:hover {
  background-color: var(--dropbe-base, #ffb336);
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--dropbe-base, #ffb336);
  position: relative;
  padding-top: 200px;
  padding-bottom: 120px;
  z-index: 1;
}
@media (min-width: 992px) {
  .page-header {
    padding-top: 250px;
    padding-bottom: 165px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.page-header .container {
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-header__title {
  margin: 0;
  font-weight: 700;
  font-size: 50px;
  color: var(--dropbe-text, #0e0502);
  line-height: 1.1;
  text-align: center;
  margin-top: -5px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-header__title {
    font-size: 72px;
  }
}
.page-header__element-one {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 991px) {
  .page-header__element-one {
    display: none;
  }
}
.page-header__element-two {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 5%;
}
.page-header__element-two img {
  animation: xTranslate 2s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 991px) {
  .page-header__element-two {
    display: none;
  }
}
.page-header__element-three {
  position: absolute;
  bottom: 25%;
  transform: translateY(50%);
  right: 3%;
}
.page-header__element-three img {
  animation: xTranslate 2s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 991px) {
  .page-header__element-three {
    display: none;
  }
}
.page-header__element-four {
  position: absolute;
  bottom: 35%;
  transform: translateY(50%);
  left: 30%;
}
.page-header__element-four img {
  animation: beeScaleTwo 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .page-header__element-four {
    display: none;
  }
}
.page-header__element-five {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20%;
}
.page-header__element-five img {
  animation: beeScaleTwo 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 1199px) {
  .page-header__element-five {
    display: none;
  }
}
.page-header__element-six {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: 20%;
}
.page-header__element-six img {
  animation: xTranslate 2s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 991px) {
  .page-header__element-six {
    display: none;
  }
}
.page-header::before {
  content: "";
  top: 60%;
  left: 35%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(252, 228, 193) 0%, rgba(250, 234, 210, 0) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(252, 228, 193) 0%, rgba(250, 234, 210, 0) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(252, 228, 193) 0%, rgba(250, 234, 210, 0) 100%);
  position: absolute;
  width: 448px;
  height: 448px;
  z-index: -1;
}
.page-header::after {
  content: "";
  top: 55%;
  right: 0%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(252, 228, 193) 0%, rgba(250, 234, 210, 0) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(252, 228, 193) 0%, rgba(250, 234, 210, 0) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(252, 228, 193) 0%, rgba(250, 234, 210, 0) 100%);
  position: absolute;
  width: 448px;
  height: 448px;
  z-index: -1;
}

.dropbe-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 13px;
}
@media (min-width: 768px) {
  .dropbe-breadcrumb {
    margin-bottom: 7px;
  }
}
.dropbe-breadcrumb li {
  text-transform: capitalize;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: var(--dropbe-text, #0e0502);
  line-height: 1.667;
  text-align: center;
}
.dropbe-breadcrumb li:not(:last-of-type)::after {
  content: "\f054";
  position: relative;
  font-size: 10px;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  margin-left: 15px;
  margin-right: 15px;
}
.dropbe-breadcrumb li span,
.dropbe-breadcrumb li a {
  color: inherit;
  display: inline-flex;
  line-height: 1em;
}
.dropbe-breadcrumb li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.dropbe-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.dropbe-breadcrumb li a:hover {
  color: var(--dropbe-primary, #e26d47);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}
.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 440px;
  width: 100%;
  mix-blend-mode: luminosity;
}
.google-map__contact {
  overflow: hidden;
  background-color: var(--dropbe-gray, #f5e2c6);
}

.contact-map {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .contact-map {
    padding-bottom: 45px;
  }
}
.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
  max-width: 1654px;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  background-color: var(--dropbe-base, #ffb336);
  background-image: url(../images/shapes/client-carousel-bg-1-1.jpg);
  background-size: cover;
  padding: 80px 0;
}
@media (min-width: 992px) {
  .client-carousel {
    padding: 102px 0;
  }
}
.client-carousel__one__item img {
  opacity: 0.2;
  transition: all 500ms ease;
  max-width: 100%;
  width: auto !important;
}
.client-carousel__one__item:hover img {
  opacity: 0.6;
}

.client-carousel-one {
  position: relative;
  background: var(--dropbe-white, #fff);
  padding: 0 0 60px;
}
.client-carousel-one .client-carousel__one {
  padding: 74px 0 0;
}
.client-carousel-one .owl-theme .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  line-height: 0.8;
}
.client-carousel-one .owl-theme .owl-nav button {
  width: 26px;
  height: 27px;
  background-color: var(--dropbe-gray, #f5e2c6);
  margin: 0 2.5px;
  padding: 0;
  transition: all 500ms ease;
  font-size: 12px;
  color: var(--dropbe-black, #302a1f);
  text-align: center;
  font-size: 12px;
  line-height: 27px;
  border-radius: 0;
}
.client-carousel-one .owl-theme .owl-nav button:hover {
  background-color: var(--dropbe-base, #ffb336);
  color: var(--dropbe-white, #fff);
}
.client-carousel-one .owl-theme .owl-nav::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  content: "";
  height: 1px;
  background-color: var(--dropbe-border-color, #d7d3c0);
  z-index: -1;
}
.client-carousel-one .owl-theme .owl-nav::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 110px;
  content: "";
  height: 1px;
  background-color: var(--dropbe-white, #fff);
}
.client-carousel-one .client-carousel__one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 103px;
  transition: all 500ms ease;
}
.client-carousel-one .client-carousel__one__item img {
  transition: all 500ms ease;
  opacity: 0.2;
  max-width: 100%;
  width: auto;
}
.client-carousel-one .client-carousel__one__item:hover {
  background-color: #f8f5f0;
}
.client-carousel-one .client-carousel__one__item:hover img {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero-one {
  position: relative;
  background-color: var(--dropbe-hero, #f4d3a2);
  padding-top: 108px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-one {
    padding-bottom: 120px;
  }
}
.hero-one__bg {
  position: absolute;
  top: -40px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
}
.hero-one__container {
  margin-right: -57px;
  padding-top: 132px;
  padding-bottom: 160px;
}
@media (max-width: 1199px) {
  .hero-one__container {
    padding-bottom: 30px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .hero-one__container {
    padding-top: 100px;
  }
}
.hero-one__title {
  margin: 0;
  font-size: 118px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0b06;
  font-weight: bold;
  line-height: 1.017;
  text-align: left;
  margin-bottom: 48px;
}
@media (max-width: 1400px) {
  .hero-one__title {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .hero-one__title {
    font-size: 70px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .hero-one__title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-one__title {
    font-size: 50px;
  }
}
@media (max-width: 400px) {
  .hero-one__title {
    font-size: 40px;
  }
}
.hero-one__text {
  margin: 0;
  margin-right: 120px;
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #5a5047;
  line-height: 1.7;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .hero-one__text {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .hero-one__text {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .hero-one__text {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .hero-one__text {
    font-size: 16px;
  }
}
.hero-one__btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero-one__btn {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.hero-one__btn .dropbe-btn {
  margin-right: 20px;
  padding: 20px 40px;
  border-radius: 0px;
  background-color: var(--dropbe-primary, #e26d47);
}
.hero-one__btn .dropbe-btn::before {
  background-color: var(--dropbe-text, #0e0502);
}
.hero-one__btn__funfact__count {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 43px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0b06;
  font-weight: bold;
  line-height: 0.744;
  text-align: left;
  margin-bottom: 5px;
}
.hero-one__btn__funfact__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #8d8579;
  line-height: 1.778;
  text-align: left;
}
.hero-one__btn__image {
  display: flex;
  align-items: center;
}
.hero-one__btn__image img {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--dropbe-white, #fff);
  margin-left: -20px;
}
.hero-one__btn__image img:first-child {
  margin-left: 0;
}
.hero-one__btn__pluse {
  margin-left: -20px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 3px solid var(--dropbe-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: var(--dropbe-base, #ffb336);
  color: var(--dropbe-text, #0e0502);
}
.hero-one__right {
  margin-left: 80px;
}
.hero-one__right__image {
  position: absolute;
  bottom: 60px;
  margin-left: -80px;
}
@media (max-width: 1199px) {
  .hero-one__right__image {
    position: relative;
    bottom: auto;
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .hero-one__right__image img {
    object-fit: cover;
    width: 100%;
  }
}
.hero-one .curved-circle-box {
  width: 210px;
  height: 210px;
  background-color: var(--dropbe-base, #ffb336);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  top: 17%;
  position: absolute;
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
}
@media (max-width: 1199px) {
  .hero-one .curved-circle-box {
    top: 15%;
    right: 3%;
  }
}
@media (max-width: 991px) {
  .hero-one .curved-circle-box {
    display: none;
  }
}
.hero-one .curved-circle-box__content {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dropbe-white, #fff);
  font-size: 46px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 0.565;
}
.hero-one .curved-circle-box .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 210px !important;
  height: 210px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: rotate 15s linear 0s forwards infinite;
}
.hero-one .curved-circle-box .curved-circle--item {
  width: 210px !important;
  height: 210px !important;
  font-size: 42.383px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  word-spacing: 2px;
  line-height: 0.613;
  -moz-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -webkit-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -ms-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
}
.hero-one__image {
  position: absolute;
  z-index: -1;
  bottom: -30px;
  right: 0;
}
.hero-one__shape-one {
  position: absolute;
  top: 20%;
  right: 7%;
}
@media (max-width: 1600px) {
  .hero-one__shape-one img {
    width: 70%;
  }
}
.hero-one__shape-one img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-one__shape-one {
    display: none;
  }
}
.hero-one__shape-two {
  position: absolute;
  bottom: 5%;
  left: 2%;
}
@media (max-width: 1600px) {
  .hero-one__shape-two img {
    width: 70%;
  }
}
.hero-one__shape-two img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-one__shape-two {
    display: none;
  }
}
.hero-one__shape-three {
  position: absolute;
  bottom: 20px;
  left: 50%;
}
.hero-one__shape-three img {
  animation: beeScale 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-one__shape-three {
    display: none;
  }
}
.hero-one__shape-foue {
  position: absolute;
  top: 24%;
  left: 10%;
}
@media (max-width: 1600px) {
  .hero-one__shape-foue {
    left: 2%;
  }
}
.hero-one__shape-foue img {
  animation: rotate 6s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-one__shape-foue {
    display: none;
  }
}
.hero-one__shape-five {
  position: absolute;
  bottom: 0;
  right: 2%;
}
@media (max-width: 1600px) {
  .hero-one__shape-five {
    right: 0;
  }
  .hero-one__shape-five img {
    width: 50%;
  }
}
.hero-one__shape-five img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-one__shape-five {
    display: none;
  }
}
.hero-one::after {
  content: "";
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  position: absolute;
  width: 584px;
  height: 584px;
  position: absolute;
  top: 40%;
  left: 30%;
  z-index: -1;
}
@media (max-width: 1600px) {
  .hero-one::after {
    display: none;
  }
}
.hero-one::before {
  content: "";
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  width: 584px;
  height: 584px;
  position: absolute;
  top: 15%;
  right: 13%;
}
@media (max-width: 1600px) {
  .hero-one::before {
    display: none;
  }
}

.hero-two {
  position: relative;
  background-color: var(--dropbe-hero, #f4d3a2);
  padding-top: 108px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-two {
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .hero-two {
    padding-bottom: 80px;
  }
}
.hero-two__bg {
  position: absolute;
  top: -40px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
}
.hero-two__container {
  margin-right: -57px;
  padding-top: 132px;
  padding-bottom: 160px;
}
@media (max-width: 1199px) {
  .hero-two__container {
    padding-bottom: 30px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .hero-two__container {
    padding-top: 100px;
  }
}
.hero-two__container__box {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .hero-two__container__box {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
  }
}
.hero-two__container__funfact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  max-width: 265px;
  width: 100%;
  padding: 25px;
  height: 265px;
  border: 1px solid var(--dropbe-text, #0e0502);
  border-radius: 40px;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
}
@media (max-width: 991px) {
  .hero-two__container__funfact {
    max-width: 240px;
    height: 220px;
  }
}
.hero-two__container__funfact__box {
  text-align: center;
}
.hero-two__container__funfact__bg {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
  background-color: var(--dropbe-white, #fff);
}
.hero-two__container__funfact__count {
  font-size: 52px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-primary, #e26d47);
  font-weight: bold;
  line-height: 0.5;
  text-align: center;
  margin-bottom: 20px;
}
.hero-two__container__funfact__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #0e0b06;
  line-height: 1.444;
  text-align: center;
}
.hero-two__container__right {
  margin-left: 50px;
}
@media (max-width: 1400px) and (min-width: 1199px) {
  .hero-two__container__right {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .hero-two__container__right {
    margin-left: 15px;
  }
}
.hero-two__container__right .dropbe-btn {
  padding: 20px 48px;
  background-color: var(--dropbe-primary, #e26d47);
}
.hero-two__container__right .dropbe-btn::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.hero-two__container__text {
  margin: 0;
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #5a5047;
  line-height: 1.7;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .hero-two__container__text {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .hero-two__container__text {
    font-size: 16px;
  }
}
.hero-two__title {
  font-size: 118px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0b06;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.017;
  text-align: left;
  margin-right: -10px;
}
.hero-two__title span {
  color: var(--dropbe-primary, #e26d47);
  font-weight: 500;
}
@media (max-width: 991px) {
  .hero-two__title {
    font-size: 90px;
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .hero-two__title {
    font-size: 70px;
    margin-bottom: 40px;
  }
  .hero-two__title br {
    display: none;
  }
  .hero-two__title img {
    display: none;
  }
}
@media (max-width: 575px) {
  .hero-two__title {
    font-size: 60px;
  }
}
@media (max-width: 500px) {
  .hero-two__title {
    font-size: 40px;
  }
}
.hero-two__image .curved-circle-box {
  width: 210px;
  height: 210px;
  background-color: #fbeedb;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  top: calc(120px + 5%);
  right: 7%;
  position: absolute;
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
}
@media (max-width: 991px) {
  .hero-two__image .curved-circle-box {
    display: none;
  }
}
.hero-two__image .curved-circle-box__content {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fbe1bb;
  font-size: 46px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 0.565;
}
.hero-two__image .curved-circle-box .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 210px !important;
  height: 210px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: rotate 15s linear 0s forwards infinite;
}
.hero-two__image .curved-circle-box .curved-circle--item {
  width: 210px !important;
  height: 210px !important;
  font-size: 42.383px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  word-spacing: 2px;
  line-height: 0.613;
  -moz-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -webkit-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -ms-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
}
.hero-two__image__item {
  position: absolute;
  bottom: 120px;
  right: 0px;
}
@media (max-width: 1650px) {
  .hero-two__image__item {
    right: -8%;
  }
  .hero-two__image__item img {
    text-align: end;
    object-fit: cover;
    width: 80%;
  }
}
@media (max-width: 1400px) {
  .hero-two__image__item {
    right: -22%;
  }
  .hero-two__image__item img {
    text-align: end;
    object-fit: cover;
    width: 60%;
  }
}
@media (max-width: 1199px) {
  .hero-two__image__item {
    display: none;
  }
}
.hero-two__shape {
  position: absolute;
}
.hero-two__shape-two {
  top: 30%;
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .hero-two__shape-two {
    display: none;
  }
}
.hero-two__shape-three {
  bottom: 3%;
  right: 3%;
}
.hero-two__shape-three img {
  animation: beeScale 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-two__shape-three {
    display: none;
  }
}
.hero-two__shape-four {
  position: absolute;
  bottom: 10%;
  left: 2%;
}
@media (max-width: 1600px) {
  .hero-two__shape-four img {
    width: 70%;
  }
}
.hero-two__shape-four img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-two__shape-four {
    display: none;
  }
}
.hero-two__shape-five {
  position: absolute;
  bottom: 2%;
  left: 30%;
}
.hero-two__shape-five img {
  animation: xTranslate 3.4s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-two__shape-five {
    display: none;
  }
}
.hero-two__shape-six {
  position: absolute;
  top: 18%;
  left: 2%;
}
@media (max-width: 1600px) {
  .hero-two__shape-six img {
    width: 70%;
  }
}
.hero-two__shape-six img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-two__shape-six {
    display: none;
  }
}
.hero-two__shape-saven {
  position: absolute;
  top: 15%;
  right: 2%;
}
@media (max-width: 1600px) {
  .hero-two__shape-saven img {
    width: 70%;
  }
}
.hero-two__shape-saven img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-two__shape-saven {
    display: none;
  }
}
.hero-two__shape-eight {
  position: absolute;
  top: 15%;
  left: 50%;
}
.hero-two__shape-eight img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-two__shape-eight {
    display: none;
  }
}
.hero-two__shape-nine {
  position: absolute;
  bottom: 10%;
  left: 50%;
}
.hero-two__shape-nine img {
  animation: rotate 6s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-two__shape-nine {
    display: none;
  }
}

.hero-three {
  position: relative;
  background-color: var(--dropbe-hero, #f4d3a2);
  padding-top: 108px;
  padding-bottom: 325px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-three {
    padding-bottom: 120px;
  }
}
.hero-three__bg {
  position: absolute;
  top: -40px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
}
.hero-three .container-fluid {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-three__container {
  margin-right: -57px;
  padding-top: 132px;
  padding-bottom: 10px;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-three__container {
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .hero-three__container {
    padding-top: 100px;
  }
}
.hero-three__container__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 450px) {
  .hero-three__container__btn {
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.hero-three__container__btn a {
  border: 1px solid var(--dropbe-white, #fff);
  padding: 19px 45px;
  background-color: var(--dropbe-primary, #e26d47);
  font-weight: 600;
}
.hero-three__container__btn a::before {
  background-color: var(--dropbe-text, #0e0502);
}
.hero-three__container__btn a:last-child {
  border: 1px solid var(--dropbe-text, #0e0502);
  background-color: var(--dropbe-white, #fff);
  color: var(--dropbe-text, #0e0502);
}
.hero-three__container__btn a:last-child:hover {
  border-color: var(--dropbe-text, #0e0502);
  color: var(--dropbe-white, #fff);
}
.hero-three__container__btn a:hover {
  border-color: var(--dropbe-text, #0e0502);
}
.hero-three__container__element-one {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-three__container__element-one img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .hero-three__container__element-one {
    display: none;
  }
}
.hero-three__container__element-two {
  position: absolute;
  top: 18%;
  right: 0%;
}
.hero-three__container__element-two img {
  animation: rotate 6s ease-in-out infinite;
}
@media (max-width: 991px) {
  .hero-three__container__element-two {
    display: none;
  }
}
.hero-three__shape-one {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-three__shape-one {
    display: none;
  }
}
.hero-three__shape-two {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-three__shape-two {
    display: none;
  }
}
.hero-three .curved-circle-box {
  width: 210px;
  height: 210px;
  background-color: var(--dropbe-base, #ffb336);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  top: 15%;
  right: 5%;
  position: absolute;
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
}
@media (max-width: 1199px) {
  .hero-three .curved-circle-box {
    top: 15%;
    right: 3%;
  }
}
@media (max-width: 991px) {
  .hero-three .curved-circle-box {
    display: none;
  }
}
.hero-three .curved-circle-box__content {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dropbe-white, #fff);
  font-size: 46px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 0.565;
}
.hero-three .curved-circle-box .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 210px !important;
  height: 210px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: rotate 15s linear 0s forwards infinite;
}
.hero-three .curved-circle-box .curved-circle--item {
  width: 210px !important;
  height: 210px !important;
  font-size: 42.383px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  word-spacing: 2px;
  line-height: 0.613;
  -moz-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -webkit-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -ms-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
}
.hero-three__btn__funfact__count {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 43px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0b06;
  font-weight: bold;
  line-height: 0.744;
  text-align: left;
  margin-bottom: 5px;
}
.hero-three__btn__funfact__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #e26d47;
  line-height: 1.778;
  text-align: left;
}
.hero-three__btn__image {
  display: flex;
  align-items: center;
}
.hero-three__btn__image img {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--dropbe-white, #fff);
  margin-left: -20px;
}
.hero-three__btn__image img:first-child {
  margin-left: 0;
}
.hero-three__btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) and (min-width: 768px) {
  .hero-three__btn {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .hero-three__btn {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.hero-three__btn__pluse {
  margin-left: -20px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 3px solid var(--dropbe-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: var(--dropbe-base, #ffb336);
  color: var(--dropbe-text, #0e0502);
}
.hero-three__clip-text {
  font-size: 170px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: rgb(226, 109, 71);
  text-transform: uppercase;
  line-height: 0.832;
  font-weight: 700;
  text-align: center;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .hero-three__clip-text {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: url(../images/resources/image-bee.png);
    background-size: cover;
    background-position: center;
  }
}
@media (max-width: 1400px) {
  .hero-three__clip-text {
    font-size: 150px;
  }
}
@media (max-width: 1199px) {
  .hero-three__clip-text {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .hero-three__clip-text {
    font-size: 80px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .hero-three__clip-text {
    font-size: 80px;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .hero-three__clip-text {
    font-size: 60px;
  }
}
.hero-three__title {
  margin: 0;
  font-size: 110px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0b06;
  font-weight: bold;
  line-height: 0.982;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 1350px) {
  .hero-three__title {
    font-size: 93px;
  }
}
@media (max-width: 991px) {
  .hero-three__title {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-three__title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-three__title {
    font-size: 50px;
  }
}
.hero-three__text {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #5a5047;
  line-height: 1.667;
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .hero-three__text {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .hero-three__text {
    font-size: 18px;
  }
}
.hero-three__image-one {
  position: absolute;
  top: 15%;
  left: 2%;
  z-index: 1;
}
@media (max-width: 1550px) {
  .hero-three__image-one {
    left: -5%;
  }
}
@media (max-width: 1199px) {
  .hero-three__image-one {
    display: none;
  }
}
.hero-three__image-one img {
  object-fit: cover;
  width: 400px;
  height: auto;
  border: 6px solid var(--dropbe-white, #fff);
  border-radius: 60px 0 60px 60px;
}
@media (max-width: 1750px) {
  .hero-three__image-one img {
    width: 300px;
  }
}
.hero-three__image-one::after {
  content: "";
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  position: absolute;
  right: -30%;
  bottom: -30%;
  width: 584px;
  height: 584px;
  z-index: -2;
}
.hero-three__image-two {
  position: absolute;
  top: 35%;
  right: 2%;
  z-index: 1;
}
@media (max-width: 1550px) {
  .hero-three__image-two {
    right: -5%;
  }
}
@media (max-width: 1199px) {
  .hero-three__image-two {
    display: none;
  }
}
.hero-three__image-two img {
  object-fit: cover;
  width: 420px;
  border: 6px solid var(--dropbe-white, #fff);
  border-radius: 0px 60px 60px 60px;
}
@media (max-width: 1750px) {
  .hero-three__image-two img {
    width: 300px;
  }
}
.hero-three__image-two::after {
  content: "";
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(255, 255, 255) 0%, rgba(248, 248, 248, 0) 100%);
  position: absolute;
  left: -50%;
  top: -30%;
  width: 584px;
  height: 584px;
  z-index: -2;
}
.hero-three__shape-three {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-three__shape-three img {
  animation: xTranslate 3.5s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-three__shape-three {
    display: none;
  }
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.service-feature {
  position: relative;
  z-index: 1;
  background-color: #fef9f1;
}
.service-feature__item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.service-feature__image {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 25px;
}
.service-feature__image::after {
  content: "";
  height: 128px;
  width: 128px;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-image: url(../images/shapes/group-2-1.png);
  background-size: cover;
  background-position: center center;
}
.service-feature__image span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
  transform: scale(1);
  transition: all 0.6s ease-in-out;
}
.service-feature__image span:last-child {
  transform: scale(0.9);
  filter: blur(10px);
  opacity: 0;
  overflow: hidden;
}
.service-feature__title {
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 0;
  text-transform: capitalize;
}
.service-feature__text {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: rgb(115, 105, 102);
  line-height: 1.867;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.service-feature__item:hover .service-feature__image span {
  transform: scale(1.1);
  filter: blur(10px);
  opacity: 0;
  overflow: hidden;
}
.service-feature__item:hover .service-feature__image span:last-child {
  transform: scale(1);
  filter: blur(0px);
  opacity: 1;
  overflow: visible;
}

/* ***** */
.feature-three {
  position: relative;
  z-index: 2;
  margin-bottom: 6px;
  position: relative;
}
@media (max-width: 1199px) {
  .feature-three {
    margin-bottom: 0;
    padding-top: 20px;
  }
}
.feature-three__inner {
  margin-top: -130px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  background-color: var(--dropbe-primary, #e26d47);
  position: relative;
  z-index: 2;
  padding: 72px 0px;
}
@media (max-width: 1199px) {
  .feature-three__inner {
    margin-top: 0px;
  }
}
.feature-three__bg {
  position: absolut;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  animation: xTranslate 3s ease-in-out infinite;
}
.feature-three__item__image {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  border: 2px solid var(--dropbe-white, #fff);
  background-color: var(--dropbe-base, #ffb336);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s ease-in-out;
}
.feature-three__item__content {
  text-align: center;
  margin-top: 23px;
}
.feature-three__item__title {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-white, #fff);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
.feature-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.feature-three__item__title a:hover {
  background-size: 100% 1px;
}
.feature-three__item__title a:hover {
  color: var(--dropbe-text, #0e0502);
}
.feature-three__item:hover .feature-three__item__image {
  border-color: var(--dropbe-primary, #e26d47);
  background-color: var(--dropbe-text, #0e0502);
}
.feature-three__bee {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 992px) {
  .feature-three__bee {
    display: none;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  z-index: 1;
  background-color: #fbeedb;
}
@media (min-width: 1199px) {
  .about-one__content {
    margin-left: 30px;
  }
}
.about-one__content .sec-title {
  padding-bottom: 32px;
}
.about-one__text, .about-one__top__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.667;
  margin-bottom: 30px;
}
.about-one__text {
  margin-bottom: 0;
}
.about-one__list {
  margin-bottom: 37px;
}
.about-one__list li {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text, #0e0502);
  line-height: 1.667;
}
.about-one__list li i {
  color: var(--dropbe-base, #ffb336);
}
.about-one__list li + li {
  margin-top: 2px;
}
.about-one__box {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 36px;
}
@media (max-width: 1199px) and (min-width: 991px), (max-width: 767px) {
  .about-one__box {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.about-one__box__item {
  flex: 50%;
  padding: 26px 18px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--dropbe-text, #0e0502);
  background-color: #f5e2c6;
  border-radius: 0 30px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-one__box__item img {
  object-fit: cover;
  height: 50px;
}
.about-one__box__text {
  margin: 0;
  font-size: 20px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.4;
}
.about-one__button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) and (min-width: 991px), (max-width: 767px) {
  .about-one__button {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.about-one__button__box {
  width: 42%;
}
@media (max-width: 1199px) and (min-width: 991px), (max-width: 767px) {
  .about-one__button__box {
    width: 100%;
  }
}
.about-one__button__call {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-one__button__icon {
  max-width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
  width: 100%;
  background-color: #f1dbbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.about-one__button__title {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-primary, #e26d47);
  font-weight: bold;
  line-height: 1.556;
  text-transform: capitalize;
  display: block;
}
.about-one__button__text {
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.556;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-one__button__text:hover {
  background-size: 100% 1px;
}
.about-one__button__text:hover {
  color: var(--dropbe-primary, #e26d47);
}
.about-one__button__btn a {
  background-color: var(--dropbe-primary, #e26d47);
}
.about-one__button__btn a::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.about-one__button__shape {
  position: absolute;
  right: -100px;
  top: -20px;
}
.about-one__button__shape img {
  animation: xTranslate 2s ease-in-out infinite;
  animation-delay: 0.5s;
}
.about-one__thumb {
  margin-right: 40px;
  margin-left: -200px;
  position: relative;
  z-index: 1;
}
.about-one__thumb img {
  object-fit: cover;
  /* width: 100%; */
  border-radius: 0 100px 100px;
}
.about-one .curved-circle-box {
  width: 210px;
  height: 210px;
  background-color: #fbeedb;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  top: -50px;
  right: -30px;
  position: absolute;
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
}
.about-one .curved-circle-box__content {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dropbe-base, #ffb336);
  font-size: 46px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 0.565;
}
.about-one .curved-circle-box .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 210px !important;
  height: 210px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: rotate 15s linear 0s forwards infinite;
}
.about-one .curved-circle-box .curved-circle--item {
  width: 210px !important;
  height: 210px !important;
  font-size: 29px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  word-spacing: 2px;
  line-height: 0.892;
  -moz-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -webkit-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -ms-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
}
.about-one__shape-one {
  position: absolute;
  top: 6%;
  right: 7%;
}
.about-one__shape-one img {
  animation: xTranslate 3s ease-in-out infinite;
}
.about-one__shape-two {
  position: absolute;
  right: 0%;
  bottom: 0%;
  z-index: -1;
}
.about-one__shape-three {
  position: absolute;
  top: 30%;
  right: 5%;
  z-index: 2;
}
.about-one__shape-three img {
  animation: beeScaleTwo 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.about-two {
  position: relative;
  z-index: 1;
  background-color: #fbeedb;
}
.about-two__content .sec-title {
  padding-bottom: 22px;
}
.about-two__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.667;
}
.about-two__text + .about-two__text {
  margin-top: 27px;
}
.about-two__list-box {
  margin-top: 25px;
}
.about-two__list-title {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #0e0502;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 30px;
}
.about-two__list {
  margin-bottom: 40px;
}
.about-two__list__item {
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #0e0502;
  line-height: 1.667;
}
.about-two__list__item i {
  color: var(--dropbe-base, #ffb336);
  font-size: 20px;
  margin-right: 6px;
}
.about-two__list__item + .about-two__list__item {
  margin-top: 6px;
}
.about-two__btn .dropbe-btn {
  margin-bottom: 30px;
  padding: 20px 55px;
  font-size: 16px;
  text-transform: capitalize;
  background-color: var(--dropbe-primary, #e26d47);
}
.about-two__btn .dropbe-btn::before {
  background-color: var(--dropbe-text-dark, #0E0B06);
}
.about-two__btn__call {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-two__btn__icon {
  max-width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
  width: 100%;
  background-color: #f1dbbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.about-two__btn__title {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-primary, #e26d47);
  font-weight: bold;
  line-height: 1.556;
  text-transform: capitalize;
  display: block;
}
.about-two__btn__text {
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 1.556;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-two__btn__text:hover {
  background-size: 100% 1px;
}
.about-two__btn__text:hover {
  color: var(--dropbe-primary, #e26d47);
}
.about-two__image {
  position: absolute;
  top: 120px;
  left: 0;
  width: calc(50% - 55px);
}
@media (max-width: 1199px) {
  .about-two__image {
    width: 100%;
    position: relative;
    top: auto;
  }
}
.about-two__image__item {
  overflow: hidden;
}
.about-two__image__item img {
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-two__image__item img {
    width: 100%;
  }
}
.about-two__image__funfact {
  position: absolute;
  top: -10px;
  right: -16px;
  max-width: 195px;
  width: 100%;
  height: auto;
  border-radius: 50px 50px 0px 50px;
  background-color: var(--dropbe-base, #ffb336);
  padding: 0px 20px 30px;
}
.about-two__image__shape {
  text-align: center;
  margin-top: -60px;
  margin-bottom: 30px;
}
.about-two__image__count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0502;
  font-weight: bold;
  line-height: 0.543;
  text-align: center;
  margin-bottom: 25px;
}
.about-two__image__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0502;
  font-weight: bold;
  line-height: 1.389;
  text-transform: capitalize;
  text-align: center;
}
.about-two .curved-circle-box {
  width: 210px;
  height: 210px;
  background-color: #fbeedb;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  top: 120px;
  right: 7%;
  position: absolute;
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
}
@media (max-width: 1700px) {
  .about-two .curved-circle-box {
    right: 20px;
  }
}
@media (max-width: 1500px) {
  .about-two .curved-circle-box {
    display: none;
  }
}
.about-two .curved-circle-box__content {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fbe1bb;
  font-size: 46px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 0.565;
}
.about-two .curved-circle-box .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 210px !important;
  height: 210px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: rotate 15s linear 0s forwards infinite;
}
.about-two .curved-circle-box .curved-circle--item {
  width: 210px !important;
  height: 210px !important;
  font-size: 29px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  word-spacing: 2px;
  line-height: 0.892;
  -moz-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -webkit-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -ms-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
}
.about-two__shape-one {
  position: absolute;
  right: 0;
  bottom: 10%;
}
.about-two__shape-one img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .about-two__shape-one {
    display: none;
  }
}
.about-two__shape-two {
  position: absolute;
  right: 30%;
  bottom: -5%;
}
.about-two__shape-two img {
  animation: beeScaleTwo 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 991px) {
  .about-two__shape-two {
    display: none;
  }
}
.about-two__shape-three {
  position: absolute;
  top: 2%;
  right: 5%;
  z-index: 2;
}
.about-two__shape-three img {
  animation: beeScaleTwo 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 991px) {
  .about-two__shape-three {
    display: none;
  }
}
.about-two__shape-four {
  position: absolute;
  bottom: 1%;
  left: 43%;
}
.about-two__shape-four img {
  animation: beeScaleTwo 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 991px) {
  .about-two__shape-four {
    display: none;
  }
}

.about-three {
  position: relative;
  z-index: 1;
  background-color: rgb(251, 238, 219);
}
.about-three .sec-title {
  padding-bottom: 22px;
}
.about-three__top__text {
  margin: 0;
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.667;
  margin-bottom: 38px;
}
.about-three__top__blockquote {
  margin-right: 30px;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 0 30px 30px 30px;
  border: 1px solid #0e0502;
  background-color: #ffe9c4;
  margin-bottom: 35px;
}
.about-three__top__blockquote span {
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #736966;
  line-height: 1.556;
  text-transform: capitalize;
}
.about-three .tab-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.about-three .tab-buttons .tab-buttons__item {
  margin: 0;
  font-size: 20px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #0e0502;
  font-weight: bold;
  line-height: 1.4;
  text-transform: capitalize;
  cursor: pointer;
}
.about-three .tab-buttons::after {
  width: 100%;
  height: 7px;
  content: "";
  position: absolute;
  bottom: 0;
  background-color: var(--dropbe-white, #fff);
  left: 0;
  border: 1px solid var(--dropbe-text, #0e0502);
  border-radius: 0 50px 50px 100px;
}
.about-three .about-three__list {
  margin-bottom: 35px;
}
.about-three .about-three__list__item + .about-three .about-three__list__item {
  margin-top: 3px;
}
.about-three .about-three__list__item {
  font-size: 18px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #0e0502;
  line-height: 1.667;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.about-three .about-three__list__item i {
  font-size: 20px;
  margin-right: 6px;
  color: var(--dropbe-base, #ffb336);
}
.about-three .about-three__list__btn {
  background-color: var(--dropbe-primary, #e26d47);
  padding: 20px 48px;
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  font-weight: bold;
  line-height: 1.25;
}
.about-three .about-three__list__btn::before {
  background-color: var(--dropbe-text, #0e0502);
}
.about-three__btn {
  position: relative;
  z-index: 1;
}
.about-three__btn__shape {
  position: absolute;
  left: 40%;
  bottom: 10%;
}
.about-three__btn__shape img {
  animation: xTranslate 3s ease-in-out infinite;
}
.about-three__right {
  position: relative;
}
@media (min-width: 992px) {
  .about-three__right {
    margin-right: -140px;
  }
}
.about-three__right__bee {
  position: absolute;
  top: 0px;
  left: 0;
}
@media (max-width: 1199px) {
  .about-three__right__bee {
    display: none;
  }
}
.about-three__right__bee img {
  animation: beeScaleTwo 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
.about-three__thumb {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 300.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,300.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2810 5973 c-301 -100 -408 -224 -560 -648 -52 -146 -99 -265 -105 -265 -6 0 -124 54 -263 119 -471 223 -769 203 -1021 -70 -248 -269 -258 -527 -39 -997 66 -142 113 -264 104 -272 -9 -7 -115 -48 -236 -90 -558 -192 -783 -513 -661 -941 86 -305 231 -422 746 -599 91 -31 165 -63 165 -70 0 -8 -54 -127 -119 -265 -183 -385 -205 -565 -96 -798 130 -279 337 -407 655 -407 l210 1 220 106 c121 59 248 119 283 134 l63 28 85 -245 c166 -473 353 -657 702 -689 385 -35 630 165 807 660 52 146 97 267 99 270 3 3 130 -56 283 -130 l278 -135 210 0 c318 0 525 129 655 407 109 233 87 413 -96 798 -65 138 -119 257 -119 264 0 7 101 47 225 90 543 187 746 424 708 827 -32 345 -207 526 -663 686 -132 46 -247 90 -256 97 -8 8 41 135 110 283 l126 268 0 200 c0 433 -286 720 -720 720 l-200 0 -266 -127 c-146 -70 -270 -124 -275 -119 -5 5 -45 110 -89 233 -202 567 -544 811 -950 676z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 300.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,300.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2810 5973 c-301 -100 -408 -224 -560 -648 -52 -146 -99 -265 -105 -265 -6 0 -124 54 -263 119 -471 223 -769 203 -1021 -70 -248 -269 -258 -527 -39 -997 66 -142 113 -264 104 -272 -9 -7 -115 -48 -236 -90 -558 -192 -783 -513 -661 -941 86 -305 231 -422 746 -599 91 -31 165 -63 165 -70 0 -8 -54 -127 -119 -265 -183 -385 -205 -565 -96 -798 130 -279 337 -407 655 -407 l210 1 220 106 c121 59 248 119 283 134 l63 28 85 -245 c166 -473 353 -657 702 -689 385 -35 630 165 807 660 52 146 97 267 99 270 3 3 130 -56 283 -130 l278 -135 210 0 c318 0 525 129 655 407 109 233 87 413 -96 798 -65 138 -119 257 -119 264 0 7 101 47 225 90 543 187 746 424 708 827 -32 345 -207 526 -663 686 -132 46 -247 90 -256 97 -8 8 41 135 110 283 l126 268 0 200 c0 433 -286 720 -720 720 l-200 0 -266 -127 c-146 -70 -270 -124 -275 -119 -5 5 -45 110 -89 233 -202 567 -544 811 -950 676z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.about-three__thumb img {
  object-fit: cover;
  width: 100%;
}
.about-three__shape-one {
  position: absolute;
  top: 17%;
  left: 2%;
  z-index: -1;
}
.about-three__shape-one img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .about-three__shape-one {
    display: none;
  }
}
.about-three__shape-two {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}
.about-three__shape-two img {
  animation: xTranslate 3s ease-in-out infinite;
}
.about-three__shape-three {
  position: absolute;
  top: 10%;
  right: 5%;
}
@media (max-width: 767px) {
  .about-three__shape-three {
    display: none;
  }
}
.about-three__shape-three img {
  animation: beeScaleTwo 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
.about-three__shape-four {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-three__shape-four {
    display: none;
  }
}
.about-three .curved-circle-box {
  width: 210px;
  height: 210px;
  background-color: #fbeedb;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  bottom: 0;
  right: 3%;
  position: absolute;
  border: 1px solid var(--dropbe-text-dark, #0E0B06);
}
@media (max-width: 1700px) {
  .about-three .curved-circle-box {
    right: 20px;
  }
}
.about-three .curved-circle-box__content {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dropbe-base, #ffb336);
  font-size: 46px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  font-weight: bold;
  line-height: 0.565;
}
.about-three .curved-circle-box .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 210px !important;
  height: 210px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: rotate 15s linear 0s forwards infinite;
}
.about-three .curved-circle-box .curved-circle--item {
  width: 210px !important;
  height: 210px !important;
  font-size: 29px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text-dark, #0E0B06);
  word-spacing: 2px;
  line-height: 0.892;
  -moz-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -webkit-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
  -ms-transform: matrix(-0.0423293642, -0.7538370901, 0.7538370901, -0.0423293642, 0, 0);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-one {
  position: relative;
  background-color: var(--dropbe-white, #fff);
  padding: 120px 0;
}
.service-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 160px);
  margin-top: -160px;
  z-index: 2;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--dropbe-gray, #f5e2c6);
}
@media (min-width: 1400px) {
  .service-one__bg {
    width: calc(100% - 240px);
    left: 120px;
  }
}
@media (max-width: 767px) {
  .service-one {
    padding: 80px 0;
  }
}
.service-one .container {
  position: relative;
  z-index: 3;
  margin-top: -160px;
}
.service-one--page .container {
  margin-top: 0;
}
.service-one--page .service-one__bg {
  height: 100%;
  margin-top: 0;
}
.service-one .sec-title {
  text-align: center;
}
.service-one .col-lg-3 {
  width: 20%;
}
@media (max-width: 1199px) {
  .service-one .col-lg-3 {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .service-one .col-lg-3 {
    width: 100%;
  }
}
.service-one__item {
  position: relative;
  background-color: var(--dropbe-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--dropbe-black3-rgb, 0, 0, 0), 0.07);
  margin-bottom: 30px;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top left;
  transition: all 500ms ease;
}
.service-one__item__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 39px 30px 36px;
  transition: all 500ms ease;
}
.service-one__item__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 500ms ease;
  transform: scale(1.2);
  z-index: -1;
}
.service-one__item__hover::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--dropbe-black2-rgb, 201, 201, 201), 0.7);
}
.service-one__item:hover .service-one__item__hover {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.service-one__item:hover .service-one__item__title {
  color: var(--dropbe-white, #fff);
}
.service-one__item__icon {
  font-size: 60px;
  line-height: 1;
  position: relative;
  z-index: 3;
  color: var(--dropbe-base, #ffb336);
  display: inline-block;
  margin: 0 0 23px;
  transition: 500ms ease;
}
.service-one__item__icon span {
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}
.service-one__item:hover .service-one__item__icon {
  color: var(--dropbe-base, #ffb336);
}
.service-one__item:hover .service-one__item__icon span {
  transform: scale(0.9);
}
.service-one__item__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 125px;
  transition: all 300ms ease;
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
.service-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.service-one__item__title a:hover {
  color: var(--dropbe-base, #ffb336);
  background-size: 100% 1px;
}
.service-one__info {
  position: relative;
  max-width: 830px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--dropbe-border-color, #d7d3c0);
  padding: 17px 18px 16px 28px;
}
@media (max-width: 767px) {
  .service-one__info {
    display: block;
    text-align: center;
  }
}
.service-one__info__text {
  margin: 0;
}
.service-one__info .dropbe-btn {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 11px 29px;
}
@media (max-width: 767px) {
  .service-one__info .dropbe-btn {
    margin: 15px 0 10px;
  }
}

.service-page {
  padding: 120px 0;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .service-page {
    padding: 80px 0;
    padding-top: 60px;
  }
}
.service-page--home {
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .service-page--home {
    padding: 80px 0;
  }
}
.service-page--home .sec-title {
  text-align: center;
}

.service-card-two {
  background-repeat: no-repeat;
  background-position: top left;
  text-align: center;
  padding: 50px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  background-color: var(--dropbe-white, #fff);
}
@media (max-width: 1199px) {
  .service-card-two {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .service-card-two__carousel .owl-nav {
    display: none;
  }
}
.service-card-two__image {
  width: 210px;
  height: 210px;
  border: 6px solid var(--dropbe-white, #fff);
  box-shadow: 0 0 0 1px var(--dropbe-base, #ffb336);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 30px;
  background-color: var(--dropbe-black, #302a1f);
  transition: all 500ms ease;
}
.service-card-two__image img {
  width: 100%;
  border-radius: 50%;
}
.service-card-two__image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  background: rgba(var(--dropbe-white-rgb, 255, 255, 255), 0.2);
  border-radius: 50%;
  transition: all 500ms linear;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
}
.service-card-two:hover .service-card-two__image {
  border-color: var(--dropbe-base, #ffb336);
}
.service-card-two:hover .service-card-two__image::after {
  animation: zoom-hover 0.95s;
}
.service-card-two__content__shape {
  display: block;
  width: auto !important;
  margin-left: auto;
  margin-right: auto;
}
.service-card-two__icon {
  width: 106px;
  height: 106px;
  background-color: var(--dropbe-base, #ffb336);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dropbe-white, #fff);
  font-size: 60px;
  position: absolute;
  left: 0px;
  top: 0;
  line-height: 1;
  transform: translateX(calc(-50% + 30px));
}
.service-card-two__icon i {
  display: block;
  transform: scale(1);
  transition: transform 500ms ease;
}
.service-card-two__icon:hover i {
  transform: scale(0.9);
}
.service-card-two__title {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--dropbe-black, #302a1f);
  font-size: 22px;
  line-height: 1.2em;
  margin-top: -5px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .service-card-two__title {
    font-size: 24px;
  }
}
.service-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-card-two__title a:hover {
  background-size: 100% 1px;
}
.service-card-two__title a:hover {
  color: var(--dropbe-base, #ffb336);
}
.service-card-two__text {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
  margin-top: 10px;
  padding-bottom: 21px;
  margin-bottom: 5px;
}
.service-card-two__link {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--dropbe-letter-space, 0.1em);
  color: var(--dropbe-black, #302a1f);
  transition: all 500ms ease;
  line-height: 1em;
  position: relative;
  text-shadow: 0 0 0.5px currentColor;
  justify-content: center;
  background-color: var(--dropbe-gray, #f5e2c6);
  padding: 11.5px 0;
}
.service-card-two__link:hover {
  background-color: var(--dropbe-black, #302a1f);
  color: var(--dropbe-white, #fff);
}
.service-card-two__link i {
  font-size: 16px;
  margin-left: 9px;
}

.our-beekeep {
  position: relative;
  z-index: 1;
  background-color: var(--dropbe-white, #fff);
}
.our-beekeep__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.our-beekeep--two .our-beekeep__spoon {
  position: absolute;
  top: 5%;
  right: 9%;
  left: auto;
}
@media (max-width: 1400px) {
  .our-beekeep--two .our-beekeep__spoon {
    display: none;
  }
}
@media (min-width: 1600px) {
  .our-beekeep .container {
    max-width: 1570px;
  }
}
.our-beekeep__item {
  background-color: var(--dropbe-white, #fff);
  position: relative;
  z-index: 1;
  border-radius: 16px;
  padding: 50px 30px;
  transition: all 0.4s ease-in-out;
}
.our-beekeep__item__image {
  width: 225px;
  height: 225px;
  border-radius: 50%;
  background-color: var(--dropbe-bg-gray, #fff3e7);
  transition: all 0.4s ease-in-out;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.our-beekeep__item__image::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  bottom: 9px;
  background-color: transparent;
  border-radius: 50%;
  border: 3px solid var(--dropbe-white, #fff);
}
.our-beekeep__item__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: transparent;
  border-radius: 50%;
  background-color: var(--dropbe-primary, #e26d47);
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.our-beekeep__item__title {
  font-size: 24px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
  margin: 0;
  text-transform: capitalize;
  margin-bottom: 5px;
}
@media (max-width: 1300px) and (min-width: 1199px) {
  .our-beekeep__item__title {
    font-size: 20px;
  }
}
.our-beekeep__item__text {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  margin: 0;
  margin-bottom: -8px;
}
.our-beekeep__item:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.our-beekeep__item:hover .our-beekeep__item__image {
  background-color: transparent;
}
.our-beekeep__item:hover .our-beekeep__item__image::before {
  transform: scale(1);
}
.our-beekeep__spoon {
  position: absolute;
  top: -5%;
  left: 20%;
}
.our-beekeep__spoon img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .our-beekeep__spoon {
    display: none;
  }
}
.our-beekeep .service-page__carousel .owl-item img {
  width: auto !important;
  height: auto;
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  z-index: 1;
  background-color: #fef9f1;
}
.service-details__left .sec-title {
  padding-bottom: 37px;
}
.service-details__item + .service-details__item {
  margin-top: 22px;
}
.service-details__title {
  font-size: 36px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.667;
  text-align: left;
  margin: 0;
  margin-bottom: 5px;
}
.service-details__text {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #827e76;
  line-height: 2;
  margin: 0;
}
.service-details__feature span {
  font-size: 16px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 2;
}
.service-details__feature + .service-details__feature {
  margin-top: 15px;
}
.service-details__image {
  max-width: 485px;
  height: 485px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-radius: 50%;
  background-color: #fff3e7;
  border: 3px solid var(--dropbe-white, #fff);
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.service-details__image::after {
  content: "";
  right: 13px;
  left: 13px;
  top: 13px;
  bottom: 13px;
  position: absolute;
  border: 3px solid var(--dropbe-white, #fff);
  background-color: transparent;
  z-index: -1;
  border-radius: 50%;
}
/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/
.instagram-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .instagram-one {
    padding: 80px 0;
  }
}
@media (min-width: 1400px) {
  .instagram-one .container {
    max-width: 1380px;
  }
}
.instagram-one__title {
  display: block;
  text-align: center;
  position: relative;
  font-size: 14px;
  color: var(--dropbe-text, #0e0502);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  letter-spacing: 2.8px;
  margin: 0 auto 39px;
}
.instagram-one__title span {
  display: inline-block;
  background-color: var(--dropbe-white, #fff);
  position: relative;
  z-index: 2;
  padding: 0 28px;
}
@media (max-width: 550px) {
  .instagram-one__title span {
    padding: 0 18px;
  }
}
.instagram-one__title::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 9px;
  width: 518px;
  height: 1px;
  content: "";
  background-color: var(--dropbe-border-color, #d7d3c0);
}
@media (max-width: 550px) {
  .instagram-one__title::after {
    width: 100%;
  }
}
.instagram-one a {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.instagram-one a::before {
  position: absolute;
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 55%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--dropbe-white, #fff);
  font-size: 30px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  transition-delay: 0s;
}
.instagram-one a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  opacity: 0;
  background: rgba(var(--dropbe-black-rgb, 48, 42, 31), 0.5);
  visibility: hidden;
  transition: all ease 0.4s;
}
.instagram-one a:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.instagram-one a:hover::before {
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.4s;
}
.instagram-one a img {
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}
.instagram-one a:hover img {
  transform: scale(1.1) rotate(1.5deg);
  -moz-transform: scale(1.1) rotate(1.5deg);
  -webkit-transform: scale(1.1) rotate(1.5deg);
  -ms-transform: scale(1.1) rotate(1.5deg);
  -o-transform: scale(1.1) rotate(1.5deg);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.instagram-two {
  position: relative;
  z-index: 2;
  padding: 0 0;
  margin-bottom: -120px;
}
.instagram-two .container {
  max-width: 1670px;
}
.instagram-two a {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.instagram-two a::before {
  position: absolute;
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 55%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--dropbe-white, #fff);
  font-size: 40px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  transition-delay: 0s;
}
.instagram-two a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  opacity: 0;
  background: rgba(var(--dropbe-base-rgb, 255, 179, 54), 0.9);
  visibility: hidden;
  transition: all ease 0.4s;
}
.instagram-two a:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.instagram-two a:hover::before {
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.4s;
}
.instagram-two a img {
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}
.instagram-two a:hover img {
  transform: scale(1.1) rotate(1.5deg);
  -moz-transform: scale(1.1) rotate(1.5deg);
  -webkit-transform: scale(1.1) rotate(1.5deg);
  -ms-transform: scale(1.1) rotate(1.5deg);
  -o-transform: scale(1.1) rotate(1.5deg);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/*--------------------------------------------------------------
# Opening Time
--------------------------------------------------------------*/
.opening {
  position: relative;
  margin-bottom: -85px;
}
@media (max-width: 1199px) {
  .opening {
    margin-bottom: 0;
  }
}
.opening--home-three {
  margin-bottom: 0;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .opening--home-three {
    padding-bottom: 80px;
  }
}
.opening__wrapper {
  background-color: var(--dropbe-base, #ffb336);
  position: relative;
  z-index: 2;
  padding: 39px 0;
}
@media (max-width: 767px) {
  .opening__wrapper {
    padding: 30px 20px;
    text-align: center;
  }
}
.opening__wrapper::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 100%;
  content: "";
  opacity: 0.102;
  background-image: linear-gradient(90deg, rgba(var(--dropbe-black-rgb, 48, 42, 31), 0) 0%, rgba(var(--dropbe-black-rgb, 48, 42, 31), 1) 100%);
}
@media (max-width: 991px) {
  .opening__wrapper::after {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .opening__wrapper::after {
    width: 155px;
  }
}
.opening__icon {
  font-size: 65px;
  color: var(--dropbe-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0 0;
  margin-right: -10px;
  position: relative;
  z-index: 2;
}
.opening__title {
  color: var(--dropbe-white, #fff);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  margin: 27px -30px 0 33px;
  position: relative;
}
@media (max-width: 767px) {
  .opening__title {
    margin: 20px 0 0;
  }
}
.opening__info {
  font-size: 12px;
  line-height: 30px;
  color: var(--dropbe-white, #fff);
  text-transform: uppercase;
  padding: 12px 0 20px;
  margin: 0 0 0 -14px;
}
@media (max-width: 991px) {
  .opening__info {
    margin: 0 0 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .opening__info {
    margin: 0 0 0;
  }
}
.opening__info--last {
  margin-left: -45px;
  padding-left: 60px;
  border-left: 1px solid rgba(var(--dropbe-white-rgb, 255, 255, 255), 0.2);
}
@media (max-width: 991px) {
  .opening__info--last {
    margin: 0 0 0;
    padding: 0;
    border: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .opening__info--last {
    margin-left: -30px;
    padding-left: 20px;
  }
}
.opening__info__text {
  display: block;
  font-size: 20px;
  text-transform: none;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}
body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--dropbe-white, #fff);
  box-shadow: 0px 0px 100px 0px rgba(var(--dropbe-black-rgb, 48, 42, 31), 0.08);
}
body.boxed-wrapper .hero-one__shape-foue {
  top: 18%;
  left: 5%;
}
body.boxed-wrapper .service-cta__title {
  font-size: 30px;
}
body.boxed-wrapper .testimonials-one__shape-three {
  top: 10%;
  right: 5%;
}
body.boxed-wrapper .main-footer__element-one,
body.boxed-wrapper .main-footer__element-two {
  display: none;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.how-work {
  position: relative;
  z-index: 1;
}
.how-work__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.how-work__item {
  position: relative;
  z-index: 1;
}
.how-work__item__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.how-work-one {
  position: relative;
  z-index: 1;
  background-color: #fcf3e6;
  counter-reset: myCounter;
}
.how-work-one--two {
  position: relative;
  background-color: transparent;
}
.how-work-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.how-work-one__card {
  position: relative;
  z-index: 1;
}
.how-work-one__card::after {
  content: "";
  width: 100%;
  height: 260px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/shapes/service-how-1-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
  border: 1px solid #c4c3c1;
  z-index: -1;
}
.how-work-one__card::before {
  content: "";
  width: 280px;
  height: 280px;
  position: absolute;
  bottom: 30px;
  z-index: -1;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 1px solid #c4c3c1;
}
.how-work-one__card__content {
  padding: 40px 30px 40px;
}
.how-work-one__card__title {
  margin-top: -5px;
  font-size: 24px;
  font-family: var(--dropbe-heading-font, "Myriad Pro", serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.333;
  text-align: center;
  text-transform: capitalize;
  max-width: 250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}
.how-work-one__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.how-work-one__card__title a:hover {
  background-size: 100% 1px;
}
.how-work-one__card__text {
  margin: 0;
  font-size: 15px;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  color: #8b877f;
  line-height: 1.867;
  text-align: center;
  max-width: 250px;
  width: 100%;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -7px;
}
.how-work-one__card__thumb {
  position: relative;
  z-index: 1;
}
.how-work-one__card__thumb__item {
  width: 175px;
  border-radius: 50%;
  height: 175px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
.how-work-one__card__thumb__item img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
  border: 7px solid var(--dropbe-white, #fff);
}
.how-work-one__card__thumb__count {
  counter-increment: myCounter;
  max-width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: var(--dropbe-primary, #e26d47);
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-work-one__card__thumb__count::before {
  content: counters(myCounter, ".", decimal-leading-zero);
  transition: all 0.4s ease-in-out;
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-white, #fff);
  font-weight: bold;
  line-height: 2.1;
}
.how-work-one__card__thumb__text {
  font-size: 15px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-white, #fff);
  font-weight: bold;
  text-transform: uppercase;
  padding: 4px 7px;
  background-color: var(--dropbe-primary, #e26d47);
  border-radius: 3px;
  position: absolute;
  top: 30%;
  line-height: 15px;
  left: 15px;
  transform: translateY(-10%);
}
.how-work-one__border {
  margin-top: 3px;
  height: 1px;
  background-color: #e3d6c5;
  margin-left: 180px;
  margin-right: 180px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .how-work-one__border {
    margin-left: 150px;
    margin-right: 150px;
  }
}
@media (max-width: 991px) {
  .how-work-one__border {
    display: none;
  }
}
.how-work-one__border span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dropbe-primary, #e26d47);
}
.how-work-one__border span:last-child {
  left: auto;
  right: 0;
}
.how-work-one__border::after {
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #e3d6c5;
  transform: translateX(-50%);
}

.how-work-two {
  position: relative;
  z-index: 1;
  counter-reset: myCounterTwo;
}
.how-work-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.how-work-two__card {
  position: relative;
  z-index: 1;
  padding: 30px 30px 0px;
  border: 1px solid #c4c3c1;
  border-radius: 10px;
  margin-bottom: 30px;
}
.how-work-two__card__bg {
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.how-work-two__card__thumb {
  width: 175px;
  border-radius: 50%;
  height: 175px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
.how-work-two__card__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
  border: 7px solid var(--dropbe-white, #fff);
}
.how-work-two__card__title {
  margin-top: 0px;
  font-size: 24px;
  font-family: var(--dropbe-heading-font, "Myriad Pro", serif);
  color: var(--dropbe-text, #0e0502);
  font-weight: bold;
  line-height: 1.333;
  text-align: center;
  text-transform: capitalize;
  max-width: 250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}
.how-work-two__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.how-work-two__card__title a:hover {
  background-size: 100% 1px;
}
.how-work-two__card__text {
  margin: 0;
  font-size: 15px;
  font-family: var(--dropbe-font, "Myriad Pro", sans-serif);
  color: #8b877f;
  line-height: 1.867;
  text-align: center;
  max-width: 250px;
  width: 100%;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}
.how-work-two__card__count {
  counter-increment: myCounterTwo;
  max-width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: var(--dropbe-primary, #e26d47);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -30px;
}
.how-work-two__card__count::before {
  content: counters(myCounterTwo, ".", decimal-leading-zero);
  transition: all 0.4s ease-in-out;
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: var(--dropbe-white, #fff);
  font-weight: bold;
  line-height: 2.1;
}
/*# sourceMappingURL=dropbe.css.map */


.main-header__btn {
  padding: 10px 20px;  /* Adjust padding for better look */
  background-color: #E26D47;  /* Example: Blue background */
  color: white;  /* White text */
  text-decoration: none;  
  border-radius: 25px;  /* Curved corners */
  border: none;  
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.main-header__btn:hover {
  background-color: #0056b3;  /* Darker blue on hover */
}


