@charset "UTF-8";
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

body {
  font-family: DM Sans;
  font-size: 12px;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 480px) {
  .container {
    width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 768px;
    padding-left: 34px;
    padding-right: 34px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    width: 1280px;
    padding-left: 115px;
    padding-right: 115px;
  }
}

.section {
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1280px) {
  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

.section--padding-top {
  padding-top: 0px;
}

.section--padding-bottom {
  padding-bottom: 0px;
}

.section__title {
  font-family: Titan One;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d41443;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 1280px) {
  .section__title {
    font-size: 58px;
  }
}

.section__pre-title {
  margin-bottom: 15px;
  font-family: Titan One;
  font-size: 18px;
  line-height: 1.17;
  text-align: center;
  text-transform: uppercase;
  color: #ffa5ba;
}
@media screen and (min-width: 768px) {
  .section__pre-title {
    font-size: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .section__pre-title {
    font-size: 30px;
  }
}

.button {
  border: none;
  cursor: pointer;
  background-color: #fff;
  border-radius: 22px;
  padding: 11px 37px;
  font-family: DM Sans;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.31;
  text-align: center;
  color: #d41443;
}

.backdrop {
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 0;
  z-index: 999;
  transition: visibility 500ms, opacity 500ms;
}
.backdrop.is-hidden .modal {
  transition: transform 500ms;
  transform: translate(-50%, -50%) scale(0.5);
}

.modal {
  width: 90vw;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .modal {
    max-width: 600px;
  }
}
.modal {
  background-color: #d41443;
  border-radius: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 44px 26px;
}
@media screen and (min-width: 768px) {
  .modal {
    padding: 52px 48px;
  }
}
.modal {
  box-shadow: 0 28px 70px rgba(212, 20, 67, 0.35);
  transition: transform 500ms;
  transform: translate(-50%, -50%) scale(1);
}

.close-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.16);
  border: 0;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  transition: background-color 250ms ease, transform 250ms ease;
}

.close-modal-icon {
  fill: #ffffff;
}

.close-modal:hover,
.close-modal:focus-visible {
  background-color: #ffffff;
  transform: rotate(90deg) scale(1.08);
}

.close-modal:hover .close-modal-icon,
.close-modal:focus-visible .close-modal-icon {
  fill: #d41443;
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.modal-title {
  font-family: Titan One;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .modal-title {
    font-size: 24px;
  }
}

.modal-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: #ffa5ba;
}
@media screen and (min-width: 768px) {
  .modal-text {
    font-size: 16px;
  }
}

/* Franchise modal */
.franchise-modal {
  min-height: auto;
}

.franchise-modal .modal-title {
  margin-bottom: 16px;
}

.franchise-modal__intro {
  text-align: center;
  margin-bottom: 24px;
}

.franchise-modal__perks {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.franchise-modal__perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .franchise-modal__perk {
    font-size: 16px;
  }
}

.franchise-modal__perk svg {
  flex: 0 0 auto;
  width: 14px;
  height: 11px;
  fill: #ffffff;
}

.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.franchise-form__input {
  width: 100%;
  padding: 13px 18px;
  font-family: DM Sans;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  background: #ffffff;
  border: none;
  border-radius: 22px;
  outline: none;
  transition: box-shadow 250ms ease;
}

.franchise-form__input::placeholder {
  color: #ffa5ba;
}

.franchise-form__input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.55);
}

.franchise-form__btn {
  margin-top: 6px;
  padding: 14px 20px;
  cursor: pointer;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d41443;
  background: #ffffff;
  border: none;
  border-radius: 22px;
  transition: background-color 250ms ease, transform 250ms ease;
}

.franchise-form__btn:hover,
.franchise-form__btn:focus-visible {
  background: #ffb8ca;
  transform: scale(1.02);
}

.header {
  background-color: #ffb8ca;
}

.header__container {
  height: 502px;
  background-image: url(../images/header/icecrem-mob1x.png), url(../images/header/circle-mob1x.png);
  background-repeat: no-repeat;
  background-position: right 32px bottom 0px, right 0px bottom 75px;
}
@media (min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .header__container {
    background-image: url(../images/header/icecrem-mob2x.png), url(../images/header/circle-mob2x.png);
    background-size: 171px 410px, 300px 360px;
  }
}
@media screen and (min-width: 768px) {
  .header__container {
    height: 399px;
    background-image: url(../images/header/icecrem-tab1x.png), url(../images/header/girltab1x.png), url(../images/header/circle-tab1x.png), url(../images/header/16tab1x.png), url(../images/header/23tab1x.png), url(../images/header/molokotab1x.png);
    background-repeat: no-repeat;
    background-position: left 378px top 63px, right 34px bottom 0px, right 137px top 31px, right 34px top 94px, right 34px top 151px, left 34px bottom 28px;
  }
}
@media screen and (min-width: 768px) and (min-device-pixel-ratio: 2), screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 768px) and (min-resolution: 192dpi), screen and (min-width: 768px) and (min-resolution: 2dppx) {
  .header__container {
    background-image: url(../images/header/icecrem-tab2x.png), url(../images/header/girltab2x.png), url(../images/header/circle-tab2x.png), url(../images/header/16tab2x.png), url(../images/header/23tab2x.png), url(../images/header/molokotab2x.png);
    background-size: 143px 336px, 168px 133px, 324px 322px, 43px 44px, 51px 43px, 124px 126px;
  }
}
@media screen and (min-width: 1280px) {
  .header__container {
    height: 665px;
    background-image: url(../images/header/icecrem-1x.png), url(../images/header/girl1x.png), url(../images/header/circle-1x.png), url(../images/header/16dec1x.png), url(../images/header/23dec1x.png), url(../images/header/moloko1x.png);
    background-repeat: no-repeat;
    background-position: right 450px bottom 0px, right 109px bottom 0px, right 267px top 52px, right 97px top 156px, right 97px top 248px, left 87px bottom 45px;
  }
}
@media screen and (min-width: 1280px) and (min-device-pixel-ratio: 2), screen and (min-width: 1280px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1280px) and (min-resolution: 192dpi), screen and (min-width: 1280px) and (min-resolution: 2dppx) {
  .header__container {
    background-image: url(../images/header/icecrem-2x.png), url(../images/header/girl2x.png), url(../images/header/circle-2x.png), url(../images/header/16dec2x.png), url(../images/header/23dec2x.png), url(../images/header/moloko2x.png);
    background-size: 236px 557px, 293px 232px, 538px 538px, 72px 77px, 92px 76px, 188px 191px;
  }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  .header__container {
    background-image: url(../images/header/icecrem-mob1x.png), url(../images/header/circle-1x.png);
    background-position: right 32px bottom 0px, right 22px bottom 52px;
    background-size: 171px 410px, 320px 320px;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) and (min-device-pixel-ratio: 2), screen and (min-width: 480px) and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 480px) and (max-width: 767px) and (min-resolution: 192dpi), screen and (min-width: 480px) and (max-width: 767px) and (min-resolution: 2dppx) {
  .header__container {
    background-image: url(../images/header/icecrem-mob2x.png), url(../images/header/circle-2x.png);
    background-size: 171px 410px, 320px 320px;
  }
}
.header__nav {
  z-index: 15;
}

.nav__list {
  display: flex;
}
@media screen and (max-width: 1279px) {
  .nav__list {
    display: none;
  }
}

.nav__item:not(:last-child) {
  margin-right: 35px;
}

.nav__link {
  font-family: DM Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.31;
  display: flex;
  align-items: center;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
}
.nav__link:hover, .nav__link:focus {
  color: #d41443;
}

.nav__link--red {
  color: #d41443;
}

.header__modal_btn {
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .header__modal_btn {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header__modal_btn {
    font-family: DM Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.31;
    align-items: center;
    text-align: center;
    color: #d41443;
    width: 160px;
    height: 44px;
    background: #ffffff;
    border-radius: 22px;
    cursor: pointer;
    border: none;
  }
}
.header__modal_btn:hover, .header__modal_btn:focus {
  background: #ecebeb;
}

@media screen and (max-width: 767px) {
  .hero__text {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hero__text {
    font-family: DM Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 8px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-top: 72px;
    padding-left: 124px;
  }
}
@media screen and (min-width: 1280px) {
  .hero__text {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 93px;
    padding-left: 163px;
  }
}

.header__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
}
@media screen and (min-width: 768px) {
  .header__box {
    padding-top: 37px;
  }
}

.header__logo {
  cursor: pointer;
  display: inline-block;
  transition: transform 250ms ease;
}
@media screen and (min-width: 1280px) {
  .header__logo {
    margin-left: -70px;
  }
}

.header__logo:hover,
.header__logo:focus-visible {
  transform: scale(1.08) rotate(-3deg);
}

.header__btn {
  margin-right: 5px;
  transform: rotate(90deg);
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .header__btn {
    margin-left: auto;
  }
}
@media screen and (min-width: 1280px) {
  .header__btn {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header__btn {
    margin-right: 30px;
  }
}

.btn_icon {
  transform: rotate(90deg);
  width: 29px;
  height: 21px;
}

.hero {
  padding-left: 20px;
  margin-top: 137px;
}
@media screen and (max-width: 767px) {
  .hero {
    z-index: 15;
  }
}
@media screen and (min-width: 768px) {
  .hero {
    margin-top: 15px;
    padding-left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .hero {
    margin-top: 84px;
  }
}

.hero__title {
  font-family: Titan One;
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22), 0 1px 2px rgba(0, 0, 0, 0.18);
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 22px;
    line-height: 1.13;
  }
}
@media screen and (min-width: 1280px) {
  .hero__title {
    font-size: 38px;
    line-height: 1.16;
  }
}

.title__styles {
  font-family: Titan One;
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  line-height: 1.04;
  text-transform: uppercase;
  color: #d41443;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff, 0 8px 18px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .title__styles {
    font-size: 34px;
    line-height: 90.5%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .title__styles {
    font-size: 58px;
    line-height: 1.12;
  }
}

.hero__buttons {
  margin-top: 19px;
  display: flex;
}
@media screen and (min-width: 1280px) {
  .hero__buttons {
    margin-top: 25px;
  }
}

.hero__btn {
  display: block;
  text-align: center;
  font-family: DM Sans;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  padding-top: 11px;
  padding-left: 24px;
  padding-bottom: 11px;
  padding-right: 24px;
  align-items: center;
  text-align: center;
  color: #ffffff;
  margin-right: 12px;
  background: #d41443;
  border-radius: 100px;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__btn:hover {
  background: #c7133e;
}
@media screen and (min-width: 1280px) {
  .hero__btn {
    padding: 15px 25px;
    font-size: 14px;
    line-height: 1.3;
    border-radius: 100px;
    margin-right: 15px;
    padding-top: 11px;
    padding-left: 23px;
    padding-bottom: 11px;
    padding-right: 23px;
  }
}

.hero__btn_styles {
  display: block;
  font-family: DM Sans;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  align-items: center;
  text-align: center;
  padding-top: 11px;
  padding-left: 24px;
  padding-bottom: 11px;
  padding-right: 24px;
  color: #d41443;
  background-color: #ffffff;
  border-radius: 100px;
  cursor: pointer;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__btn_styles:hover, .hero__btn_styles:focus {
  background: #ecebeb;
}
@media screen and (min-width: 1280px) {
  .hero__btn_styles {
    font-size: 14px;
    line-height: 1.3;
    padding: 15px 21px;
    border-radius: 100px;
    padding-top: 11px;
    padding-left: 21px;
    padding-bottom: 11px;
    padding-right: 21px;
  }
}

.mobile__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  z-index: 100;
  background-color: #e17992;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 768px) {
  .mobile__menu {
    width: 254px;
    height: 100vh;
  }
}
.mobile__menu.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}
@media screen and (min-width: 1280px) {
  .mobile__menu {
    display: none;
  }
}

.mobile_menu.is-open {
  transform: translateX(-180%);
}

.menu__btn_close {
  background: transparent;
  border: none;
  position: absolute;
  top: 23px;
  right: 28px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .menu__btn_close {
    top: 25px;
    right: 34px;
  }
}
.menu__btn_close:hover, .menu__btn_close:focus {
  fill: #d41443;
}

.menu__svg {
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.menu__svg:hover, .menu__svg:focus {
  background-color: #c7133e;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

.menu__btn {
  font-family: DM Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.13;
  justify-content: center;
  cursor: pointer;
  color: #d41443;
  min-width: 209px;
  height: 44px;
  background-color: #ffffff;
  padding: 15px;
  border: none;
  border-radius: 22px;
  margin-top: 60px;
  margin-left: 20px;
  margin-right: 20px;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 768px) {
  .menu__btn {
    width: 186px;
    height: 44px;
  }
}
.menu__btn:hover, .menu__btn:focus {
  background: #ecebeb;
}

.menu__btn_icon {
  margin-left: 15px;
  fill: #d41443;
}

.menu__list {
  margin-top: 19px;
}

.menu__link_styles {
  color: #d41443;
  padding-top: 13px;
  padding-bottom: 11px;
}

.menu__link {
  display: inline-block;
  font-family: DM Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.28;
  padding-top: 13px;
  padding-bottom: 11px;
  padding-left: 21px;
  align-items: center;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
}
.menu__link:hover, .menu__link:focus {
  color: #d41443;
}

.menu__item {
  border: 1px solid #e18298;
  border-left: none;
  border-right: none;
}

.button__hed {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin-left: 124px;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .button__hed {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .button__hed {
    width: 26px;
    height: 26px;
    margin-left: 160px;
    margin-top: 20px;
  }
}
.button__hed {
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.button__hed:hover, .button__hed:focus {
  background: #ecebeb;
}

.icon_svg {
  width: 7px;
  height: 9px;
  fill: #c7133e;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1280px) {
  .icon_svg {
    width: 10px;
    height: 12px;
  }
}

.section--big-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .section--big-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .section--big-padding {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.section__title--margin-product {
  margin-bottom: 130px;
}
@media screen and (min-width: 768px) {
  .section__title--margin-product {
    margin-bottom: 150px;
  }
}
@media screen and (min-width: 1280px) {
  .section__title--margin-product {
    margin-bottom: 260px;
  }
}

@media screen and (min-width: 768px) {
  .products {
    display: flex;
    margin: -10px;
  }
}
@media screen and (min-width: 1280px) {
  .products {
    margin: -15px;
  }
}

.products__item {
  position: relative;
  width: 280px;
  margin: 0 auto;
  padding: 160px 40px 40px 40px;
  background-color: #ffb8ca;
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  .products__item:not(:last-child) {
    margin-bottom: 130px;
  }
}
.products__item--bg-yellow {
  background-color: #f0d1a5;
}
.products__item--bg-green {
  background-color: #c2e297;
}
@media screen and (min-width: 768px) {
  .products__item {
    padding: 150px 10px 40px 10px;
    flex-basis: calc((100% - 60px) / 3);
    margin: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .products__item {
    padding: 160px 45px 40px 45px;
    flex-basis: calc((100% - 90px) / 3);
    margin: 15px;
  }
}

.products__title {
  margin-bottom: 60px;
  font-family: Titan One;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (min-width: 1280px) {
  .products__title {
    font-size: 30px;
  }
}
.products__title::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 50%;
  width: 249px;
  height: 252px;
  background-image: url(../images/products/product1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate(-50%, -45%);
}
@media (min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .products__title::before {
    background-image: url(../images/products/product1@2x.png);
  }
}
@media screen and (min-width: 768px) {
  .products__title::before {
    background-image: url(../images/products/product1-tab.png);
    width: 220px;
    height: 226px;
  }
}
@media screen and (min-width: 768px) and (min-device-pixel-ratio: 2), screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 768px) and (min-resolution: 192dpi), screen and (min-width: 768px) and (min-resolution: 2dppx) {
  .products__title::before {
    background-image: url(../images/products/product1@2x-tab.png);
  }
}
@media screen and (min-width: 1280px) {
  .products__title::before {
    transform: translate(-50%, -60%);
    background-image: url(../images/products/product1-full.png);
    width: 335px;
    height: 335px;
  }
}
@media screen and (min-width: 1280px) and (min-device-pixel-ratio: 2), screen and (min-width: 1280px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1280px) and (min-resolution: 192dpi), screen and (min-width: 1280px) and (min-resolution: 2dppx) {
  .products__title::before {
    background-image: url(../images/products/product1@2x-full.png);
  }
}

.products__title--bg-yellow::before {
  background-image: url(../images/products/product2.png);
}
@media (min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .products__title--bg-yellow::before {
    background-image: url(../images/products/product2@2x.png);
  }
}
@media screen and (min-width: 768px) {
  .products__title--bg-yellow::before {
    background-image: url(../images/products/product2-tab.png);
    width: 220px;
    height: 226px;
  }
}
@media screen and (min-width: 768px) and (min-device-pixel-ratio: 2), screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 768px) and (min-resolution: 192dpi), screen and (min-width: 768px) and (min-resolution: 2dppx) {
  .products__title--bg-yellow::before {
    background-image: url(../images/products/product2@2x-tab.png);
  }
}
@media screen and (min-width: 1280px) {
  .products__title--bg-yellow::before {
    background-image: url(../images/products/product2-full.png);
    width: 335px;
    height: 335px;
  }
}
@media screen and (min-width: 1280px) and (min-device-pixel-ratio: 2), screen and (min-width: 1280px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1280px) and (min-resolution: 192dpi), screen and (min-width: 1280px) and (min-resolution: 2dppx) {
  .products__title--bg-yellow::before {
    background-image: url(../images/products/product2@2x-full.png);
  }
}

.products__title--bg-green::before {
  background-image: url(../images/products/product3.png);
}
@media (min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .products__title--bg-green::before {
    background-image: url(../images/products/product3@2x.png);
  }
}
@media screen and (min-width: 768px) {
  .products__title--bg-green::before {
    background-image: url(../images/products/product3-tab.png);
    width: 220px;
    height: 226px;
  }
}
@media screen and (min-width: 768px) and (min-device-pixel-ratio: 2), screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 768px) and (min-resolution: 192dpi), screen and (min-width: 768px) and (min-resolution: 2dppx) {
  .products__title--bg-green::before {
    background-image: url(../images/products/product3@2x-tab.png);
  }
}
@media screen and (min-width: 1280px) {
  .products__title--bg-green::before {
    background-image: url(../images/products/product3-full.png);
    width: 335px;
    height: 335px;
  }
}
@media screen and (min-width: 1280px) and (min-device-pixel-ratio: 2), screen and (min-width: 1280px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1280px) and (min-resolution: 192dpi), screen and (min-width: 1280px) and (min-resolution: 2dppx) {
  .products__title--bg-green::before {
    background-image: url(../images/products/product3@2x-full.png);
  }
}

.products__text {
  position: relative;
  margin-bottom: 30px;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.52;
  text-align: center;
  letter-spacing: 0.04em;
  color: #ffffff;
}
.products__text::before {
  content: " ";
  width: 26px;
  height: 6px;
  background-image: url(../images/products/product-after.png);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .products__text {
    line-height: 1.76;
  }
}
@media screen and (min-width: 1280px) {
  .products__text {
    font-size: 16px;
  }
}

.products__btn {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-color: transparent;
  background-image: url(../images/products/product-button.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .products__btn {
    background-image: url(../images/products/product-button@2x.png);
  }
}
.products__btn {
  cursor: pointer;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.products__btn:hover,
.products__btn:focus-visible {
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.section--about {
  padding-top: 125px;
}
@media screen and (min-width: 768px) and (max-width: 1279.5px) {
  .section--about {
    padding-top: 130px;
  }
}
.section--about {
  padding-bottom: 0;
  background-color: #fff5f6;
}
@media screen and (max-width: 767.5px) {
  .section--about {
    background-image: url(../images/about/bg-img-mobile-min.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom 41px center;
  }
}
@media screen and (max-width: 767.5px) and (min-resolution: 2dppx) {
  .section--about {
    background-image: url(../images/about/bg-img-mobile-2x-min.png);
  }
}
@media screen and (min-width: 1280px) {
  .section--about {
    background-image: url(../images/about/bg-img-desktop-min.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
  }
}
@media screen and (min-width: 1280px) and (min-resolution: 2dppx) {
  .section--about {
    background-image: url(../images/about/bg-img-desktop-2x-min.png);
  }
}

.section__title--margin-about {
  margin-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .section__title--margin-about {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .section__title--margin-about {
    margin-bottom: 70px;
  }
}

@media screen and (min-width: 768px) {
  .about-wrap {
    display: flex;
    justify-content: space-between;
  }
}

.about-picture {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.5px) {
  .about-picture {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 768px) {
  .about-picture {
    margin-right: 17px;
  }
}
@media screen and (min-width: 1280px) {
  .about-picture {
    margin-right: 74px;
  }
}

@media screen and (min-width: 768px) {
  .about-image {
    max-width: none;
    width: 340px;
    height: 339px;
  }
}
@media screen and (min-width: 1280px) {
  .about-image {
    width: 516px;
    height: 516px;
  }
}

@media screen and (max-width: 767.5px) {
  .description {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (min-width: 768px) {
  .description {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .description {
    padding-top: 51px;
  }
}

.bold-text {
  margin-bottom: 31px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.58;
  letter-spacing: 0.04em;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .bold-text {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1ю79;
  }
}
@media screen and (min-width: 1280px) {
  .bold-text {
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1ю75;
  }
}
.bold-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.58;
  color: #000000;
}

.text {
  margin-bottom: 21px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.58;
  letter-spacing: 0.04em;
  color: #907e82;
}
@media screen and (min-width: 768px) {
  .text {
    margin-bottom: 62px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.79;
  }
}
@media screen and (min-width: 1280px) {
  .text {
    margin-bottom: 45px;
    line-height: 1.93;
  }
}

.button--about {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button--about:hover, .button--about:focus {
  background-color: #ecebeb;
}

.button__icon {
  margin-left: 14px;
  fill: #d41443;
}

.advantages__section {
  background-color: #fff5f6;
  padding-top: 40px;
  padding-bottom: 97px;
}
@media screen and (min-width: 768px) {
  .advantages__section {
    padding-top: 66px;
    padding-bottom: 140px;
  }
}
@media screen and (min-width: 1280px) {
  .advantages__section {
    padding-top: 40px;
  }
}

@media screen and (max-width: 767.9px) {
  .advantages__list {
    margin-bottom: -30px;
  }
}
@media screen and (min-width: 768px) {
  .advantages__list {
    display: flex;
    margin-left: -60px;
  }
}
@media screen and (min-width: 1280px) {
  .advantages__list {
    margin-left: -30px;
  }
}

@media screen and (max-width: 767.9px) {
  .advantages__item {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .advantages__item {
    flex-basis: calc(33.3333333333% - 60px);
    margin-left: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .advantages__item {
    flex-basis: calc(33.3333333333% - 30px);
    margin-left: 30px;
  }
}

.advantages__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 13px;
  font-family: Titan One;
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: 0.04em;
  color: #d41443;
}
@media screen and (max-width: 767.9px) {
  .advantages__title {
    text-transform: uppercase;
  }
}
@media screen and (min-width: 768px) {
  .advantages__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 1280px) {
  .advantages__title {
    font-size: 55px;
    margin-bottom: 15px;
  }
}
.advantages__title--first::before {
  content: "";
  width: 33px;
  height: 50px;
  margin-bottom: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/advantages-images/advantages-icon1-min.png);
}
@media (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .advantages__title--first::before {
    background-image: url(../images/advantages-images/advantages-icon1-2x-min.png);
  }
}
@media screen and (min-width: 768px) {
  .advantages__title--first::before {
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 1280px) {
  .advantages__title--first::before {
    margin-bottom: 40px;
  }
}
.advantages__title--second::before {
  content: "";
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/advantages-images/advantages-icon2-min.png);
}
@media (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .advantages__title--second::before {
    background-image: url(../images/advantages-images/advantages-icon2-2x-min.png);
  }
}
@media screen and (min-width: 768px) {
  .advantages__title--second::before {
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 1280px) {
  .advantages__title--second::before {
    margin-bottom: 40px;
  }
}
.advantages__title--third::before {
  content: "";
  width: 44px;
  height: 50px;
  margin-bottom: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/advantages-images/advantages-icon3-min.png);
}
@media (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .advantages__title--third::before {
    background-image: url(../images/advantages-images/advantages-icon3-2x-min.png);
  }
}
@media screen and (min-width: 768px) {
  .advantages__title--third::before {
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 1280px) {
  .advantages__title--third::before {
    margin-bottom: 40px;
  }
}

.advantages__text {
  font-weight: bold;
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: 0.02em;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .advantages__text {
    font-size: 14px;
    line-height: 1.71;
  }
}
@media screen and (min-width: 1280px) {
  .advantages__text {
    font-size: 16px;
    line-height: 1.75;
  }
}

@media screen and (max-width: 767.9px) {
  .advantages__title {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .advantages__title--first::before,
  .advantages__title--second::before,
  .advantages__title--third::before {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.gallery {
  padding-bottom: 80px;
  padding-top: 0px;
  background: linear-gradient(180deg, rgb(255, 245, 246) 49px, rgb(255, 255, 255) 2%);
}
@media screen and (min-width: 768px) {
  .gallery {
    padding-bottom: 121px;
    padding-top: 0;
    background: linear-gradient(180deg, rgb(255, 245, 246) 96px, rgb(255, 255, 255) 2%);
  }
}
@media screen and (min-width: 1280px) {
  .gallery {
    padding-bottom: 123px;
    padding-top: 0;
    background: linear-gradient(180deg, rgb(255, 245, 246) 141px, rgb(255, 255, 255) 2%);
  }
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .gallery__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}

.gallery__item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .gallery__item--10 {
    display: none;
  }
}
.reviews {
  margin: 0 auto;
  padding-bottom: 40px;
  max-width: 280px;
}
@media screen and (min-width: 480px) {
  .reviews {
    max-width: 440px;
  }
}
@media screen and (min-width: 768px) {
  .reviews {
    padding-bottom: 80px;
    max-width: 620px;
  }
}
@media screen and (min-width: 1280px) {
  .reviews {
    padding-bottom: 90px;
    max-width: 926px;
  }
}

.container__position {
  position: relative;
  background-color: #fafafa;
  margin-top: 29px;
  padding: 43px 50px 14px 50px;
}
.container__position::before {
  content: "";
  background-image: url(../images/customer-reviews/quotes.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  background-position: center;
  position: absolute;
  width: 54px;
  height: 40px;
  top: 28px;
  left: 31px;
  position: absolute;
  fill: #e1e1e1;
}
@media screen and (min-width: 480px) {
  .container__position::before {
    top: 30px;
    left: 18px;
  }
}
@media screen and (min-width: 768px) {
  .container__position::before {
    top: 30px;
    left: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .container__position::before {
    top: 32px;
    left: 45px;
  }
}
@media screen and (min-width: 768px) {
  .container__position {
    padding: 47px 80px 34px 80px;
    margin-top: 19px;
  }
}
@media screen and (min-width: 1280px) {
  .container__position {
    padding: 47px 89px 39px 87px;
    margin-top: 15px;
  }
}

.reviews__container {
  display: flex;
  justify-content: center;
  position: relative;
}

.reviews__text {
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 2.59;
  text-align: center;
  display: block;
  background-image: repeating-linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0) 29px, #e1e1e1 0, #e1e1e1 30px);
  letter-spacing: 0.04em;
  color: #000000;
  max-width: 157px;
  overflow: auto;
  max-height: 314px;
}
@media screen and (min-width: 480px) {
  .reviews__text {
    max-width: max-content;
  }
}
@media screen and (min-width: 1280px) {
  .reviews__text {
    font-size: 14px;
    line-height: 2.22;
  }
}

.reviews__img {
  display: flex;
  justify-content: center;
}

.reviews__details {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .reviews__details {
    margin-top: 24px;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .reviews__details {
    margin-top: 15px;
  }
}

.reviews__details--list {
  display: none;
}

.reviews__details--title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.86;
  color: #000000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reviews__details--title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .reviews__details--title {
    font-size: 20px;
  }
}

.navigation {
  display: flex;
  justify-content: center;
}

.num {
  display: flex;
  justify-content: center;
  min-width: 12px;
  height: 12px;
  background: #d9d9d9;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  transition: 0.75s;
  color: transparent;
  margin-right: 9px;
  margin-left: 9px;
}

.num:hover,
.num:focus {
  background: transparent;
  background-image: url(../images/customer-reviews/house.png);
  transform: scale(1.3);
  border-radius: 0%;
}

.view {
  overflow: hidden;
  width: 280px;
}
@media screen and (min-width: 480px) {
  .view {
    width: 440px;
  }
}
@media screen and (min-width: 768px) {
  .view {
    width: 620px;
  }
}
@media screen and (min-width: 1280px) {
  .view {
    width: 926px;
  }
}

.element {
  width: 280px;
}
@media screen and (min-width: 480px) {
  .element {
    width: 440px;
  }
}
@media screen and (min-width: 768px) {
  .element {
    width: 620px;
  }
}
@media screen and (min-width: 1280px) {
  .element {
    width: 926px;
  }
}

.content {
  width: fit-content;
  display: flex;
  transition: 0.5s;
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.reviews__slider {
  position: relative;
}

.previous,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  cursor: pointer;
  color: #d41443;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: background-color 250ms ease, color 250ms ease, transform 250ms ease;
}
@media screen and (min-width: 768px) {
  .previous,
  .next {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .previous {
    left: -52px;
  }
}
@media screen and (min-width: 1280px) {
  .previous {
    left: -64px;
  }
}

@media screen and (min-width: 768px) {
  .next {
    right: -52px;
  }
}
@media screen and (min-width: 1280px) {
  .next {
    right: -64px;
  }
}

.previous:hover,
.previous:focus-visible,
.next:hover,
.next:focus-visible {
  color: #ffffff;
  background: #d41443;
  transform: translateY(-50%) scale(1.08);
}

.reviews__details--item:not(:last-child) {
  margin-right: 18px;
}

.navigation {
  margin-left: -9px;
  margin-right: -9px;
}

.selected {
  transform: scale(1.3);
  background: transparent;
  background-image: url(../images/customer-reviews/house.png);
  width: 12px;
  height: 12px;
  border-radius: 0%;
}

.contacts-section {
  padding-top: 40px;
}
@media screen and (max-width: 1279.9px) {
  .contacts-section {
    background: -webkit-linear-gradient(180deg, rgb(255, 255, 255) 80px, rgb(255, 245, 246) 2%);
    background: -moz-linear-gradient(180deg, rgb(255, 255, 255) 80px, rgb(255, 245, 246) 2%);
    background: linear-gradient(180deg, rgb(255, 255, 255) 80px, rgb(255, 245, 246) 2%);
  }
}
@media screen and (min-width: 1280px) {
  .contacts-section {
    background-image: url(../images/background-contacts.png), linear-gradient(180deg, rgb(255, 255, 255) 80px, rgb(255, 245, 246) 2%);
    background-repeat: no-repeat;
    background-position: 50% 25%;
    background-size: 1920px;
  }
}
@media screen and (min-width: 1280px) and (min-resolution: 2dppx) {
  .contacts-section {
    background-image: url(../images/background-contacts-2x.png), linear-gradient(180deg, rgb(255, 255, 255) 80px, rgb(255, 245, 246) 2%);
  }
}

.contacts {
  margin-bottom: 55px;
}
@media screen and (min-width: 768px) {
  .contacts {
    font-size: 14px;
    margin: 0px -10px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .contacts {
    font-size: 16px;
    margin: 0px -15px;
    margin-bottom: 85px;
    position: relative;
  }
}

.contacts__img {
  position: absolute;
  width: 1920px;
  top: 20%;
}

@media screen and (max-width: 767.8px) {
  .contacts__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.contacts__item {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 350px;
  box-shadow: 0px 8px 30px rgba(212, 20, 67, 0.1);
  border-radius: 24px;
  padding: 43px 20px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .contacts__item {
    padding: 50px 31px;
    margin: 0px 10px;
    flex-basis: calc((100% - 60px) / 3);
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 500ms;
  }
  .contacts__item:hover, .contacts__item:focus {
    transform: scale(1.2);
    z-index: 2;
  }
}
@media screen and (min-width: 1280px) {
  .contacts__item {
    padding: 55px 43px;
    margin: 0px 15px;
    width: 330px;
    flex-basis: calc((100% - 90px) / 3);
  }
}

.contacts__title {
  text-transform: uppercase;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #ffffff;
  display: inline-block;
  padding: 0px 25px;
  border-radius: 4px;
  background-color: #f0d1a5;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .contacts__title {
    font-size: 16px;
    line-height: 28px;
    padding: 0px 16px;
    border-radius: 6px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .contacts__title {
    margin-bottom: 32px;
  }
}

.contacts__title--bgcolor-gren {
  background-color: #c2e297;
}

.contacts__primary-text {
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #000000;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .contacts__primary-text {
    line-height: 24px;
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .contacts__primary-text {
    line-height: 28px;
  }
}

.contacts__secondary-text {
  font-weight: 500;
  line-height: 16px;
  color: #907e82;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .contacts__secondary-text {
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .contacts__secondary-text {
    line-height: 28px;
    margin-bottom: 32px;
  }
}

.contacts__work-time {
  padding: 25px 0px;
  position: relative;
  margin-bottom: 25px;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .contacts__work-time {
    line-height: 24px;
    padding: 30px 0px;
  }
}
@media screen and (min-width: 1280px) {
  .contacts__work-time {
    line-height: 28px;
    padding: 32px 0px;
  }
}

.contacts__work-time__primary-text {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #000000;
}

.contacts__work-time__primary-text--before::before {
  content: "";
  position: absolute;
  top: 0%;
  width: 100%;
  height: 1px;
  background-color: #907e82;
}

.contacts__work-time__time--margin {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .contacts__work-time__time--margin {
    margin-bottom: 15px;
  }
}

.contacts__work-time__time--after::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 1px;
  background-color: #907e82;
}

.contacts__work-time__time {
  font-weight: 500;
  color: #ffa5ba;
}

.contacts__link {
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #907e82;
}
@media screen and (min-width: 768px) {
  .contacts__link {
    line-height: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .contacts__link {
    line-height: 28px;
  }
}

.button-contacts {
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .button-contacts {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .button-contacts {
    display: flex;
    justify-content: center;
  }
}

.button-contacts__locations {
  color: #ffffff;
  background-color: #d41443;
}
@media screen and (max-width: 767.9px) {
  .button-contacts__locations {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .button-contacts__locations {
    margin-right: 15px;
  }
}
.button-contacts__locations:hover, .button-contacts__locations:focus {
  background-color: #c7133e;
}

.button-contacts__franchise:hover, .button-contacts__franchise:focus {
  background-color: #ecebeb;
}

.button--modification {
  font-weight: 700;
  min-width: 162px;
  padding: 11px 0px;
}
@media screen and (min-width: 768px) {
  .button--modification {
    min-width: 190px;
  }
}
@media screen and (min-width: 1280px) {
  .button--modification {
    min-width: 195px;
  }
}

.button-contacts__svg {
  margin-left: 13px;
  height: 9px;
  width: 6px;
}

.button-contacts__svg--color-white {
  fill: #ffffff;
}

.button-contacts__svg--color-red {
  fill: #d41443;
}

.order {
  background-color: #fff5f6;
}

.order__title {
  margin-bottom: 12px;
}

.order__subtitle {
  max-width: 540px;
  margin: 0 auto 40px;
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
  color: #907e82;
}
@media screen and (min-width: 768px) {
  .order__subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }
}

.order__form {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order__label {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d41443;
}

.order__input {
  width: 100%;
  padding: 14px 18px;
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.31;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #ffb8ca;
  border-radius: 22px;
  outline: none;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.order__input::placeholder {
  color: #ffa5ba;
}

.order__fieldset {
  margin: 0;
  padding: 0;
  border: none;
  min-inline-size: 0;
  width: 100%;
}

.order__hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #ffa5ba;
}

.order__options {
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 480px) {
  .order__options {
    gap: 12px;
  }
}

.order__option {
  flex: 1 1 0;
  min-width: 0;
  cursor: pointer;
}

.order__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.order__pill {
  display: block;
  width: 100%;
  padding: 11px 8px;
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.31;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 480px) {
  .order__pill {
    font-size: 15px;
    padding: 11px 12px;
  }
}
.order__pill {
  color: #d41443;
  background-color: #ffffff;
  border: 1px solid #ffb8ca;
  border-radius: 22px;
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
}

.order__option:hover .order__pill {
  border-color: #d41443;
}

.order__checkbox:checked + .order__pill {
  color: #ffffff;
  background-color: #d41443;
  border-color: #d41443;
}

.order__checkbox:focus-visible + .order__pill {
  box-shadow: 0 0 0 3px rgba(212, 20, 67, 0.18);
}

.order__input:hover,
.order__input:focus {
  border-color: #d41443;
  box-shadow: 0 0 0 3px rgba(212, 20, 67, 0.12);
}

.order__btn {
  align-self: center;
  margin-top: 10px;
  min-width: 200px;
  padding: 14px 40px;
  cursor: pointer;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.31;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #d41443;
  border: none;
  border-radius: 22px;
  transition: background-color 250ms ease, transform 250ms ease;
}

.order__btn:hover,
.order__btn:focus {
  background-color: #c7133e;
  transform: scale(1.03);
}

.footer {
  padding-top: 113px;
  padding-bottom: 25px;
  background: #fff5f6;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 165px;
    padding-bottom: 18px;
  }
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer__container-mob {
    padding-right: 22px;
    padding-left: 22px;
  }
}

.footer-box {
  padding-bottom: 43px;
}
@media screen and (min-width: 768px) {
  .footer-box {
    display: flex;
    justify-content: space-between;
  }
}

.footer-box-title {
  margin-bottom: 43px;
}
@media screen and (min-width: 768px) {
  .footer-box-title {
    margin-bottom: 0;
  }
}

.footer-box-title__one {
  margin-bottom: 17px;
  width: 232px;
  font-family: Titan One;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.17;
  text-transform: uppercase;
  color: #ffa5ba;
}
@media screen and (min-width: 768px) {
  .footer-box-title__one {
    width: 340px;
    font-size: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .footer-box-title__one {
    width: 472px;
    font-size: 30px;
  }
}

.footer-box-title__two {
  width: 200px;
  font-family: Titan One;
  font-style: normal;
  font-weight: normal;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d41443;
}
@media screen and (min-width: 768px) {
  .footer-box-title__two {
    width: 340px;
    font-size: 48px;
  }
}
@media screen and (min-width: 1280px) {
  .footer-box-title__two {
    width: 472px;
    font-size: 58px;
  }
}

.footer-box-double {
  flex-grow: 1;
}

.social {
  margin-bottom: 43px;
}

.social {
  display: flex;
  justify-content: flex-end;
}

.social__item {
  width: 34px;
  height: 34px;
}

.social__item + .social__item {
  margin-left: 30px;
}

.social__logo {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.social__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fea5bb;
}
.social__link:focus, .social__link:hover {
  background-color: #d41443;
  color: #ffffff;
}

.footer-contact {
  font-family: DM Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 186%;
  text-align: right;
}

.footer-contact--text {
  color: #000000;
}

.footer-contact--number {
  color: #d41443;
  transition: color 250ms ease, text-shadow 250ms ease;
}

.footer-contact--number:hover,
.footer-contact--number:focus-visible {
  color: #c7133e;
  text-shadow: 0 0 1px rgba(199, 19, 62, 0.4);
}

.footer-box-last {
  position: relative;
}
.footer-box-last::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
  display: block;
  position: absolute;
  left: 0;
}

.footer-box-last__text {
  margin: 0 auto;
  padding-top: 22px;
  font-family: DM Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 152%;
  text-align: center;
  color: #907e82;
}
@media screen and (max-width: 767px) {
  .footer-box-last__text {
    width: 140px;
  }
}
@media screen and (min-width: 768px) {
  .footer-box-last__text {
    padding-top: 29px;
  }
}
@media screen and (min-width: 1280px) {
  .footer-box-last__text {
    padding-top: 9px;
  }
}

@media screen and (max-width: 767px) {
  .footer-box-title__one,
  .footer-box-title__two {
    width: 100%;
    text-align: center;
  }
  .social {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
  }
}
