/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# variables
# Utility
# Common
# Hero Section
# Feature Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# variables
--------------------------------------------------------------*/
:root {
  --wallpi-font: "Inter", sans-serif;
  --wallpi-heading-font: "Pathway Extreme", sans-serif;
  --wallpi-special-font: "Kumbh Sans", sans-serif;
  --wallpi-text: #2a2826;
  --wallpi-text-rgb: 42, 40, 38;
  --wallpi-text2: #0f0e0e;
  --wallpi-text2-rgb: 15, 14, 14;
  --wallpi-text3: #172000;
  --wallpi-text3-rgb: 23, 32, 0;
  --wallpi-text-dark: #241c14;
  --wallpi-text-dark-rgb: 36, 28, 20;
  --wallpi-text-gray: #716a63;
  --wallpi-text-gray-rgb: 113, 106, 99;
  --wallpi-text-gray2: #565555;
  --wallpi-text-gray2-rgb: 86, 85, 85;
  --wallpi-text-gray-dark: #4a4444;
  --wallpi-text-gray-dark-rgb: 74, 68, 68;
  --wallpi-text-gray2-dark: #786d69;
  --wallpi-text-gray2-dark-rgb: 120, 109, 105;
  --wallpi-text-white: #fff;
  --wallpi-text-white-rgb: 255, 255, 255;
  --wallpi-text-white2: #d3d0cd;
  --wallpi-text-white2-rgb: 211, 208, 205;
  --wallpi-text-dark2-white: #bdbdbc;
  --wallpi-text-dark2-white-rgb: 189, 189, 188;
  --wallpi-base: #d18548;
  --wallpi-base-rgb: 209, 133, 72;
  --wallpi-gray: #f9f6f1;
  --wallpi-gray-rgb: 249, 246, 241;
  --wallpi-white: #fff;
  --wallpi-white-rgb: 255, 255, 255;
  --wallpi-black: #2a2826;
  --wallpi-black-rgb: 42, 40, 38;
  --wallpi-black2: #4a3626;
  --wallpi-black2-rgb: 74, 54, 38;
  --wallpi-black3: #000;
  --wallpi-black3-rgb: 0, 0, 0;
  --wallpi-lightpink: #ece4de;
  --wallpi-lightpink-rgb: 236, 228, 222;
  --wallpi-lightpink2: #f5ebe4;
  --wallpi-lightpink2-rgb: 245, 235, 228;
  --wallpi-border-color: #3c3a39;
  --wallpi-border-color-rgb: 60, 58, 57;
  --wallpi-letter-space: 0.1em;
  --wallpi-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;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--wallpi-font, "Inter", sans-serif);
  color: var(--wallpi-text, #2a2826);
  font-size: 16px;
  line-height: 2.125;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--wallpi-base, #d18548);
  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(--wallpi-heading-font, "Pathway Extreme", sans-serif);
  color: var(--wallpi-text-dark, #241c14);
}
@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;
}

.background-base {
  background-color: var(--wallpi-base, #d18548);
}

.background-gray {
  background-color: var(--wallpi-gray, #f9f6f1);
}

.background-black {
  background-color: var(--wallpi-black, #2a2826);
}

.background-black-2 {
  background-color: var(--wallpi-black2, #4a3626);
}

.background-black-3 {
  background-color: var(--wallpi-black3, #000);
}

.wallpi-text-dark {
  color: var(--wallpi-text-dark, #241c14);
}

.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-60 {
  --bs-gutter-y: 60px;
}

.wallpi-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--wallpi-black, #2a2826);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--wallpi-heading-font, "Pathway Extreme", sans-serif);
  padding: 16.25px 48px;
  transition: 500ms;
  text-transform: uppercase;
  height: 62px;
  background-color: var(--wallpi-black, #2a2826);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wallpi-btn:hover {
  color: var(--wallpi-black, #2a2826);
  background-color: #fff;
}
.wallpi-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: var(--wallpi-black, #2a2826);
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.wallpi-btn::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--wallpi-white, #fff);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.wallpi-btn:hover {
  color: var(--wallpi-black, #2a2826);
}
.wallpi-btn:hover::before {
  top: 100%;
}
.wallpi-btn:hover::after {
  bottom: -50%;
}
.wallpi-btn span {
  position: relative;
  color: inherit;
  z-index: 2;
}
.wallpi-btn--black:hover {
  color: var(--wallpi-white, #fff);
}
.wallpi-btn--black::after {
  background-color: var(--wallpi-base, #d18548);
}
.wallpi-btn--black::before {
  background-color: var(--wallpi-black, #2a2826);
}
.wallpi-btn--base:hover {
  color: var(--wallpi-white, #fff);
}
.wallpi-btn--base::after {
  background-color: var(--wallpi-black, #2a2826);
}
.wallpi-btn--base::before {
  background-color: var(--wallpi-base, #d18548);
}

.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(--wallpi-base, #d18548);
}

.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(--wallpi-text, #2a2826);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.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(--wallpi-text, #2a2826);
  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(--wallpi-black, #2a2826);
  font-family: var(--wallpi-special-font, "Kumbh 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(--wallpi-black, #2a2826);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 95px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--wallpi-base, #d18548);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--wallpi-black, #2a2826);
  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(--wallpi-base, #d18548);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--wallpi-black, #2a2826);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* post paginations */
.post-pagination {
  margin-bottom: 0;
  margin-top: 0px;
}
@media (min-width: 992px) {
  .post-pagination {
    margin-top: 0px;
  }
}
.post-pagination a {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #eff2f6;
  align-items: center;
  justify-content: center;
  color: var(--wallpi-text, #2a2826);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  transition: 500ms ease;
}
@media (min-width: 992px) {
  .post-pagination a {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
.post-pagination a:hover {
  background-color: var(--wallpi-base, #d18548);
  color: #fff;
}
.post-pagination li:first-child a {
  background-color: var(--wallpi-base, #d18548);
  color: #fff;
}
.post-pagination li:last-child a {
  background-color: var(--wallpi-black, #2a2826);
  color: #fff;
}
.post-pagination li + li {
  margin-left: 10px;
}

.wallpi-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.wallpi-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.wallpi-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.wallpi-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  border-radius: 9px;
  overflow: hidden;
}
.wallpi-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}
.wallpi-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  width: 89px;
  height: 102px;
  background-color: var(--wallpi-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--wallpi-text, #2a2826);
  font-size: 32px;
  color: var(--wallpi-text, #2a2826);
  transition: all 500ms ease;
}
.wallpi-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
  background-color: var(--wallpi-base, #d18548);
  color: var(--wallpi-white, #fff);
}
.wallpi-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  margin-top: 50px;
}
.wallpi-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: #dedede;
  border: 2px solid #dedede;
  margin: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
  transition: all 0.5s ease;
}
.wallpi-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .wallpi-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
  border-color: var(--wallpi-base, #d18548);
  width: 16px;
  height: 16px;
}
.wallpi-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}

.sec-title {
  padding-bottom: 50px;
}
.sec-title__img {
  display: inline-flex;
  margin-bottom: 15px;
}
.sec-title__tagline {
  margin: 0;
  font-family: var(--wallpi-font, "Inter", sans-serif);
  color: var(--wallpi-base, #d18548);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 2px;
}
@media (max-width: 991px) {
  .sec-title__tagline {
    font-size: 13px;
  }
}
.sec-title__tagline::after, .sec-title__tagline::before {
  content: "";
  position: absolute;
  width: 111px;
  height: 1px;
  border-bottom: 1px solid var(--wallpi-base, #d18548);
  border-left: 1px solid var(--wallpi-base, #d18548);
  left: 0;
  right: 0;
  bottom: -2px;
  margin: 0 auto;
}
.sec-title__tagline::before {
  width: 51px;
  bottom: 0;
}
.sec-title__title {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--wallpi-text-dark, #241c14);
  font-size: 65px;
  line-height: 70px;
  margin-top: 13px;
}
@media (max-width: 991px) {
  .sec-title__title {
    font-size: 48px;
    line-height: 52px;
    margin-top: 6px;
  }
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 32px;
    line-height: 36px;
  }
  .sec-title__title > br {
    display: none;
  }
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--wallpi-black, #2a2826);
  color: var(--wallpi-white, #fff);
  font-family: var(--wallpi-font, "Inter", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--wallpi-font, "Inter", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--wallpi-gray, #f9f6f1);
  background-image: none;
  font-family: var(--wallpi-font, "Inter", sans-serif);
  color: var(--wallpi-text, #2a2826);
}
.ui-datepicker-calendar td a {
  border-color: var(--wallpi-border-color, #2a2826);
  background-color: var(--wallpi-gray, #f9f6f1);
  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(--wallpi-border-color, #2a2826);
  background-color: var(--wallpi-gray, #f9f6f1);
  background-image: none;
  color: var(--wallpi-text, #2a2826);
  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(--wallpi-white, #fff);
  background-color: var(--wallpi-base, #d18548);
}
.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(--wallpi-white, #fff);
  background-color: var(--wallpi-base, #d18548);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--wallpi-white, #fff);
  color: var(--wallpi-black, #2a2826);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--wallpi-base, #d18548);
  color: var(--wallpi-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(--wallpi-black, #2a2826);
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 1200px) {
  .hero-section {
    padding-bottom: 195px;
  }
}
.hero-section__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.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__content {
  text-align: center;
}
@media (min-width: 992px) {
  .hero-section__content {
    text-align: left;
  }
}
.hero-section__square-shape {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 0 2px;
  margin-top: 129px;
}
@media (max-width: 991px) {
  .hero-section__square-shape {
    margin-top: 68px;
  }
}
.hero-section__square-shape::before, .hero-section__square-shape::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
}
.hero-section__square-shape::after {
  background-color: var(--wallpi-white, #fff);
  margin-top: -20px;
  -webkit-animation: squareSshapeGreen 1.5s infinite alternate;
  animation: squareSshapeGreen 1.5s infinite alternate;
}
@-webkit-keyframes squareSshapeGreen {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes squareSshapeGreen {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.hero-section__square-shape::before {
  width: 26px;
  height: 26px;
  background-color: var(--wallpi-base, #d18548);
  -webkit-animation: squareSshapeYellow 1.5s infinite alternate;
  animation: squareSshapeYellow 1.5s infinite alternate;
}
@-webkit-keyframes squareSshapeYellow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes squareSshapeYellow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.hero-section__title {
  margin: 0;
  font-size: 42px;
  line-height: 54px;
  color: var(--wallpi-text-white, #fff);
  font-weight: 700;
  margin-top: 38px;
  margin-bottom: 52px;
}
@media (min-width: 1200px) {
  .hero-section__title {
    margin-top: 47px;
    font-size: 60px;
    line-height: 77px;
  }
}
.hero-section .wallpi-btn {
  font-family: var(--wallpi-font, "Inter", sans-serif);
  font-size: 16px;
  line-height: 1;
  color: var(--wallpi-text-white, #fff);
  text-transform: uppercase;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 27px;
  padding-right: 27px;
  width: fit-content;
  border-radius: 0;
  margin-left: 0;
  background-color: var(--wallpi-text-white, #fff);
}
.hero-section .wallpi-btn::before {
  background-color: var(--wallpi-base, #d18548);
}
.hero-section .wallpi-btn::after {
  background-color: var(--wallpi-black2, #4a3626);
}
.hero-section .wallpi-btn:hover {
  color: var(--wallpi-white, #fff);
}
@media (max-width: 991px) {
  .hero-section .wallpi-btn {
    margin: 0 auto;
  }
}
.hero-section__stars {
  position: absolute;
  width: auto;
  height: auto;
  top: 26%;
  right: 36.3%;
  z-index: 2;
}
@media (max-width: 1600px) {
  .hero-section__stars {
    right: 52%;
  }
}
@media (max-width: 1400px) {
  .hero-section__stars {
    right: 56%;
  }
}
@media (max-width: 1200px) {
  .hero-section__stars {
    right: 30%;
  }
}
.hero-section__stars__one, .hero-section__stars__two, .hero-section__stars__three {
  position: absolute;
  top: 0;
}
.hero-section__stars__one {
  right: inherit;
  top: 30px;
  -webkit-animation: startIconOne 1.8s infinite alternate;
  animation: startIconOne 1.8s infinite alternate;
}
@-webkit-keyframes startIconOne {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes startIconOne {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.hero-section__stars__two {
  right: initial;
  left: 48px;
  -webkit-animation: startIconTwo 1.8s infinite alternate;
  animation: startIconTwo 1.8s infinite alternate;
}
@-webkit-keyframes startIconTwo {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes startIconTwo {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.hero-section__stars__three {
  top: 62px;
  left: 65px;
  right: initial;
  -webkit-animation: startIconThree 1s infinite alternate;
  animation: startIconThree 1s infinite alternate;
}
@-webkit-keyframes startIconThree {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes startIconThree {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.hero-section__images {
  display: none;
}
.hero-section__images img {
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: -5px 0px 40px 0px rgba(0, 0, 0, 0.15);
}
.hero-section__images img:nth-child(2) {
  right: 300px;
}
.hero-section__images img:nth-child(3) {
  right: 496px;
}
@media (min-width: 1200px) {
  .hero-section__images {
    display: block;
  }
}
.hero-section__arrow {
  width: 72px;
  height: 96px;
  background-image: url("../images/wallpi-landing/demo-hero-arrow1-1.png");
  background-repeat: no-repeat;
  position: absolute;
  bottom: 125px;
  left: 44.5%;
  -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;
  display: none;
}
@media (min-width: 1200px) {
  .hero-section__arrow {
    display: block;
  }
}
@media (max-width: 1600px) {
  .hero-section__arrow {
    left: 32%;
  }
}
@media (max-width: 1400px) {
  .hero-section__arrow {
    left: 29%;
  }
}
.hero-section__arrow2 {
  width: 65px;
  height: 102px;
  background-image: url("../images/wallpi-landing/demo-hero-arrow1-2.png");
  background-repeat: no-repeat;
  position: absolute;
  top: 28%;
  left: 6%;
  -webkit-animation-name: float-bob-y-3;
  animation-name: float-bob-y-3;
  -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;
  display: none;
}
@media (min-width: 1200px) {
  .hero-section__arrow2 {
    display: block;
  }
}
@media (max-width: 1600px) {
  .hero-section__arrow2 {
    left: 3%;
  }
}
@media (max-width: 1400px) {
  .hero-section__arrow2 {
    left: 1%;
  }
}

@-webkit-keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@-webkit-keyframes float-bob-y-3 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes float-bob-y-3 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.features-two {
  background-color: #f1fcfd;
  padding-top: 134px;
  padding-bottom: 102px;
  position: relative;
}
.features-two::before, .features-two::after {
  content: "";
  position: absolute;
  width: 335px;
  height: 413px;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 1600px) {
  .features-two::before, .features-two::after {
    width: 250px;
    height: 250px;
  }
}
.features-two::before {
  background-image: url("../images/wallpi-landing/feature-shape-2-2.png");
  left: 50px;
  top: 64px;
  animation: landingEffec1_Rotate 7.2s linear infinite;
}
@keyframes landingEffec1_Rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.features-two::after {
  background-image: url("../images/wallpi-landing/feature-shape-2-2.png");
  right: 15px;
  bottom: 88px;
  animation: landingEffec2_Rotate 7.2s linear infinite;
}
@keyframes landingEffec2_Rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
@media (max-width: 991px) {
  .features-two {
    padding-top: 62px;
    padding-bottom: 46px;
  }
}
.features-two .container {
  position: relative;
  z-index: 3;
}
.features-two__left-effectlanding, .features-two__right-effectlanding {
  position: absolute;
  width: 35px;
  height: 121px;
  z-index: 2;
  display: none;
}
@media (min-width: 1200px) {
  .features-two__left-effectlanding, .features-two__right-effectlanding {
    display: block;
  }
}
.features-two__left-effectlanding {
  left: 10.3%;
  bottom: 54px;
  animation: landingEffec3_Rotate 1.2s linear infinite alternate;
}
@keyframes landingEffec3_Rotate {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-13px);
  }
}
@media (max-width: 1600px) {
  .features-two__left-effectlanding {
    left: 7%;
  }
}
@media (max-width: 1366px) {
  .features-two__left-effectlanding {
    left: 3%;
  }
}
.features-two__right-effectlanding {
  right: 18.8%;
  top: 113px;
  animation: landingEffec4_Rotate 1.2s linear infinite alternate;
}
@keyframes landingEffec4_Rotate {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-13px);
  }
}
@media (max-width: 1600px) {
  .features-two__right-effectlanding {
    right: 7%;
  }
}
@media (max-width: 1366px) {
  .features-two__right-effectlanding {
    right: 4%;
  }
}
.features-two__heading-title {
  font-size: 55px;
  line-height: 70px;
  color: #130903;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .features-two__heading-title {
    font-size: 38px;
    line-height: 52px;
    margin-bottom: 42px;
  }
}
.features-two__box {
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .features-two__box {
    margin-bottom: 30px;
  }
}
.features-two__image {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background-color: var(--wallpi-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.5s ease;
}
.features-two__image img {
  max-height: 51px;
  display: inline-block;
  transform: scale(1);
}
.features-two__image:hover {
  background-color: var(--wallpi-base, #d18548);
}
.features-two__image:hover img {
  transform: scale(0.9);
  filter: brightness(1) invert(1);
}
.features-two__title {
  font-family: var(--wallpi-font, "Inter", sans-serif);
  font-size: 20px;
  line-height: 34px;
  color: #111113;
  margin: 28px 0 0;
  font-weight: 600;
  text-align: center;
}

/*--------------------------------------------------------------
# Demo Section
--------------------------------------------------------------*/
.demos-one {
  position: relative;
  padding: 92px 0 65px;
}
@media (max-width: 991px) {
  .demos-one {
    padding: 58px 0 42px;
  }
}
.demos-one__title {
  text-align: center;
  font-size: 55px;
  line-height: 70px;
  font-weight: 700;
  color: #130903;
  margin-bottom: 66px;
}
@media (max-width: 991px) {
  .demos-one__title {
    font-size: 38px;
    line-height: 52px;
    margin-bottom: 42px;
  }
}
.demos-one__single {
  margin: 0 0 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  text-align: center;
  background-color: var(--wallpi-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--wallpi-black-rgb, 42, 40, 38), 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(0);
}
.demos-one__image {
  position: relative;
  border: 1px solid #090808;
  border-radius: 4px;
}
.demos-one__image img {
  max-width: 100%;
  transition: filter 500ms ease;
  border-radius: 4px !important;
  filter: blur(0px);
}
.demos-one__buttons {
  background-color: rgba(var(--wallpi-base-rgb, 209, 133, 72), 0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px 0;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demos-one__buttons .wallpi-btn {
  min-width: 148px;
  background-color: var(--wallpi-black, #2a2826);
  display: inline-flex;
  width: fit-content;
  margin: 0 auto;
  font-size: 15px;
  padding: 12.2px 28px;
  font-weight: 500;
  color: #130903;
  background-color: var(--wallpi-white, #fff);
}
.demos-one__buttons .wallpi-btn.demo-multi-btn {
  background-color: var(--wallpi-white, #fff);
}
.demos-one__buttons .wallpi-btn.demo-single-btn {
  background-color: var(--wallpi-white, #fff);
}
.demos-one__buttons .wallpi-btn::before {
  background-color: var(--wallpi-white, #fff);
}
.demos-one__buttons .wallpi-btn::after {
  background-color: var(--wallpi-base, #d18548);
}
.demos-one__buttons .wallpi-btn:hover {
  color: var(--wallpi-text-white, #fff);
}
.demos-one__text {
  text-align: center;
  padding-top: 34px;
  padding-bottom: 40px;
}
.demos-one__text__title {
  font-size: 24px;
  line-height: 1;
  margin: 0;
  color: #111113;
  font-weight: 500;
  font-family: var(--wallpi-font, "Inter", sans-serif);
  text-align: center;
}

/*--------------------------------------------------------------
#  Feature Section 02
--------------------------------------------------------------*/
.features-one {
  background-image: url("../images/wallpi-landing/feature-one-bg1-1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 87px 0 111px;
}
@media (max-width: 767px) {
  .features-one {
    padding: 65px 0 30px;
  }
}
.features-one__title {
  text-align: center;
  font-size: 55px;
  line-height: 78px;
  font-weight: 700;
  color: #2d450f;
  margin-bottom: 86px;
}
@media (max-width: 991px) {
  .features-one__title {
    font-size: 38px;
    line-height: 52px;
    margin-bottom: 42px;
  }
}
.features-one__grid {
  display: grid;
  grid-gap: 0 30px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1199px) {
  .features-one__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .features-one__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .features-one__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.features-one__box {
  text-align: center;
  position: relative;
  margin: 0 0 30px;
  background-color: var(--wallpi-white, #fff);
  border: 1px solid #d3d2d2;
  border-radius: 33px;
  padding: 50px 0 58px 0;
}
.features-one__box__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-one__box__image img {
  max-height: 62px;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transform: scale(1);
}
.features-one__box__title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  color: #111113;
  font-weight: 500;
  margin: 27px 0 0;
}
.features-one__box:hover .features-one__box__image img {
  transform: scale(0.9);
}

/*--------------------------------------------------------------
#  Footer Section
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  padding-top: 158px;
  padding-bottom: 155px;
}
.main-footer::before, .main-footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  animation: footerEffec1_Rotate 6.2s linear infinite alternate;
  display: none;
}
@keyframes footerEffec1_Rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(15deg);
  }
}
@media (min-width: 1024px) {
  .main-footer::before, .main-footer::after {
    display: block;
  }
}
.main-footer::before {
  left: 9%;
  bottom: 157px;
  background-image: url("../images/wallpi-landing/footer-shape-effect1-1.png");
  background-repeat: no-repeat;
  background-position: left bottom;
}
.main-footer::after {
  right: 12%;
  top: 74px;
  background-image: url("../images/wallpi-landing/footer-shape-effect1-2.png");
  background-repeat: no-repeat;
  background-position: right top;
}
@media (max-width: 991px) {
  .main-footer {
    padding-top: 75px;
    padding-bottom: 70px;
  }
}
.main-footer .container {
  position: relative;
  z-index: 3;
  max-width: 780px;
}
.main-footer__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-size: cover;
}
.main-footer__title {
  font-size: 38px;
  line-height: 52px;
  font-weight: 700;
  color: var(--wallpi-white, #fff);
  margin-bottom: 28px;
}
@media (min-width: 1200px) {
  .main-footer__title {
    font-size: 55px;
    line-height: 70px;
  }
}
.main-footer__text {
  margin: 0 0 36px;
  color: var(--wallpi-white, #fff);
}
@media (min-width: 1200px) {
  .main-footer__text {
    font-size: 20px;
    line-height: 36px;
    font-weight: 400;
    color: var(--wallpi-white, #fff);
    margin: 0 0 56px;
  }
}
.main-footer .wallpi-btn {
  font-size: 16px;
  line-height: 1;
  color: #11100c;
  font-weight: 600;
  text-transform: uppercase;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px;
  padding-right: 24px;
  width: fit-content;
  border-radius: 0;
  background-color: var(--wallpi-white, #fff);
  margin: 0 auto;
}
@media (max-width: 991px) {
  .main-footer .wallpi-btn {
    margin: 0 auto;
  }
}
.main-footer .wallpi-btn::before {
  background-color: var(--wallpi-white, #fff);
}
.main-footer .wallpi-btn::after {
  background-color: var(--wallpi-base, #d18548);
}
.main-footer .wallpi-btn:hover {
  color: var(--wallpi-text-white, #fff);
}
/*# sourceMappingURL=wallpi-landing.css.map */
