@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/ubuntu300.woff2') format('woff2'),
    url('../fonts/ubuntu300.woff') format('woff');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ubuntu400.woff2') format('woff2'),
    url('../fonts/ubuntu400.woff') format('woff');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/ubuntu700.woff2') format('woff2'),
    url('../fonts/ubuntu700.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/roboto300.woff2') format('woff2'),
      url('../fonts/roboto300.woff') format('woff');
  }
  
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/roboto400.woff2') format('woff2'),
      url('../fonts/roboto400.woff') format('woff');
  }
  
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/roboto500.woff2') format('woff2'),
      url('../fonts/roboto500.woff') format('woff');
  }

  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/roboto700.woff2') format('woff2'),
      url('../fonts/roboto700.woff') format('woff');
  }
  
  html {
    box-sizing: border-box;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  
  *:focus {
    outline: none;
  }
  
  body {
    position: relative;
    min-width: 320px;
    margin: 0;
    font-family: "Roboto", sans-serif;
    background-color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1;
  }
  
  button, input {
    font: inherit;
  }
  
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: color .3s;
  }
  
  .container {
    margin: 0 auto;
    max-width: 375px;
    background-color: #fff;
  }
  
  .main-text {
    margin: 0;
    font-size: 21px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    color: #000;
  }

  li.main-text b {
    font-weight: 400;
  }
  
  .little-text {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
  }
  
  .red-text {
    color: #FF0000;
  }
  
  .toform-btn {
    display: block;
    margin: 10px auto 0;
    width: 224px;
    height: 87px;
    padding: 29px 10px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    line-height: 29px;
    background-image: url("../img/button.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: .3s transform;
    cursor: pointer;
    text-align: center;
  }
  
  .toform-btn:hover,
  .toform-btn:focus {
    transform: scale(1.1);
  }
  
  .toform-btn:active {
    transform: scale(1);
  }

  /* form */
  
  .section-form {
    padding: 0 0 20px;
    background: #fff;
  }
  
  .section-form__cost {
    text-align: center;
  }
  
  .section-form__price {
    margin: 0;
    padding: 5px;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    color: #fff;
    text-align: center;
    flex-basis: 35%;
  }
  
  .section-form__price span {
    font-size: 22px;
    line-height: 24px;
    text-decoration: line-through;
    text-align: center;
  }

  .section-form__discount {
    color: #000;
    flex-basis: 20%;
  }
  
  .section-form__price-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    background-image: url("../img/price.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  @media (max-width: 380px) {
    .section-form__new-pr {
      font-size: 25px;
    }
    .section-form__old-pr {
      font-size: 16px;
    }
  }
  
  .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .section-form__item {
    border: none;
    border-radius: 9px;
  }
  
  .section-form__input {
    border: 1px solid #0B2B3A;
    margin-bottom: 20px;
    padding: 15px 20px;
    width: 276px;
    color: #7B7B7B;
    font-size: 18px;
    font-weight: 300;
    line-height: 21px;
    background-color: #fff;
  }
  
  .section-form__input::placeholder {
    color: #7B7B7B;
  }
  
  .section-form__bth {
    display: block;
    margin: 0 auto;
    min-width: 100px;
    max-width: 277px;
    width: 100%;
    padding: 15px 30px;
    border-radius: 9px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    background-color: #002462;
    transition: .3s transform;
    cursor: pointer;
    text-align: center;
  }
  
  .section-form__bth:hover,
  .section-form__bth:focus {
    transform: scale(1.1);
  }
  
  .section-form__bth:active {
    transform: scale(1);
  }

  @media (max-width: 380px) {
    .section-form__new-pr {
      font-size: 25px;
    }
    .section-form__old-pr {
      font-size: 16px;
    }
  }
  
  /* Footer */
  
  footer a {
    color: #0085FF;
  }
  
  footer a:hover,
  footer a:focus {
    color: #13497b;
  }
  
  footer a:active {
    color: #0085FF;
  }
  
  .footer {
    font-family: "Roboto", sans-serif;
    padding: 20px 5px;
    background-color: #D7D7D7;
  }


  /* specific styles */

  img {
    margin-top: -4px;
  }

  .subtitle {
    margin: 0;
    padding: 0 0 15px;
    font-family: "Ubuntu";
    font-size: 30px;
    line-height: 34px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

  .section-1__icon1 {
    position: absolute;
    display: block;
    width: 50px;
    height: 33px;
    top: 5px;
    left: 0;
  }

  .section-1__icon2 {
    position: absolute;
    width: 100px;
    height: 100px;
    padding: 15px 0;
    bottom: 9px;
    right: 5px;
    text-align: center;
    border-radius: 50%;
    font-family: "Ubuntu";
    font-weight: 700;
    font-size: 13px;
    line-height: 14px;
    font-style: italic;
    background: rgba(250, 251, 253, 0.7);
  }

  .gif-container {
    padding: 0 0 25px;
  }

  .gif {
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  .swiper-button-prev,
.swiper-button-next {
  height: 39px;
  width: 39px;
  background-size: contain;
  background-repeat: no-repeat;
}

.swiper-button-prev {
  left: 0;
  background-image: url("../img/prev.svg");
}

.swiper-button-next {
  right: 0;
  background-image: url("../img/next.svg");
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.charact {
  background-color: #F9F8FD;
    padding: 20px 10px 10px;
}

.charact-subtitle {
  color: #FF842C;
}

.charact__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.charact__item {
  padding: 10px;
}

.charact-text {
  font-family: "Ubuntu";
  font-size: 18px;
  line-height: 21px;
  text-align: left;
}

.swiper1 {
    max-height: 500px;
}

.slide-container1 {
    margin: 20px auto;
    border-radius: 12px;
}

.slide-container1 img {
  width: 100%;
  margin: 0;
  border-radius: 12px;
}

.slide-img {
    display: block;
    margin: 0 auto 10px;
    max-width: 220px;
}

.slider-desc {
    margin: 0 auto;
    padding: 5px 15px;
    border-radius: 9px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    line-height: 21px;
}

.section-swiper {
    padding: 22px;
}

.slide-container2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    margin: 0 auto;
    padding: 10px 0;
    max-width: 350px;
    background-color: #fff;
}

.swiper2 {
    max-height: 420px;
}

.section-order {
  padding: 0 10px 38px 30px;
  background-color: #002462;
}

.order__subtitle {
  position: relative;
  margin: 0;
  padding: 0;
  padding-bottom: 30px;
  font-family: 'Ubuntu';
font-weight: 500;
font-size: 24px;
line-height: 28px;
color: #fff;
}
.blue-color {
  color: #0D8AFD;
}

.order__subtitle::after {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 5px;
  background-image: url("../img/lines.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.order__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order__item {
  position: relative;
  padding-left: 40px;
  font-family: 'Ubuntu';
font-weight: 400;
font-size: 16px;
line-height: 18px;
color: #fff;
}

.order__item:not(:last-child) {
  margin-bottom: 20px;
}

.order__item::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.order__item1::before {
  top: -8px;
  background-image: url("../img/list.svg");
}

.order__item2::before {
  top: 3px;
  background-image: url("../img/call.svg");
}

.order__item3::before {
  top: 3px;
  background-image: url("../img/car.svg");
}

.order__item4::before {
  top: -8px;
  background-image: url("../img/pay.svg");
}

.flag-icon {
  position: absolute;
  top: 123px;
  right: 10px;
  width: 66px;
  height: 66px;
  padding: 20px 8px;
  border-radius: 50%;
  background: rgba(242, 251, 245, 0.53);
}

.flag-icon img {
  width: 50px;
  height: 33px;
}

@media (max-width: 365px) {
  .flag-icon {
    top: 100px;
  }
}

@media (max-width: 345px) {
  .main-text {
    font-size: 18px;
    line-height: 20px;
  }
  .section-3__item:not(:last-child) {
    padding-bottom: 120px;
  }
}
