/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #FFF;
  background: #10172A;
}

a {
  color: #94BD3D;
  text-decoration: none;
}

a:hover {
  color: #94BD3D;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #94BD3D;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: #94BD3D;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #FF8137;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(30, 41, 58, 0.9);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(30, 41, 58, 0.9);
  height: 60px;
}

#header .logo .logo-title {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

#header .logo .logo-title a,
#header .logo .logo-title a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #94BD3D;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(30, 41, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #1E293A;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #FFFFFF;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #94BD3D;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: url(/build/images/hero-bg.e52cdf45.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 110px 0 0 0;
}

#hero:before {
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 23, 42, 0.92) 0%, rgba(30, 41, 58, 0.78) 46%, rgba(30, 41, 58, 0.55) 100%),
    linear-gradient(0deg, rgba(30, 41, 58, 0.55) 0%, rgba(30, 41, 58, 0.08) 45%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero .hero-row {
  min-height: 560px;
}

#hero .hero-content {
  max-width: 650px;
}

#hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 7px 12px;
  color: #D6F29A;
  background: rgba(148, 189, 61, 0.12);
  border: 1px solid rgba(148, 189, 61, 0.28);
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

#hero h1 {
  margin: 0 0 18px 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 62px;
  color: rgba(255, 255, 255, 0.92);
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #94BD3D;
}

#hero h2 {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 21px;
  line-height: 32px;
}

#hero .hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
}

#hero .download-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

#hero .download-buttons a {
  display: inline-flex;
  transition: transform 0.3s ease;
}

#hero .download-buttons a:hover {
  transform: translateY(-2px);
}

#hero .download-buttons img {
  height: 48px;
  width: auto;
}

#hero .hero-cta-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 600;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #10172A;
  background: #94BD3D;
}

#hero .btn-get-started:hover {
  background: #17b57d;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 90px;
  }

  #hero .hero-row {
    min-height: auto;
  }

  #hero .hero-content {
    max-width: 100%;
    text-align: center;
  }

  #hero .hero-kicker {
    margin-top: 14px;
  }

  #hero h1 {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 12px;
  }

  #hero h2 {
    max-width: 560px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 28px;
  }

  #hero .hero-actions {
    align-items: center;
    margin-top: 24px;
  }

  #hero .download-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #hero .download-buttons img {
    height: 42px;
  }
}

.hero-waves {
  display: block;
  margin-top: 32px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  background-color: #1E293A;
}

.section-bg {
  background-color: #10172A;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #94BD3D;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #FFF;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 40px 0 0 0;
}

.about .icon-boxes h3 {
  max-width: 760px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFF;
  margin-bottom: 15px;
}

.about .icon-boxes .about-lead {
  max-width: 760px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.about .icon-box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 760px;
  margin-top: 32px;
}

.about .icon-box .icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 2px solid #94BD3D;
  border-radius: 50%;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #94BD3D;
  font-size: 29px;
}

.about .icon-box:hover .icon {
  background: #94BD3D;
  border-color: #94BD3D;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
  color: #FFF;
}

.about .icon-box .description {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  font-size: 15px;
}

.about .video-box {
  background: url("https://img.youtube.com/vi/Nl8EkyZMdsE/maxresdefault.jpg") center center no-repeat;
  background-size: contain;
  min-height: 300px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#94BD3D 50%, rgba(148, 189, 61, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(151, 189, 61, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #94BD3D;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .about-download {
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding: 0 16px 34px;
}

.about .about-download a {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.about .about-download a:hover {
  transform: translateY(-2px);
}

.about .about-download img {
  height: 48px;
  width: auto;
}

@media (max-width: 575px) {
  .about .icon-boxes h3 {
    font-size: 28px;
  }

  .about .icon-box {
    gap: 18px;
  }

  .about .icon-box .icon {
    width: 50px;
    height: 50px;
  }

  .about .icon-box .icon i {
    font-size: 25px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .feature-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  min-height: 100%;
  background: #10172A;
  border: 1px solid rgba(148, 189, 61, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  transition: ease-in-out 0.3s;
}

.features .feature-group-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--feature-color);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
}

.features .feature-group-icon i {
  font-size: 26px;
  line-height: 1;
}

.features .feature-group h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 28px;
  color: #FFF;
}

.features .feature-group p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.features .feature-group ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.features .feature-group li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.features .feature-group li+li {
  margin-top: 12px;
}

.features .feature-group li i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #94BD3D;
  font-size: 16px;
}

.features .feature-group:hover {
  transform: translateY(-4px);
  background: #162235;
  border-color: rgba(148, 189, 61, 0.42);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.features .feature-group:hover .feature-group-icon {
  background: rgba(148, 189, 61, 0.12);
  border-color: rgba(148, 189, 61, 0.38);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #94BD3D;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #FFF;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details {
  padding: 76px 0 84px;
  background:
    linear-gradient(180deg, rgba(16, 23, 42, 0.96) 0%, rgba(30, 41, 58, 0.98) 100%);
}

.details .section-title {
  max-width: 920px;
}

.details .section-title p {
  max-width: 780px;
  line-height: 1.16;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.details-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  overflow: hidden;
  background: #10172A;
  border: 1px solid rgba(148, 189, 61, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.details-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #94BD3D, rgba(148, 189, 61, 0));
}

.details-card:hover {
  transform: translateY(-4px);
  background: #162235;
  border-color: rgba(148, 189, 61, 0.42);
}

.details-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.details-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #94BD3D;
  background: rgba(148, 189, 61, 0.10);
  border: 1px solid rgba(148, 189, 61, 0.30);
  border-radius: 8px;
}

.details-icon i {
  font-size: 25px;
  line-height: 1;
}

.details-card-header span {
  color: rgba(255, 255, 255, 0.20);
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.details-card h3,
.details-callout h3 {
  margin: 0;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.details-card p,
.details-callout p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.details-card ul,
.details-callout ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.details-card li,
.details-callout li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.details-card li+li,
.details-callout li+li {
  margin-top: 12px;
}

.details-card li i,
.details-callout li i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #94BD3D;
  font-size: 16px;
}

.details-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(148, 189, 61, 0.13) 0%, rgba(16, 23, 42, 0.92) 52%, rgba(16, 23, 42, 0.98) 100%);
  border: 1px solid rgba(148, 189, 61, 0.24);
  border-radius: 8px;
}

.details-callout-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #D6F29A;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.details-callout ul {
  margin: 0;
}

@media (max-width: 991px) {
  .details {
    padding: 68px 0 76px;
  }

  .details-grid,
  .details-callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .details .section-title p {
    font-size: 30px;
  }

  .details-card,
  .details-callout {
    padding: 22px;
  }

  .details-card h3,
  .details-callout h3 {
    font-size: 21px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url(/build/images/cta-bg.ccd55b89.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 3, 111, 0.8);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #94BD3D;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #94BD3D;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #FFF;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #94BD3D;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #94BD3D;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #149f6e;
}

.pricing .featured h3 {
  color: #fff;
  background: #94BD3D;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #94BD3D;
  color: #fff;
}

/*--------------------------------------------------------------
# Download QR
--------------------------------------------------------------*/
.download-qr {
  padding: 44px 0;
}

.download-qr .download-qr-panel {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  padding: 26px;
  background: #1E293A;
  border: 1px solid rgba(148, 189, 61, 0.18);
  border-radius: 8px;
}

.download-qr .download-qr-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 430px;
}

.download-qr .download-qr-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #D6F29A;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.download-qr .download-qr-copy h2 {
  margin: 0 0 8px;
  color: #FFF;
  font-size: 26px;
  font-weight: 700;
}

.download-qr .download-qr-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.download-qr .download-qr-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
  min-width: 0;
}

.download-qr .download-qr-stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-qr .download-qr-stores a {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.download-qr .download-qr-stores a:hover {
  transform: translateY(-2px);
}

.download-qr .download-qr-stores img {
  height: 48px;
  width: auto;
}

.download-qr .download-qr-codes {
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.download-qr .download-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(16, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.download-qr .download-qr-card img {
  width: 152px;
  height: 152px;
  border-radius: 4px;
}

.download-qr .download-qr-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1399px) {
  .download-qr .download-qr-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-qr .download-qr-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 991px) {
  .download-qr .download-qr-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .download-qr .download-qr-panel {
    padding: 22px;
  }

  .download-qr .download-qr-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-qr .download-qr-stores {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .download-qr .download-qr-codes {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 76px 0 84px;
}

.faq .section-title {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 34px;
}

.faq .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq .faq-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.faq .faq-list>ul>li+li {
  margin-top: 14px;
}

.faq .faq-list>ul>li {
  padding: 22px 24px;
  background: #1E293A;
  border: 1px solid rgba(148, 189, 61, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding: 0 38px 0 36px;
  color: #D6F29A;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 20px;
  position: absolute;
  left: 24px;
  top: 22px;
  color: #94BD3D;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.faq .faq-list .content {
  margin: 16px 0 0 36px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 0;
}

.faq .faq-list .content ol {
  padding: 8px 0 8px 22px;
  margin: 0;
}

.faq .faq-list .content li {
  padding: 2px 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: static;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #FFF;
}

.faq .faq-list a.collapsed:hover {
  color: #94BD3D;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    max-width: 900px;
  }
}

@media (max-width: 575px) {
  .faq {
    padding: 64px 0 72px;
  }

  .faq .faq-list>ul>li {
    padding: 20px;
  }

  .faq .faq-list .icon-help {
    left: 20px;
    top: 20px;
  }

  .faq .faq-list a {
    padding-left: 34px;
    font-size: 15px;
  }

  .faq .faq-list .content {
    margin-left: 34px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 76px 0 84px;
}

.contact .contact-layout {
  row-gap: 28px;
}

.contact .info {
  width: 100%;
  padding: 28px;
  background: #10172A;
  border: 1px solid rgba(148, 189, 61, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.contact .contact-intro {
  margin-bottom: 24px;
}

.contact .contact-intro h3,
.contact .form-intro h3 {
  margin: 0 0 8px;
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
}

.contact .contact-intro p,
.contact .form-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.contact .contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #1E293A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.contact .contact-card+.contact-card {
  margin-top: 14px;
}

.contact .contact-card i {
  flex-shrink: 0;
  font-size: 20px;
  color: #94BD3D;
  width: 44px;
  height: 44px;
  background: rgba(148, 189, 61, 0.12);
  border: 1px solid rgba(148, 189, 61, 0.28);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.contact .contact-card h4 {
  margin: 0 0 4px;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
}

.contact .contact-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.contact .contact-card a {
  color: rgba(255, 255, 255, 0.76);
  overflow-wrap: anywhere;
}

.contact .contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 189, 61, 0.35);
}

.contact .contact-card:hover a {
  color: #D6F29A;
}

.contact .php-email-form {
  width: 100%;
  padding: 28px;
  background: #10172A;
  border: 1px solid rgba(148, 189, 61, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.contact .form-intro {
  margin-bottom: 22px;
}

.contact .php-email-form .form-group {
  padding-bottom: 10px;
}

.contact .php-email-form .error-message {
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.alert-success {
  color: #10172A;
  background: #94BD3D;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  color: #10172A;
  background: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  width: 100%;
  border-radius: 8px;
  box-shadow: none;
  font-size: 15px;
  background-color: #172235;
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background-color: #1E293A;
  color: #FFF;
  border-color: rgba(148, 189, 61, 0.55);
  box-shadow: 0 0 0 4px rgba(148, 189, 61, 0.10);
  outline: 0;
}

.contact .php-email-form input {
  height: 48px;
  padding: 10px 14px;
}

.contact .php-email-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact .php-email-form button[type=submit] {
  background: #94BD3D;
  border: 0;
  padding: 12px 34px;
  color: #10172A;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(148, 189, 61, 0.22);
}

.contact .php-email-form button[type=submit]:hover {
  background: #D6F29A;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(148, 189, 61, 0.28);
}

@media (max-width: 575px) {
  .contact {
    padding: 64px 0 72px;
  }

  .contact .info,
  .contact .php-email-form {
    padding: 22px;
  }

  .contact .contact-card {
    padding: 14px;
  }
}

.privacy h4 {
  font-weight: 600;
  font-size: 22px;
  color: #FFF;
}

.privacy h5 {
  font-weight: 600;
  font-size: 18px;
  color: #FFF;
}

.privacy .context-box {
  margin-left: 25px;
  margin-bottom: 25px;
}

.privacy .context-box ul {
    list-style: none;
    padding: 0;
}

.privacy .context-box ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #94BD3D;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #1E293A;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 56px 0 30px;
}

#footer .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.55fr) minmax(190px, 0.7fr);
  gap: 54px;
  align-items: flex-start;
  padding-top: 26px;
  border-top: 2px solid rgba(148, 189, 61, 0.8);
}

#footer .footer-logo {
  display: inline-flex;
  margin-bottom: 14px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

#footer .footer-logo:hover {
  color: #D6F29A;
}

#footer .footer-brand p {
  max-width: 460px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

#footer .footer-contact-list {
  display: grid;
  gap: 10px;
  max-width: 380px;
  margin-bottom: 20px;
}

#footer .footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  transition: 0.3s;
}

#footer .footer-contact-list a:hover {
  color: #D6F29A;
}

#footer .footer-contact-list i {
  display: inline-flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(148, 189, 61, 0.12);
  border: 1px solid rgba(148, 189, 61, 0.24);
  border-radius: 8px;
  color: #D6F29A;
  font-size: 16px;
}

#footer .footer-contact-list span {
  overflow-wrap: anywhere;
}

#footer .footer-top .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#footer .footer-top .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(16, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #94BD3D;
  border-color: #94BD3D;
  color: #10172A;
  transform: translateY(-2px);
  text-decoration: none;
}

#footer .footer-top h4 {
  margin: 0 0 18px;
  color: #D6F29A;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

#footer .footer-top .footer-links ul li+li {
  margin-top: 12px;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.72);
  transition: 0.3s;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fff;
  padding-left: 4px;
}

#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

#footer .footer-bottom a {
  overflow-wrap: anywhere;
  text-align: right;
  color: #fff;
  transition: 0.3s;
}

#footer .footer-bottom a:hover {
  color: #D6F29A;
}

#footer .copyright strong {
  color: #fff;
}

@media (max-width: 991px) {
  #footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  #footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  #footer .footer-top {
    padding: 42px 0 24px;
  }

  #footer .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  #footer .footer-bottom a {
    text-align: left;
  }
}

