@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --main-text-color: #314ad8;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

body,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

input,
button {
  border: none;
}

input,
label {
  display: block;
}

a {
  text-decoration: none;
}

body {
  max-width: 480px;
  min-width: 375px;
  margin: 0 auto;
  background-color: #fff;
}

section {
  width: 100%;
  margin-top: 30px;
}

img {
  width: 100%;
}

.section__title {
  font-weight: 500;
  font-size: 27px;
  line-height: 28px;
  margin: 30px 0 15px 0px;
  color: #314ad8;
}

.wrapper {
  width: 100%;
  padding: 0 10px;
}

.header {
  margin-top: 20px;
  position: relative;
  width: 100%;
}
.header__title {
  font-size: 43px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  color: var(--main-text-color);
  padding: 20px 0;
}
.header__title > span {
  font-size: 30px;
}
.header__topImg {
  position: absolute;
  top: 27px;
  right: 0;
  width: 30%;
}
.header__img {
  width: 100%;
}

.btn {
  padding: 10px 40px;
  color: white;
  background-color: #ff0000;
  border-radius: 9px;
  font-size: 21px;
  width: 100%;
}
.btn__container {
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  width: 300px;
}

.section1 {
  position: relative;
}
.section1__inner {
  background-color: white;
  font-size: 30px;
  line-height: 35px;
  text-align: center;
  color: #000000;
  padding: 10px;
  text-align: center;
  margin: 0 auto;
}
.section1__inner > span {
  color: red;
}

.s1abstext {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 43px;
  line-height: 50px;
  text-align: center;
  color: #ffffff;
}

.form-block {
  background-color: #fff;
  margin-top: 0;
}

.form {
  width: 100%;
}
.form__input {
  width: 100%;
  background: #d1d1d1;
  border-radius: 9px;
  margin-bottom: 20px;
  padding: 15px 0 15px 20px;
  font-size: 18px;
  line-height: 21px;
  color: #636363;
}

.sale-text {
  margin-top: 20px;
}

.price {
  display: flex;
  justify-content: center;
  align-items: center;
}
.price__old {
  font-weight: 500;
  font-size: 27px;
  line-height: 32px;
  text-align: center;
  color: #6d6d6d;
}
.price__sale {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  background-color: #df0001;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 15px;
}
.price__new {
  font-weight: 500;
  font-size: 27px;
  line-height: 32px;
  text-align: center;
  color: #df0001;
}

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

footer {
  background-color: #e5e5e5;
}