/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# variables
# Utility
# Common
# Hero Section
# Feature Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# variables
--------------------------------------------------------------*/
: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: 120px 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;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  background-color: var(--dropbe-black, #302a1f);
  z-index: 1;
  position: relative;
  padding-top: 20px;
  padding-bottom: 300px;
}
@media (min-width: 1200px) {
  .hero-section {
    height: 945px;
    padding-top: 60px;
    padding-bottom: 162px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    padding-bottom: 100px;
  }
}
.hero-section .dropbe-btn {
  border-radius: 4px;
  background-color: var(--dropbe-primary, #e26d47);
}
.hero-section .dropbe-btn::before {
  background-color: var(--dropbe-base, #ffb336);
}
.hero-section .dropbe-btn:hover {
  color: var(--dropbe-text, #0e0502);
}
.hero-section__top {
  position: relative;
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  .hero-section__top {
    margin-bottom: 70px;
  }
}
.hero-section__top .container-fluid {
  max-width: 1815px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section__top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@keyframes beeScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes xTranslate {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero-section__middle {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-section__middle {
    margin-bottom: 0;
  }
}
.hero-section__middle__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section__middle__btn .dropbe-btn {
  display: block;
}
@media (min-width: 992px) {
  .hero-section__middle__btn .dropbe-btn {
    display: none;
  }
}
.hero-section__middle__shape-one, .hero-section__middle__shape-two, .hero-section__middle__shape-three, .hero-section__middle__shape-four {
  position: absolute;
}
@media (max-width: 991px) {
  .hero-section__middle__shape-one, .hero-section__middle__shape-two, .hero-section__middle__shape-three, .hero-section__middle__shape-four {
    display: none;
  }
}
.hero-section__middle__shape-one {
  top: -80%;
  left: 35%;
  transform: translateX(-50%);
}
.hero-section__middle__shape-one img {
  animation: beeScale 3s ease-in-out infinite;
}
.hero-section__middle__shape-two {
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}
.hero-section__middle__shape-two img {
  animation: xTranslate 3s ease-in-out infinite;
}
.hero-section__middle__shape-three {
  bottom: -50%;
  right: 15%;
  transform: translateX(50%);
}
.hero-section__middle__shape-three img {
  animation: rotate 10s ease-in-out infinite;
}
.hero-section__middle__shape-four {
  bottom: -50%;
  left: 15%;
  transform: translateX(-50%);
}
.hero-section__middle__shape-four img {
  animation: xTranslate 3.5s ease-in-out infinite;
}
.hero-section__title {
  margin: 0;
  font-size: 65px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: var(--dropbe-white, #fff);
  font-weight: bold;
  line-height: 1.185;
  text-align: center;
}
@media (max-width: 1199px) {
  .hero-section__title {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .hero-section__title {
    margin-bottom: 40px;
  }
}
.hero-section__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;
}
.hero-section .container {
  position: relative;
}
.hero-section__logo {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hero-section__images__item {
  border-radius: 30px;
  position: absolute;
}
@media (max-width: 991px) {
  .hero-section__images__item {
    display: none;
  }
}
.hero-section__images__item img {
  box-shadow: 0px 0px 35px 0px rgba(131, 134, 137, 0.35);
  border: 6px solid var(--dropbe-white, #fff);
  object-fit: cover;
  border-radius: 32px;
}
@media (max-width: 1199px) {
  .hero-section__images__item img {
    width: 70%;
  }
}
.hero-section__images__item:nth-child(1) {
  bottom: -90px;
  left: -2%;
  z-index: 1;
}
.hero-section__images__item:nth-child(2) {
  bottom: -50px;
  left: 18%;
}
@media (max-width: 1199px) {
  .hero-section__images__item:nth-child(2) {
    left: 21%;
  }
}
.hero-section__images__item:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero-section__images__item:nth-child(3) {
    left: 48%;
    transform: translateX(-30%);
  }
}
.hero-section__images__item:nth-child(4) {
  right: 18%;
  bottom: -50px;
}
@media (max-width: 1199px) {
  .hero-section__images__item:nth-child(4) {
    right: 12%;
  }
}
.hero-section__images__item:nth-child(5) {
  bottom: -90px;
  right: -2%;
}
@media (max-width: 1199px) {
  .hero-section__images__item:nth-child(5) {
    right: -11%;
  }
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.features-two {
  background-color: #fff1ed;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media (max-width: 991px) {
  .features-two {
    padding-bottom: 50px;
  }
}
.features-two__top {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .features-two__top {
    margin-bottom: 80px;
  }
}
.features-two__top .dropbe-btn {
  margin-bottom: 100px;
}
.features-two__top__title {
  font-size: 40px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #171105;
  font-weight: bold;
  line-height: 1.273;
  text-align: center;
}
@media (min-width: 992px) {
  .features-two__top__title {
    font-size: 55px;
  }
}
.features-two__top__btn {
  display: none;
}
@media (min-width: 992px) {
  .features-two__top__btn {
    display: block;
  }
}
.features-two__top__btn .dropbe-btn {
  border-radius: 4px;
  background-color: var(--dropbe-base, #ffb336);
  font-weight: 700;
  color: var(--dropbe-text, #0e0502);
  padding-top: 20px;
  padding-bottom: 20px;
}
.features-two__top__btn .dropbe-btn::before {
  background-color: var(--dropbe-primary, #e26d47);
}
.features-two__top__btn .dropbe-btn:hover {
  color: var(--dropbe-white, #fff);
}
.features-two__box {
  text-align: center;
  position: relative;
}
.features-two__box__image {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  max-width: 112px;
  height: 112px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--dropbe-white-rgb, 255, 255, 255));
}
.features-two__box__image img {
  object-fit: cover;
}
.features-two__box__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--dropbe-primary, #e26d47);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
}
.features-two__box:hover .features-two__box__image::after {
  background-color: var(--dropbe-primary, #e26d47);
  transform: scale(1);
}
.features-two__title {
  margin: 0;
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #171105;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  text-transform: capitalize;
}
.features-two__shape-two {
  position: absolute;
  top: 30%;
  right: 10%;
  transform: translateY(50%);
}
.features-two__shape-two img {
  animation: rotate 10s ease-in-out infinite;
}
@media (max-width: 767px) {
  .features-two__shape-two {
    display: none;
  }
}
.features-two__shape-one {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(50%);
}
.features-two__shape-one img {
  animation: beeScale 3s ease-in-out infinite;
}
@media (max-width: 767px) {
  .features-two__shape-one {
    display: none;
  }
}

/*--------------------------------------------------------------
# Demo Section
--------------------------------------------------------------*/
.demos-one {
  position: relative;
  padding: 120px 0 90px;
}
@media (max-width: 767px) {
  .demos-one {
    padding: 80px 0 50px;
  }
}
.demos-one__top__title {
  margin: 0;
  font-size: 40px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #171105;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 55px;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .demos-one__top__title {
    font-size: 55px;
  }
}
.demos-one__single {
  margin: 0 0 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
  position: relative;
  text-align: center;
  background-color: var(--dropbe-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--dropbe-text-rgb, 14, 5, 2), 0.1);
}
.demos-one__single:hover {
  transform: translateY(-10px);
}
.demos-one__single:hover .demos-one__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demos-one__single:hover .demos-one__image img {
  filter: blur(2px);
}
.demos-one__image {
  position: relative;
  border: 1px solid #090808;
  border-radius: 10px;
  overflow: hidden;
}
.demos-one__image img {
  object-fit: cover;
  width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demos-one__buttons {
  background-color: rgba(var(--dropbe-text-rgb, 14, 5, 2), 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demos-one__buttons .dropbe-btn {
  width: 142px;
  font-size: 14px;
  padding: 11.5px 35px;
  color: var(--dropbe-text, #0e0502);
  border-radius: 4px;
  display: inline-flex;
  background-color: var(--dropbe-white, #fff);
}
.demos-one__buttons .dropbe-btn::before {
  background-color: var(--dropbe-primary, #e26d47);
}
.demos-one__buttons .dropbe-btn:hover {
  color: var(--dropbe-white, #fff);
}
.demos-one__text {
  text-align: center;
  padding-top: 29px;
  padding-bottom: 32px;
}
.demos-one__text__title {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #171105;
  line-height: 1.208;
  text-align: center;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
#  Feature Section 02
--------------------------------------------------------------*/
.features-one {
  position: relative;
  padding: 110px 0px 150px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .features-one {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .features-one {
    padding: 80px 0px;
  }
}
.features-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;
}
.features-one__title {
  margin: 0;
  font-size: 40px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #171105;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 55px;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .features-one__title {
    font-size: 55px;
  }
}
.features-one__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px 30px;
}
@media (max-width: 1199px) {
  .features-one__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .features-one__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .features-one__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .features-one__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.features-one__box {
  text-align: center;
  position: relative;
  background-color: var(--dropbe-white, #fff);
  border: 1px solid #d3d2d2;
  border-radius: 40px;
  height: 228px;
  width: 100%;
  display: flex;
  z-index: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  cursor: progress;
}
@media (max-width: 767px) {
  .features-one__box {
    margin-left: auto;
    margin-right: auto;
  }
}
.features-one__box__image {
  margin-bottom: 25px;
}
.features-one__box__image img {
  object-fit: cover;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.features-one__box__title {
  margin: 0;
  font-size: 24px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #111113;
  line-height: 1.208;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  max-width: 201px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .features-one__box__title {
    font-size: 20px;
    max-width: 180px;
  }
}
.features-one__box:hover .features-one__box__image {
  -webkit-animation-name: wobble-vertical;
  animation-name: wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@keyframes wobble-vertical {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*--------------------------------------------------------------
#  Footer Section
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  padding: 140px 0;
  border-bottom: 10px solid var(--dropbe-primary, #e26d47);
}
@media (max-width: 1199px) {
  .main-footer {
    padding: 120px;
  }
}
@media (max-width: 991px) {
  .main-footer {
    padding: 100px;
  }
}
@media (max-width: 991px) {
  .main-footer {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .main-footer {
    padding: 80px 0;
  }
}
.main-footer .container {
  position: relative;
  z-index: 2;
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-footer__content {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.main-footer__title {
  font-size: 55px;
  font-family: var(--dropbe-heading-font2, "Urbanist", sans-serif);
  color: #171105;
  font-weight: bold;
  line-height: 1.273;
  text-align: center;
  margin-bottom: 23px;
}
@media (max-width: 991px) {
  .main-footer__title {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
.main-footer__text {
  font-size: 20px;
  font-family: var(--dropbe-special-font, "DM Sans", sans-serif);
  color: #6b5833;
  line-height: 1.8;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  margin-bottom: 55px;
}
@media (max-width: 991px) {
  .main-footer__text {
    margin-bottom: 30px;
  }
}
.main-footer .dropbe-btn {
  border-radius: 4px;
  background-color: var(--dropbe-primary, #e26d47);
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 20px;
}
.main-footer .dropbe-btn::before {
  background-color: var(--dropbe-base, #ffb336);
}
.main-footer .dropbe-btn:hover {
  color: var(--dropbe-text, #0e0502);
}
.main-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background-image: url(../images/dropbe-landing/feature-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 767px) {
  .main-footer::after {
    width: 800px;
    height: 800px;
  }
}
@media (max-width: 575px) {
  .main-footer::after {
    display: none;
  }
}
.main-footer__shape-one {
  position: absolute;
  top: 20%;
  left: 10%;
  z-index: 1;
}
.main-footer__shape-one img {
  animation: beeScale 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .main-footer__shape-one {
    display: none;
  }
}
.main-footer__shape-two {
  position: absolute;
  top: 9%;
  right: 25%;
  z-index: 1;
}
.main-footer__shape-two img {
  animation: xTranslate 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .main-footer__shape-two {
    display: none;
  }
}
.main-footer__shape-three {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 1;
}
.main-footer__shape-three img {
  animation: rotate 10s ease-in-out infinite;
}
@media (max-width: 991px) {
  .main-footer__shape-three {
    display: none;
  }
}
/*# sourceMappingURL=dropbe-landing.css.map */
