@charset "UTF-8";
@import "./fonts/stylesheet.css";
@import "./animate.css";
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #3e3e3e;
  line-height: 23px;
  letter-spacing: 0.025em;
  font-weight: 400;
  background: #fff;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #fff;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

.auto__container {
  position: relative;
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  font-weight: 700;
  font-size: 103px;
  line-height: 110%;
  font-family: "Houschka Rounded", sans-serif;
}

h2 {
  font-weight: 700;
  font-size: 58px;
  line-height: 120%;
  font-family: "Houschka Rounded", sans-serif;
}
h2.big {
  font-size: 73px;
  line-height: 110%;
}

h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  font-family: "Houschka Rounded", sans-serif;
}

h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 115%;
  font-family: "Houschka Rounded", sans-serif;
}

h6 {
  font-size: 22px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.025em;
}

p.big {
  font-size: 26px;
  line-height: 150%;
}
p.mid {
  font-size: 20px;
  line-height: 150%;
}

.main {
  overflow: hidden;
  padding-top: 116px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  line-height: 118%;
  font-weight: 400;
  letter-spacing: 0.025em;
  font-family: "Poppins", sans-serif;
  padding: 30px 34px;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}
.button.primary {
  background: linear-gradient(90deg, #496afe 0%, #6ee1f4 100%);
}
.button.primary:hover {
  opacity: 1;
}
.button.primary:hover::before {
  opacity: 1;
}
.button.primary::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #6ee1f4 0%, #496afe 100%);
  transition: 0.3s ease;
  opacity: 0;
}
.button.secondary {
  background: #fff;
  color: #000;
}
.button.secondary:hover {
  opacity: 1;
  background-color: #c0f3fd;
}
.button b {
  position: relative;
  z-index: 1;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}
.button span {
  width: 22px;
  height: 18px;
  display: flex;
  margin-left: 10px;
}
.button span img {
  width: 100%;
}

.input {
  display: flex;
}
.input input {
  width: 100%;
}

.input {
  position: relative;
}
.input input,
.input textarea {
  width: 100%;
  font-size: 17px;
  line-height: 100%;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: #358aff;
  font-family: "Poppins", sans-serif;
  padding: 12px 45px 12px 20px;
  border-radius: 5px;
  box-shadow: 6px 17px 18px #6e54d5;
  background-color: #fff;
}
.input input::placeholder,
.input textarea::placeholder {
  color: #358aff;
}
.input span {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  transform: translateY(-50%);
}
.input span img {
  width: 100%;
}

.captcha {
  width: 304px;
  display: flex;
}
.captcha img,
.captcha iframe,
.captcha div {
  width: 100%;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation-name: sticky;
  animation-duration: 0.4s;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1294117647);
}
.header__inner {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 116px;
}
.header__inner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 266px;
}
.header__inner-logo img {
  width: 100%;
}
.header__inner-text {
  width: calc(100% - 300px);
  max-width: 1200px;
  padding-top: 10px;
  text-align: end;
}
.header__inner h4 {
  color: #2cc9fd;
  letter-spacing: 0;
}
.header__inner h4.mob {
  display: none;
}
.header__inner h4 span {
  color: #15fa30;
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.footer {
  background: linear-gradient(90deg, #4a80ff 0%, #955dff 100%);
  color: #fff;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 95px 0 85px;
  max-width: 1320px;
  margin: 0 auto;
}
.footerContent {
  width: calc(45% - 15px);
  max-width: 500px;
}
.footerContent h2 {
  margin-bottom: 30px;
}
.footerContent p b {
  font-weight: 600;
}
.footerForm {
  width: calc(55% - 15px);
  max-width: 615px;
}
.footerForm__col {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.footerForm__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footerForm button {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.125px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #308cff;
  color: #fff;
  text-transform: uppercase;
  padding: 13px 30px;
  resize: unset;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}
.footerForm button:hover {
  background-color: #3e3e3e;
}
.footerForm .input {
  margin-bottom: 28px;
}
.footerForm .input:last-child {
  margin: 0;
}

.copy {
  background-color: #e4e4e4;
  padding: 12px 0;
}
.copy__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copy__inner p {
  color: #000;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 100%;
}

.footer {
  background: -webkit-gradient(linear, left top, right top, from(#4a80ff), to(#955dff));
  background: linear-gradient(90deg, #4a80ff 0%, #955dff 100%);
  color: #fff;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 95px 0 85px;
  max-width: 1320px;
  margin: 0 auto;
}

.footerContent {
  width: calc(45% - 15px);
  max-width: 500px;
}

.footerContent h2 {
  margin-bottom: 30px;
}

.footerContent p b {
  font-weight: 600;
}

.footerForm {
  width: calc(55% - 15px);
  max-width: 615px;
}

.footerForm__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 28px;
}

.footerForm__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footerForm button {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.125px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #308cff;
  color: #fff;
  text-transform: uppercase;
  padding: 13px 30px;
  resize: unset;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footerForm button:hover {
  background-color: #3e3e3e;
}

.footerForm .input {
  margin-bottom: 28px;
}

.footerForm .input:last-child {
  margin: 0;
}

.copy {
  background-color: #e4e4e4;
  padding: 12px 0;
}

.copy__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.copy__inner p {
  color: #000;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 100%;
}

/* Custom Popup Styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup__content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.popup.active .popup__content {
  transform: translateY(0);
  opacity: 1;
}

.popup__content.success {
  border-top: 4px solid #4CAF50;
}

.popup__content.error {
  border-top: 4px solid #f44336;
}

.popup__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.popup__message {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

.popup__section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.popup__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popup__field {
  margin-bottom: 12px;
}

.popup__field:last-child {
  margin-bottom: 0;
}

.popup__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.popup__field strong {
  color: #4866ff;
  font-size: 14px;
}

.popup__close {
  background: linear-gradient(90deg, #4a80ff 0%, #955dff 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: block;
  width: 100%;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
}

.popup__close:hover {
  opacity: 0.9;
}

@media (max-width: 480px) {
  .popup__content {
    padding: 20px;
  }
  .popup__title {
    font-size: 18px;
  }
  .popup__message {
    font-size: 14px;
  }
  .popup__grid {
    grid-template-columns: 1fr;
  }
  .popup__close {
    padding: 8px 20px;
    font-size: 14px;
  }
}
/* Newsletter Signup Section */
.newsletter-signup {
  padding: 40px 0; /* Add some padding */
  text-align: center; /* Center the content */
}

.newsletter-signup h2 {
  margin-bottom: 30px; /* Space below the heading */
  font-size: 36px; /* Adjust heading size as needed */
  color: #fff; /* Heading color - assuming it's on the purple background */
}

.newsletter-form-element {
  max-width: 600px; /* Max width of the form */
  margin: 0 auto; /* Center the form */
}

.newsletter-form-group {
  display: flex;
  border-radius: 8px; /* Rounded corners for the group */
  overflow: hidden; /* Keep input and button contained */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.newsletter-input {
  flex-grow: 1; /* Allow input to take available space */
  padding: 15px 20px; /* Padding inside the input */
  border: 1px solid #ccc; /* Border for the input */
  border-right: none; /* Remove right border to connect with button */
  font-size: 16px;
  border-radius: 8px 0 0 8px; /* Rounded corners on the left */
  color: #333; /* Text color */
  background-color: #fff; /* Background color */
}

.newsletter-input::placeholder {
  color: #999; /* Placeholder text color */
}

.newsletter-button {
  padding: 15px 30px; /* Padding for the button */
  background-color: #496afe; /* Button background color (from your primary button) */
  color: white; /* Button text color */
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0 8px 8px 0; /* Rounded corners on the right */
  transition: background-color 0.3s ease;
  white-space: nowrap; /* Prevent button text from wrapping */
}

.newsletter-button:hover {
  background-color: #3a58d4; /* Darker shade on hover */
}

/* Responsive adjustments for newsletter */
@media (max-width: 768px) {
  .newsletter-signup h2 {
    font-size: 28px; /* Smaller heading on smaller screens */
  }
  .newsletter-form-group {
    flex-direction: column; /* Stack input and button on smaller screens */
    border-radius: 8px; /* Adjust radius for stacked layout */
    box-shadow: none;
  }
  .newsletter-input {
    border-radius: 8px 8px 0 0; /* Top corners rounded */
    border: 1px solid #ccc; /* Re-add border for stacked layout */
    margin-bottom: 10px; /* Space between input and button */
  }
  .newsletter-button {
    border-radius: 0 0 8px 8px; /* Bottom corners rounded */
    width: 100%; /* Full width button on small screens */
  }
}
@media (max-width: 480px) {
  .newsletter-signup h2 {
    font-size: 24px;
  }
  .newsletter-input,
  .newsletter-button {
    font-size: 14px;
    padding: 12px 15px;
  }
  .newsletter-input {
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .newsletter-button {
    border-radius: 8px;
  }
}
.cta__wrapper {
  column-gap: 38px;
  row-gap: 20px;
  display: flex;
}
.cta__wrapper .cta__text {
  font-size: 26px;
  font-family: "Houschka Rounded", sans-serif;
  width: 300px;
  text-align: right;
  line-height: 1.6;
}

.hero {
  position: relative;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
}
.hero__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, hsla(0, 0%, 0%, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: right;
}
.hero__bg img.mob {
  display: none;
}
.hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 60px 0 90px;
  position: relative;
  z-index: 2;
}
.hero__inner-content {
  width: calc(68% - 25px);
  max-width: 776px;
}
.hero__inner-image {
  width: calc(32% - 25px);
  max-width: 340px;
  display: flex;
  right: 150px;
  position: relative;
}
.hero__inner-image img {
  width: 100%;
}
.hero__inner h1 {
  padding-bottom: 24px;
  border-bottom: 2px solid #fff;
  margin-bottom: 29px;
}
.hero__inner p {
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  font-family: "Houschka Rounded", sans-serif;
  font-weight: 700;
}

.reclaim-your-health {
  padding: 90px 0;
}
.reclaim-your-health .auto__container .reclaim-your-health__inner .title {
  text-align: center;
  color: #4866ff;
}
.reclaim-your-health .auto__container .reclaim-your-health__inner .sub-title {
  font-size: 22.5px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  position: relative;
  padding-bottom: 41px;
}
.reclaim-your-health .auto__container .reclaim-your-health__inner .sub-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #787876;
  width: 80px;
  height: 3px;
}
.reclaim-your-health .auto__container .reclaim-your-health__inner .checks {
  display: flex;
  list-style: none;
  column-gap: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  position: relative;
  left: -20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  row-gap: 36px;
}
.reclaim-your-health .auto__container .reclaim-your-health__inner .checks li {
  font-size: 25px;
  text-align: center;
  line-height: 1.6;
}
.reclaim-your-health .auto__container .reclaim-your-health__inner p {
  text-align: center;
  margin: 0 auto 20px;
  letter-spacing: 0.5px;
}
.reclaim-your-health .auto__container .reclaim-your-health__inner .middle-line {
  max-width: 1028px;
}
.reclaim-your-health .auto__container .reclaim-your-health__inner .last-line {
  max-width: 768px;
}
.reclaim-your-health .auto__container .reclaim-your-health__inner .cta__wrapper {
  justify-content: center;
  margin-top: 62px;
}
.reclaim-your-health .auto__container .reclaim-your-health__inner .cta__wrapper .cta__text {
  color: #4866ff;
}

.why-choose {
  padding: 90px 0;
  position: relative;
}
.why-choose::after {
  content: "";
  position: absolute;
  background: url("../images/why-choose-bg.png");
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  opacity: 0.12;
  top: 0;
  left: 0;
}
.why-choose .auto__container {
  position: relative;
  z-index: 1;
}
.why-choose .auto__container .why-choose__inner .title {
  text-align: center;
  color: #4866ff;
}
.why-choose .auto__container .why-choose__inner .features {
  display: flex;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 110px;
  row-gap: 80px;
}
.why-choose .auto__container .why-choose__inner .features .feature {
  width: 300px;
}
.why-choose .auto__container .why-choose__inner .features .feature img {
  margin-bottom: 15px;
}
.why-choose .auto__container .why-choose__inner .features .feature .title {
  font-size: 30px;
  text-align: left;
  margin-bottom: 20px;
  max-width: 270px;
  text-align: left;
}
.why-choose .auto__container .why-choose__inner .features .feature p {
  font-size: 17px;
}
.why-choose .auto__container .why-choose__inner .cta__wrapper {
  justify-content: center;
  margin-top: 40px;
}
.why-choose .auto__container .why-choose__inner .cta__wrapper .cta__text {
  color: #4866ff;
}

.limited-time-offer {
  padding: 90px 0;
  position: relative;
}
.limited-time-offer::after {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #955dff, #4a80ff);
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  top: 0;
  left: 0;
}
.limited-time-offer .auto__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  column-gap: 194px;
}
.limited-time-offer .auto__container .limited-time-offer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.limited-time-offer .auto__container .limited-time-offer__inner .title {
  color: white;
  font-size: 40px;
  margin-bottom: 30px;
}
.limited-time-offer .auto__container .limited-time-offer__inner .offerings {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
.limited-time-offer .auto__container .limited-time-offer__inner .offerings li {
  color: white;
  font-size: 21px;
  line-height: 1.6;
}
.limited-time-offer .auto__container .limited-time-offer__inner .cta__wrapper {
  justify-content: center;
  margin-top: 40px;
}
.limited-time-offer .auto__container .limited-time-offer__inner .cta__wrapper .cta__text {
  color: white;
}
.limited-time-offer .auto__container .limited-time-offer__inner .cta__wrapper .button {
  background: white;
  color: black;
}

.dont-just-survive {
  padding: 90px 0;
  position: relative;
  text-align: center;
}
.dont-just-survive::after {
  content: "";
  position: absolute;
  background: url("/images/dont-just-strive-bg.png");
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  top: 0;
  left: 0;
  opacity: 0.12;
}
.dont-just-survive .auto__container {
  position: relative;
  z-index: 1;
}
.dont-just-survive .auto__container .dont-just-survive__inner .title {
  font-size: 58px;
  margin-bottom: 30px;
  color: #4866ff;
}
.dont-just-survive .auto__container .dont-just-survive__inner .sub-title {
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 41px;
  line-height: 1.6;
}
.dont-just-survive .auto__container .dont-just-survive__inner .sub-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #787876;
  width: 80px;
  height: 3px;
}
.dont-just-survive .auto__container .dont-just-survive__inner p {
  font-size: 17px;
}
.dont-just-survive .auto__container .dont-just-survive__inner .cta__wrapper {
  justify-content: center;
}
.dont-just-survive .auto__container .dont-just-survive__inner .cta__wrapper .button {
  font-size: 22px;
  margin-top: 46px;
}
.dont-just-survive .auto__container .dont-just-survive__inner .cta__wrapper .button span {
  width: 22px;
  flex: 0 0 22px;
}

.about {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.about__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}
.about__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 920px;
  display: flex;
}
.about__bg-image img {
  width: 100%;
  opacity: 0.1;
}
.about__inner {
  position: relative;
  z-index: 1;
}
.about__inner-title {
  text-align: center;
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 44px;
}
.about__inner-title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 1px;
  content: "";
  background-color: #787877;
  transform: translateX(-50%);
}
.about__inner-title h6 {
  margin-bottom: 20px;
  color: #3e3e3e;
  text-transform: uppercase;
}
.about__inner-title h2 {
  color: #4866ff;
}
.about__inner-content {
  max-width: 1010px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__inner-content p {
  width: 100%;
  margin-bottom: 30px;
}
.about__inner-content .cta__wrapper {
  color: #4866ff;
}

.info {
  background: linear-gradient(90deg, #955dff 0%, #4a80ff 100%);
  padding: 80px 0;
  color: #fff;
}
.info__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.infoContent {
  width: calc(50% - 15px);
  max-width: 510px;
}
.infoContent p {
  margin-bottom: 35px;
}
.infoContent .cta__wrapper {
  width: 600px;
}
.infoContent .cta__wrapper .button {
  background: white;
  color: black;
}
.infoImage {
  width: calc(50% - 15px);
  max-width: 540px;
}
.infoImage__inner {
  padding-bottom: 76%;
  position: relative;
}
.infoImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.help {
  position: relative;
  padding: 100px 0;
}
.help.big {
  padding: 120px 0 70px;
}
.help__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
}
.help__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 0.08;
}
.help__inner-row {
  display: flex;
  justify-content: space-between;
}
.help__inner-slider {
  position: relative;
  padding-bottom: 80px;
  margin: 0 -12px;
}
.help__inner-foot {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.help__inner .cta__wrapper {
  color: #4866ff;
}
.help__inner .slick-track {
  display: flex !important;
}
.help__inner .slick-slide {
  height: unset !important;
  margin: 0 12px;
}
.help__inner .slick-arrow {
  width: 26px;
  height: 26px;
  background-color: #434343;
  border-radius: 50%;
  position: absolute;
  top: unset;
  bottom: 0;
  transform: translate(0);
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 3;
}
.help__inner .slick-arrow:hover {
  background-color: #3d8eff;
}
.help__inner .slick-arrow:focus {
  background-color: #3d8eff;
}
.help__inner .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 35%;
  background: url("../images/icons/slider-arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1 !important;
  pointer-events: none;
}
.help__inner .slick-prev {
  left: unset;
  right: calc(50% + 100px);
}
.help__inner .slick-next {
  left: calc(50% + 100px);
}
.help__inner .slick-next::before {
  transform: translate(-50%, -50%) scaleX(-1);
}
.help__inner .slick-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.help__inner .slick-dots li {
  display: flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #434343;
  position: relative;
  transition: 0.3s ease;
  margin: 0 20px 0 0;
}
.help__inner .slick-dots li.slick-active {
  background-color: #3d8eff;
}
.help__inner .slick-dots li.slick-active::before {
  opacity: 0;
}
.help__inner .slick-dots li:hover {
  background-color: #3d8eff;
}
.help__inner .slick-dots li:hover::before {
  opacity: 0;
}
.help__inner .slick-dots li::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  content: "";
  transition: 0.3s ease;
  transform: translate(-50%, -50%);
}
.help__inner .slick-dots li:last-child {
  margin: 0;
}
.help__inner .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.help__inner .slick-dots li button::before {
  display: none;
}
.helpItem {
  width: calc(33.3% - 15px);
  padding-left: 85px;
  position: relative;
  display: flex !important;
  flex-direction: column;
}
.helpItem__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  display: flex;
}
.helpItem__icon img {
  width: 100%;
}
.helpItem h3 {
  margin-bottom: 24px;
  color: #4866ff;
  line-height: 110%;
}
.helpItem p {
  max-width: 370px;
  margin-bottom: 26px;
}
.helpItem p:last-child {
  margin: 0;
}
.helpItem a {
  margin: auto 0 0 0;
  font-size: 118%;
  line-height: 100%;
  text-transform: uppercase;
  color: #4866ff;
  font-weight: 400;
}
.helpItem a:hover {
  opacity: 1;
  color: #6ee1f4;
}

.banner {
  padding: 85px 0 80px;
}
.banner__inner-title {
  text-align: center;
  margin-bottom: 44px;
}
.banner__inner-title h2 {
  color: #4866ff;
  margin-bottom: 16px;
}
.banner__inner-foot {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.banner__inner-foot .cta__wrapper {
  color: #4866ff;
}
.bannerVideo {
  width: 100%;
  max-width: 866px;
  margin: 0 auto;
}
.bannerVideo__inner {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}
.bannerVideo__inner img,
.bannerVideo__inner video,
.bannerVideo__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.disclaimer {
  padding: 80px 0 70px;
}
.disclaimer__inner-content {
  text-align: center;
  max-width: 1010px;
  margin: 0 auto;
}
.disclaimer__inner h6 {
  margin-bottom: 40px;
  text-transform: uppercase;
}
.disclaimer__inner .cta__wrapper {
  color: white;
}
.disclaimer__inner .cta__wrapper .button {
  background: white;
  color: black;
}

.helpItem p {
  max-width: 370px;
  margin-bottom: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.helpItem p.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: none;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 90px;
  }
  h4 {
    font-size: 24px;
  }
}
@media (max-width: 1380px) {
  .main {
    padding-top: 106px;
  }
  h1 {
    font-size: 80px;
  }
  h2 {
    font-size: 50px;
  }
  h2.big {
    font-size: 65px;
  }
  p.big {
    font-size: 23px;
  }
  .button {
    font-size: 20px;
    padding: 25px 30px;
  }
  .button span {
    width: 20px;
    height: 16px;
  }
  .header__inner {
    height: 106px;
    align-items: center;
  }
  .header__inner-logo {
    width: 230px;
  }
  .header__inner-text {
    width: calc(100% - 260px);
    padding: 0;
  }
  .header__inner-text span {
    display: block;
  }
  .header__inner-text h4 {
    line-height: 120%;
  }
  .help {
    padding: 85px 0;
  }
  .help.big {
    padding: 100px 0 70px;
  }
  .helpItem {
    padding-left: 60px;
  }
  .helpItem__icon {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 1250px) {
  .hero__inner-image {
    right: 0;
    position: relative;
  }
  .limited-time-offer .limited-time-offer__inner {
    width: 47%;
  }
  .limited-time-offer .image-container {
    width: 35%;
  }
  .limited-time-offer .image-container img {
    width: 100%;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }
  h1 {
    font-size: 70px;
  }
  h2 {
    font-size: 45px;
  }
  h2.big {
    font-size: 60px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 22px;
  }
  h6 {
    font-size: 20px;
  }
  p.big {
    font-size: 20px;
  }
  p.mid {
    font-size: 18px;
  }
  body {
    font-size: 16px;
    line-height: 135%;
  }
  .main {
    padding-top: 96px;
  }
  .header__inner {
    height: 96px;
  }
  .header__inner-logo {
    width: 200px;
  }
  .header__inner-text {
    width: calc(100% - 230px);
  }
  .hero__inner {
    padding: 50px 0 70px;
  }
  .hero__inner-content {
    width: calc(65% - 25px);
  }
  .hero__inner-image {
    width: calc(35% - 25px);
  }
  .about {
    padding: 70px 0;
  }
  .about__bg-image {
    transform: translateX(30%);
  }
  .about__inner-title {
    padding-bottom: 18px;
    margin-bottom: 34px;
  }
  .about__inner-title h6 {
    margin-bottom: 12px;
  }
  .info {
    padding: 65px 0;
  }
  .infoContent p {
    margin-bottom: 24px;
  }
  .infoContent .cta__wrapper {
    width: 100%;
  }
  .help {
    padding: 60px 0;
  }
  .help.big {
    padding: 70px 0 60px;
  }
  .help__inner-foot {
    padding-top: 40px;
  }
  .help__inner-slider {
    margin: 0 -8px;
  }
  .help__inner .slick-slide {
    margin: 0 8px;
  }
  .helpItem {
    width: calc(33.3% - 6px);
    padding-left: 50px;
  }
  .helpItem__icon {
    width: 38px;
    height: 38px;
  }
  .helpItem h3 {
    margin-bottom: 18px;
  }
  .disclaimer {
    padding: 65px 0;
  }
  .disclaimer__inner h6 {
    margin-bottom: 30px;
  }
  .footer__inner {
    padding: 70px 0;
  }
  .footerForm__col {
    margin-bottom: 24px;
  }
  .footerForm .input {
    margin-bottom: 20px;
  }
  .footerForm .captcha {
    width: calc(100% - 150px);
    max-width: 300px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }
  h1 {
    font-size: 65px;
  }
  h2 {
    font-size: 40px;
  }
  h2.big {
    font-size: 55px;
  }
  p.big {
    font-size: 18px;
  }
  body {
    font-size: 14px;
  }
  .limited-time-offer {
    padding: 50px 0;
  }
  .limited-time-offer .image-container {
    width: 47%;
  }
  .reclaim-your-health {
    padding: 50px 0;
  }
  .reclaim-your-health .auto__container .reclaim-your-health__inner .checks {
    left: 0;
    margin-bottom: 26px;
  }
  .reclaim-your-health .auto__container .reclaim-your-health__inner .cta__wrapper {
    margin-top: 32px;
  }
  .why-choose {
    padding: 50px 0;
  }
  .why-choose .auto__container .why-choose__inner .features .feature .title {
    max-width: 100%;
    font-size: 26px;
  }
  .dont-just-survive {
    padding: 50px 0;
  }
  .dont-just-survive .auto__container .dont-just-survive__inner .title {
    font-size: 45px;
  }
}
@media (max-width: 930px) {
  h1 {
    font-size: 55px;
  }
  h2.big {
    font-size: 45px;
  }
  h4 {
    font-size: 20px;
  }
  p.big {
    font-size: 16px;
  }
  p.mid {
    font-size: 16px;
  }
  .main {
    padding-top: 88px;
  }
  .button {
    font-size: 18px;
    padding: 22px 26px;
  }
  .button span {
    width: 18px;
    height: 14px;
    margin-left: 7px;
  }
  .input input,
  .input textarea {
    font-size: 15px;
    padding: 11px 40px 11px 18px;
    box-shadow: 5px 12px 12px #6e54d5;
  }
  .input span {
    width: 32px;
    height: 32px;
  }
  .header__inner {
    height: 88px;
  }
  .header__inner-logo {
    width: 170px;
  }
  .header__inner-text {
    width: calc(100% - 200px);
  }
  .hero__inner {
    padding: 40px 0 60px;
  }
  .hero__inner-content {
    width: calc(65% - 20px);
  }
  .hero__inner-image {
    width: calc(35% - 20px);
  }
  .hero__inner h1 {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
  .info {
    padding: 50px 0;
  }
  .infoContent p {
    margin-bottom: 20px;
  }
  .help {
    padding: 50px 0;
  }
  .help.big {
    padding: 55px 0;
  }
  .help__inner-row {
    flex-direction: column;
  }
  .help__inner-foot {
    padding-top: 35px;
  }
  .help__inner-slider {
    padding-bottom: 50px;
  }
  .help__inner .slick-arrow {
    width: 22px;
    height: 22px;
  }
  .help__inner .slick-arrow::before {
    width: 50%;
    height: 30%;
  }
  .help__inner .slick-prev {
    right: calc(50% + 84px);
  }
  .help__inner .slick-next {
    left: calc(50% + 84px);
  }
  .help__inner .slick-dots li {
    width: 22px;
    height: 22px;
    margin-right: 16px;
  }
  .help__inner .slick-dots li::before {
    width: 6px;
    height: 6px;
  }
  .helpItem {
    width: 100%;
    margin-bottom: 30px;
    padding-left: 60px;
  }
  .helpItem:last-child {
    margin: 0;
  }
  .helpItem__icon {
    width: 44px;
    height: 44px;
  }
  .helpItem p {
    max-width: unset;
    font-size: 16px;
    line-height: 135%;
  }
  .banner {
    padding: 65px 0;
  }
  .banner__inner-foot {
    padding-top: 40px;
  }
  .disclaimer {
    padding: 50px 0;
  }
  .disclaimer__inner h6 {
    margin-bottom: 22px;
  }
  .footer__inner {
    padding: 60px 0;
  }
  .footerContent {
    width: calc(42% - 15px);
  }
  .footerContent h2 {
    margin-bottom: 24px;
  }
  .footerForm {
    width: calc(58% - 15px);
  }
  .footerForm button {
    font-size: 18px;
    padding: 12px 30px;
  }
  .copy {
    padding: 15px 0;
  }
  .copy__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .copy__inner p {
    margin-bottom: 14px;
    line-height: 130%;
  }
  .copy__inner p:last-child {
    margin: 0;
  }
  .why-choose .auto__container .why-choose__inner .features .feature {
    text-align: center;
  }
  .why-choose .auto__container .why-choose__inner .features .feature .title {
    text-align: center;
  }
  .auto__container {
    flex-direction: column;
  }
  .limited-time-offer .limited-time-offer__inner {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
  .limited-time-offer .image-container {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 35px;
  }
  h2.big {
    font-size: 40px;
  }
  h6 {
    font-size: 18px;
  }
  .main {
    padding-top: 80px;
  }
  .header__inner {
    height: 80px;
  }
  .header__inner-logo {
    width: 135px;
  }
  .header__inner-text {
    width: calc(100% - 150px);
  }
  .header__inner h4 {
    font-size: 16px;
  }
  .hero__inner {
    flex-direction: column;
    padding: 40px 0;
  }
  .hero__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 24px;
  }
  .hero__inner-image {
    width: 65%;
  }
  .about {
    padding: 55px 0;
  }
  .about__bg-image {
    width: 700px;
    top: 50%;
    transform: translate(30%, -35%);
  }
  .info__inner {
    flex-direction: column;
  }
  .infoContent {
    width: 100%;
    max-width: unset;
  }
  .infoImage {
    width: 100%;
    max-width: unset;
    order: -1;
    margin-bottom: 24px;
  }
  .banner {
    padding: 50px 0;
  }
  .banner__inner-title {
    margin-bottom: 35px;
  }
  .banner__inner-foot {
    padding-top: 35px;
  }
  .footer__inner {
    padding: 50px 0;
    flex-direction: column;
  }
  .footerContent {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .footerContent h2 {
    margin-bottom: 18px;
  }
  .footerForm {
    width: 100%;
    max-width: unset;
  }
  .footerForm button {
    font-size: 18px;
    padding: 12px 30px;
  }
}
@media (max-width: 540px) {
  .main {
    padding-top: 70px;
  }
  h2 {
    font-size: 30px;
  }
  h6 {
    font-size: 16px;
  }
  .button {
    font-size: 16px;
    padding: 16px 22px;
  }
  .button span {
    width: 16px;
    height: 12px;
  }
  .header__inner {
    height: 70px;
  }
  .header__inner-logo {
    width: 110px;
  }
  .header__inner-text {
    width: calc(100% - 115px);
  }
  .header__inner h4 {
    font-size: 14px;
    display: none;
  }
  .header__inner h4.mob {
    display: block;
  }
  .hero__bg::before {
    background: #000000;
    opacity: 0.3;
  }
  .hero__bg img {
    object-position: unset;
  }
  .hero__inner h1 {
    border-width: 1px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
  .about {
    padding: 45px 0;
  }
  .about__inner-title {
    padding-bottom: 15px;
    margin-bottom: 22px;
  }
  .about__inner-title h6 {
    margin-bottom: 8px;
  }
  .info {
    padding: 45px 0;
  }
  .help {
    padding: 45px 0;
  }
  .help.big {
    padding: 45px 0;
  }
  .helpItem {
    margin-bottom: 24px;
    padding-left: 50px;
  }
  .helpItem__icon {
    width: 36px;
    height: 36px;
  }
  .helpItem p {
    font-size: 14px;
  }
  .helpItem h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 14px;
  }
  .banner {
    padding: 45px 0;
  }
  .banner__inner-title {
    margin-bottom: 24px;
  }
  .banner__inner-title h2 {
    margin-bottom: 12px;
  }
  .banner__inner-foot {
    padding-top: 30px;
  }
  .disclaimer {
    padding: 40px 0;
  }
  .disclaimer__inner h6 {
    margin-bottom: 16px;
  }
  .footer {
    background: linear-gradient(135deg, #4a80ff 0%, #955dff 100%);
  }
  .footer__inner {
    padding: 45px 0;
  }
  .footerForm__col {
    margin-bottom: 20px;
  }
  .footerForm__foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .footerForm__foot button {
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
    padding: 15px 30px;
  }
  .footerForm .captcha {
    width: 100%;
  }
  .copy__inner p {
    margin-bottom: 12px;
    font-size: 11px;
  }
  .cta__wrapper {
    flex-direction: column;
  }
  .cta__wrapper .cta__text {
    width: 100%;
    text-align: center;
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-dotted.slick-slider .slick-dots {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.slick-dots {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*# sourceMappingURL=main.css.map */
