@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@500;600;700&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400&display=swap");
:root {
  --swiper-theme-color: #EB354B;
  --swiper-navigation-size: 25px;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 20px;
}

body {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: normal;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}

h1 {
  font-size: 48px;
  font-family: "Raleway";
  line-height: auto;
  font-weight: 700;
  margin-bottom: 48px;
}

h2 {
  font-size: 42px;
  font-weight: 700;
  font-family: "Raleway";
  line-height: normal;
  margin-bottom: 48px;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

button, .button {
  background: #EB354B;
  color: #FFFFFF;
  cursor: pointer;
  transition: 300ms;
  border-radius: 9px;
  padding: 20px 24px;
  font: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  border: none;
}
button:active, .button:active {
  background: #000000;
  color: #FFFFFF;
}
button--bordered, .button--bordered {
  color: #000000;
  background: transparent;
  border: 3px solid #EB354B;
}
button--bordered:hover, .button--bordered:hover {
  color: #FFFFFF;
  background: #EB354B;
}
button--bordered:active, .button--bordered:active {
  background-color: #f45e70;
}
button:hover, .button:hover {
  background-color: #f45e70;
}

input {
  font: inherit;
  font-size: 20px;
  color: #7F7F7F;
  font-weight: 500;
  background: #FFFFFF;
  border-radius: 9px;
  border: 1px solid #8E8E8E;
  padding: 18px 16px;
  flex-grow: 1;
  max-width: 490px;
  outline: none;
}
input:placeholder {
  opacity: 1;
}
input.error {
  border: 1px solid #F2022D;
}

section {
  margin-bottom: 100px;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.container {
  max-width: 1380px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

.section-wrapper {
  background-color: #FFFFFF;
  padding: 50px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.header {
  z-index: 15;
}

.search {
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 150px;
  padding: 20px 0 50px;
  background-color: #262D37;
  transform: translateY(-150%);
  transition: 500ms ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.search--visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.search-wrapper {
  gap: 14px;
  align-items: center;
}
.search-wrapper form {
  flex-grow: 1;
}

.search__input {
  position: relative;
}
.search__input input {
  width: 100%;
  max-width: 100%;
  outline: none;
  padding-left: 60px;
  transition: 300ms;
}
.search__input input:focus {
  border: 1px solid #000000;
}
.search__input button {
  background: transparent;
  padding: 0;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.search__input button svg {
  width: 28px;
  height: 28px;
  transition: 300ms;
}
.search__input button svg:hover {
  fill: #EB354B;
}

.search__close {
  cursor: pointer;
}
.search__close svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
  transition: 300ms;
}
.search__close svg:hover {
  fill: #EB354B;
}

.top-header-wrapper {
  background: #262D37;
}

.top-header {
  color: #FFFFFF;
  justify-content: space-between;
}

.header__nav {
  align-items: center;
}
.header__nav ul:not(.nav__dropdown) {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__nav a {
  text-decoration: none;
  transition: 300ms;
}
.header__nav a:hover {
  color: #EB354B;
}

.nav__item {
  padding: 20px 20px;
}
.nav__item:first-child {
  padding: 20px 32px;
}

.nav__dropdown-item {
  transition: 300ms;
  position: relative;
}
.nav__dropdown-item + li {
  padding-left: 6px;
}
.nav__dropdown-item:hover {
  color: #EB354B;
  background-color: #FFFFFF;
}
.nav__dropdown-item:hover .nav__dropdown {
  visibility: visible;
  opacity: 1;
}

.nav__dropdown {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #FFFFFF;
  padding: 21px 32px 32px;
  visibility: hidden;
  opacity: 0;
  transition: 300ms;
  list-style: none;
  border-radius: 0px 0px 9px 9px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
}
.nav__dropdown li:first-of-type {
  color: #EB354B;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 2px;
}
.nav__dropdown a {
  color: #000000;
}

.header__city {
  gap: 30px;
  margin-right: 76px;
}
.header__city span {
  color: #EB354B;
}

.header__search {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.header__search svg {
  height: 28px;
  width: 28px;
  fill: #FFFFFF;
  transition: 300ms;
}
.header__search svg:hover {
  fill: #EB354B;
}

.main-header {
  justify-content: space-between;
  padding: 32px 0 34px;
  border-bottom: 1px solid #000000;
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 17px;
  text-decoration: none;
  transition: 300ms;
}
.header__logo a:hover {
  color: #EB354B;
}
.header__logo img {
  max-height: 64px;
}

.logo__text {
  font-size: 44px;
  display: flex;
  gap: 23px;
}

.main-header-wrapper {
  background: #F6F6F6;
}

.main-header--right {
  gap: 120px;
  flex-flow: 0;
  align-items: center;
}

.header__phone {
  gap: 16px;
  align-items: center;
}
.header__phone a {
  font-size: 24px;
  line-height: 100%;
  text-decoration: none;
  transition: 300ms;
}
.header__phone a:hover {
  color: #EB354B;
}
.header__phone svg {
  width: 44px;
  height: 32px;
}

.header-buttons {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  gap: 32px;
}
.header-buttons button {
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 400;
}

.promo-wrapper {
  justify-content: space-between;
  gap: 20px;
}

.promo {
  background: #F6F6F6;
  padding: 53px 0 42px;
}

.promo-content h1 {
  margin-bottom: 48px;
}

.promo-benefits {
  margin-bottom: 55px;
  max-width: 600px;
  gap: 40px;
  justify-content: space-between;
}

.benefit__item {
  align-items: center;
  gap: 40px;
}

.benefit__icon {
  display: flex;
  align-items: center;
}
.benefit__icon svg {
  height: 60px;
  width: 60px;
}

.benefit__text p {
  font-family: "Raleway";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 100%;
}
.benefit__text span {
  color: #474646;
}

.promo-form form {
  gap: 24px;
  margin-bottom: 25px;
}
.promo-form p {
  max-width: 500px;
  line-height: 150%;
}

.stats-wrapper {
  flex-direction: column;
  justify-content: space-between;
  background-image: url("../img/stats-bg.jpg");
  background-size: cover;
  color: #FFFFFF;
  border-radius: 9px;
  padding: 26px 24px 213px;
  width: calc(25% - 40px);
}

.stats-total {
  font-family: "Raleway";
  text-align: center;
  line-height: 100%;
}
.stats-total span {
  font-size: 74px;
  font-weight: 600;
  line-height: normal;
}
.stats-total p {
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}

.stats-details {
  display: flex;
  flex-direction: column;
}

.stats__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stats__item:not(:first-child) {
  padding-top: 15px;
}
.stats__item:not(:last-child) {
  border-bottom: 1px solid #CACACA;
  padding-bottom: 14px;
}

.stats__num {
  font-size: 20px;
}

.categories-wrapper {
  gap: 40px;
}

.categories-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(305px, 305px));
  gap: 40px;
  margin-bottom: 40px;
}

.category__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 305px;
  padding: 24px 0 0;
  text-align: center;
  border-radius: 9px;
  background: #F6F6F6;
  overflow: hidden;
  transition: 300ms;
  position: relative;
}
.category__card:hover {
  color: #EB354B;
  box-shadow: 0px 10px 9px -5px rgba(53, 32, 30, 0.25);
}

.category__title {
  font-size: 18px;
  color: currentColor;
  text-decoration: none;
  font-family: "Raleway";
  font-weight: 500;
}
.category__title::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.categories-search {
  background: #F6F6F6;
  padding: 41px 57px;
  border-radius: 9px;
}
.categories-search h3 {
  margin-bottom: 30px;
}
.categories-search select {
  width: 100%;
  font: inherit;
  font-size: 20px;
  font-weight: 500;
  color: #7f7f7f;
  background: #FFFFFF;
  border: 1px solid #8E8E8E;
  border-radius: 9px;
  padding: 22px 16px 19px;
  transition: 300ms;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='12' viewBox='0 0 22 12' fill='none'%3E%3Cpath d='M1 1L10.8995 10.8995L20.799 0.999999' stroke='%23EB354B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  cursor: pointer;
  outline: none;
  filter: grayscale(100%);
}
.categories-search select:hover {
  border: 1px solid #000000;
  filter: grayscale(0%);
}
.categories-search option {
  font: inherit;
  color: #000000;
}

.callback--has-pic {
  margin-top: 265px;
}

.callback-wrapper {
  container: callback/inline-size;
  background: #F6F6F6;
  border-radius: 9px;
  padding: 48px 90px 48px 75px;
  position: relative;
}
.callback-wrapper::before {
  content: "";
  height: 17px;
  width: 100%;
  border-radius: 9px 9px 0 0;
  background: #EB354B;
  position: absolute;
  top: 0;
  left: 0;
}

.callback__form h2 {
  margin-bottom: 28px;
}
.callback__form p {
  font-size: 18px;
  max-width: 565px;
  margin-bottom: 43px;
  line-height: normal;
}
.callback__form form {
  display: flex;
  gap: 20px 40px;
  flex-wrap: wrap;
}
.callback__form input {
  max-width: 410px;
}
.callback__form button {
  width: 100%;
  max-width: 180px;
}

.callback__image {
  position: absolute;
  bottom: 0;
  right: 45px;
}

.bg--second {
  background: #F6F6F6;
  padding: 60px 0;
}

.reviews {
  overflow: hidden;
  padding-bottom: 10px;
}

.swiper-reviews {
  width: 100%;
}

.slider-controls {
  gap: 40px;
}
.slider-controls svg {
  width: 21px;
  height: 21px;
  cursor: pointer;
  transition: 300ms;
}
.slider-controls svg:hover {
  opacity: 0.65;
}

.reviews__header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 55px;
}
.reviews__header h2 {
  margin-bottom: 0;
}

.reviews-items {
  display: flex;
}

.review__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-basis: 420px;
  flex-shrink: 1;
  max-width: 420px;
  min-width: 420px;
  background: #FFF;
  border-radius: 9px;
  padding: 21px 24px;
  transition: 300ms;
  height: auto;
}

.review__header {
  gap: 16px;
  align-items: center;
}

.review__name {
  font-size: 18px;
  font-family: "Raleway";
  font-weight: 500;
}

.review__preview img {
  display: block;
  max-width: 100%;
  height: 210px;
}

.swiper-slide-active {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
.swiper-slide-active .review__name {
  font-size: 14px;
  font-weight: 700;
}

.review__text {
  font-size: 14px;
  line-height: 22px;
}

.review__rate {
  margin-top: 20px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.review__rate svg {
  fill: #EB354B;
  width: 24px;
  height: 24px;
}
.review__rate.rate--4 svg:last-child {
  fill: #C7C7C7;
}
.review__rate.rate--45 svg:last-child {
  fill: #EB354B;
  -webkit-mask: url(#half);
          mask: url(#half);
}
.review__rate.rate--5 svg:last-child {
  fill: #EB354B;
}

.discount-wrapper {
  border: 3px dashed #000;
  border-radius: 9px;
  padding: 60px 74px;
  gap: 37px;
  align-items: flex-start;
}

.discount__percent {
  font-size: 183px;
  font-weight: 900;
  line-height: 100%;
  color: #EB354B;
  line-height: 143px;
}

.discount__text {
  max-width: 505px;
}
.discount__text h3 {
  margin-bottom: 27px;
}
.discount__text p {
  font-size: 18px;
  line-height: normal;
}

.faq {
  margin-bottom: 0;
}

.faq__item {
  padding-bottom: 31px;
  border-bottom: 1px solid #B6B6B6;
  transition: 300ms;
  cursor: pointer;
}
.faq__item:hover {
  border-bottom: 1px solid #000000;
}
.faq__item:hover svg {
  fill: #EB354B;
}
.faq__item--active svg {
  transform: rotate(45deg);
}
.faq__item--active .faq__question {
  padding-bottom: 31px;
}
.faq__item--active .faq__answer {
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.faq__item:not(:first-child) {
  padding-top: 40px;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  font-family: "Raleway";
  font-size: 20px;
  transition: 300ms;
}
.faq__question svg {
  width: 19px;
  height: 19px;
  fill: #000000;
  transition: 300ms;
}

.faq__answer {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 300ms;
  will-change: height;
}

.text-wrapper img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 9px;
  margin-bottom: 40px;
}

.text-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  line-height: 26px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.text-content p:not(:last-child) {
  margin-bottom: 30px;
}

.contacts-wrapper {
  justify-content: space-between;
  row-gap: 40px;
}

.contacts-items {
  flex-direction: column;
  gap: 40px;
}

.contacts__item {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 18px;
  line-height: normal;
}
.contacts__item a {
  text-decoration: none;
  transition: 300ms;
}
.contacts__item a:hover {
  color: #EB354B;
}
.contacts__item span {
  font-weight: 700;
}
.contacts__item p {
  max-width: 305px;
}
.contacts__item svg {
  max-width: 34px;
  max-height: 34px;
}

.contacts-cities {
  max-width: 50%;
  gap: 20px 15px;
}

.contacts__city {
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  line-height: normal;
  transition: 300ms;
}
.contacts__city--active {
  color: #EB354B;
  font-weight: 700;
}
.contacts__city:hover {
  color: #EB354B;
}

.map {
  margin-bottom: 0;
}

footer {
  padding: 50px 0 70px;
}

.footer__logo {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__city {
  display: flex;
  gap: 31px;
}
.footer__city--current {
  color: #EB354B;
}

.footer-nav {
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-nav--right {
  width: 100%;
  max-width: 880px;
  align-items: center;
  justify-content: space-between;
}

.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu a {
  text-decoration: none;
  transition: 300ms;
}
.footer-menu a:hover {
  color: #EB354B;
}

.footer-info {
  justify-content: space-between;
  font-size: 14px;
  color: #797979;
}

.footer__copyright {
  max-width: 300px;
}
.footer__copyright a {
  display: block;
}

.footer__text {
  text-align: justify;
  max-width: 880px;
}

.modal {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: 300ms;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.modal--visible {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.modal-wrapper {
  position: relative;
  width: 100%;
  min-height: 410px;
  max-width: 1110px;
  text-align: center;
  padding: 55px 32px;
  border-radius: 9px;
  background: #FFF;
  box-shadow: 0px 84px 54px 0px rgba(0, 0, 0, 0.15), 0px 64px 32px -20px rgba(0, 0, 0, 0.12);
}
.modal-wrapper form {
  gap: 40px;
  justify-content: center;
}
.modal-wrapper form input {
  flex-grow: 1;
  width: unset;
  outline: none;
}
.modal-wrapper form button {
  max-width: 190px;
  flex-basis: 190px;
  flex-grow: 1;
}
.modal-wrapper h2 {
  margin-bottom: 32px;
}
.modal-wrapper p {
  font-size: 18px;
  margin-bottom: 73px;
}

.modal-close {
  position: absolute;
  top: 32px;
  right: 32px;
  cursor: pointer;
}
.modal-close svg {
  width: 24px;
  height: 24px;
  transition: 300ms;
}
.modal-close svg:hover {
  fill: #EB354B;
}

.service-page .promo__image {
  padding-right: 50px;
}

.issues-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.issue {
  flex-basis: 420px;
  padding: 24px 20px;
  align-items: center;
  background: #F6F6F6;
  border-radius: 9px;
  box-shadow: 0px 1px 2px -1px rgba(53, 32, 30, 0.25);
}
.issue button {
  font-size: 14px;
  font-weight: 400;
  padding: 9px 15px;
  border-radius: 5px;
}

.issue__title {
  font-family: "Raleway";
  font-size: 18px;
  flex-grow: 1;
  margin-right: 24px;
  text-decoration: none;
  color: #000000;
}

.issue__icon {
  margin-right: 16px;
}
.issue__icon svg {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
}

.price__wrapper {
  container: price-wrapper/inline-size;
}

@container price-wrapper (width < 1200px) {
  .price__item .price__item-title {
    flex-basis: 310px;
    max-width: 310px;
  }
  .price__header .price__header-title {
    flex-basis: 310px;
    max-width: 310px;
  }
}
.price__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price__header {
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #B6B6B6;
  margin-bottom: 40px;
}
.price__header * {
  font-weight: 700;
  font-size: 18px;
  flex-grow: 0;
  flex-basis: 164px;
}

.price__item {
  gap: 40px;
  padding: 10px 0;
  align-items: center;
}
.price__item * {
  flex-grow: 0;
  flex-basis: 164px;
}

@container price-wrapper (width > 1280px) {
  .price__item {
    font-size: 18px;
  }
  .price__item:hover {
    background: #F6F6F6;
  }
  .price__item:hover .price__item-discount {
    visibility: visible;
    opacity: 1;
  }
}
.price__header-title {
  flex-grow: 1;
  max-width: 570px;
}

.price__item-title {
  flex-grow: 1;
  max-width: 570px;
  position: relative;
  font-family: "Raleway";
  font-weight: 500;
}

.price__item-order {
  display: flex;
  justify-content: flex-end;
  flex: 0;
}

.price__item-button {
  padding: 10px 21px;
  font-size: 18px;
}

@container price-wrapper (width < 768px) {
  .price__item-button {
    color: transparent;
    width: 28px;
    height: 28px;
    aspect-ratio: 1;
    border-radius: 100%;
    padding: 7px;
    position: relative;
  }
  .price__item-button::before, .price__item-button::after {
    content: "";
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .price__item-button::before {
    height: 2px;
    width: 14px;
  }
  .price__item-button::after {
    width: 2px;
    height: 14px;
  }
}
.price__item-discount {
  position: absolute;
  height: 60px;
  width: 106px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  background: #EB354B;
  text-transform: uppercase;
  padding-top: 5px;
  visibility: hidden;
  opacity: 0;
  transition: 300ms;
}
.price__item-discount span {
  font-size: 32px;
  font-weight: 500;
}

.header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.header__toggle-line {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

.stages__items {
  gap: 40px;
}

.stage__item {
  flex-basis: calc(25% - 40px);
  flex-grow: 1;
}

.stage__head {
  margin-bottom: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.stage__head span {
  font-family: "Raleway";
  font-size: 24px;
  font-weight: 700;
  color: #EB354B;
}

.stage__title {
  margin-bottom: 11px;
}

.stage__text {
  line-height: 26px;
}

.models__items {
  gap: 40px;
  margin-bottom: 40px;
}

.models__button-show {
  display: block;
  margin-inline: auto;
}

.model__item {
  flex-basis: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 21px 20px;
  background: #FFFFFF;
  border-radius: 9px;
  position: relative;
  box-shadow: 0px 1px 2px -1px rgba(53, 32, 30, 0.25);
}
.model__item:hover .model__item-link {
  text-decoration: underline;
}
.model__item-img {
  margin-bottom: 25px;
}
.model__item-link {
  font-family: "Raleway";
  font-size: 18px;
  color: #000000;
  text-decoration: none;
}
.model__item-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.contacts-content {
  background: #F6F6F6;
  padding: 30px 0 40px;
}

.contacts__container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contacts__image img {
  max-width: 100%;
  height: auto;
  border-radius: 9px;
}

.contacts__text {
  line-height: 20px;
}
.contacts__text p:not(:last-child) {
  margin-bottom: 30px;
}

.callback__heading {
  max-width: 565px;
}
.callback__heading h2 {
  margin-bottom: 20px;
}
.callback__heading p {
  font-size: 18px;
}

.callback--no-pic .callback-wrapper {
  padding: 48px 75px;
  align-items: flex-end;
}
.callback--no-pic .callback__form {
  flex-grow: 1;
}

.info-page .main-header-wrapper {
  background: transparent;
}

.info-intro {
  padding-top: 56px;
  margin-bottom: 80px;
}
.info-intro img {
  border-radius: 9px;
}

.info-text__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.info-text__col p {
  line-height: 26px;
}
.info-text__col p span {
  color: #EB354B;
}
.info-text__col a {
  text-decoration: none;
  color: #EB354B;
}

.info-text__quott p {
  line-height: 24px;
  font-style: italic;
  color: #686565;
}

.table table {
  width: 100%;
  border-spacing: 0 8px;
}
.table table th {
  text-align: left;
  font: inherit;
}
.table table thead {
  background: #EB354B;
  color: #FFFFFF;
}
.table table thead th {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0 14px 0;
}
.table table thead th:first-child {
  padding-left: 30px;
}
.table tbody tr th:first-child {
  padding: 10px 0 9px 30px;
}
.table .container {
  overflow: auto;
}

.info-text h4 {
  margin-bottom: 29px;
}
.info-text ul, .info-text ol {
  line-height: 26px;
  padding: 0;
  margin: 32px 0 40px;
}
.info-text ol {
  counter-reset: item;
}
.info-text ol li {
  display: flex;
}
.info-text ol li:not(:last-child) {
  margin-bottom: 23px;
}
.info-text ol li::before {
  content: counters(item, ".") ".";
  counter-increment: item;
  margin-right: 12px;
  color: #EB354B;
}
.info-text ol li ol {
  margin-top: 16px;
  margin-bottom: 0;
}
.info-text ul li {
  display: block;
  position: relative;
  padding-left: 26px;
}
.info-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 8px;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 100%;
  background: #EB354B;
}
.info-text ul li:not(:last-child) {
  margin-bottom: 26px;
}

.info-text__pics {
  grid-column: 9/-1;
  gap: 40px 20px;
}
.info-text__pics img:last-child {
  order: 1;
}

.info-intro__image {
  width: 100%;
  height: 465px;
}
.info-intro__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@container callback (width < 768px) {
  .callback__image {
    bottom: calc(100% - 17px);
    right: 50%;
    transform: translateX(50%);
  }
  .callback__image img {
    max-height: 230px;
  }
}
@media screen and (min-width: 1024px) {
  .contacts-content {
    padding: 48px 0 40px;
  }
  .contacts__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
  .contacts__image {
    grid-column: span 4;
  }
  .contacts__text {
    grid-column: 6/-1;
    line-height: 26px;
  }
  .info-text__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
  }
  .info-text__quott {
    grid-column: 9/-1;
  }
  .info-text__col {
    grid-column: span 7;
  }
}
@media screen and (min-width: 1280px) {
  .contacts-content {
    padding: 48px 0 100px;
  }
  .contacts__container {
    gap: 40px;
  }
  .contacts__text {
    grid-column: 6/12;
  }
}
@media screen and (max-width: 1280px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 21px;
  }
  .subtitle {
    font-size: 16px;
  }
  .container {
    max-width: 1380px;
    padding: 0 40px;
  }
  .promo-content {
    order: 2;
  }
  .callback__image img {
    max-height: 350px;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 21px;
  }
  .subtitle {
    font-size: 16px;
  }
  .container {
    max-width: 1120px;
    padding: 0 24px;
  }
  .d-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .callback-wrapper {
    padding: 48px 24px;
  }
  .callback--no-pic .callback-wrapper {
    padding: 48px 24px;
  }
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 18px;
  }
  .subtitle {
    font-size: 16px;
  }
  .container {
    max-width: 1720px;
    padding: 0 24px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 18px;
  }
  section {
    margin-bottom: 65px;
  }
  .d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .subtitle {
    font-size: 24px;
  }
  .container {
    max-width: 1380px;
    padding: 0 20px;
  }
  .top-header-wrapper {
    display: none;
  }
  .header__logo span {
    display: none;
  }
  .main-header-wrapper {
    background: #262D37;
  }
  header {
    color: #FFF;
  }
  .header__phone svg {
    fill: #FFF;
  }
  .header-buttons {
    display: none;
  }
  .header__toggle {
    display: flex;
  }
  .stats-wrapper {
    width: 100%;
    order: 2;
  }
  .callback-wrapper {
    padding: 48px 20px 30px 20px;
  }
  .callback__form button {
    max-width: 100%;
  }
  .callback__form input {
    max-width: 100%;
  }
  .discount-wrapper {
    padding: 30px 20px;
  }
  .discount-wrapper button {
    padding: 12.5px 24px;
    font-size: 16px;
    flex-grow: 1;
  }
  .discount__percent {
    width: 100%;
    text-align: center;
    font-size: 130px;
    line-height: 97px;
  }
  .discount__text h3 {
    margin-bottom: 18px;
  }
  .contacts-cities {
    max-width: 100%;
  }
  .promo-form button {
    flex-grow: 1;
  }
  .header__toggle {
    display: flex;
  }
  .footer__copyright {
    max-width: 100%;
    margin-bottom: 25px;
  }
  .callback--no-pic .callback-wrapper {
    gap: 43px;
    padding: 40px 20px;
  }
  .callback-wrapper {
    padding: 40px 20px;
  }
  .info-page .main-header-wrapper {
    background: #262D37;
  }
}
@media screen and (max-width: 450px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  h3 {
    font-size: 18px;
  }
  .container {
    max-width: 1380px;
    padding: 0 20px;
  }
  .issues-wrapper {
    row-gap: 20px;
  }
  .issue {
    padding: 16px 12px;
  }
  .issue__title {
    font-size: 14px;
  }
  .promo__image {
    margin-inline: auto;
  }
  .promo__image img {
    max-width: 240px;
  }
  .service-page .promo__image {
    padding-right: 0;
  }
  .service-page .promo__image img {
    max-width: 160px;
  }
  .main-header {
    padding: 10px 0;
  }
  .header__phone {
    gap: 6px;
  }
  .header__phone a {
    font-size: 13px;
  }
  .header__phone svg {
    width: 22px;
    height: 16px;
  }
  .header__logo img {
    max-height: 42px;
  }
  .faq__question {
    font-size: 14px;
  }
  .faq__item {
    padding-bottom: 20px;
  }
  .faq__item--active .faq__question {
    padding-bottom: 20px;
  }
  .text-content {
    display: block;
  }
  .categories-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .category__card {
    height: auto;
    padding: 16px 10px 0;
  }
  .category__title {
    font-size: 14px;
    font-weight: 600;
  }
  .categories-search {
    padding: 20px;
  }
  .categories-search h3 {
    font-size: 28px;
  }
  .price__header-time, .price__header-warranty, .price__item-time, .price__item-warranty {
    display: none;
  }
  .price__header {
    gap: 0 80px;
    padding-bottom: 21px;
    margin-bottom: 10px;
  }
  .price__header * {
    flex-grow: 0;
    flex-basis: unset;
    font-size: 14px;
  }
  .price__header .price__header-title {
    flex-basis: unset;
  }
  .price__item {
    gap: 32px;
    font-size: 14px;
  }
  .price__item .price__item-title {
    flex-basis: unset;
    max-width: 180px;
  }
  .price__item * {
    flex-basis: unset;
  }
  .callback__form p {
    font-size: 14px;
  }
  .text-content p:not(:last-child) {
    margin-bottom: 15px;
  }
  footer {
    padding: 39px 0 27px;
  }
  .footer__logo {
    font-size: 20px;
    margin-bottom: 37px;
  }
  .footer__city {
    margin-bottom: 48px;
  }
  .service-page .callback, .info-page .callback {
    margin-top: 0;
  }
  .service-page .callback__image, .info-page .callback__image {
    display: none;
  }
  .models__items {
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .model__item {
    flex-basis: unset;
    padding: 16px 16px 17px 16px;
  }
  .model__item-img {
    margin-bottom: 20px;
  }
  .model__item-img img {
    max-height: 100px;
  }
  .info-text__quott {
    background: #efefef;
    margin-left: -20px;
    margin-right: -20px;
    padding: 12px 20px;
  }
  table {
    font-size: 14px;
  }
  .table table thead th {
    font-size: 14px;
  }
  .info-text__pics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .info-text__pics img {
    grid-column: span 2;
  }
  .info-intro {
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .info-intro__image {
    height: 193px;
  }
}/*# sourceMappingURL=main.css.map */