@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: '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: 300;
    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: 20px auto 0;
    min-width: 100px;
    max-width: 277px;
    padding: 15px;
    border-radius: 9px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    background-color: #E7BC30;
    transition: .3s background-color;
    cursor: pointer;
    text-align: center;
  }
  
  .toform-btn:hover,
  .toform-btn:focus {
    background-color: #f6b366;
  }
  
  .toform-btn:active {
    background-color: #E7BC30;
  }

  /* form */
  
  .section-form {
    border-bottom: 4px solid #000;
    padding: 30px;
    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;
  }

  .section-form__price-old {
    background-color: #000;
  }
  
  .section-form__old-pr {
    font-size: 20px;
    text-decoration: line-through;
    text-align: center;
  }
  
  .section-form__new-pr {
    font-size: 35px;
    line-height: 40px;
    font-weight: 300;
    color: #fff;
    text-align: center;
  }

  .section-form__price-new {
    background-color: #0D6E9C;
  }
  
  .section-form__price-box {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }
  
  .section-form__discount {
    border-radius: 3px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
  }
  
  .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 #0D6E9C;
    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: #0D6E9C;
    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;
  }

  .gif-container {
    padding: 20px;
    background: linear-gradient(180deg, #B9BABE 0%, #50636E 39.72%, #0B2B3A 100%);
  }

  .gif {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    border: 3px solid #E7BC30;
  }

  .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("../images/prev.svg");
}

.swiper-button-next {
  right: 0;
  background-image: url("../images/next.svg");
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.charact {
    padding: 20px 10px 10px;
}

.charact-list {
  margin: 0;
}

.subtitle {
    margin: 0;
    padding: 0 0 15px;
    font-size: 30px;
    line-height: 34px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    font-family: "Ubuntu", sans-serif;
}

.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: 225px;
}

.slider-desc {
    margin: 0 auto;
    padding: 5px 15px;
    border-radius: 9px;
    font-size: 18px;
    line-height: 21px;
}

.section-swiper {
    padding: 22px;
}

.slide-container2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    margin: 0 auto;
    padding: 10px 0;
    max-width: 350px;
    background-color: #EDEDED;
}

.swiper2 {
    max-height: 470px;
}

.charact-text {
  font-family: "Ubuntu", sans-serif;
  color: #fff;
  font-size: 21px;
  line-height: 25px;
  font-weight: 400;
}