h1 {
  font-size: 52px;
  line-height: 1.4;
  font-weight: 700;
}
@media (max-width: 767px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
  }
}

h2 {
  font-size: 48px;
  line-height: 1.35;
  font-weight: 700;
}
@media (max-width: 767px) {
  h2 {
    font-size: 26px;
    line-height: 28px;
  }
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "FuturaPT";
  src: url("/fonts/FuturaPT-Book.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "FuturaPT";
  src: url("/fonts/FuturaPT-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "FuturaPT";
  src: url("/fonts/FuturaPT-Demi.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "FuturaPT";
  src: url("/fonts/FuturaPT-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
*, html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body.no-scroll {
  overflow: hidden;
}

body {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100vh;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  text-rendering: optimizespeed;
  font-family: "Roboto", sans-serif, sans-serif;
  background-color: #F6FBFF;
}
body.scroll {
  height: 100vh;
  overflow: hidden;
}

.page-bg {
  background: url("/images/avomo/bg.png") top left/cover no-repeat;
}
@media (max-width: 1600px) {
  .page-bg {
    background-size: 2000px;
  }
}

main {
  flex: 1 0 0;
}

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

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  border: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (max-width: 495px) {
  .mob--hide {
    display: none !important;
  }
}

.mob--show {
  display: none !important;
}
@media (max-width: 495px) {
  .mob--show {
    display: flex !important;
  }
}

.container {
  max-width: 1340px;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 50px 0;
}

.form-item {
  position: relative;
  margin-bottom: 37px;
  width: 100%;
}
.form-item._error .form__error {
  display: block;
  text-align: left;
}
.form-item._error .form__input {
  border-color: #DF1313;
}

.form__error {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  color: #DF1313;
  font-size: 14px;
  line-height: 21px;
  display: none;
}

.form__input {
  width: 100%;
  border: 1px solid #545E78;
  border-radius: 5px;
  outline: none;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  line-height: 24px;
  color: #747474;
}
.form__input::-moz-placeholder {
  color: #747474;
  font-size: 16px;
  line-height: 24px;
}
.form__input::placeholder {
  color: #747474;
  font-size: 16px;
  line-height: 24px;
}

.form__checkbox {
  position: relative;
  margin-top: 20px;
  width: 100%;
}
.form__checkbox-label {
  display: block;
  position: relative;
  padding-left: 32px;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}
.form__checkbox-label::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  left: 0;
  top: 0;
  border: 2px solid #418FDD;
  border-radius: 4px;
}
.form__checkbox-label::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 12px;
  left: 7px;
  top: 3px;
  border-right: 2px solid #418FDD;
  border-bottom: 2px solid #418FDD;
  transform: rotate(45deg);
  opacity: 0;
}
.form__checkbox-label span {
  color: #418FDD;
  cursor: pointer;
}
.form__checkbox-label span:hover {
  text-decoration: underline;
}
.form__checkbox-input {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.form__checkbox-input:checked + .form__checkbox-label::after {
  opacity: 1;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
  z-index: 20;
}
.modal.is-open {
  display: block;
}
.modal-overlay {
  background: rgba(0, 0, 0, 0.13);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9;
}
.modal-content {
  max-width: 400px;
  width: 100%;
  padding: 30px 68px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 10;
  text-align: center;
  border-radius: 20px;
}
.modal-content--m {
  max-width: 400px;
  padding: 30px 68px;
}
@media (max-width: 991px) {
  .modal-content {
    padding: 30px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .modal-content {
    padding: 30px;
    width: calc(100% - 20px);
  }
  .modal-content--m {
    padding: 30px 13px;
  }
}
.modal-content--s {
  max-width: 400px;
  padding: 20px;
}
.modal__subtitle {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 22px;
  text-align: center;
  font-weight: 500;
}
.modal__img {
  max-width: 216px;
  margin: 0 auto 52px;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .modal__img {
    nav-index: 178px;
    margin-bottom: 35px;
  }
}
.modal__title {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .modal__title {
    font-size: 18px;
  }
}
.modal__price {
  font-weight: 800;
  color: #418FDD;
  margin-bottom: 62px;
  text-transform: uppercase;
  font-size: 46px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .modal__price {
    font-size: 30px;
    margin-bottom: 44px;
  }
}
.modal-close {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 23px;
  right: 23px;
  z-index: 11;
}
@media (max-width: 991px) {
  .modal-close {
    width: 12px;
    height: 12px;
    top: 14px;
    right: 14px;
  }
}
.modal-close::before {
  position: absolute;
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  top: 6px;
  background-color: #000;
  transform: rotate(45deg);
}
@media (max-width: 991px) {
  .modal-close::before {
    width: 12px;
  }
}
.modal-close::after {
  position: absolute;
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  top: 6px;
  background-color: #000;
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .modal-close::after {
    width: 12px;
  }
}

.modal--approved .modal-content {
  border-radius: 5px;
  padding: 24px 20px;
}
.modal--approved .modal__title {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 8px;
  font-weight: 400;
  color: #1A1A1A;
  text-align: center;
}
.modal--approved .modal__price {
  font-size: 40px;
  line-height: 1.3;
  color: #000;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}
.modal--approved .modal__age {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 5px;
  text-align: center;
}
.modal--approved .modal__age span {
  font-weight: 500;
}
.modal--approved .modal__discount {
  width: calc(100% + 40px);
  margin: 0 -20px;
  padding: 12px;
  background-color: #CBEAFF;
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}
.modal--approved .modal__discount span {
  color: #418FDD;
}
.modal--approved .modal__term {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}
.modal--approved .modal__term span {
  font-weight: 500;
}
.modal--approved .modal__percent {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}
.modal--approved .modal__percent span {
  color: #418FDD;
  font-weight: 600;
}
.modal--approved .modal-conditions {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 20px;
}
.modal--approved .modal-conditions__item span {
  font-weight: 700;
}
.modal--approved .modal__btn {
  width: 100%;
  padding: 13px 20px;
  font-size: 27px;
  line-height: 40px;
  text-align: center;
  font-weight: 400;
}
.modal--approved .modal__btn:hover {
  opacity: 0.7;
}
@media (max-width: 495px) {
  .modal--approved .modal__btn {
    font-size: 22px;
    line-height: 32px;
  }
}
.modal--approved .modal__logo {
  max-width: 250px;
  width: 100%;
  margin: 0 auto 25px;
}
.modal--approved .modal__logo img {
  width: 100%;
  display: block;
}

.btn {
  display: inline-block;
  width: 100%;
  padding: 12px 24px;
  color: #1A1A1A;
  background-color: #418FDD;
  color: #FFF;
  outline: none;
  border: none;
  text-align: center;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
}
.btn:hover {
  opacity: 0.7;
}
.btn.btn--wide {
  display: block;
  width: 100%;
}

.header {
  padding: 32px 0;
  width: 100%;
}
@media (max-width: 767px) {
  .header {
    padding: 18px 0;
  }
}
.header--secondary .header-nav__item {
  color: #1A1A1A;
}
.header--secondary .header__burger span {
  background-color: #1A1A1A;
}
.header .container {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header .container {
    justify-content: space-between;
  }
}
.header__logo {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 800;
  margin-right: 104px;
  color: #418FDD;
}
.header__logo span {
  color: #010101;
}
.header-nav {
  width: 100%;
}
@media (max-width: 767px) {
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    transform: translateX(100%);
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
  }
  .header-nav.show {
    transform: translateX(0);
  }
  .header-nav.show .header-nav-list {
    transform: translateX(0);
    transition: 0.5s;
  }
}
.header-nav__overlay {
  display: none;
}
@media (max-width: 767px) {
  .header-nav__overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.08);
  }
}
.header-nav-list {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .header-nav-list {
    padding: 58px 26px 35px;
    height: 330px;
    max-width: 224px;
    width: 100%;
    background-color: #fff;
    box-shadow: 4px 4px 20px rgba(46, 47, 46, 0.25);
    border-radius: 0px 0px 0px 20px;
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 9;
    transform: translateX(100%);
    transition: 0.5s;
  }
}
.header-nav__item {
  margin-right: 40px;
  color: #FFF;
}
@media (max-width: 991px) {
  .header-nav__item {
    margin-right: 16px;
  }
  .header-nav__item:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .header-nav__item {
    margin-right: 0;
    padding: 15px 0;
    width: 100%;
    text-align: right;
    color: #1A1A1A;
  }
}
.header-nav__cabinet {
  margin: 0 0 0 auto;
  color: #418FDD;
  font-weight: 500;
  cursor: pointer;
}
.header-nav__cabinet:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .header-nav__cabinet {
    order: -1;
    font-size: 18px;
    line-height: 21px;
    padding-bottom: 15px;
    font-weight: 400;
  }
}
.header-nav__link {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .header-nav__link {
    font-size: 16px;
    font-weight: 400;
  }
}
.header-nav__close {
  display: none;
}
@media (max-width: 767px) {
  .header-nav__close {
    display: block;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    cursor: pointer;
  }
  .header-nav__close::before {
    position: absolute;
    content: "";
    width: 21px;
    height: 2px;
    top: 9px;
    background-color: #418FDD;
    transform: rotate(45deg);
  }
  .header-nav__close::after {
    position: absolute;
    content: "";
    width: 21px;
    height: 2px;
    top: 9px;
    background-color: #418FDD;
    transform: rotate(-45deg);
  }
}
.header__burger {
  width: 36px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
.header__burger span {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 100px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
    width: 26px;
    height: 21px;
  }
  .header__burger span {
    width: 26px;
  }
}

.footer {
  padding: 30px;
  background-color: #418FDD;
}
@media (max-width: 767px) {
  .footer {
    padding: 16px 0;
  }
}
.footer-main {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__logo {
  display: block;
  margin-right: 150px;
}
@media (max-width: 992px) {
  .footer__logo {
    margin-right: 50px;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    margin: 0 0 18px 0;
  }
}

.footer-nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .footer-nav__list {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-nav__item {
  color: #FFF;
}

.products {
  padding: 102px 0 135px;
}
@media (max-width: 767px) {
  .products {
    padding: 42px 0 90px;
  }
}
.products .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media (max-width: 991px) {
  .products .container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
@media (max-width: 767px) {
  .products .container {
    grid-template-columns: 1fr;
  }
}

.product-item {
  padding: 15px 26px 47px;
  background: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .product-item {
    padding: 18px 54px 24px;
    border-radius: 18px;
  }
}
.product-item__logo {
  margin-bottom: 14px;
}
.product-item__logo img {
  width: 100%;
}
@media (max-width: 767px) {
  .product-item__logo {
    margin-bottom: 10px;
  }
  .product-item__logo img {
    max-width: 150px;
  }
}
.product-item__favorite img {
  width: 100%;
}
.product-item__info {
  padding: 14px;
  width: 100%;
  text-align: center;
  margin: 40px 0;
  background: #F7F7F7;
  border-radius: 7px;
}
@media (max-width: 767px) {
  .product-item__info {
    margin: 25px 0 22px;
    padding: 17px;
  }
}
.product-item__summ {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .product-item__summ {
    font-size: 24px;
  }
}
.product-item__status {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .product-item__status {
    margin-bottom: 12px;
  }
}
.product-item__btn {
  white-space: nowrap;
}

.sms {
  padding: 90px 0;
}
.sms__title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}
.sms-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.05);
}
.sms-form .form-item {
  margin-bottom: 10px;
}
.sms-form .form__input {
  text-align: center;
  font-size: 32px;
  line-height: 1.4;
  padding: 12px 24px;
}
.sms-form .form__input::-moz-placeholder {
  font-size: 40px;
}
.sms-form .form__input::placeholder {
  font-size: 40px;
}

.personal {
  padding: 70px 0;
}
@media (max-width: 767px) {
  .personal {
    background-color: transparent;
    padding: 20px 0;
  }
}

.personal-item {
  max-width: 640px;
  width: 100%;
  padding: 20px 10px;
  display: flex;
  align-items: flex-start;
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .personal-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.personal-item:last-of-type {
  margin-bottom: 0;
}
.personal-item__img {
  max-width: 150px;
  margin-right: 20px;
  flex-shrink: 0;
}
.personal-item__img img {
  display: block;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .personal-item__img {
    max-width: 80px;
    margin: 0 0 10px 0;
  }
}
.personal-item__info {
  max-width: 470px;
}
.personal-item__name {
  color: #1A1A1A;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: 500;
}
.personal-item__name span {
  color: #418FDD;
}
@media (max-width: 767px) {
  .personal-item__name {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.personal-item__row {
  display: flex;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.4;
  gap: 10px;
}
@media (max-width: 767px) {
  .personal-item__row {
    font-size: 20px;
  }
}
.personal-item__row:last-of-type {
  margin-bottom: 0;
}
.personal-item__row span {
  font-weight: 700;
}

.calculator {
  width: 100%;
  padding: 30px 24px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1200px) {
  .calculator {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .calculator {
    padding: 10px;
    border-radius: 10px;
  }
}
.calculator-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}
.calculator-left {
  max-width: 370px;
  width: 100%;
}
@media (max-width: 1200px) {
  .calculator-left {
    max-width: 100%;
  }
}
.calculator-right {
  max-width: 300px;
  width: 100%;
}
@media (max-width: 1200px) {
  .calculator-right {
    max-width: 100%;
  }
}

.calculator-slider {
  margin-bottom: 30px;
}
.calculator-slider__numbers {
  display: flex;
  justify-content: space-between;
}

.calculator-item {
  font-size: 20px;
  line-height: 30px;
}
.calculator-item + .calculator-item {
  margin-top: 30px;
}
.calculator-item__value {
  width: 180px;
  padding: 10px;
  background: #CBEAFF;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 600px) {
  .calculator-item__value {
    width: 130px;
  }
}
@media (max-width: 600px) {
  .calculator-item {
    font-size: 16px;
    line-height: 24px;
  }
}

.approved {
  padding: 40px 0 60px;
}
@media (max-width: 767px) {
  .approved {
    padding: 20px 0;
  }
}

.approved-head__subtitle {
  color: #FFF;
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}
.approved-head__title {
  font-size: 55px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
.approved-head__title span {
  color: #418FDD;
}
@media (max-width: 767px) {
  .approved-head__title {
    font-size: 36px;
  }
}

.approved__amount {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .approved__amount {
    flex-direction: column;
    gap: 10px;
  }
}
.approved__amount p {
  color: #FFF;
  font-size: 24px;
  line-height: 1.3;
  text-transform: lowercase;
  font-weight: 700;
}
.approved__amount span {
  display: block;
  margin: 0 10px;
  padding: 5px 20px;
  border-radius: 100px;
  background-color: #418FDD;
  color: #1A1A1A;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
}
@media (max-width: 767px) {
  .approved__amount span {
    font-size: 28px;
  }
}

.approved__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 37px;
  gap: 20px;
}
@media (max-width: 767px) {
  .approved__number {
    flex-direction: column;
    gap: 0;
  }
  .approved__number span img {
    display: block;
    margin: 10px 0 5px;
  }
}
@media (max-width: 495px) {
  .approved__number {
    flex-direction: row;
    flex-wrap: nowrap;
    font-size: 16px;
    line-height: 24px;
  }
  .approved__number span {
    display: block;
    margin-left: 12px;
  }
  .approved__number span img {
    width: 161px;
    width: 100%;
  }
}

.approved__title {
  font-size: 55px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.approved__title span {
  color: #418FDD;
}
@media (max-width: 767px) {
  .approved__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 495px) {
  .approved__title {
    font-size: 24px;
  }
}

.approved__desc {
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #418FDD;
}
.approved__desc span {
  color: #418FDD;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .approved__desc {
    font-size: 20px;
    max-width: 400px;
  }
}
@media (max-width: 495px) {
  .approved__desc {
    font-size: 18px;
    max-width: 280px;
  }
}

.approved-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
@media (max-width: 1024px) {
  .approved-list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
@media (max-width: 670px) {
  .approved-list {
    grid-template-columns: 1fr;
  }
}

.approved__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  background: #FFF;
  box-shadow: 2px 2px 20px rgba(8, 35, 41, 0.2);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 670px) {
  .approved__item {
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
  }
}

.approved__item-bottom {
  color: #7F7F7F;
  text-align: center;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.4;
}

.approved__item-free {
  text-align: center;
  color: #7F7F7F;
  max-width: 282px;
  margin: 16px auto 0;
}

.approved__item-guarant {
  padding: 16px;
  background-color: rgba(225, 225, 225, 0.2);
  color: #418FDD;
  width: calc(100% + 40px);
  margin: 0 -20px 10px;
  text-align: center;
}

.approved__item-logo {
  max-width: 220px;
  width: 100%;
  margin: 0 auto 22px;
  margin-bottom: 22px;
}
.approved__item-logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 44px;
  display: block;
}
@media (max-width: 576px) {
  .approved__item-logo {
    width: calc(100% - 70px);
  }
}

.approved__item-discount {
  font-size: 27px;
  line-height: 1.3;
  width: calc(100% + 40px);
  margin: 0 -20px 10px;
  text-align: center;
  background-color: #CBEAFF;
  padding: 13px;
  font-weight: 400;
}
.approved__item-discount span {
  color: #418FDD;
}

.approved__item-title {
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  color: #418FDD;
  font-weight: 400;
  text-transform: uppercase;
}

.approved__item-conditions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.approved__item-age {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
.approved__item-age span {
  font-weight: 500;
}

.approved__item-term {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-align: right;
}
.approved__item-term span {
  font-weight: 500;
}

.approved__item-price {
  font-size: 35px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.approved__item-price span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #71BB3E;
}

.approved__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.approved__subtitle {
  font-size: 32px;
  line-height: 37px;
  font-weight: 600;
  margin-bottom: 12px;
}

.approved__price {
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 47px;
  font-weight: 600;
}

.approved__percent {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 30px;
  font-weight: 600;
}

.approved__btn {
  max-width: 255px;
  width: 100%;
  padding: 18px;
  height: 60px;
  background-color: #33B1F9;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  line-height: 28px;
}
.approved__btn:hover {
  background-color: #1e72a3;
}

.approved__img {
  max-width: 524px;
  margin: 40px 0;
}
.approved__img img {
  width: 100%;
}

.banner {
  padding: 30px 0 60px;
}
.banner .container {
  position: relative;
}
.banner-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .banner-info {
    margin-bottom: 15px;
  }
}
.banner-img {
  max-width: 40vw;
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: -1;
}
.banner-img img {
  width: 100%;
}
@media (max-width: 1200px) {
  .banner-img {
    right: 0;
    max-width: 40vw;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .banner-img {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
  }
  .banner-img img {
    width: auto;
    margin: 0 auto;
  }
}
.banner__title {
  max-width: 770px;
  font-size: 70px;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #FFF;
}
@media (max-width: 767px) {
  .banner__title {
    font-size: 36px;
  }
}
.banner-calculator {
  max-width: 770px;
  width: 100%;
  margin-top: 50px;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
  .banner-calculator {
    max-width: 410px;
  }
}
@media (max-width: 992px) {
  .banner-calculator {
    max-width: 410px;
  }
}
@media (max-width: 767px) {
  .banner-calculator {
    max-width: 100%;
    margin-top: 0;
  }
}

.banner-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 688px;
  flex-wrap: wrap;
  gap: 15px;
  color: #FFF;
}
@media (max-width: 767px) {
  .banner-text {
    flex-direction: column;
    align-items: flex-start;
  }
}
.banner-text__fast {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .banner-text__fast {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .banner-text__fast {
    margin-bottom: 16px;
  }
}
@media (max-width: 375px) {
  .banner-text__fast {
    font-size: 14px;
    line-height: 1.4;
  }
}
.banner-text__fast::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin-right: 12px;
  background: url("/images/avomo/icons/approve.svg") center center/48px no-repeat;
}
.banner-text__time {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .banner-text__time {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 375px) {
  .banner-text__time {
    font-size: 14px;
    line-height: 1.4;
  }
}
.banner-text__time::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin-right: 12px;
  background: url("/images/avomo/icons/money.svg") center center/48px no-repeat;
}

.order .container {
  position: relative;
}
.order__title {
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 30px;
  font-weight: 500;
}
.order-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-content {
  overflow-x: auto;
  width: 100%;
  padding-bottom: 120px;
}
.order-content::-webkit-scrollbar {
  display: none;
}
@media (max-width: 600px) {
  .order-content {
    padding-bottom: 154px;
  }
}
.order-table {
  border-top: 2px solid #418FDD;
}
@media (max-width: 1200px) {
  .order-table {
    min-width: 1210px;
  }
}
.order-row {
  width: 100%;
  padding: 15px 0;
  display: grid;
  grid-template-columns: 27px 1fr 0.7fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 0 85px;
}
.order-row-head {
  font-weight: 500;
}
@media (max-width: 600px) {
  .order-row {
    grid-gap: 0 34px;
  }
}
.order__cell {
  text-align: center;
}
@media (max-width: 767px) {
  .order__cell {
    font-size: 14px;
    line-height: 18px;
  }
}

.feedback {
  overflow: hidden;
}
@media (max-width: 992px) {
  .feedback {
    padding: 50px 0;
  }
}
.feedback__title {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .feedback__title {
    margin-bottom: 30px;
  }
}

.feedback-list {
  position: relative;
}
.feedback-list .swiper-wrapper {
  align-items: stretch;
}
.feedback-list .slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.feedback-list .slider-prev,
.feedback-list .slider-next {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #418FDD;
  border-radius: 50%;
  cursor: pointer;
  color: #FFF;
}
.feedback-list .slider-prev:hover,
.feedback-list .slider-next:hover {
  opacity: 0.5;
}
.feedback-list .slider-prev {
  transform: rotate(-180deg);
}

.feedback-item {
  padding: 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.1);
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
}
.feedback-item.swiper-slide-active {
  opacity: 1;
}
.feedback-item.swiper-slide-next {
  opacity: 1;
}
.feedback-item.swiper-slide-next + .swiper-slide {
  opacity: 1;
}
@media (max-width: 767px) {
  .feedback-item {
    opacity: 1;
    padding: 20px;
  }
}
.feedback-item__name {
  margin-bottom: 10px;
  color: #7F7F7F;
}
.feedback-item__date {
  color: #7F7F7F;
}
.feedback-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
  color: #747474;
}
.feedback-item__text {
  font-weight: 20px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.coockie {
  position: fixed;
  bottom: 30px;
  padding: 20px 100px;
  background: #FFFFFF;
  box-shadow: 4px 4px 20px rgba(46, 47, 46, 0.25);
  z-index: 7;
  background: #FFFFFF;
  max-width: 1280px;
  width: calc(100% - 40px);
  box-shadow: 4px 4px 20px rgba(46, 47, 46, 0.25);
  border-radius: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1160px) {
  .coockie {
    padding: 20px 32px;
  }
}
@media (max-width: 767px) {
  .coockie {
    padding: 20px;
  }
}
.coockie .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .coockie .container {
    flex-direction: column;
    align-items: center;
  }
}
.coockie__text {
  width: 100%;
  margin-right: 60px;
}
@media (max-width: 600px) {
  .coockie__text {
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}
.coockie__btn {
  max-width: 308px;
  width: 100%;
  padding: 13px;
  background-color: #418FDD;
  color: #fff;
  text-align: center;
  outline: none;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  line-height: 30px;
  cursor: pointer;
}
.coockie__btn:hover {
  opacity: 0.6;
}

input[type=range] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 100%;
  height: 5px;
  background: #CBEAFF;
  border-radius: 5px;
  background-image: linear-gradient(#418FDD, #418FDD);
  background-size: 70% 100%;
  background-repeat: no-repeat;
}

/* Input Thumb */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #418FDD;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #418FDD;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #418FDD;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  -ms-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

input[type=range]::-webkit-slider-thumb:hover {
  background: #418FDD;
}

input[type=range]::-moz-range-thumb:hover {
  background: #ff0200;
}

input[type=range]::-ms-thumb:hover {
  background: #418FDD;
}

/* Input Track */
input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type=range]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type=range]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.us {
  padding: 75px 0;
}
@media (max-width: 767px) {
  .us {
    padding: 35px 0;
  }
}
.us__title {
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
}
.us-content {
  position: relative;
}
.us-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .us-list {
    flex-direction: column;
    align-items: center;
  }
}
.us-img {
  max-width: 631px;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .us-img {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}

.us-item {
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.us-item__num {
  width: 60px;
  height: 60px;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #418FDD;
  font-size: 20px;
  line-height: 60px;
  font-weight: 600;
  color: #418FDD;
  margin-bottom: 20px;
}
.us-item__img {
  margin-bottom: 20px;
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -20px;
}
.us-item__img img {
  display: block;
  width: 150px;
  height: 150px;
}
.us-item__title {
  font-size: 23px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
}
.us-item__text {
  position: relative;
  z-index: 3;
}

.works {
  padding-top: 130px;
}
@media (max-width: 992px) {
  .works {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .works {
    padding: 35px 0;
  }
}
.works .container {
  position: relative;
}
.works__title {
  margin-bottom: 58px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1200px) {
  .works__title {
    position: static;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .works__title {
    margin-bottom: 30px;
  }
}
.works-list {
  max-width: 740px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1200px) {
  .works-list {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .works-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .works-list {
    flex-direction: column;
    align-items: center;
  }
}

.works-item {
  width: calc(50% - 10px);
  position: relative;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-height: 250px;
}
@media (max-width: 992px) {
  .works-item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .works-item {
    width: 100%;
    min-height: 200px;
  }
}
.works-item:last-of-type {
  margin-bottom: 0;
}
.works-item__img {
  max-width: 140px;
  width: 100%;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
@media (max-width: 767px) {
  .works-item__img {
    max-width: 80px;
  }
}
.works-item__img img {
  width: 100%;
}
.works-item__info {
  max-width: 220px;
}
.works-item__title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 10px;
  color: #418FDD;
}/*# sourceMappingURL=style.css.map */

.hidden{
  display: none;
}
.modal.active {
  display: block;
}


.modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
  z-index: 20;
}
.modal.active {
  display: block;
}
.modal.is-open {
  display: block;
}
.modal-overlay {
  background: rgba(0, 0, 0, 0.13);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9;
}
.modal-content {
  max-width: 400px;
  width: 100%;
  padding: 30px 68px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 10;
  text-align: center;
  border-radius: 20px;
}
.modal-content--m {
  max-width: 400px;
  padding: 30px 68px;
}
.modal-content.modal-order {
  max-width: 600px;
  padding: 40px 24px;
}
@media (max-width: 767px) {
  .modal-content.modal-order {
    max-height: 75vh;
    overflow: auto;
  }
}
.modal-content.modal-order .form-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .modal-content.modal-order .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.modal-content.modal-order .form-item {
  margin-bottom: 24px;
}
.modal-content.modal-order .form__label {
  display: block;
  text-align: left;
}
.modal-content.modal-order .form-item__limits {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .modal-content {
    padding: 30px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .modal-content {
    padding: 30px;
    width: calc(100% - 20px);
  }
  .modal-content--m {
    padding: 30px 13px;
  }
}
.modal-content--s {
  max-width: 400px;
  padding: 20px;
}
.modal__subtitle {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 22px;
  text-align: center;
  font-weight: 500;
}
.modal__img {
  max-width: 216px;
  margin: 0 auto 52px;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .modal__img {
    nav-index: 178px;
    margin-bottom: 35px;
  }
}
.modal__title {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .modal__title {
    font-size: 24px;
  }
}
.modal__price {
  font-weight: 800;
  color: #FF9E0C;
  margin-bottom: 62px;
  text-transform: uppercase;
  font-size: 46px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .modal__price {
    font-size: 30px;
    margin-bottom: 44px;
  }
}
.modal-close {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 23px;
  right: 23px;
  z-index: 11;
}
@media (max-width: 991px) {
  .modal-close {
    width: 12px;
    height: 12px;
    top: 14px;
    right: 14px;
  }
}
.modal-close::before {
  position: absolute;
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  top: 6px;
  background-color: #000;
  transform: rotate(45deg);
}
@media (max-width: 991px) {
  .modal-close::before {
    width: 12px;
  }
}
.modal-close::after {
  position: absolute;
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  top: 6px;
  background-color: #000;
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .modal-close::after {
    width: 12px;
  }
}

.modal--approved .modal-content {
  padding: 20px 35px 20px;
}
.modal--approved .modal__title {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 8px;
  font-weight: 600;
}
.modal--approved .modal__price {
  font-size: 50px;
  line-height: 60px;
  color: #000;
  margin-bottom: 15px;
}
.modal--approved .modal__age {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 5px;
  text-align: center;
}
.modal--approved .modal__age span {
  font-weight: 500;
}
.modal--approved .modal__term {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}
.modal--approved .modal__term span {
  font-weight: 500;
}
.modal--approved .modal__percent {
  width: calc(100% + 70px);
  margin: 0 -35px;
  padding: 11px 35px;
  font-size: 25px;
  line-height: 37px;
  font-weight: 400;
  margin-bottom: 10px;
  background-color: #FFF7EA;
}
.modal--approved .modal__percent span {
  font-weight: 600;
}
.modal--approved .modal__btn {
  width: 100%;
  padding: 13px 20px;
  font-size: 27px;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  background: #FF9E0C;
  color: #fff;
  border-radius: 20px;
}
.modal--approved .modal__btn:hover {
  opacity: 0.7;
}
@media (max-width: 495px) {
  .modal--approved .modal__btn {
    font-size: 22px;
    line-height: 32px;
  }
}
.modal--approved .modal__logo {
  max-width: 250px;
  width: 100%;
  margin: 0 auto 15px;
}
.modal--approved .modal__logo img {
  width: 100%;
  display: block;
}

.checkbox__label a {
  color: blue;
}

.color-red {
  color: red;
}