/*!
Theme Name: 4Evolution
Theme URI: http://underscores.me/
Author: Kerem ER
Author URI: https://kkerem.com
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: evolution
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

4Evolution is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
.modalVideo__overlay {z-index: -9 !important;}
.modal__header__close span {color: var(--c-white) !important;}
.modal__header {background:none !important;}



@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
a[href^=tel] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css propery: value; pairs here */
}



/*RESET CSS*/ 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; } * { box-sizing: border-box; } a, a:visited, a:active { text-decoration: none; } 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 { display: block; }

:root {
  --c-main:#2B3676;
  --c-white:#FFFFFF;
  --c-black:#000;
  --c-gray-dark:#444;
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background: #F5F7F9;
}
body.overflowY {
  overflow-y: hidden;
}

h1,
h2,
h3 {
  color: var(--c-dark);
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  text-decoration: none;
  transition: 200ms ease-in-out;
  -webkit-transition-property: color, background-color, opacity;
  transition-property: color, background-color, opacity;
  -webkit-transition: 200ms ease-in-out;
  -moz-transition: 200ms ease-in-out;
  -ms-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
}

img {
  display: block;
  width: 100%;
  height: auto;
}
img.icon {
  width: 24px;
  height: 24px;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.container {
  width: min(1184px, 100% - 32px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

.noScroll {
  overflow-y: hidden;
}

.btnWhite {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--c-white);
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.btnWhite span {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--c-main);
}
.btnMain {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--c-main);
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 24px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.btnMain span {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--c-white);
}

.header {
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 9;
  padding: 32px 0;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.header .logo a img {
  width: 128px;
  height: 128px;
}
.headerSecond {
  width: 100%;
  height: 192px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.headerSecond img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .header {
    padding: 16px 0;
  }
  .header__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .logo a img {
    width: 80px;
    height: 80px;
  }
  .headerSecond {
    height: 112px;
  }
  .headerSecond img {
    -o-object-position: -32px;
       object-position: -32px;
  }
}

.footer {
  padding: 24px 0;
  background: var(--c-white);
  width: 100%;
  text-align: center;
}
.footer p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--c-gray-dark);
}

.modal {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background: #F5F7F9;
  z-index: 999;
  overflow-y: scroll;
  padding-bottom: 40px;
  display: none;
}
.modal__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 0;
  background: #F5F7F9;
}
.modal__header__close {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal__header__close span {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  color: var(--c-main);
}
.modal__header__close img {
  width: 24px;
  height: 24px;
}
.modal__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal__content {
  background: var(--c-white);
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  display: block;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.modalTabel {
  width: 100%;
}
.modalTabel__plansLogo .plansLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modalTabel__plansLogo .plansLogo img {
  width: 40px;
  height: 40px;
}
.modalTabel__plansLogo .plansLogo span {
  font-weight: 700;
  font-size: 24px;
  line-height: 29.05px;
  color: var(--c-gray-dark);
}
.modalTabel__header th {
  vertical-align: bottom !important;
  text-align: left;
  padding: 0 0 24px 24px;
}
.modalTabel__header th span {
  font-weight: 700 !important;
  font-size: 24px !important;
  line-height: 29.05px !important;
  color: var(--c-gray-dark);
}
.modalTabel th {
  min-width: 360px;
  width: 360px;
  padding: 16px 24px;
  vertical-align: middle;
}
.modalTabel th span {
  font-weight: 600;
  font-size: 16px;
  line-height: 19.36px;
  color: var(--c-gray-dark);
}
.modalTabel tr {
  text-align: left;
}
.modalTabel tr:not(:last-child) {
  border-bottom: 1px solid #F5F7F9;
}
.modalTabel tr td {
  min-width: 206px;
  width: auto;
  padding: 16px 0;
  border-left: 1px solid #F5F7F9;
}
.modalTabel tr td > img {
  margin: 0 auto;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .modalTabel th {
    min-width: 200px;
    width: 200px;
    padding: 16px;
  }
  .modalTabel th span {
    font-size: 14px;
    line-height: 16.94px;
  }
  .modalTabel tr td {
    vertical-align: middle;
    min-width: 122px;
  }
  .modalTabel__plansLogo .plansLogo img {
    width: 24px;
    height: 24px;
  }
  .modalTabel__plansLogo .plansLogo span {
    font-size: 16px;
    line-height: 19.36px;
  }
  .modalTabel__header th span {
    font-size: 16px !important;
    line-height: 16.94px !important;
  }
}

.modalLogin {
  padding: 0;
  overflow-y: unset;
}
.modalLogin .modal__wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
}
.modalLogin__hero {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  height: 100%;
}
.modalLogin__hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modalLogin__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modalLogin__close {
  position: absolute;
  top: 16px;
  right: 16px;
  height: 40px;
  background: var(--c-white);
  padding: 0 16px;
  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: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.modalLogin__close span {
  font-weight: 700;
  font-size: 14px;
  line-height: 16.94px;
  color: var(--c-main);
}
.modalLogin__form {
  width: 464px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
}
.modalLogin__form > span {
  font-weight: 700;
  font-size: 24px;
  line-height: 29.05px;
  color: var(--c-main);
}
.modalLogin__register {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--c-white);
  padding: 32px;
}
.modalLogin__register .registerBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  background: var(--c-white);
  padding: 20px 16px 20px 24px;
}
.modalLogin__register .registerBox .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
.modalLogin__register .registerBox .title img {
  width: 32px;
  height: 32px;
}
.modalLogin__register .registerBox .title span {
  font-weight: 700;
  font-size: 18px;
  line-height: 21.78px;
  color: var(--c-main);
}
.modalLogin__register .registerBox a span {
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 768px) {
  .modalLogin .modal__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .modalLogin__hero {
    height: 280px;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
  .modalLogin__content {
    position: unset;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 34px 16px;
  }
  .modalLogin__form {
    width: 100%;
    row-gap: 16px;
  }
  .modalLogin__form > span {
    font-size: 16px;
    line-height: 19.36px;
  }
  .modalLogin__register {
    padding: 16px;
  }
}

.modalForm {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modalForm__item {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
}
.modalForm__item label {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  color: var(--c-gray-dark);
}
.modalForm__item:has(.remamber) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modalForm__item input[type=password], .modalForm__item input[type=email] {
  height: 48px;
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: var(--c-white);
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 0 16px;
  font-family: Inter;
  color: var(--c-gray-dark);
}
.modalForm__item .remamber label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 24px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modalForm__item .remamber label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.modalForm__item .remamber label input:checked ~ .checkmark:after {
  opacity: 1;
}
.modalForm__item .remamber label span {
  font-weight: 500;
  font-size: 14px;
  line-height: 16.94px;
  color: var(--c-gray-dark);
}
.modalForm__item .remamber label .checkmark {
  position: relative;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.modalForm__item .remamber label .checkmark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg class='svg-inline--fa fa-check fa-w-16' aria-hidden='true' data-prefix='fas' data-icon='check' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' data-fa-i2svg=''%3E%3Cpath fill='%232B3676' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  background-position: 0 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}
.modalForm__item .forgetPass {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.modalForm__item .forgetPass img {
  width: 24px;
  height: 24px;
}
.modalForm__item .forgetPass span {
  font-weight: 500;
  font-size: 14px;
  line-height: 16.94px;
  color: var(--c-gray-dark);
}
.modalForm__btn {
  padding-top: 32px;
}
.modalForm__btn button {
  width: 100%;
  height: 40px;
  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: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: var(--c-main);
  color: var(--c-white);
  font-weight: 700;
  font-size: 14px;
  line-height: 16.94px;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modalVideo {
  background: transparent;
  padding: unset;
}
.modalVideo__overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}
.modalVideo__content {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--c-white);
  border-radius: 24px 24px 0px 0px;
  overflow: hidden;
}
.modalVideo__content .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
}
.modalVideo__content .title span {
  font-size: 24px;
  line-height: 29.05px;
  color: #4A4B56;
}
.modalVideo__content .title img {
  width: 48px;
  height: 48px;
}
.modalVideo__content p {
  font-size: 12px;
  padding: 16px;
  line-height: 20.16px;
  color: #000000;
  opacity: 80%;
  text-align: center;
}
.modalVideo__video {
  padding: 0 16px 16px 16px;
}

@media (max-width: 768px) {
  .modalPlans {
    padding-bottom: 0;
    padding-top: 30px;
  }
  .modalPlans .modalVideo__overlay {
    z-index: 1;
  }
  .modalPlans .modal__header__close {
    display: none;
  }
  .modalPlans .modal__header {
    display: none;
  }
  .modalPlans .container {
    position: relative;
    z-index: 2;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: #F2F4F7;
    border-radius: 24px 24px 0 0;
    padding: 0;
  }
}

.grabber {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grabber .close {
  width: 36px;
  height: 5px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 32%;
  border-radius: 64px;
  -webkit-border-radius: 64px;
  -moz-border-radius: 64px;
  -ms-border-radius: 64px;
  -o-border-radius: 64px;
}

.form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form__item {
  padding: 12px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
  border-bottom: 1px solid #F5F7F9;
}
.form__item label {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  color: var(--c-gray-dark);
}
.form__item input[type=password], .form__item input[type=email], .form__item input[type=text], .form__item input[type=tel] {
  height: 48px;
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: var(--c-white);
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 0 16px;
  font-family: Inter;
  color: var(--c-gray-dark);
}
.form__item .remamber label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 24px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form__item .remamber label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form__item .remamber label input:checked ~ .checkmark:after {
  opacity: 1;
}
.form__item .remamber label span {
  font-weight: 500;
  font-size: 14px;
  line-height: 16.94px;
  color: var(--c-gray-dark);
}
.form__item .remamber label .checkmark {
  position: relative;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.form__item .remamber label .checkmark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg class='svg-inline--fa fa-check fa-w-16' aria-hidden='true' data-prefix='fas' data-icon='check' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' data-fa-i2svg=''%3E%3Cpath fill='%232B3676' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  background-position: 0 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}
.form__item .forgetPass {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.form__item .forgetPass img {
  width: 24px;
  height: 24px;
}
.form__item .forgetPass span {
  font-weight: 500;
  font-size: 14px;
  line-height: 16.94px;
  color: var(--c-gray-dark);
}
.form__item__upload {
  height: 48px;
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: var(--c-white);
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.form__item__upload__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  padding: 8px;
  background: rgba(43, 54, 118, 0.1);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.form__item__upload__btn img {
  width: 16px;
  height: 16px;
}
.form__item__upload__btn span {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  color: var(--c-main);
}
.form__item__upload input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form__item__upload > span {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  color: var(--c-gray-dark);
}
.form__item__select select {
  height: 48px;
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: var(--c-white);
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 8px;
  font-family: Inter;
  color: var(--c-gray-dark);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 16px center;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.11435 8.12133C8.08388 8.14848 8.04449 8.16349 8.00368 8.16349C7.96287 8.16349 7.92348 8.14848 7.89301 8.12133C7.42401 7.70466 5.51401 6.005 3.11634 3.84766C2.74901 3.517 2.25401 3.321 1.81268 3.544C1.61701 3.64266 1.39934 3.78733 1.18201 4.00033C0.969899 4.2038 0.796229 4.44387 0.669345 4.709C0.489678 5.09233 0.631345 5.519 0.892011 5.852C2.70934 8.17366 5.31368 10.466 6.81435 11.711C7.14798 11.9899 7.569 12.1427 8.00384 12.1427C8.43869 12.1427 8.85971 11.9899 9.19335 11.711C10.6943 10.4663 13.2987 8.17333 15.11 5.851C15.3697 5.51866 15.51 5.093 15.3317 4.711C15.2048 4.44509 15.0309 4.20432 14.8183 4.00033C14.6329 3.81674 14.4203 3.66283 14.188 3.544C13.7463 3.321 13.2513 3.51666 12.8833 3.84766C11.2969 5.2757 9.70724 6.70049 8.11435 8.12133Z' fill='%23444444'/%3E%3C/svg%3E%0A");
}
.form__item__price {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__item__price span {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  color: var(--c-gray-dark);
}
.form__item__price P {
  font-weight: 700;
  font-size: 14px;
  line-height: 16.94px;
  color: var(--c-gray-dark);
}
.form__item__price.mainPrice span {
  font-size: 20px;
  line-height: 24.2px;
}
.form__item__price.mainPrice p {
  font-size: 20px;
  line-height: 24.2px;
}
.form__item__btn {
  width: 100%;
  padding: 16px;
}
.form__item__btn a {
  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: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  background: var(--c-main);
  color: var(--c-white);
  height: 48px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
}
.form__item.col {
  padding: 12px 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.form__item.col .form__item {
  width: 100%;
}
.form__item > p {
  font-weight: 400;
  font-size: 12px;
  line-height: 14.52px;
  color: var(--c-gray-dark);
}
.form__item__cupon {
  height: 40px;
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: var(--c-white);
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 4px 4px 4px 12px;
  font-family: Inter;
  color: var(--c-gray-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__item__cupon input {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  height: 100% !important;
}
.form__item__cupon a {
  padding: 0 16px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 32px;
}
.form__item__cupon a span {
  font-size: 12px;
}
.form__item.checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 24px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.form__item.checkbox label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form__item.checkbox label input:checked ~ .checkmark:after {
  opacity: 1;
}
.form__item.checkbox label span {
  font-weight: 500;
  font-size: 14px;
  line-height: 16.94px;
  color: var(--c-gray-dark);
}
.form__item.checkbox label p {
  font-weight: 500;
  font-size: 12px;
  line-height: 14.52px;
  color: var(--c-gray-dark);
}
.form__item.checkbox label p a {
  color: var(--c-gray-dark);
  text-decoration: underline;
}
.form__item.checkbox label .checkmark {
  position: relative;
  top: 2px;
  left: 0;
  min-width: 24px;
  height: 24px;
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.form__item.checkbox label .checkmark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg class='svg-inline--fa fa-check fa-w-16' aria-hidden='true' data-prefix='fas' data-icon='check' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' data-fa-i2svg=''%3E%3Cpath fill='%232B3676' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  background-position: 0 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

.hero {
  width: 100%;
  height: 810px;
  position: relative;
  margin-top: -192px;
}
.hero__wrapper {
  width: 100%;
  display: block;
}
.hero__bg {
  width: 100%;
  height: inherit;
}
.hero__bg img {
  width: 100%;
  height: 100%;
}
.hero__content {
  width: 100%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.hero__content > span {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--c-white);
}
.hero__content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 168%; /* 30.24px */
  text-align: center;
  color: var(--c-white);
}
.hero__content a {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .hero {
    height: 480px;
    margin-top: -112px;
  }
  .hero__content {
    padding: 0 16px;
    bottom: 16px;
    top: unset;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .hero__content > span {
    font-size: 24px;
    line-height: 29.05px;
  }
  .hero__content p {
    font-size: 12px;
    line-height: 20.16px;
  }
}

.plans {
  width: 100%;
  display: block;
  padding-bottom: 48px;
}
.plans__mockupe {
  width: 100%;
  height: 745px;
}
.plans__mockupe img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.plans__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.plans__title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.plans__title span {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--c-main);
}
.plans__title img {
  width: 20px;
  height: 20px;
}
.plans__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.plans__items .plan {
  width: 100%;
  background: var(--c-white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.plans__items .plan__icon {
  padding: 32px 0 16px 0;
}
.plans__items .plan__icon img {
  width: 64px;
  height: 64px;
  margin-inline: auto;
}
.plans__items .plan__title {
  text-align: center;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.plans__items .plan__title span {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.plans__items .plan__tooltip {
  position: relative;
}
.plans__items .plan__tooltip > img {
  width: 20px;
  height: 20px;
}
.plans__items .plan__tooltip:hover .plan__video {
  opacity: 1;
  visibility: visible;
  top: 32px;
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.plans__items .plan__video {
  position: absolute;
  width: 504px;
  height: 283px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 16px 52px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 16px 52px rgba(0, 0, 0, 0.25));
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  z-index: 999;
  padding: 10px;
  background: var(--c-white);
  left: -49px;
  top: 32px;
  opacity: 0;
  visibility: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.plans__items .plan__video img {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  width: 100%;
  height: 100%;
}
.plans__items .plan__video::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 49px;
  background-repeat: no-repeat;
  top: -10px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='16' viewBox='0 0 18 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.26795 1C8.03775 -0.333333 9.96225 -0.333333 10.7321 1L17.6603 13C18.4301 14.3333 17.4678 16 15.9282 16H2.0718C0.532197 16 -0.430054 14.3333 0.339746 13L7.26795 1Z' fill='white'/%3E%3C/svg%3E%0A");
}
.plans__items .plan__content {
  padding: 16px;
  border-bottom: 1px solid #F5F7F9;
  border-top: 1px solid #F5F7F9;
}
.plans__items .plan__content p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%; /* 20.16px */
  color: var(--c-black);
  opacity: 0.8;
}
.plans__items .plan__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.plans__items .plan__lists .title {
  width: 100%;
  text-align: center;
  padding: 8px 16px;
}
.plans__items .plan__lists .title span {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.plans__items .plan__lists ul {
  border-top: 1px solid #F5F7F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.plans__items .plan__lists ul li {
  border-bottom: 1px solid #F5F7F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  padding: 8px 16px;
}
.plans__items .plan__lists ul li span {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--c-gray-dark);
}
.plans__items .plan__lists ul li img {
  width: 12px;
  height: 12px;
}
.plans__items .plan__price {
  text-align: center;
  padding: 12px 16px;
}
.plans__items .plan__price span {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.plans__items .plan__btn {
  padding: 0 16px 16px 16px;
}
.plans__items .plan__btn a {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  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;
  height: 40px;
  text-align: center;
}
.plans__items .plan__btn a span {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--c-white);
}
.plans__items .plan.gold {
  -webkit-box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.04);
  border: 2px solid #766B2A;
}
.plans__items .plan.gold .plan__title span {
  color: #766B2A;
}
.plans__items .plan.gold .plan__lists .title span {
  color: #4A4B56;
}
.plans__items .plan.gold .plan__price span {
  color: #766B2A;
}
.plans__items .plan.gold .plan__btn a {
  background: #766B2A;
}
.plans__items .plan.bronze .plan__title span {
  color: #762A35;
}
.plans__items .plan.bronze .plan__price span {
  color: #762A35;
}
.plans__items .plan.bronze .plan__btn a {
  background: #762A35;
}
.plans__items .plan.silver .plan__title span {
  color: #4A4B56;
}
.plans__items .plan.silver .plan__lists .title span {
  color: #762A35;
}
.plans__items .plan.silver .plan__price span {
  color: #4A4B56;
}
.plans__items .plan.silver .plan__btn a {
  background: #4A4B56;
}
.plans__items .plan.plat .plan__title span {
  color: #2A5B76;
}
.plans__items .plan.plat .plan__lists .title span {
  color: #766B2A;
}
.plans__items .plan.plat .plan__price span {
  color: #2A5B76;
}
.plans__items .plan.plat .plan__btn a {
  background: #2A5B76;
}
@media (max-width: 768px) {
  .plans__mockupe {
    height: 508px;
  }
  .plans__wrapper {
    margin-top: -96px;
    row-gap: 24px;
  }
  .plans__title span {
    font-size: 24px;
    line-height: 29.05px;
  }
  .plans__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
  .plans__items .plan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .plans__items .plan__icon {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40px;
            flex: 1 1 40px;
    padding: 16px 0 16px 16px;
  }
  .plans__items .plan__icon img {
    width: 40px;
    height: 40px;
  }
  .plans__items .plan__title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 56px);
            flex: 1 1 calc(100% - 56px);
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    padding: 16px 0 16px 16px;
  }
  .plans__items .plan__title span {
    font-size: 24px;
    line-height: 29.05px;
  }
  .plans__items .plan__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .plans__items .plan__video {
    display: none;
  }
  .plans__items .plan__price {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    border-bottom: 1px solid #F5F7F9;
  }
  .plans__items .plan__lists {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .plans__items .plan__lists .title {
    text-align: left;
  }
  .plans__items .plan__btn {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 16px;
  }
}

.faq {
  width: 100%;
  display: block;
  padding: 80px 0 48px 0;
  border-top: 1px solid var(--c-white);
  border-bottom: 1px solid var(--c-white);
}
.faq__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
}
.faq__title {
  text-align: center;
}
.faq__title span {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: var(--c-main);
}
.faq__accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}
.faq__accordion .accordion {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--c-white);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.faq__accordion .accordion__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
  cursor: pointer;
}
.faq__accordion .accordion__header img {
  width: 16px;
  height: 16px;
}
.faq__accordion .accordion__header .arrow {
  -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;
}
.faq__accordion .accordion__header .rotate {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.faq__accordion .accordion__header span {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--c-gray-dark);
}
.faq__accordion .accordion__content {
  display: none;
  border-top: 1px solid #F5F7F9;
  padding: 24px;
}
.faq__accordion .accordion__content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 168%; /* 26.88px */
  color: var(--c-gray-dark);
  margin-top: 24px;
}
.faq__accordion .accordion__content p:nth-child(1) {
  margin-top: unset;
}
@media (max-width: 768px) {
  .faq {
    padding: 16px 0;
  }
  .faq__title span {
    font-size: 24px;
    line-height: 29.05px;
  }
  .faq__accordion {
    row-gap: 16px;
  }
  .faq__accordion .accordion__header {
    padding: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .faq__accordion .accordion__header span {
    font-size: 14px;
    line-height: 16.94px;
  }
  .faq__accordion .accordion__content {
    padding: 16px;
  }
  .faq__accordion .accordion__content p {
    font-size: 14px;
    line-height: 23.52px;
    text-align: justify;
  }
}

.features {
  width: 100%;
  display: block;
  background: var(--c-white);
  padding: 48px 0;
}
.features__wrapper {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr 24px 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}
.features__wrapper > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.features__wrapper > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.features__wrapper > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.features__wrapper > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  padding: 32px;
  border: 2px solid #F5F7F9;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(245, 247, 249, 0.2);
}
.features__item span {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--c-main);
}
.features__item P {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 168%; /* 25.2px */
  text-align: justify;
  color: var(--c-gray-dark);
}
@media (max-width: 768px) {
  .features {
    padding: 16px 0;
  }
  .features__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .features__item {
    background: rgba(245, 247, 249, 0.2);
    padding: 24px;
  }
  .features__item span {
    font-size: 16px;
    line-height: 19.36px;
  }
  .features__item p {
    font-size: 12px;
    line-height: 20.16px;
  }
}

.contact {
  width: 100%;
  display: block;
  padding: 80px 0 48px 0;
}
.contact__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
}
.contact__title {
  text-align: center;
}
.contact__title span {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--c-main);
}
.contact__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
.contact__items .item {
  width: 100%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--c-white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  padding: 40px 0 16px 0;
}
.contact__items .item img {
  width: 40px;
  height: 40px;
}
.contact__items .item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 0 24px 0;
  row-gap: 8px;
}
.contact__items .item__content span {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--c-main);
}
.contact__items .item__content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 168%; /* 26.88px */
  opacity: 0.64;
}
.contact__items .item__btn {
  text-align: center;
  margin-top: 16px;
}
.contact__items .item__btn a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid var(--c-main);
  padding: 0 32px;
  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;
  height: 48px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.contact__items .item__btn a span {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--c-main);
}
@media (max-width: 768px) {
  .contact {
    padding: 16px 0;
  }
  .contact__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
  .contact__title span {
    font-size: 24px;
    line-height: 29.05px;
  }
  .contact__items .item__content {
    padding: 12px 16px 24px 16px;
    border-bottom: 1px solid #F5F7F9;
  }
  .contact__items .item__content span {
    font-size: 16px;
    line-height: 19.36px;
  }
  .contact__items .item__content p {
    font-size: 14px;
    line-height: 23.52px;
    text-align: center;
  }
}

.product {
  width: 100%;
  padding: 48px 0;
}
.product__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
.product__content {
  background: var(--c-white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
}
.product__content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.product__content p {
  color: var(--c-gray-dark);
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  line-height: 26.88px;
  margin-top: 16px;
}
.product__content p:nth-child(1) {
  margin-top: 0;
}
.product__side {
  min-width: 379px;
  width: 379px;
  background: var(--c-white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.product__side .title {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  border-bottom: 1px solid #F5F7F9;
}
.product__side .title span {
  font-weight: 700;
  font-size: 24px;
  line-height: 29.05px;
  color: var(--c-gray-dark);
}
.product__side .title p {
  font-weight: 400;
  font-size: 14px;
  line-height: 23.52px;
  color: black;
}
@media (max-width: 768px) {
  .product {
    padding: 16px 0;
  }
  .product__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
  .product__content {
    padding: 16px;
  }
  .product__content p {
    font-size: 14px;
    margin-top: 14px;
    line-height: 23.52px;
  }
  .product__content p:nth-child(1) {
    margin-top: 0;
  }
}

.productsPay {
  width: 100%;
  display: block;
  padding: 48px 0;
}
.productsPay__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
.productsPay__wrapper .content {
  width: 100%;
}
.productsPay__side {
  min-width: 379px;
  width: 379px;
  background: var(--c-white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.productsPay__side .productDetail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #F5F7F9;
}
.productsPay__side .productDetail .thumbnail {
  padding: 16px 0 8px 0;
}
.productsPay__side .productDetail .thumbnail span {
  display: none;
}
.productsPay__side .productDetail .thumbnail img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
.productsPay__side .productDetail .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 32px;
}
.productsPay__side .productDetail .title span {
  font-weight: 700;
  font-size: 20px;
  line-height: 24.2px;
  color: var(--c-main);
}
.productsPay__side .productDetail .title p {
  font-weight: 400;
  font-size: 14px;
  line-height: 23.52px;
  text-align: center;
  color: var(--c-gray-dark);
  opacity: 80%;
}
@media (max-width: 768px) {
  .productsPay {
    padding: 16px 0;
  }
  .productsPay__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .productsPay__side {
    min-width: 100%;
    width: 100%;
  }
  .productsPay__side .productDetail .thumbnail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  .productsPay__side .productDetail .thumbnail span {
    font-weight: 700;
    font-size: 20px;
    line-height: 24.2px;
    color: var(--c-main);
    display: block;
  }
  .productsPay__side .productDetail .thumbnail img {
    width: 40px;
    height: 40px;
    margin: unset;
  }
  .productsPay__side .productDetail .title {
    border-top: 1px solid #F5F7F9;
    padding: 8px 16px;
  }
  .productsPay__side .productDetail .title span {
    display: none;
  }
  .productsPay__side .productDetail .title p {
    text-align: left;
  }
  .productsPay .form__item {
    padding: 12px 0;
  }
  .productsPay .form__item.col {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
  .productsPay .form__item.col .form__item {
    padding: unset;
  }
  .productsPay .form__item:has(.form__item__cupon) {
    padding: 12px 16px;
  }
  .productsPay .form__item:has(.form__item__price) {
    padding: 12px 16px;
  }
  .productsPay .form__item.checkbox {
    padding: 12px 16px;
  }
}

.productHead {
  width: 100%;
  display: block;
  background: var(--c-white);
  padding: 32px 0;
}
.productHead span {
  font-size: 24px;
  font-weight: 700;
  line-height: 29.05px;
  color: var(--c-main);
}
.productHead P {
  font-size: 14px;
  font-weight: 400;
  line-height: 23.52px;
  margin-top: 8px;
  color: var(--c-main);
  opacity: 80%;
}
@media (max-width: 768px) {
  .productHead {
    padding: 16px 0;
  }
}