*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-width: 480px;
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  background-color: #e6e6e6;
}

img {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --accent-color: #de0a19;
  --section-color: #f2f2f2;
  --border-color: #f0e26e;
}

.site-container {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 480px;
  background-color: #fff;
}

.container {
  padding: 0 20px;
}

.logo {
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 25px;
}

.header__inner {
  display: flex;
}

.header__sticker:not(:last-child) {
  margin-right: 5px;
}

.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section__title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}

.section__title > span {
  color: #dd0a17;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 0;
  min-height: 530px;
  background:
    var(--section-color) url("../img/hero-bg.png") no-repeat top
    center;
}

.hero__title {
  margin-bottom: 210px;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.hero__title > span {
  display: block;
  font-size: 49px;
}

.hero__line {
  display: flex;
  justify-content: space-between;
  margin-left: -50px;
  width: calc(100% + 100px);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
}

.hero__left,
.hero__right {
  position: relative;
  width: 50%;
}

.hero__line-title {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 15px);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  color: #fff;
  transform: translateX(-50%);
}

.hero__prices {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  line-height: 1;
  color: #fff;
}

.hero__price--old {
  font-size: 19px;
  text-decoration: line-through;
}

.hero__price--new {
  font-weight: 700;
  font-size: 26px;
}

.hero__discount {
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
}

.hero__discount > span {
  display: block;
  font-size: 36px;
}

.sect2 {
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: var(--section-color);
}

.sect2__list {
  margin-bottom: 20px;
}

.sect2__item {
  display: flex;
  align-items: center;
  padding: 10px 20px 10px 90px;
  min-height: 80px;
  background-position: left 20px center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.sect2__item:nth-child(1) {
  background-image: url("../img/sect2-icon1.png");
}

.sect2__item:nth-child(2) {
  background-image: url("../img/sect2-icon2.png");
}

.sect2__item:nth-child(3) {
  background-image: url("../img/sect2-icon3.png");
}

.sect2__item:not(:last-child) {
  margin-bottom: 20px;
}

.sect2__text {
  font-weight: 700;
}

.btn {
  display: block;
  margin-right: 20px;
  margin-left: 20px;
  border: 3px solid var(--border-color);
  border-radius: 30px;
  padding: 25px 10px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to right, var(--accent-color), #b21f26);
  background-color: var(--accent-color);
}

.problem__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 30px;
}

.problem__item {
  width: 100%;
  max-width: 190px;
}

.problem__img {
  margin: 0 auto 10px;
}

.problem__text {
  text-align: center;
}

.danger {
  background-color: var(--section-color);
}

.danger__title {
  margin-bottom: 60px;
}

.danger__wrapper {
  display: flex;
}

.danger__left {
  flex-shrink: 0;
  margin-right: 30px;
  width: 180px;
}

.danger__list {
  align-self: center;
}

.danger__item {
  display: flex;
  justify-content: baseline;
}

.danger__item:not(:last-child) {
  margin-bottom: 30px;
}

.danger__item > span {
  display: block;
  flex: 0 0 auto;
  margin-right: 20px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 5px rgba(221, 10, 23, 0.2);
  background-color: var(--accent-color);
  transform: translateY(5px);
}

.danger__item > p {
  font-weight: 600;
}

.danger__top-border {
  height: 8px;
  background: linear-gradient(to right, #f2ee80 0%, #eac541 50%, #f2ee80 100%);
}

.danger__content {
  padding: 15px 15px 25px;
  background: linear-gradient(to right, #de0917, #b21f26);
  background-color: var(--accent-color);
}

.danger__heading {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 25px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.danger__text {
  text-align: center;
  color: #fff;
}

.sect5 {
  overflow-x: hidden;
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--section-color);
}

.sect5__block {
  position: relative;
  margin-right: 20px;
  margin-bottom: 30px;
  margin-left: 20px;
  padding: 40px 20px;
  background-color: #fff;
}

.sect5__block > p {
  text-align: center;
}

.sect5__product {
  position: absolute;
  right: -110px;
  bottom: calc(100% - 25px);
}

.sect5__product2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.sect5__wrapper {
  position: relative;
}

.rect-block {
  margin: 0 20px;
}

.rect-block__top-line {
  height: 8px;
  background: linear-gradient(to right, #f2ee80 0%, #eac541 50%, #f2ee80 100%);
}

.rect-block__content {
  position: relative;
  padding: 15px 15px 25px;
}

.rect-block__content--red {
  background: linear-gradient(to right, #de0917, #b21f26);
  background-color: var(--accent-color);
}

.rect-block__content--white {
  background-color: #fff;
}

.rect-block__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
}

.rect-block__text--white {
  color: #fff;
}

.sect6 {
  background-color: var(--section-color);
}

.sect6__title {
  max-width: 60%;
}

.sect6__text {
  position: relative;
  z-index: 5;
  max-width: 57%;
  font-size: 14px;
  line-height: 1.5;
}

.sect6__doctor {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: block;
}

.sect6__stamp {
  position: absolute;
  right: 95px;
  bottom: 0;
}

.sect7 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--section-color);
}

.sect7__block {
  position: relative;
}

.sect7__item {
  padding-bottom: 10px;
  padding-left: 45px;
  font-weight: 600;
  font-size: 16px;
  background: url("../img/item-icon.png") no-repeat left top;
}

.sect7__item:not(:last-child) {
  margin-bottom: 15px;
}

.sect7__product-box {
  position: absolute;
  left: -20px;
}

.sect7__right {
  margin-left: 170px;
  padding-top: 20px;
  min-height: 440px;
}

.sect8 {
  background-color: var(--section-color);
}

.sect8__title {
  font-size: 25px;
  text-align: center;
}

.sect8__title--white {
  padding-top: 10px;
  color: #fff;
}

.sect8__list {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.sect8__item {
  max-width: 180px;
}

.sect8__item:not(:last-child) {
  margin-right: 20px;
}

.sect8__item img {
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
}

.sect8__item figcaption {
  font-weight: 600;
  text-align: center;
}

.sect8__bot-img {
  margin-bottom: 30px;
}

.slider {
  position: relative;
  text-align: center;
  color: #fff;
}

.slider__img-wrap {
  display: inline-block;
  margin-bottom: 10px;
  border: 1px solid #f1eb7b;
  border-radius: 50%;
  padding: 10px;
}

.slider__heading {
  margin-bottom: 30px;
}

.slick-arrow {
  position: absolute;
  top: 40px;
  z-index: 20;
  border: none;
  padding: 20px;
  width: 42px;
  height: 42px;
  background-color: transparent;
  cursor: pointer;
}

.slick-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: 4px solid #f1eb7b;
  width: 100%;
  height: 100%;
  transform-origin: center;
}

.slick-prev {
  left: 50px;
}

.slick-prev::before {
  border-left: 4px solid #f1eb7b;
  transform: rotate(45deg);
}

.slick-next {
  right: 50px;
}

.slick-next::before {
  border-right: 4px solid #f1eb7b;
  transform: rotate(-45deg);
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}

.slick-dots > li:not(:last-child) {
  margin-right: 10px;
}

.slick-dots > .slick-active button {
  transform: scale(1.6);
}

.slick-dots button {
  border: none;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  font-size: 0;
  background-color: #f1eb7b;
  transition: transform 0.3s ease-in-out;
}

.sect9 {
  padding-top: 0;
  background-color: var(--section-color);
}

.sect9__img {
  margin-right: 20px;
}

.sect9__item {
  display: flex;
  align-items: center;
}

.sect9__item:not(:last-child) {
  margin-bottom: 20px;
}

.sect9__heading {
  margin-bottom: 5px;
  text-transform: uppercase;
}

.sect10 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--section-color);
}

.sect10__title {
  margin: 0 auto 30px;
  max-width: 90%;
  font-size: 22px;
  text-align: center;
}

.form__input {
  display: block;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  padding: 25px 20px;
  width: 100%;
  font-size: 18px;
  text-align: center;
  background-color: #fff;
}

.form__btn {
  margin: 0;
  width: 100%;
}

.copyright {
  padding: 30px 0;
  font-size: 14px;
  text-align: center;
  background-color: var(--section-color);
}

.copyright a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.copyright img {
  width: auto;
}

.copyright p {
  margin: 0;
  padding: 0;
}
