/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Roboto&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  background-color: #FCFCFC;
  color: #333;
  font-family: "Montserrat", sans-serif;
}

a {
  color: #333;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}
a:hover {
  color: #99CB38;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.container {
  padding: 0 15px;
  max-width: 1170px;
  margin: 0 auto;
}

.none {
  display: none !important;
}

.visually-hidden {
  /* Contain text within 1px box */
  height: 1px;
  overflow: hidden;
  width: 1px;
  /* Keep the layout */
  position: absolute;
  /* Remove any visible trace (e.g. background color) */
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  /* browsers in the future */
  /* Prevent the screen reader to skip spaces between words */
  white-space: nowrap;
}

.no-scroll {
  overflow-y: hidden;
}

.position-fixed {
  position: fixed;
}

.title-2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 34px;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 730px) {
  .title-2 {
    font-size: 18px;
    line-height: 26px;
  }
}

.regular-text {
  font-weight: 400;
}

.medium-text {
  font-weight: 500;
}

.yellow-text {
  color: #FBD846;
}

.green-text {
  color: #99CB38;
}

.white-text {
  color: #FFF;
}

.btn {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn:hover {
  background-color: #e6c648;
}
.btn--green {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn--green:hover {
  background-color: #73cb38;
}

.header {
  background-color: #FFF;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
}

.header__contacts {
  padding: 17px 0;
  background: #FBD846;
}
@media screen and (max-width: 1137px) {
  .header__contacts {
    display: none;
  }
}

.header__contacts-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__address {
  font-size: 14px;
  text-align: center;
}
.header__address::before {
  content: "";
  padding: 0 18px 0 0;
  background: url("./../img/icons/map.svg") left center no-repeat;
}
.header__address--mob-nav {
  display: none;
}

.header__tel {
  font-weight: 600;
}
.header__tel--mob-nav {
  display: none;
}
@media screen and (max-width: 476px) {
  .header__tel {
    display: none;
  }
}
.header__tel::before {
  content: "";
  padding: 10px 33px 10px 0;
  background: url("./../img/icons/tel.svg") left center no-repeat;
}
@media screen and (max-width: 1137px) {
  .header__tel::before {
    background: url("./../img/icons/tel-mob.svg") left center no-repeat;
    padding: 0 18px 0 0;
  }
}

.header__row {
  padding: 18px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header__row--mobile {
  padding: 120px 0 0 0;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: #FFF;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
}
.header__row--mobile .header__nav {
  display: block;
  width: 100%;
}
.header__row--mobile .header__tel {
  display: none;
}
.header__row--mobile .header__tel--mob-nav {
  display: block;
  padding: 15px 0 0 0;
  font-size: 22px;
  font-weight: 600;
  width: 100%;
}
.header__row--mobile .header__tel--mob-nav::before {
  background: url("./../img/icons/tel-mob.svg") left center/23px 23px no-repeat;
  padding: 0 30px 0 0;
}
.header__row--mobile .nav__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  width: 100%;
}
.header__row--mobile .nav__item {
  font-size: 18px;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}
.header__row--mobile .nav__item a {
  display: block;
  width: 100%;
}
.header__row--mobile .nav__item--accent {
  width: auto;
}
.header__row--mobile .header__logo,
.header__row--mobile .header__nav-btn {
  position: absolute;
}
.header__row--mobile .header__logo {
  top: 18px;
  left: 15px;
}
.header__row--mobile .header__nav-btn {
  top: 37px;
  right: 15px;
}
.header__row--mobile .header__address--mob-nav {
  display: block;
  padding: 24px 0 0 0;
  max-width: 315px;
  margin: 20px 0 0 0;
  position: relative;
}
.header__row--mobile .header__address--mob-nav::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15px;
  height: 19px;
  background: url("./../img/icons/map-mob.svg") no-repeat;
}

@media screen and (max-width: 1137px) {
  .header__nav {
    display: none;
  }
}

.header__mob {
  display: none;
}
@media screen and (max-width: 1137px) {
  .header__mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}

.header__nav-btn {
  display: none;
}
@media screen and (max-width: 1137px) {
  .header__nav-btn {
    display: block;
  }
}

.header__logo img {
  width: 165px;
  height: 68px;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__item {
  font-weight: 600;
  font-size: 14px;
}

.nav__call {
  padding: 15px 26px;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #FBD846;
  border-radius: 30px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(255, 216, 111, 0.4);
          box-shadow: 2px 2px 4px 0px rgba(255, 216, 111, 0.4);
}
.nav__call:hover {
  background-color: #FBD846;
  color: #000;
}

/* Nav Icon */
.nav-icon-btn {
  --time: 0.1s;
  --width: 40px;
  --height: 30px;
  --line-height: 1px;
  --line-margin: 2;
  --color: #333;
  height: var(--height);
  width: var(--width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  -webkit-transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
}

.nav-icon::before {
  top: calc(var(--line-height) * -8);
}

.nav-icon::after {
  top: calc(var(--line-height) * 8);
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  -webkit-transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time), -webkit-transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.price {
  padding: 0 0 30px 0;
}
@media screen and (max-width: 1137px) {
  .price {
    padding: 40px 0;
  }
}

.price__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.price__content {
  max-width: 646px;
}
@media screen and (max-width: 1137px) {
  .price__content {
    max-width: 900px;
  }
}

.price__title {
  font-size: 35px;
  font-weight: 900;
  line-height: 43px;
}
@media screen and (max-width: 1137px) {
  .price__title {
    font-size: 28px;
    line-height: 34px;
    margin: 0 0 24px 0;
  }
}

.price__text {
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 64px 0;
}
@media screen and (max-width: 476px) {
  .price__text {
    margin: 0 0 30px 0;
  }
}

.price__benefits {
  display: grid;
  row-gap: 66px;
  -webkit-column-gap: 29px;
     -moz-column-gap: 29px;
          column-gap: 29px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 38px 0;
}
@media screen and (max-width: 476px) {
  .price__benefits {
    row-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  }
}

.price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 476px) {
  .price__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.price__item-img img {
  min-width: 30px;
  min-height: 30px;
}

.price__item-text {
  font-weight: 500;
  line-height: 20px;
}
@media screen and (max-width: 476px) {
  .price__item-text {
    font-size: 14px;
  }
}

.price__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media screen and (max-width: 476px) {
  .price__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}

.price__btn {
  padding: 15px 52px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
  -webkit-box-shadow: 10px 10px 20px 0px rgba(255, 216, 111, 0.4);
          box-shadow: 10px 10px 20px 0px rgba(255, 216, 111, 0.4);
  position: relative;
}
.price__btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(268.28deg, #FBD846 0.036%, #FFE888 99.944%);
  border-radius: 30px;
  -webkit-box-shadow: 10px 10px 20px 0px rgba(255, 216, 111, 0.4);
          box-shadow: 10px 10px 20px 0px rgba(255, 216, 111, 0.4);
}
@media screen and (max-width: 476px) {
  .price__btn {
    padding: 15px 20px;
    width: 100%;
    font-size: 16px;
  }
}

@media screen and (max-width: 1137px) {
  .price__gift {
    padding: 0 15% 0 0;
  }
}
@media screen and (max-width: 730px) {
  .price__gift {
    padding: 0;
  }
}

.price__gift-img {
  text-align: center;
  margin: 0 0 16px 0;
}

.price__gift-text {
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}

.price__img {
  height: 682px;
}
@media screen and (max-width: 1137px) {
  .price__img {
    display: none;
  }
}

.price__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.models {
  padding: 52px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 228, 114)), color-stop(100%, rgb(248, 204, 85)), to(rgb(251, 216, 70)));
  background: linear-gradient(90deg, rgb(255, 228, 114), rgb(248, 204, 85) 100%, rgb(251, 216, 70) 100%);
}
@media screen and (max-width: 730px) {
  .models {
    padding: 30px 0;
  }
}

.models__title {
  margin: 0 0 56px 0;
}
@media screen and (max-width: 730px) {
  .models__title {
    margin: 0 0 20px 0;
  }
}

.models__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
  margin: 0 0 47px 0;
}
@media screen and (max-width: 730px) {
  .models__cards {
    margin: 0 0 30px 0;
  }
}

.models__container-btn {
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.models__container-btn::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(268.28deg, rgb(153, 203, 56) 0.032%, rgb(192, 243, 91) 99.95%);
  border-radius: 30px;
  -webkit-box-shadow: 10px 10px 20px 0px rgba(255, 216, 111, 0.4);
          box-shadow: 10px 10px 20px 0px rgba(255, 216, 111, 0.4);
}

.models__btn {
  padding: 20px 65px;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  border-radius: 30px;
  -webkit-box-shadow: 10px 10px 20px 0px rgba(255, 216, 111, 0.4);
          box-shadow: 10px 10px 20px 0px rgba(255, 216, 111, 0.4);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 730px) {
  .models__btn {
    padding: 17px 40px;
    font-size: 18px;
  }
}

.popup-call {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  -webkit-transition: background-color 0.2s ease-in, visibility 0.2s ease-in;
  transition: background-color 0.2s ease-in, visibility 0.2s ease-in;
}
.popup-call--open {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup-call--open .popup-call__inner {
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
  visibility: visible;
}

.popup-call__inner {
  padding: 20px;
  background-color: #FFF;
  border-radius: 10px;
  position: relative;
  width: 500px;
  max-width: 95%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
  transition: transform 0.8s, opacity 0.8s, visibility 0.8s;
  transition: transform 0.8s, opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
}

.popup-call__close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
}
@media screen and (max-width: 1137px) {
  .popup-call__close {
    top: 15px;
    right: 15px;
  }
}

.popup-call__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin: 0 0 35px 0;
}
@media screen and (max-width: 1137px) {
  .popup-call__title {
    margin: 0 0 20px 0;
  }
}

.popup-call__text {
  font-size: 18px;
  margin: 0 0 50px 0;
  position: relative;
  padding: 0 0 0 36px;
}
@media screen and (max-width: 1137px) {
  .popup-call__text {
    font-size: 16px;
    margin: 0 0 20px 0;
  }
}

.popup-call__icon {
  position: absolute;
  top: 0;
  left: 0;
}

.popup-call__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 730px) {
  .popup-call__form {
    row-gap: 20px;
  }
}

.popup-call__input {
  padding: 20px 25px;
  border: 1px solid rgb(251, 216, 70);
  border-radius: 30px;
}

.popup-call__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup-call__btn {
  padding: 21px 15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 30px;
  -webkit-box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
          box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
  background: linear-gradient(268.28deg, rgb(251, 216, 70) 0.021%, rgb(255, 232, 136) 99.967%);
  margin: 0 0 14px 0;
}
@media screen and (max-width: 730px) {
  .popup-call__btn {
    padding: 15px;
    font-size: 16px;
  }
}

.popup-call__policy {
  text-align: center;
  color: #737373;
  font-size: 10px;
  line-height: 15px;
}

.popup-models {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
  -webkit-transition: background-color 0.2s ease-in, visibility 0.2s ease-in;
  transition: background-color 0.2s ease-in, visibility 0.2s ease-in;
}
.popup-models--open {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup-models--open .popup-models__inner {
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
  visibility: visible;
}

.popup-models__inner {
  padding: 51px 30px 31px;
  background-color: #FFF;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 945px;
  max-width: 90%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
  transition: transform 0.8s, opacity 0.8s, visibility 0.8s;
  transition: transform 0.8s, opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
}
@media screen and (max-width: 1137px) {
  .popup-models__inner {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.popup-models__close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
}
@media screen and (max-width: 1137px) {
  .popup-models__close {
    top: 0;
    right: 0;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    background-color: #FBD846;
    padding: 10px;
    border-radius: 50%;
  }
}

.popup-models__wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and (max-width: 730px) {
  .popup-models__wrapper {
    margin: 0 0 10px 0;
  }
}

.popup-models__main-img {
  padding: 0 9px 0 0;
  margin: 0 0 14px 0;
}
.popup-models__main-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.popup-models__main-img img:hover {
  -webkit-transform: unset;
          transform: unset;
}
@media screen and (max-width: 1137px) {
  .popup-models__main-img {
    display: none;
  }
}

.popup-models__images {
  padding: 0 24px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
@media screen and (max-width: 1137px) {
  .popup-models__images {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    padding: 0;
  }
}

.popup-models__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  width: 33.33%;
  height: 80px;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.popup-models__img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 1137px) {
  .popup-models__img:hover {
    -webkit-transform: unset;
            transform: unset;
  }
}

.popup-models__desc {
  padding: 0 0 0 9px;
}
@media screen and (max-width: 1137px) {
  .popup-models__desc {
    padding: 0 15px 30px;
  }
}

.popup-models__title {
  color: #222222;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 730px) {
  .popup-models__title {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 10px 0;
  }
}

.popup-models__desc-text {
  padding: 10px 30px;
  display: inline-block;
  color: #8C8C8C;
  border-radius: 30px;
  background: #F5F5F5;
  margin: 0 0 25px 0;
}
@media screen and (max-width: 730px) {
  .popup-models__desc-text {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.popup-models__text {
  margin: 0 0 30px 0;
}
@media screen and (max-width: 730px) {
  .popup-models__text {
    font-size: 12px;
    margin: 0 0 15px 0;
  }
}
.popup-models__text p:not(:last-child) {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 730px) {
  .popup-models__text p:not(:last-child) {
    margin: 0 0 5px 0;
  }
}

.popup-models__price-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media screen and (max-width: 730px) {
  .popup-models__price-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 730px) {
  .popup-models__price {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 10px 0;
  }
}

.popup-models__old-price {
  font-size: 20px;
  color: #B2B2B2;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 730px) {
  .popup-models__old-price {
    font-size: 16px;
  }
}

.popup-models__new-price {
  color: #99CB38;
  font-size: 30px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 730px) {
  .popup-models__new-price {
    font-size: 25px;
  }
}

.popup-models__btn {
  padding: 15px 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  border-radius: 30px;
  -webkit-box-shadow: 10px 10px 20px 0px rgba(255, 216, 111, 0.4);
          box-shadow: 10px 10px 20px 0px rgba(255, 216, 111, 0.4);
  background: linear-gradient(268.28deg, #FBD846 0.046%, #FFE888 99.928%);
}
@media screen and (max-width: 1137px) {
  .popup-models__btn {
    margin: 0 0 0 auto;
    max-width: 300px;
  }
}
@media screen and (max-width: 730px) {
  .popup-models__btn {
    max-width: unset;
    font-size: 16px;
  }
}

.popup-application {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
  -webkit-transition: background-color 0.2s ease-in, visibility 0.2s ease-in;
  transition: background-color 0.2s ease-in, visibility 0.2s ease-in;
}
.popup-application--open {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup-application--open .popup-application__inner {
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
  visibility: visible;
}

.popup-application__inner {
  padding: 30px;
  background-color: #FFF;
  border-radius: 10px;
  position: relative;
  width: 500px;
  max-width: 95%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
  transition: transform 0.8s, opacity 0.8s, visibility 0.8s;
  transition: transform 0.8s, opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
}
@media screen and (max-width: 1137px) {
  .popup-application__inner {
    padding: 10px;
  }
}

.popup-application__close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
}
@media screen and (max-width: 1137px) {
  .popup-application__close {
    top: 15px;
    right: 15px;
  }
}

.popup-application__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin: 0 0 35px 0;
}

.popup-application__product {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 23px;
     -moz-column-gap: 23px;
          column-gap: 23px;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.05);
  margin: 0 0 30px 0;
}
@media screen and (max-width: 730px) {
  .popup-application__product {
    margin: 0 0 20px 0;
  }
}

.popup-application__product-img {
  width: 98px;
  height: 98px;
}

.popup-application__product-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 0 0 13px 0;
}

.popup-application__old-price {
  font-size: 16px;
  color: #B2B2B2;
  margin: 0 0 3px 0;
}
@media screen and (max-width: 730px) {
  .popup-application__old-price {
    font-size: 16px;
  }
}

.popup-application__new-price {
  font-size: 20px;
  color: #99CB38;
}
@media screen and (max-width: 730px) {
  .popup-application__new-price {
    font-size: 25px;
  }
}

.popup-application__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 730px) {
  .popup-application__form {
    row-gap: 20px;
  }
}

.popup-application__input {
  padding: 20px 25px;
  border: 1px solid rgb(251, 216, 70);
  border-radius: 30px;
}

.popup-application__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup-application__btn {
  padding: 21px 15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 30px;
  -webkit-box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
          box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
  background: linear-gradient(268.28deg, rgb(251, 216, 70) 0.021%, rgb(255, 232, 136) 99.967%);
  margin: 0 0 14px 0;
}
@media screen and (max-width: 730px) {
  .popup-application__btn {
    padding: 15px;
    font-size: 16px;
  }
}

.popup-application__policy {
  text-align: center;
  color: #737373;
  font-size: 10px;
  line-height: 15px;
}

.card {
  display: inline-block;
  background: #FFF;
  cursor: pointer;
  position: relative;
  outline: 2px solid transparent;
  -webkit-transition: outline 0.2s ease-in;
  transition: outline 0.2s ease-in;
}

.card__img {
  height: 260px;
}

.card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card:hover {
  outline: 2px solid #99CB38;
}
.card:hover .card__btn {
  background-color: #99CB38;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFF)), -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFF)), none;
  background-image: linear-gradient(#FFF, #FFF), linear-gradient(#FFF, #FFF), none;
}
.card:hover .card__title {
  color: #99CB38;
}

.card__desc {
  padding: 25px;
}

.card__title {
  font-weight: 600;
  line-height: 20px;
  margin: 0 0 22px 0;
  color: #333;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}

.card__old-price {
  color: #B2B2B2;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.card__price {
  font-size: 25px;
  font-weight: 600;
  color: #99CB38;
}

.card__btn {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 40px;
  height: 40px;
  background-color: #f4f4f4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#99CB38), to(#99CB38)), -webkit-gradient(linear, left top, left bottom, from(#99CB38), to(#99CB38)), none;
  background-image: linear-gradient(#99CB38, #99CB38), linear-gradient(#99CB38, #99CB38), none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50% 2px, 2px 50%;
  background-attachment: scroll, scroll, scroll;
  background-origin: padding-box, padding-box, padding-box;
  background-clip: border-box, border-box, border-box;
  border-radius: 50%;
  -webkit-transition: background-color 0.2s ease-in, background-image 0.2s ease-in;
  transition: background-color 0.2s ease-in, background-image 0.2s ease-in;
}

.kitchen-styles {
  padding: 69px 0 94px;
}
@media screen and (max-width: 730px) {
  .kitchen-styles {
    padding: 40px 0;
  }
}

.kitchen-styles__title {
  margin: 0 0 26px 0;
}
@media screen and (max-width: 730px) {
  .kitchen-styles__title {
    margin: 0 0 15px 0;
  }
}

.kitchen-styles__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-align: center;
  margin: 0 0 58px 0;
}
@media screen and (max-width: 730px) {
  .kitchen-styles__text {
    font-size: 16px;
    margin: 0 0 20px 0;
  }
}

.kitchen-styles__gallery {
  margin: 0 0 63px 0;
}

.kitchen-styles__cta {
  padding: 38px 0 20px 26px;
  border-radius: 30px;
  background: #F5F5F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 730px) {
  .kitchen-styles__cta {
    padding: 20px 10px;
  }
}

.kitchen-styles__cta-wrapper {
  width: 67.15%;
}
@media screen and (max-width: 1137px) {
  .kitchen-styles__cta-wrapper {
    width: 100%;
  }
}

.kitchen-styles__cta-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 35px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 1137px) {
  .kitchen-styles__cta-title {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 15px 0;
    width: 100%;
  }
}
@media screen and (max-width: 730px) {
  .kitchen-styles__cta-title {
    text-align: center;
  }
}

.kitchen-styles__cta-text {
  line-height: 24px;
  text-transform: uppercase;
  margin: 0 0 39px 0;
}
@media screen and (max-width: 1137px) {
  .kitchen-styles__cta-text {
    font-size: 14px;
    line-height: 17px;
  }
}
@media screen and (max-width: 730px) {
  .kitchen-styles__cta-text {
    text-align: center;
  }
}

@media screen and (max-width: 1137px) {
  .kitchen-styles__cta-img {
    display: none;
  }
}
.kitchen-styles__cta-img--mob {
  display: none;
  text-align: center;
}
@media screen and (max-width: 730px) {
  .kitchen-styles__cta-img--mob {
    display: block;
  }
}
.kitchen-styles__cta-img--form-mob {
  display: none;
  -webkit-box-flex: 50%;
      -ms-flex: 50% 0 0px;
          flex: 50% 0 0;
}
@media screen and (max-width: 1137px) {
  .kitchen-styles__cta-img--form-mob {
    display: block;
  }
}
@media screen and (max-width: 730px) {
  .kitchen-styles__cta-img--form-mob {
    display: none;
  }
}

.kitchen-styles__form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.kitchen-styles__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 21px;
     -moz-column-gap: 21px;
          column-gap: 21px;
  row-gap: 28px;
}
@media screen and (max-width: 1137px) {
  .kitchen-styles__form {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.kitchen-styles__input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 21px;
     -moz-column-gap: 21px;
          column-gap: 21px;
  margin: 0 0 28px 0;
}

.kitchen-styles__input {
  padding: 20px 15px;
  border: 1px solid #B0B0B0;
  border-radius: 30px;
}
.kitchen-styles__input::-webkit-input-placeholder {
  color: #B0B0B0;
  font-size: 20px;
}
.kitchen-styles__input::-moz-placeholder {
  color: #B0B0B0;
  font-size: 20px;
}
.kitchen-styles__input:-ms-input-placeholder {
  color: #B0B0B0;
  font-size: 20px;
}
.kitchen-styles__input::-ms-input-placeholder {
  color: #B0B0B0;
  font-size: 20px;
}
.kitchen-styles__input::placeholder {
  color: #B0B0B0;
  font-size: 20px;
}

.kitchen-styles__file-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kitchen-styles__file {
  display: none;
}

.kitchen-styles__file-text {
  color: #737373;
  line-height: 22px;
  font-size: 18px;
}
@media screen and (max-width: 1137px) {
  .kitchen-styles__file-text {
    font-size: 16px;
  }
}

.kitchen-styles__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kitchen-styles__btn-container {
  width: 100%;
  position: relative;
  margin: 0 0 10px 0;
}
.kitchen-styles__btn-container::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(268.28deg, #FBD846 0.036%, #FFE888 99.944%);
  border-radius: 30px;
  -webkit-box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
          box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
}

.kitchen-styles__btn {
  width: 100%;
  padding: 20px 56px;
  max-width: 360px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 30px;
  -webkit-box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
          box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1137px) {
  .kitchen-styles__btn {
    width: 100%;
    max-width: 100%;
  }
}

.kitchen-styles__btn-text {
  font-size: 10px;
  line-height: 15px;
  text-align: center;
}

.tabs-triggers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  margin: 0 0 45px 0;
}
@media screen and (max-width: 730px) {
  .tabs-triggers {
    display: none;
  }
}
.tabs-triggers--mobile {
  display: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 25px;
  padding: 15px 10px;
  background-color: #FBD846;
  color: #333;
  font-weight: 700;
}

.select-container {
  position: relative;
  display: none;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 730px) {
  .select-container {
    display: block;
  }
}

.select-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  width: 14px;
  height: 8px;
}

.tabs__select:focus {
  -webkit-box-shadow: 0px 0px 0px 1px #e6c648;
          box-shadow: 0px 0px 0px 1px #e6c648;
}

.tabs-triggers__item {
  padding: 15px 35px;
  font-weight: 400;
  color: #8C8C8C;
  border-radius: 30px;
  background-color: #F5F5F5;
}
.tabs-triggers__item--mobile {
  font-weight: 700;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.tabs-content__item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

.tabs-content__card {
  display: inline-block;
  position: relative;
}

.tabs-content__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tab-content__btn {
  padding: 14.5px;
  position: absolute;
  bottom: 13px;
  right: 9px;
  background-color: rgba(251, 216, 70, 0.8);
  border-radius: 50%;
}

.tabs__item {
  display: none;
}

.tabs__item.active {
  display: grid;
}

.tabs__btn {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.tabs__btn:hover {
  background-color: #e7e6e6;
}

.tabs__btn.active {
  background-color: #FBD846;
  color: #333;
  font-weight: 600;
}
.tabs__btn.active:hover {
  background-color: #e6c648;
}

.benefits {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 228, 114)), color-stop(100%, rgb(248, 204, 85)), to(#FBD846));
  background: linear-gradient(90deg, rgb(255, 228, 114), rgb(248, 204, 85) 100%, #FBD846 100%);
}
@media screen and (max-width: 730px) {
  .benefits {
    padding: 30px 0;
  }
}

.benefits__header {
  padding: 22px 16px 26px;
  background: #FFF;
  margin: 0 0 42px 0;
}
@media screen and (max-width: 730px) {
  .benefits__header {
    margin: 0 0 20px 0;
  }
}

.benefits__title {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 730px) {
  .benefits__title {
    margin: 0 0 15px 0;
  }
}

.benefits__bonus {
  position: relative;
  font-size: 20px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.benefits__poll {
  background-color: #FFF;
  border-radius: 10px;
  -webkit-box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 36px 0;
  position: relative;
}
.benefits__poll img {
  height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 476px) {
  .benefits__poll {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .benefits__poll img {
    height: 320px;
  }
}

.benefits__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.benefits__poll-wrapper {
  padding: 0 0 0 34px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 405px;
}
.benefits__poll-wrapper::before {
  content: "";
  width: 61px;
  height: 3px;
  background: #FBD846;
  border-radius: 10px;
  margin: 0 0 21px 0;
}
@media screen and (max-width: 1137px) {
  .benefits__poll-wrapper {
    padding: 0 18px;
  }
}
@media screen and (max-width: 476px) {
  .benefits__poll-wrapper {
    padding: 0 18px 42px;
    max-width: 100%;
  }
}

.benefits__score {
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 40px;
  right: 40px;
}
@media screen and (max-width: 476px) {
  .benefits__score {
    top: 20px;
    right: 20px;
  }
}

.benefits__poll-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 28px 0;
}
@media screen and (max-width: 730px) {
  .benefits__poll-title {
    font-size: 18px;
    margin: 0 0 20px 0;
  }
}

.benefits__poll-text {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  margin: 0 0 44px 0;
}
@media screen and (max-width: 730px) {
  .benefits__poll-text {
    font-size: 16px;
    margin: 0 0 30px 0;
  }
}

.benefits__btn-container {
  position: relative;
}
.benefits__btn-container::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(268.28deg, rgb(248, 204, 85) 0.064%, rgb(255, 221, 129) 99.899%);
  border-radius: 30px;
  -webkit-box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
          box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
}

.benefits__poll-btn {
  padding: 20px 30px;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  border-radius: 30px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(248, 204, 85, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(248, 204, 85, 0.25);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 476px) {
  .benefits__poll-btn {
    width: 100%;
  }
}

.benefits__footer-title {
  padding: 24px 20px;
  font-size: 28px;
  font-weight: 900;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  background-color: #FFF;
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0 0 36px 0;
}
@media screen and (max-width: 730px) {
  .benefits__footer-title {
    padding: 12px 10px;
    font-size: 24px;
    margin: 0 0 20px 0;
  }
}

.benefits__row {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
}
@media screen and (max-width: 1137px) {
  .benefits__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 730px) {
  .benefits__row {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 476px) {
  .benefits__row {
    grid-template-columns: 1fr;
  }
}

.benefits__card {
  padding: 36px 10px 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1);
  background: #FFF;
}

.benefits__card-icon {
  margin: 0 0 26px 0;
}
.benefits__card-icon img {
  width: 86px;
  height: 86px;
}

.benefits__card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 19px 0;
}
@media screen and (max-width: 730px) {
  .benefits__card-title {
    font-size: 18px;
    margin: 0 0 10px 0;
  }
}

.benefits__card-text {
  line-height: 17px;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
}

.materials {
  padding: 94px 0 116px;
}
@media screen and (max-width: 1137px) {
  .materials {
    padding: 30px 0;
  }
}

.materials__title {
  margin: 0 0 63px 0;
}
@media screen and (max-width: 1137px) {
  .materials__title {
    margin: 0 0 30px 0;
  }
}

.materials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1137px) {
  .materials__grid {
    gap: 20px;
  }
}

.materials__card {
  padding: 20px 20px 27px 20px;
  min-height: 400px;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 20px;
  outline: 2px solid transparent;
  -webkit-transition: outline 0.2s ease-in;
  transition: outline 0.2s ease-in;
}

.materials__card:hover {
  outline: 2px solid #FBD846;
}
.materials__card:hover .materials__card-title,
.materials__card:hover .materials__card-text {
  color: #333;
}
.materials__card:hover .materials__card-btn {
  background: transparent;
  outline: 1px solid #FBD846;
}
.materials__card:hover .materials__card-btn::before {
  opacity: 0;
}

.materials__card-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  margin: 0 0 21px 0;
}
@media screen and (max-width: 730px) {
  .materials__card-title {
    font-size: 18px;
    margin: 0 0 10px 0;
  }
}

.materials__card-img {
  float: right;
}
@media screen and (max-width: 730px) {
  .materials__card-img {
    max-width: 100px;
  }
}

.materials__card-text {
  font-size: 12px;
  line-height: 15px;
  max-width: 320px;
  color: #333;
}
.materials__card-text p {
  color: #333;
}
.materials__card-text p:not(:last-child) {
  margin: 0 0 18px 0;
}

.materials__card-btn {
  padding: 10px 62px;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
  outline: 2px solid transparent;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  color: #333;
  position: relative;
}
.materials__card-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  -webkit-box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
          box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
  background: linear-gradient(268.28deg, #FBD846 0.018%, #FFE888 99.972%);
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
@media screen and (max-width: 730px) {
  .materials__card-btn {
    font-size: 14px;
  }
}

.our-works {
  padding: 35px 15px 42px;
  background: #FBD846;
}
@media screen and (max-width: 1137px) {
  .our-works {
    padding: 40px 0;
  }
}

.our-works__title {
  margin: 0 0 56px 0;
}
@media screen and (max-width: 730px) {
  .our-works__title {
    margin: 0 0 20px 0;
  }
}

.our-works__galery {
  position: relative;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 1137px) {
  .our-works__galery {
    margin: 0 0 15px 0;
  }
}

.our-works__btn {
  position: absolute;
  z-index: 1;
}
.our-works__btn:disabled {
  opacity: 0.5;
}
@media screen and (max-width: 1137px) {
  .our-works__btn {
    display: none;
  }
}

.our-works__prev-btn {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.our-works__next-btn {
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.our-works__slider {
  overflow-x: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.our-works__slider-track {
  display: grid;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  grid-template-columns: repeat(6, 1fr);
  overflow-x: auto;
  scrollbar-width: none;
  list-style: none;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.our-works__slider-track::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1137px) {
  .our-works__slider-track {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}

.our-works__scrollbar {
  height: 24px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.our-works__scrollbar:hover .our-works__scrollbar-track {
  height: 4px;
}

.our-works__scrollbar-track {
  height: 2px;
  width: 100%;
  background: #FFF;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.our-works__scrollbar-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  background: #333;
  border-radius: inherit;
  cursor: -webkit-grab;
  cursor: grab;
}
.our-works__scrollbar-thumb:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  height: 8px;
  top: -2px;
}
.our-works__scrollbar-thumb::after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1137px) {
  .our-works__scrollbar-thumb {
    width: 20%;
  }
}

.our-works__img {
  min-width: 360px;
  height: 360px;
}
.our-works__img img {
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1137px) {
  .our-works__img {
    min-width: 290px;
    height: 290px;
  }
}

.consultation {
  padding: 30px 0;
  overflow-x: hidden;
  background: #262626;
}

.consultation__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.consultation__wrapper {
  -webkit-box-flex: 65%;
      -ms-flex: 65% 1 0px;
          flex: 65% 1 0;
  padding: 0 21px 0 0;
}
@media screen and (max-width: 1137px) {
  .consultation__wrapper {
    padding: 0;
  }
}

.consultation__title {
  text-align: left;
  color: #FFF;
  margin: 0 0 30px 0;
}

.consultation__img {
  padding: 0 0 0 21px;
  margin: 0 -148px 0 0;
}
@media screen and (max-width: 1137px) {
  .consultation__img {
    display: none;
  }
}
.consultation__img--mob {
  display: none;
  grid-area: form-img;
  justify-self: end;
}
.consultation__img--mob img {
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1137px) {
  .consultation__img--mob {
    display: block;
  }
}
@media screen and (max-width: 730px) {
  .consultation__img--mob {
    display: none;
  }
}

.form {
  display: grid;
  grid-template-areas: "form-name form-tel" "form-textarea form-textarea" "form-btn form-text";
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1137px) {
  .form {
    grid-template-areas: "form-name form-name form-img form-img" "form-tel form-tel form-img form-img" "form-textarea form-textarea form-textarea form-textarea" "form-btn form-text form-text form-text";
  }
}
@media screen and (max-width: 730px) {
  .form {
    grid-template-areas: "form-name" "form-tel" "form-textarea" "form-btn" "form-text";
  }
}

.form__input {
  padding: 16px 21px;
  grid-area: form-input;
}
.form__input::-webkit-input-placeholder {
  font-size: 20px;
  color: #B0B0B0;
}
.form__input::-moz-placeholder {
  font-size: 20px;
  color: #B0B0B0;
}
.form__input:-ms-input-placeholder {
  font-size: 20px;
  color: #B0B0B0;
}
.form__input::-ms-input-placeholder {
  font-size: 20px;
  color: #B0B0B0;
}
.form__input::placeholder {
  font-size: 20px;
  color: #B0B0B0;
}

.form__name {
  grid-area: form-name;
}

.form__tel {
  grid-area: form-tel;
}

.form__input,
.form__textarea {
  padding: 16px 21px;
  border: 1px solid rgb(176, 176, 176);
  border-radius: 20px;
  color: #FFF;
}
.form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
  font-size: 20px;
  color: #B0B0B0;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  font-size: 20px;
  color: #B0B0B0;
}
.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
  font-size: 20px;
  color: #B0B0B0;
}
.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
  font-size: 20px;
  color: #B0B0B0;
}
.form__input::placeholder,
.form__textarea::placeholder {
  font-size: 20px;
  color: #B0B0B0;
}
@media screen and (max-width: 1137px) {
  .form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
    font-size: 16px;
  }
  .form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  .form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  .form__input::placeholder,
  .form__textarea::placeholder {
    font-size: 16px;
  }
}

.form__textarea {
  grid-area: form-textarea;
  height: 113px;
  resize: none;
}

.form__btn-container {
  position: relative;
}
.form__btn-container::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(268.28deg, #FBD846 0.032%, #FFE888 99.95%);
  border-radius: 30px;
  -webkit-box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
          box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
}

.form__btn {
  padding: 17px 20px;
  grid-area: form-btn;
  font-size: 20px;
  font-weight: 700;
  border-radius: 30px;
  -webkit-box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
          box-shadow: 5px 8px 5px 0px rgba(248, 204, 85, 0.1);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1137px) {
  .form__btn {
    font-size: 16px;
  }
}

.form__text {
  color: #B0B0B0;
  font-size: 12px;
  grid-area: form-text;
}

.footer {
  padding: 23px 0;
  background-color: #333;
}
@media screen and (max-width: 730px) {
  .footer {
    padding: 50px 0;
  }
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
}
@media screen and (max-width: 730px) {
  .footer__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 476px) {
  .footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__main-info {
  grid-column: 1/3;
}

.footer__sections {
  grid-row: 2;
}

.footer__contacts {
  grid-row: 2;
}

.footer__logo {
  margin: 0 0 32px 0;
}

.footer__address {
  max-width: 242px;
  color: #FFF;
  line-height: 20px;
}
@media screen and (max-width: 730px) {
  .footer__address {
    font-size: 14px;
    max-width: unset;
  }
}

.footer__title {
  color: #818181;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px 0;
}
@media screen and (max-width: 730px) {
  .footer__title {
    font-size: 18px;
    margin: 0 0 14px 0;
  }
}

.footer__contacts-list {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}
@media screen and (max-width: 1137px) {
  .footer__contacts-list {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

.footer__list-item {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
}
.footer__list-item:not(:last-child) {
  margin: 0 0 30px 0;
}
@media screen and (max-width: 730px) {
  .footer__list-item:not(:last-child) {
    margin: 0 0 20px 0;
  }
}
.footer__list-item--email, .footer__list-item--tel, .footer__list-item--fb, .footer__list-item--ig {
  padding: 0 0 0 30px;
  position: relative;
}
.footer__list-item--email::before, .footer__list-item--tel::before, .footer__list-item--fb::before, .footer__list-item--ig::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  margin: auto;
}
.footer__list-item--email::before {
  background: url("./../img/icons/email.svg") no-repeat;
  width: 22px;
  height: 16px;
}
.footer__list-item--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 730px) {
  .footer__list-item--tel {
    row-gap: 20px;
  }
}
.footer__list-item--tel::before {
  background: url("./../img/icons/phone.svg") no-repeat;
  width: 25px;
  height: 25px;
  top: 0;
  -webkit-transform: unset;
          transform: unset;
}
.footer__list-item--fb::before {
  background: url("./../img/icons/facebook.svg") no-repeat;
  width: 26px;
  height: 26px;
}
.footer__list-item--ig::before {
  background: url("./../img/icons/instagram.svg") no-repeat;
  width: 26px;
  height: 26px;
}

.footer__list-item a {
  color: #FFF;
}
.footer__list-item a:hover {
  color: #B2B2B2;
}
@media screen and (max-width: 730px) {
  .footer__list-item a {
    font-size: 14px;
  }
}