@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# variables
# Utility
# Common
# Hero Section
# Feature Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# variables
--------------------------------------------------------------*/
:root {
  --bemox-font: "Roboto", sans-serif;
  --bemox-heading-font: "Space Grotesk", sans-serif;
  --bemox-text: #636363;
  --bemox-text-rgb: 99, 99, 99;
  --bemox-text-gray: #3E3E3E;
  --bemox-text-gray-rgb: 62, 62, 62;
  --bemox-text-gray2: #D1C7C7;
  --bemox-text-gray2-rgb: 209, 199, 199;
  --bemox-white: #fff;
  --bemox-white-rgb: 255, 255, 255;
  --bemox-base: #C3EE18;
  --bemox-base-rgb: 195, 238, 24;
  --bemox-primary: #222222;
  --bemox-primary-rgb: 34, 34, 34;
  --bemox-black: #000000;
  --bemox-black-rgb: 0, 0, 0;
  --bemox-black2: #131111;
  --bemox-black2-rgb: 19, 17, 17;
  --bemox-black3: #040404;
  --bemox-black3-rgb: 4, 4, 4;
  --bemox-black4: #333333;
  --bemox-black4-rgb: 51, 51, 51;
  --bemox-gray: #B9B9B9;
  --bemox-gray-rgb: 185, 185, 185;
  --bemox-border-color: #DDDDDD;
  --bemox-border-color-rgb: 221, 221, 221;
  --bemox-letter-space: 0.1em;
  --bemox-letter-space-xl: 0.2em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bemox-btn {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--bemox-base, #C3EE18);
  color: var(--bemox-black3, #040404);
  transition: 500ms;
  padding: 13.5px 30px 13.5px 20px;
  font-family: var(--bemox-font, "Roboto", sans-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  border-radius: 100px;
  pointer-events: auto;
  gap: 13px;
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
}
.bemox-btn__icon {
  font-size: 12px;
  color: var(--bemox-black3, #040404);
  border: 1px solid var(--bemox-black3, #040404);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 23px;
  border-radius: 100px;
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
  overflow: hidden;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.bemox-btn__icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
}
.bemox-btn__icon i:last-child {
  visibility: hidden;
  left: -40px;
  transform: translate(-50%, 0);
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
}
.bemox-btn:hover .bemox-btn__icon i {
  left: 200%;
}
.bemox-btn:hover .bemox-btn__icon i:last-child {
  transform: translate(-50%, -50%);
  left: 50%;
  visibility: visible;
}
.bemox-btn--black {
  background-color: var(--bemox-black3, #040404);
  color: var(--bemox-white, #fff);
}
.bemox-btn--black .bemox-btn__icon {
  border-color: var(--bemox-white, #fff);
  color: var(--bemox-white, #fff);
}
.bemox-btn--two {
  color: var(--bemox-white, #fff);
  background-color: var(--bemox-base, #C3EE18);
}
.bemox-btn--two .bemox-btn__icon {
  border-color: var(--bemox-white, #fff);
  color: var(--bemox-white, #fff);
}
.bemox-btn--white {
  color: #131111;
  background-color: var(--bemox-white, #fff);
}
.bemox-btn--white .bemox-btn__icon {
  border-color: #131111;
  color: #131111;
}

.bemox-btn__text {
  overflow: hidden;
}

.bemox-btn__text {
  display: flex;
}

.bemox-btn:hover .bemox-btn__text span {
  display: inline-block;
  opacity: 0;
  transition: none;
  transform: translateX(-10px) scale(1.2);
  will-change: transform, opacity;
}

.bemox-btn:hover .bemox-btn__text span.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.bemox-circle-btn__wrapper a {
  width: 135px;
  height: 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bemox-white, #fff);
  font-size: 30px;
  color: var(--bemox-black3, #040404);
  font-weight: 300;
  overflow: hidden;
}
.bemox-circle-btn__wrapper a .bemox-circle-btn__text {
  color: var(--bemox-primary, #222222);
  font-weight: 600;
  font-size: 16px;
  line-height: 138%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.5s ease-out;
}
@media (max-width: 1420px) {
  .bemox-circle-btn__wrapper a {
    font-size: 25px;
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .bemox-circle-btn__wrapper a {
    margin-left: auto;
    margin-right: auto;
  }
}
.bemox-circle-btn__wrapper a:hover {
  transform: scale(1.1);
  border-color: var(--bemox-base, #C3EE18);
  color: var(--bemox-white, #fff);
}
.bemox-circle-btn__wrapper a:hover .bemox-circle-btn__dot {
  width: 280px;
  height: 280px;
}
.bemox-circle-btn__wrapper a .bemox-circle-btn__dot {
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 0;
  height: 0;
  background-color: var(--bemox-base, #C3EE18);
  line-height: 20px;
  border-radius: 50%;
  transition: all 0.5s ease-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.sec-title {
  position: relative;
  line-height: 1;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 46px;
  }
}
.sec-title__tagline {
  margin: 0;
  font-weight: 500;
  font-size: 22px;
  line-height: 118%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bemox-black4, #333333);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sec-title__tagline img {
  animation: rotateSVG 3s linear infinite;
}
@media (max-width: 767px) {
  .sec-title__tagline {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .sec-title__tagline {
    font-size: 18px;
  }
}
@media (max-width: 425px) {
  .sec-title__tagline {
    font-size: 16px;
  }
}
.sec-title__title {
  margin: 0;
  font-weight: 700;
  font-size: 45px;
  line-height: 107%;
  color: #222222;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .sec-title__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .sec-title__title {
    font-size: 30px;
  }
}
@media (max-width: 425px) {
  .sec-title__title {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .sec-title__title br {
    display: none;
  }
}
.sec-title .sec-title__title__shape {
  position: absolute;
  top: -34px;
  right: -43px;
}
.sec-title .sec-title__title__shape img {
  animation: float-bob-y-2 4s linear infinite;
}
@media (max-width: 767px) {
  .sec-title .sec-title__title__shape {
    display: none;
  }
}
.sec-title--white .sec-title__tagline,
.sec-title--white .sec-title__title {
  color: var(--bemox-white, #fff);
}
.sec-title--two .sec-title__tagline img {
  animation: none;
}
.sec-title--two .sec-title__title {
  text-transform: capitalize;
  color: var(--bemox-primary, #222222);
}
.sec-title--four .sec-title__tagline {
  color: var(--bemox-base, #C3EE18);
}
.sec-title--four .sec-title__tagline img {
  animation: slideLeft 3s linear infinite;
}
.sec-title--four .sec-title__tagline img:last-child {
  animation: slideRight 3s linear infinite;
}
.sec-title--five .sec-title__tagline {
  letter-spacing: 0.1em;
  color: var(--bemox-white, #fff);
}
.sec-title--five .sec-title__tagline img {
  animation: slideLeft 3s linear infinite;
}
.sec-title--five .sec-title__title {
  text-transform: capitalize;
  color: var(--bemox-white, #fff);
  margin-bottom: 0;
}

.width-90 {
  width: 90px;
  display: block;
  height: 1px;
}

.sec-title-three {
  position: relative;
  line-height: 1;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec-title-three {
    padding-bottom: 46px;
  }
}
.sec-title-three__tagline {
  display: inline-block;
  margin-bottom: 18px;
}
.sec-title-three__tagline__text {
  margin: 0;
  font-weight: 500;
  font-size: 22px;
  line-height: 118%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bemox-base, #C3EE18);
  padding: 12px 29px 12px 45px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--bemox-black3, #040404);
}
@media (max-width: 767px) {
  .sec-title-three__tagline__text {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .sec-title-three__tagline__text {
    font-size: 18px;
  }
}
@media (max-width: 425px) {
  .sec-title-three__tagline__text {
    font-size: 16px;
  }
}
.sec-title-three__tagline__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bemox-base, #C3EE18);
  transform: translateX(calc(-100% + 18px));
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}
.sec-title-three__title {
  margin: 0;
  font-weight: 700;
  font-size: 45px;
  line-height: 107%;
  color: #222222;
  display: inline-block;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .sec-title-three__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .sec-title-three__title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .sec-title-three__title {
    font-size: 30px;
  }
}
@media (max-width: 425px) {
  .sec-title-three__title {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .sec-title-three__title br {
    display: none;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--bemox-font, "Roboto", sans-serif);
  color: var(--bemox-text, #636363);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bemox-heading-font, "Space Grotesk", sans-serif);
  color: var(--bemox-black, #000000);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--bemox-text, #636363);
  font-family: var(--bemox-font, "Roboto", sans-serif);
}
@media (max-width: 575px) {
  p br {
    display: none;
  }
}

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

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
  background: var(--bemox-base, #C3EE18);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

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

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

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

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

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

.section-space-top {
  padding-top: 130px;
}
@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: 130px;
}
@media (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

.bw-dark {
  background-color: #040404;
}

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

.bemox-slick__carousel--with-shadow .slick-list {
  overflow: visible;
}
.bemox-slick__carousel--with-shadow .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.bemox-slick__carousel--with-shadow .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.bemox-slick__carousel--basic-nav.slick-slider .slick-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.bemox-slick__carousel--basic-nav.slick-slider .slick-nav button {
  border: none;
  outline: none;
  width: 70px;
  height: 70px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--bemox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  color: var(--bemox-white, #fff);
  transition: all 500ms ease;
}
.bemox-slick__carousel--basic-nav.slick-slider .slick-nav button:hover {
  color: var(--bemox-white, #fff);
  background-color: var(--bemox-base, #C3EE18);
  border-color: var(--bemox-base, #C3EE18);
}
.bemox-slick__carousel--basic-nav.slick-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-top: 50px;
  list-style: none;
}
.bemox-slick__carousel--basic-nav.slick-slider .slick-dots button {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background-color: var(--bemox-black3, #040404);
  border: none;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  font-size: 0;
  margin: 0;
  transition: all 300ms ease;
}
.bemox-slick__carousel--basic-nav.slick-slider .slick-dots button::after {
  width: 24px;
  height: 24px;
  position: absolute;
  content: "";
  left: -6px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--bemox-base, #C3EE18);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.bemox-slick__carousel--basic-nav.slick-slider .slick-dots button:hover {
  background-color: var(--bemox-base, #C3EE18);
}
.bemox-slick__carousel--basic-nav.slick-slider .slick-dots button:hover::after {
  transform: scale(1);
}
.bemox-slick__carousel--basic-nav.slick-slider .slick-dots li.slick-active button {
  background-color: var(--bemox-base, #C3EE18);
}
.bemox-slick__carousel--basic-nav.slick-slider .slick-dots li.slick-active button::after {
  transform: scale(1);
}
.bemox-slick__carousel--basic-nav.slick-slider .slick-dots.disabled {
  display: none;
}
.bemox-slick__carousel--basic-nav.slick-slider .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.bemox-slick__carousel--basic-nav.slick-slider .owl-nav.disabled {
  display: none;
}

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

.bemox-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.bemox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--bemox-black3, #040404);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  color: var(--bemox-black3, #040404);
  transition: all 500ms ease;
}
.bemox-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--bemox-white, #fff);
  background-color: var(--bemox-base, #C3EE18);
  border-color: var(--bemox-base, #C3EE18);
}
.bemox-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
.bemox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background-color: rgba(var(--bemox-text-rgb, 99, 99, 99), 0.4);
  border: none;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  margin: 0;
  transition: all 300ms ease;
}
.bemox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
.bemox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .bemox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--bemox-base, #C3EE18);
}
.bemox-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}
.bemox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.bemox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
  background-color: var(--bemox-black2, #131111);
}
.bootstrap-select .dropdown-item {
  color: var(--bemox-white, #fff);
}
.bootstrap-select .dropdown-item:hover {
  background-color: var(--bemox-base, #C3EE18);
  color: var(--bemox-primary, #222222);
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--bemox-base, #C3EE18);
  color: var(--bemox-primary, #222222);
}

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

/* Scroll To Top */
#scroll-percentage {
  position: absolute;
}

.scroll-top {
  height: 60px;
  width: 60px;
  background-color: var(--bemox-white, #fff);
  border-radius: 50%;
  position: fixed;
  bottom: 35px;
  right: 30px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}

.scroll-top.active {
  bottom: 40px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
  transition: 0.3s;
}

.scroll-top-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--bemox-base, #C3EE18);
  color: var(--bemox-black3, #040404);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}

.scroll-top-value i {
  font-size: 20px;
}

@-webkit-keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* post paginations */
.post-pagination {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.post-pagination--mt0 {
  margin-top: 0px;
}
.post-pagination a {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: var(--bemox-base, #C3EE18);
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: all 400ms ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: var(--bemox-black4, #333333);
}
.post-pagination a.active, .post-pagination a:hover {
  background-color: var(--bemox-black3, #040404);
  color: var(--bemox-white, #fff);
  border-color: var(--bemox-base, #C3EE18);
}
.post-pagination .dots {
  color: var(--bemox-black, #000000);
  font-size: 16px;
  font-weight: 500;
  margin: 0 13px;
}

.blog-list .post-pagination,
.blog-grid-left .post-pagination,
.blog-grid-right .post-pagination {
  justify-content: flex-start;
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--bemox-black, #000000);
  color: var(--bemox-white, #fff);
  font-family: var(--bemox-font, "Roboto", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--bemox-font, "Roboto", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--bemox-gray, #B9B9B9);
  background-image: none;
  font-family: var(--bemox-font, "Roboto", sans-serif);
  color: var(--bemox-text, #636363);
}
.ui-datepicker-calendar td a {
  border-color: var(--bemox-border-color, #DDDDDD);
  background-color: var(--bemox-gray, #B9B9B9);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--bemox-border-color, #DDDDDD);
  background-color: var(--bemox-gray, #B9B9B9);
  background-image: none;
  color: var(--bemox-text, #636363);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--bemox-white, #fff);
  background-color: var(--bemox-base, #C3EE18);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--bemox-white, #fff);
  background-color: var(--bemox-base, #C3EE18);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--bemox-white, #fff);
  color: var(--bemox-black, #000000);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--bemox-base, #C3EE18);
  color: var(--bemox-white, #fff);
  top: 2px;
}

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

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

.bw-animated-right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: none !important;
  transition: all 0.8s !important;
  transition-delay: 0.3s !important;
  transform: none !important;
  opacity: 1 !important;
}

.bw-animated-right.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bw-animated-left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: none !important;
  transition: all 0.9s !important;
  transition-delay: 0.4s !important;
  opacity: 1 !important;
  transform: none !important;
}

.bw-animated-left.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bw-animated-top {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: none !important;
  transition: all 0.9s !important;
  transition-delay: 0.4s !important;
  opacity: 1 !important;
  transform: none !important;
}

.bw-animated-top.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bw-blur-bottom {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  bottom: 0;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 70px;
  left: 0;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black)) add;
  -webkit-mask: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%) add;
  mask: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black)) add;
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%) add;
  overflow: visible;
  position: fixed;
  right: 0;
  pointer-events: none;
  z-index: 999;
}

/* cursor text */
.custom-cursor-text {
  position: fixed;
  top: 0;
  left: 0;
  width: 155px;
  height: 155px;
  border-radius: 100px;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--bemox-base, #C3EE18);
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bemox-primary, #222222);
}
.custom-cursor-text .cursor-label {
  margin-bottom: 12px;
}
.custom-cursor-text--dark {
  color: var(--bemox-white, #fff);
}

.img-container {
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

.bw-split-text-two > div,
.bw-split-text > div {
  display: inline-block;
  background-size: 200% 100%;
  background-position: 100% 0;
  background-repeat: no-repeat;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to left, rgba(var(--bemox-black-rgb, 19, 19, 19), 0.1) 50%, var(--bemox-black, #131313) 50%);
}

.bw-split-text-two > div {
  display: inline-block;
  background-size: 200% 100%;
  background-position: 100% 0;
  background-repeat: no-repeat;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to left, rgba(var(--bemox-black-rgb, 19, 19, 19), 0.1) 50%, var(--bemox-black, #131313) 50%);
}

.bw-split-text-two > div:first-child {
  padding-left: var(--line-padding, 0);
}

@media (max-width: 991px) {
  .bw-split-text-two > div:first-child {
    padding-left: var(--line-padding-mobile, 0);
  }
}
.service-five__sec-title > .bw-split-text > div {
  background-image: linear-gradient(to left, var(--bemox-black3, #040404) 50%, var(--bemox-base, #C3EE18) 50%);
}

.sec-title--five > .bw-split-text-two > div {
  background-image: linear-gradient(to left, #393939 50%, var(--bemox-white, #ffffff) 50%);
}

.why-choose-five__sec-title > .bw-split-text > div {
  background-image: linear-gradient(to left, #222222 50%, var(--bemox-white, #ffffff) 50%);
}

.why-choose-five__title.bw-split-text-two > div {
  background-image: linear-gradient(to left, #222222 50%, var(--bemox-white, #ffffff) 50%);
}

.border-title > .bw-split-text > div {
  background-image: linear-gradient(to left, rgba(var(--bemox-white-rgb, 19, 19, 19), 0.1) 50%, var(--bemox-black, #131313) 50%);
}

/* 🔥 BASE STYLE */
.bw-split-text-three > div {
  display: inline-block;
  background-size: 200% 100%;
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(to left, var(--bw3-bg-start, rgba(19, 19, 19, 0.1)) 50%, var(--bemox-base, #6C43E3) 50%);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--bemox-base, #ffffff);
}

/* 🔥 OPTIONAL THEME CONTROL */
.bw-split-text-three {
  --bw3-bg-start: rgba(19,19,19,0.1);
  --bw3-bg-end: #6C43E3;
  --bw3-stroke-start: #ffffff;
  --bw3-stroke-end: #6C43E3;
}

.sec-title__title {
  font-weight: 700;
  font-size: 45px;
  line-height: 111%;
  text-transform: capitalize;
  color: var(--bemox-primary, #222222);
  display: block;
}

.section-top-title {
  margin-bottom: -55px;
  font-size: 200px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, #222222 0%, rgba(221, 221, 221, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 1199px) {
  .section-top-title {
    font-size: 160px;
  }
}
@media (max-width: 767px) {
  .section-top-title {
    margin-bottom: -45px;
    font-size: 120px;
  }
}
@media (max-width: 440px) {
  .section-top-title {
    margin-bottom: -40px;
    font-size: 100px;
  }
}

.sec-title__title {
  color: var(--bemox-primary, #222222);
}
.sec-title__title.bw-split-text > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, rgba(var(--bemox-primary-rgb, 34, 34, 34), 0.2) 50%, var(--bemox-primary, #222222) 50%);
}

.demo-tagline {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 9px 30px 8px;
  text-align: left;
  margin-bottom: 19px;
  border-radius: 100px;
  border: 1px solid #DDDDDD;
  background-color: var(--bemox-white, #fff);
}
.demo-tagline__shape {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  position: relative;
  background-color: var(--bemox-white, #fff);
}
.demo-tagline__shape::before, .demo-tagline__shape::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  right: -6px;
  z-index: 1;
  background-color: var(--bemox-base, #C3EE18);
}
.demo-tagline__shape::before {
  top: -6px;
}
.demo-tagline__shape::after {
  bottom: -6px;
}
.demo-tagline__text {
  position: relative;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  color: var(--bemox-base, #C3EE18);
  text-transform: uppercase;
}
.demo-tagline__text::before {
  content: "";
  width: 1px;
  height: calc(100% - 8px);
  position: absolute;
  top: 50%;
  left: -9px;
  transform: translateY(-50%);
  background-color: #D9D9D9;
}

/* gsap reveal text animation */
.bw-reveal-text {
  visibility: hidden;
}

.bw-reveal-text .line {
  display: flex;
  overflow: hidden;
  position: relative;
}

.bw-reveal-text-2 {
  visibility: hidden;
}

.bw-reveal-text-2 .letter {
  position: relative;
  display: inline-block;
  will-change: transform;
  transform-style: preserve-3d;
}

.bw-reveal-text-2 .letter div {
  width: 100%;
  backface-visibility: hidden;
  transform: translateZ(4vw);
  transform-style: preserve-3d;
}

.bw-reveal-text-2 .perspective {
  position: relative;
  display: inline-block;
}

.bw-reveal-text-2 .perspective div {
  position: relative;
  display: inline-block;
}

.bw-reveal-text-2 .word {
  display: inline-block;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 999;
  background-color: var(--bemox-black3, #040404);
}
.header .container {
  max-width: 1430px;
}
.header__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0px;
}
@media (max-width: 575px) {
  .header__inner {
    justify-content: center;
  }
}
.header__logo {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.header__logo a {
  display: inline-block;
}
.header__logo img {
  max-width: 100%;
  height: auto;
}
.header__nav {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
@media (max-width: 1199px) {
  .header__nav {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-family: var(--bemox-font, "Roboto", sans-serif);
  color: var(--bemox-white, #fff);
  line-height: 1.25;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.header__nav a:hover {
  color: var(--bemox-base, #C3EE18);
}
@media (max-width: 575px) {
  .header .bemox-btn {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  z-index: 1;
  padding: 260px 0px 242px;
  background-color: var(--bemox-black3, #040404);
}
@media (max-width: 767px) {
  .hero-section {
    padding: 240px 0px 222px;
  }
}
@media (max-width: 430px) {
  .hero-section {
    padding: 220px 0px 202px;
  }
}
.hero-section .container {
  position: relative;
  z-index: 3;
}
.hero-section__content {
  text-align: center;
}
.hero-section__top {
  overflow: hidden;
}
.hero-section .demo-tagline {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--bemox-white, #fff);
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 30px rgba(17, 17, 45, 0.1);
}
.hero-section .demo-tagline .demo-tagline__text {
  color: var(--bemox-white, #fff);
}
.hero-section__title {
  margin: 0px 0px 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
  color: var(--bemox-white, #fff);
}
@media (min-width: 576px) {
  .hero-section__title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .hero-section__title {
    font-size: 50px;
  }
}
.hero-section__text {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bemox-white, #fff);
}
@media (min-width: 992px) {
  .hero-section__text {
    margin-bottom: 38px;
    font-size: 20px;
  }
}
.hero-section__text .line {
  justify-content: center;
}
.hero-section__text br {
  display: none;
}
@media (min-width: 768px) {
  .hero-section__text br {
    display: inherit;
  }
}
.hero-section__button {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section__bg-box {
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.hero-section__bg {
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
}
.hero-section__bg::after {
  content: "";
  width: 100%;
  height: calc(100% - 324px);
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(181.35deg, rgba(198, 242, 22, 0.59) 1.15%, rgba(4, 4, 4, 0) 80.24%);
}
.hero-section__images {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}
@media (min-width: 1300px) {
  .hero-section__images {
    display: block;
  }
}
.hero-section__images img {
  max-width: 100%;
  height: auto;
  position: absolute;
}
.hero-section__image-one {
  left: 0px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-one {
    left: -110px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-one {
    left: -150px;
  }
}
.hero-section__image-two {
  left: 16px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-two {
    left: -94px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-two {
    left: -134px;
  }
}
.hero-section__image-three {
  left: 217px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-three {
    left: 107px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-three {
    left: 67px;
  }
}
.hero-section__image-four {
  right: 199px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-four {
    right: 107px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-four {
    right: 67px;
  }
}
.hero-section__image-five {
  right: 2px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-five {
    right: -94px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-five {
    right: -134px;
  }
}
.hero-section__image-six {
  right: 0px;
  bottom: 50px;
}
@media (max-width: 1599px) {
  .hero-section__image-six {
    right: -100px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-six {
    right: -140px;
  }
}
.hero-section__badge-box {
  width: 184px;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  margin: auto;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -92px;
  z-index: 2;
  border-radius: 50%;
  background-color: var(--bemox-white, #fff);
}
@media (max-width: 1200px) {
  .hero-section__badge-box {
    display: flex;
  }
}
.hero-section__badge {
  width: 159px;
  height: 157px;
  background-image: url(../images/bemox-landing/hero-badge-1.png);
  background-repeat: no-repeat;
  animation: sunMove 10s linear infinite;
}
.hero-section__shape-1 {
  position: absolute;
  top: 241px;
  left: 20.8%;
  z-index: 1;
}
@media (max-width: 1599px) {
  .hero-section__shape-1 {
    top: 150px;
    left: 16.8%;
  }
}
@media (max-width: 1399px) {
  .hero-section__shape-1 {
    display: none;
  }
}
.hero-section__shape-1 img {
  max-width: 100%;
  height: auto;
}
.hero-section__shape-2 {
  position: absolute;
  top: 173px;
  right: 17.7%;
  z-index: 1;
}
@media (max-width: 1599px) {
  .hero-section__shape-2 {
    top: 120px;
    right: 14%;
  }
}
@media (max-width: 1399px) {
  .hero-section__shape-2 {
    display: none;
  }
}
.hero-section__shape-2 img {
  max-width: 100%;
  height: auto;
}

@-webkit-keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes slideLeft {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.features-two {
  position: relative;
  padding-top: 282px;
  background-color: #ECF8F8;
}
@media (max-width: 1199px) {
  .features-two {
    padding-top: 230px;
  }
}
.features-two::after {
  content: "";
  width: 100%;
  height: 126px;
  position: absolute;
  left: 0px;
  bottom: -2px;
  z-index: 1;
  background-color: var(--bemox-white, #fff);
}
.features-two .container {
  position: relative;
  z-index: 2;
}
.features-two__wrapper {
  padding: 50px 0px 45px;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--bemox-white, #fff);
  box-shadow: 0px 6px 11px rgba(0, 0, 0, 0.08);
}
.features-two .row > * {
  position: relative;
}
.features-two .row > *:not(:last-child)::after {
  content: "";
  width: 1px;
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  background-color: var(--bemox-border-color, #DDDDDD);
}
@media (max-width: 767px) {
  .features-two .row > *:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .features-two .row > *:nth-child(2)::after {
    display: none;
  }
}
.features-two__box {
  position: relative;
  text-align: center;
  padding: 0px 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-two__box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.features-two__box::after {
  content: "";
  width: 43px;
  height: 28px;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  margin: auto;
  transition: all 500ms ease;
  transform: translateY(100px);
  background-color: var(--bemox-base, #C3EE18);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (max-width: 991px) {
  .features-two__box::after {
    display: none;
  }
}
.features-two__box:hover::after {
  opacity: 1;
  transform: translateY(45px);
}
.features-two__box img {
  max-height: 56px;
  display: inline-block;
  transform: scale(1);
  transition: all 500ms linear 0s;
}
.features-two__box:hover img {
  transform: scale(0.9);
}
.features-two__border {
  width: 128px;
  height: 1px;
  position: relative;
  margin: 15px auto;
  transition: all 500ms ease;
  background-color: var(--bemox-white, #fff);
}
.features-two__border::after {
  content: "";
  width: 7px;
  height: 3px;
  position: absolute;
  top: -1px;
  left: 0px;
  opacity: 0;
  transition: all 500ms ease;
  background-color: var(--bemox-base, #C3EE18);
  animation: featuresBorder 2s linear infinite alternate;
}
.features-two__box:hover .features-two__border {
  background-color: var(--bemox-black2, #131111);
}
.features-two__box:hover .features-two__border::after {
  opacity: 1;
}
@keyframes featuresBorder {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 7px);
  }
}
.features-two__title {
  margin-bottom: 0px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--bemox-black3, #040404);
}
@media (max-width: 430px) {
  .features-two__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-two__title {
    font-size: 20px;
  }
}
.features-two__title br {
  display: inline;
}
@media (max-width: 430px) {
  .features-two__title br {
    display: none;
  }
}
.features-two__shape {
  width: 382px;
  height: 382px;
  border-radius: 50%;
  position: relative;
  position: absolute;
  border: 1px solid #DDDDDD;
}
.features-two__shape--1 {
  top: -184px;
  left: 50%;
  transform: translateX(-50%);
}
.features-two__shape--2 {
  left: -151px;
  bottom: -30px;
}
.features-two__shape--3 {
  right: -151px;
  bottom: -30px;
}
.features-two__shape::before, .features-two__shape::after {
  content: "";
  border: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
}
.features-two__shape::before {
  width: 288px;
  height: 288px;
}
.features-two__shape::after {
  width: 202px;
  height: 202px;
}
.features-two__shape__inner {
  width: 118px;
  height: 118px;
  border: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
# Demo Section
--------------------------------------------------------------*/
.demos-one {
  position: relative;
  padding: 90px 0 120px;
  background-color: var(--bemox-white, #fff);
}
@media (max-width: 1199px) {
  .demos-one {
    padding-top: 96px;
  }
}
@media (max-width: 767px) {
  .demos-one {
    padding: 62px 0px 80px;
  }
}
@media (max-width: 440px) {
  .demos-one {
    padding-top: 65px;
  }
}
.demos-one__card {
  background-color: var(--bemox-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--bemox-black3-rgb, 4, 4, 4), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
  overflow: hidden;
}
.demos-one__card .demos-one__btns-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -67%);
  z-index: 2;
  width: 100%;
  text-align: center;
}
.demos-one__card .demos-one__btns-box .demos-one__btn {
  transform: translateY(-30px);
  opacity: 0;
  filter: blur(10px);
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
  margin-bottom: 15px;
}
.demos-one__card .demos-one__btns-box .demos-one__btn .bemox-btn {
  max-width: 190px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.demos-one__card .demos-one__btns-box .demos-one__btn:last-child {
  transform: translateY(30px);
}
.demos-one__card:hover .demos-one__btns-box .demos-one__btn {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}
.demos-one__image {
  position: relative;
  display: block;
  overflow: hidden;
}
.demos-one__image img {
  transform: perspective(0px) rotateX(0deg) rotateY(0deg) scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
}
.demos-one__image::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(var(--bemox-black3-rgb, 4, 4, 4), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  opacity: 0;
  transform: unset;
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
  pointer-events: none;
}
.demos-one__card:hover .demos-one__image::before {
  opacity: 1;
}
.demos-one__card:hover .demos-one__image img {
  transform: perspective(600px) rotateX(0.06deg) rotateY(0deg) scale(1.1);
}
.demos-one__content .demos-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--bemox-black3, #040404);
  font-weight: 700;
}
.demos-one__content .demos-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.demos-one__content .demos-one__title a:hover {
  background-size: 100% 1px;
}
.demos-one__content .demos-one__title {
  padding-top: 28px;
  padding-bottom: 28px;
}

/*--------------------------------------------------------------
#  Bemox Area
--------------------------------------------------------------*/
.bemox-area {
  padding: 120px 0px;
  position: relative;
  background-color: var(--bemox-base, #C3EE18);
}
.bemox-area::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--bemox-black3, #040404);
}
@media (max-width: 991px) {
  .bemox-area {
    padding: 150px 0px;
  }
}
@media (max-width: 575px) {
  .bemox-area {
    padding: 120px 0px;
  }
}
.bemox-area .container {
  position: relative;
  z-index: 1;
}
.bemox-area__content {
  position: relative;
  text-align: center;
  background-color: var(--bemox-white, #fff);
  border-radius: 30px;
  padding: 107px 0;
}
@media (max-width: 991px) {
  .bemox-area__content {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .bemox-area__content {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .bemox-area__content {
    padding: 60px 0;
  }
}
.bemox-area__title {
  position: relative;
  z-index: 1;
  margin-bottom: 0px;
  font-size: clamp(75px, 18vw, 250px);
  font-weight: 700;
  color: var(--bemox-primary, #222222);
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .bemox-area__title {
    -webkit-text-stroke-width: 1px;
  }
}
.bemox-area__title__highlight {
  display: inline;
  position: relative;
}
.bemox-area__title__highlight img {
  margin-top: -50px;
}
@media (max-width: 991px) {
  .bemox-area__title__highlight img {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .bemox-area__title__highlight img {
    width: 95px;
    margin-top: -20px;
  }
}
@media (max-width: 575px) {
  .bemox-area__title__highlight img {
    width: 60px;
  }
}
.bemox-area__title__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: calc(50% + 9px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.bemox-area__border {
  width: 200px;
  height: 200px;
  position: absolute;
}
@media (max-width: 767px) {
  .bemox-area__border {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 575px) {
  .bemox-area__border {
    display: none;
  }
}
.bemox-area__border--1, .bemox-area__border--2 {
  top: 40px;
  border-top: 3px solid var(--bemox-base, #C3EE18);
}
.bemox-area__border--1 {
  left: 40px;
  border-left: 3px solid var(--bemox-black3, #040404);
}
.bemox-area__border--2 {
  right: 50px;
  border-right: 3px solid var(--bemox-base, #C3EE18);
}
.bemox-area__border--3, .bemox-area__border--4 {
  bottom: 40px;
  border-bottom: 3px solid var(--bemox-black3, #040404);
}
.bemox-area__border--3 {
  left: 40px;
  border-left: 3px solid var(--bemox-black3, #040404);
}
.bemox-area__border--4 {
  right: 40px;
  border-right: 3px solid var(--bemox-black3, #040404);
}
.bemox-area__shape-1, .bemox-area__shape-2 {
  width: 100%;
  height: 12px;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: repeat-x;
  background-position: left top;
}
.bemox-area__shape-1 {
  animation: moveBackground 30s linear 0s infinite;
}
.bemox-area__shape-2 {
  top: auto;
  bottom: 0px;
  animation: moveBackground2 30s linear 0s infinite;
}

@keyframes moveBackground {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes moveBackground2 {
  0% {
    background-position: 1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
/*--------------------------------------------------------------
#  Inner Page
--------------------------------------------------------------*/
.marquee {
  max-width: 100%;
  overflow: hidden;
}

.marquee--gsap .marquee__bottom,
.marquee--gsap .marquee__top,
.marquee-left--gsap .marquee__toleft,
.marquee-right--gsap .marquee__toright {
  translate: -moz-calc(-100% + 100vw) !important;
  translate: calc(-100% + 100vw) !important;
}

.marquee__top,
.marquee__bottom,
.marquee__toleft,
.marquee__toright {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.marquee__bottom {
  margin-top: 30px;
}

.inner-page {
  position: relative;
  padding: 90px 0 120px;
  overflow: hidden;
  background-color: var(--bemox-white, #fff);
}
@media (max-width: 1199px) {
  .inner-page {
    padding-top: 96px;
  }
}
@media (max-width: 767px) {
  .inner-page {
    padding: 62px 0px 80px;
  }
}
@media (max-width: 440px) {
  .inner-page {
    padding-top: 65px;
  }
}
.inner-page__marquee {
  position: relative;
}
.inner-page__marquee::after {
  content: "";
  width: 100%;
  height: calc(100% - 290px);
  position: absolute;
  left: 0px;
  bottom: -230px;
  background: linear-gradient(180deg, #C6F216 0%, rgba(255, 255, 255, 0) 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
}
@media (max-width: 767px) {
  .inner-page__marquee::after {
    bottom: -190px;
  }
}
.inner-page .marquee__toleft {
  display: block;
}
.inner-page__wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  will-change: transform;
  position: relative;
}
@media (max-width: 991px) {
  .inner-page__wrapper {
    gap: 20px;
  }
}
.inner-page__item {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
  flex-direction: column;
}
@media (max-width: 991px) {
  .inner-page__item {
    gap: 20px;
  }
}
.inner-page__image img {
  width: 100%;
  height: auto;
}
.inner-page__btn {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  text-align: center;
}

/*--------------------------------------------------------------
#  Feature Section 02
--------------------------------------------------------------*/
.features-one {
  padding: 120px 0px;
  background-color: var(--bemox-white, #fff);
}
@media (max-width: 767px) {
  .features-one {
    padding: 80px 0px;
  }
}
.features-one__top {
  margin-bottom: 51px;
  text-align: center;
}
.features-one .demo-tagline {
  border-color: var(--bemox-border-color, #DDDDDD);
  background-color: transparent;
}
.features-one .demo-tagline__shape {
  background-color: var(--bemox-primary, #222222);
}
.features-one .demo-tagline__text {
  color: var(--bemox-base, #C3EE18);
}
.features-one .demo-tagline__text::before {
  background-color: var(--bemox-border-color, #DDDDDD);
}
.features-one__box {
  padding: 50px 40px 46px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 5px;
  background-color: #ECF8F8;
}
.features-one__box::before {
  content: "";
  width: 121px;
  height: 121px;
  position: absolute;
  top: -58px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: auto;
  opacity: 0;
  background-color: var(--bemox-base, #C3EE18);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.7s;
}
.features-one__box:hover::before {
  width: 100%;
  height: 100%;
  top: 0px;
  opacity: 1;
  border-radius: 0px;
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 1s;
}
.features-one__box::after {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: inherit;
  transition: all 500ms ease;
  border: 1px solid var(--bemox-border-color, #DDDDDD);
}
.features-one__box:hover::after {
  border-style: dashed;
  border-color: var(--bemox-black3, #040404);
}
.features-one__box__image {
  width: 121px;
  height: 121px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background-color: var(--bemox-white, #fff);
}
.features-one__box__image img {
  max-height: 121px;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transform: scale(1);
  border-radius: inherit;
}
.features-one__box:hover .features-one__box__image img {
  transform: scale(0.9);
}
.features-one__box__title {
  margin: 20px 0px 0px;
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: var(--bemox-primary, #222222);
  font-weight: 700;
  line-height: 1.25;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.features-one__box__title br {
  display: inline;
}
@media (max-width: 575px) {
  .features-one__box__title br {
    display: none;
  }
}

/*--------------------------------------------------------------
#  Slide Text Section
--------------------------------------------------------------*/
.slide-text {
  padding: 50px 0px;
  background: var(--bemox-black3, #040404);
}
.slide-text .container-fluid {
  padding: 0px;
}
.slide-text__scroll {
  width: -webkit-calc((420px * 16) + (30px * 16));
  width: -moz-calc((420px * 16) + (30px * 16));
  min-width: 100%;
  height: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
  margin: 0px;
  font-size: 50px;
  font-weight: 700;
  color: var(--bemox-white, #fff);
  line-height: 1.26;
  text-transform: capitalize;
  -webkit-animation: scrollRightToLeft 20s linear infinite;
  -moz-animation: scrollRightToLeft 20s linear infinite;
  animation: scrollRightToLeft 20s linear infinite;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@media (max-width: 767px) {
  .slide-text__scroll {
    font-size: 40px;
  }
}
.slide-text__scroll:hover {
  animation-play-state: paused;
}
.slide-text__scroll img {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

@keyframes scrollRightToLeft {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-webkit-calc(-250px * 7));
    -moz-transform: translateX(-moz-calc(-250px * 7));
    transform: translateX(-1750px);
  }
}
/*--------------------------------------------------------------
#  Footer Section
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
  background-color: var(--bemox-base, #C3EE18);
}
@media (max-width: 767px) {
  .main-footer {
    padding-top: 80px;
  }
}
.main-footer .container {
  position: relative;
  z-index: 2;
}
.main-footer__content {
  text-align: center;
}
.main-footer__title {
  margin: 0 0 5px;
  font-size: 35px;
  font-weight: 700;
  color: var(--bemox-primary, #222222);
  line-height: 1.3;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .main-footer__title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .main-footer__title {
    font-size: 50px;
  }
}
.main-footer__text {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 500;
  color: var(--bemox-primary, #222222);
}
@media (min-width: 992px) {
  .main-footer__text {
    font-size: 25px;
  }
}
.main-footer__copyright {
  position: relative;
  margin: 75px 0 0;
  padding: 26px 0 26px;
  border-top: 1px solid var(--bemox-black3, #040404);
}
@media (max-width: 767px) {
  .main-footer__copyright {
    margin-top: 50px;
    padding: 23px 0 22px;
  }
}
.main-footer__copyright p {
  margin: 0;
  font-family: var(--bemox-font, "Roboto", sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--bemox-primary, #222222);
  text-transform: uppercase;
}
.main-footer__shape-1, .main-footer__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  bottom: 0px;
}
@media (max-width: 1199px) {
  .main-footer__shape-1, .main-footer__shape-2 {
    display: none;
  }
}
.main-footer__shape-1 {
  left: 0px;
}
@media (max-width: 1399px) {
  .main-footer__shape-1 {
    left: -50px;
  }
}
.main-footer__shape-2 {
  right: 0px;
}
@media (max-width: 1399px) {
  .main-footer__shape-2 {
    right: -50px;
  }
}
/*# sourceMappingURL=bemox-landing.css.map */
