@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@300;400;500;600&display=swap");

:root {
  --primary: #f9ce21;
  --secondary: #ffbf00;
  --primary-invert: #fff;
  --secondary-invert: #fff;

  --gradient-primary: linear-gradient(230deg, #f9ce21, #f9ce21);
  --gradient-secondary: linear-gradient(230deg, #ffbf00, #ffbf00);

  /* DEFAULT COLOR OF TEXTS */
  --text-primary: #0a1f44;

  /* FOR BUTTONS & INPUTS */
  --elements-roundness: 24px;

  --space-between-blocks: 5.3rem;
  /* for mobiles */
  --space-between-blocks-small-screens: 3rem;
  --blur-value: 10px;
}

/* Testing Area */

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

.testingsection_left {
  padding-bottom: 45px;
}

.features_input_label {
  margin-bottom: 4px;
}

/* a {
  text-decoration: underline !important;
} */

.features_input {
  display: flex;
  flex-direction: column;
  width: 90vw;
  max-width: 400px;
  font-size: 18px;
  justify-content: space-between;
  margin: 10px 0px;
}

@media only screen and (min-width: 800px) {
  .testingsection_right {
    width: 50vw;
    display: block;
  }

  .testingsection_left {
    width: 50vw;
    padding-right: 45px;
  }
}

/* ----------------------------------- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Overpass", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-display: swap;
  color: var(--text-primary);
}

a {
  color: #111;
  text-decoration: none;
}

a:hover {
  color: #111;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Overpass", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-display: swap;
}

.qna > h2 {
  font-size: 1.2em;
  margin: 24px 0px !important;
  line-height: 42px;
}

.space-between-blocks {
  padding-top: var(--space-between-blocks-small-screens);
  padding-bottom: var(--space-between-blocks-small-screens);
}

@media (min-width: 992px) {
  .space-between-blocks {
    padding-top: var(--space-between-blocks);
    padding-bottom: var(--space-between-blocks);
  }
}

/* Buttons */

button {
  color: inherit;
  padding: 0;
  background: none;
  border: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.btn {
  font-size: 0.87rem;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: var(--elements-roundness);
  transition: 0.2s all;
}

@media (min-width: 992px) {
  .btn {
    padding: 0.8rem 2rem;
  }
}

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

/* .btn:hover,
.btn:focus {
  transform: scale(1.05);
} */

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
  background-color: #f9ce21;
  color: rgba(17, 17, 17, 0.719);
  /* box-shadow: 8px 8px 0 var(--primary); */
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.719);
  font-weight: 700;
}
.btn-secondary {
  background-color: transparent;
  color: #111;
  border: 1px solid #111;
}

.btn-primary--empty,
.btn-primary--empty:hover,
.btn-primary--empty:focus {
  color: var(--primary);
}

.btn-sm {
  padding: 0.8rem;
}

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

/* block header */

.block__header {
  margin-bottom: 4rem;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

@media (min-width: 992px) {
  .block__title {
    font-size: 2.5rem;
  }

  .block__title--big {
    font-size: 3rem;
    line-height: 1.1;
  }
}

@media (min-width: 1200px) {
  .block__title--big {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
}

@media (min-width: 992px) {
  .block__paragraph--big {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

/* Icons */

.fr-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
  transition: 0.5s;
}

.fr-icon--medium {
  font-size: 1.5rem;
  height: 3rem;
  width: 3rem;
}

.fr-icon--large {
  font-size: 1.2rem;
  height: 3.25rem;
  width: 3.25rem;
}

@media (min-width: 992px) {
  .fr-icon--large {
    height: 3.8rem;
    width: 3.8rem;
    font-size: 1.9rem;
  }
}

/* Put your blocks here */

/*------------------------------*/
/*--Header----------------*/
/*------------------------------*/

.demo-videoDiv {
  height: fit-content;
  left: 10vw;
  width: 100%;
  max-width: 80vw;
  background-color: white;
  box-shadow: 0 0 30px 0px rgb(0 0 0 / 10%);
  margin-top: -120px;
}
.hero {
  --hero-nav-height: 100px;
  --dropdown-background: white;
  --dropdown-text-color: var(--text-primary);
  --block-background: #fff5e5;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-nav {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--hero-nav-height);
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-nav__item {
  margin: auto;
  font-size: 1.1rem;
}

@media (min-width: 992px) {
  .hero-nav__item {
    margin: 0 1rem;
  }
}

@media (min-width: 992px) {
  .nav--lg-side {
    flex-direction: row-reverse;
  }
}

.hero-nav__logo {
  height: 35px;
}

.hero-nav__link {
  color: inherit;
  opacity: 0.9;
}

.hero-nav__link:focus,
.hero-nav__link:hover {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}

.ft-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (print), (prefers-reduced-motion: reduce) {
  .ft-menu {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

.ft-menu .hero-nav__item {
  width: 100%;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
  .ft-menu .hero-nav__item {
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.ft-menu--js-show {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.ft-menu::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--primary);
  opacity: 0.9;
  z-index: -1;
}

@media (min-width: 992px) {
  .ft-menu {
    -webkit-animation-name: none;
    animation-name: none;
    position: static;
    z-index: auto;
  }

  .ft-menu::before {
    content: none;
  }
}

.ft-menu__slider {
  color: var(--dropdown-text-color);
  background: var(--dropdown-background);
  width: 80%;
  height: 100%;
  overflow: hidden;
  transform: translateX(-100%);
  transition: 0.5s transform;
}

@media (min-width: 992px) {
  .ft-menu__slider {
    --block-background: transparent;
    color: var(--block-text-color);
    width: auto;
    height: auto;
    background: 0 0;
    transform: none;
    display: flex;
    align-items: center;
  }
}

.ft-menu--js-show .ft-menu__slider {
  transform: translateX(0);
}

.ft-menu__close-btn {
  color: var(--primary-invert);
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2rem;
  margin: 1rem;
  transform: translateX(100%);
  transition: 0.5s transform;
}

@media (min-width: 992px) {
  .ft-menu__close-btn {
    display: none;
  }
}

.ft-menu--js-show .ft-menu__close-btn {
  transform: translateX(0);
}

.ft-menu__close-btn:focus,
.ft-menu__close-btn:hover {
  color: var(--primary-invert);
}

@-webkit-keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }

  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }

  to {
    visibility: hidden;
    opacity: 0;
  }
}

.fixed-nav-container {
  height: var(--hero-nav-height);
}

.hero-nav--is-sticky {
  color: var(--dropdown-text-color);
  background: var(--dropdown-background);
  position: fixed !important;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem !important;
  height: 60px;
  transition: 0.2s height;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@media (min-width: 992px) {
  .hero-nav--is-sticky {
    height: 80px;
    /* border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; */
    padding: 1rem 0.5rem !important;
  }
}

.hero-nav--is-sticky .ft-menu__slider {
  color: var(--dropdown-text-color);
}

.hero-nav--is-sticky .btn {
  background: var(--gradient-primary);
  color: var(--primary-invert);
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.ft-menu__slider .hero-nav__item {
  font-size: 1.1rem;
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .ft-menu__slider .hero-nav__item {
    padding: 0;
  }
}

.hero-nav__link {
  display: flex;
  align-items: center;
  outline: 0 !important;
}

.ft-menu__slider {
  overflow-x: hidden;
  overflow-y: auto;
}

@media (min-width: 992px) {
  .ft-menu__slider {
    overflow: visible;
  }
}

.hero-nav__item--with-dropdown {
  position: relative;
  cursor: pointer;
}

@media (min-width: 992px) {
  .hero-nav__item--with-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 176%;
  }
}

.hero-nav__dropdown {
  position: static;
  width: 100%;
  height: auto;
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all;
  color: var(--dropdown-text-color);
  text-align: initial;
  cursor: auto;
}

@media (min-width: 992px) {
  .hero-nav__dropdown {
    position: absolute;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
    background: var(--dropdown-background);
    z-index: 2;
    max-height: 0;
    padding: 2.3rem 3rem 2rem 2rem;
    overflow: visible;
    transition: 0.3s all;
  }
}

.dropdown--important {
  position: absolute;
  width: auto !important;
  top: 176%;
  left: 0;
  margin-top: 0;
  border-radius: 10px;
  border-top: none;
  box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
  background: var(--dropdown-background);
  z-index: 2;
  max-height: 0;
  padding: 2rem;
  padding-right: 3rem;
  overflow: visible;
  transition: 0.3s all;
}

@media (min-width: 992px) {
  .dropdown--of-1-columns {
    width: 400px;
  }

  .dropdown--of-2-columns {
    width: 700px;
  }

  .dropdown--language-selector {
    width: 250px;
  }
}

.hero-nav__item--show-dropdown .hero-nav__dropdown {
  margin-top: 1rem;
  visibility: visible;
  opacity: 1;
  max-height: 9999px;
  padding-top: 1rem;
}

@media (min-width: 992px) {
  .hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 0;
    padding: 2.3rem 3rem 2rem 2rem;
  }
}

.hero-nav__item-chevron {
  transition: 0.3s all;
}

.hero-nav__item--show-dropdown .hero-nav__item-chevron {
  transform: rotate(180deg);
}

.hero-nav__item--dropdown-left .hero-nav__dropdown {
  transform: translateX(-15px) !important;
}

.hero-nav__item--dropdown-left .hero-nav__dropdown::before {
  left: 15%;
  right: auto;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown {
  transform: translateX(15px) !important;
  left: auto;
  right: 0;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown::before {
  left: auto;
  right: 15%;
}

@media (min-width: 992px) {
  .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
    transform: translateX(-15px) !important;
    left: 0;
    right: auto;
  }

  .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
    left: 15%;
    right: auto;
  }

  .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0;
  }

  .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
    left: auto;
    right: 15%;
  }
}

.dropdown--important::before {
  content: "";
  width: 17.1px;
  height: 6.85px;
  background: var(--dropdown-background);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  margin: auto;
}

@media (min-width: 992px) {
  .hero-nav__dropdown::before {
    content: "";
    width: 17.1px;
    height: 6.85px;
    background: var(--dropdown-background);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.dropdown__title {
  color: var(--dropdown-text-color);
  opacity: 0.7;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 1.18rem;
}

.dropdown__link {
  display: flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  margin-bottom: 1.3rem;
  color: inherit;
  text-decoration: none;
}

.dropdown__link:focus,
.dropdown__link:hover {
  color: inherit;
  text-decoration: none;
}

[javascript-language-selector] .dropdown__link {
  border-radius: 0.5rem;
  padding: 0.7rem;
  margin-bottom: 3px;
}

.dropdown__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dropdown__link:last-child {
  margin: 0;
}

[javascript-language-selector] .dropdown__link--selected,
[javascript-language-selector] .dropdown__link:focus,
[javascript-language-selector] .dropdown__link:hover {
  background: rgba(0, 0, 0, 0.06);
}

.dropdown__icon {
  width: 35px;
  height: 35px;
  background-image: var(--gradient-primary);
  color: var(--primary-invert);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  font-size: 13px;
}

@media (min-width: 992px) {
  .dropdown__icon {
    width: 40px;
    height: 40px;
  }
}

.dropdown__item {
  max-width: 250px;
}

.dropdown__item-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  z-index: -1;
}

@media (min-width: 992px) {
  .dropdown__item-title {
    white-space: nowrap;
  }
}

.dropdown__item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  width: 100%;
  background: var(--secondary);
  transform: translateY(2px);
  opacity: 0;
  transition: 0.2s;
}

[javascript-language-selector] .dropdown__item-title {
  white-space: nowrap;
}

[javascript-language-selector] .dropdown__item-title::before {
  display: none;
}

.dropdown__link:focus .dropdown__item-title::before,
.dropdown__link:hover .dropdown__item-title::before {
  height: 30%;
  transform: translateY(0);
  opacity: 0.4;
}

.dropdown__item-description {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.3rem;
  margin-bottom: 0;
}

.dropdown__item-description,
.dropdown__item-title {
  width: 95%;
}

.hero__row {
  height: 100%;
}

.hero_empty-column {
  height: 100%;
}

.hero__image-column {
  height: 100%;
  background-position: center;
  background-size: cover;
}

.hero__content {
  text-align: initial;
}

.hero__body {
  padding-top: 2rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero__body {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.hero__title {
  font-size: 1.8rem;
  font-weight: 700;
}

.hero__paragraph {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.98;
  color: #424242;
}

@media (min-width: 576px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.17;
  }

  .hero__paragraph {
    width: 80%;
    margin: auto;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.17;
  }

  .hero__paragraph {
    font-size: 1.2rem;
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 3.5rem;
    line-height: 1.17;
  }
}

.hero__btns-container {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__btns-container .btn {
  transform: scale(1.15);
  border-radius: 10px;
}

.pattern {
  position: absolute;
  height: 68%;
  width: 12%;
}

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

.pattern--left-bottom {
  bottom: 0;
  left: 0;
}

.pattern--right {
  width: 206px;
  right: 0px;
  bottom: -67px;
  margin: auto;
}

/* Testimonial for demo video */

.testimonial.center {
  background: #f7f7f7;
  max-width: 800px;
  margin: 5% auto 10%;
  padding: 24px;
}

blockquote {
  color: #111;
  font-size: 28px;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
  margin: 30px;
  position: relative;
}

.testimonial.center blockquote p {
  font-family: "Overpass", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: rgba(17, 17, 17, 0.808);
}

.testimonial.center blockquote footer {
  display: flex;
  justify-content: center;
  align-self: center;
  text-align: center;
}
blockquote footer {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.avatar {
  float: left;
  position: relative;
  width: 46px;
  height: 46px;
}
blockquote footer img {
  border-radius: 50%;
  margin-right: 20px;
}

/*------------------------------*/
/*--Start Using----------------*/
/*------------------------------*/
.block-9 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
}

.card-3 {
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  .card-3 {
    margin: 1rem;
  }
}

.card-3__img-container {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  border: 2px solid #ececec;
  background-color: #fff7f2;
}

.card-3__img {
  max-width: 100%;
  max-height: 200px;
  position: relative;
  z-index: 1;
}

.card-3__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.card-3__paragraph {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.7;
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-31 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .block-31__row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 100%;
  }
}

.block-31__image-column {
  background-position: center;
  background-size: cover;
  height: 320px;
}

@media (min-width: 992px) {
  .block-31__image-column {
    height: fit-content;
    margin: 0 !important;
  }
}

.block-31__li {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.block-31__li:last-child {
  margin-bottom: 0;
}

.block-31__li-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
}

.block-31__li-paragraph {
  font-weight: 300;
}

.testimonial-card-1 {
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid #ececec;
}

.testimonial-card-1__paragraph {
  flex-grow: 1;
  font-size: 1.01rem;
  opacity: 0.9;
  line-height: 1.7;
  padding-bottom: 1.5rem;
}

.testimonial-card-1__quote-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  color: var(--primary-invert);
  font-size: 1.3rem;
  border-radius: 10rem;
  position: absolute;
  top: -25px;
  left: 30px;
}

.block-61-person {
  display: flex;
  align-items: center;
  margin-top: -1rem;
}

.block-61-person__avatar {
  width: 56px;
  height: 56px;
  border-radius: 10rem;
}

.block-61-person__rating {
  font-size: 0.75rem;
  color: #ffe200;
}

.block-61-person__name {
  font-size: 0.87rem;
  font-weight: 600;
  color: #525151 !important;
}

/*------------------------------*/
/*--Payment----------------*/
/*------------------------------*/
.block-14__header {
  --elements-roundness: 5px;
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
}

.plan-switch {
  font-size: 1.2rem;
  margin-top: 3.6rem;
}

.plan-switch__type {
  font-size: 0.95rem;
  opacity: 0.9;
}

.plan-switch__type--selected {
  color: var(--primary);
  opacity: 1;
}

.plan-card {
  padding: 3.5rem 2rem;
  background: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 1200px) {
  .plan-card {
    padding: 3.5rem;
  }
}

.discount {
  transform: scale(1.2);
}

.discount__old-price {
  font-size: 1.9rem;
  text-decoration: line-through;
  font-weight: 300;
  opacity: 0.7;
}

.discount__percentage {
  font-size: 0.87rem;
  color: #111111b7;
  font-weight: 700;
  background: var(--gradient-primary, --primary);
  padding: 0.3rem 0.9rem;
  border-radius: 10rem;
}

.plan-card--recommended {
  background: white;
  color: #111;
  padding-top: 5rem;
  position: relative;
  z-index: 1;
}

.plan-card--recommended .discount {
  color: #0a1f44;
}

.plan-card--recommended .discount__old-price {
  opacity: 0.9;
}

.plan-card--recommended .discount__percentage {
  color: #111111b7;
  background: var(--primary);
}

.plan-card--recommended .btn-primary {
  background: white;
  color: white;
}

.plan-card--recommended .plan-features__icon {
  background-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}

@media (min-width: 992px) {
  .plan-card--recommended {
    height: calc(100% + 50px);
    width: calc(100% + 25px);
    margin-left: -12.5px;
    margin-top: -25px;
    padding-bottom: calc(3.5rem + 25px);
  }
}

.plan-card__tag {
  font-size: 0.9rem;
  padding: 0.6rem 0.8rem;
  border-bottom-left-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 60%;
  margin: auto;
  background: var(--gradient-secondary);
  color: var(--primary-invert);
  overflow: hidden;
}

.plan-card__tag::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.plan-card__name {
  font-size: 1.5rem;
  font-weight: 600;
}

.plan-card__price {
  font-size: 4.3rem;
  font-weight: 600;
}

.plan-card__duration {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.plan-features {
  text-align: initial;
  margin: auto;
  width: auto;
}

.plan-features__li {
  font-size: 1rem;
  margin-bottom: 1.3rem;
  display: flex;
}

.plan-features__li-icon {
  color: #33c58d;
}

/* .plan-card--recommended .plan-features__li-icon {
  color: var(--primary-invert);
} */

.plan-features__li--disabled {
  text-decoration: line-through;
  opacity: 0.7;
}

.plan-features__li--disabled .plan-features__li-icon {
  filter: grayscale(10);
}

.switch {
  font-size: 1em;
  position: relative;
  --switch-background--default: var(--primary);
  --switch-btn-background: white;
  --switch-background--checked: var(--primary);
  --switch-background--disabled: #ccc;
}

.switch input {
  position: absolute;
  height: 1px;
  width: 1px;
  background: 0 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  padding: 0;
}

.switch input + label {
  position: relative;
  min-width: calc(calc(2.375em * 0.8) * 2);
  border-radius: calc(2.375em * 0.8);
  height: calc(2.375em * 0.8);
  line-height: calc(2.375em * 0.8);
  display: inline-block;
  cursor: pointer;
  outline: 0;
  user-select: none;
  vertical-align: middle;
  text-indent: calc(calc(calc(2.375em * 0.8) * 2) + 0.5em);
}

.switch input + label::after,
.switch input + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(calc(2.375em * 0.8) * 2);
  bottom: 0;
  display: block;
}

.switch input + label::before {
  right: 0;
  background-color: var(--switch-background--default);
  border-radius: calc(2.375em * 0.8);
  transition: 0.2s all;
}

.switch input + label::after {
  top: 0.25em;
  left: 0.25em;
  width: calc(calc(2.375em * 0.8) - calc(0.25em * 2));
  height: calc(calc(2.375em * 0.8) - calc(0.25em * 2));
  border-radius: 50%;
  background-color: var(--switch-btn-background);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.45);
  transition: 0.2s all;
}

.switch input:checked + label::before {
  background-color: var(--switch-background--checked);
}

.switch input:checked + label::after {
  margin-left: calc(2.375em * 0.8);
}

.switch input:focus + label::before {
  outline: 0;
  box-shadow: 0 0 0 0.2em rgba(0, 0, 0, 0.1);
}

.switch input:disabled + label {
  color: #868e96;
  cursor: not-allowed;
}

.switch input:disabled + label::before {
  background-color: var(--switch-background--disabled);
}

.switch + .switch {
  margin-left: 1em;
}

/*------------------------------*/
/*--Reviews----------------*/
/*------------------------------*/

.stars::before {
  content: "★★★★★";
  letter-spacing: 8px;
  background: linear-gradient(
    90deg,
    #f8c41c var(--percent),
    white var(--percent)
  );
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: #f8c41c 1px;
  -webkit-background-clip: text;
  background-clip: text;
}
.block-19 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
}

.seeAllReviews {
  color: #373638 !important;
  text-decoration: none;
  cursor: pointer;
}

.seeAllReviews:hover {
  text-decoration: underline;
}

.testimonial-card-1 {
  padding: 24px;
  position: relative;
  background-color: white;
  /* box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09); */
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #ececec;
}

.testimonial-card-1__paragraph {
  flex-grow: 1;
  font-size: 1.01rem;
  opacity: 0.9;
  line-height: 1.7;
  padding-bottom: 1.5rem;
}

.testimonial-card-1__quote-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  color: var(--primary-invert);
  font-size: 1.3rem;
  border-radius: 10rem;
  position: absolute;
  top: -25px;
  left: 30px;
}

.block-19-person {
  display: flex;
  align-items: center;
  margin-top: -1rem;
}

.block-19-person__avatar {
  width: 56px;
  height: 56px;
  border-radius: 10rem;
}

.block-19-person__rating {
  font-size: 0.75rem;
  color: #ffe200;
}

.block-19-person__name {
  font-size: 0.87rem;
  font-weight: 600;
}

.block-19-person__info {
  font-size: 0.87rem;
  opacity: 0.9;
}

/*------------------------------*/
/*--Footer----------------*/
/*------------------------------*/
.block-44 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  --text-primary: var(--block-text-color);
  background: var(--block-background);
  color: var(--block-text-color);
  font-size: 1rem;
  text-align: center;
}

@media (min-width: 992px) {
  .block-44 {
    text-align: initial;
  }
}

.block-44__logo-container {
  width: 100%;
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .block-44__logo-container {
    width: auto;
    flex-grow: 1;
    margin-bottom: 0;
  }
}

.block-44__logo {
  height: 36px;
}

.block-44__list {
  display: flex;
  flex-wrap: wrap;
}

.block-44__li-1 {
  font-weight: 600;
  margin-bottom: 0.6rem;
  margin: 0.9rem;
}

.block-44__li-1::after {
  content: "";
  display: inline-block;
  width: 0;
}

@media (min-width: 992px) {
  .block-44__li-1 {
    margin: 0;
  }

  .block-44__li-1::after {
    width: 2.8rem;
  }

  .block-44__li-1:last-child::after {
    width: 0;
  }
}

.block-44__link {
  color: var(--block-text-color);
}

.block-44__link:focus,
.block-44__link:hover {
  color: inherit;
  text-decoration: underline;
}

.block-44__divider {
  margin: 2.4rem 0;
}

.block-44__extra-links {
  justify-content: center;
}

@media (min-width: 768px) {
  .block-44__extra-links {
    justify-content: flex-start;
  }
}

.block-44__copyrights {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* FAQ */

.content-block__paragraph {
  line-height: 30px;
  font-size: 18px;
}

@media only screen and (max-width: 600px) {
  #testing_area {
    display: none;
  }
}

/*------------------------------*/
/*--Footer----------------*/
/*------------------------------*/
.block-42 {
  --elements-roundness: 5px;
  --block-background: white;
  --block-text-color: var(--text-secondary);
  background: var(--block-background);
  color: var(--block-text-color);
  font-size: 0.87rem;
  text-align: center;
}

@media (min-width: 992px) {
  .block-42 {
    text-align: initial;
  }
}

.block-42__logo {
  height: 36px;
}

.block-42__brand-story {
  font-size: 0.87rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .block-42__brand-story {
    width: 90%;
  }
}

.block-42__li-heading {
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.block-42__li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.block-42__extra-link,
.block-42__li-link {
  color: var(--block-text-color);
}

.block-42__extra-link:focus,
.block-42__extra-link:hover,
.block-42__li-link:focus,
.block-42__li-link:hover {
  color: inherit;
  text-decoration: underline;
}

.block-42__cta-heading {
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cta-input {
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 0.87rem;
  padding: 0.4rem;
  border-radius: var(--elements-roundness);
  /* background: rgb(187 187 187 / 22%); */
}

.btn--loading {
  opacity: 1;
  cursor: progress;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--loading::after,
.btn--loading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.btn--loading::before {
  background: var(--secondary);
  width: 100%;
  height: 100%;
  z-index: 1;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
  }

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

@keyframes spin {
  0% {
    transform: rotate(0);
  }

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

.btn--loading::after {
  margin: auto;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top: 2px solid var(--secondary-invert);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-animation: spin 0.5s linear infinite;
  animation: spin 0.5s linear infinite;
  z-index: 2;
}

@media (min-width: 768px) {
  .cta-input {
    flex-wrap: nowrap;
  }
}

.cta-input__input {
  border: none;
  background: 0 0;
  padding: 0.8rem 1.5rem;
  border: 1px solid #ffbf00;
}

.cta-input__input:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}

.cta-input__btn {
  width: 100%;
  font-size: 0.87rem;
  padding: 0.8rem 1.5rem;
  background-color: #f9ce21;
  color: rgba(17, 17, 17, 0.719);
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.719);
  font-weight: 700;
}

@media (min-width: 768px) {
  .cta-input__btn {
    width: auto;
  }
}

.cta-p {
  text-align: center;
  font-size: 0.75rem;
}

@media (min-width: 992px) {
  .cta-p {
    text-align: initial;
  }
}

.block-42__divider {
  margin: 2.4rem 0;
}

.block-42__extra-links {
  justify-content: center;
}

@media (min-width: 768px) {
  .block-42__extra-links {
    justify-content: flex-start;
  }
}

.block-42__copyrights {
  width: 90%;
  margin: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .block-42__copyrights {
    width: auto;
    text-align: initial;
  }
}
