@charset "UTF-8";
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/fonts/HelveticaNeueMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/fonts/HelveticaNeueRoman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/fonts/HelveticaNeueLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/fonts/HelveticaNeueBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/fonts/HelveticaNeueHeavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/fonts/HelveticaNeueBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #273c20;
  --secondary-color: #a8c96a;
  --tertiary-color: #f1f5e3;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-helvetica-neue: Helvetica Neue, sans-serif;
}

/* Base styles and global variables */
body {
  font-family: var(--font-helvetica-neue);
  color: var(--white-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--primary-color);
  font-weight: 400;
}

a,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white-color);
  margin-top: 0;
  line-height: 1.2;
  font-weight: 400;
}

.text-black {
  color: var(--black-color);
}

.text-primary-color {
  color: var(--primary-color);
}

.text-secondary-color {
  color: var(--secondary-color);
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-tertiary {
  background-color: var(--tertiary-color) !important;
}

.bg-white {
  background-color: var(--white-color);
}

.header-container {
  background-color: #273c20;
  position: sticky;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
@media (min-width: 1200px) {
  .header-container {
    padding: 16px 0;
  }
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: #ffffff;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
  color: #999999;
}

.dropdown-toggle {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
}

.dropdown-toggle:hover {
  background-color: #ffffff;
}

.dropdown-toggle::after {
  margin-left: 8px;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: 8px;
  box-shadow: 0 -8px 0 #fff, 0 8px 0 #fff;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  box-shadow: none;
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  opacity: 1;
  transform: rotate(-45deg);
}

@media (max-width: 1199px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 15px;
    background-color: #a8c96a;
    z-index: 1000;
  }
  .navbar-nav {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-link {
    padding: 10px 0;
    color: #273c20;
    font-size: 1rem;
    width: 100%;
  }
}
.flag-icon {
  width: 24px;
  height: 16px;
  margin-right: 5px;
}

#chat-widget-container {
  bottom: -10px !important;
}

.global-go-up-button {
  background-color: #a8c96a;
  position: fixed;
  bottom: 10px;
  right: 50px;
  width: 45px;
  height: 45px;
  border-radius: 15px;
  z-index: 100;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0px 10px 30px rgba(1, 28, 42, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.global-go-up-button:hover {
  transform: translateY(-2px);
}
.global-go-up-button:active {
  transform: translateY(0);
}
.global-go-up-button:focus-visible {
  outline: 3px solid rgba(253, 83, 47, 0.5);
  outline-offset: 3px;
}
@media (max-width: 575px) {
  .global-go-up-button {
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

.global-go-up-button.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-go-up-button::after {
  display: block;
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(/assets/images/png/arrow-right.png);
  top: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transform: translateY(-50%) rotate(-90deg);
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .global-go-up-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
}

/* FOR GOOGLE TRANSLATE CSS START HERE */
body {
  top: 0 !important;
}

body .goog-text-highlight {
  background: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

.goog-te-gadget {
  display: block !important;
}

#google_translate_element,
select.goog-te-combo {
  position: fixed;
  z-index: 999;
  top: -999px;
}

.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-tooltip {
  display: none !important;
}

font,
.goog-text-highlight {
  background-color: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

#goog-gt-tt,
.goog-te-combo,
.skiptranslate {
  display: none !important;
}

#teams-dropdown-menu span.icon .fa {
  display: inline-block;
  color: #273c20;
}

#teams-dropdown-menu span.icon {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}

#teams-dropdown-menu span.icon i {
  transition: transform 0.2s ease;
  transform-origin: center;
}

.loader {
  z-index: 999999;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  left: 0;
}

#teams-dropdown-menu ul li {
  text-transform: capitalize;
}

#teams-dropdown-menu {
  border-radius: 10px;
  position: relative;
  background-color: #ffffff;
  cursor: pointer;
  width: 60px;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 6px;
  margin-bottom: 0px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

#teams-dropdown-menu * {
  cursor: pointer;
}

#teams-dropdown-menu .flag-text {
  font-size: 0px;
  color: #000000;
}

#teams-dropdown-menu ul {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(10, 10, 10, 0.0509803922), 0 0 10px 0 rgba(10, 10, 10, 0.0784313725);
  display: none;
  left: 0;
  overflow: hidden;
  padding: 10px 0;
  position: absolute;
  top: 50px;
  width: 135px;
  z-index: 99;
  padding: 0;
  left: unset !important;
  right: 0;
}

img.img-fluid.flg {
  margin-right: 10px;
}

#teams-dropdown-menu ul.active {
  display: block;
  animation: slidedown 0.2s;
  top: 50px;
}

#teams-dropdown-menu ul.active ~ span.icon i {
  transform: rotate(180deg);
}

@keyframes slidedown {
  from {
    margin-top: -25px;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}
#teams-dropdown-menu ul li {
  padding: 10px 15px;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.5px;
  height: auto !important;
  display: flex;
  margin-left: 0;
  float: none;
}

#teams-dropdown-menu ul li:hover {
  color: #000 !important;
  background-color: #f0f0f0;
}

#teams-dropdown-menu span.icon:before {
  display: none;
  content: none;
}

@media screen and (max-width: 1199px) {
  #teams-dropdown-menu {
    height: 32px;
    position: relative !important;
    cursor: pointer !important;
    width: 60px !important;
    display: flex !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
  }
  #teams-dropdown-menu .flag-text {
    font-size: 0px;
    color: #000000;
    margin-right: 10px;
  }
  #teams-dropdown-menu .submenu-button {
    display: none;
  }
  #teams-dropdown-menu span.icon i {
    color: #000;
  }
  .header-main #teams-dropdown-menu {
    margin-left: auto !important;
  }
  .header.sticky header nav.menu.open ul {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  #teams-dropdown-menu .flag-text {
    margin-right: 0;
  }
}
/* FOR GOOGLE TRANSLATE CSS END'S HERE */
/* TABLE CSS START HERE */
table tr th {
  border: 1px solid #273c20 !important;
  color: #fff !important;
  font-size: 16px;
  text-align: center;
  background-color: #273c20 !important;
}
@media (min-width: 1024px) {
  table tr th {
    padding: 16px !important;
    font-size: 24px;
  }
}
table tr td {
  font-weight: 400;
  text-align: center;
  border: 1px solid #a7a7a7;
}
@media (min-width: 1024px) {
  table tr td {
    padding: 16px !important;
  }
}

/* TABLE CSS END HERE */
/* fade-in-scroll CSS START HERE */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* fade-in-scroll CSS END HERE */
/* section-container CSS START HERE */
.section-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  scroll-margin-top: 66px;
}
@media (min-width: 1200px) {
  .section-container {
    scroll-margin-top: 98px;
  }
}

#pricingplans {
  scroll-margin-top: 66px;
}
@media (min-width: 1200px) {
  #pricingplans {
    scroll-margin-top: 98px;
  }
}

/* section-container CSS END HERE */
.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-base {
  font-size: 1rem;
  line-height: 1.6;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn.btn-white {
  background-color: #ffffff;
  color: #273c20;
  border: 1px solid #ffffff;
}
.btn.btn-white:hover {
  background-color: #f8f8f8;
}
.btn.btn-white:active {
  background-color: #f0f0f0;
}
.btn.btn-outline {
  background-color: #273c20;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn.btn-outline:hover {
  background-color: #3d5d32;
  color: #fff;
}
.btn.btn-outline:active {
  background-color: #111b0e;
}
.btn.btn-outline-primary {
  border: 1px solid #273c20;
}

#myModal .modal-dialog {
  max-height: 566px;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 32px;
  border: 1px solid #273c20;
}
@media (min-width: 1200px) {
  .modal-content .modal-body {
    padding: 2rem;
  }
}
.modal-content .modal-body .modal-wrapper {
  display: flex;
  flex: 1;
  gap: 2.5rem;
}
.modal-content .modal-body .modal-wrapper img {
  width: 30%;
  height: 100%;
  aspect-ratio: auto;
  background-size: contain;
  display: none;
}
@media (min-width: 1200px) {
  .modal-content .modal-body .modal-wrapper img {
    display: block;
  }
}
.modal-content .modal-body .modal-wrapper .modal-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .modal-content .modal-body .modal-wrapper .modal-description {
    align-items: flex-start;
  }
}
.modal-content .modal-body .modal-wrapper .modal-description p span {
  text-transform: capitalize;
}
.modal-content .modal-body .modal-wrapper .modal-description a {
  color: #273c20;
}
.modal-content .modal-body .modal-wrapper .modal-description a.btn_wrapper {
  text-decoration: none;
  padding: 16px;
  background-color: #273c20;
  color: #ffffff;
  border-radius: 16px;
  margin: 16px 0;
}
.modal-content .modal-body .modal-wrapper .modal-description a.btn_wrapper:hover {
  text-decoration: none;
  background-color: #476e3b;
}

/* SIGN IN | SIGN UP*/
.auth-container {
  padding: 1rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .auth-container {
    width: 80%;
  }
}

.auth-hero {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url("/assets/images/webp/sign-up-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1440px) {
  .auth-hero {
    background-position: top center;
  }
}
.auth-hero.sign-in-hero {
  background-image: url("/assets/images/webp/hero-bg.webp");
}

.sign-in {
  color: #273c20;
}
.sign-in:hover {
  text-decoration: underline;
  color: #3d5d32;
}

.password-input-wrapper {
  position: relative;
}
.password-input-wrapper .form-control {
  padding-right: 3rem;
}
.password-input-wrapper .password-toggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.password-input-wrapper .password-toggle-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.password-input-wrapper .password-toggle-btn:focus {
  outline: none;
  color: #273c20;
}
.password-input-wrapper .password-toggle-btn i {
  font-size: 1.1rem;
  color: #273c20;
}

.sign-in-container {
  min-height: calc(100dvh - 80px);
}
@media (max-width: 1200px) {
  .sign-in-container {
    min-height: calc(100dvh - 106px);
  }
}

/* SIGN IN | SIGN UP*/
.apply {
  background-color: transparent;
  border: none;
  color: #273c20;
  transition: color 0.3s ease;
  font-size: 1rem;
  width: 100%;
}
.apply:hover {
  color: #3d5d32;
}

.sign-up-disclaimer {
  margin-top: 2rem;
  background-color: #f1f5e2;
  padding: 1rem;
  border-radius: 8px;
  color: #273c20;
}

.banner {
  width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .banner {
    height: 192px;
  }
}
.banner.cookie-bg {
  background-image: url("/assets/images/webp/cookie-policy.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner.terms-services-bg {
  background-image: url("/assets/images/webp/terms-of-services.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner.refund-bg {
  background-image: url("/assets/images/webp/refund-policy.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner.privacy-bg, .banner.faq-bg {
  background-image: url("/assets/images/webp/privacy-policy.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner.faq-bg {
  height: 300px !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-wrapper.hero {
  display: flex;
  min-height: calc(100dvh - 66px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Hero Animations - Fixed selectors */
}
@media (min-width: 1200px) {
  .main-wrapper.hero {
    min-height: calc(100dvh - 98px);
    background-position: center;
  }
}
.main-wrapper.hero::before {
  content: "";
  position: absolute;
  background-size: cover;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/webp/hero-bg.webp");
  background-position: 60% center;
}
@media (min-width: 1200px) {
  .main-wrapper.hero::before {
    background-position: center;
  }
}
.main-wrapper.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(39, 60, 32, 0.8) 0%, rgba(39, 60, 32, 0.4) 15%, rgba(39, 60, 32, 0) 35%);
  z-index: 0;
}
.main-wrapper.hero .hero-content {
  width: 100%;
  max-width: 657px;
}
.main-wrapper.hero h1 {
  font-size: 35px;
  color: #ffffff;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}
@media (min-width: 1024px) {
  .main-wrapper.hero h1 {
    font-size: 50px;
  }
}
.main-wrapper.hero p {
  font-size: 1rem;
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

#features.section-container {
  background-color: #dbe3cb;
}
#features.section-container .tag {
  background-color: #c6d6b0;
  padding: 8px 12px;
  border-radius: 100px;
}
#features.section-container .feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
#features.section-container .feature-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 600px;
}
#features.section-container .feature-card {
  background-color: #c6d6b0;
  padding: 32px 16px;
  border-radius: 24px;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
#features.section-container .feature-card p {
  margin: 0;
}

.card {
  background-color: #eaf1cd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  justify-content: space-between;
  height: 494px;
  position: relative;
}
.pricing-card.active {
  background-color: #273c20;
}
.pricing-card.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/assets/images/webp/pricing-bg.webp);
  transform: scaleX(-1);
  border-radius: 1rem;
  z-index: 0;
}
.pricing-card.active > * {
  position: relative;
  z-index: 1;
}

.pricing-card.active,
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.pricing-body {
  flex-grow: 1;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #273c20;
  text-align: center;
}
.pricing-card.active .pricing-name {
  color: #ffffff;
}

.pricing-price {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000000;
  text-align: center;
}
.pricing-card.active .pricing-price {
  color: #ffffff;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  color: #000000;
}
.pricing-card.active .pricing-features li {
  color: #ffffff;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a8c96a;
  font-weight: bold;
}
.pricing-card.active .pricing-features li::before {
  color: #ffffff;
}

.pricing-cta {
  margin-top: auto;
}
.pricing-card.active .pricing-cta small {
  color: #ffffff !important;
}

.contact-us-section {
  background-image: url(/assets/images/jpg/contact-us-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.contact-us-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
.contact-us-section > * {
  position: relative;
  z-index: 1;
}

.form-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 650px;
  width: 100%;
}

.form-control-underline {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  border-radius: 0;
  padding: 12px;
  font-size: 16px;
  color: #666;
  width: 100%;
}

.form-control-underline:focus-visible,
.form-control-underline:focus {
  outline: none;
}

.form-control,
.form-control:focus {
  background-color: #eef2e6;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
  color: #273c20;
}

.form-control-underline::-moz-placeholder, .form-control::-moz-placeholder {
  color: #273c20;
}

.form-control-underline::placeholder,
.form-control::placeholder {
  color: #273c20;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(180, 200, 150, 0.3);
  background-color: #e8eede;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.recaptcha-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

footer {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #273c20;
  color: #ffffff;
}
footer .cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
footer .cards-container img {
  max-width: 200px;
}
footer .cards-container p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  footer .cards-container {
    align-items: center;
    margin-bottom: 0;
  }
}
footer .footer-links {
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 992px) {
  footer .footer-links {
    text-align: left;
  }
}
footer .footer-links h6 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
footer .footer-links ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer .footer-links ul li {
  margin-bottom: 0.75rem;
}
footer .footer-links ul li:last-child {
  margin-bottom: 0;
}
footer .footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  text-transform: capitalize;
}
footer .footer-links ul li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
footer .footer-links ul li p {
  text-transform: capitalize;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
}
footer .footer-links ul li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  footer .footer-links {
    margin-bottom: 0;
  }
}
footer .border-top {
  border-top: 1px solid #ffffff;
  margin-top: 2rem;
}
footer .border-top p {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .col-md-3 {
    margin-bottom: 2rem;
  }
  footer .col-md-3:last-child {
    margin-bottom: 0;
  }
  footer .cards-container {
    margin-bottom: 2rem;
  }
}

/*  POLICY PAGE CSS START HERE */
.policy-content {
  position: relative;
  /* Custom to this site */
  background-color: #ffffff;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .policy-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.policy-content .terms-content {
  font-size: 16px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 400;
}
.policy-content .terms-content span {
  font-size: 16px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 400;
}
@media (max-width: 375px) {
  .policy-content .terms-content {
    font-size: 14px;
  }
}
.policy-content .terms-content h1,
.policy-content .terms-content h2 {
  color: #273c20;
  font-style: normal;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.3;
  margin: 0;
  padding: 50px 0 15px 0;
}
@media (max-width: 1199px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    padding: 40px 0 15px 0;
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    padding: 30px 0 10px 0;
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    font-size: 18px;
    padding: 20px 0 10px 0;
  }
}
.policy-content .terms-content h6 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: rgba(27, 37, 52, 0.65);
  line-height: 1.3;
}
.policy-content .terms-content b {
  font-size: 18px;
  line-height: 1.3;
  color: #273c20;
}
@media (max-width: 575px) {
  .policy-content .terms-content b {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .policy-content .terms-content b {
    font-size: 15px;
  }
}
.policy-content .terms-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #273c20;
  margin-bottom: 15px;
}
.policy-content .terms-content p.version {
  font-size: 14px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.policy-content .terms-content a {
  color: #a8c96a;
  transition: 0.3s all;
  font-weight: 500;
}
.policy-content .terms-content a:hover {
  color: #273c20;
  transition: 0.3s all;
}
.policy-content .print {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  right: 0;
  padding: 20px 14px;
  writing-mode: vertical-rl;
  color: #fff;
  background: #273c20;
  box-shadow: 0px 4px 60px rgba(30, 92, 255, 0.2);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  transform: rotate(-180deg);
  transition: 0.3s all;
  border-radius: 0px 12px 12px 0px;
  position: sticky;
  width: -moz-max-content;
  width: max-content;
  float: right;
  top: 140px;
  z-index: 2;
}
@media (max-width: 1399px) {
  .policy-content .print {
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  .policy-content .print {
    writing-mode: unset;
    transform: none;
    border-radius: 12px 0 0 12px;
    padding: 10px;
    font-size: 0;
    transition: 0.3s all;
  }
}
@media (max-width: 575px) {
  .policy-content .print {
    padding: 8px;
  }
}
.policy-content .print img {
  padding-top: 10px;
}
@media (max-width: 991px) {
  .policy-content .print img {
    padding: 0;
    transform: rotate(90deg);
  }
}

.mb-self h2 {
  margin-bottom: 10px;
}

/*  POLICY PAGE CSS END'S HERE */
.faq-accordion .accordion-item {
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  color: #273c20;
  font-weight: 500;
  font-size: 16px;
  padding: 20px 24px;
  background-color: #ffffff;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: #273c20;
  background-color: #ffffff;
  box-shadow: none;
}
.faq-accordion .accordion-button:hover {
  background-color: #fafafa;
}
.faq-accordion .accordion-button:focus {
  border-color: #cfcfcf;
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  color: #273c20;
  font-size: 20px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}
.faq-accordion .accordion-body {
  color: #595959;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 24px 20px 24px;
}
.faq-accordion .accordion-collapse {
  border: none;
}/*# sourceMappingURL=main.css.map */