@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 {
  --blue-color: #0094ff;
}

* {
  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;
}

section {
  width: 100%;
}

img {
  width: 100%;
}

.wrapper {
  padding: 12px;
}

.title {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  /*width: 250px;*/
  border-left: 3px solid var(--blue-color);
  padding-left: 15px;
}
.title:nth-child(2) {
  margin-top: 35px;
  margin-bottom: 20px;
}

.header__img {
  margin-top: 20px;
}

.subtitle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
.subtitle__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: calc(100% / 3);
  height: 180px;
  padding: 5px;
}
.subtitle__text {
  text-align: center;
  font-size: 12px;
}

.topLine {
  margin-top: 20px;
  margin-bottom: 7px;
  width: 55px;
  height: 3px;
  background-color: var(--blue-color);
}

.bottomLine {
  margin-top: 5px;
  width: 55px;
  height: 3px;
  background-color: var(--blue-color);
  float: right;
}

.prev,
.next {
  position: absolute;
  top: 45%;
  height: 50px;
  width: 50px;
  z-index: 1;
  cursor: pointer;
}

.next {
  transition-duration: 0.5s;
  right: 0;
}

.prev {
  transition-duration: 0.5s;
  left: 0;
}

.prev:hover,
.next:hover {
  transition-duration: 0.5s;
  transform: scale(1.1);
}

.prev:hover {
  transition-duration: 0.5s;
  transform: scale(1.1);
}

.sliderText {
  margin: 20px 0 40px 0;
  font-size: 15px;
}

.charakteristics {
  margin: 40px 0;
}
.charakteristics__img {
  margin: 30px 0;
}

.list__row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 15px;
}
.list__item {
  min-height: 30px;
}
.list__item:nth-child(odd) {
  background-color: #e0fafa;
}
.list__item:nth-child(even) {
  background-color: #f4ffff;
}
.list__item:first-child {
  border-radius: 20px 20px 0px 0px;
}
.list__item:last-of-type {
  border-radius: 0px 0px 20px 20px;
}
.list__img {
  width: 16px;
  height: 16px;
  margin-right: 20px;
}
.list__text {
  font-size: 14px;
  line-height: 16px;
}

.price_block {
  margin: -23px 0 25px;
  padding: 0 75px;
  height: 80px;
  position: relative;
}

.price_block:before {
  display: block;
  content: "";
  width: 75px;
  height: 34px;
  background: #ffa900;
  position: absolute;
  top: 50%;
  margin-top: -17px;
  left: 0;
}

.price_block:after {
  display: block;
  content: "";
  width: 56px;
  border-top: 34px solid #ffa900;
  border-left: 22px solid rgba(255, 255, 255, 0);
  position: absolute;
  top: 50%;
  margin-top: -17px;
  right: 0;
}

.price_item {
  float: left;
  width: 50%;
  height: 80px;
  color: #fff;
  position: relative;
}

.price_item.old {
  padding: 17px 0 0 17px;
  background: #222;
}

.price_item.new {
  padding: 17px 0 0 37px;
  background: #ff1a25;
}

.price_item.old:before {
  display: block;
  content: "";
  border-left: 44px solid rgba(255, 255, 255, 0);
  border-top: 80px solid #222;
  position: absolute;
  top: 0;
  left: -44px;
}

.price_item.old:after {
  display: block;
  content: "";
  border-left: 44px solid #222;
  border-top: 80px solid #ff1a25;
  position: absolute;
  top: 0;
  right: -22px;
  z-index: 10;
}

.price_item.new:before {
  display: block;
  content: "";
  border-right: 44px solid rgba(255, 255, 255, 0);
  border-bottom: 80px solid #ff1a25;
  position: absolute;
  top: 0;
  right: -44px;
}

.price_item .text {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 14px;
  position: relative;
  z-index: 99;
}

.price_item .value {
  font-weight: 700;
  font-size: 26px;
  line-height: 26px;
  position: relative;
  z-index: 99;
}

.field {
  display: block;
  margin: 0 auto 20px;
  padding: 0 20px 0 62px;
  width: 370px;
  height: 72px;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #777;
  border: 1px solid #dedede;
}

.field[name=name] {
  background: #f0f0f0 url("../img/offer__name_icon9362d.png") 22px center no-repeat;
}

.field[name=phone] {
  margin: 0 auto 35px;
  background: #f0f0f0 url("../img/offer__phone_icon40fbd.png") 20px center no-repeat;
}

.button {
  display: block;
  margin: 10px auto;
  width: 350px;
  height: 80px;
  border: none;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  background: #149cc7;
  -webkit-box-shadow: 0 0 0 10px rgba(20, 156, 199, 0.3);
  -moz-box-shadow: 0 0 0 10px rgba(20, 156, 199, 0.3);
  box-shadow: 0 0 0 10px rgba(20, 156, 199, 0.3);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 80px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.btn{
  position: relative;
    display: block;
    width: 380px;
    height: 84px;
    margin: 0 auto;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    line-height: 84px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 700;
    letter-spacing: 1.2px;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
    background: #ffa900;
    background-image: -webkit-linear-gradient(top, #ffba00, #ff8a00);
    background-image: -moz-linear-gradient(top, #ffba00, #ff8a00);
    background-image: -o-linear-gradient(top, #ffba00, #ff8a00);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffba00), to(#ff8a00));
    background-image: linear-gradient(to bottom, #ffba00, #ff8a00);
    border-bottom: 4px solid #d97400;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    border-radius: 42px;
}

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