:root {
  --baseFontSize: 16;
  --whitecolor: #ffffff;
  --blackcolor: #000000;
  --textcolor: #393e51;
  --linkcolor: #2655C8;
  --graybgcolor: #F2F2F2;
  --themefontfamily: "Roboto";
  --optima: "Optima";
  --dmserif: "DM Serif Display", serif;
  --opensans: "Open Sans", sans-serif;
}

/* Reset -------------------------------------------------- */
html {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
abbr,
acronym,
address,
article,
aside,
blockquote,
body,
caption,
code,
dd,
del,
dfn,
dialog,
div,
dl,
dt,
em,
fieldset,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
iframe,
img,
input,
label,
legend,
li,
nav,
object,
ol,
pre,
q,
section,
span,
ul {
  margin: 0;
  padding: 0;
  border: 0;
}

p {
  border: 0;
  padding: 0;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a img {
  border: none;
}

:focus {
  outline: 0;
}

a:focus {
  outline: none;
}

/* Global -------------------------------------------------- */
body {
  font-family: var(--optima);
  color: #393e51;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  background: #FBEBE0;
}

p {
  letter-spacing: 0.3px;
  padding: 0;
  margin: 0;
}

/* Global Css for headings, p and achors */
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

.w-100 {
  width: 100%;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

a {
  text-decoration: none !important;
  transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -ms-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}

a:hover,
a:focus {
  transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -ms-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}

.text-center {
  text-align: center !important;
}

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

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

ul,
ul li,
ul li ul,
ul li ul li,
ul ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.menu-open {
  overflow: hidden;
}

.img-fluid {
  display: block;
  max-width: 100%;
  height: auto;
}

.theme-bg {
  background: #FBEBE0;
}

.light-bg {
  background: #fdf4ee;
}

.dark-bg {
  background: #C1836A;
}

@font-face {
  font-family: "Optima";
  font-style: normal;
  font-weight: normal;
  src: local("Optima"), url("../fonts/Optima/OPTIMA.woff") format("woff");
}
@font-face {
  font-family: "Optima Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Optima Italic"), url("../fonts/Optima/Optima_Italic.woff") format("woff");
}
@font-face {
  font-family: "Optima Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Optima Medium"), url("../fonts/Optima/Optima Medium.woff") format("woff");
}
@font-face {
  font-family: "Optima Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Optima Bold"), url("../fonts/Optima/OPTIMA_B.woff") format("woff");
}
.overflow-hidden {
  overflow: hidden;
}

.container {
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.round-green-btn {
  color: var(--whitecolor);
  font-family: var(--opensans);
  font-size: 16px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
  letter-spacing: 2.2857144px;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  border: solid 1px #408a00;
  background: #408a00;
  padding: 0 20px;
  height: 45px;
  cursor: pointer;
  min-width: 210px;
  display: inline-block;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .round-green-btn {
    min-width: auto;
    font-size: 14px;
    padding: 0 30px;
  }
}
.round-green-btn:hover, .round-green-btn:focus {
  color: var(--whitecolor);
  border-color: #367202;
  background: #367202;
}

.theme-green-btn {
  color: #ffffff;
  font-family: var(--opensans);
  font-size: 15px;
  font-weight: 500;
  line-height: 38px;
  text-align: center;
  letter-spacing: 2.1px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border: solid 1px #408a00;
  background: #408a00;
  padding: 0 20px;
  height: 40px;
  cursor: pointer;
  min-width: 260px;
  display: inline-block;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .theme-green-btn {
    padding: 0 15px;
  }
}
.theme-green-btn:hover, .theme-green-btn:focus {
  color: #ffffff;
  border-color: #367202;
  background: #367202;
}

.black-theme-btn {
  color: #ffffff;
  border: solid 1px #393e51;
  padding: 0px 25px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  display: inline-block;
  text-align: center;
  background: #393e51;
  line-height: 42px;
  height: 45px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--opensans);
}
.black-theme-btn:hover, .black-theme-btn:focus {
  border-color: #1b1e2a;
  background: #1b1e2a;
}

footer {
  background: #fffbf9;
}
footer .copyright {
  padding: 20px 0;
}
footer .copyright figure {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
footer .copyright p {
  color: #393e51;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 3px;
  letter-spacing: 0.2857143px;
  display: inline-block;
  vertical-align: middle;
  font-family: var(--opensans);
}

.heading-block h2 {
  color: #393e51;
  font-family: var(--dmserif);
  font-size: 40px;
  font-weight: 400;
  line-height: 51px;
}
@media (max-width: 992px) {
  .heading-block h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .heading-block h2 {
    font-size: 26px;
    line-height: 29px;
  }
}
.heading-block h3 {
  color: #393e51;
  font-family: var(--dmserif);
  font-size: 35px;
  font-weight: 400;
  line-height: 25px;
  margin: 0 0 20px;
}
.heading-block h4 {
  color: #393e51;
  font-family: var(--dmserif);
  font-size: 37px;
  font-weight: 400;
  line-height: 46px;
  margin: 0 0 25px;
}
@media (max-width: 768px) {
  .heading-block h4 {
    font-size: 26px;
    line-height: 29px;
    margin: 0 0 15px;
  }
}
.heading-block p {
  color: #393e51;
  font-family: var(--optima);
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .heading-block p {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.07819543px;
  }
}

.main-landing-banner {
  position: relative;
  padding: 20px 0 60px;
}
@media (max-width: 768px) {
  .main-landing-banner {
    padding: 60px 0 40px;
  }
}
.main-landing-banner .landing-banner-content {
  text-align: center;
  max-width: 860px;
  margin: auto;
}
.main-landing-banner .landing-banner-content h3 {
  color: #393e51;
  font-family: var(--optima);
  font-size: 26px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.68421054px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .main-landing-banner .landing-banner-content h3 {
    font-size: 18px;
    line-height: 30px;
    padding: 0 25px;
  }
}
.main-landing-banner .landing-banner-content h1 {
  color: #393e51;
  font-family: var(--dmserif);
  font-size: 40px;
  font-weight: 400;
  line-height: 51px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .main-landing-banner .landing-banner-content h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .main-landing-banner .landing-banner-content h1 {
    font-size: 26px;
    line-height: 29px;
  }
}
.main-landing-banner .landing-banner-content p {
  color: #393e51;
  font-family: var(--optima);
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .main-landing-banner .landing-banner-content p {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.07819543px;
  }
}

.landing-top-header {
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  .landing-top-header {
    margin-top: 15px;
  }
}
.landing-top-header a img {
  margin: auto;
}
@media (max-width: 768px) {
  .landing-top-header a img {
    height: 45px;
  }
}

.countdown-timer {
  margin-bottom: 5px;
}
.countdown-timer .countdown-inner .timer-box {
  width: 54px;
  height: 53px;
  border-radius: 6px;
  background: #b86a4f;
  display: inline-block;
  color: #ffffff;
  font-family: var(--opensans);
  font-size: 19px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.6785714px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.countdown-timer .countdown-inner .timer-box span {
  color: #ffffff;
  font-family: var(--opensans);
  font-size: 10px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.35714287px;
  display: block;
}
.section-space-30 {
  padding: 30px 0;
}

.bg1 {
  background: #FFFBF9;
}

.bg2 {
  background: #fbebe0;
}

.dark-bg {
  background: #ffeee1;
}

.limited-time-badge {
  text-align: center;
  margin-bottom: 10px;
}
.limited-time-badge .badge-information {
  display: block;
  position: relative;
}
.limited-time-badge .badge-information img {
  margin: auto;
}
.limited-time-badge .badge-information span {
  color: #ffffff;
  font-family: var(--opensans);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.142857px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
}
.limited-time-badge h4 {
  color: var(--blackcolor);
  font-family: var(--opensans);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.142857px;
}

.responsive-video {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button-bottom {
  margin-top: 25px;
}

.features-wrapper {
  padding: 25px 0;
}

.features-list {
  margin: 30px 0 0;
}
.features-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 -20px;
}
@media (max-width: 1366px) {
  .features-list ul {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .features-list ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.features-list ul li {
  max-width: 25%;
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
  padding: 0 20px;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .features-list ul li {
    max-width: 50%;
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
  }
}
@media (max-width: 625px) {
  .features-list ul li {
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-bottom: 40px;
  }
}

.feature-item .feature-item-inner {
  text-align: center;
}
.feature-item .feature-item-inner img {
  margin: 0 auto 20px;
}
.feature-item .feature-item-inner h3 {
  color: #393e51;
  font-family: var(--dmserif);
  font-size: 24px;
  font-weight: 400;
  line-height: 57px;
}
@media (max-width: 1024px) {
  .feature-item .feature-item-inner h3 {
    line-height: 36px;
  }
}
.feature-item .feature-item-inner p {
  color: #6b6d76;
  font-family: var(--opensans);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
}
.faq-listing {

}
@media (max-width: 768px) {
  .faq-listing {

  }
}
.faq-listing ul li {
  padding: 15px 0;
}

.landing-faq-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.landing-faq-item .landing-faq-counter {
  max-width: 40px;
  -webkit-box-flex: 40px;
      -ms-flex: 40px;
          flex: 40px;
}
.landing-faq-item .landing-faq-counter span {
  width: 40px;
  height: 40px;
  background: #b86a4f;
  display: inline-block;
  border-radius: 50%;
  color: #ffffff;
  font-family: var(--opensans);
  font-size: 19px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.6785714px;
}
.landing-faq-item .landing-faq-content {
  max-width: calc(100% - 40px);
  -webkit-box-flex: calc(100% - 40px);
      -ms-flex: calc(100% - 40px);
          flex: calc(100% - 40px);
  padding-left: 20px;
}
.landing-faq-item .landing-faq-content h4 {
  color: #393e51;
  font-family: var(--opensans);
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.78571427px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .landing-faq-item .landing-faq-content h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
.landing-faq-item .landing-faq-content p {
  color: #5d5e65;
  font-family: var(--opensans);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.5714286px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .landing-faq-item .landing-faq-content p {
    font-size: 15px;
    line-height: 22px;
  }
}

.faq-wrapper {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .faq-wrapper {
    padding: 30px 0;
  }
}

.m-0 {
  margin: 0 !important;
}

.faq-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.faq-row .faq-image {
  max-width: 460px;
  -webkit-box-flex: 460px;
      -ms-flex: 460px;
          flex: 460px;
}
@media (max-width: 768px) {
  .faq-row .faq-image {
    display: none;
  }
}
.faq-row .faq-steps {
  max-width: calc(100% - 460px);
  -webkit-box-flex: calc(100% - 460px);
      -ms-flex: calc(100% - 460px);
          flex: calc(100% - 460px);
  padding-left: 30px;
}
@media (max-width: 768px) {
  .faq-row .faq-steps {
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding-left: 0;
  }
}

.trail-wrapper {
  padding: 50px 0 25px;
}
@media (max-width: 768px) {
  .trail-wrapper {
    padding: 30px 0;
  }
}
.trail-wrapper .heading-block {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-image {
    margin-bottom: 20px;
  }
}

.about-wrapper {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .about-wrapper {
    padding: 30px 0;
  }
}
.about-wrapper .heading-block {
  max-width: 670px;
  margin: auto;
  text-align: center;
}
.about-wrapper .heading-block h2 {
  margin-bottom: 15px;
}

.about-content {
  max-width: 1100px;
  margin: 20px auto;
}
@media (max-width: 992px) {
  .about-content {
    max-width: 500px;
  }
}

.about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 10px 0;
}
.about-item p {
  color: #5d5e65;
  font-family: var(--opensans);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.64285713px;
  padding-left: 10px;
}

.row-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
@media (max-width: 768px) {
  .row-wrapper {
    margin: 0;
  }
}
.row-wrapper .half-grid {
  max-width: 50%;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .row-wrapper .half-grid {
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .image-frame img {
    margin: 0 auto 20px;
  }
}

.chart-features {
  padding: 40px 0 60px;
}

.chart-features-inner {
  max-width: 1180px;
  margin: auto;
}
.chart-features-inner .content-block {
  max-width: 520px;
  margin: auto;
}

.content-block {
  text-align: center;
}
.content-block h2 {
  color: #393e51;
  font-family: var(--dmserif);
  font-size: 35px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .content-block h2 {
    font-size: 26px;
    line-height: 29px;
  }
}
.content-block p {
  color: #393e51;
  font-family: var(--opensans);
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.5714286px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .content-block p {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.07819543px;
  }
}
@media (max-width: 768px) {
  .content-block a {
    display: none;
  }
}

.aligncenter-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.aligncenter-content .stars-image {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 768px) {
  .aligncenter-content .stars-image {
    position: static;
    margin: 15px auto;
  }
}
.aligncenter-content .stars-image.left {
  left: 0;
  right: inherit;
}

.chartcontent-item {
  margin-bottom: 20px;
}

.chart-features-wrapper {
  padding: 35px 0 50px;
}
.chart-features-wrapper .heading-block {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .chart-features-wrapper .heading-block {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .chart-features-wrapper .heading-block {
    margin-bottom: 20px;
  }
}

.mobile-cta-buttons {
  display: none;
  background: #ffffff;
  padding: 10px 6px;
  text-align: center;
  margin-bottom: 0;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
}
@media (max-width: 768px) {
  .mobile-cta-buttons {
    display: block;
  }
}

@media (max-width: 768px) {
  .reverse-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .reverse-order .order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .reverse-order .order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .content-sections {
    padding: 30px 0;
  }
}