/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --color-black: 0, 0, 0;
  --color-gray: 107, 107, 107;
  --color-dark: 15, 15, 16;
  --color-main-green: 32, 165, 67;
  --color-blue: 0, 151, 218;
  --color-purple: 99, 58, 199;
  --color-orange: 229, 147, 69;
  --color-green: 79, 181, 74;

  --success: #3fbd63c4;
  --success-md: #3fbd637c;
  --success-l: #3fbd632d;
  --info: #0069dec4;
  --info-md: #0069de7c;
  --info-l: #0069de2d;

  --warning: #ef9400c4;
  --warning-md: #ef94007c;
  --warning-l: #ef94002d;

  --danger: #ea4e2cc4;
  --danger-md: #ea4e2c7c;
  --danger-l: #ea4e2c2d;
}

html {
  color: rgb(var(--color-default));
  font-size: 16px;
  line-height: 1.4;
}

::-moz-selection {
  background: #E0FFE8;
  text-shadow: none;
}

::selection {
  background: #E0FFE8;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #a8a8a8;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-main-green));
  text-decoration: none;
  transition: all 100ms ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #3C5944;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: 'Mulish', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #fff;
  color: rgb(var(--color-default));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */
h1 {
  font-weight: 900;
  font-size: 56px;
  line-height: 70px;
}

h2 {
  font-weight: 900;
  font-size: 40px;
  line-height: 64px;
}

h3 {
  font-size: 32px;
  line-height: 32px;
}

h6 {
  font-weight: 900;
  font-size: 24px;
  line-height: 36px;
}

.text-base {
  font-size: 16px;
  line-height: 28px;
}

.text-md {
  font-size: 18px;
  line-height: 24px;
}

.text-sm {
  font-size: 14px;
  line-height: 28px;
}

.text-xs {
  font-size: 12px;
  line-height: 18px;
}

.text-xxs {
  font-size: 10px;
  line-height: 14px;
}

.text-lg {
  font-size: 20px;
  line-height: 30px;
}

.text-xl {
  font-size: 22px;
  line-height: 30px;
}

/* ========== Colors ========== */

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

.color-gray {
  color: rgb(var(--color-gray));
}

.color-main-green {
  color: rgb(var(--color-main-green));
}

.color-blue {
  color: rgb(var(--color-blue));
}

.color-orange {
  color: rgb(var(--color-orange));
}

.color-purple {
  color: rgb(var(--color-purple));
}

.color-green {
  color: rgb(var(--color-green));
}

/* ========== Button ========== */

.btn {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 6px;
  border: 0;
}

.btn:focus,
.btn:hover {
  outline: 0;
  box-shadow: none;
  border: transparent;
}

.btn-primary {
  background-color: #20A543;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0B7C29;
  box-shadow: none;
}

.btn-primary:active,
.btn-primary:active:focus {
  background-color: #0B7C29 !important;
  box-shadow: none;
}



/* ========== Content ========== */
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  padding: 20px 0;
  width: 100%;
}

.hero {
  padding-top: 150px;
  padding-bottom: 80px;
}

.feature {
  padding: 70px 0;
  background: linear-gradient(286.71deg, #E9F6EC -35.06%, #FFFFFF 85.55%);
}

.icon-white {
  width: 70px;
  height: 70px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 54px 10px rgba(32, 165, 67, 0.05);
  border-radius: 50px;
}

.download {
  padding-top: 80px;
}

.how-it-works {
  padding: 80px 0;
}

.pe-6 {
  padding-right: 35px;
}

.apps-link {
  border: 0.5px solid #FFFFFF;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  display: inline-block;
  overflow: hidden;
}

.accordion-item {
  border: 1px solid #DFECE2 !important;
  border-radius: 6px !important;
}

.accordion-button {
  padding: 12px 16px;
  border-radius: 6px !important;
}

.accordion-button:not(.collapsed) {
  color: rgb(var(--color-main-green));
  background-color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #DFECE2;
  outline: 0;
  box-shadow: none;
}

.testimonials {
  padding: 80px 0;
  background: linear-gradient(181.94deg, #E9F6EC -16.03%, #FFFFFF 44.92%);
}

.grid-testimonial {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.box-testi {
  background: #FFFFFF;
  border: 1px solid #F1F1F1;
  border-radius: 14px;
  padding: 30px;
  position: relative;
}

.image-testi {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0px 4px 54px 10px rgba(54, 79, 90, 0.1);
  border: 5px solid #fff;
  z-index: 1;
}

.blue-circle::after,
.purple-circle::after,
.orange-circle::after,
.green-circle::after {
  content: '';
  width: 160px;
  height: 160px;
  opacity: 0.04;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  top: 25px;
}

.blue-circle::after {
  background: linear-gradient(180deg, #0097DA 0%, rgba(0, 151, 218, 0) 100%);
}

.orange-circle::after {
  background: linear-gradient(180deg, #E59345 0%, rgba(229, 147, 69, 0.4) 100%);
}

.purple-circle::after {
  background: linear-gradient(180deg, #633AC7 0%, rgba(0, 151, 218, 0) 100%);
}

.green-circle::after {
  background: linear-gradient(180deg, #4FB54A 0%, rgba(0, 151, 218, 0) 100%);
}

.faq {
  padding: 70px 0;
}

.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "\e900";
  background-image: none;
  font-family: 'icomoon';
  color: rgb(var(--color-main-green));
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  margin-right: 3px;
  transform: var(--bs-accordion-btn-icon-transform);
}

.footer {
  background-image: url('../img/footer-bg.jpg');
  background-position: center center;
  background-size: cover;
}

.footer-top {
  padding: 50px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social {
  display: flex;
  list-style: none;
  padding-left: 0;
}

.social li {
  margin-right: 15px;
}

.social li a {
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 20px;
  transition: all 150ms ease-in-out;
}

.social li a:hover {
  color: #20A543;
  border: 1px solid #fff;
  background-color: #fff;
}

.static {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.static li::after {
  content: '|';
  display: inline-block;
  margin: 0 15px;
  color: #fff;
}

.static li:last-child::after {
  display: none;
}

.static li a {
  color: #fff;
  font-size: 14px;
}

.static li a:hover {
  color: #ececec;
}

.nav-tabs .nav-link {
  margin-bottom: 0;
  background: 0 0;
  border-bottom: 2px solid #DFECE2;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  font-size: 18px;
  color: #CBD8CE;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #20A543;
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: #20A543;
}

.tabs__pane {
  display: none;
  padding: 2rem 1.25rem;
  text-align: center;
}

.tabs__pane.is-visible {
  display: block;
}

.box-form {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 5px;
  position: relative;
}

.form-control {
  border: 1px solid transparent;
  font-size: 12px;
  color: #6B6B6B;
  padding: 14px;
}

.form-control:focus {
  border: 1px solid transparent;
  box-shadow: none;
}

.--form-control {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.--floating-label {
  position: absolute;
  top: 0.5em;
  right: 9em;
  color: grey;
  font-size: 16px;
  font-weight: bold;
  transition: 0.5s ease all;
}

.--form-control:focus {
  border: 1px solid #2C9621;
}

.--form-control:focus~.--floating-label,
.--form-control:not(:focus):valid~.--floating-label {
  top: .75em;
  right: 1em;
}

.btn-email {
  background: #000000;
  border-radius: 4px;
  color: #fff;
  position: absolute;
  right: 6px;
  top: 7px;
}

.btn-email:hover {
  color: #fff;
  background: #1e1e1e;
}

.share {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  justify-content: center;
  padding-left: 0;
}

.share li {
  margin: 0 7px;
}

.share li a {
  display: flex;
  color: #20A543;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #20A543;
  font-size: 20px;
  transition: all 150ms ease-in-out;
}

.share li a:hover {
  color: #fff;
  border: 1px solid #20A543;
  background-color: #20A543;
}

.floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
}

.qcw-trigger-btn {
  display: none !important;
}

.btn-floating {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5DD87D 0%, #0C8A2D 100%);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.18);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  transition: all 200ms ease-in-out;
}

.--floating-orange {
  background: linear-gradient(135deg, #F8924F 0%, #F36F56 100%) !important;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.18);
}

.btn-floating:hover {
  background: linear-gradient(135deg, #5DD87D 100%, #0C8A2D 0%);
  color: #fff;
}

.hero-inner {
  background: linear-gradient(93.58deg, #20A543 0%, #0C8A2D 100%);
  color: #fff;
  padding: 100px 0;
  margin-top: 88px;
}

.content {
  padding: 80px 0;
}

.content ol {
  padding-left: 15px;
}

.content li {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 15px;
}



/* ========== Popup ========== */
.overlay {
  background-color: rgba(0, 0, 0, 0.35);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 321;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: all 100ms ease-in-out;
}

.overlay.show {
  visibility: visible;
  opacity: 1;
}

.inner-popup {
  max-width: 375px;
  position: relative;
  z-index: 322;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-hidden {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cursor-pointer {
  cursor: pointer;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-900 {
  font-weight: 900;
}

.text-extraBold {
  font-weight: 800;
}

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

.text-semiBold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-italic {
  font-style: italic;
}

.ls-1 {
  letter-spacing: 1px;
}

.transition-all {
  transition: all 100ms ease-in-out;
}

.no-border {
  border: 0;
}

.mw-0 {
  min-width: 0;
}

.mh-1 {
  min-height: 180px;
}

.rounded-2 {
  border-radius: 2px;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-10 {
  border-radius: 10px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-20 {
  border-radius: 20px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-50 {
  border-radius: 50px;
}

.p-16 {
  padding: 16px;
}

.p-24 {
  padding: 24px;
}

.border-dash {
  border-style: dashed;
}

.mh-0 {
  min-height: 0;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */

@media (min-width: 1280px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1170px;
  }
}

@media (max-width: 1024px) {

  #hide-t,
  #hide-top {
    display: none;
  }

  h1 {
    font-size: 48px;
    line-height: 60px;
  }

  h2 {
    font-size: 35px;
    line-height: 42px;
  }

}

@media (max-width: 991px) {
  #hide-tm {
    display: none;
  }

  h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .text-sm {
    font-size: 14px;
    line-height: 20px;
  }

  .nav-tabs .nav-link {
    font-size: 14px;
  }

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

@media (max-width: 767px) {

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-right: 15px;
    padding-left: 15px;
  }

  #hide-m {
    display: none !important;
  }

  h1 {
    font-size: 32px;
    line-height: 36px;
  }

  h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .nav-link {
    padding: 10px;
  }

  .box-testi {
    padding: 10px;
  }

  .grid-testimonial {
    gap: 10px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }

}


@media (min-width: 1025px) {
  #hide-d {
    display: none;
  }
}

@media (min-width: 768px) {}

@media (max-width: 992px) and (orientation: landscape) {


  @media (min-width: 576px) {

    .container,
    .container-sm {
      max-width: 720px;
    }
  }
}



/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

#toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.5s;
}

.--notification {
  background-color: #fff;
  padding: 15px;
  width: 450px;
  border-radius: 20px;
  box-shadow: 0 2px 5px #00000033;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  transition: opacity 2s;
}
.--notification span {
  font-size: 14px;
  color: #5d6672 !important;
  line-height: 1.6;
  white-space: break-spaces;
}
.--notification.--notification-success {
  border: 1px solid var(--success-md);
  background-color: var(--success-l);
}

/*******/
.--notification.--notification-info {
  border: 1px solid var(--info-md);
  background-color: var(--info-l);
}
/*******/
.--notification.--notification-warning {
  border: 1px solid var(--warning-md);
  background-color: var(--warning-l);
}
/********/
.--notification.--notification-danger {
  border: 1px solid var(--danger-md);
  background-color: var(--danger-l);
}

.fade-enter-active, .fade-leave-active {
  transition: opacity .5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}
