@charset "UTF-8";
:root {
  --page-width: 1310px;
  --fluid-container-width: 1600px;
  --color-white: #ffffff;
  --heading-weight: 700;
  --bls-transition: all 0.3s ease;
  --bls-transform: scale(1.04);
  --bs-gutter-x: 2rem;
  --shadow: 0px 5px 30px 0px rgba(17, 28, 49, 0.05);
  --color-primary: #249A63;
  --color-border: #E1E5EA;
  --body-bg-color: #F4F6FA;
  --body-color: #555555;
  --body-font-size: 1.4rem;
  --body-weight: 500;
  --section-pt: 50px;
  --section-pb: 50px;
  --section-spacing: 50px;
  --color-heading:#111111;
  --color-link: var( --color-heading);
  --btn-padding: 1rem 2rem;
  --btn-font-size: 1.4rem;
  --btn-color: var(--color-white);
  --btn-bg: var(--color-primary);
  --btn-border-color: var(--color-primary);
  --btn-color-hover:  var(--color-white);
  --btn-bg-hover:#1c7b4f;;
  --btn-border-hover: #1c7b4f;
  --btn-radius: 30px;
  --btn-outline-border-color: var(--color-white);
  --btn-outline-color: var(--color-white);
  --swiper-pagination-bullet-size: 5px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.4);
  --swiper-theme-color: var(--color-white);
  --swiper-pagination-bullet-horizontal-gap: 12px;
  --swiper-navigation-sides-offset: 0;
  --width-blur: 500px;
  --height-blur: 500px;
  --top-blur: 160px;
  --opacity-blur: 0.5;
  --duration-extra-long: 600ms;
  --animation-slide-in: slideIn var(--duration-extra-long)
    cubic-bezier(0, 0, 0.3, 1) forwards;
}
@keyframes slideIn {
  from {
    transform: translateY(2rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.scroll-trigger.animate--slide-in {
  transition: opacity var(--duration-extra-long) ease-out;
  opacity: 0;
}
.scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {
  animation: var(--animation-slide-in);
  animation-delay: calc(var(--animation-order) * 150ms);
}
.button,
a,
button,
mark {
  text-decoration: none;
}
a {
  transition: var(--bls-transition);
}
a:not(.btn-primary, .btn-outline) {
  color: var(--color-link);
}
body {
  display: block !important;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
[style*="--aspect-ratio"] {
  position: relative;
}
[style*="--aspect-ratio"]:before {
  content: "";
  display: block;
  height: 0;
  width: 100%;
  padding-top: calc(100% / (var(--aspect-ratio, 16 / 9)));
}
[style*="--aspect-ratio"] > :first-child {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  border: 0;
  height: 100%;
  vertical-align: baseline;
  overflow-x: hidden;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: var(--body-font-size, 1.4rem);
  font-weight: var(--body-weight);
  line-height: 1.714285714285714;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  background-color: var(--body-bg-color);
  color: var(--body-color);
  background-repeat: repeat;
  background-size: auto;
  overflow-x: hidden !important;
}
:where(.container, .fluid_container) {
  padding-left: var(--bs-gutter-x, 1.5rem);
  padding-right: var(--bs-gutter-x, 1.5rem);
  margin-inline: auto;
  width: 100%;
}
:where(.stretch_width) {
  padding-left: var(--bs-gutter-x);
  padding-right: var(--bs-gutter-x);
}
:where(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .h0, .heading) {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: var(--heading-weight);
  color: var(--color-heading);
  line-height: 1.11111;
  word-break: break-word;
  font-size: var(--size);
  letter-spacing: -0.002em;
  margin-block-start: calc(var(--size) * 0.7);
  margin-block-end: calc(var(--size) * 0.7);
}
:where(h1, .h1),
.h1-size {
  --size: clamp(3.5rem, 4vw, 4.5rem);
  letter-spacing: -1.8px;
}
:where(h2, .h2) {
  --size: clamp(3rem, 3.5vw, 4rem);
  letter-spacing: -0.8px;
}
:where(h3, .h3) {
  --size: clamp(2.4rem, 2.7vw, 3rem);
  letter-spacing: -0.44px;
}
:where(h4, .h4) {
  --size: 2.4rem;
  letter-spacing: -0.44px;
}
:where(h5, .h5) {
  --size: 1.8rem;
  letter-spacing: -0.36px;
}
:where(h6, .h6) {
  --size: 1.6rem;
  letter-spacing: -0.36px;
}
picture {
  line-height: 0;
  display: block;
}
picture.lazy-picture img {
  display: none;
}
video {
  max-width: 100%;
}
:where(img) {
  max-width: 100%;
  height: auto;
  transition: var(--bls-transition);
}
:where(.btn-primary, .btn-outline) {
  padding: var(--btn-padding);
  font-size: var(--btn-font-size);
  font-weight: var(--heading-weight);
  color: var(--btn-color);
  background:var(--btn-bg);
  border: 1px solid var(--btn-border-color);
  transition: var(--bls-transition);
  border-radius: var(--btn-radius);
  line-height: 1.5;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}
.btn-outline {
  --btn-color:var(--color-heading);
  --btn-bg: transparent;
  --btn-border-color: var(--color-heading);
  border: 1px solid var(--btn-border-color);
}
.design-tabs__header .tab-title.active,
.template-tab li.active {
  --btn-bg: var(--btn-bg-hover);
  --btn-border-color: var(--btn-border-hover);
  color: var(--btn-color-hover);
}
.btn-outline,
.btn-primary {
  background: linear-gradient(to bottom, var(--btn-bg-hover) 50%, var(--btn-bg) 50%) no-repeat scroll right bottom / 100% 210% var(--btn-bg);
}
.btn-outline:hover,
.btn-primary:hover {
    background-position: right top;
    color: var(--btn-color-hover);
    border-color: var(--btn-border-hover);
    background-color: var(--btn-bg-hover);
}
@keyframes backgroundAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.design-tabs__header .tab-title.active,
.template-tab li.active {
  transition: var(--bls-transition);
  background-color: var(--btn-bg);
}
.btn-small {
  --btn-padding: 0.8em 1.8rem;
}
.btn-nomal {
  --btn-padding: 1.5rem 2rem;
  min-width: 20rem;
  display: inline-flex;
  justify-content: center;
}
.btn-large {
  --btn-padding: 1.8rem 5.5rem;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p:only-child {
  margin-block: 0;
}
.row {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.col-lg-4,
.col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  width: 100%;
}
.row > * {
  margin-bottom: var(--bs-gutter-x);
}
.relative {
  position: relative;
}
.medium-weight {
  font-weight: 500;
}
.semibold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.extrabold {
  font-weight: 800;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}
.color-white {
  color: var(--color-white);
}
.color-light {
  color: #9A96A6;
}
:where(a:hover) {
  color: var(--color-link-hover);
}
.border {
  border: 1px solid var(--color-border);
  transition: var(--bls-transition);
}
.border-light {
  border: 1px solid #282530;
}
.border-gradient {
  border-image-source: linear-gradient(90deg, rgba(113, 97, 159, 0) 0px, #252130 50%, rgba(113, 97, 159, 0) 100%);
  border-image-slice: 1;
  border-top: 1px solid;
}
.border-gradient-grey {
  border-image-source: linear-gradient(90deg, rgba(113, 97, 159, 0) 0px, #E1E5EA 50%, rgba(113, 97, 159, 0) 100%);
  border-image-slice: 1;
  border-top: 1px solid;
}
.border-top-0 {
  border-top: 0;
}

.section__pt {
  padding-top: var(--section-pt);
}
.section__pb {
  padding-bottom: var(--section-pb);
}
.section-inner__pt {
  padding-bottom: calc(var(--section-pt) - var(--bs-gutter-x, 0px));
}
.section-inner__pb {
  padding-bottom: calc(var(--section-pb) - var(--bs-gutter-x, 0px));
}
.section__spacing {
  --bs-gutter-x: 2rem;
  margin-bottom: calc(var(--section-spacing) - var(--bs-gutter-x, 0px));
}
.overflow-hidden {
  overflow: hidden;
  will-change: transform;
  display: block;
}
.lh-1 {
  line-height: 1;
}
.lh-30 {
  line-height: 30px;
}
.flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.inline-flex {
  display: inline-flex;
}
.d-block {
  display: block;
}
.flex-1 {
  flex: 1;
}
.d-grid {
  display: grid;
}
.wrap {
  flex-wrap: wrap;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-5 {
  gap: 0.5rem;
}
.gap-10 {
  gap: 1rem;
}
.gap-15 {
  gap: 1.5rem;
}
.gap-20 {
  gap: 2rem;
}
.gap-30 {
  gap: 3rem;
}
.gap-row-10 {
  row-gap: 1rem;
}
.gap-column-40 {
  column-gap: 40px;
}
.z-2 {
  z-index: 2;
}
.align-items-center {
  align-items: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.height-auto {
  height: auto;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.uppercase {
  text-transform: uppercase;
}
.underline-hover:hover,
.underline {
  text-decoration: underline;
}
.italic {
  font-style: italic;
}
.hover-zoom {
  position: relative;
  overflow: hidden;
  will-change: transform;
  display: block;
}
.hover-zoom:hover img:not(.label) {
  transform: var(--bls-transform);
}
.fs-10 {
  font-size: 1rem;
}
.fs-11 {
  font-size: 1.1rem;
}
.fs-12 {
  font-size: 1.2rem;
}
.fs-14 {
  font-size: 1.4rem;
}
.fs-16 {
  font-size: 1.6rem;
}
.fs-18 {
  font-size: 1.8rem;
}
.fs-22 {
  font-size: 2.2rem;
}
fs-50 {
  font-size: clamp(3rem, 4vw, 5rem);
}
.fs-60 {
  font-size: clamp(3.6rem, 4.8vw, 6rem);
}
.fs-84 {
  font-size: clamp(4.4rem, 6.7vw, 8.4rem);
}
.fs-90 {
  font-size: clamp(5rem, 7vw, 9rem);
}
.mx-60 {
  margin-left: clamp(3rem, 4.5vw, 6rem);
  margin-right: clamp(3rem, 4.5vw, 6rem);
}
.text-highlight {
  color: var(--color-primary);
}
.cursor-pointer {
  cursor: pointer;
}
.m-auto {
  margin-left: auto;
  margin-right: auto;
}
.mr-10 {
  margin-right: 1rem;
}
.mr-15 {
  margin-right: 1.5rem;
}
.m-0 {
  margin: 0;
}
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mt-0 {
  margin-top: 0;
}
.mt-5 {
  margin-top: 0.5rem;
}
.mt-10 {
  margin-top: 1rem;
}
.mt-15 {
  margin-top: 1.5rem;
}
.mt-30 {
  margin-top: 3rem;
}
.mt-50 {
  margin-top: clamp(3rem, 4vw, 5rem);
}
.mt-70 {
  margin-top: clamp(3rem, 5vw, 7rem);
}
.mb-5 {
  margin-bottom: 0.5rem;
}
.mb-10 {
  margin-bottom: 1rem;
}
.mb-15 {
  margin-bottom: 1.5rem;
}
.mb-20 {
  margin-bottom: 2rem;
}
.mb-25 {
  margin-bottom: 2.5rem;
}
.mb-30 {
  margin-bottom: 3rem;
}
.mb-45 {
  margin-bottom: clamp(3rem, 3.8vw, 4.5rem);
}
.p-15 {
  padding: 1.5rem;
}
.py-15 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-30 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.px-50 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.p-20 {
  padding: 2rem;
}
.px-20 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-30 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-10 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-40 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.p-30 {
  padding: 3rem;
}
.pb-30 {
  padding-bottom: 3rem;
}
.pt-20 {
  padding-top: 2rem;
}
.border-radius {
  border-radius: 15px;
}
.border-radius-10 {
  border-radius: 10px;
}
.border-radius-20 {
  border-radius: 20px;
}
.border-radius-50 {
  border-radius: 50%;
}
.bg-dark {
  background: var(--bg-linear, linear-gradient(111deg, rgba(255, 255, 255, 0.03) -0.01%, rgba(36, 154, 99, 0.06) 99.99%));
}
.bg-dark-2 {
  background: var(--color-heading);
}
.bg-white {
  background: var(--color-white);
}
.bg-grey {
  background: #F4F6FA;

}
.bg-blue {
  background: rgba(36, 154, 99, 0.10);

}
.box-shadow {
  filter: drop-shadow(0px 5px 30px rgba(17, 28, 49, 0.05));
}
.heading-color {
  color: var(--color-heading);
}
.base-color {
  color: var(--body-color);
}
.site-header.header-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: var(--bls-transition);
  z-index: 10;
  background-color: var(--color-white);
}
.site-header .buynow-btn {
  --btn-bg:var(--color-heading);
  --btn-border-color:var(--color-heading);
}
.site-header.header-pinned .stretch_width {
  border-bottom: 1px solid var(--color-border);
}
.site-header.header-pinned .stretch_width::after {
  content: "";
  background: rgba(19, 17, 28, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.button-label,
.menu-label {
  position: relative;
  right: -10px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 2px;
  padding: 5px 7px;
  line-height: 1;
  background-color: #d0473e;
  color: var(--color-white);
}
.button-label::after,
.menu-label:after {
  border: 5px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  width: 0;
  bottom: 15px;
  left: -10px;
  margin-left: 0;
  transform: translateY(100%);
  transform-origin: 0 0;
  border-right-color: #d0473e;
  border-radius: 1px;
}
@keyframes heartBeat1 {
  0%,
  50% {
    transform: scale(1);
    opacity: 1;
  }
  15% {
    transform: scale(0.8);
  }
  20% {
    transform: scale(0.85);
    opacity: 1;
  }
  35% {
    transform: scale(1.3);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
  }
}
.theme-label {
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 1;
  pointer-events: none;
  animation: 1.35s linear infinite heartBeat1;
}
@media (max-width: 991px) {
  .d-none-mb {
    display: none !important;
  }
  .ms-flex-none {
    flex: none;
  }
  .site-header {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .slider-button-wrapper {
    flex-direction: column;
    max-width: 300px;
    margin: auto;
  }
  .navigation-mobile {
    overflow-y: auto;
    overflow-x: hidden;
  }
  .navigation-mobile .menu-content,
  .navigation-mobile .sub-nav,
  .navigation-mobile .subchildmenu,
  .navigation-mobile .submenu {
    padding: 0 30px;
  }
  .navigation .menu-content > li > a {
    font-weight: var(--heading-weight);
    position: relative;
  }
  .navigation-mobile .menu-content > li {
    width: 100%;
    padding: 1.5rem 0;
    position: relative;
  }
  .navigation-mobile .bls-menu-item,
  .navigation-mobile .fluid_container,
  .navigation-mobile .row {
    padding: 0;
    margin: 0;
    display: block;
  }
  .navigation-mobile .open-children-toggle {
    top: 0;
    right: -1.5rem;
  }
  .navigation-mobile .open-children-toggle::before,
  .navigation-mobile .open-children-toggle::after {
    display: none;
  }
  .navigation-mobile .bls-menu-item,
  .navigation-mobile ul li,
  .navigation-mobile .subchildmenu-header,
  .navigation-mobile .title-submobile {
    border-bottom: 1px solid var(--color-border);
  }
  .navigation-mobile .title-subchildmenu::before,
  .navigation-mobile .title-submobile::before {
    content: "";
    background: url("../assets/images/icon-svg/icon_prev_mobile.svg") no-repeat
      center;
    width: 8px;
    height: 13px;
    display: inline-flex;
    margin-right: 1rem;
  }
  .navigation-mobile .open-children-toggle.d-none-desktop::before {
    content: "";
    background: url(../assets/images/icon-svg/icon_next_mobile.svg) no-repeat
      center;
    width: 6px;
    height: 12px;
    position: absolute;
    display: inline-flex;
    transform: none;
    margin-top: -6px;
  }
  .navigation-mobile,
  .navigation-mobile .submenu,
  .navigation-mobile .subchildmenu,
  .navigation-mobile .sub-nav {
    position: fixed;
    background-color: var(--body-bg-color);
    top: 0;
    left: 0;
    bottom: 0;
    max-width: 450px;
    width: 100%;
    z-index: 9999;
    transform: translate3d(-104%, 0, 0);
    -webkit-transform: translate3d(-104%, 0, 0);
    transition: var(--bls-transition);
  }
  .navigation-mobile.box-menu,
  .navigation-mobile .open-submenu .submenu,
  .navigation-mobile .open-submenu .sub-nav,
  .navigation-mobile .open-subchildmenu .subchildmenu {
    transform: translateZ(0);
    -webkit-transform: translate3d(0, 0, 0);
  }
  .navigation-mobile .menu-close {
    position: absolute;
    right: 30px;
    top: 20px;
    background: url("../assets/images/icon-svg/icon_sub_close.svg") no-repeat
      center;
    width: 12px;
    height: 12px;
  }
  .open-menu:after {
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    display: block;
    position: fixed;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity 0.2s cubic-bezier(0, 0, 0.3, 1);
    transition-delay: 0.1s;
  }
  .navigation-mobile .title-mobile {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    text-transform: uppercase;
    padding: 1.5rem 3rem;
    font-weight: var(--heading-weight);
  }
  .navigation-mobile .subchildmenu-header,
  .navigation-mobile .title-submobile {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem 3rem;
    font-weight: var(--heading-weight);
    margin: 0 -3rem;
  }
  .navigation-mobile .bls-menu-item > a,
  .navigation-mobile ul li {
    padding: 1.5rem 0;
    position: relative;
    margin: 0;
  }
  .navigation-mobile .open-subchildmenu .subchildmenu,
  .navigation-mobile .open-submenu .sub-nav,
  .navigation-mobile .open-submenu .submenu {
    max-width: 100%;
  }
  .navigation-mobile .bls-menu-item {
    position: relative;
  }
  .submenu-mobile-header {
    padding: 0 !important;
    position: static !important;
    border-bottom: none !important;
  }
}
@media (max-width: 575px) {
  .d-none-small-mb {
    display: none !important;
  }
}
.topbar {
  background: #1c7b4f;
  padding: 1rem 0;
  --color-link:var(--color-white);
}
.section__slider {
  padding: 60px 0 30px;
}
.slider-button-wrapper .btn-outline {
  --bls-transition: all 0.2s linear;
  --btn-padding: 1.6rem 1.5rem;
}
.slider-heading {
  display: inline-block;
  line-height: 1.2;
}
.slider-text {
  max-width: 55rem;
}
.top-1 {
  animation-name: fadeInDownslideshow;
  animation-duration: 0.8s;
}
.slider-heading {
  animation-name: fadeInDownslideshow;
  animation-duration: 0.8s;
  animation-delay: 0.2s;
}
.section__slider .section-description {
  animation-name: fadeInDownslideshow;
  animation-duration: 0.8s;
  animation-delay: 0.4s;
}
.slider-button-wrapper {
  animation-name: fadeInDownslideshow;
  animation-duration: 0.8s;
  animation-delay: 0.6s;
}
@keyframes scale-image {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0);
  }
} 

.banner-slider .slider1 {
  -webkit-animation-name: fadeInDownslideshow;
  animation-name: fadeInDownslideshow;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.banner-slider .slider2 {
  -webkit-animation-name: cross-right-blur;
  animation-name: cross-right-blur ;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}
.banner-slider .slider3 {
  -webkit-animation-name: fadeInDownslideshow;
  animation-name: fadeInDownslideshow;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.banner-slider .slider4 {
  -webkit-animation-name: cross-top-blur;
  animation-name: cross-top-blur;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
 .slider-group2 {
  position: absolute;
  left: 0;
  bottom: 0;
 }
 .slider-group1  {
  position: absolute;
  right: -3rem;
  top: -8rem;
}
:is(
    .top-1,
    .slider-heading,
    .section__slider .section-description,
    .slider-button-wrapper
  ) {
  opacity: 0;
  animation-fill-mode: forwards;
}
.top-1 .btn-outline {
  pointer-events: none;
  --btn-color:var(--color-white);
  --btn-bg:var(--color-heading);
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@keyframes move {
  0% {
    left: 0;
    opacity: 0;
  }
  5%,
  80% {
    opacity: 0;
  }
  48% {
    opacity: 0.2;
  }
  100% {
    left: 82%;
  }
}
@-webkit-keyframes fadeInDownslideshow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
    filter: blur(10px);
  }
  to {
    filter: blur(0px);
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownslideshow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
    filter: blur(10px);
  }
  to {
    filter: blur(0px);
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes cross-top-blur {
  from {
    opacity: 0;
    filter: blur(10px);
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes cross-left-blur {
  from {
    opacity: 0;
    filter: blur(5px);
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes cross-right-blur {
  from {
    opacity: 0;
    filter: blur(5px);
    -webkit-transform: translate3d(40px, 0, 0);
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    -webkit-transform: none;
    transform: none;
  }
}
.bls__section-header {
  margin-bottom: clamp(3rem, 4vw, 5rem);
}
.section-description {
  max-width: 665px;
  margin-left: auto;
  margin-right: auto;
}
.mw-450 {
  max-width: 450px;
}
.template-tab {
  max-width: 1000px;
  --btn-padding: 1rem 2rem;
}

.label-popular {
  background-color: #d2fcb9;
  color: #3a7d13;
  padding: 3px 10px;
}
.label-new {
  background-color: #3357D8;
  color: var(--color-white);
  padding: 3px 10px;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  animation: scale-image 6s ease-in-out infinite;
}
.label-free {
  background-color: #f2b9fc;
  color: #882898;
  padding: 3px 10px;
}
.label-hot {
  background-color: #d0473e;
  color: var(--color-white);
  padding: 3px 10px;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.design-tabs__content .theme-demo:not(.scroll-trigger--offscreen) {
  transition: var(--bls-transition);
}
.theme-demo:hover {
  border-color: var(--color-primary);
}
.theme-dot span {
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.footer-template-libraries h4 {
  font-size: 3.2rem;
}

@-moz-keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-o-keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.section__scroll-text p {
  background: linear-gradient(90deg, #249A63 0, #6EBC19 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__scroll-button > *,
.section__scroll-text > * {
  animation: ticker 50s infinite linear;
  flex-shrink: 0;
  line-height: 1;
}
.section__scroll-button:hover > *,
.section__scroll-text:hover > * {
  animation-play-state: paused;
}
.scroll-line {
  background-image: url("../assets/images/icon-svg/icon_scroll_text.svg");
  width: 20px;
  height: 20px;
}
.section__scroll-button .btn-outline {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  border: 0;
  --btn-padding: 1.6rem 3rem;
}
.section__scroll-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #111111 0,
    rgba(19, 17, 28, 0) 49.5%,
    #111111 100%
  );
}
.mobile-box h3 {
  background: var(--color-primary);
  color: var(--color-white);
}
.shoppable-demo-video {
  width: 100%;
  border: 1px solid var(--color-primary);
  line-height: 0;
  margin: 0 1.5rem;
}
.shoppable-demo-video::after {
  content: "";
  position: absolute;
  top: 0;
  right: -38px;
  background: url("../assets/images/icon-svg/icon_shoplable.svg") no-repeat
    center;
  width: 25px;
  height: 39px;
}
.box-speed-inner {
  max-width: 410px;
  margin: auto;
}
.box-speed .btn-outline {
  border: 0;
}
.box-speed .btn-outline:not(:hover) {
  --btn-bg: rgba(255, 255, 255, 0.03);
}
.progress-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(
    #0be8b4 0 var(--progress-desktop),
    #444 var(--progress-desktop)
  );
}
.progress-circle::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #312f44;
  z-index: 1;
}
.progress-value {
  color: #0be8b4;
  font-size: 4rem;
  z-index: 2;
}
.counter-mobile {
  background: conic-gradient(
    #ffb800 0 var(--progress-mobile),
    #444 var(--progress-mobile)
  );
}
.counter-mobile .progress-value {
  color: #ffb800;
}
.visitor__more {
  margin-top: 0.5rem;
  transition: var(--bls-transition);
  --btn-color: var(--color-heading);
  --btn-bg: var(--color-white);
  --btn-border-color: var(--color-white);
}
.design-tabs__content .tab-content {
  display: none;
  opacity: 0;
}
.design-tabs__content .tab-content.active {
  opacity: 1;
  z-index: 2;
  display: block;
}
.design-tabs__content .tab-content:not(.active) > * {
  pointer-events: none !important;
}
.section__design-preview {
  --color-link:var(--color-white);
}
.section__design-preview .tab-title{
  --btn-color: var(--color-white);
  --btn-border-color: #282530;
  --btn-padding: 1rem 2rem;
}
.section__design-preview .theme-dot span {
  background: rgba(255, 255, 255, 0.3);
}
.clients-info {
  border-radius: 0 0 15px 15px;
}
.bls__page-faq-items .bls__page-faq-title {
  padding: 2.4rem 4rem 2.4rem 2rem;
  cursor: pointer;
}
.bls__page-faq-content {
  padding: 0 2rem 2.5rem 2rem;
}
.bls__page-faq-items.active {
  border-color: var(--color-primary);
}
.bls__page-faq-items:not(.active) .bls__page-faq-title {
  color: var(--color-heading);
}
.faq-image {
  position: relative;
  display: block;
}
.faq-image picture {
  border-radius: 15px;
  overflow: hidden;
  transition: var(--bls-transition);
}
.faq-image:not(.active) picture {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
}
.faq-image.active picture {
  opacity: 1;
  transform: translateY(0);
}
.open-children-toggle {
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  min-height: 4rem;
  z-index: 2;
  cursor: pointer;
}
.active .open-children-toggle:before {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.active .open-children-toggle::after,
.active .open-children-toggle:before {
  background-color: var(--color-white);
}
.open-children-toggle:after,
.open-children-toggle:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: var(--bls-transition);
  background-color: var(--color-heading);
  background-color: var(--body-color);
}
.open-children-toggle:before {
  width: 12px;
  height: 1px;
}
.open-children-toggle:after {
  width: 1px;
  height: 12px;
}
.site-footer {
  background-color:var(--color-heading);
  --color-link:var(--color-white);
}
.site-footer__bottom {
  padding: 3rem 0;
}
.site-section__header p {
  max-width: 470px;
  margin: auto;
}
@keyframes circTxt-rotating {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.icon-footer::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: url("../assets/images/icon-svg/rotator_text.svg") no-repeat center;
  width: 80px;
  height: 80px;
  z-index: 1;
  animation: 8s linear 0s infinite normal none running circTxt-rotating;
}

.help_us_improve {
  position: fixed;
  right: 1.5rem;
  bottom: 9rem;
  z-index: 9;
}
.back-to-top-button {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  right: 2rem;
  bottom: 9.5rem;
  background-color: var(--color-white);
  z-index: 9;
  cursor: pointer;
  box-shadow: 0 0 20px 0 rgba(17, 17, 17, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--bls-transition);
}
.back-to-top-button.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.menu-bottom-mobile {
  background: var(--color-heading);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  justify-content: space-around;
  border-top: 1px solid var(--color-border);
}
.slider-customer-reviews {
  column-count: 1;
  column-gap: 2rem;
  position: relative;
  overflow: hidden;
}
.slider-customer-reviews::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #f4f6fa 65.88%);
  height: 309px;
  z-index: 1;
}
.slider-customer-reviews>div {
  break-inside: avoid;
  display: inline-block;
}
.section-customer-reviews .theme-button-bottom {
margin-top: -5rem;
}
@media (min-width: 576px) {
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .shoppable-demo-video {
    max-width: 200px;
  }
}
@media (min-width: 360px) {
  .visitor-right-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.swiper-pagination {
  position: relative;
}
.swiper-pagination-bullet {
  position: relative;
}
.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid transparent;
  border-radius: 50%;
}
.swiper-pagination-bullet-active::before {
  border-color: var(--color-white);
}
.swiper-button-next,
.swiper-button-prev {
  opacity: 1 !important;
}
.swiper-button-next:after {
  background: url("../assets/images/icon-svg/topbar_next.svg") no-repeat center;
  width: 16px;
  height: 16px;
}
.swiper-button-prev:after {
  background: url("../assets/images/icon-svg/topbar_prev.svg") no-repeat center;
  width: 16px;
  height: 16px;
}
@media (min-width: 768px) {
  :root {
    --section-pt: 100px;
    --section-pb: 100px;
    --section-spacing: 100px;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666667%;
    -ms-flex: 0 0 41.66666667%;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333333%;
    -ms-flex: 0 0 58.33333333%;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .menu-bottom-mobile {
    display: none;
  }
  .back-to-top-button {
    right: 3rem;
  }
  .help_us_improve {
    bottom: 3rem;
    right: 3rem;
  }
  .slider-customer-reviews {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 75px;
  }
  .text-slide {
    text-align: center;
  }
  .d-none-mb_small {
    display: none !important;
}
}
@media (min-width: 992px) {
  :root {
    --btn-padding: 1.25rem 3rem;
    --width-blur: 800px;
    --height-blur: 800px;
    --top-blur: 200px;
    --opacity-blur: 0.3;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .section__slider {
    padding: 160px 0 30px;
  }
  .banner-slider {
    animation: scale-image 6s ease-in-out infinite;
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
  } 
  .navigation {
    padding-left: 4rem;
  }
  .navigation > ul > li {
    margin: 0 16px;
    padding: 25px 0;
  }
  .navigation > ul > li:not(.item-mega) {
    position: relative;
  }
  .navigation > ul > li > a svg {
    margin-left: 5px;
    vertical-align: middle;
  }
  .navigation ul a {
    color: var(--color-heading);
    transition: 0.2s;
    font-size: var(--body-font-size);
    font-weight: var(--heading-weight);
    position: relative;
    display: block;
    cursor: pointer;
  }
  .navigation ul > li:hover > a {
    color: var(--color-primary);
  }
  .navigation .sub-nav {
    background: var(--color-white);
    border-radius: 0 0 10px 10px;
    padding: 18px 30px 25px 30px;
    border: 1px solid var(--color-border);
  }
  .navigation .submenu {
    background-color: #13111c4d;
    padding: 50px 0;
  }
  .menu-label {
    position: absolute;
    right: -28px;
    top: -18px;
  }
  .menu-label:after {
    bottom: 1px;
    left: 7px;
    border: 5px solid transparent;
    border-top-color: #d0473e;
  }
  .navigation .sub-nav li a,
  .navigation .submenu li a {
    display: block;
    margin: 0;
    padding: 0;
    font-weight: var(--body-weight);
  }
  .navigation .sub-nav,
  .navigation .submenu {
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s, transform 0.35s,
      -webkit-transform 0.35s;
  }
  .d-none-desktop {
    display: none !important;
  }
  .navigation .sub-nav {
    margin: 0;
    top: 100%;
    min-width: 170px;
    transform: translateY(8px);
    -webkit-transform: translateY(8px);
  }
  .navigation .submenu {
    margin: 25px 0 0;
    right: 0;
    transform: translateY(8px);
    -webkit-transform: translateY(8px);
  }
  .sub-label {
    border-radius: 20px;
    font-size: 9px;
    line-height: 12px;
    text-transform: uppercase;
    padding: 4.5px 10px;
    color: var(--color-white);
    font-weight: 800;
    display: inline-block;
    margin: 0 7px;
    vertical-align: middle;
  }
  .sub-label.sub-hot {
    background-color: #d73f0f;
  }
  .sub-label.sub-new {
    background-color: #2838f5;
  }
  .navigation > ul > li:hover .sub-nav,
  .navigation > ul > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: unset;
    transform: none !important;
  }
  .navigation .sub-nav li:not(:last-child),
  .navigation .submenu li:not(:last-child) {
    margin-bottom: 7px;
  }
  .navigation .sub-nav li a:hover,
  .navigation .submenu li a:hover {
    transform: translateX(5px);
  }
}
@media (min-width: 1025px) {
  .container {
    width: 90%;
  }
  .fluid_container {
    width: 95%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: calc(var(--page-width) + var(--bs-gutter-x) * 2);
  }
  .fluid_container {
    max-width: calc(var(--fluid-container-width) + var(--bs-gutter-x) * 2);
  }
  .stretch_width {
    --bs-gutter-x: 3rem;
  }
  .visitor-right-content {
    grid-template-columns: repeat(4, 1fr);
  }
  .section-faq-admin,
  .section__template-libraries {
    --bs-gutter-x: 3rem;
  }
  .section-faq-admin .faq-content-inner {
    min-height: 95px;
  }
  .slider-customer-reviews {
    column-count: 3;
  }
}
.customization-absolute {
  position: absolute;
  bottom: 0;
  align-items: flex-end;
}
.section-customize .animation-top-bottom {
  top: -7rem;
  left: -2rem;
  position: absolute;
  z-index: 1;
  animation: scale-image 6s ease-in-out infinite;
  -webkit-animation-delay: .4s;
  animation-delay: 0.4s;
}
.pass-word.popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--bls-transition);
}
.pass-word.popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--bls-transition);
}
.pass-word.popup .popup-content {
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 5px;
  margin: auto;
  padding: 30px;
  text-align: center;
  z-index: 999999999999;
  min-height: 300px;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: -0.5px;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--bls-transition);
  transform: translateY(20px);
}
.pass-word.popup.active .popup-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: var(--bls-transition);
}

.pass-word.popup .popup-content h3 {
  font-size: 28px;
  line-height: 1.5;
}

.pass-word.popup .popup-content span {
  color: #d0473e;
  padding: 0 5px;
}

.overlay-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s cubic-bezier(0, 0, 0.3, 1);
}

.close-popup svg {
  width: 20px;
}

.close-popup {
  right: 20px;
  top: 20px;
  position: absolute;
  cursor: pointer;
}
.popup-text {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}
.popup-text {
  transform: translateY(0);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 1;
}

.popup-text.hide {
  transform: translateY(100%);
  opacity: 0;
}
.custom_text_html {
  display: inline-flex;
  position: relative;
}
.custom_text_content {
  background: linear-gradient(90deg, #249A63 0%, #6EBC19 25%, #4CAF50 50%, #8BC34A 75%, #A5D6A7 100%);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: var(--heading-weight);
  display: inline-flex;
  align-items: center;
}
.custom_text_content a{
  color: var(--color-white);
  font-weight: 300;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: underline;
  padding-left: 5px;
}
.close-text {
  line-height: 1;
  cursor: pointer;
  margin-left: 25px;
}
.close-text svg {
width: 12px;
margin-top: 2px;
}
.coming-soon {
  pointer-events: none;
}