/* --------------------------------------------------------------*/
:root {
  --easilon-font: "Manrope", sans-serif;
  --easilon-text: #82828A;
  --easilon-text-rgb: 130, 130, 138;
  --easilon-base: #b58d32;
  --easilon-base-rgb: 0, 205, 229;
  --easilon-gray: #A0A0C0;
  --easilon-gray-rgb: 160, 160, 192;
  --easilon-white: #ffffff;
  --easilon-white-rgb: 255, 255, 255;
  --easilon-white2: #F6F6F8;
  --easilon-white2-rgb: 246, 246, 248;
  --easilon-white3: #ECF0F5;
  --easilon-white3-rgb: 236, 240, 245;
  --easilon-black: #2B2B5E;
  --easilon-black-rgb: 43, 43, 94;
  --easilon-black2: #141414;
  --easilon-black2-rgb: 20, 20, 20;
  --easilon-black3: #1E2436;
  --easilon-black3-rgb: 30, 36, 54;
  --easilon-black4: #082545;
  --easilon-black4-rgb: 8, 37, 69;
  --easilon-border-color: #E6E6ED;
  --easilon-border-color-rgb: 230, 230, 237;
  --easilon-letter-space: -0.02em;
  --easilon-letter-space-xl: -0.03em;
  --section-space: 120px;
  --section-space2: 116px;
}

/*--------------------------------------------------------------
# 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(--easilon-font, "Manrope", sans-serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--easilon-text, #82828A);
  line-height: 1.75;
  background-color: var(--easilon-white, #ffffff);
}

body.locked {
  overflow: hidden;
}

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

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

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

@media (max-width: 768px) {
  .hidemob {
    display: none;
  }

  .visible-xs {
    display: block !important;
  }
}

.dontdisplaylg {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--easilon-font, "Manrope", sans-serif);
  color: var(--easilon-black, #2B2B5E);
}

@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(--easilon-base, #b58d32);
} */

/* .background-gray {
  background-color: var(--easilon-gray, #A0A0C0);
} */

/* .background-white {
  background-color: var(--easilon-white, #ffffff);
} */

/* .background-white-2 {
  background-color: var(--easilon-white2, #F6F6F8);
} */

/* .background-black {
  background-color: var(--easilon-black, #2B2B5E);
}

.background-black-2 {
  background-color: var(--easilon-black2, #141414);
} */

.easilon-text {
  color: var(--easilon-text, #82828A);
}

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

.section-space {
  padding-top: var(--section-space, 120px);
  padding-bottom: var(--section-space, 120px);
}

@media (max-width: 767px) {
  .section-space {
    padding-top: 75px;
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .section-space {
    padding-top: 75px;
    padding-bottom: 80px;
  }
}

.section-space-two {
  padding-top: var(--section-space2, 118px);
  padding-bottom: var(--section-space, 120px);
}

@media (max-width: 767px) {
  .section-space-two {
    padding-top: 97px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .section-space-two {
    padding-top: 77px;
    padding-bottom: 80px;
  }
}

.section-space-top {
  padding-top: var(--section-space, 120px);
}

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

@media (max-width: 575px) {
  .section-space-top {
    padding-top: 80px;
  }
}

.section-space-bottom {
  padding-bottom: var(--section-space, 120px);
}

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

@media (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

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

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

.logo-retina img {
  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;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 140px;
}

.easilon-btn {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  padding: 13px 15px;
  font-family: var(--easilon-font, "Manrope", sans-serif);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--easilon-white, #ffffff);
  line-height: 1;
  /* text-transform: uppercase; */
  background-color: var(--easilon-base, #b58d32);
  z-index: 1;
  transition: 500ms;
  border-radius: 10px;
}

@media (max-width: 430px) {
  .easilon-btn {
    font-size: 14px;
  }
}

.easilon-btn::before,
.easilon-btn::after {
  content: "";
  background-color: var(--easilon-black, #2B2B5E);
  height: calc(50% + 1px);
  width: 0;
  position: absolute;
  transition: 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.easilon-btn::before {
  top: 0;
  left: 0;
  right: auto;
}

.easilon-btn::after {
  bottom: 0;
  right: 0;
  left: auto;
}

.easilon-btn:hover::before {
  width: 100%;
  right: 0;
  left: auto;
}

.easilon-btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.easilon-btn span {
  position: relative;
  /* top: 1px; */
  color: inherit;
}

.easilon-btn__icon {
  position: relative;
  font-size: 14px;
  color: inherit;
  transition: all 400ms ease;
}

.easilon-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.easilon-btn__icon::after {
  content: "";
  width: 1px;
  height: calc(100% - 3px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -14px;
  background-color: var(--easilon-white, #ffffff);
  transition: all 400ms ease;
}

.easilon-btn--black {
  background-color: var(--easilon-black, #2B2B5E);
}

.easilon-btn--black::before,
.easilon-btn--black::after {
  background-color: var(--easilon-base, #b58d32);
}

.easilon-btn--white {
  color: var(--easilon-base, #b58d32);
  background-color: var(--easilon-white, #ffffff);
}

.easilon-btn--white::before,
.easilon-btn--white::after {
  background-color: var(--easilon-base, #b58d32);
}

.easilon-btn--white .easilon-btn__icon::after {
  background-color: var(--easilon-base, #b58d32);
}

.easilon-btn--white:hover {
  color: var(--easilon-white, #ffffff);
}

.easilon-btn--white:hover .easilon-btn__icon::after {
  background-color: var(--easilon-white, #ffffff);
}

.easilon-btn--border {
  padding: 13px 20px;
  color: var(--easilon-base, #b58d32);
  background-color: transparent;
  border: 1px solid var(--easilon-base, #b58d32);
}

.easilon-btn--border::before,
.easilon-btn--border::after {
  background-color: var(--easilon-base, #b58d32);
}

.easilon-btn--border .easilon-btn__icon::after {
  background-color: var(--easilon-base, #b58d32);
}

.easilon-btn--border:hover {
  color: var(--easilon-white, #ffffff);
}

.easilon-btn--border:hover .easilon-btn__icon::after {
  background-color: var(--easilon-white, #ffffff);
}

/* section title */
.sec-title {
  margin-bottom: 51px;
}

.sec-title--center {
  text-align: center;
}

.sec-title--center .sec-title__top {
  justify-content: center;
  /* display: none; */
}

.sec-title__top {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.sec-title__shape {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.sec-title__shape__one,
.sec-title__shape__two {
  flex-shrink: 0;
  height: 4px;
  background-color: var(--easilon-base, #b58d32);
}

.sec-title__shape__one {
  width: 11px;
}

.sec-title__shape__two {
  width: 18px;
}

.sec-title__tagline {
  margin-bottom: 0;
  font-family: var(--easilon-font, "Manrope", sans-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--easilon-base, #b58d32);
  line-height: 1.4;
  /* text-transform: uppercase; */
}

.sec-title__title {
  white-space: normal;
}

h1.sec-title__title {
  font-size: 36px;
  font-weight: 600;
}

h3.sec-title__title {
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px;
  word-spacing: 3px;
  line-height: 1.4;
}

.sec-title__title {
  margin: 0;
  font-family: var(--easilon-font, "Manrope", sans-serif);
  /* font-size: 34px; */
  font-weight: 700;
  color: var(--easilon-black, #2B2B5E);
  line-height: 1.111;
  letter-spacing: var(--easilon-letter-space-xl, -0.03em);
  text-transform: capitalize;
}

/* @media (max-width: 575px) {
  .sec-title__title {
    font-size: 30px;
  }

} */

/* @media (max-width: 430px) {
  .sec-title__title {
    font-size: 30px;
  }
} */

.video-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  font-size: 18px;
  color: var(--easilon-base, #b58d32);
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--easilon-base, #b58d32);
  transition: all 500ms ease;
}

.video-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.video-btn:hover {
  color: var(--easilon-white, #ffffff);
  background-color: var(--easilon-base, #b58d32);
}

.video-btn>span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border: 1px solid var(--easilon-base, #b58d32);
  border-radius: 50%;
  z-index: -1;
  transition: all 500ms ease;
  -webkit-animation: pulse-animate 4s linear infinite;
  animation: pulse-animate 4s linear infinite;
}

.video-btn span:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.video-btn span:nth-child(3) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-btn span:nth-child(4) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

@-webkit-keyframes pulse-animate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes pulse-animate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

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

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -24px;
  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(--easilon-base, #b58d32);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--easilon-black, #2B2B5E);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 100px;
}

/* .easilon-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}

.easilon-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.easilon-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--easilon-black, #2B2B5E);
  background-color: var(--easilon-white2, #F6F6F8);
  border-radius: 50%;
  transition: all 400ms ease;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--easilon-white, #ffffff);
  background-color: var(--easilon-base, #b58d32);
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  border: 0;
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--easilon-base, #b58d32);
  transition: all 400ms ease;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  border-radius: inherit;
  border: 1px solid var(--easilon-base, #b58d32);
  transition: all 400ms ease;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover,
.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--easilon-base, #b58d32);
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover::after,
.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span,
.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
  margin-top: 60px;
}

.easilon-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled,
.easilon-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
} */

@keyframes animatedBorder3 {
  0% {
    border-color: RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
  }

  50% {
    border-color: RGBA(var(--easilon-base-rgb, 0, 205, 229), 0.6);
  }

  100% {
    border-color: RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
  }
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  background-color: var(--easilon-white, #ffffff);
  z-index: 99;
}

.main-header .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1550px;
}

.main-header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  /* or your header bg */
  /* z-index: 9999; */
  transition: all 0.3s ease;
}

/* Optional shadow when sticky */
.main-header.sticky-active {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 1199px) {
  .main-header__inner {
    padding: 9px 0;
  }
}

.main-header__logo img {
  /* max-width: 65%; */
  height: auto;
  width: 180px;
}

.main-header__right {
  display: flex;
  align-items: center;
}

/* .main-header__nav {
  margin-right: 78px;
} */

/* @media (max-width: 1599px) {
  .main-header__nav {
    margin-right: 60px;
  }
} */

.main-header__cart,
.main-header__search {
  position: relative;
  font-size: 16px;
  color: var(--easilon-black, #2B2B5E);
  line-height: 1;
  transition: all 500ms ease;
}

.main-header__cart svg,
.main-header__search svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.main-header__cart:hover,
.main-header__search:hover {
  color: var(--easilon-base, #b58d32);
}

@media (max-width: 1199px) {
  .main-header__search {
    margin-left: 50px;
  }

  .main-header__search::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    background-color: var(--easilon-border-color, #E6E6ED);
  }
}

@media (max-width: 425px) {
  .main-header__search {
    margin-left: 36px;
  }

  .main-header__search::before {
    left: -18px;
  }
}

.main-header__cart {
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .main-header__cart {
    margin-left: 35px;
  }
}

@media (max-width: 425px) {
  .main-header__cart {
    margin-left: 25px;
  }
}

.main-header__btn {
  margin-left: 40px;
  padding: 13px 15px;
}

/* @media (max-width: 1599px) {
  .main-header__btn {
    margin-left: 60px;
  }
} */

/* @media (max-width: 1399px) {
  .main-header__btn {
    margin-left: 40px;
  }
} */

@media (max-width: 1199px) {
  .main-header__btn {
    /* margin-left: 50px; */
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

@media (max-width: 991px) {
  .main-header__btn {
    display: none;
  }
}

/* @media (min-width: 1200px) and (max-width: 1299px) {
  .main-header__btn {
    display: none;
  }
} */

/* .main-header__btn .easilon-btn__icon {
  font-size: 19px;
} */

.main-header__btn .easilon-btn__icon::after {
  background-color: RGBA(var(--easilon-white-rgb, 255, 255, 255), 0.25);
  height: calc(100% - 1px);
}

.mobile-nav__btn {
  width: 26px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}

.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--easilon-black, #2B2B5E);
  transition: all 500ms ease;
}

.mobile-nav__btn span:nth-child(2) {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mobile-nav__btn:hover span {
  background-color: var(--easilon-base, #b58d32);
}

.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 {
  position: relative;
  padding: 35px 0;
}

.main-menu .main-menu__list>li.dropdown>a {
  position: relative;
}

.main-menu .main-menu__list>li+li {
  margin-left: 20px;
}

/* @media (max-width: 1399px) {
  .main-menu .main-menu__list>li+li {
    margin-left: 40px;
  }
} */

/* @media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu .main-menu__list>li+li {
    margin-left: 35px;
  }
} */

.main-menu .main-menu__list>li>a {
  position: relative;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: var(--easilon-black, #2B2B5E);
  line-height: 1.25;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
  color: var(--easilon-base, #b58d32);
  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(--easilon-white, #ffffff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--easilon-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-family: var(--easilon-font, "Manrope", sans-serif);
  font-size: 14px;
  line-height: 26px;
  color: var(--easilon-black, #2B2B5E);
  font-weight: 600;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}

.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(--easilon-white, #ffffff);
  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(--easilon-base, #b58d32);
  color: var(--easilon-white, #ffffff);
}

.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(--easilon-white, #ffffff);
  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(--easilon-black, #2B2B5E);
} */

/* @media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}

.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--easilon-base, #b58d32);
} */

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

/*--------------------------------------------------------------
# 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(--easilon-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(--easilon-white, #ffffff);
}

.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(--easilon-black2, #141414);
  opacity: 0.6;
  /* cursor: url(../images/close.png), auto; */
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--easilon-black, #2B2B5E);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 20px;
  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: 25px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 13px;
  right: 15px;
  font-size: 20px;
  color: var(--easilon-white, #ffffff);
  cursor: pointer;
  transition: all 500ms ease;
}

.mobile-nav__close svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__close:hover {
  color: var(--easilon-base, #b58d32);
}

.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(--easilon-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(--easilon-white-rgb, 255, 255, 255), 0.1);
}

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

.mobile-nav__content .main-menu__list>li>ul>li>a {
  font-size: 13px;
}

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

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--easilon-base, #b58d32);
  border: none;
  outline: none;
  color: var(--easilon-white, #ffffff);
  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 svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--easilon-white, #ffffff);
  color: var(--easilon-black, #2B2B5E);
}

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

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
/* .page-header {
  background-color: var(--easilon-black, #2B2B5E);
  position: relative;
  padding-top: 108px;
  padding-bottom: 111px;
  overflow: hidden;
}

@media (max-width: 575px) {
  .page-header {
    padding-top: 88px;
    padding-bottom: 91px;
  }
}

.page-header__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header__bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: RGBA(var(--easilon-black-rgb, 43, 43, 94), 0.8);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header__content {
  text-align: center;
}

.page-header__title {
  margin-bottom: 11px;
  font-size: 45px;
  color: var(--easilon-white, #ffffff);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.222;
}

@media (max-width: 767px) {
  .page-header__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .page-header__title {
    font-size: 35px;
  }
}

.page-header__border-box {
  display: flex;
  width: calc(100% - 240px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

@media (max-width: 1199px) {
  .page-header__border-box {
    width: calc(100% - 180px);
  }
}

@media (max-width: 991px) {
  .page-header__border-box {
    width: calc(100% - 150px);
  }
}

@media (max-width: 767px) {
  .page-header__border-box {
    width: calc(100% - 100px);
  }
}

@media (max-width: 767px) {
  .page-header__border-box {
    width: calc(100% - 80px);
  }
}

.page-header__border {
  width: 20%;
  height: 100%;
  border-right: 1px solid RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
  animation: animatedBorder2 1500ms infinite ease;
}

@media (max-width: 1199px) {
  .page-header__border {
    width: 25%;
  }
}

@media (max-width: 991px) {
  .page-header__border {
    width: 33.333%;
  }
}

@media (max-width: 575px) {
  .page-header__border {
    width: 50%;
  }
}

.page-header__border--1 {
  border-left: 1px solid RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
}

@media (max-width: 575px) {
  .page-header__border--3 {
    display: none;
  }
}

@media (max-width: 991px) {
  .page-header__border--4 {
    display: none;
  }
}

@media (max-width: 1199px) {
  .page-header__border--5 {
    display: none;
  }
} */

@keyframes animatedBorder2 {
  0% {
    border-color: RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
  }

  50% {
    border-color: RGBA(var(--easilon-base-rgb, 0, 205, 229), 0.6);
  }

  100% {
    border-color: RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
  }
}

/* .easilon-breadcrumb {
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  flex-wrap: wrap;
}

.easilon-breadcrumb li {
  font-size: 16px;
  color: var(--easilon-white, #ffffff);
  line-height: 1.25;
  font-weight: 500;
  text-transform: capitalize;
  line-height: normal;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .easilon-breadcrumb li {
    font-size: 15px;
  }
}

.easilon-breadcrumb li:not(:last-of-type)::after {
  content: "\e917";
  font-family: "icomoon" !important;
  font-size: 20px;
  color: var(--easilon-white, #ffffff);
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  top: 0;
  margin-left: 7px;
  margin-right: 7px;
}

.easilon-breadcrumb li span,
.easilon-breadcrumb li a {
  display: inline-flex;
}

.easilon-breadcrumb li:not(:first-child) span {
  color: var(--easilon-base, #b58d32);
  font-weight: 700;
}

.easilon-breadcrumb li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.easilon-breadcrumb li a:hover {
  background-size: 100% 1px;
}

.easilon-breadcrumb li a:hover {
  color: var(--easilon-base, #b58d32);
} */

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
/* .google-map {
  position: relative;
}

.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 620px;
  width: 100%;
}

@media (max-width: 991px) {
  .google-map iframe {
    height: 450px;
  }
}

.google-map__contact {
  overflow: hidden;
  background-color: var(--easilon-white, #ffffff);
} */

/* .contact-map {
  position: relative;
}

.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
} */

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
/* .client-carousel {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--easilon-white, #ffffff);
}

@media (max-width: 575px) {
  .client-carousel {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.client-carousel--home-3 .client-carousel__one {
  position: relative;
}

.client-carousel--home-3 .client-carousel__one::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--easilon-border-color, #E6E6ED);
  position: absolute;
  left: 0;
  bottom: -100px;
}

.client-carousel__one .owl-stage {
  display: flex;
  align-items: center;
}

.client-carousel__one {
  position: relative;
}

.client-carousel__one__item {
  position: relative;
  text-align: center;
}

.client-carousel__one__item img {
  max-width: 100%;
  width: auto !important;
}

.client-carousel__one__image {
  margin: auto;
}

.client-carousel__one__hover-image {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}

.client-carousel__one__item:hover .client-carousel__one__hover-image {
  opacity: 1;
} */

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  margin: 0;
}

@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .form-one__group--grid {
    grid-template-columns: 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__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.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) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--easilon-font, "Manrope", sans-serif);
}

.form-one .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.form-one .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 65px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--easilon-white2, #F6F6F8) !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--easilon-font, "Manrope", sans-serif);
  color: var(--easilon-text, #82828A) !important;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 65px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.form-one .bootstrap-select>.dropdown-toggle::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: var(--easilon-text, #82828A);
}

.form-one .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--easilon-border-color, #E6E6ED);
}

.form-one .bootstrap-select .dropdown-menu {
  border: none;
}

.form-one .bootstrap-select .dropdown-menu>li>a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  font-family: var(--easilon-font, "Manrope", sans-serif);
  color: var(--easilon-black, #2B2B5E);
  background-color: var(--easilon-white2, #F6F6F8);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form-one .bootstrap-select .dropdown-menu>li:hover>a,
.form-one .bootstrap-select .dropdown-menu>li.selected>a {
  background-color: var(--easilon-base, #b58d32);
  color: var(--easilon-white, #ffffff);
  border-color: var(--easilon-base, #b58d32);
}

.form-one .bootstrap-select>.dropdown-toggle {
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

.form-one label {
  margin-bottom: 11px;
  font-family: var(--easilon-font, "Manrope", sans-serif);
  font-size: 16px;
  color: var(--easilon-black, #2B2B5E);
  font-weight: 500;
  line-height: 1.88;
}

.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=password],
.form-one input[type=tel],
.form-one textarea {
  display: block;
  width: 100%;
  font-family: var(--easilon-font);
  color: #676770d4;
  font-size: 14px;
  font-weight: 500;
  border: none;
  outline: none;
  padding: 0 20px;
  height: 50px;
  background-color: var(--easilon-white2, #F6F6F8);
  border: 1px solid #ddd;
  transition: all 400ms ease;
}

.form-one input[type=text]:focus,
.form-one input[type=email]:focus,
.form-one input[type=password]:focus,
.form-one input[type=tel]:focus,
.form-one textarea:focus {
  color: var(--easilon-black2, #141414);
  border-color: var(--easilon-base, #b58d32);
}

.form-one textarea {
  height: 143px;
  padding: 20px 20px 0;
}

/*--------------------------------------------------------------
# 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: #000000;
  opacity: 0.7;
  /* 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(--easilon-white, #ffffff);
  font-size: 15px;
  color: var(--easilon-text, #82828A);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--easilon-black2, #141414);
}

.search-popup__form .easilon-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;
}

.search-popup__form .easilon-btn__icon {
  font-size: 20px;
}

.search-popup__form .easilon-btn__icon::after {
  display: none;
}

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

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  background-color: var(--easilon-white, #ffffff);
  padding: 95px 0 85px;
}

.contact-one__image {
  position: relative;
  padding: 110px 50px 50px 50px;
  width: 100%;
  /* max-width: 570px; */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 767px) {
  .contact-one__image {
    padding-top: 150px;
    height: 200px;
  }
}

/* @media (max-width: 450px) {
  .contact-one__image {
    padding: 150px 30px 30px 30px;
  }
} */

/* @media (max-width: 375px) {
  .contact-one__image {
    padding: 150px 25px 25px 25px;
  }
} */

.contact-one__info {
  display: table;
  position: relative;
  margin: 0;
  z-index: 1;
}

@media (max-width: 412px) {
  .contact-one__info {
    display: block;
  }
}

.contact-one__info__shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotate(10.16deg);
  background-color: var(--easilon-base, #b58d32);
  transition: all 500ms ease;
}

@media (max-width: 450px) {
  .contact-one__info__shape {
    display: none;
  }
}

.contact-one__info:hover .contact-one__info__shape {
  transform: rotate(-10.16deg);
}

.contact-one__info__inner {
  position: relative;
  z-index: 1;
  padding: 50px 50px 50px 40px;
  background-color: var(--easilon-white, #ffffff);
}

@media (max-width: 767px) {
  .contact-one__info__inner {
    padding: 30px;
    display: none;
  }
}

.contact-one__info__item {
  display: flex;
  gap: 15px;
}

@media (max-width: 412px) {
  .contact-one__info__item {
    flex-direction: column;
  }
}

.contact-one__info__item+.contact-one__info__item {
  margin-top: 35px;
}


.contact-one__info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  font-size: 18px;
  color: var(--easilon-base, #b58d32);
  border-radius: 50%;
  border: 1px solid var(--easilon-base, #b58d32);
  transition: all 500ms ease;
}


.contact-one__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.contact-one__info__item:hover .contact-one__info__icon {
  color: var(--easilon-white, #ffffff);
  background-color: var(--easilon-base, #b58d32);
}

.contact-one__info__content {
  position: relative;
  top: 5px;
}

@media (max-width: 412px) {
  .contact-one__info__content {
    top: 0;
  }
}

.contact-one__info__title {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
}

.contact-one__info__text {
  font-weight: 400;
  color: var(--easilon-text, #82828A);
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.contact-one__info__text:hover {
  background-size: 100% 1px;
  text-decoration: none !;
}

.contact-one__info__text:hover {
  color: var(--easilon-base, #b58d32);
  text-decoration: none !important;
}

.contact-one__form__title {
  margin-bottom: 35px;
  margin-top: -13px;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.54;
  text-transform: capitalize;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact-one__form .form-one__group {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-one__form__btn {
  padding: 17px 23px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 19px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  background-color: var(--easilon-black, #2B2B5E);
}

.main-footer__top {
  padding-top: 60px;
  padding-bottom: 60px;
}

.main-footer--home .main-footer__top {
  padding-top: 176px;
}

.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  mix-blend-mode: color-burn;
  opacity: 0.3;
}

.main-footer .container {
  position: relative;
  z-index: 1;
}

.main-footer__bottom__inner {
  padding: 20px 0;
  border-top: 1px solid rgba(var(--easilon-border-color-rgb, 230, 230, 237), 0.25);
  margin-top: -1rem;
}

@media (max-width: 767px) {
  .main-footer__bottom__inner {
    padding-bottom: 48px;
  }
}

/* .main-footer__bottom__copyright {
  text-align: right;
} */

/* @media (max-width: 767px) {
  .main-footer__bottom__copyright {
    text-align: center;
  }
} */

@media (max-width: 767px) {
  .main-footer__social {
    justify-content: center;
  }
}

.main-footer__copyright {
  margin: 0;
  color: var(--easilon-gray, #A0A0C0);
  /* text-transform: capitalize; */
  font-size: 10px;
}

.footer-widget--links-one {
  /* margin-top: 37px; */
  position: relative;
  left: 76px;
}

@media (max-width: 1199px) {
  .footer-widget--links-one {
    left: 10px;
  }
}

@media (max-width: 991px) {
  .footer-widget--links-one {
    margin-top: 0 !important;
    left: 0px;
  }
}

.footer-widget--links-two {
  /* margin-top: 37px; */
  padding-left: 78px;
}

@media (max-width: 1199px) {
  .footer-widget--links-two {
    padding-left: 10px;
  }
}

@media (max-width: 991px) {
  .footer-widget--links-two {
    margin-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .footer-widget--links-two {
    padding-left: 0px;
  }
}

/* .footer-widget--contact {
  margin-top: 37px;
} */

@media (max-width: 1199px) {
  .footer-widget--contact {
    margin-top: 0;
  }
}

.footer-widget__title {
  margin-bottom: 28px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: var(--easilon-white, #ffffff);
  text-transform: capitalize;
  line-height: 1.22;
}

.footer-widget__title::before,
.footer-widget__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: var(--easilon-base, #b58d32);
  width: 10px;
  height: 2px;
}

.footer-widget__title::after {
  width: 29px;
  left: 14px;
}

.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 32px;
  height: 100px;
  width: 100px;
}

.footer-widget--about {
  text-align: center;
}

.footer-widget--about .footer-widget__logo {
  /* display: flex; */
  justify-content: center;
}

.footer-widget--about img {
  margin: 0 auto;
  display: block;
}

.footer-widget--about .rera-link {
  display: inline-block;
  margin-top: 5px;
  color: #ffffffcf;
  font-size: 13px;
}

.footer-widget--about .rera-link:hover {
  color: #b58d32;
}

.footer-widget__about-text {
  margin-bottom: -2px;
  margin-top: -13px;
  /* font-size: 18px; */
  color: #ffffffcf;
}

@media (max-width: 991px) {
  .footer-widget__about-text {
    width: 100%;
    max-width: 500px;
  }
}

.footer-widget__newsletter {
  position: relative;
}

@media (max-width: 991px) {
  .footer-widget__newsletter {
    width: 100%;
    max-width: 500px;
  }
}

.footer-widget__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 58px;
  background-color: var(--easilon-white, #ffffff);
  color: var(--easilon-text, #82828A);
  font-size: 14px;
  font-weight: 500;
  padding-left: 24px;
  padding-right: 56px;
  transition: all 500ms ease;
}

.footer-widget__newsletter input[type=text]:focus {
  color: var(--easilon-black2, #141414);
}

.footer-widget__newsletter button[type=submit] {
  position: relative;
  padding: 0;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--easilon-base, #b58d32);
  font-size: 24px;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}

.footer-widget__newsletter button[type=submit]:hover {
  color: var(--easilon-black, #2B2B5E);
}

.footer-widget__newsletter button[type=submit]::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  background-color: var(--easilon-border-color, #E6E6ED);
  transition: all 500ms ease;
}

.footer-widget__newsletter button[type=submit]:hover::after {
  background-color: var(--easilon-black, #2B2B5E);
}

.footer-widget__links {
  margin: 0;
}

.footer-widget__links li+li {
  margin-top: 12px;
}

.footer-widget__links li {
  font-size: 16px;
  color: #ffffffcf;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.5;
}

.footer-widget__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.footer-widget__links li a:hover {
  background-size: 100% 1px;
}

.footer-widget__links li a:hover {
  color: var(--easilon-base, #b58d32);
}

.footer-widget__info {
  margin: 0;
  padding-top: 6px;
}

.footer-widget__info li {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--easilon-gray, #A0A0C0);
  font-weight: 500;
  line-height: 1.2;
}

.footer-widget__info li+li {
  margin-top: 20px;
}

.footer-widget__info li:nth-child(1) {
  display: block;
}

.footer-widget__info li:nth-child(1) a {
  line-height: 1.866;
  text-transform: capitalize;
}

.footer-widget__info li a {
  color: #ffffffcf;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.footer-widget__info li a:hover {
  background-size: 100% 1px;
}

.footer-widget__info li a:hover {
  color: var(--easilon-base, #b58d32);
}

.footer-widget__info__icon {
  display: inline-flex;
  margin-right: 10px;
  font-size: 18px;
  color: var(--easilon-base, #b58d32);
}

.footer-widget__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--easilon-base, #b58d32);
  -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(--easilon-base, #b58d32);
  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(--easilon-base, #b58d32);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# 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 shapeMover {

  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes squareMover {

  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes treeMove {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}

@keyframes leafMove {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    transform: rotate(-2deg) translateX(5px);
  }

  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}

@keyframes messageMove {

  0%,
  100% {
    transform: translateX(0);
  }

  25%,
  75% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes shapeRotate {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(90deg);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes flowerRotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25%,
  75% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes zump {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1.3);
  }

  50% {
    transform: scale(0.7);
  }

  100% {
    transform: scale(1.3);
  }
}

@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes moveHorizontal2 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@keyframes wobble-horizontal-hover {
  16.65% {
    transform: translateX(5px);
  }

  33.3% {
    transform: translateX(-3px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes smartMove {
  0% {
    width: 0;
  }

  15% {
    width: 202px;
  }

  85% {
    opacity: 1;
  }

  90% {
    width: 202px;
    opacity: 0;
  }

  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes float-bob-y {
  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 rectMove {

  0%,
  50%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25%,
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes cloudMove {
  0% {
    background-position: -1920px 100%;
  }

  100% {
    background-position: 0 100%;
  }
}

@keyframes cloudMoveY {
  0% {
    background-position: 100% 1920px;
  }

  100% {
    background-position: 100% 0;
  }
}

@keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes sliderLeft {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}


@keyframes animatedBorder1 {
  0% {
    border-color: RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
  }

  50% {
    border-color: RGBA(var(--easilon-base-rgb, 0, 205, 229), 0.6);
  }

  100% {
    border-color: RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  background-color: var(--easilon-white2, #F6F6F8);
  overflow: hidden;
  padding: 70px 0 70px;
}

@media (max-width: 450px) {
  /* .about-one {
    padding-top: 220px;
  } */

  .about-one .easilon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0;
    /* auto = center horizontally */
    width: fit-content;
    /* keeps button size tight */
    margin-bottom: 2rem;
  }

}

.about-one--about {
  background-color: var(--easilon-white, #ffffff);
}

.about-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.25;
}

.about-one .container {
  position: relative;
  z-index: 1;
}

.about-one__image {
  padding-left: 100px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-one__image {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .about-one__image {
    padding-left: 50px;
  }
}

@media (max-width: 575px) {
  .about-one__image {
    padding-left: 40px;
  }
}

.about-one__image__inner {
  position: relative;
  display: table;
  margin-top: 4.5rem;
}

.about-one__image__inner img {
  max-width: 100%;
  height: auto;
}

.about-one__image__with-border {
  position: absolute;
  right: -100px;
  bottom: 50px;
  z-index: 1;
  border: 10px solid var(--easilon-white, #ffffff);
  filter: drop-shadow(0px 4px 60px rgba(117, 165, 67, 0.12));
  animation: moveHorizontal2 2s linear infinite;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-one__image__with-border {
    max-width: 200px !important;
    right: -50px;
  }
}

@media (max-width: 575px) {
  .about-one__image__with-border {
    display: none;
  }
}

.about-one__image__shape {
  position: absolute;
  top: 30px;
  right: -80px;
  animation: zumpBottom 2s linear infinite;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-one__image__shape {
    right: -65px;
  }
}

@media (max-width: 575px) {
  .about-one__image__shape {
    display: none;
  }
}

.about-one__experience {
  position: relative;
  position: absolute;
  top: 50px;
  left: -100px;
  padding: 34px 26px 19px;
  text-align: center;
  background-color: var(--easilon-base, #b58d32);
  z-index: 2;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-one__experience {
    left: -40px;
  }
}

@media (max-width: 767px) {
  .about-one__experience {
    left: -60px;
  }

  .about-one__image__inner {
    margin-top: 4rem;
  }
}

@media (max-width: 575px) {
  .about-one__experience {
    left: -40px;
  }
}

@media (max-width: 450px) {
  .about-one__experience {
    top: -140px;
  }
}

.about-one__experience::before {
  content: "";
  width: 101px;
  height: 67px;
  background-color: var(--easilon-black, #2B2B5E);
  position: absolute;
  left: 0;
  bottom: -67px;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-one__experience::before {
    width: 40px;
    height: 35px;
    bottom: -35px;
  }
}

@media (max-width: 767px) {
  .about-one__experience::before {
    width: 60px;
    height: 45px;
    bottom: -45px;
  }
}

@media (max-width: 575px) {
  .about-one__experience::before {
    width: 40px;
    height: 35px;
    bottom: -35px;
  }
}

.about-one__experience__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.25;
}

.about-one__experience__content {
  position: relative;
  z-index: 1;
}

.about-one__experience .video-btn {
  margin: 0 auto 27px;
  background-color: var(--easilon-white, #ffffff);
}

.about-one__experience .video-btn>span {
  border-color: RGBA(var(--easilon-white-rgb, 255, 255, 255), 0.25);
}

.about-one__experience .video-btn:hover {
  background-color: var(--easilon-black, #2B2B5E);
}

.about-one__experience .video-btn:hover>span {
  border-color: RGBA(var(--easilon-black-rgb, 43, 43, 94), 0.25);
}

.about-one__experience__year {
  margin-bottom: 3px;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.22;
  color: var(--easilon-white, #ffffff);
  letter-spacing: var(--easilon-letter-space-xl, -0.03em);
  text-transform: capitalize;
}

.about-one__experience__title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.375;
  color: var(--easilon-white, #ffffff);
  letter-spacing: var(--easilon-letter-space-xl, -0.03em);
  text-transform: capitalize;
}

.about-one__content {
  position: relative;
}

@media (min-width: 992px) {
  .about-one__content {
    top: -3px;
  }
}

.about-one .sec-title {
  margin-bottom: 28px;
}

.about-one__text {
  margin-bottom: 15px;
  /* text-transform: capitalize; */
  color: #000000a6;
}

.about-one__list {
  margin-bottom: 41px;
  display: flex;
  align-items: center;
  gap: 6px 46px;
  flex-wrap: wrap;
}

.about-one__list__item+.about-one__list__item {
  margin-top: 6px;
}

.about-one__list__item {
  display: flex;
  gap: 11px;
  font-weight: 600;
  font-size: 16px;
  color: var(--easilon-black, #2B2B5E);
  line-height: 1.75;
  text-transform: capitalize;
}

.about-one__list__icon {
  font-size: 18px;
  color: var(--easilon-base, #b58d32);
}

.about-one__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.about-one__money {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 96px;
  bottom: 120px;
  opacity: 0.25;
  animation: moveHorizontal2 2s linear infinite;
}

@media (max-width: 1599px) {
  .about-one__money {
    left: 30px;
    bottom: 60px;
  }
}

@media (max-width: 1399px) {
  .about-one__money {
    display: none;
  }
}

.about-one__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  animation: zumpBottom 2s linear infinite;
}

@media (max-width: 1599px) {
  .about-one__shape {
    max-width: 250px;
  }
}

@media (max-width: 1399px) {
  .about-one__shape {
    max-width: 200px;
  }
}

@media (max-width: 1199px) {
  .about-one__shape {
    display: none;
  }
}


@keyframes rotateShape {
  50% {
    transform: rotate(-4.3deg);
  }

  100% {
    transform: rotate(4.3deg);
  }
}

.services-one {
  position: relative;
  background-color: #222224;
  counter-reset: offerServiceNumber;
  padding: 60px 0 70px;
}

.services-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.3;
}

.services-one .container {
  position: relative;
  z-index: 1;
}

.services-one .sec-title {
  margin-bottom: 14px;
}

.services-one .sec-title .para {
  margin-top: 2rem;
  margin-bottom: 3rem;
  text-align: left;
  color: #dddddde3;
}

.services-one__slide {
  margin-bottom: 51px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 19px;
  animation: textScrolling 25s linear infinite;
  animation-direction: reverse;
  will-change: transform;
  position: relative;
  white-space: nowrap;
}

.services-one__slide:hover {
  animation-play-state: paused;
}

@keyframes textScrolling {
  0% {
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    transform: translate3d(0%, 0, 0);
  }
}

.services-one__slide__text {
  margin: 0;
  font-family: var(--easilon-font, "Manrope", sans-serif);
  font-size: 65px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: all 400ms ease;
}

@media (max-width: 575px) {
  .services-one__slide__text {
    font-size: 60px;
  }
}

.services-one__slide__text--one {
  color: var(--easilon-black, #2B2B5E);
  text-shadow: 1px 1px 0 var(--easilon-white, #ffffff), -1px -1px 0 var(--easilon-white, #ffffff), 1px -1px 0 var(--easilon-white, #ffffff), -1px 1px 0 var(--easilon-white, #ffffff), 1px 1px 0 var(--easilon-white, #ffffff);
}

.services-one__slide__text--two {
  color: var(--easilon-white, #ffffff);
}

.services-one__slide__icon {
  display: inline-flex;
  font-size: 30px;
  color: var(--easilon-base, #b58d32);
}

.services-one__slide__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.services-one__main-tab-box {
  /* margin-bottom: 120px; */
  position: relative;
  display: grid;
  grid-template-columns: 60% auto;
  grid-gap: 30px 0;
  align-items: center;
  border: 1px solid RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
}

@media (max-width: 1199px) {
  .services-one__main-tab-box {
    grid-template-columns: 50% auto;
  }
}

@media (max-width: 991px) {
  .services-one__main-tab-box {
    grid-template-columns: auto;
  }
}

/* @media (max-width: 767px) {
  .services-one__main-tab-box {
    margin-bottom: 100px;
  }
} */

/* @media (max-width: 575px) {
  .services-one__main-tab-box {
    margin-bottom: 80px;
  }
} */

@media (max-width: 390px) {
  .services-one__main-tab-box {
    grid-gap: 20px 0;
  }
}

.services-one__main-tab-box .tab-buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  border-right: 1px solid RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
}

@media (max-width: 991px) {
  .services-one__main-tab-box .tab-buttons {
    border: 0;
  }
}

.services-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  transition: all 500ms ease;
  z-index: 1;
}

@media (max-width: 991px) {
  .services-one__main-tab-box .tab-buttons .tab-btn {
    border-bottom: 1px solid RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
  }
}

@media (min-width: 992px) {
  .services-one__main-tab-box .tab-buttons .tab-btn:not(:last-child) {
    border-bottom: 1px solid RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
  }
}

@media (max-width: 430px) {
  .services-one__main-tab-box .tab-buttons .tab-btn {
    padding-left: 20px;
  }
}

.services-one__main-tab-box .tab-buttons .tab-btn__inner {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 25px 30px 26px 77px;
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  font-size: 30px;
  color: var(--easilon-gray, #A0A0C0);
  font-weight: 600;
  line-height: 1.222;
  letter-spacing: var(--easilon-letter-space-xl, -0.03em);
  text-transform: capitalize;
  transition: all 500ms ease;
}

@media (max-width: 1199px) {
  .services-one__main-tab-box .tab-buttons .tab-btn__inner {
    font-size: 25px;
    padding-left: 50px;
  }
}

@media (max-width: 991px) {
  .services-one__main-tab-box .tab-buttons .tab-btn__inner {
    padding-top: 17px;
    padding-bottom: 18px;
  }
}

@media (max-width: 575px) {
  .services-one__main-tab-box .tab-buttons .tab-btn__inner {
    font-size: 20px;
    padding: 15px 30px 16px 40px;
  }
}

@media (max-width: 430px) {
  .services-one__main-tab-box .tab-buttons .tab-btn__inner {
    padding-right: 20px;
    padding-left: 35px;
    font-size: 18px;
  }
}

/* .services-one__main-tab-box .tab-buttons .tab-btn__inner::after {
  content: counters(offerServiceNumber, ".", decimal-leading-zero);
  counter-increment: offerServiceNumber;
  font-size: 45px;
  color: var(--easilon-black, #2B2B5E);
  text-shadow: 1px 1px 0 RGBA(var(--easilon-white2-rgb, 246, 246, 248), 0.25), -1px -1px 0 RGBA(var(--easilon-white2-rgb, 246, 246, 248), 0.25), 1px -1px 0 RGBA(var(--easilon-white2-rgb, 246, 246, 248), 0.25), -1px 1px 0 RGBA(var(--easilon-white2-rgb, 246, 246, 248), 0.25), 1px 1px 0 RGBA(var(--easilon-white2-rgb, 246, 246, 248), 0.25);
  font-weight: 700;
  text-transform: capitalize;
  position: absolute;
  letter-spacing: var(--easilon-letter-space-xl, -0.03em);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
} */
@media (max-width: 1199px) {
  .services-one__main-tab-box .tab-buttons .tab-btn__inner::after {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .services-one__main-tab-box .tab-buttons .tab-btn__inner::after {
    font-size: 20px;
  }
}

@media (max-width: 430px) {
  .services-one__main-tab-box .tab-buttons .tab-btn__inner::after {
    font-size: 18px;
  }
}

.services-one__main-tab-box .tab-buttons .tab-btn__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: var(--easilon-white, #ffffff);
  border-radius: 50%;
  border: 1px solid RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
  transition: all 500ms ease;
  z-index: 1;
}

.services-one__main-tab-box .tab-buttons .tab-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

@media (max-width: 1199px) {
  .services-one__main-tab-box .tab-buttons .tab-btn__icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .services-one__main-tab-box .tab-buttons .tab-btn__icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 430px) {
  .services-one__main-tab-box .tab-buttons .tab-btn__icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

.services-one__main-tab-box .tab-buttons .tab-btn:hover .tab-btn__inner,
.services-one__main-tab-box .tab-buttons .tab-btn.active-btn .tab-btn__inner {
  color: var(--easilon-white, #ffffff);
}

.services-one__main-tab-box .tab-buttons .tab-btn:hover .tab-btn__inner::after,
.services-one__main-tab-box .tab-buttons .tab-btn.active-btn .tab-btn__inner::after {
  text-shadow: 1px 1px 0 RGBA(var(--easilon-white2-rgb, 246, 246, 248), 1), -1px -1px 0 RGBA(var(--easilon-white2-rgb, 246, 246, 248), 1), 1px -1px 0 RGBA(var(--easilon-white2-rgb, 246, 246, 248), 1), -1px 1px 0 RGBA(var(--easilon-white2-rgb, 246, 246, 248), 1), 1px 1px 0 RGBA(var(--easilon-white2-rgb, 246, 246, 248), 1);
}

.services-one__main-tab-box .tab-buttons .tab-btn:hover .tab-btn__inner .tab-btn__icon,
.services-one__main-tab-box .tab-buttons .tab-btn.active-btn .tab-btn__inner .tab-btn__icon {
  color: var(--easilon-white, #ffffff);
  background-color: var(--easilon-base, #b58d32);
}

.services-one__main-tab-box .tabs-content {
  position: relative;
  display: block;
  z-index: 1;
}

.services-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.services-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  /*! margin-top: 0px; */
}

.services-one__service {
  display: block;
  padding: 60px;
  overflow: hidden;
}

@media (max-width: 575px) {
  .services-one__service {
    padding-top: 0px;
  }
}

@media (max-width: 390px) {
  .services-one__service {
    padding: 0 20px 20px;
  }
}

.services-one__service__image {
  display: block;
  position: relative;
  overflow: hidden;
}

.services-one__service__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}

.services-one__service__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

.services-one__service__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}

.services-one__service__overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--easilon-base-rgb, 0, 205, 229), 0.8);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  z-index: 1;
  transition: opacity 500ms ease, transform 500ms ease;
}

.services-one__service__overlay::before,
.services-one__service__overlay::after {
  content: "";
  width: 28px;
  height: 2px;
  background-color: var(--easilon-white, #ffffff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-one__service__overlay::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.services-one__service:hover .services-one__service__overlay {
  opacity: 1;
  transform: translateY(0);
}

.services-one__service:hover .services-one__service__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}

.services-one__service:hover .services-one__service__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial-card {
  position: relative;
}

.testimonial-card__icon {
  margin-bottom: 41px;
  width: 51px;
  height: 37px;
  transition: all 500ms ease;
}

.testimonial-card__icon path:nth-child(1),
.testimonial-card__icon path:nth-child(2) {
  fill: var(--easilon-white, #ffffff);
  transition: all 500ms ease;
}

.testimonial-card__icon path:nth-child(3),
.testimonial-card__icon path:nth-child(4) {
  stroke: var(--easilon-base, #b58d32);
  transition: all 500ms ease;
}

.testimonial-card:hover .testimonial-card__icon path:nth-child(3),
.testimonial-card:hover .testimonial-card__icon path:nth-child(4) {
  fill: var(--easilon-base, #b58d32);
}

.testimonial-card .easilon-ratings {
  margin-bottom: 21px;
  gap: 5px;
}

.testimonial-card .easilon-ratings__icon {
  font-size: 16px;
  color: var(--easilon-base, #b58d32);
}

.testimonial-card__quote {
  margin-top: 30px;
  font-size: 16px;
  color: var(--easilon-white2, #F6F6F8);
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card__quote span {
  color: var(--easilon-base, #b58d32);
}

@media (max-width: 575px) {
  .testimonial-card__quote {
    font-size: 16px;
  }
}

.testimonial-card__name {
  margin-bottom: 1px;
  color: var(--easilon-white, #ffffff);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.666;
  letter-spacing: var(--easilon-letter-space, -0.02em);
  text-transform: uppercase;
}

.testimonial-card__designation {
  margin: 0;
  font-size: 12px;
  color: var(--easilon-white, #ffffff);
  line-height: 1.5;
  letter-spacing: var(--easilon-letter-space, -0.02em);
  text-transform: uppercase;
}

.testimonial-card-two {
  position: relative;
}

.testimonial-card-two::after {
  content: "";
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  top: 30px;
  border: 1px solid var(--easilon-base, #b58d32);
  z-index: -1;
  transition: all 500ms ease;
}

@media (max-width: 430px) {
  .testimonial-card-two::after {
    top: 20px;
    width: calc(100% - 20px);
  }
}

.testimonial-card-two__inner {
  position: relative;
  margin-left: 30px;
  padding: 22px 30px 25px;
  background-color: var(--easilon-white, #ffffff);
  box-shadow: 0px 4px 60px RGBA(var(--easilon-black2-rgb, 20, 20, 20), 0.1);
  overflow: hidden;
}

@media (max-width: 430px) {
  .testimonial-card-two__inner {
    margin-left: 20px;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.testimonial-card-two__top {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.testimonial-card-two__image {
  position: relative;
  padding: 10px;
}

.testimonial-card-two__image::after {
  content: "";
  width: 100%;
  height: calc(100% + 100px);
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--easilon-white2, #F6F6F8);
  border-radius: 0px 0px 1000px 1000px;
  transition: all 500ms ease;
}

.testimonial-card-two__image img {
  position: relative;
  z-index: 1;
  width: 50px !important;
  height: 50px;
  border-radius: 50%;
}

.testimonial-card-two:hover .testimonial-card-two__image::after {
  background-color: var(--easilon-base, #b58d32);
}

.testimonial-card-two__icon {
  flex-shrink: 0;
  width: 56px;
  height: 41px;
  transition: all 500ms ease;
}

.testimonial-card-two__icon path:nth-child(1),
.testimonial-card-two__icon path:nth-child(2) {
  fill: var(--easilon-white2, #F6F6F8);
  transition: all 500ms ease;
}

.testimonial-card-two__icon path:nth-child(3),
.testimonial-card-two__icon path:nth-child(4) {
  stroke: var(--easilon-base, #b58d32);
  transition: all 500ms ease;
}

.testimonial-card-two:hover .testimonial-card-two__icon path:nth-child(1),
.testimonial-card-two:hover .testimonial-card-two__icon path:nth-child(2) {
  fill: var(--easilon-black, #2B2B5E);
}

.testimonial-card-two:hover .testimonial-card-two__icon path:nth-child(3),
.testimonial-card-two:hover .testimonial-card-two__icon path:nth-child(4) {
  fill: var(--easilon-base, #b58d32);
}

.testimonial-card-two__quote {
  margin-bottom: 34px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.7;
}

.testimonial-card-two__quote span {
  color: var(--easilon-black, #2B2B5E);
}

@media (max-width: 575px) {
  .testimonial-card-two__quote {
    font-size: 18px;
  }
}

.testimonial-card-two__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 40px;
}

.testimonial-card-two__name {
  margin-bottom: 0;
  color: var(--easilon-base, #b58d32);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.666;
  letter-spacing: var(--easilon-letter-space, -0.02em);
  text-transform: uppercase;
}

.testimonial-card-two__designation {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: var(--easilon-letter-space, -0.02em);
  text-transform: capitalize;
}

.testimonial-card-two .easilon-ratings {
  gap: 5px;
}

.testimonial-card-two .easilon-ratings__icon {
  font-size: 17px;
  color: var(--easilon-base, #b58d32);
}

.testimonial-card-three {
  position: relative;
}

.testimonial-card-three__bg {
  width: 100%;
  height: calc(100% - 43px);
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--easilon-white2, #F6F6F8);
}

.testimonial-card-three__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

.testimonial-card-three__content {
  padding: 30px 30px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 360px) {
  .testimonial-card-three__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.testimonial-card-three__image {
  position: absolute;
  top: -40px;
  left: 30px;
  width: 86px !important;
  height: 86px;
  border-radius: 50%;
  border: 5px solid var(--easilon-white, #ffffff);
  transition: all 500ms ease;
}

.testimonial-card-three:hover .testimonial-card-three__image {
  border-color: var(--easilon-base, #b58d32);
}

.testimonial-card-three .easilon-ratings {
  margin-bottom: 22px;
  justify-content: flex-end;
}

.testimonial-card-three__quote {
  margin-bottom: 29px;
  font-style: italic;
  font-size: 22px;
  text-transform: capitalize;
  line-height: 1.59;
}

@media (max-width: 1199px) {
  .testimonial-card-three__quote {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .testimonial-card-three__quote {
    font-size: 18px;
  }
}

@media (max-width: 412px) {
  .testimonial-card-three__quote {
    font-size: 16px;
  }
}

.testimonial-card-three__bottom {
  padding: 25px 30px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 69px;
  background-color: var(--easilon-base, #b58d32);
}

@media (max-width: 1199px) {
  .testimonial-card-three__bottom {
    gap: 40px 50px;
  }
}

@media (max-width: 575px) {
  .testimonial-card-three__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.testimonial-card-three__name {
  margin-bottom: 5px;
  color: var(--easilon-white2, #F6F6F8);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.458;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .testimonial-card-three__name {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .testimonial-card-three__name {
    font-size: 20px;
  }
}

.testimonial-card-three__designation {
  margin: 0;
  font-weight: 600;
  color: var(--easilon-white2, #F6F6F8);
  font-size: 16px;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .testimonial-card-three__designation {
    font-size: 14px;
  }
}

.testimonial-card-three__icon {
  flex-shrink: 0;
  width: 65px;
  height: 46px;
  transition: all 500ms ease;
}

.testimonial-card-three__icon path {
  stroke: var(--easilon-white, #ffffff);
  stroke-width: 2px;
  transition: all 500ms ease;
}

.testimonial-card-three:hover .testimonial-card-three__icon path {
  fill: var(--easilon-white, #ffffff);
}

.testimonials-one {
  background-color: #e3e3e3;
  padding: 85px 0 85px;
}

.developer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 15px;
}

.developer-heading h3 {
  color: #fff;
  margin: 0;
}

.developer-heading img {
  max-width: 155px;
  height: auto;
}

/* ✅ Mobile View */
@media (max-width: 767px) {
  .developer-heading {
    flex-direction: column;
    /* stack */
    align-items: flex-start;
    /* left align */
    padding-bottom: 0px;
  }

  .developer-heading img {
    margin-top: 15px;
    width: 140px;
  }

  .testimonials-one {
    padding: 65px 0 65px;
  }

}

.testimonials-one__slider {
  position: relative;
  padding: 40px 40px 40px;
  background-color: var(--easilon-black, #2B2B5E);
}

@media (max-width: 430px) {
  .testimonials-one__slider {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.testimonials-one__slider::before {
  content: "";
  width: 6px;
  height: 35px;
  background-color: var(--easilon-base, #b58d32);
  position: absolute;
  left: 0;
  bottom: 195px;
}

@media (max-width: 767px) {
  .testimonials-one__slider::before {
    display: none;
  }
}

.testimonials-one__slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: darken;
  opacity: 0.25;
}

.testimonials-one .testimonial-card {
  padding-right: 40px;
}

@media (max-width: 1199px) {
  .testimonials-one .testimonial-card {
    padding-right: 0;
  }
}

.testimonials-one__carousel {
  position: relative;
  z-index: 2;
}

.testimonials-one__carousel.slick-slider {
  --slick-gutter: 20px;
  margin-left: calc(var(--slick-gutter) / -2);
  margin-right: calc(var(--slick-gutter) / -2);
}

.testimonials-one__carousel .slick-list {
  clip-path: inset(0 calc(var(--slick-gutter) / 2) 0 calc(var(--slick-gutter) / 2));
  /* warning: do not set `margin` or `padding` to anything other than `0` here! */
  margin: 0;
  padding: 0;
}

.testimonials-one__carousel .slick-slide {
  margin-left: calc(var(--slick-gutter) / 2);
  margin-right: calc(var(--slick-gutter) / 2);
}

.testimonials-one__carousel .slick-dots {
  position: relative;
  bottom: -93px;
  padding: 0;
  margin: 0;
  margin-left: auto;
  list-style: none;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

@media (max-width: 1199px) {
  .testimonials-one__carousel .slick-dots {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .testimonials-one__carousel .slick-dots {
    display: none !important;
  }
}

.testimonials-one__carousel .slick-dots li {
  cursor: pointer;
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--easilon-base, #b58d32);
  transition: all 400ms ease;
}

.testimonials-one__carousel .slick-dots li::after {
  display: none;
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  border-radius: inherit;
  border: 1px solid var(--easilon-base, #b58d32);
  transition: all 400ms ease;
}

.testimonials-one__carousel .slick-dots li:hover,
.testimonials-one__carousel .slick-dots li.slick-active {
  background-color: var(--easilon-base, #b58d32);
}

.testimonials-one__carousel .slick-dots li:hover::after,
.testimonials-one__carousel .slick-dots li.slick-active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.testimonials-one__carousel .slick-dots li button {
  display: none;
}

.testimonials-one__carousel-thumbs {
  width: 284px;
  position: absolute;
  left: 40px;
  bottom: 40px;
}

@media (max-width: 1199px) {
  .testimonials-one__carousel-thumbs {
    width: 255px;
    left: 30px;
  }
}

@media (max-width: 375px) {
  .testimonials-one__carousel-thumbs {
    width: 245px;
  }
}

.testimonials-one__carousel-thumbs .slick-track {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonials-one__carousel-thumbs .slick-slide {
  position: relative;
  cursor: pointer;
}

.testimonials-one__carousel-thumbs .slick-slide img {
  /* width: 70px; */
  height: 70px;
  /* border-radius: 50%; */
  transition: all 500ms ease;
}

@media (max-width: 1199px) {
  .testimonials-one__carousel-thumbs .slick-slide img {
    /* width: 60px; */
    height: 60px;
  }
}

@media (max-width: 375px) {
  .testimonials-one__carousel-thumbs .slick-slide img {
    /* width: 50px; */
    height: 50px;
  }
}

.testimonials-one__carousel-thumbs .slick-current+.slick-slide {
  position: relative;
  left: -5px;
}

.testimonials-one__carousel-thumbs .slick-current+.slick-slide img {
  width: 104px;
  height: 104px;
}

@media (max-width: 1199px) {
  .testimonials-one__carousel-thumbs .slick-current+.slick-slide img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 375px) {
  .testimonials-one__carousel-thumbs .slick-current+.slick-slide img {
    width: 80px;
    height: 80px;
  }
}

.testimonials-one__funfact__single+.testimonials-one__funfact__single {
  margin-top: 30px;
}

.testimonials-one__funfact__image img {
  width: 100%;
  display: block;
}

.testimonials-one .funfact-one__item {
  position: relative;
  padding: 36px 11px 40px;
  background-color: var(--easilon-white2, #F6F6F8);
  overflow: hidden;
  height: 150px;
  /* margin-top: 2rem; */
}

/* .years {
  margin-top: 0rem;
}

.projects {
  margin-top: 0rem;
} */

.customers {
  margin-top: 2.5rem;
}

.c-projects {
  margin-top: 2.5rem;
}

.happy-family-point {
  margin-top: 2rem;
}

.testimonials-one .funfact-one__item::before {
  content: "";
  width: 200%;
  height: 100%;
  position: absolute;
  top: -82%;
  left: 36px;
  background-color: var(--easilon-base, #b58d32);
  transform: rotate(45deg);
  transition: all 500ms ease;
}

.testimonials-one .funfact-one__item::after {
  content: "";
  width: 200%;
  height: 100%;
  position: absolute;
  bottom: -82%;
  right: 36px;
  background-color: var(--easilon-base, #b58d32);
  transform: rotate(45deg);
  transition: all 500ms ease;
}

.testimonials-one .funfact-one__item:hover::before,
.testimonials-one .funfact-one__item:hover::after {
  background-color: var(--easilon-black, #2B2B5E);
}

.testimonials-one .funfact-one__item__number {
  color: var(--easilon-white2, #F6F6F8);
  text-shadow: 1px 1px 0 var(--easilon-base, #b58d32), -1px -1px 0 var(--easilon-base, #b58d32), 1px -1px 0 var(--easilon-base, #b58d32), -1px 1px 0 var(--easilon-base, #b58d32), 1px 1px 0 var(--easilon-base, #b58d32);
  transition: all 500ms ease;
}

.testimonials-one .funfact-one__item:hover .funfact-one__item__number {
  color: var(--easilon-base, #b58d32);
  text-shadow: 1px 1px 0 transparent, -1px -1px 0 transparent, 1px -1px 0 transparent, -1px 1px 0 transparent, 1px 1px 0 transparent;
}

.testimonials-one .funfact-one__item__title {
  color: var(--easilon-black, #2B2B5E);
  padding-top: 10px;
}

@media (max-width: 767px) {

  .testimonials-one .funfact-one__item {
    height: auto;
    padding: 25px 20px 25px;
    margin-top: 2rem;
  }

  .years {
    margin-top: 0rem;
  }

  .projects {
    margin-top: 0rem;
  }

  .customers {
    margin-top: 0rem;
  }

  .c-projects {
    margin-top: 0rem;
  }

  .happy-family-point {
    margin-top: 0rem;
  }

  .testimonials-one__slider {
    margin-bottom: -2rem;
  }

  .funfact-one__item__number {
    margin-top: -5px;
  }

}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery-page {
  padding: 35px 0 85px;
  background: #dddddd54;
}

.gallery-page .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.gallery-page__filter__list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-page__filter__list li {
  cursor: pointer;
  padding: 12px 18px;
  font-size: 13px;
}

.gallery-page__filter__list li.active {
  color: var(--easilon-white, #ffffff);
  background-color: var(--easilon-black, #2B2B5E);
}

.gallery-page__card {
  position: relative;
  overflow: hidden;
  background-color: var(--easilon-black, #2B2B5E);
}

.gallery-page__card img {
  transform: scale(1);
  width: 100%;
  display: block;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}

.gallery-page__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--easilon-black-rgb, 43, 43, 94), 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.gallery-page__card__hover .img-popup {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--easilon-base, #b58d32);
  border-radius: 50%;
  transition: all 400ms ease;
}

.gallery-page__card__hover .img-popup:hover {
  background-color: var(--easilon-white, #ffffff);
}

.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: top center;
  transform: scale(1, 1);
}

.gallery-page__card__icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
}

.gallery-page__card__icon::after,
.gallery-page__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--easilon-white, #ffffff);
  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);
}

.gallery-page__card .img-popup:hover .gallery-page__card__icon::after,
.gallery-page__card .img-popup:hover .gallery-page__card__icon::before {
  background-color: var(--easilon-black, #2B2B5E);
}

.gallery-page__card img {
  width: 100%;
  display: block;
}

/* Force 2 columns on mobile */
@media (max-width: 767px) {
  .gallery-page .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -5px;
  }

  .gallery-page .row>div {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
    padding: 5px;
    margin-top: 10px;
  }

  .gallery-page {
    padding: 20px 0 60px;
  }

  .gallery-page h3.sec-title__title {
    margin-bottom: -25px;
  }

}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
  position: relative;
  padding: 50px 0 54px;
  background-color: var(--easilon-black, #2B2B5E);
}

.funfact-one__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

.funfact-one .container {
  position: relative;
  z-index: 1;
}

.funfact-one__col:not(:last-child) .funfact-one__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  width: 1px;
  height: 100%;
  background-color: RGBA(var(--easilon-white2-rgb, 246, 246, 248), 0.25);
}

@media (max-width: 575px) {
  .funfact-one__col:not(:last-child) .funfact-one__item::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .funfact-one__col:nth-child(2) .funfact-one__item::after {
    display: none;
  }
}

.funfact-one__item {
  position: relative;
  text-align: center;
}

.funfact-one__item__number {
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 45px;
  color: var(--easilon-black, #2B2B5E);
  text-shadow: 1px 1px 0 var(--easilon-base, #b58d32), -1px -1px 0 var(--easilon-base, #b58d32), 1px -1px 0 var(--easilon-base, #b58d32), -1px 1px 0 var(--easilon-base, #b58d32), 1px 1px 0 var(--easilon-base, #b58d32);
  line-height: 1.22;
  letter-spacing: var(--easilon-letter-space-xl, -0.03em);
  text-transform: capitalize;
  transition: all 500ms ease;
  margin-top: -10px;
}

@media (max-width: 1199px) {
  .funfact-one__item__number {
    font-size: 35px;
  }
}

.funfact-one__item:hover .funfact-one__item__number {
  text-shadow: none;
  color: var(--easilon-base, #b58d32);
}

.funfact-one__item__title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--easilon-white2, #F6F6F8);
  line-height: 1.38;
  letter-spacing: var(--easilon-letter-space-xl, -0.03em);
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-accordion {
  position: relative;
  z-index: 1;
}

.faq-accordion .accordion {
  background-color: var(--easilon-white, #ffffff);
}

.faq-accordion .accordion+.accordion {
  margin-top: 20px;
}

.faq-accordion .accordion-title {
  padding: 25.5px 20px 25.5px 78px;
  cursor: pointer;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .faq-accordion .accordion-title {
    padding-right: 20px;
  }
}

.faq-accordion .accordion-title h4 {
  margin: 0;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  transition: all 500ms ease;
}

.faq-accordion .accordion-title h4::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--easilon-border-color, #E6E6ED);
  position: absolute;
  top: calc(100% + 11.5px);
  left: -21px;
  transition: all 600ms linear;
}

.faq-accordion .accordion-title__icon {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  left: -66px;
  transform: translateY(-50%);
  background-color: var(--easilon-black, #2B2B5E);
}

.faq-accordion .accordion-title__icon::after,
.faq-accordion .accordion-title__icon::before {
  width: 2px;
  height: 16px;
  position: absolute;
  background-color: var(--easilon-white, #ffffff);
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.faq-accordion .accordion-title__icon::after {
  width: 16px;
  height: 2px;
}

.faq-accordion .active .accordion-title {
  border: 0;
}

.faq-accordion .active .accordion-title h4::after {
  width: calc(100% + 51px);
}

@media (max-width: 1199px) {
  .faq-accordion .active .accordion-title h4::after {
    width: calc(100% + 41px);
  }
}

.faq-accordion .active .accordion-title__icon {
  background-color: var(--easilon-base, #b58d32);
}

.faq-accordion .active .accordion-title__icon::after,
.faq-accordion .active .accordion-title__icon::before {
  background-color: var(--easilon-white, #ffffff);
  opacity: 0;
}

.faq-accordion .active .accordion-title__icon::after {
  opacity: 1;
}

.faq-accordion .accordion-content .inner {
  padding: 8px 20px 21px 13px;
}

.faq-accordion .accordion-content p {
  margin: 0;
  line-height: 1.875;
}

.faq-one {
  position: relative;
  padding: 70px 0 90px;
  background-color: var(--easilon-white2, #F6F6F8);
}

.faq-one .container {
  position: relative;
  z-index: 1;
}

.faq-one__image {
  position: relative;
  width: calc(100% - 55px);
}

@media (max-width: 1199px) {
  .faq-one__image {
    width: calc(100% - 32px);
  }
}

.faq-one__image__inner {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 882.000000"><g transform="translate(0.000000,882.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M6704 8811 c9 -14 -14 -19 -125 -25 -101 -7 -253 -22 -509 -51 -938 -107 -963 -109 -1610 -101 -300 3 -709 9 -910 12 -623 11 -1066 -27 -1415 -120 -149 -40 -168 -47 -325 -106 -85 -33 -261 -116 -312 -148 -14 -9 -48 -30 -75 -46 -161 -96 -464 -367 -581 -520 -25 -34 -49 -63 -52 -66 -10 -10 -127 -176 -171 -244 -119 -185 -286 -532 -329 -681 -5 -16 -20 -64 -34 -105 -41 -118 -52 -156 -101 -345 -65 -254 -122 -637 -146 -980 -13 -187 -6 -1118 9 -1305 20 -245 96 -703 138 -839 8 -25 14 -53 14 -64 0 -11 7 -40 14 -66 8 -25 23 -73 32 -106 29 -103 46 -159 57 -185 5 -14 13 -38 17 -55 29 -111 189 -494 262 -630 12 -22 37 -67 55 -100 18 -33 36 -67 40 -75 13 -29 97 -165 140 -228 24 -35 43 -65 43 -68 0 -3 5 -10 10 -17 6 -7 40 -52 77 -102 179 -242 379 -450 645 -671 129 -108 454 -299 633 -372 115 -47 264 -102 340 -125 489 -147 979 -213 1780 -237 1561 -49 2343 -51 2610 -8 39 6 86 12 105 15 176 19 482 104 655 182 99 45 111 51 165 81 219 125 379 266 524 460 76 103 82 111 126 198 112 223 157 552 114 841 -23 158 -67 374 -89 446 -7 22 -21 69 -30 105 -17 63 -33 120 -60 205 -7 22 -27 87 -45 145 -18 58 -46 146 -62 195 -15 50 -36 115 -44 145 -9 30 -23 70 -30 88 -8 18 -14 41 -14 52 0 11 -6 37 -14 57 -13 36 -25 79 -61 221 -109 431 -128 804 -59 1137 34 165 45 207 90 360 32 112 102 313 144 416 12 30 29 72 37 94 15 38 26 65 57 138 8 17 42 100 76 182 35 83 73 173 85 200 24 52 56 131 82 200 8 22 20 51 26 65 15 34 36 90 47 120 5 14 18 50 30 80 94 247 172 547 186 718 4 57 11 85 20 89 20 8 20 218 0 226 -9 4 -16 31 -21 79 -20 203 -119 438 -258 613 -37 46 -143 163 -168 185 -83 73 -312 230 -336 230 -3 0 -29 11 -58 24 -156 75 -418 143 -620 163 -55 6 -79 12 -77 21 1 9 -78 12 -374 12 -218 0 -373 -4 -370 -9z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 882.000000"><g transform="translate(0.000000,882.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M6704 8811 c9 -14 -14 -19 -125 -25 -101 -7 -253 -22 -509 -51 -938 -107 -963 -109 -1610 -101 -300 3 -709 9 -910 12 -623 11 -1066 -27 -1415 -120 -149 -40 -168 -47 -325 -106 -85 -33 -261 -116 -312 -148 -14 -9 -48 -30 -75 -46 -161 -96 -464 -367 -581 -520 -25 -34 -49 -63 -52 -66 -10 -10 -127 -176 -171 -244 -119 -185 -286 -532 -329 -681 -5 -16 -20 -64 -34 -105 -41 -118 -52 -156 -101 -345 -65 -254 -122 -637 -146 -980 -13 -187 -6 -1118 9 -1305 20 -245 96 -703 138 -839 8 -25 14 -53 14 -64 0 -11 7 -40 14 -66 8 -25 23 -73 32 -106 29 -103 46 -159 57 -185 5 -14 13 -38 17 -55 29 -111 189 -494 262 -630 12 -22 37 -67 55 -100 18 -33 36 -67 40 -75 13 -29 97 -165 140 -228 24 -35 43 -65 43 -68 0 -3 5 -10 10 -17 6 -7 40 -52 77 -102 179 -242 379 -450 645 -671 129 -108 454 -299 633 -372 115 -47 264 -102 340 -125 489 -147 979 -213 1780 -237 1561 -49 2343 -51 2610 -8 39 6 86 12 105 15 176 19 482 104 655 182 99 45 111 51 165 81 219 125 379 266 524 460 76 103 82 111 126 198 112 223 157 552 114 841 -23 158 -67 374 -89 446 -7 22 -21 69 -30 105 -17 63 -33 120 -60 205 -7 22 -27 87 -45 145 -18 58 -46 146 -62 195 -15 50 -36 115 -44 145 -9 30 -23 70 -30 88 -8 18 -14 41 -14 52 0 11 -6 37 -14 57 -13 36 -25 79 -61 221 -109 431 -128 804 -59 1137 34 165 45 207 90 360 32 112 102 313 144 416 12 30 29 72 37 94 15 38 26 65 57 138 8 17 42 100 76 182 35 83 73 173 85 200 24 52 56 131 82 200 8 22 20 51 26 65 15 34 36 90 47 120 5 14 18 50 30 80 94 247 172 547 186 718 4 57 11 85 20 89 20 8 20 218 0 226 -9 4 -16 31 -21 79 -20 203 -119 438 -258 613 -37 46 -143 163 -168 185 -83 73 -312 230 -336 230 -3 0 -29 11 -58 24 -156 75 -418 143 -620 163 -55 6 -79 12 -77 21 1 9 -78 12 -374 12 -218 0 -373 -4 -370 -9z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.faq-one__image__inner img {
  width: 100%;
  display: block;
}

.faq-one__image__border {
  position: absolute;
  top: 0;
  left: 30px;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: moveHorizontal2 2s infinite linear;
}

@media (max-width: 430px) {
  .faq-one__image__border {
    left: 25px;
  }
}

.faq-one .sec-title {
  margin-bottom: 33px;
  padding-bottom: 22px;
  /* border-bottom: 1px solid var(--easilon-border-color, #E6E6ED); */
}

.faq-one .faq-accordion .accordion-title h4 {
  font-weight: 600;
}

.faq-one__shape {
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  animation: moveHorizontal2 2s linear infinite;
  opacity: 0.5;
}

@media (max-width: 991px) {
  .faq-one__shape {
    opacity: 0.3;
  }
}

@media (max-width: 767px) {
  .faq-one h3.sec-title__title {
    font-size: 24px;
  }

  .contact-one__form__title {
    text-align: center;
  }

  .form-one__control--full {
    text-align: center;
  }

}

@media (max-width: 767px) {

  .quick-loan-one .sec-title__top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    /* ✅ keep in one line */
    text-align: center;
    gap: 8px;
    /* space between shape and text */
    margin-bottom: 25px;
  }

  .quick-loan-one .sec-title__shape {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quick-loan-one .sec-title__tagline {
    margin: 0;
    white-space: nowrap;
    /* ✅ prevent line break */
  }

  .contact-one {
    background-color: var(--easilon-white, #ffffff);
    padding: 70px 0 60px;
    border-bottom: 1px solid #0000000f;
    box-shadow: 0px 0px 5px 0px rgb(177 165 165 / 65%);
  }

  .quick-loan-one__content {
    margin-top: 3.5rem;
  }

}

.faq-page {
  background-color: var(--easilon-white2, #F6F6F8);
}

.faq-page__image img {
  max-width: 100%;
  height: auto;
}

@keyframes popupVideo {
  70% {
    box-shadow: 0 0 0 40px RGBA(var(--easilon-white-rgb, 255, 255, 255), 0);
  }

  100% {
    box-shadow: 0 0 0 0 RGBA(var(--easilon-white-rgb, 255, 255, 255), 0);
  }
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  right: auto;
  left: 0px;
}

/*--------------------------------------------------------------
# Company Transparency
--------------------------------------------------------------*/
.company-transparency-one {
  position: relative;
  background-color: var(--easilon-black, #2B2B5E);
  padding: 40px 0 50px;
}

.company-transparency-one__bg {
  width: calc(100% - 215px);
  height: 100%;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--easilon-black, #2B2B5E);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: overlay;
}

@media (max-width: 1599px) {
  .company-transparency-one__bg {
    width: 100%;
  }
}

.company-transparency-one__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: -215px;
  width: calc(100% + 215px);
  height: 100%;
  /* background: linear-gradient(90deg, var(--easilon-black, #2B2B5E) 10.89%, RGBA(var(--easilon-black-rgb, 43, 43, 94), 0) 53.02%); */
}

@media (max-width: 1599px) {
  .company-transparency-one__bg::after {
    width: 100%;
    left: 0;
  }
}

.company-transparency-one .container {
  position: relative;
  z-index: 2;
}

.company-transparency-one .sec-title__title {
  color: var(--easilon-white, #ffffff);
  font-size: 35px;
  text-align: center;
  font-weight: 600;
}

.company-transparency-one__main-tab-box {
  display: block;
  margin-bottom: 38px;
}

.company-transparency-one__main-tab-box .tab-buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 1;
  margin-bottom: 22px;
}

.company-transparency-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 6.5px 9.5px;
  font-family: var(--easilon-font, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--easilon-white, #ffffff);
  line-height: 1;
  text-transform: capitalize;
  background-color: transparent;
  overflow: hidden;
  border: 1px solid RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.1);
  z-index: 1;
  transition: all 500ms ease;
}

.company-transparency-one__main-tab-box .tab-buttons .tab-btn::after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  background-color: var(--easilon-base, #b58d32);
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.company-transparency-one__main-tab-box .tab-buttons .tab-btn:hover,
.company-transparency-one__main-tab-box .tab-buttons .tab-btn.active-btn {
  color: var(--easilon-white, #ffffff);
  border-color: var(--easilon-base, #b58d32);
}

.company-transparency-one__main-tab-box .tab-buttons .tab-btn:hover::after,
.company-transparency-one__main-tab-box .tab-buttons .tab-btn.active-btn::after {
  bottom: -50%;
}

.company-transparency-one__main-tab-box .tab-buttons .tab-btn.active-btn {
  text-shadow: 0px 0px 1px currentColor;
}

.company-transparency-one__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.company-transparency-one__main-tab-box .tabs-content .tab {
  padding-left: 10px;
  position: relative;
  display: none;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.company-transparency-one__main-tab-box .tabs-content .tab .tabs-content__text {
  margin-bottom: 0;
  width: 100%;
  max-width: 570px;
  color: var(--easilon-border-color, #E6E6ED);
  text-transform: capitalize;
}

.company-transparency-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
}

.company-transparency-one__content {
  text-align: center;
}

.company-transparency-one__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.company-transparency-one__call {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.company-transparency-one__call__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 47px;
  height: 47px;
  font-size: 20px;
  color: var(--easilon-base, #b58d32);
  background-color: var(--easilon-white3, #ECF0F5);
  border-radius: 0px 1000px 1000px 1000px;
  transition: all 500ms ease;
}

.company-transparency-one__call__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.company-transparency-one__call:hover .company-transparency-one__call__icon {
  color: var(--easilon-white, #ffffff);
  background-color: var(--easilon-base, #b58d32);
  border-radius: 1000px 0px 1000px 1000px;
}

.company-transparency-one__call__title {
  margin-bottom: 7px;
  color: var(--easilon-white, #ffffff);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  text-transform: capitalize;
}

.company-transparency-one__call__number {
  color: var(--easilon-white, #ffffff);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  text-transform: capitalize;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.company-transparency-one__call__number:hover {
  background-size: 100% 1px;
}

.company-transparency-one__call__number:hover {
  color: var(--easilon-base, #b58d32);
}

.company-transparency-one__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 67px;
  left: 0;
  opacity: 0.35;
  z-index: 1;
  animation: zumpBottom 2s linear infinite;
}

@media (max-width: 1799px) {
  .company-transparency-one__shape {
    opacity: 0.2;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features-one {
  position: relative;
  padding: 80px 0 70px;
  background: #3c3c3c;
}

.features-one .easilon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
  /* auto = center horizontally */
  width: fit-content;
  /* keeps button size tight */
}

.features-one__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 226px;
  background-color: var(--easilon-white, #ffffff);
}

.features-one .container {
  position: relative;
  z-index: 1;
}

.features-one__inner {
  padding: 50px 60px 35px;
  position: relative;
  background-color: var(--easilon-white, #ffffff);
  z-index: 1;
  box-shadow: 0px 4px 60px rgba(117, 165, 67, 0.1);
  border-radius: 3px;
}

@media (max-width: 767px) {
  .features-one__inner {
    padding: 0px 40px 40px;
  }

  .features-one {
    padding: 70px 0 70px;
  }

}

@media (max-width: 490px) {
  .features-one__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.features-one__inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.07;
}

.features-one__image {
  width: calc(50% - 30px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  border-radius: 3px 0 0 3px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .features-one__image {
    width: 42%;
  }
}

@media (max-width: 991px) {
  .features-one__image {
    width: 100%;
    min-height: 220px;
    position: relative;
    border-radius: 0;
  }
}

@media (max-width: 430px) {
  .features-one__image {
    min-height: 200px;
  }

  .map-responsive {
    min-height: 280px;
  }

}

.features-one__content {
  margin-left: auto;
  width: 100%;
  max-width: 504px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .features-one__content {
    max-width: 440px;
  }
}

@media (max-width: 991px) {
  .features-one__content {
    margin-top: 50px;
    max-width: 100%;
  }
}

.features-one .sec-title {
  margin-bottom: 23px;
}

.features-one__text {
  margin-bottom: 31px;
  text-transform: capitalize;
}

.features-one__features__item {
  display: flex;
  gap: 15px;
}

.features-one__features__item:not(:last-child) {
  margin-bottom: 10px;
  /* padding-bottom: 20px; */
  border-bottom: 1px solid var(--easilon-border-color, #E6E6ED);
}

@media (max-width: 430px) {
  .features-one__features__item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

}


@media (max-width: 430px) {
  .features-one__features__item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.features-one__features__icon {
  position: relative;
  top: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 23px;
  color: var(--easilon-white, #ffffff);
  background-color: var(--easilon-base, #b58d32);
  transition: all 500ms ease;
}

.features-one__features__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

@media (max-width: 430px) {
  .features-one__features__icon {
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 17px;
    margin-bottom: 10px;
  }

}

.features-one__features__item:hover .features-one__features__icon {
  color: var(--easilon-white, #ffffff);
  background-color: var(--easilon-black, #2B2B5E);
}

.features-one__features__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 3.5;
  letter-spacing: var(--easilon-letter-space-xl, -0.03em);
  text-transform: capitalize;
}

.features-one__features__text {
  margin: 0;
  text-transform: capitalize;
}

.features-one__money {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -88px;
  right: 0;
  opacity: 0.25;
  animation: zumpBottom 2s linear infinite;
}

/* Default (Desktop) — keep as is */
.features-one__image {
  order: 1;
}

.features-one__content {
  order: 2;
}

/* ✅ Mobile View */
@media (max-width: 767px) {

  .features-one__inner {
    display: flex;
    flex-direction: column;
  }

  /* Move content first */
  .features-one__content {
    order: 1;
  }

  /* Move map below heading/content */
  .features-one__image {
    order: 2;
    margin-top: 20px;
  }

  /* Optional: adjust map height */
  .map-responsive iframe {
    height: 250px;
  }

  .features-one__content .sec-title__top {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .features-one__money {
    display: none;
  }

  .features-one__features__title {
    line-height: 1.5;
  }

  .features-one__features__title {
    font-size: 15px;
  }

}

/*--------------------------------------------------------------
# Download App
--------------------------------------------------------------*/
.download-app-one {
  position: relative;
  background-color: var(--easilon-white2, #F6F6F8);
  overflow: hidden;
}

.download-app-one .sec-title .para {
  margin-top: 2rem;
  margin-bottom: 3rem;
  text-align: left;
  color: #000000a6;
}

.download-app-one .easilon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
  /* auto = center horizontally */
  width: fit-content;
  /* keeps button size tight */
}

.download-app-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.25;
}

.download-app-one .container {
  position: relative;
  z-index: 1;
  padding: 60px 10px 70px;
}

.download-app-one__image {
  position: relative;
  /* position: absolute; */
  left: 0;
  /* bottom: 0; */
}

@media (max-width: 991px) {
  .download-app-one__image {
    position: relative;
  }
}

.download-app-one__image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .download-app-one__image img {
    animation: moveHorizontal 2s linear infinite;
  }
}

.download-app-one__image__shape {
  width: 486px;
  height: 401px;
  position: absolute;
  left: 73px;
  bottom: 0;
  background-color: var(--easilon-base, #b58d32);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 744.000000"><g transform="translate(0.000000,744.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1770 6685 c-115 -21 -177 -44 -325 -122 -16 -9 -73 -59 -126 -112 -86 -86 -101 -107 -152 -211 -115 -236 -157 -424 -202 -915 -8 -93 -15 -197 -15 -230 1 -224 -62 -772 -112 -984 -47 -197 -146 -444 -204 -512 -8 -8 -14 -19 -14 -23 0 -14 -130 -163 -182 -206 -66 -57 -168 -134 -188 -143 -8 -4 -31 -17 -50 -28 -46 -28 -138 -75 -172 -88 l-28 -11 0 -1495 c0 -1403 1 -1497 17 -1523 22 -34 31 -43 65 -65 26 -16 261 -17 4318 -17 2359 0 4290 3 4290 8 0 4 -30 47 -66 97 -62 85 -141 199 -174 250 -8 13 -40 61 -71 107 -188 277 -331 561 -392 778 -49 177 -52 199 -52 420 0 220 4 248 52 435 29 112 47 168 102 315 85 225 132 322 532 1110 105 207 199 407 219 470 5 14 18 50 30 80 43 113 86 258 95 323 4 31 11 47 21 47 21 0 21 385 0 393 -8 3 -17 21 -21 39 -8 41 -64 178 -82 199 -7 8 -13 19 -13 23 0 17 -105 138 -163 189 -112 98 -227 166 -347 207 -211 71 -494 68 -780 -10 -41 -11 -91 -25 -110 -30 -19 -5 -60 -19 -90 -30 -30 -11 -82 -30 -115 -41 -33 -11 -76 -27 -95 -36 -40 -18 -73 -32 -150 -63 -30 -12 -83 -35 -117 -51 -35 -16 -93 -43 -130 -60 -105 -48 -232 -107 -298 -139 -57 -28 -192 -90 -282 -131 -24 -10 -62 -28 -85 -38 -80 -37 -213 -93 -238 -101 -14 -5 -50 -18 -80 -30 -270 -104 -419 -146 -690 -195 -116 -20 -402 -20 -507 0 -212 43 -418 135 -570 256 -26 21 -72 58 -101 81 -63 51 -301 292 -357 363 -22 27 -64 79 -94 115 -29 36 -61 74 -70 85 -9 11 -66 85 -126 165 -60 80 -112 147 -115 150 -3 3 -17 21 -30 40 -12 19 -28 40 -34 45 -7 6 -34 39 -61 75 -208 273 -458 525 -631 636 -205 132 -422 179 -634 139z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 744.000000"><g transform="translate(0.000000,744.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1770 6685 c-115 -21 -177 -44 -325 -122 -16 -9 -73 -59 -126 -112 -86 -86 -101 -107 -152 -211 -115 -236 -157 -424 -202 -915 -8 -93 -15 -197 -15 -230 1 -224 -62 -772 -112 -984 -47 -197 -146 -444 -204 -512 -8 -8 -14 -19 -14 -23 0 -14 -130 -163 -182 -206 -66 -57 -168 -134 -188 -143 -8 -4 -31 -17 -50 -28 -46 -28 -138 -75 -172 -88 l-28 -11 0 -1495 c0 -1403 1 -1497 17 -1523 22 -34 31 -43 65 -65 26 -16 261 -17 4318 -17 2359 0 4290 3 4290 8 0 4 -30 47 -66 97 -62 85 -141 199 -174 250 -8 13 -40 61 -71 107 -188 277 -331 561 -392 778 -49 177 -52 199 -52 420 0 220 4 248 52 435 29 112 47 168 102 315 85 225 132 322 532 1110 105 207 199 407 219 470 5 14 18 50 30 80 43 113 86 258 95 323 4 31 11 47 21 47 21 0 21 385 0 393 -8 3 -17 21 -21 39 -8 41 -64 178 -82 199 -7 8 -13 19 -13 23 0 17 -105 138 -163 189 -112 98 -227 166 -347 207 -211 71 -494 68 -780 -10 -41 -11 -91 -25 -110 -30 -19 -5 -60 -19 -90 -30 -30 -11 -82 -30 -115 -41 -33 -11 -76 -27 -95 -36 -40 -18 -73 -32 -150 -63 -30 -12 -83 -35 -117 -51 -35 -16 -93 -43 -130 -60 -105 -48 -232 -107 -298 -139 -57 -28 -192 -90 -282 -131 -24 -10 -62 -28 -85 -38 -80 -37 -213 -93 -238 -101 -14 -5 -50 -18 -80 -30 -270 -104 -419 -146 -690 -195 -116 -20 -402 -20 -507 0 -212 43 -418 135 -570 256 -26 21 -72 58 -101 81 -63 51 -301 292 -357 363 -22 27 -64 79 -94 115 -29 36 -61 74 -70 85 -9 11 -66 85 -126 165 -60 80 -112 147 -115 150 -3 3 -17 21 -30 40 -12 19 -28 40 -34 45 -7 6 -34 39 -61 75 -208 273 -458 525 -631 636 -205 132 -422 179 -634 139z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .download-app-one__image__shape {
    width: 460px;
    height: 375px;
    left: 0;
  }
}

@media (max-width: 767px) {
  .download-app-one__image__shape {
    left: 20px;
  }
}

@media (max-width: 575px) {
  .download-app-one__image__shape {
    display: none;
  }
}

.download-app-one .sec-title {
  margin-bottom: 23px;
}

.download-app-one__text {
  margin-bottom: 27px;
  text-transform: capitalize;
}

.download-app-one__list {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px 30px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 16px;
  color: var(--easilon-black, #2B2B5E);
  line-height: 1.75;
  text-transform: capitalize;
}

.download-app-one__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

/* Keep your existing styling intact */
.download-app-one__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .download-app-one__list {
    grid-template-columns: repeat(2, 1fr);
    /* still 2 columns */
    gap: 8px 12px;
  }

  .download-app-one__list li {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* .download-app-one__list li {
  display: flex;
  gap: 11px;
  font-weight: 600;
  font-size: 16px;
  color: var(--easilon-black, #2B2B5E);
  line-height: 1.75;
  text-transform: capitalize;
} */
.download-app-one__list__icon {
  position: relative;
  top: 1px;
  font-size: 18px;
  color: var(--easilon-base, #b58d32);
}

.download-app-one__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.download-app-one__button {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  flex-wrap: wrap;
}

.download-app-one__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 10px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

/* .download-app-one__button {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.download-app-one__btn {
  position: relative;
  padding: 8.5px 23px 8.5px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--easilon-white, #ffffff);
  transition: all 500ms ease;
} */

.download-app-one__btn:hover {
  background-color: var(--easilon-base, #b58d32);
}

.download-app-one__btn .download-app-one__btn:hover {
  border-left: 1px solid #000;
}

.download-app-one__btn__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--easilon-base, #b58d32);
}

.download-app-one__btn__icon img {
  width: 35px;
  height: auto;
  filter: invert(1);
}

.download-app-one__btn__content {
  margin-left: 56px;
}

.download-app-one__btn__title {
  display: block;
  margin-bottom: 3px;
  font-family: var(--easilon-font, "Manrope", sans-serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--easilon-black, #2B2B5E);
  line-height: 1.25;
  /* text-transform: uppercase; */
  transition: all 500ms ease;
}

.download-app-one__btn__text {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--easilon-text, #82828A);
  line-height: 1.333;
  text-transform: capitalize;
  transition: all 500ms ease;
}

.download-app-one__btn:hover .download-app-one__btn__title,
.download-app-one__btn:hover .download-app-one__btn__text {
  color: var(--easilon-white, #ffffff);
}

.download-app-one__border {
  display: none;
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  animation: zump 2s linear infinite;
}

@media (max-width: 1199px) {
  .download-app-one__border {
    max-width: 400px;
  }
}

@media (max-width: 430px) {
  .download-app-one__border {
    max-width: 350px;
  }
}

@media (max-width: 390px) {
  .download-app-one__border {
    max-width: 300px;
  }
}

.download-app-one__shape {
  width: 131px;
  height: 168px;
  position: relative;
  position: absolute;
  right: 83px;
  bottom: 0;
  background-color: var(--easilon-black, #2B2B5E);
  border-radius: 1000px 1000px 0 0;
  animation: moveHorizontal2 2s linear infinite;
}

@media (max-width: 1599px) {
  .download-app-one__shape {
    right: 40px;
  }
}

@media (max-width: 1199px) {
  .download-app-one__shape {
    right: 30px;
  }
}

.download-app-one__shape::before {
  content: "";
  position: absolute;
  top: 0;
  left: -17px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--easilon-base, #b58d32);
  border-radius: inherit;
}

@media (max-width: 767px) {

  .download-app-one__btn {
    padding: 10px 5px;
  }

  .download-app-one__btn__title {
    font-size: 14px;
    margin-left: -23px;
  }

  .download-app-one__btn__icon {
    width: 30px;
  }

  .download-app-one__btn__icon img {
    width: 25px;
  }

}

@keyframes worldwideBtn {
  70% {
    box-shadow: 0 0 0 40px rgba(var(--easilon-base-rgb, 0, 205, 229), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--easilon-base-rgb, 0, 205, 229), 0);
  }
}

/*--------------------------------------------------------------
# Quick Loan
--------------------------------------------------------------*/
.quick-loan-one {
  position: relative;
  z-index: 1;
  margin-bottom: -116px;
}

.quick-loan-one--home-3 {
  margin: 0;
  background-color: var(--easilon-black, #2B2B5E);
}

.quick-loan-one .container {
  position: relative;
  z-index: 1;
}

.quick-loan-one__inner {
  position: relative;
  background-color: var(--easilon-white, #ffffff);
  box-shadow: 0px 4px 50px 10px rgba(0, 205, 229, 0.12);
}

.quick-loan-one__bg {
  width: 100%;
  max-width: 654px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--easilon-base, #b58d32);
  clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
}

@media (max-width: 1199px) {
  .quick-loan-one__bg {
    max-width: 420px;
  }
}

@media (max-width: 991px) {
  .quick-loan-one__bg {
    max-width: 100%;
    clip-path: none;
  }
}

.quick-loan-one__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.2;
}

.quick-loan-one__content {
  width: 100%;
  max-width: 614px;
  padding: 55px 65px 50px 30px;
}

@media (max-width: 991px) {
  .quick-loan-one__content {
    padding-right: 40px;
    max-width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .quick-loan-one__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.quick-loan-one .sec-title {
  margin: 0;
}

@media (max-width: 991px) {
  .quick-loan-one .sec-title {
    margin-bottom: 40px;
  }
}

.quick-loan-one .sec-title__title {
  font-size: 24px;
  letter-spacing: var(--easilon-letter-space, -0.02em);
  line-height: 1.5;
}

@media (max-width: 991px) {

  .quick-loan-one .sec-title__tagline,
  .quick-loan-one .sec-title__title {
    color: var(--easilon-white, #ffffff);
  }
}

@media (max-width: 991px) {

  .quick-loan-one .sec-title__shape__one,
  .quick-loan-one .sec-title__shape__two {
    background-color: var(--easilon-white, #ffffff);
  }
}

@media (min-width: 992px) {
  .quick-loan-one .easilon-btn {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 1;
  }
}

.quick-loan-one .easilon-btn::before,
.quick-loan-one .easilon-btn::after {
  background-color: var(--easilon-black, #2B2B5E);
}

.quick-loan-one__money {
  /* max-width: 81%; */
  width: 200px;
  height: auto;
  position: absolute;
  right: 27%;
  bottom: 20px;
  animation: moveHorizontal 2s linear infinite;
}

@media (max-width: 1199px) {
  .quick-loan-one__money {
    display: none;
  }
}

.quick-loan-one__border-box {
  display: flex;
  width: calc(100% - 240px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1199px) {
  .quick-loan-one__border-box {
    width: calc(100% - 180px);
  }
}

@media (max-width: 991px) {
  .quick-loan-one__border-box {
    width: calc(100% - 150px);
  }
}

@media (max-width: 767px) {
  .quick-loan-one__border-box {
    width: calc(100% - 100px);
  }
}

@media (max-width: 767px) {
  .quick-loan-one__border-box {
    width: calc(100% - 80px);
  }
}

.quick-loan-one__border {
  width: 20%;
  height: 100%;
  border-right: 1px solid RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
}

@media (max-width: 1199px) {
  .quick-loan-one__border {
    width: 25%;
  }
}

@media (max-width: 991px) {
  .quick-loan-one__border {
    width: 33.333%;
  }
}

@media (max-width: 575px) {
  .quick-loan-one__border {
    width: 50%;
  }
}

.quick-loan-one__border--1 {
  border-left: 1px solid RGBA(var(--easilon-border-color-rgb, 230, 230, 237), 0.2);
}

@media (max-width: 575px) {
  .quick-loan-one__border--3 {
    display: none;
  }
}

@media (max-width: 991px) {
  .quick-loan-one__border--4 {
    display: none;
  }
}

@media (max-width: 1199px) {
  .quick-loan-one__border--5 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process-one {
  background-color: var(--easilon-white, #ffffff);
  counter-reset: workProcessNumber;
  padding: 60px 0 70px;
}

.work-process-one .easilon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
  /* auto = center horizontally */
  width: fit-content;
  /* keeps button size tight */
}

@media (min-width: 1200px) {
  .work-process-one__item--down {
    margin-top: 60px;
  }
}

.work-process-one__item__image {
  margin-bottom: 21px;
  padding-bottom: 46px;
  position: relative;
  width: 100%;
  max-width: 235px;
  text-align: center;
}

@media (max-width: 767px) {
  .work-process-one__item__image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 13px;
    padding-bottom: 45px;
  }

  .work-process-one__item__shape {
    height: 35px;
  }

  .about-one__image__inner img {
    margin-top: -35px;
  }

}

.work-process-one__item__image img {
  position: relative;
  width: 129px;
  height: 129px;
  border-radius: 50%;
  z-index: 1;
  display: none;
}

.work-process-one__item__number {
  padding: 4.5px 10px;
  position: relative;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
  font-weight: 700;
  font-size: 14px;
  color: var(--easilon-white2, #F6F6F8);
  line-height: 1.5;
  text-transform: capitalize;
  background-color: var(--easilon-base, #b58d32);
  border-radius: 100px;
  transition: all 500ms ease;
}

.work-process-one__item__number::after {
  content: counters(workProcessNumber, ".", decimal-leading-zero);
  counter-increment: workProcessNumber;
  /* margin-left: 5px; */
}

.work-process-one__item:hover .work-process-one__item__number {
  color: var(--easilon-white, #ffffff);
  background-color: var(--easilon-black, #2B2B5E);
}

.work-process-one__item__shape {
  width: 242px;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 13px;
  transition: all 500ms ease;
}

.work-process-one__item__shape path {
  stroke: var(--easilon-base, #b58d32);
  stroke-width: 3;
  stroke-miterlimit: 10;
  transition: all 500ms ease;
}

.work-process-one__item:hover .work-process-one__item__shape {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -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;
}

.work-process-one__item__circle {
  width: 136px;
  height: 32px;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  transition: all 500ms ease;
}

.work-process-one__item__circle path {
  fill: var(--easilon-white2, #F6F6F8);
  transition: all 500ms ease;
  display: none;
}

.work-process-one__item:hover .work-process-one__item__circle path {
  fill: var(--easilon-base, #b58d32);
}

@media (max-width: 767px) {
  .work-process-one__item__content {
    text-align: center;
  }
}

.work-process-one__item__title {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  text-transform: capitalize;
}

.work-process-one__item__text {
  margin: 0;
  line-height: 1.625;
  color: #000000a6;
}

/*# sourceMappingURL=easilon.css.map */
.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.image-box img {
  width: 100%;
  display: block;
  filter: blur(6px);
  transform: scale(1.05);
  /* prevents white edges after blur */
}

/* Dark overlay */
.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 63%);
}

/* Center content */
.center-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  padding: 20px;
}

/* Title */
.center-overlay h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

/* Carpet text */
.center-overlay .carpet {
  color: #ffcd5c;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Area */
.center-overlay h3 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
}

.center-overlay h3 span {
  font-size: 20px;
  font-weight: 400;
}

.map-responsive {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-responsive iframe {
  pointer-events: none;
}

@media (max-width: 430px) {

  .map-responsive {
    min-height: 280px;
  }

}

@media (max-width: 767px) {

  h1.sec-title__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  h3.sec-title__title {
    font-size: 22px;
    text-align: center;
  }

  .company-transparency-one .sec-title__title {
    font-size: 26px;
    line-height: 1.5;
  }

  .company-transparency-one {
    padding: 35px 0 35px;
  }

  .download-app-one__image img {
    max-width: 100%;
  }

  .faq-one .sec-title {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .faq-one {
    padding: 60px 0 30px;
  }

  .download-app-one .container {
    padding: 55px 10px 65px;
  }

  .services-one {
    padding: 60px 0 65px;
  }

  .about-one {
    padding: 55px 0 65px;
  }

}

/* Button */
/* .open-form-btn {
    padding: 12px 25px;
    background: #b58d32;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
} */

/* Popup */
.form-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Form Box */
.form-box {
  background: #111;
  padding: 30px;
  width: 420px;
  border-radius: 12px;
  color: #fff;
  position: relative;
  box-shadow: 0px 0 10px rgb(184 189 203 / 43%);
  animation: popupFade 0.4s ease;
  border-top: 3px solid #b58d32;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Close */
.close-btn {
  position: absolute;
  right: 15px;
  top: -5px;
  font-size: 35px;
  cursor: pointer;
}

/* Heading */
.form-box h2 span {
  color: #f8cc68;
  font-style: italic;
}

/* .form-box p {
    color: #aaa;
    margin-bottom: 25px;
} */

/* ===== Custom Field Style (LIKE YOUR IMAGE) ===== */
.custom-field {
  position: relative;
  margin-bottom: 25px;
}

/* Input */
.custom-field input {
  width: 100%;
  padding: 8px 12px 10px 12px;
  border: 1px solid #8b8888;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  outline: none;
  font-size: 15px;
}

/* Label on border */
.field-label {
  position: absolute;
  top: -10px;
  left: 15px;
  background: #111;
  padding: 0 8px;
  font-size: 14px;
  color: #ffffffd6;
  font-weight: 600;
}

/* Focus effect */
.custom-field input:focus {
  border-color: #b58d32;
}

/* Button */
.submit-btn {
  width: 100%;
  padding: 10px;
  /* background: #b58d32; */
  background-image: linear-gradient(54deg, #e0b450, #9b7828) !important;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
  animation: pulseEffect 2s infinite;
}

/* Pulse effect animation */
@keyframes pulseEffect {
  0% {
    transform: scale(1);
    background-color: #b58d32;
  }

  50% {
    transform: scale(1.05);
    background-color: #b58d32;
    /* Lighten the background to create a highlight effect */
  }

  100% {
    transform: scale(1);
    background-color: #b58d32;
  }
}

/* .para11 {
  font-size: 14px;
  text-align: left;
  font-weight: 300;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  color: #000;
} */

/* .submit-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
} */


/* Heading spacing */
.form-box h2 {
  margin-bottom: 35px;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.form-box p {
  text-align: left;
  /* margin-top: 5px; */
  margin-bottom: 10px;
  font-size: 12px;
  color: #dddddde0;
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  width: 150px;
  padding: 7px 0;
}

/* Call Section below button */
.call-section {
  margin-top: 25px;
  text-align: center;
}

.call-section p {
  margin-bottom: 5px;
  color: #ddd;
  font-size: 16px;
  text-align: center;
}

.call-btn {
  display: inline-block;
  /* padding: 12px 25px; */
  border-radius: 30px;
  /* border: 1px dashed #777; */
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  transition: 0.3s;
}

.call-btn:hover {
  background: #111;
  border-color: #fff;
}

/* Phone icon animation (ring) */
.phone-icon {
  font-size: 22px;
  margin-right: 8px;
  display: inline-block;
  animation: phoneRing 3.5s infinite;
  transform-origin: center;
}

/* Ring animation */
@keyframes phoneRing {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(20deg);
  }

  30% {
    transform: rotate(-15deg);
  }

  45% {
    transform: rotate(15deg);
  }

  60% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Number animation (subtle pulse) */
.phone-text {
  display: inline-block;
  animation: textPulse 3.5s infinite;
}

/* Pulse effect */
@keyframes textPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.85;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 767px) {

  .form-box {
    width: auto;
    padding: 30px 20px;
  }
}


/* Popup Form CSS  */
/* Overlay */
.lux-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Container */
.lux-popup-container {
  position: relative;
}

/* Close Button */
.lux-close-btn {
  position: absolute;
  right: 10px;
  top: -5px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

/* Form Box */
.lux-form-box {
  background: #111;
  padding: 30px;
  width: 420px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0px 0 10px rgb(184 189 203 / 43%);
  border-top: 3px solid #b58d32;
  animation: luxFade 0.4s ease;
}

/* Animation */
@keyframes luxFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.lux-logo {
  text-align: center;
  margin-bottom: 15px;
}

.lux-logo img {
  width: 150px;
}

/* Heading */
.lux-form-box h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 35px;
  font-size: 18px;
  color: #ddd;
}

.lux-form-box h2 span {
  color: #f8cc68;
  font-style: italic;
}

/* Fields */
.lux-field {
  position: relative;
  margin-bottom: 25px;
}

.lux-field input {
  width: 100%;
  padding: 8px 12px 10px 12px;
  border: 1px solid #8b8888;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  outline: none;
  font-size: 15px;
}

/* Label */
.lux-label {
  position: absolute;
  top: -10px;
  left: 15px;
  background: #111;
  padding: 0 8px;
  font-size: 13px;
  color: #ffffffd6;
  font-weight: 600;
}

/* Focus */
.lux-field input:focus {
  border-color: #b58d32;
}

/* Button */
.lux-submit-btn {
  width: 100%;
  padding: 10px;
  background-image: linear-gradient(54deg, #e0b450, #9b7828);
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
  animation: luxPulse 2s infinite;
}

/* Pulse Animation */
@keyframes luxPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Call Section */
.lux-call {
  text-align: center;
  margin-top: 15px;
}

.lux-call p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #ccc;
}

.lux-call a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 767px) {
  .lux-form-box {
    width: 350px;
    /* fixed width */
    max-width: 100%;
    /* safety for very small screens */
    padding: 30px 20px;
  }

  .footer-widget--about {
    text-align: left;
  }

}

/*Share Button*/

.wrapper {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 100;
}

.wrapper :is(.btn, .link) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  left: 2px;
  bottom: 6rem;
  background-color: #04a53a;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  position: relative;
  animation: pulse 3s infinite;
  /* Add the animation */
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list .item {
  list-style-type: none;
  display: contents;
}

/* Define the pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    background-color: #04a53a;
    box-shadow: 0 0 0 rgba(28, 31, 32, 0.7);
  }

  50% {
    transform: scale(1.2);
    background-color: #04a53a;
    box-shadow: 0 0 20px rgba(28, 31, 32, 0.7);
  }

  100% {
    transform: scale(1);
    background-color: #04a53a;
    box-shadow: 0 0 0 rgba(28, 31, 32, 0.7);
  }
}


.logo-img {
  margin: 40px auto 35px;
  text-align: center;
}

.logo-img img {
  width: 150px;
}

.popup-logo {
  margin: -10px auto 33px;
  text-align: center;
}

.popup-logo img {
  width: 40%;
}

/* Fixed Footer */

/* .down_enquiry {
  width: 100vw;
  left: 0;
  right: 0;
} */


.down_enquiry {
  /* background: #9b7828; */
  background-image: linear-gradient(54deg, #e0b450, #9b7828);
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  width: 100%;
  z-index: 9;
  display: none;
  animation: pulseEffect4 2s infinite;
}

/* Pulse effect animation */
@keyframes pulseEffect4 {
  0% {
    transform: scale(1);
    background-color: #9b7828;
  }

  50% {
    transform: scale(1.05);
    background-color: #9b7828;
  }

  100% {
    transform: scale(1);
    background-color: #9b7828;
  }
}

.down_enquiry ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.down_enquiry ul li {
  flex: 1;
  text-align: center;
  border-right: 1px solid #fff;
}

.down_enquiry ul li:last-child {
  border-right: none;
}

.down_enquiry ul li a {
  color: #fff;
  display: block;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  word-spacing: 2px;
  /* For animation clipping */
}


.gallery-section {
  text-align: center;
  padding: 60px 20px;
  background: #f5f5f5;
  overflow: hidden;
}

.gallery-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
}

.gallery-subtitle {
  color: #c89b3c;
  margin: 10px 0 40px;
  letter-spacing: 2px;
}

/* Swiper */
.gallerySwiper {
  width: 100%;
  padding-bottom: 50px;
}

.gallerySwiper .swiper-slide {
  width: 300px;
  height: 400px;
  transition: 0.5s;
  transform: scale(0.8);
  opacity: 0.6;
}

.gallerySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Active Slide (center) */
.gallerySwiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

/* Left Tilt */
.gallerySwiper .swiper-slide-prev {
  transform: rotateY(15deg) scale(0.85);
}

/* Right Tilt */
.gallerySwiper .swiper-slide-next {
  transform: rotateY(-15deg) scale(0.85);
}

/* Pagination */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000;
}

/* Property Toggle Tabs */

.property-toggle {
  display: flex;
  border: 1px solid #2b2b5e;
  border-radius: 30px;
  overflow: hidden;
  /* margin-right: 20px; */
  height: 35px;
  width: 200px;
}

.property-toggle .toggle-btn {
  background: transparent;
  border: none;
  padding: 3px 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #2b2b5e;
  transition: all 0.3s ease;
}

.property-toggle .toggle-btn.active {
  background: linear-gradient(0deg, #d6a847 0%, #d6a847 25%, #e7bf5d 63%, #f5d472 100%);
  color: #2b2b5e;
}

.property-toggle .toggle-btn:hover {
  background: #2b2b5e;
  color: #fff;
}

.property-toggle .btn1 {
  background: transparent;
  border: none;
  padding: 3px 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #2b2b5e;
  transition: all 0.3s ease;
}

.property-toggle .btn1.active {
  background: linear-gradient(0deg, #d6a847 0%, #d6a847 25%, #e7bf5d 63%, #f5d472 100%);
  color: #2b2b5e;
}

.property-toggle .btn1:hover {
  background: #2b2b5e;
  color: #fff;
}

/* Mobile Fix */
@media (max-width: 767px) {
  .property-toggle {
    margin: 10px auto;
    width: auto;
    height: 30px;
  }

  .property-toggle .toggle-btn {
    padding: 3px 25px;
    font-size: 12px;
  }

  .property-toggle .btn1 {
    padding: 3px 7px;
    font-size: 12px;
  }

  .main-header__logo img {
    width: 130px;
  }

  .main-header .header-lower .logo-box .logo img {
    width: 90px;
    padding: 0px;
  }


}

@media (max-width: 767px) {
  .sec-title__title br {
    display: block;
  }
}

strong {
  color: #000000b0;
}

.strong1 {
  color: #fff;
}