@charset "UTF-8";
@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");
* {
  box-sizing: border-box;
}

html {
  font-size: 15px;
  font-family: "Raleway", 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: 320px;
  margin: 0 auto;
}

section {
  width: 100%;
}

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

.header {
  position: relative;
}
.header__calc-text {
  font-size: 18px;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
}

.title {
  text-align: left;
  font-size: 26px;
  margin-top: 20px;
}

.subtitle {
  text-align: left;
  font-size: 18px;
  margin: 10px 0;
}

.section-1__img {
  height: auto;
}

.slider__container {
  margin-top: 15px;
  position: relative;
}

.slider {
  width: 100%;
  overflow: hidden;
}

.slider__item {
  width: 100%;
}

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

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

.prev {
  transition-duration: 0.5s;
}

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

.prev:hover {
  transform: scale(1.5);
}

.bold {
  font-weight: bold;
}

.list {
  width: 100%;
}
.list__item {
  line-height: 1.5;
}
.list-item {
  padding-top: 20px;
}
.list-item-text {
  line-height: 1.2;
}
.list-item-text:first-child {
  font-size: 17px;
}

.catalog {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.catalog__title {
  margin: 10px 0;
}
.catalog__item {
  margin-top: 20px;
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.catalog__item-name {
  margin-right: 5px;
}
.catalog__item-price {
  font-weight: bold;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.catalog__item-old_price {
  text-decoration: line-through;
}
.catalog__item-new_price {
  color: red;
  margin-right: 5px;
}
.catalog__btn {
  margin: 20px auto 0;
  width: 150px;
  height: 40px;
  border-radius: 21px;
  background-color: #f7e64f;
  font-weight: bold;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.catalog__img {
  height: auto;
}

.section-5 {
  background-color: #f7e64f;
}
.section-5 .title {
  padding-top: 20px;
}
.section-5 iframe {
  padding-bottom: 20px;
}

.order {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
}
.order__img {
  width: 10%;
}
.order__description {
  font-size: 19px;
  padding-left: 25px;
}

.calc__form {
  padding: 0 10px;
}
.calc__form-label {
  font-size: 18px;
  margin: 20px 0;
}
.calc__form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.calc__form-checkbox:last-of-type {
  margin-top: 15px;
}
.calc__form-checkbox > input {
  margin: 0;
  padding-right: 10px;
  width: 18px;
  height: 18px;
}
.calc__form-checkbox > label {
  font-size: 17px;
  padding-left: 10px;
}
.calc__form-rezult {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.result {
  font-size: 30px;
  color: red;
}

.review__slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 550px;
}

.review__item {
  height: 100%;
  width: auto;
  margin: 0 auto;
}

.footer {
  background-color: #c4c4c4;
  padding: 25px 0;
}
.footer__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
}
.footer__links > a {
  color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #eaeaea;
}

.modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.63);
  margin: auto;
  padding: 0;
  border-radius: 18px;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.close {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  height: 50px;
  background: rgba(255, 255, 255, 0.63);
  color: black;
  border-radius: 18px 18px 0 0;
}

.modal-body {
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.63);
  padding-bottom: 30px;
  border-radius: 0 0 18px 18px;
}
.modal-body-title {
  text-align: center;
  margin-bottom: 30px;
}
.modal-body-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  margin: 0 auto;
}
.modal-body-form-text {
  margin: 10px;
}
.modal-body-form-select {
  height: 30px;
  padding-left: 5px;
  font-size: 17px;
  background: #dad8d8;
}
.modal-body-form-input {
  margin-top: 20px;
  height: 40px;
  border-radius: 17px;
  background: #dad8d8;
  padding-left: 15px;
  font-size: 17px;
}
.modal-body-form-input:focus {
  outline: none;
  border: 2px solid #f7e64f;
}
.modal-body-form-btn {
  margin-top: 30px;
  height: 40px;
  color: black;
  border-radius: 17px;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.features__item {
  background-color: #fff;
  padding: 23px 13px 40px;
  margin: 0 0 22px;
}

.features__item:last-child {
  margin-bottom: 0;
}

.features__media {
  display: block;
  background-color: #000;
  position: relative;
  min-height: 165px;
  color: #fff;
}

.features__media--video:before {
  content: "";
  font: normal normal 14px/46px icomoon;
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  text-align: center;
}

.features__media img,
.features__media video {
  display: block;
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.features__info {
  font-size: 20px;
  line-height: 1.5;
  color: #323232;
  font-family: Gilroy, sans-serif;
  padding: 32px 0 0;
}

.features__footer {
  margin-top: 55px;
  border-top: 1px solid #c9d3dc;
  padding-top: 1em;
}

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