@font-face {
  font-family: "ALDIH";
  src: url(../fonts/ALDITHRegular.0e715f61.woff2);
  font-style: normal;
}
@font-face {
  font-family: "Wix Regular";
  src: url(../fonts/WixMadeforDisplay-Regular.ttf), url(../fonts/WixMadeforDisplay-Regular.woff), url(../fonts/WixMadeforDisplay-Regular.woff2);
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Wix SemiBold";
  src: url(../fonts/WixMadeforDisplay-SemiBold.ttf), url(../fonts/WixMadeforDisplay-SemiBold.woff), url(../fonts/WixMadeforDisplay-SemiBold.woff2);
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Wix Bold";
  src: url(../fonts/WixMadeforDisplay-Bold.ttf), url(../fonts/WixMadeforDisplay-Bold.woff), url(../fonts/WixMadeforDisplay-Bold.woff2);
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Wix ExtraBold";
  src: url(../fonts/WixMadeforDisplay-ExtraBold.ttf), url(../fonts/WixMadeforDisplay-ExtraBold.woff), url(../fonts/WixMadeforDisplay-ExtraBold.woff2);
  font-style: normal;
  font-weight: 800;
}
:root {
  --dark: #000;
  --ligth: #fff;
  --accent: #008C1F;
  --red: #FF0000;
  --grey: #474747;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Wix Regular";
  font-size: 20px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body a {
  text-decoration: none;
}
body.scroll-lock {
  height: 100vh;
  overflow: hidden;
}

main {
  flex-grow: 1;
}

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

.logo {
  font-family: "ALDIH";
  font-size: 30px;
  text-transform: uppercase;
  color: var(--dark);
}
.logo span {
  color: var(--accent);
  font-size: 24px;
}

.btn {
  font-family: "Wix SemiBold";
  border-radius: 48px;
  background: var(--accent);
  color: var(--ligth);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  appearance: none;
}
.btn:hover {
  background: var(--grey);
}

.menu__wrapp {
  display: flex;
  gap: 7%;
  flex-wrap: nowrap;
  flex-grow: 1;
  justify-content: center;
}

.burger__btn {
  width: 30px;
  height: 15px;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.burger__btn span {
  height: 1px;
  background: #000;
  width: 100%;
}
.burger__btn span:nth-child(2) {
  width: 80%;
}
.burger__btn span:nth-child(3) {
  width: 60%;
}

.phone {
  position: relative;
  padding-right: 15px;
}
.phone::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--dark);
}
.phone a {
  color: var(--dark);
  font-size: 16px;
}
.phone__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  height: 0;
  overflow: hidden;
  background: var(--ligth);
  border-radius: 8px;
}
.phone__dropdown li {
  padding: 10px 5px;
}
.phone:hover .phone__dropdown {
  height: auto;
}

.callback {
  max-width: 505px;
}
.callback__title {
  margin-bottom: 20px;
}
.callback__form p {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.callback .form__input {
  outline: none;
  border-radius: 58px;
  border: 1px solid #E2E2E2;
  background: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(22px);
          backdrop-filter: blur(22px);
  padding: 15px;
  font-size: 16px;
  width: 100%;
}
.callback .form__input::-moz-placeholder {
  font-family: "Wix Regular";
}
.callback .form__input::placeholder {
  font-family: "Wix Regular";
}
.callback .form__input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 50px #fff;
  -webkit-text-fill-color: #000;
}
.callback .btn {
  outline: none;
  padding: 13px;
  cursor: pointer;
  border: none;
  margin-top: 25px;
}
.callback .wpcf7-not-valid-tip {
  font-size: 12px;
  position: absolute;
  top: 100%;
}
.callback .wpcf7-form {
  position: relative;
}
.callback .wpcf7 form.sent .wpcf7-response-output {
  margin: 0;
  padding: 60px 70px 20px;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  background: #F3FAF5;
  bottom: 0;
  border-radius: 20px;
  text-align: center;
  font-size: 24px;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-size: 280px auto;
  background-position: center bottom 40px;
}
.callback .wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 14px;
  position: absolute;
  bottom: 0;
}

.mobile__form {
  display: none;
}

.header {
  border-bottom: 1px solid #E6E6E6;
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
  padding: 7px 0;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__nav ul a {
  color: var(--dark);
  font-size: 16px;
  transition: all 0.3s;
}
.header__nav ul a:hover {
  color: var(--accent);
}
.header .btn {
  font-size: 16px;
  width: 215px;
  height: 45px;
}

.top {
  height: 100vh;
  background-image: url(../images/top-bg.png);
  background-repeat: no-repeat;
  background-size: auto 900px;
  background-position: right bottom 75px;
  padding-bottom: 75px;
}
.top__inner {
  height: 100%;
  max-width: 65%;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top__uptitle {
  font-size: 24px;
  margin-bottom: 25px;
}
.top__uptitle-logo {
  font-size: 26px;
  text-transform: uppercase;
  font-family: "ALDIH";
}
.top__uptitle-logo span {
  color: var(--accent);
  font-size: 22px;
}
.top__title {
  font-size: 38px;
  text-transform: uppercase;
  font-family: "Wix SemiBold";
}
@media screen and (max-width: 1240px) {
  .top__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .top__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .top__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 430px) {
  .top__title {
    font-size: 16px;
  }
}
.top__subtitle {
  font-size: 24px;
  color: var(--accent);
  max-width: 95%;
  margin: 30px 0;
}

.desc {
  background-image: linear-gradient(0deg, rgba(204, 232, 210, 0.23) 40.96%, #ffffff 40.96%, #ffffff 50%, rgba(204, 232, 210, 0.23) 50%, rgba(204, 232, 210, 0.23) 90.96%, #ffffff 90.96%, #ffffff 100%);
  background-size: 830px 830px;
}
.desc__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.desc__img {
  filter: drop-shadow(0px 0px 23px rgba(0, 0, 0, 0.25));
  max-width: 488px;
  max-height: 488px;
  border-radius: 50%;
  width: 100%;
}
.desc__img img {
  width: 100%;
}
.desc__title {
  font-size: 32px;
  text-transform: uppercase;
  font-family: "Wix SemiBold";
  margin-bottom: 10px;
}
@media screen and (max-width: 1240px) {
  .desc__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .desc__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .desc__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 430px) {
  .desc__title {
    font-size: 16px;
  }
}
.desc__text:not(:nth-child(4)) {
  margin-bottom: 15px;
}
.desc__accent {
  color: var(--accent);
}

.price {
  padding: 80px 0 80px;
}
.price__title {
  font-size: 32px;
  text-transform: uppercase;
  font-family: "Wix SemiBold";
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1240px) {
  .price__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .price__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .price__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 430px) {
  .price__title {
    font-size: 16px;
  }
}
.price__subtitle {
  color: var(--accent);
  text-align: center;
  font-family: "Wix SemiBold";
  font-size: 24px;
  margin-bottom: 40px;
}
.price__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 340px);
  gap: 20px;
}
.price__card {
  border-radius: 26px;
  background: #E5F4E9;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price__card-text {
  font-family: "Wix Bold";
  font-size: 24px;
}
.price__card-price, .price__card-option {
  font-family: "Wix ExtraBold";
  font-size: 28px;
}
.price__card-price span, .price__card-option span {
  color: var(--accent);
}
.price__card-oldprice {
  font-size: 24px;
  color: var(--red) !important;
  display: inline-block;
  margin-left: 25px;
  position: relative;
}
.price__card-oldprice::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--red);
  left: 0;
  bottom: 50%;
  transform: rotate(15deg);
}
.price__card .sale-price {
  color: var(--red);
  font-size: 24px;
}
.price__card-subtext {
  font-size: 16px;
}
.price__card:nth-child(1) {
  background-image: url(../images/priceBg/bg1.png);
}
.price__card:nth-child(2) {
  background-image: url(../images/priceBg/bg2.png);
}
.price__card:nth-child(4) {
  background-image: url(../images/priceBg/bg3.png);
}
.price__card:nth-child(6) {
  background-image: url(../images/priceBg/bg4.png);
}
.price__card:nth-child(8) {
  background-image: url(../images/priceBg/bg5.png);
}
.price__card:nth-child(9) {
  background-image: url(../images/priceBg/bg6.png);
}
.price__card .btn {
  height: 53px;
}

.request {
  background: rgba(204, 232, 210, 0.23) url(../images/request-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: relative;
}
.request .logo {
  position: absolute;
  bottom: -24px;
  right: 0;
  font-size: 160px;
  line-height: 1;
}
.request .logo span {
  font-size: 130px;
}
.request__inner {
  padding: 55px 0;
  display: flex;
  gap: 20px;
}
.request__form {
  width: 75%;
}
.request__text {
  font-family: "Wix SemiBold";
  font-size: 24px;
  margin-bottom: 30px;
}
.request__text span {
  color: var(--accent);
}
.request__content .request__text {
  font-family: "Wix Bold";
}
.request .logo a {
  font-size: 160px;
  line-height: 1;
}
.request .logo a span {
  font-size: 130px;
}

.guarantee {
  padding-top: 80px;
}
.guarantee__title {
  font-size: 38px;
  text-transform: uppercase;
  font-family: "Wix SemiBold";
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 1240px) {
  .guarantee__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .guarantee__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .guarantee__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 430px) {
  .guarantee__title {
    font-size: 16px;
  }
}
.guarantee .logo {
  font-size: 46px;
  font-weight: 400;
}
.guarantee .logo span {
  font-size: 36px;
}
.guarantee__cards {
  display: flex;
  gap: 20px;
}
.guarantee__card {
  width: 25%;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid #CBCBCB;
}
.guarantee__card-icon {
  width: 70px;
  height: 70px;
  border-radius: 9px;
  background: rgba(0, 140, 31, 0.2);
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.guarantee__card-text {
  font-family: "Wix SemiBold";
  font-size: 16px;
}

.steps {
  padding-top: 80px;
  background-image: url(../images/steps-bg.svg);
  background-repeat: no-repeat;
  background-size: auto 380px;
  background-position: left bottom 35%;
  padding-bottom: 80px;
}
.steps__title {
  font-size: 38px;
  text-transform: uppercase;
  font-family: "Wix SemiBold";
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1240px) {
  .steps__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .steps__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .steps__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 430px) {
  .steps__title {
    font-size: 16px;
  }
}
.steps__subtitle {
  color: var(--accent);
  text-align: center;
  font-family: "Wix Bold";
  font-size: 24px;
  margin-bottom: 40px;
}
.steps__cards {
  display: flex;
  border-radius: 20px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
  background-color: var(--ligth);
  overflow: hidden;
}
.steps__card {
  display: flex;
  flex-direction: column;
  width: 25%;
  transition: all 0.3s;
}
.steps__card:not(:last-child) {
  border-right: 1px solid #9F9F9F;
}
.steps__card:hover {
  background-color: var(--accent);
  color: var(--ligth);
}
.steps__card:hover .steps__card-num {
  color: var(--ligth);
  background: rgba(255, 255, 255, 0.2);
}
.steps__card-content {
  padding: 15px 15px 40px;
  flex-grow: 1;
}
.steps__card-num {
  color: var(--accent);
  font-family: "Wix Bold";
  font-size: 32px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 9px;
  background: rgba(0, 140, 31, 0.2);
  margin-bottom: 20px;
}
.steps__card-title {
  font-family: "Wix Bold";
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.steps__card-text {
  font-family: "Wix Regular";
  font-size: 16px;
}
.steps__card-img {
  max-height: 160px;
  font-size: 0;
}
.steps__card-img img {
  width: 100%;
}

.repair {
  padding: 80px 0;
  background-image: url(../images/repair-bg.svg);
  background-repeat: no-repeat;
  background-size: auto 380px;
  background-position: right;
}
.repair__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.repair__main {
  max-width: 415px;
}
.repair__title {
  font-size: 38px;
  text-transform: uppercase;
  font-family: "Wix SemiBold";
  margin-bottom: 10px;
}
@media screen and (max-width: 1240px) {
  .repair__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .repair__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .repair__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 430px) {
  .repair__title {
    font-size: 16px;
  }
}
.repair__subtitle {
  color: var(--accent);
  font-size: 24px;
  font-family: "Wix Bold";
  margin-bottom: 30px;
}
.repair__text {
  font-family: "Wix Regular";
  font-size: 16px;
}
.repair__img {
  margin-top: 20px;
}
.repair__img img {
  width: 100%;
}
.repair__details {
  max-width: 590px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.repair__details .repair__subtitle {
  margin-bottom: 0;
}

.sale {
  height: 480px;
  background-image: url(../images/sale-bg.png);
  background-color: #F4F4F4;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}
.sale__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.sale__content {
  width: 765px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sale__title {
  color: var(--accent);
  font-size: 38px;
  text-transform: uppercase;
  font-family: "Wix SemiBold";
}
@media screen and (max-width: 1240px) {
  .sale__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .sale__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .sale__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 430px) {
  .sale__title {
    font-size: 16px;
  }
}
.sale__text {
  font-family: "Wix Bold";
  font-size: 38px;
}

.map {
  padding: 65px 0;
}
.map__wrapp {
  border-radius: 20px;
  overflow: hidden;
  height: 390px;
}
.map__wrapp iframe {
  width: 100%;
  height: 100%;
}

.popup {
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup__content {
  width: 795px;
  height: 435px;
  background: #F3FAF5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  border-radius: 20px;
  position: relative;
}
.popup__close {
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 15px;
}

.footer {
  background: #F3FAF5;
  padding: 24px 0;
  font-size: 16px;
}
.footer__inner {
  position: relative;
}
.footer__content {
  display: flex;
  justify-content: space-between;
}
.footer .contacts {
  display: flex;
  flex-direction: column;
}
.footer .contacts__title {
  margin-bottom: 10px;
}
.footer a {
  color: var(--dark);
}
.footer__copyright {
  font-size: 14px;
  color: #989898;
  display: flex;
  justify-content: space-between;
  width: 59%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer .mkey {
  display: flex;
  gap: 5px;
}
.wpcf7-spinner {
    display: none !important;
}

@media screen and (max-width: 1440px) {
  .request .logo {
    font-size: 120px;
    bottom: -17px;
  }
  .request .logo span {
    font-size: 100px;
  }
  .sale {
    height: 364px;
  }
  .top__inner {
    justify-content: flex-end;
  }
  .callback .btn {
    margin-top: 5px;
  }
  .top__subtitle {
    max-width: 62%;
    margin: 10px 0;
  }
  .callback .wpcf7 form .wpcf7-response-output {
    bottom: -20px;
  }
  .callback .wpcf7 form.sent .wpcf7-response-output {
    padding: 20px 70px 20px;
	font-size: 20px;
    background-size: 220px auto;
  }
}
@media screen and (max-width: 1240px) {
  body {
    font-size: 16px;
  }
  .container {
    max-width: 1040px;
  }
  .header__nav ul {
    gap: 30px;
  }
  .top {
    background-size: 100vh;
    background-position: right -150px bottom 75px;
    padding-bottom: 0;
  }
  .desc {
    background-size: 690px 690px;
  }
  .desc__img {
    max-width: 400px;
  }
  .price__cards {
    grid-template-rows: repeat(3, 320px);
  }
  .price__subtitle,
  .price__card-text {
    font-size: 20px;
  }
  .price__card-price, .price__card-option {
    font-size: 24px;
  }
  .request__form {
    width: 55%;
  }
  .request__text {
    font-size: 18px;
  }
  .repair__subtitle {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .repair__details {
    max-width: 530px;
    gap: 30px;
  }
  .sale__text {
    font-size: 32px;
  }
  .sale {
    height: 313px;
  }
  .sale__content {
    width: 645px;
  }
  .footer__copyright {
    width: 62%;
  }
}
@media screen and (max-width: 1024px) {
  .header .btn {
    margin: 0 30px 0 auto;
  }
  .burger__btn {
    display: flex;
  }
  .burger__btn.close span {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger__btn.close span:nth-child(2) {
    display: none;
  }
  .burger__btn.close span:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .menu__wrapp {
    transform: translateX(-100%);
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--ligth);
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    padding: 20px;
    transition: transform 0.5s;
  }
  .menu__wrapp.open {
    transform: translateX(0);
    overflow-y: scroll;
  }
  .header__nav ul {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
  .phone__dropdown {
    position: static;
    background: transparent;
    height: auto;
  }
  .phone__dropdown li {
    padding: 10px 0 0;
  }
  .menu__wrapp .callback {
    max-width: 505px;
    margin: 0 auto;
  }
  .mobile__form {
    display: block;
  }
  .mobile__form .callback .btn {
    width: 100% !important;
  }
  .phone::after {
    content: none;
  }
  .top__inner {
    max-width: 60%;
  }
  .top__uptitle {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .top__subtitle {
    font-size: 20px;
    margin: 15px 0;
  }
  .desc__img {
    max-width: 350px;
  }
  .desc {
    background-size: 610px 610px;
  }
  .price__subtitle, .price__card-text {
    font-size: 18px;
  }
  .price__cards {
    grid-template-rows: repeat(3, 314px);
  }
  .price__card-price, .price__card-option {
    font-size: 20px;
  }
  .btn {
    font-size: 16px;
  }
  .request {
    background: rgba(204, 232, 210, 0.23) url(../images/request-bg-mob.png);
    background-size: auto 280px;
    background-position: right bottom;
    background-repeat: no-repeat;
  }
  .request__inner {
    gap: 60px;
  }
  .request__content {
    max-width: 480px;
  }
  .request__form {
    width: 45%;
  }
  .request__text {
    margin-bottom: 20px;
  }
  .request .logo {
    font-size: 100px;
    bottom: -14px;
  }
  .request .logo span {
    font-size: 80px;
  }
  .steps__card-num {
    font-size: 28px;
    width: 60px;
    height: 60px;
  }
  .steps__card-title {
    font-size: 20px;
  }
  .repair__details {
    max-width: 480px;
  }
  .sale {
    height: 259px;
  }
  .popup__content {
    width: 550px;
  }
  .popup .request__form {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .top {
    padding-top: 60px;
  }
  .top__inner {
    max-width: 80%;
  }
  .top__uptitle {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .top__subtitle {
    font-size: 18px;
    margin: 10px 0;
  }
  .callback .form__input {
    padding: 10px;
  }
  .callback .btn {
    margin-top: 15px;
    padding: 10px;
  }
  .desc__img {
    max-width: 250px;
  }
  .desc {
    background-image: linear-gradient(0deg, rgba(204, 232, 210, 0.23) 40.96%, #ffffff 40.96%, #ffffff 0%, rgba(204, 232, 210, 0.23) 0%, rgba(204, 232, 210, 0.23) 95.96%, #ffffff 90.96%, #ffffff 0%);
    background-size: 440px 440px;
  }
  .price {
    padding: 40px 0 40px;
  }
  .price__subtitle, .price__card-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .price__card-price, .price__card-option {
    font-size: 16px;
  }
  .price__card-oldprice {
    font-size: 14px;
  }
  .btn {
    font-size: 14px;
  }
  .price__card .btn {
    height: 40px;
  }
  .price__cards {
    grid-template-rows: repeat(3, 230px);
  }
  .price__card {
    padding: 15px;
  }
  .price__card-subtext {
    font-size: 14px;
  }
  .price__card-text {
    margin-bottom: 10px;
  }
  .price__card .sale-price {
    font-size: 18px;
  }
  .request {
    height: 720px;
  }
  .request__inner {
    gap: 15px;
    flex-direction: column;
  }
  .request__form {
    width: 100%;
  }
  .request__content {
    max-width: initial;
  }
  .guarantee {
    padding-top: 60px;
  }
  .guarantee__title {
    margin-bottom: 15px;
  }
  .guarantee__cards {
    flex-direction: column;
  }
  .guarantee__card {
    width: 70%;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 auto;
  }
  .guarantee__card-icon {
    margin-bottom: 0px;
  }
  .steps {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .steps__subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .steps__cards {
    flex-wrap: wrap;
  }
  .steps__card {
    width: 50%;
  }
  .steps__card:nth-child(2) {
    border-right: none;
  }
  .steps__card-img {
    max-height: 190px;
  }
  .steps__card-num {
    font-size: 20px;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .steps__card-title {
    margin-bottom: 5px;
  }
  .steps__card-content {
    padding: 15px 15px 20px;
  }
  .repair__inner {
    flex-direction: column;
    gap: 20px;
  }
  .repair {
    padding: 60px 0;
    background-image: none;
  }
  .repair__main {
    max-width: initial;
    text-align: center;
  }
  .repair__details {
    max-width: initial;
    gap: 15px;
  }
  .sale {
    height: 194px;
  }
  .sale__content {
    width: 455px;
    gap: 10px;
  }
  .sale__text {
    font-size: 20px;
  }
  .map__wrapp {
    height: 250px;
  }
  .footer__copyright {
    width: 70%;
  }
  .callback .wpcf7 form.sent .wpcf7-response-output {
    padding: 40px 70px 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 430px) {
  .header .btn {
    font-size: 14px;
    width: 150px;
    height: 32px;
  }
  .price__cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(9, 270px);
    gap: 15px;
  }
  .logo {
    font-size: 26px;
  }
  .logo span {
    font-size: 20px;
  }
  .top {
    padding-top: 0;
    margin-top: 50px;
    background-image: url(../images/top-bg-mob.png);
    background-size: 100% 100%;
    background-position: center bottom;
	margin-bottom: 40px;
	height: 667px;
  }
  .top__inner {
    max-width: 100%;
    justify-content: flex-start;
    margin-top: 35px;
	padding-top: 30px;
  }
  .top__uptitle {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .top__uptitle-logo {
    font-size: 20px;
  }
  .top__uptitle-logo span {
    font-size: 16px;
  }
  .top__title {
    max-width: 320px;
  }
  .top__subtitle {
    font-size: 14px;
    margin: 20px 0;
    max-width: 280px;
    font-family: "Wix SemiBold";
  }
  .top .callback {
    margin-top: 45px;
  }
  .menu__wrapp {
    background-size: 100%;
    background-image: url(../images/mob-menu-bg.png);
  }
  .desc {
    background-image: linear-gradient(0deg, rgba(204, 232, 210, 0.23) 36.9%, #ffffff 36.9%, #ffffff 50%, rgba(204, 232, 210, 0.23) 50%, rgba(204, 232, 210, 0.23) 86.9%, #ffffff 86.9%, #ffffff 100%);
    background-size: 1084px 1084px;
    padding-bottom: 30px;
  }
  .desc__inner {
    gap: 10px;
    flex-direction: column;
  }
  .desc__img {
    max-width: 285px;
  }
  .desc__accent {
    margin-top: 10px;
  }
  .price__title {
    max-width: 280px;
    margin: 0 auto 10px;
  }
  .price__subtitle, .price__card-text {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .price__card-text {
    font-size: 16px;
  }
  .price__card-price, .price__card-option {
    font-size: 20px;
  }
  .price__card-oldprice {
    font-size: 16px;
  }
  .price__card .btn {
    height: 45px;
  }
  .request__inner {
    padding: 25px 0;
  }
  .request__text {
    font-size: 16px;
  }
  .callback .btn {
    height: 45px;
  }
  .top .callback .btn {
	margin-top: 35px;
  }
  .request {
    height: 770px;
  }
  .request .logo {
    font-size: 70px;
    bottom: -10px;
	right: 50%;
    transform: translateX(50%);
  }
  .request .logo span {
    font-size: 54px;
  }
  .guarantee {
    padding-top: 30px;
  }
  .guarantee .logo {
    font-size: 22px;
    line-height: 1;
    position: relative;
    top: -2px;
  }
  .guarantee .logo span {
    font-size: 18px;
  }
  .guarantee__card-text {
    font-size: 14px;
  }
  .guarantee__card {
    width: 90%;
  }
  .guarantee__card-icon {
    width: 50px;
    height: 50px;
  }
  .guarantee__card-icon img {
    width: 35px;
  }
  .steps__subtitle {
    font-size: 16px;
  }
  .steps__card {
    width: 100%;
  }
  .steps__card {
    border-right: none !important;
  }
  .steps__card-title {
    font-size: 16px;
  }
  .steps__card-text {
    font-size: 14px;
  }
  .steps__card-img {
    max-height: 155px;
  }
  .steps__card-img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .steps__card-content {
    padding: 15px 15px 25px;
  }
  .repair {
    padding: 25px 0;
  }
  .repair__subtitle {
    font-size: 16px;
  }
  .repair__text {
    font-size: 14px;
  }
  .repair__details .repair__subtitle {
    margin-bottom: 10px;
  }
  .sale__text {
    font-size: 14px;
  }
  .sale {
    height: 545px;
    background-image: url(../images/sale-bg-mob.png);
    background-color: #F4F4F4;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
  }
  .sale__content {
    width: 345px;
    gap: 10px;
  }
  .map {
    padding: 25px 0;
  }
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  .footer__copyright {
    width: 100%;
    position: static;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .footer .contacts {
    align-items: center;
  }
  .footer {
    padding: 18px 0;
  }
  .popup__content {
    width: 380px;
    height: 325px;
  }
  .callback .wpcf7 form.sent .wpcf7-response-output {
    font-size: 14px;
  }
  .callback .wpcf7 form .wpcf7-response-output {
    bottom: -20px;
  }
}/*# sourceMappingURL=style.css.map */