/** Import everything from autoload */
/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */
/** Import theme styles */
/*=====================================
=            MEDIA QUERIES            =
=====================================*/
/*=====  End of MEDIA QUERIES  ======*/
/*==============================
=            MIXINS            =
==============================*/
/*=====  End of MIXINS  ======*/
/*========================================
=            EXTEND SELECTORS            =
========================================*/
/*=====  End of EXTEND SELECTORS  ======*/
/* PROJECT MIXINS */
@font-face {
  font-family: "SF Pro Display Regular";
  src: url("../../fonts/SFPRODISPLAYREGULAR.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.ios input,
.safari input {
  opacity: 1;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.block-section {
  float: left;
  width: 100%;
  clear: both;
  position: relative;
}

body {
  font-family: "SF Pro Display Regular", sans-serif;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1548px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.button-primary {
  font-size: 1rem;
  line-height: 1.125rem;
  padding: 1.5rem 3.375rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .button-primary {
    font-size: 0.75rem;
    line-height: 0.758125rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .button-primary {
    font-size: 0.75rem;
    line-height: 0.758125rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.button-secondary {
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 1.5rem 3.375rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 40px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .button-secondary {
    font-size: 0.75rem;
    line-height: 0.758125rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .button-secondary {
    font-size: 0.75rem;
    line-height: 0.758125rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.button-primary__green, .button-secondary__green {
  background-color: #73be8d;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.button-primary__green:hover, .button-secondary__green:hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #519d6b;
}
.button-primary__blue, .button-secondary__blue {
  background-color: #0090ff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.button-primary__blue:hover, .button-secondary__blue:hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #007ddc;
}
.button-outline {
  color: #73be8d;
  background-color: #ffffff;
  border: 1px solid #73be8d;
  border-radius: 50px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.button-outline:hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #73be8d;
  color: #ffffff;
}

@media (max-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 575px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.newsletterWrapper {
  padding: 5rem 0;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */
/** Media alignment */
.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 15px auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: 15px;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .alignleft {
    float: left;
    margin-right: 15px;
  }
  .alignright {
    float: right;
    margin-left: 15px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .alignleft {
    float: left;
    margin-right: 15px;
  }
  .alignright {
    float: right;
    margin-left: 15px;
  }
}
/** Captions */
/** Text meant only for screen readers */
.main_footer {
  background-color: #4a504c;
}
.main_footer .footer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12.5rem;
  color: #ffffff;
  padding: 5.625rem 0 2.625rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .main_footer .footer-wrap {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .main_footer .footer-wrap {
    display: block;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_footer .footer-wrap {
    display: block;
  }
}
.main_footer .footer-wrap .footer-wrap__menu-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.25rem;
}
@media only screen and (max-width: 767px) {
  .main_footer .footer-wrap .footer-wrap__menu-newsletter {
    display: block;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_footer .footer-wrap .footer-wrap__menu-newsletter {
    display: block;
  }
}
.main_footer .footer-wrap__logo p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 1.5rem 0 2.125rem 0;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.main_footer .footer-wrap__logo .social-media-list {
  margin-top: 2.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .main_footer .footer-wrap__logo {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .main_footer .footer-wrap__logo {
    margin-bottom: 2.25rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_footer .footer-wrap__logo {
    margin-bottom: 2.25rem;
  }
}
.main_footer .footer-wrap__menu ul {
  display: grid;
  gap: 1.25rem;
}
.main_footer .footer-wrap__menu ul li a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.main_footer .footer-wrap__menu ul li a:hover {
  color: #73be8d;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.main_footer .footer-wrap__newsletter form {
  position: relative;
}
.main_footer .footer-wrap__newsletter form .tnp-field-email label {
  margin-bottom: 25px;
}
.main_footer .footer-wrap__newsletter form .tnp-email {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #828282;
  border-radius: 50px;
}
.main_footer .footer-wrap__newsletter form .tnp-email:focus {
  border: 0;
  outline: none;
}
.main_footer .footer-wrap__newsletter form .tnp-submit {
  position: absolute;
  width: 45px;
  height: 45px;
  right: 5px;
  bottom: 3px;
  background-color: #73be8d;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .main_footer .footer-wrap__newsletter {
    margin-top: 2.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_footer .footer-wrap__newsletter {
    margin-top: 2.5rem;
  }
}
.main_footer .footer-wrap__menu h3, .main_footer .footer-wrap__newsletter h3 {
  font-size: 1.875rem;
  line-height: 2.2375rem;
  padding-bottom: 1.875rem;
  font-weight: 700;
}
.main_footer .footer-bottom-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #ffffff;
  padding: 2.5rem 0 3.125rem 0;
}
@media only screen and (max-width: 767px) {
  .main_footer .footer-bottom-wrap {
    display: grid;
    gap: 24px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_footer .footer-bottom-wrap {
    display: grid;
    gap: 24px;
  }
}
.main_footer .footer-bottom-wrap-border {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.main_footer .footer-bottom-wrap__bottom-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
.main_footer .footer-bottom-wrap__bottom-menu ul li a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.main_footer .footer-bottom-wrap__bottom-menu ul li a:hover {
  color: #73be8d;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main_header {
  background-color: #f8f8f6;
}
@media only screen and (max-width: 767px) {
  .main_header {
    position: relative;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_header {
    position: relative;
  }
}
.main_header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.375rem 0;
}
@media only screen and (max-width: 767px) {
  .main_header .header-wrap .header-logo {
    width: 110px;
    height: auto;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_header .header-wrap .header-logo {
    width: 110px;
    height: auto;
  }
}
.main_header .header-wrap .hamburger-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 11;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.main_header .header-wrap .hamburger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #888;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main_header .header-wrap .hamburger-menu.is-active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
      -ms-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}
.main_header .header-wrap .hamburger-menu.is-active span:nth-child(2) {
  opacity: 0;
}
.main_header .header-wrap .hamburger-menu.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
      -ms-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}
.main_header .header-wrap .call-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.main_header .header-wrap .call-widget .phone-number {
  background: #73be8d;
  font-size: 0.875rem;
  text-decoration: none;
  line-height: 1.125rem;
  font-weight: 600;
  border-radius: 22px;
  margin-bottom: -1.25rem;
  z-index: 9;
  color: white !important;
  padding: 0.8125rem 1.3125rem;
}
.main_header .header-wrap .call-widget .phone-number span {
  color: white !important;
}
.main_header .header-wrap .call-widget .call-text {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  background-color: #4a504c;
  color: #fff;
  padding: 1.625rem 1.25rem 0.625rem 1.25rem;
  border-radius: 0 0 25px 25px;
  width: 86%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main_header .header-wrap .nav-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .main_header .header-wrap .nav-container ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_header .header-wrap .nav-container ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main_header .header-wrap .nav-container ul li {
  position: relative;
}
.main_header .header-wrap .nav-container ul li a {
  color: #828282;
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 500;
  position: relative;
  z-index: 9;
}
.main_header .header-wrap .nav-container ul li.current-menu-item a, .main_header .header-wrap .nav-container ul li:hover a {
  color: #4f4f4f;
}
.main_header .header-wrap .nav-container ul li:hover ~ ul::after, .main_header .header-wrap .nav-container ul li.current-menu-item ~ ul::after {
  left: calc(100% * index / number_of_links);
  width: 52px;
}
.main_header .header-wrap .nav-container ul .nav-indicator {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  bottom: -5px;
  border-radius: 50% !important;
  height: 52px;
  width: 52px !important;
  background-color: rgba(114, 190, 141, 0.2);
  border-radius: 2px;
  -webkit-transition: left 0.3s ease, width 0.3s ease;
  transition: left 0.3s ease, width 0.3s ease;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .main_header .header-wrap .nav-container ul .nav-indicator {
    display: none;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_header .header-wrap .nav-container ul .nav-indicator {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .main_header .header-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 60px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_header .header-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 60px;
  }
}
.main_header .header-wrap .nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .main_header .header-wrap .nav-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f8f8f6;
    z-index: 10;
    -webkit-transform: translateY(-200%);
        -ms-transform: translateY(-200%);
            transform: translateY(-200%);
    opacity: 0;
    height: calc(100vh - 139.13px);
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_header .header-wrap .nav-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f8f8f6;
    z-index: 10;
    -webkit-transform: translateY(-200%);
        -ms-transform: translateY(-200%);
            transform: translateY(-200%);
    opacity: 0;
    height: calc(100vh - 139.13px);
  }
}
.main_header .header-wrap .nav-container.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f8f8f6;
  z-index: 10;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  padding: 20px 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.main_header .header-wrap .nav-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .main_header .header-wrap .nav-container ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
    padding-top: 20px;
    padding-left: 48px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_header .header-wrap .nav-container ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
    padding-top: 20px;
    padding-left: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .main_header .header-wrap .nav-container ul li.current-menu-item {
    position: relative;
    z-index: 1;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_header .header-wrap .nav-container ul li.current-menu-item {
    position: relative;
    z-index: 1;
  }
}
@media only screen and (max-width: 767px) {
  .main_header .header-wrap .nav-container ul li.current-menu-item::after {
    position: absolute;
    content: "";
    height: 52px;
    width: 52px !important;
    background-color: rgba(114, 190, 141, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 0%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_header .header-wrap .nav-container ul li.current-menu-item::after {
    position: absolute;
    content: "";
    height: 52px;
    width: 52px !important;
    background-color: rgba(114, 190, 141, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 0%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
  }
}
.main_header .header-wrap .hamburger-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 11;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  gap: 7px;
}
.main_header .header-wrap .hamburger-menu span {
  display: block;
  height: 1.5px;
  background-color: #828282;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main_header .header-wrap .hamburger-menu span:nth-child(1) {
  width: 24px;
  margin-left: 6px;
}
.main_header .header-wrap .hamburger-menu span:nth-child(2) {
  width: 30px;
}
.main_header .header-wrap .hamburger-menu span:nth-child(3) {
  width: 17px;
  margin-left: 13px;
}
.main_header .header-wrap .hamburger-menu.is-active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
      -ms-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
  width: 30px;
  margin-left: unset;
}
.main_header .header-wrap .hamburger-menu.is-active span:nth-child(2) {
  opacity: 0;
}
.main_header .header-wrap .hamburger-menu.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
      -ms-transform: rotate(-45deg) translate(6px, -6px);
          transform: rotate(-45deg) translate(6px, -6px);
  margin-left: unset;
  width: 30px;
}
@media only screen and (max-width: 767px) {
  .main_header .header-wrap .hamburger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 25px;
    bottom: 30px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .main_header .header-wrap .hamburger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 25px;
    bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .call-widget-desktop {
    display: none !important;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .call-widget-desktop {
    display: none !important;
  }
}

.call-widget-mobile {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .call-widget-mobile {
    color: #ffffff !important;
    display: unset !important;
    position: absolute;
    right: 0;
    bottom: 86px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .call-widget-mobile {
    color: #ffffff !important;
    display: unset !important;
    position: absolute;
    right: 0;
    bottom: 86px;
  }
}
@media only screen and (max-width: 767px) {
  .call-widget-mobile .phone-number {
    border-top-left-radius: 22px !important;
    border-bottom-left-radius: 22px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .call-widget-mobile .phone-number {
    border-top-left-radius: 22px !important;
    border-bottom-left-radius: 22px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
}
@media only screen and (max-width: 767px) {
  .call-widget-mobile .call-text {
    z-index: -1 !important;
    position: relative !important;
    border-top-left-radius: 22px !important;
    border-bottom-left-radius: 22px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .call-widget-mobile .call-text {
    z-index: -1 !important;
    position: relative !important;
    border-top-left-radius: 22px !important;
    border-bottom-left-radius: 22px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
}

.no-scroll {
  overflow: hidden;
}

.numbers-section {
  padding: 7.625rem 0 6.375rem 0;
}
@media only screen and (max-width: 767px) {
  .numbers-section {
    padding: 3.75rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .numbers-section {
    padding: 3.75rem 0;
  }
}
.numbers-section .heading h2 {
  color: #4a504c;
  font-size: 2.625rem;
  line-height: 3.1325rem;
  margin-bottom: 3.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767px) {
  .numbers-section .heading h2 {
    margin-bottom: 2.25rem;
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .numbers-section .heading h2 {
    margin-bottom: 2.25rem;
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
.numbers-section .numbers-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .numbers-section .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .numbers-section .numbers-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.625rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .numbers-section .numbers-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .numbers-section .numbers-grid .number-item .title-number {
    text-align: center;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .numbers-section .numbers-grid .number-item .title-number {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .numbers-section .numbers-grid .number-item {
    display: grid;
    grid-template-columns: 40% 60%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .numbers-section .numbers-grid .number-item {
    display: grid;
    grid-template-columns: 40% 60%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.numbers-section .numbers-grid .number-item .number {
  color: #4a504c;
  font-size: 6.25rem;
  line-height: 7.45875rem;
  padding: 0.25rem 0;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767px) {
  .numbers-section .numbers-grid .number-item .number {
    font-size: 3.375rem;
    line-height: 4rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .numbers-section .numbers-grid .number-item .number {
    font-size: 3.375rem;
    line-height: 4rem;
  }
}
.numbers-section .numbers-grid .number-item .title {
  color: #a07dd0;
  font-size: 1.875rem;
  line-height: 2.2375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .numbers-section .numbers-grid .number-item .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .numbers-section .numbers-grid .number-item .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.numbers-section .numbers-grid .number-item .title::before {
  content: "";
  position: absolute;
  width: 194px;
  height: 194px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #a07dd0;
  opacity: 0.4;
  -webkit-filter: blur(65px);
          filter: blur(65px);
  z-index: -1;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .numbers-section .numbers-grid .number-item .title::before {
    width: 156px;
    height: 156px;
    left: 50%;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .numbers-section .numbers-grid .number-item .title::before {
    width: 156px;
    height: 156px;
    left: 50%;
  }
}
.numbers-section .numbers-grid .number-item .text {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #828282;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .numbers-section .numbers-grid .number-item .text {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .numbers-section .numbers-grid .number-item .text {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}

.partner-section {
  padding: 7.5rem 0 11.25rem 0;
}
@media only screen and (max-width: 767px) {
  .partner-section {
    padding: 3.75rem 0 3.75rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .partner-section {
    padding: 3.75rem 0 3.75rem 0;
  }
}
.partner-section .heading h2 {
  color: #4a504c;
  font-size: 2.625rem;
  line-height: 3.1325rem;
  margin-bottom: 6.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .partner-section .heading h2 {
    margin-bottom: 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .partner-section .heading h2 {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .partner-section .heading h2 {
    margin-bottom: 1.875rem;
  }
}
.partner-section .partners-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .partner-section .partners-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .partner-section .partners-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .partner-section .partners-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partner-section .partners-wrapper .partner-image {
  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;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.partner-section .partners-wrapper .partner-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.partner-section .partners-wrapper .partner-image:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.choose-plan-section {
  padding: 8.75rem 0;
  background-color: #f8f8f6;
}
@media only screen and (max-width: 767px) {
  .choose-plan-section {
    display: none;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-plan-section {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .choose-plan-section {
    padding: 3rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-plan-section {
    padding: 3rem 0;
  }
}
.choose-plan-section .heading {
  text-align: center;
  margin-bottom: 3.75rem;
}
.choose-plan-section .heading h2 {
  color: #4a504c;
  font-size: 2.625rem;
  line-height: 3.1325rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767px) {
  .choose-plan-section .heading h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-plan-section .heading h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
.choose-plan-section .heading p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  width: 60%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .choose-plan-section .heading p {
    width: 100%;
    margin: unset;
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-plan-section .heading p {
    width: 100%;
    margin: unset;
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
.choose-plan-section .plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 3.75rem;
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .choose-plan-section .plans-grid {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .choose-plan-section .plans-grid {
    padding: 0;
    grid-template-columns: unset;
  }
}
.choose-plan-section .plan-card {
  display: grid;
  gap: 1.5625rem;
  color: #323232;
  background-color: #fff;
  border-radius: 20px;
  padding: 2.5rem 2.75rem;
  margin: 3.125rem 0;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.choose-plan-section .plan-card:nth-child(2) {
  margin: 0;
  color: #ffffff;
  background-color: #73be8d;
  padding: 5rem 2.75rem;
}
.choose-plan-section .plan-card:nth-child(2) .plan-items li svg path {
  stroke: #ffffff;
}
.choose-plan-section .plan-card:nth-child(2) .plan-button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #ffffff;
  color: #323232;
}
.choose-plan-section .plan-card:nth-child(2) .plan-button:hover {
  background-color: #f8f8f6;
}
.choose-plan-section .plan-card:nth-child(2) .plan-subtitle {
  color: #323232;
}
.choose-plan-section .plan-card .plan-name {
  font-size: 1.5rem;
  line-height: 2.25rem;
  font-weight: 600;
}
.choose-plan-section .plan-card .plan-price {
  font-size: 2.25rem;
  line-height: 2.723125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.choose-plan-section .plan-card .plan-subtitle {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}
.choose-plan-section .plan-card .plan-items {
  list-style: none;
  padding: 0;
}
.choose-plan-section .plan-card .plan-items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
}
.choose-plan-section .plan-card .plan-items li:last-child {
  margin-bottom: 0;
}
.choose-plan-section .plan-card .plan-items li svg path {
  stroke: #73be8d;
}
.choose-plan-section .plan-card .plan-button {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #73be8d;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
.choose-plan-section .plan-card .plan-button:hover {
  background-color: #519d6b;
}

.choose-plan-section--mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .choose-plan-section--mobile {
    display: unset;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-plan-section--mobile {
    display: unset;
  }
}
@media only screen and (max-width: 767px) {
  .choose-plan-section--mobile .heading {
    text-align: left;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-plan-section--mobile .heading {
    text-align: left;
    margin-bottom: 1.5rem;
  }
}
.choose-plan-section--mobile .heading h2 {
  color: #4a504c;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.79rem;
}
.choose-plan-section--mobile .heading p {
  width: 100%;
  margin: unset;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
}
.choose-plan-section--mobile .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 0.25rem;
  cursor: pointer;
  margin-bottom: 0.25rem;
}
.choose-plan-section--mobile .tab {
  cursor: pointer;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f8f8f6;
  border-radius: 10px;
}
.choose-plan-section--mobile .tab h3,
.choose-plan-section--mobile .tab p {
  color: #828282;
}
.choose-plan-section--mobile .tab h3 {
  font-size: 0.625rem;
  line-height: 0.75625rem;
  margin-bottom: 0.375rem;
  font-weight: 500;
}
.choose-plan-section--mobile .tab p {
  font-size: 1rem;
  line-height: 1.21rem;
  font-weight: 700;
}
.choose-plan-section--mobile .tab:hover,
.choose-plan-section--mobile .tab.active {
  background-color: #73be8d;
}
.choose-plan-section--mobile .tab:hover h3,
.choose-plan-section--mobile .tab:hover p,
.choose-plan-section--mobile .tab.active h3,
.choose-plan-section--mobile .tab.active p {
  color: #ffffff;
}
.choose-plan-section--mobile .plans-grid .plan-card {
  display: none;
}
.choose-plan-section--mobile .plan-card {
  color: #323232;
  background-color: #f8f8f6;
  border-radius: 12px;
  padding: 2.5rem 1.25rem;
  margin-bottom: 3rem;
}
.choose-plan-section--mobile .plan-card:nth-child(2) {
  background-color: #73be8d;
  color: #ffffff;
}
.choose-plan-section--mobile .plan-card:nth-child(2) .plan-items li svg path {
  stroke: #ffffff;
}
.choose-plan-section--mobile .plan-card:nth-child(2) .plan-button {
  background-color: #ffffff;
  color: #4a504c;
}
.choose-plan-section--mobile .plan-card .plan-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.choose-plan-section--mobile .plan-card .plan-content .plan-name {
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.choose-plan-section--mobile .plan-card .plan-content .plan-subtitle {
  font-size: 0.75rem;
  line-height: 0.8125rem;
  font-weight: 700;
}
.choose-plan-section--mobile .plan-card .plan-price {
  font-size: 2rem;
  line-height: 2.375rem;
  font-weight: 700;
}
.choose-plan-section--mobile .plan-card .plan-items {
  margin: 1.25rem 0;
}
.choose-plan-section--mobile .plan-card .plan-items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.choose-plan-section--mobile .plan-card .plan-items li:last-child {
  margin-bottom: 0;
}
.choose-plan-section--mobile .plan-card .plan-items li svg {
  width: 16px;
  height: 16px;
}
.choose-plan-section--mobile .plan-card .plan-items li svg path {
  stroke: #73be8d;
}
.choose-plan-section--mobile .plan-card .plan-button {
  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;
  width: 100%;
  background-color: #73be8d;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  font-size: 0.75rem;
  line-height: 0.758125rem;
  font-weight: 800;
  text-transform: uppercase;
}
.choose-plan-section--mobile .plans-grid .plan-card.active {
  display: block;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}
@media (max-width: 1100px) {
  .how-it-works {
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works {
    gap: 6px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works {
    gap: 6px;
  }
}
.how-it-works-section {
  padding: 7.5rem 0;
}
@media only screen and (max-width: 767px) {
  .how-it-works-section {
    padding: 3rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-section {
    padding: 3rem 0;
  }
}
.how-it-works-section .button-primary {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6.25rem;
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .button-primary {
    margin-top: 1.5rem;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-section .button-primary {
    margin-top: 1.5rem;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.how-it-works-section .heading {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6.25rem;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .how-it-works-section .heading {
    grid-template-columns: unset;
    margin-bottom: 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .heading {
    grid-template-columns: unset;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-section .heading {
    grid-template-columns: unset;
    margin-bottom: 1.5rem;
  }
}
.how-it-works-section .heading h2 {
  color: #4a504c;
  font-size: 2.625rem;
  line-height: 3.1325rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .heading h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-section .heading h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
.how-it-works-section .heading p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .heading p {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-section .heading p {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
.how-it-works-item {
  display: grid;
  gap: 68px;
  background: rgba(115, 190, 141, 0.1);
  padding: 3.25rem 1.625rem 2.5rem 1.625rem;
  text-align: center;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 1100px) {
  .how-it-works-item {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-item {
    width: 165px;
    text-align: left;
    padding: 20px 10px;
    gap: 54px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-item {
    width: 165px;
    text-align: left;
    padding: 20px 10px;
    gap: 54px;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-item .title-image-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-item .title-image-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
  }
}
.how-it-works-item .title-image-mobile img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .how-it-works-item .title-image-mobile img {
    display: unset;
    width: 42px;
    height: auto;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-item .title-image-mobile img {
    display: unset;
    width: 42px;
    height: auto;
  }
}
.how-it-works-item::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 121px;
  height: 110px;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg width='121' height='110' viewBox='0 0 121 110' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_b_2020_4131)'%3E%3Cpath d='M121 55L66 0V30H0V81H66V110L121 55Z' fill='%23C6E5D4' fill-opacity='0.3'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_b_2020_4131' x='-13' y='-13' width='147' height='136' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeGaussianBlur in='BackgroundImageFix' stdDeviation='6.5'/%3E%3CfeComposite in2='SourceAlpha' operator='in' result='effect1_backgroundBlur_2020_4131'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_backgroundBlur_2020_4131' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .how-it-works-item::after {
    width: 62px;
    height: 58px;
    right: -2.125rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-item::after {
    width: 62px;
    height: 58px;
    right: -2.125rem;
  }
}
.how-it-works-item:last-child::after {
  display: none;
}
.how-it-works-item h3 {
  color: #4a504c;
  font-size: 1.875rem;
  line-height: 2.125rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .how-it-works-item h3 {
    font-size: 0.875rem;
    line-height: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-item h3 {
    font-size: 0.875rem;
    line-height: 1rem;
  }
}
.how-it-works-item p {
  color: #323232;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .how-it-works-item p {
    font-size: 0.6875rem;
    line-height: 0.875rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-item p {
    font-size: 0.6875rem;
    line-height: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-item .how-it-works-image {
    display: none;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .how-it-works-item .how-it-works-image {
    display: none;
  }
}
.how-it-works-item img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  height: auto;
  margin: auto;
  width: 170px;
}

.top-banner-section {
  padding: 8.75rem 0 6.25rem 0;
  background-color: #f8f8f6;
}
@media only screen and (max-width: 767px) {
  .top-banner-section {
    padding: 4rem 0 2.25rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-section {
    padding: 4rem 0 2.25rem 0;
  }
}
.top-banner-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .top-banner-wrapper {
    grid-template-columns: unset;
  }
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper {
    grid-template-columns: unset;
    gap: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper {
    grid-template-columns: unset;
    gap: 1rem;
  }
}
.top-banner-wrapper .headings-mobile {
  display: none !important;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .top-banner-wrapper .headings-mobile {
    display: unset !important;
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .headings-mobile {
    display: unset !important;
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
    text-align: center;
  }
  .top-banner-wrapper .headings-mobile h1 {
    font-size: 40px !important;
    line-height: 50px !important;
    margin-bottom: 20px !important;
  }
  .top-banner-wrapper .headings-mobile p {
    font-size: 14px !important;
    line-height: 18px !important;
    margin: 0px !important;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .headings-mobile {
    display: unset !important;
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
    text-align: center;
  }
  .top-banner-wrapper .headings-mobile h1 {
    font-size: 40px !important;
    line-height: 50px !important;
    margin-bottom: 20px !important;
  }
  .top-banner-wrapper .headings-mobile p {
    font-size: 14px !important;
    line-height: 18px !important;
    margin: 0px !important;
  }
}
.top-banner-wrapper .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .top-banner-wrapper .content {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .content {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .content {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .top-banner-wrapper .content .headings-desktop {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .content .headings-desktop {
    display: none;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .content .headings-desktop {
    display: none;
  }
}
.top-banner-wrapper .content h1 {
  color: #4a504c;
  font-size: 5.375rem;
  line-height: 6.875rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.top-banner-wrapper .content h1 span {
  color: #73be8d;
}
.top-banner-wrapper .content p {
  color: #323232;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin: 0.625rem 0 4.5rem 0;
  font-weight: 400;
}
.top-banner-wrapper .content .button-outline {
  margin-left: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .content .button-primary {
    padding: 11px 24px !important;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .content .button-primary {
    padding: 11px 24px !important;
  }
}
.top-banner-wrapper .content .logo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .top-banner-wrapper .content .logo-content {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .content .logo-content {
    margin-top: 1.25rem;
    gap: 0.9375rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .content .logo-content {
    margin-top: 1.25rem;
    gap: 0.9375rem;
  }
}
.top-banner-wrapper .content .logo-content p {
  color: #828282;
  font-size: 1rem;
  line-height: 1.4375rem;
  margin: 0;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .content .logo-content p {
    font-size: 0.6875rem;
    line-height: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .content .logo-content p {
    font-size: 0.6875rem;
    line-height: 1rem;
  }
}
.top-banner-wrapper .content .logo-content img {
  width: 124px;
  height: 60px;
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .content .logo-content img {
    width: 80px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .content .logo-content img {
    width: 80px;
  }
}
.top-banner-wrapper .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .top-banner-wrapper .features {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .features {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1.5rem;
    margin-bottom: 0.625rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .features {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1.5rem;
    margin-bottom: 0.625rem;
  }
}
.top-banner-wrapper .features .feature {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-size: cover;
  background-position: center;
  padding: 20px;
  color: #ffffff;
  overflow: hidden;
  height: 623px;
}
.top-banner-wrapper .features .feature:nth-child(1) {
  height: 207px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .features .feature:nth-child(1) {
    height: 131px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .features .feature:nth-child(1) {
    height: 131px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}
.top-banner-wrapper .features .feature:nth-child(2) {
  height: 414px;
  border-top-left-radius: 40px;
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .features .feature:nth-child(2) {
    height: 220px;
    border-top-left-radius: 12px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .features .feature:nth-child(2) {
    height: 220px;
    border-top-left-radius: 12px;
  }
}
.top-banner-wrapper .features .feature:nth-child(3) {
  height: 623px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .features .feature:nth-child(3) {
    height: 310px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .features .feature:nth-child(3) {
    height: 310px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
.top-banner-wrapper .features .feature img {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .features .feature img {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .features .feature img {
    width: 30px;
    height: 30px;
  }
}
.top-banner-wrapper .features .feature h3 {
  font-size: 1.625rem;
  line-height: 2rem;
  font-weight: 600;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .top-banner-wrapper .features .feature h3 {
    font-size: 0.875rem;
    line-height: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .top-banner-wrapper .features .feature h3 {
    font-size: 0.875rem;
    line-height: 1rem;
  }
}
.top-banner-wrapper .features .feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45.04%, rgba(115, 190, 141, 0)), color-stop(108.14%, #73be8d));
  background: linear-gradient(180deg, rgba(115, 190, 141, 0) 45.04%, #73be8d 108.14%);
  z-index: 1;
}

.choose-your-plan-page {
  padding: 6.25rem 0;
}
@media only screen and (max-width: 767px) {
  .choose-your-plan-page {
    padding: 3.75rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-your-plan-page {
    padding: 3.75rem 0;
  }
}
.choose-your-plan-page .plan-form {
  width: 50%;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .choose-your-plan-page .plan-form {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .choose-your-plan-page .plan-form {
    width: 100%;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-your-plan-page .plan-form {
    width: 100%;
  }
}
.choose-your-plan-page .plan-form .gform_title {
  color: #4a504c;
  font-size: 2.625rem;
  line-height: 3.1325rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767px) {
  .choose-your-plan-page .plan-form .gform_title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-your-plan-page .plan-form .gform_title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
.choose-your-plan-page .plan-form form input[type=text],
.choose-your-plan-page .plan-form form input[type=email],
.choose-your-plan-page .plan-form form input[type=tel],
.choose-your-plan-page .plan-form form textarea {
  border: 1px solid transparent !important;
  height: 48px !important;
  background-color: #f2f2f2 !important;
  border-radius: 10px !important;
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-size: 16px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.choose-your-plan-page .plan-form form input[type=text]:hover,
.choose-your-plan-page .plan-form form input[type=email]:hover,
.choose-your-plan-page .plan-form form input[type=tel]:hover,
.choose-your-plan-page .plan-form form textarea:hover {
  border: 1px solid transparent !important;
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
}
.choose-your-plan-page .plan-form form input[type=text]:focus,
.choose-your-plan-page .plan-form form input[type=email]:focus,
.choose-your-plan-page .plan-form form input[type=tel]:focus,
.choose-your-plan-page .plan-form form textarea:focus {
  border: 1px solid #73be8d !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.choose-your-plan-page .plan-form form input[type=text]::-webkit-input-placeholder, .choose-your-plan-page .plan-form form input[type=email]::-webkit-input-placeholder, .choose-your-plan-page .plan-form form input[type=tel]::-webkit-input-placeholder, .choose-your-plan-page .plan-form form textarea::-webkit-input-placeholder {
  font-size: 16px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.choose-your-plan-page .plan-form form input[type=text]::-moz-placeholder, .choose-your-plan-page .plan-form form input[type=email]::-moz-placeholder, .choose-your-plan-page .plan-form form input[type=tel]::-moz-placeholder, .choose-your-plan-page .plan-form form textarea::-moz-placeholder {
  font-size: 16px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.choose-your-plan-page .plan-form form input[type=text]:-ms-input-placeholder, .choose-your-plan-page .plan-form form input[type=email]:-ms-input-placeholder, .choose-your-plan-page .plan-form form input[type=tel]:-ms-input-placeholder, .choose-your-plan-page .plan-form form textarea:-ms-input-placeholder {
  font-size: 16px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.choose-your-plan-page .plan-form form input[type=text]::-ms-input-placeholder, .choose-your-plan-page .plan-form form input[type=email]::-ms-input-placeholder, .choose-your-plan-page .plan-form form input[type=tel]::-ms-input-placeholder, .choose-your-plan-page .plan-form form textarea::-ms-input-placeholder {
  font-size: 16px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.choose-your-plan-page .plan-form form input[type=text]::placeholder,
.choose-your-plan-page .plan-form form input[type=email]::placeholder,
.choose-your-plan-page .plan-form form input[type=tel]::placeholder,
.choose-your-plan-page .plan-form form textarea::placeholder {
  font-size: 16px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.choose-your-plan-page .plan-form form input[type=radio]:focus {
  outline: none;
  border: 1px solid #73be8d;
}
.choose-your-plan-page .plan-form form input[type=radio]::before {
  background-color: #73be8d !important;
}
.choose-your-plan-page .plan-form form .gchoice .gform-field-label:hover {
  cursor: pointer;
}
.choose-your-plan-page .plan-form form .gfield_label {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .choose-your-plan-page .plan-form form .gfield_label {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-your-plan-page .plan-form form .gfield_label {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
.choose-your-plan-page .plan-form form .gform_footer input[type=submit] {
  background-color: #73be8d !important;
  color: #ffffff !important;
  width: 240px !important;
  height: 52px !important;
  border-radius: 50px !important;
  border: none !important;
  outline: none !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 18px !important;
  text-transform: uppercase !important;
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
}
.choose-your-plan-page .plan-form form .gform_footer input[type=submit]:hover {
  background-color: #519d6b !important;
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
}
@media only screen and (max-width: 767px) {
  .choose-your-plan-page .gform_fields {
    grid-row-gap: 20px !important;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .choose-your-plan-page .gform_fields {
    grid-row-gap: 20px !important;
  }
}

.heading_component {
  padding: 5.75rem 0 6.375rem 0;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .heading_component {
    padding: 4rem 0 4.5rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .heading_component {
    padding: 4rem 0 4.5rem 0;
  }
}
.heading_component h2 {
  font-size: 6.25rem;
  line-height: 8.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .heading_component h2 {
    font-size: 3.75rem;
    line-height: 3.125rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .heading_component h2 {
    font-size: 2.5rem;
    line-height: 1.875rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .heading_component h2 {
    font-size: 2.5rem;
    line-height: 1.875rem;
    margin-bottom: 1.5rem;
  }
}
.heading_component p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  width: 68%;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .heading_component p {
    width: 86%;
  }
}
@media only screen and (max-width: 767px) {
  .heading_component p {
    width: 100%;
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .heading_component p {
    width: 100%;
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

.about-content {
  padding-bottom: 18.75rem;
  width: 80%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .about-content {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .about-content {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .about-content {
    width: 100%;
    margin: unset;
  }
}
@media only screen and (max-width: 767px) {
  .about-content {
    width: 100%;
    margin: unset;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .about-content {
    width: 100%;
    margin: unset;
  }
}
.about-content .first-content p {
  font-size: 2.625rem;
  line-height: 3.625rem;
  padding: 4rem 0;
  font-weight: 400;
  color: #828282;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .about-content .first-content p {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .about-content .first-content p {
    font-size: 1rem;
    line-height: 1.125rem;
    padding: 2.25rem 0 3rem 0;
    text-align: left;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .about-content .first-content p {
    font-size: 1rem;
    line-height: 1.125rem;
    padding: 2.25rem 0 3rem 0;
    text-align: left;
  }
}
.about-content .about-image img {
  width: 100%;
  border-radius: 20px;
  height: 622px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .about-content .about-image img {
    height: 422px;
  }
}
@media only screen and (max-width: 767px) {
  .about-content .about-image img {
    height: 226px;
    margin-top: -113px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .about-content .about-image img {
    height: 226px;
    margin-top: -113px;
  }
}
.about-content .about-image__mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .about-content .about-image__mobile {
    display: unset;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .about-content .about-image__mobile {
    display: unset;
  }
}
@media only screen and (max-width: 767px) {
  .about-content .about-image__desktop {
    display: none;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .about-content .about-image__desktop {
    display: none;
  }
}
.about-content .about-two-sections {
  display: grid;
  gap: 3.125rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 3.5rem 0 5rem 0;
}
@media only screen and (max-width: 767px) {
  .about-content .about-two-sections {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 0 3rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .about-content .about-two-sections {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 0 3rem 0;
  }
}
.about-content .about-two-sections .what-do-we-do,
.about-content .about-two-sections .how-we-do-it {
  color: #4a504c;
}
.about-content .about-two-sections .what-do-we-do h2,
.about-content .about-two-sections .how-we-do-it h2 {
  font-size: 2.625rem;
  line-height: 3.1325rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 2.1875rem;
}
@media only screen and (max-width: 767px) {
  .about-content .about-two-sections .what-do-we-do h2,
  .about-content .about-two-sections .how-we-do-it h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-bottom: 0.625rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .about-content .about-two-sections .what-do-we-do h2,
  .about-content .about-two-sections .how-we-do-it h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-bottom: 0.625rem;
  }
}
.about-content .about-two-sections .what-do-we-do p,
.about-content .about-two-sections .how-we-do-it p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .about-content .about-two-sections .what-do-we-do p,
  .about-content .about-two-sections .how-we-do-it p {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .about-content .about-two-sections .what-do-we-do p,
  .about-content .about-two-sections .how-we-do-it p {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.about-content .last-content p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .about-content .last-content p {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .about-content .last-content p {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

.aboutWrapper .heading_component {
  padding-bottom: 9.375rem;
}

.documentsWrapper .documents .odd {
  background-color: #f8f8f6;
}
.documentsWrapper .documents .document-item-width {
  width: 70%;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .documentsWrapper .documents .document-item-width {
    width: 100%;
    margin: unset;
  }
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .documents .document-item-width {
    width: 100%;
    margin: unset;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .documents .document-item-width {
    width: 100%;
    margin: unset;
  }
}
.documentsWrapper .documents .document-item {
  padding: 2.9375rem 0 5.0625rem 0;
}
.documentsWrapper .documents .document-item .document-title {
  color: #4a504c;
  font-size: 2.625rem;
  line-height: 3.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .documents .document-item .document-title {
    display: none;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .documents .document-item .document-title {
    display: none;
  }
}
.documentsWrapper .documents .document-item .document-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 81px;
  padding-top: 3.3125rem;
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .documents .document-item .document-content {
    gap: 14px;
    padding-top: 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .documents .document-item .document-content {
    gap: 14px;
    padding-top: 0;
  }
}
.documentsWrapper .documents .document-item .document-content .document-image {
  width: 40%;
  height: 438px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .documents .document-item .document-content .document-image {
    height: auto;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .documents .document-item .document-content .document-image {
    height: auto;
  }
}
.documentsWrapper .documents .document-item .document-content .document-image img {
  min-width: 313px;
  height: 438px;
  border: 1px solid #828282;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .documents .document-item .document-content .document-image img {
    min-width: 130px;
    height: 200px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .documents .document-item .document-content .document-image img {
    min-width: 130px;
    height: 200px;
  }
}
.documentsWrapper .documents .document-item .document-content .document-title-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .documents .document-item .document-content .document-title-mobile {
    display: unset;
    color: #4a504c;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .documents .document-item .document-content .document-title-mobile {
    display: unset;
    color: #4a504c;
  }
}
.documentsWrapper .documents .document-item .document-content .document-text {
  color: #323232;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .documents .document-item .document-content .document-text {
    font-size: 0.75rem;
    line-height: 0.875rem;
    color: #828282;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .documents .document-item .document-content .document-text {
    font-size: 0.75rem;
    line-height: 0.875rem;
    color: #828282;
  }
}
.documentsWrapper .documents .document-item .form-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .documents .document-item .form-desc {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 8px;
    height: auto;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .documents .document-item .form-desc {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 8px;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .documents .document-item .form-desc .form-desktop {
    display: none;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .documents .document-item .form-desc .form-desktop {
    display: none;
  }
}
.documentsWrapper .documents .document-item .form-desc form input {
  border: 1px solid transparent !important;
  height: 68px !important;
  background-color: #f2f2f2 !important;
  border-radius: 10px !important;
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-size: 18px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.documentsWrapper .documents .document-item .form-desc form input:hover {
  border: 1px solid transparent !important;
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
}
.documentsWrapper .documents .document-item .form-desc form input:focus {
  border: 1px solid #73be8d !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.documentsWrapper .documents .document-item .form-desc form input::-webkit-input-placeholder {
  font-size: 18px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.documentsWrapper .documents .document-item .form-desc form input::-moz-placeholder {
  font-size: 18px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.documentsWrapper .documents .document-item .form-desc form input:-ms-input-placeholder {
  font-size: 18px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.documentsWrapper .documents .document-item .form-desc form input::-ms-input-placeholder {
  font-size: 18px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.documentsWrapper .documents .document-item .form-desc form input::placeholder {
  font-size: 18px !important;
  color: #323232 !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}
.documentsWrapper .documents .document-item .form-desc form .gform_footer input[type=submit] {
  background-color: #73be8d !important;
  color: #ffffff !important;
  width: 262px !important;
  height: 80px !important;
  border-radius: 50px !important;
  border: none !important;
  outline: none !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 18px !important;
  text-transform: uppercase !important;
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
}
.documentsWrapper .documents .document-item .form-desc form .gform_footer input[type=submit]:hover {
  background-color: #519d6b !important;
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
}
.documentsWrapper .form-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .form-mobile {
    display: unset;
    padding-top: 1.5625rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .form-mobile {
    display: unset;
    padding-top: 1.5625rem;
  }
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .form-mobile form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .form-mobile form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .documentsWrapper .form-mobile form .gform_footer {
    margin-top: 0px !important;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .form-mobile form .gform_footer {
    margin-top: 0px !important;
  }
}
.documentsWrapper .no-document {
  color: #323232;
  padding: 3.75rem 0;
  font-size: 1.5rem;
  line-height: 2.375rem;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .documentsWrapper .documents .document-item .form-mobile form .gform_footer input[type=submit] {
    width: 129px !important;
    height: 45px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .documentsWrapper .documents .document-item .form-mobile form .gform_footer input[type=submit] {
    width: 129px !important;
    height: 45px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }
}

.documentsWrapper .documents .document-item .form-mobile form input {
  height: 41px !important;
  font-size: 14px !important;
}
.documentsWrapper .documents .document-item .form-mobile form input:focus {
  font-size: 14px !important;
}

.testimonials {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  padding: 5rem 0 10rem 0;
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .testimonials {
    gap: 12px;
    padding: 0 0 3.75rem 0;
    margin-top: -113px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials {
    gap: 12px;
    padding: 0 0 3.75rem 0;
    margin-top: -113px;
  }
}
.testimonials .testimonial {
  background: #f7f3fc;
  border-radius: 20px;
  padding: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial {
    padding: 1.25rem 0.75rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial {
    padding: 1.25rem 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial svg {
    width: 48px;
    height: auto;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial svg {
    width: 48px;
    height: auto;
  }
}
.testimonials .testimonial.testimonial-first {
  grid-column: span 3;
  text-align: center;
  padding: 3.75rem 2.5rem 5.3125rem 2.5rem;
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .testimonials .testimonial.testimonial-first {
    grid-column: span 2;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .testimonials .testimonial.testimonial-first {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial.testimonial-first {
    grid-column: span 2;
    padding: 2.5rem 1.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial.testimonial-first {
    grid-column: span 2;
    padding: 2.5rem 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial.testimonial-first svg {
    width: 66px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial.testimonial-first svg {
    width: 66px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.testimonials .testimonial.testimonial-first .testimonial-description {
  font-size: 2.625rem;
  line-height: 3.625rem;
  padding-top: 2rem;
  padding-bottom: 0;
  font-weight: 400;
  color: #828282;
  border-bottom: none;
  margin-bottom: 5rem;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .testimonials .testimonial.testimonial-first .testimonial-description {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial.testimonial-first .testimonial-description {
    font-size: 0.875rem;
    line-height: 1.125rem;
    padding-top: 1rem;
    margin-bottom: 2.75rem;
    text-align: left;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial.testimonial-first .testimonial-description {
    font-size: 0.875rem;
    line-height: 1.125rem;
    padding-top: 1rem;
    margin-bottom: 2.75rem;
    text-align: left;
  }
}
.testimonials .testimonial.testimonial-first .testimonial-content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 42px;
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .testimonials .testimonial.testimonial-first .testimonial-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial.testimonial-first .testimonial-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial.testimonial-first .testimonial-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.testimonials .testimonial.testimonial-first .testimonial-image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.testimonials .testimonial.testimonial-first .testimonial-name,
.testimonials .testimonial.testimonial-first .testimonial-position {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial.testimonial-first {
    font-size: 1rem;
    line-height: 2.25rem;
    margin-bottom: 0.75rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial.testimonial-first {
    font-size: 1rem;
    line-height: 2.25rem;
    margin-bottom: 0.75rem;
  }
}
.testimonials .testimonial .testimonial-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial .testimonial-content {
    display: grid;
    gap: 12px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial .testimonial-content {
    display: grid;
    gap: 12px;
  }
}
.testimonials .testimonial .testimonial-image {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial .testimonial-image {
    width: 64px;
    height: 64px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial .testimonial-image {
    width: 64px;
    height: 64px;
  }
}
.testimonials .testimonial .testimonial-image img {
  width: 95px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial .testimonial-image img {
    width: 64px;
    height: 64px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial .testimonial-image img {
    width: 64px;
    height: 64px;
  }
}
.testimonials .testimonial .testimonial-name {
  color: #212529;
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 0.9375rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial .testimonial-name {
    font-size: 0.875rem;
    line-height: 1.125rem;
    margin-bottom: 0.25rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial .testimonial-name {
    font-size: 0.875rem;
    line-height: 1.125rem;
    margin-bottom: 0.25rem;
  }
}
.testimonials .testimonial .testimonial-position {
  color: #828282;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial .testimonial-position {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial .testimonial-position {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.testimonials .testimonial .testimonial-description {
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 2rem 0 2.5rem 0;
  font-weight: 400;
  color: #323232;
  border-bottom: 1px solid #a07dd0;
  margin-bottom: 8.75rem;
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .testimonials .testimonial .testimonial-description {
    margin-bottom: 5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .testimonials .testimonial .testimonial-description {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial .testimonial-description {
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    padding: 1rem 0 1.5rem 0;
    line-height: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial .testimonial-description {
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    padding: 1rem 0 1.5rem 0;
    line-height: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials .testimonial .testimonial-description {
    font-size: 0.875rem;
    line-height: 1.125rem;
    text-align: left;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials .testimonial .testimonial-description {
    font-size: 0.875rem;
    line-height: 1.125rem;
    text-align: left;
  }
}

.no-post-found {
  padding: 6.25rem 0;
}
.no-post-found p {
  font-size: 1.375rem;
  line-height: 1.875rem;
  text-align: center;
  color: #323232;
}

.testimonialsWrapper .heading_component {
  padding-bottom: 9.375rem;
}

.testimonials-home-section {
  padding: 7.5rem 0;
}
@media only screen and (max-width: 767px) {
  .testimonials-home-section {
    padding: 3.75rem 0 1rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials-home-section {
    padding: 3.75rem 0 1rem 0;
  }
}
.testimonials-home-section .testimonials {
  padding: 1.5rem 0 0 0;
}
@media only screen and (max-width: 767px) {
  .testimonials-home-section .testimonials {
    gap: unset;
    padding: 1.5rem 0 0 0;
    margin-top: unset;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials-home-section .testimonials {
    gap: unset;
    padding: 1.5rem 0 0 0;
    margin-top: unset;
  }
}
.testimonials-home-section .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonials-home-section .heading h2 {
  color: #4a504c;
  font-size: 2.625rem;
  line-height: 3.1325rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767px) {
  .testimonials-home-section .heading h2 {
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials-home-section .heading h2 {
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
.testimonials-home-section .heading .see-all-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.testimonials-home-section .heading .see-all-btn a {
  color: #4a504c;
  font-size: 1rem;
  line-height: 1.125rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .testimonials-home-section .heading .see-all-btn a {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .testimonials-home-section .heading .see-all-btn a {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}

.productsWrapper .choose-plan-section {
  background-color: #ffffff;
}
.productsWrapper .choose-plan-section .plan-card {
  background-color: #f8f8f6;
}
.productsWrapper .choose-plan-section .plan-card:nth-child(2) {
  margin: 0;
  color: #ffffff;
  background-color: #0090ff;
}
.productsWrapper .choose-plan-section .plan-card:nth-child(2) .plan-items li svg path {
  stroke: #ffffff;
}
.productsWrapper .choose-plan-section .plan-card:nth-child(2) .plan-button {
  background-color: #ffffff;
  color: #323232;
}
.productsWrapper .choose-plan-section .plan-card:nth-child(2) .plan-button:hover {
  background-color: #f8f8f6;
}
.productsWrapper .choose-plan-section .plan-card:nth-child(2) .plan-subtitle {
  color: #323232;
}
.productsWrapper .choose-plan-section .plan-card .plan-items li svg path {
  stroke: #323232;
}
.productsWrapper .choose-plan-section .plan-card .plan-button {
  background-color: #0090ff;
  color: #fff;
}
.productsWrapper .choose-plan-section .plan-card .plan-button:hover {
  background-color: #007ddc;
}
.productsWrapper .choose-plan-section--mobile .tab:hover,
.productsWrapper .choose-plan-section--mobile .tab.active {
  background-color: #0090ff;
}
.productsWrapper .choose-plan-section--mobile .plan-card:nth-child(2) {
  background-color: #0090ff;
}
.productsWrapper .choose-plan-section--mobile .plan-card:nth-child(2) .plan-items li svg path {
  stroke: #ffffff;
}
.productsWrapper .choose-plan-section--mobile .plan-card:nth-child(2) .plan-button {
  background-color: #ffffff;
  color: #4a504c;
}
.productsWrapper .choose-plan-section--mobile .plan-card .plan-items li svg path {
  stroke: #0090ff;
}
.productsWrapper .choose-plan-section--mobile .plan-card .plan-button {
  background-color: #0090ff;
  color: #fff;
}

.product_overview {
  padding-bottom: 6.875rem;
}
@media only screen and (max-width: 767px) {
  .product_overview {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_overview {
    padding-bottom: 4rem;
  }
}
.product_overview__content {
  width: 76%;
  margin: auto;
  margin-top: -450px;
}
@media (max-width: 1300px) {
  .product_overview__content {
    margin-top: -113px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_overview__content {
    margin-top: -113px;
  }
}
@media only screen and (max-width: 767px) {
  .product_overview__content {
    margin-top: -113px;
    width: 100%;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_overview__content {
    margin-top: -113px;
    width: 100%;
  }
}
.product_overview__image {
  margin-bottom: 2.1875rem;
}
.product_overview__image img {
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  border-radius: 24px;
  border: 10px solid #4a504c;
}
@media only screen and (max-width: 767px) {
  .product_overview__image img {
    border: 5px solid #4a504c;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_overview__image img {
    border: 5px solid #4a504c;
  }
}
.product_overview .product_overview__title {
  color: #4a504c;
  font-size: 2.625rem;
  line-height: 3.1325rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767px) {
  .product_overview .product_overview__title {
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_overview .product_overview__title {
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
.product_overview__details {
  display: grid;
  gap: 3.125rem;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .product_overview__details {
    gap: 1.125rem;
    grid-template-columns: unset;
    padding-bottom: 1.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_overview__details {
    gap: 1.125rem;
    grid-template-columns: unset;
    padding-bottom: 1.5rem;
  }
}
.product_overview__details .product_overview__subtitle {
  color: #0090ff;
  font-size: 1.875rem;
  line-height: 2.2375rem;
  font-weight: 700;
  padding: 0.3125rem 0 1.25rem 0;
}
@media only screen and (max-width: 767px) {
  .product_overview__details .product_overview__subtitle {
    font-size: 1.25rem;
    line-height: 1.491875rem;
    padding: 0.75rem 0 0.375rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_overview__details .product_overview__subtitle {
    font-size: 1.25rem;
    line-height: 1.491875rem;
    padding: 0.75rem 0 0.375rem 0;
  }
}
.product_overview__details .product_overview__text {
  color: #323232;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .product_overview__details .product_overview__text {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_overview__details .product_overview__text {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
.product_overview__details .product_overview__items {
  list-style: none;
  display: grid;
  gap: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 767px) {
  .product_overview__details .product_overview__items {
    gap: 0.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_overview__details .product_overview__items {
    gap: 0.5rem;
  }
}
.product_overview__details .product_overview__items .product_overview__item {
  color: #323232;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .product_overview__details .product_overview__items .product_overview__item {
    font-size: 0.75rem;
    line-height: 1.75rem;
    gap: 0.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_overview__details .product_overview__items .product_overview__item {
    font-size: 0.75rem;
    line-height: 1.75rem;
    gap: 0.5rem;
  }
}
.product_overview__details .product_overview__items .product_overview__item .check-icon {
  width: 24px;
  height: 24px;
}
.product_overview .button-primary {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .product_overview .button-primary {
    width: 100%;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_overview .button-primary {
    width: 100%;
  }
}

.productsWrapper .heading_component {
  padding-bottom: 500px;
}
@media (max-width: 1300px) {
  .productsWrapper .heading_component {
    padding-bottom: 150px;
  }
}

.product_section {
  background-color: #eef3fa;
  padding: 9.375rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section {
    padding: 6.25rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .product_section {
    padding: 3rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .product_section .button-primary {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .button-primary {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.product_section__content {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section__content {
    grid-template-columns: unset;
    gap: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .product_section__content {
    grid-template-columns: unset;
    gap: 24px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content {
    grid-template-columns: unset;
    gap: 24px;
  }
}
.product_section__content .content-wrapper {
  display: grid;
  gap: 1.5625rem;
}
@media only screen and (max-width: 767px) {
  .product_section__content .content-wrapper {
    gap: 0.625rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content .content-wrapper {
    gap: 0.625rem;
  }
}
.product_section__content .image {
  position: absolute;
  right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section__content .image {
    position: unset;
    right: unset;
  }
}
@media only screen and (max-width: 767px) {
  .product_section__content .image {
    position: unset;
    right: unset;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content .image {
    position: unset;
    right: unset;
  }
}
.product_section__content .image img {
  height: 492px;
  -o-object-fit: cover;
     object-fit: cover;
  border-left: 10px solid #323232;
  border-top: 10px solid #323232;
  border-bottom: 10px solid #323232;
  -webkit-box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.1490196078);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}
@media (max-width: 1500px) {
  .product_section__content .image img {
    height: 370px;
  }
}
@media (max-width: 1100px) {
  .product_section__content .image img {
    height: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section__content .image img {
    border: 8px solid #323232;
    border-radius: 24px;
    width: 100%;
    height: 430px;
  }
}
@media only screen and (max-width: 767px) {
  .product_section__content .image img {
    border: 5px solid #323232;
    border-radius: 12px;
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content .image img {
    border: 5px solid #323232;
    border-radius: 12px;
    width: 100%;
    height: auto;
  }
}
.product_section__content .image2 {
  position: absolute;
  left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section__content .image2 {
    position: unset;
    left: unset;
  }
}
@media only screen and (max-width: 767px) {
  .product_section__content .image2 {
    position: unset;
    left: unset;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content .image2 {
    position: unset;
    left: unset;
  }
}
.product_section__content .image2 img {
  height: 492px;
  -o-object-fit: cover;
     object-fit: cover;
  border-right: 10px solid #323232;
  border-top: 10px solid #323232;
  border-bottom: 10px solid #323232;
  -webkit-box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.1490196078);
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}
@media (max-width: 1500px) {
  .product_section__content .image2 img {
    height: 370px;
  }
}
@media (max-width: 1100px) {
  .product_section__content .image2 img {
    height: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section__content .image2 img {
    border: 8px solid #323232;
    border-radius: 24px;
    width: 100%;
    height: 430px;
  }
}
@media only screen and (max-width: 767px) {
  .product_section__content .image2 img {
    border: 5px solid #323232;
    border-radius: 12px;
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content .image2 img {
    border: 5px solid #323232;
    border-radius: 12px;
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section__content .gap-div {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .product_section__content .gap-div {
    display: none;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content .gap-div {
    display: none;
  }
}
.product_section__content h1 {
  color: #4a504c;
  font-size: 2.625rem;
  line-height: 3.1325rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767px) {
  .product_section__content h1 {
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content h1 {
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
.product_section__content h2 {
  color: #0090ff;
  font-size: 1.875rem;
  line-height: 2.2375rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .product_section__content h2 {
    font-size: 1.25rem;
    line-height: 1.491875rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content h2 {
    font-size: 1.25rem;
    line-height: 1.491875rem;
  }
}
.product_section__content p {
  color: #4a504c;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .product_section__content p {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content p {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
.product_section__content .button {
  padding-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .product_section__content .button {
    padding-top: 0.625rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content .button {
    padding-top: 0.625rem;
  }
}
.product_section__content .items {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 767px) {
  .product_section__content .items {
    gap: 0.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content .items {
    gap: 0.5rem;
  }
}
.product_section__content .items li {
  color: #4a504c;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .product_section__content .items li {
    font-size: 0.75rem;
    line-height: 1.75rem;
    gap: 0.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section__content .items li {
    font-size: 0.75rem;
    line-height: 1.75rem;
    gap: 0.5rem;
  }
}
.product_section__content .items li .check-icon {
  width: 24px;
  height: 24px;
}
.product_section .analytics-overview {
  width: 80%;
  margin: auto;
  padding: 11.25rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section .analytics-overview {
    padding: 6.25rem 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .product_section .analytics-overview {
    width: 100%;
    padding: 4rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .analytics-overview {
    width: 100%;
    padding: 4rem 0;
  }
}
.product_section .analytics-overview img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 3rem 0 3.75rem 0;
  border: 10px solid #4a504c;
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  .product_section .analytics-overview img {
    border: 5px solid #4a504c;
    border-radius: 12px;
    margin: 1.5rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .analytics-overview img {
    border: 5px solid #4a504c;
    border-radius: 12px;
    margin: 1.5rem 0;
  }
}
.product_section .analytics-overview h2 {
  color: #4a504c;
  font-size: 2.625rem;
  line-height: 3.1325rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 767px) {
  .product_section .analytics-overview h2 {
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .analytics-overview h2 {
    font-size: 1.5rem;
    line-height: 1.79rem;
  }
}
.product_section .analytics-overview p {
  color: #4a504c;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .product_section .analytics-overview p {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .analytics-overview p {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
.product_section .analytics-overview .analytics-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section .analytics-overview .analytics-intro {
    display: grid;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .product_section .analytics-overview .analytics-intro {
    display: grid;
    gap: 6px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .analytics-overview .analytics-intro {
    display: grid;
    gap: 6px;
  }
}
.product_section .analytics-overview .analytics-intro img {
  width: 100%;
}
.product_section .analytics-overview .analytics-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.25rem;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section .analytics-overview .analytics-content {
    display: grid;
    gap: 2.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .product_section .analytics-overview .analytics-content {
    display: grid;
    gap: 1.5rem;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .analytics-overview .analytics-content {
    display: grid;
    gap: 1.5rem;
  }
}
.product_section .analytics-overview .analytics-content h3 {
  color: #4a504c;
  font-size: 1.875rem;
  line-height: 2.2375rem;
  font-weight: 700;
  padding: 0.3125rem 0 1.25rem 0;
}
@media only screen and (max-width: 767px) {
  .product_section .analytics-overview .analytics-content h3 {
    font-size: 1.25rem;
    line-height: 1.491875rem;
    padding: 0.75rem 0 0.375rem 0;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .analytics-overview .analytics-content h3 {
    font-size: 1.25rem;
    line-height: 1.491875rem;
    padding: 0.75rem 0 0.375rem 0;
  }
}
.product_section .analytics-overview .analytics-content .analytics-button {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section .analytics-overview .analytics-content .analytics-button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media only screen and (max-width: 767px) {
  .product_section .analytics-overview .analytics-content .analytics-button {
    width: 100%;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .analytics-overview .analytics-content .analytics-button {
    width: 100%;
  }
}
.product_section .forms-section {
  height: 420px;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product_section .forms-section {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .product_section .forms-section {
    height: auto;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .forms-section {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .product_section .forms-section .image2 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .product_section .forms-section .image2 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
