@charset "UTF-8";
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/Golos/GolosText-Black.woff2") format("woff2"), url("../fonts/Golos/GolosText-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/Golos/GolosText-Bold.woff2") format("woff2"), url("../fonts/Golos/GolosText-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/Golos/GolosText-SemiBold.woff2") format("woff2"), url("../fonts/Golos/GolosText-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/Golos/GolosText-Regular.woff2") format("woff2"), url("../fonts/Golos/GolosText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/Golos/GolosText-ExtraBold.woff2") format("woff2"), url("../fonts/Golos/GolosText-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/Golos/GolosText-Medium.woff2") format("woff2"), url("../fonts/Golos/GolosText-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: clamp(8px, 0.5vw + 8px, 10px);
}

:root {
  --color-primary: #0d6efd;
  --color-dark: #111111;
  --color-light: #F7F7F7;
  --font-main: "Golos Text", sans-serif;
}

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

html, body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.5;
}

.page {
  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;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  background: transparent;
}

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

.footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}

b {
  font-weight: 600;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px;
  gap: 10px;
  background: #FFCC08;
  border-radius: 10px;
  border: 3px #FFCC08 solid;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
  color: #282828;
  text-decoration: none;
  min-width: 240px;
  cursor: pointer;
  font-family: var(--font-main), sans-serif;
  outline: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.btn:hover {
  background-color: transparent;
}
.btn.disabled:hover {
  background: #FFCC08;
}
.btn.btn-white {
  border: 1px #D9D9D9 solid;
  background-color: #FFFFFF;
  color: #282828;
}
.btn.btn-white:hover {
  border: 1px #FFFFFF solid;
  background-color: transparent;
}

.form__item {
  position: relative;
  /* margin-bottom: 2rem; */
}
.form__item .wpcf7-not-valid-tip {
  right: 10px;
  position: absolute;
  left: 10px;
  font-size: 14px;
  line-height: 1.2;
  color: #FFFFFF;
  background-color: #d00;
  border-bottom-left-radius: 5px;
  padding: 2px 5px;
  border-bottom-right-radius: 5px;
  z-index: 1;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.form__item input:focus {
  border-color: #f3b300;
  outline: none;
}
.form__item input.wpcf7-not-valid {
  border-color: #d00;
}

.form__actions {
  position: relative;
}

.wpcf7-response-output {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border: 1px solid #f3b300;
  background-color: #fff8e1;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
}
.wpcf7-response-output.init {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
}

.wpcf7-submit {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.wpcf7-submit.sent-success {
  background-color: #4caf50 !important;
  color: #fff !important;
  border-color: #4caf50 !important;
}
.wpcf7-submit:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

@media all and (max-width: 992px) {
  .wpcf7-form-control-wrap {
    position: relative;
    display: block;
    -webkit-transition: margin-bottom 0.3s ease;
    transition: margin-bottom 0.3s ease;
  }
  .wpcf7-form-control-wrap.has-error {
    margin-bottom: 2.5rem;
  }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 100;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%) scale(0.95);
      -ms-transform: translate(-50%, -60%) scale(0.95);
          transform: translate(-50%, -60%) scale(0.95);
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 90%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 101;
  text-align: center;
}
.modal.payStorageModal {
  max-width: 909px;
  padding: 5rem 4rem 4rem 4rem;
}
@media all and (max-width: 991px) {
  .modal.payStorageModal {
    max-width: 375px;
    padding: 3rem;
  }
}
.modal .modal_pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 52px;
}
@media all and (max-width: 991px) {
  .modal .modal_pay {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.modal .modal_pay .btn {
  padding: 20px 45px;
  max-width: 240px;
  width: 100%;
  height: 60px;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(16px, 2.2vw + 0.4rem, 22px);
  line-height: 88%;
  color: #282828;
}
@media all and (max-width: 991px) {
  .modal .modal_pay .btn {
    min-width: unset;
  }
}
.modal .modal_pay__copy {
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.modal .modal_pay__copy:hover {
  opacity: 0.7;
}
@media all and (max-width: 991px) {
  .modal .modal_pay__copy {
    position: absolute;
    right: -10px;
    top: 0;
  }
}
.modal .modal_pay__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 88px;
}
@media all and (max-width: 991px) {
  .modal .modal_pay__details {
    gap: 28px;
    position: relative;
  }
}
.modal .modal_pay__details p {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  line-height: 100%;
  color: #59595A;
  max-width: 220px;
  width: 100%;
  text-align: left;
  margin: 0;
}
@media all and (max-width: 991px) {
  .modal .modal_pay__details p {
    word-break: break-all;
  }
}
.modal .modal_pay__title {
  margin-top: 0;
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-align: left;
  font-size: clamp(22px, 3.8vw + 0.5rem, 40px);
  line-height: 88%;
  color: #282828;
}
@media all and (max-width: 991px) {
  .modal .modal_pay__title {
    margin-bottom: 2rem;
  }
}
.modal.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.modal .form__actions {
  width: 100%;
}
.modal__close {
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  font-size: clamp(16px, 2.2vw + 0.4rem, 22px);
  cursor: pointer;
}
.modal__close svg {
  pointer-events: none;
}
.modal__title {
  font-size: clamp(18px, 3vw + 0.5rem, 24px);
  font-weight: 600;
  margin-bottom: 16px;
}
.modal__body {
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  color: #555;
}
.modal form {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.modal form label {
  width: 100%;
}
.modal form textarea {
  padding-top: 20px;
  padding-bottom: 10px;
}
@media all and (max-width: 1200px) {
  .modal form textarea {
    padding-top: 10px;
  }
}
.modal form input:not([type=submit]), .modal form textarea {
  max-width: 100%;
  width: 100%;
  border: 3px solid #FFCC08;
}
.modal form button[type=submit],
.modal form input[type=submit] {
  width: 100%;
  max-width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

body.modal-open {
  overflow: hidden;
}

/* node_modules/tiny-slider/dist/tiny-slider.css */

.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls] {
  cursor: pointer;
}
.tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -webkit-transition: opacity 0s, -webkit-transform 0s;
  transition: opacity 0s, -webkit-transform 0s;
  transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s, -webkit-transform 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div {
  display: inline-block;
}
.tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714%;
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}

.back-header-menu {
  display: none;
}
.mobile-phone {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2px;
  margin-left: auto;
  margin-right: 16px;
}
.mobile-phone span {
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  text-align: right;
  color: #282828;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  white-space: nowrap;
}
.mobile-phone a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 14px;
  line-height: 13px;
  color: #282828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  white-space: nowrap;
}
.mobile-phone a:hover {
  color: #FFCC08;
}
@media all and (max-width: 1220px) {
  .mobile-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger {
  width: 30px;
  height: 22px;
  display: none;
  -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;
  cursor: pointer;
  position: relative;
  z-index: 101;
}
.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #FFCC08;
  border-radius: 3px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
@media all and (max-width: 1220px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(7px, 7px);
      -ms-transform: rotate(45deg) translate(7px, 7px);
          transform: rotate(45deg) translate(7px, 7px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -7px);
      -ms-transform: rotate(-45deg) translate(6px, -7px);
          transform: rotate(-45deg) translate(6px, -7px);
}

.header {
  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;
  background-color: #F7F7F7;
}
.header__worktime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.header__worktime .phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-left: auto;
}
@media all and (max-width: 1220px) {
  .header__worktime .phones {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.header__worktime a {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 13px;
  color: #282828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.header__worktime a:hover {
  color: #FFCC08;
}
@media all and (max-width: 1220px) {
  .header__worktime a {
    font-size: 1.3rem;
  }
}
.header__worktime span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 10px;
  text-align: right;
  color: #282828;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media all and (max-width: 1220px) {
  .header__worktime span {
    font-size: 1.3rem;
  }
}
.header__right-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__right-info .btn-wrapper {
  margin-right: 33px;
}
@media all and (max-width: 1220px) {
  .header__right-info .btn-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.header__right-info .btn-wrapper .header-btn {
  min-width: unset;
  height: 32px;
  border-radius: 5px;
}
@media all and (max-width: 1220px) {
  .header__right-info.active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
@media all and (max-width: 1220px) {
  .header__right-info {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 100vh;
    right: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    padding-top: 80px;
    padding-right: 20px;
    overflow: auto;
    background-color: #F7F7F7;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 200px;
    padding-left: 20px;
    -webkit-transform: translateX(150%);
        -ms-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
}
.header a.logo {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 1220px) {
  .header a.logo {
    position: relative;
    z-index: 1;
  }
}
@media all and (max-width: 480px) {
  .header a.logo {
    margin-right: 20px;
  }
  .header a.logo svg, .header a.logo img {
    width: 100%;
    max-width: 127px;
  }
}
.header__container {
  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;
  width: 100%;
  margin-left: 80px;
  margin-right: 80px;
}
@media all and (max-width: 1220px) {
  .header__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media all and (max-width: 480px) {
  .header__container {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}
.header ul {
  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;
  gap: 33px;
  padding: 0;
  margin: 0;
  margin-left: 33px;
  margin-right: 33px;
}
.header ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header ul a {
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 12px;
  color: #282828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
@media all and (max-width: 1220px) {
  .header ul a {
    text-align: right;
    font-size: 1.4rem;
  }
}
.header ul a:hover {
  color: #FFCC08;
}
.header ul a.active {
  color: #FFCC08;
  position: relative;
}
.header ul a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #FFCC08;
  border-radius: 2px;
}
@media all and (max-width: 1420px) {
  .header ul {
    gap: 27px;
    margin-left: 27px;
    margin-right: 27px;
  }
}
@media all and (max-width: 1300px) {
  .header ul {
    gap: 20px;
  }
}
@media all and (max-width: 1220px) {
  .header ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.footer {
  padding-top: 4rem;
  padding-bottom: 6.4rem;
  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;
  background-color: #F7F7F7;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.footer__additional-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
@media all and (max-width: 480px) {
  .footer__additional-btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.footer__additional-btns a {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 88%;
  opacity: 0.6;
  color: #282828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.footer__additional-btns a:hover {
  color: #FFCC08;
}
.footer__additional-btns a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__mobile-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 1220px) {
  .footer__mobile-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media all and (max-width: 480px) {
  .footer__mobile-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__worktime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.footer__worktime .phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-left: auto;
}
@media all and (max-width: 1220px) {
  .footer__worktime .phones {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 480px) {
  .footer__worktime .phones {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: auto;
  }
}
.footer__worktime a {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 13px;
  color: #282828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.footer__worktime a:hover {
  color: #FFCC08;
}
@media all and (max-width: 1220px) {
  .footer__worktime a {
    font-size: 1.3rem;
  }
}
.footer__worktime span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 10px;
  text-align: right;
  color: #282828;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media all and (max-width: 1220px) {
  .footer__worktime span {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 480px) {
  .footer__worktime span {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
}
.footer__right-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 1220px) {
  .footer__right-info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .footer__right-info .nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__right-info .nav__list {
    margin: 0;
  }
}
@media all and (max-width: 1220px) and (max-width: 480px) {
  .footer__right-info .nav__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media all and (max-width: 1220px) and (max-width: 480px) {
  .footer__right-info .nav {
    width: 100%;
  }
}
@media all and (max-width: 480px) {
  .footer__right-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__right-info .btn-wrapper {
  margin-right: 33px;
}
@media all and (max-width: 1220px) {
  .footer__right-info .btn-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 480px) {
  .footer__right-info .btn-wrapper {
    margin-right: auto;
    margin-left: auto;
  }
}
.footer__right-info .btn-wrapper .footer-btn {
  min-width: unset;
  height: 32px;
  border-radius: 5px;
}
@media all and (max-width: 1220px) {
  .footer__right-info.active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
.footer a.logo {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 1220px) {
  .footer a.logo {
    position: relative;
    z-index: 1;
  }
}
.footer__container {
  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;
  width: 100%;
  margin-left: 80px;
  margin-right: 80px;
}
@media all and (max-width: 1220px) {
  .footer__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media all and (max-width: 480px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.footer ul {
  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;
  gap: 33px;
  padding: 0;
  margin: 0;
  margin-left: 33px;
  margin-right: 33px;
}
.footer ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer ul a {
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 12px;
  color: #282828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
@media all and (max-width: 1220px) {
  .footer ul a {
    text-align: right;
    font-size: 1.4rem;
  }
}
.footer ul a:hover {
  color: #FFCC08;
}
@media all and (max-width: 1420px) {
  .footer ul {
    gap: 27px;
    margin-left: 27px;
    margin-right: 27px;
  }
}
@media all and (max-width: 1300px) {
  .footer ul {
    gap: 20px;
  }
}
@media all and (max-width: 1220px) {
  .footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 480px) {
  .footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media all and (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}

.small-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}
@media all and (max-width: 1380px) {
  .small-container {
    padding: 0 20px;
  }
}

.hero {
  height: 100%;
}
.hero__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media all and (max-width: 992px) {
  .hero__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 15px;
  }
}
.hero__input {
  width: 240px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 10px;
  border: none;
  padding: 0 20px;
  font-family: "Golos Text", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 2.2vw + 0.4rem, 22px);
  color: #282828;
  outline: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  line-height: 19px;
}
.hero__input::-webkit-input-placeholder {
  color: #282828;
}
.hero__input::-moz-placeholder {
  color: #282828;
}
.hero__input:-ms-input-placeholder {
  color: #282828;
}
.hero__input::-ms-input-placeholder {
  color: #282828;
}
.hero__input::placeholder {
  color: #282828;
}
.hero__input:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(255, 204, 8, 0.5);
          box-shadow: 0 0 0 3px rgba(255, 204, 8, 0.5);
}
@media all and (max-width: 1200px) {
  .hero__input {
    width: 200px;
    height: 55px;
    font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  }
}
@media all and (max-width: 768px) {
  .hero__input {
    width: 100%;
    height: 50px;
    font-size: clamp(14px, 2vw + 0.3rem, 18px);
  }
}
@media all and (max-width: 480px) {
  .hero__input {
    height: 48px;
    font-size: clamp(14px, 1.5vw + 0.3rem, 16px);
    border-radius: 8px;
  }
}
.hero__btn {
  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;
  padding: 20px 45px;
  width: 240px;
  height: 60px;
  background: #FFCC08;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: "Golos Text", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1;
  color: #282828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.hero__btn:hover {
  background: #ffd633;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.hero__btn:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media all and (max-width: 1200px) {
  .hero__btn {
    width: 200px;
    height: 55px;
    font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  }
}
@media all and (max-width: 768px) {
  .hero__btn {
    width: 100%;
    height: 50px;
    font-size: clamp(14px, 2vw + 0.3rem, 18px);
    padding: 15px;
  }
}
@media all and (max-width: 480px) {
  .hero__btn {
    height: 48px;
    font-size: clamp(14px, 1.5vw + 0.3rem, 16px);
    border-radius: 8px;
    font-size: 18px;
  }
}
.hero__container {
  border-radius: 20px;
  overflow: hidden;
  min-height: 720px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 1024px) {
  .hero__container {
    height: initial;
    min-height: calc(100vh - 100px);
  }
}
@media all and (max-width: 480px) {
  .hero__container {
    min-height: calc(100vh - 100px);
  }
}
.hero__content {
  padding: 70px 60px 80px 60px;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media all and (max-width: 768px) {
  .hero__content {
    padding: 20px;
  }
}
.hero__content h1 {
  font-weight: 600;
  font-size: clamp(28px, 5vw + 1rem, 80px);
  line-height: 0.9;
  color: #fff;
  margin-top: 0;
  margin-bottom: 4rem;
  letter-spacing: 0.4px;
}
@media all and (max-width: 768px) {
  .hero__content h1 {
    margin-bottom: 2rem;
  }
}
@media all and (max-width: 480px) {
  .hero__content h1 {
    font-size: 50px;
  }
}
.hero__content .subtitle {
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 30px);
  line-height: 0.8;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 2rem;
}
@media all and (max-width: 768px) {
  .hero__content .subtitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .hero__content .subtitle span {
    display: none;
  }
}
.hero__form-wrapper {
  margin-top: auto;
}
@media all and (max-width: 480px) {
  .hero__form-wrapper {
    margin-top: auto;
  }
}
.hero__form-title {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
  color: #ffffff;
  margin-bottom: 4rem;
  margin-top: 0;
  letter-spacing: 0.7px;
}
@media all and (max-width: 480px) {
  .hero__form-title {
    margin-bottom: 2rem;
  }
}
.hero__img {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(25.54%, rgba(0, 0, 0, 0)), color-stop(82.46%, rgba(0, 0, 0, 0.51)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 25.54%, rgba(0, 0, 0, 0.51) 82.46%);
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
  pointer-events: none;
}

.video-box {
  margin-top: 6.6rem;
  margin-bottom: 3rem;
}
.video-box__uptitle {
  font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  line-height: 100%;
  color: #59595A;
  margin-bottom: 6.6rem;
  max-width: 1048px;
}
@media all and (max-width: 480px) {
  .video-box__uptitle {
    margin-bottom: 6rem;
    font-size: 18px;
  }
}
.video-box__title {
  margin-top: 0;
  margin-bottom: 3rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 5vw + 1rem, 60px);
  line-height: 1;
  color: #282828;
}
.video-box .btn {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20.5px 30px;
  height: 60px;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 19px;
  color: #282828;
  border-radius: 10px;
  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;
  margin-bottom: 50px;
}
.video-box__wrapper {
  margin: 0 auto;
  position: relative;
}
.video-box__video {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .video-box {
    margin-top: 5rem;
  }
  .video-box__wrapper {
    padding: 0;
  }
}
@media all and (max-width: 480px) {
  .video-box {
    margin-top: 5rem;
    margin-bottom: 6rem;
  }
  .video-box__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.video-overlay {
  position: absolute;
  inset: 0;
  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;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.video-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.video-play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #FFCC08;
  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;
  border: none;
  cursor: pointer;
  position: relative;
  margin-bottom: 3rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.video-play-btn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 22px solid #FFFFFF;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-play-btn:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.video-play-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #FFCC08;
  -webkit-animation: pulse 1.5s ease-out infinite;
          animation: pulse 1.5s ease-out infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
}
.how-it-works {
  margin-bottom: 8rem;
  margin-top: 5rem;
}
@media all and (max-width: 480px) {
  .how-it-works {
    margin-bottom: 5rem;
  }
}
.how-it-works__text {
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 3vw + 1rem, 25px);
  line-height: 1;
  color: #282828;
  margin-bottom: 3rem;
}
@media all and (max-width: 480px) {
  .how-it-works__text {
    margin-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.how-it-works .infographics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
@media all and (max-width: 1200px) {
  .how-it-works .infographics {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 768px) {
  .how-it-works .infographics {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media all and (max-width: 480px) {
  .how-it-works .infographics {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.how-it-works .infographics__item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
}
@media all and (max-width: 480px) {
  .how-it-works .infographics__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.how-it-works .infographics__icon {
  background-color: #FFCC08;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  margin-bottom: 1rem;
  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;
}
.how-it-works .infographics__icon * {
  max-width: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.how-it-works .infographics__title {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw + 0.5rem, 25px);
  line-height: 1;
  color: #282828;
  min-height: 5rem;
}
@media all and (max-width: 1024px) {
  .how-it-works .infographics__title {
    min-height: unset;
  }
}
@media all and (max-width: 1024px) {
  .how-it-works .infographics__title {
    font-size: 18px;
  }
}
.how-it-works .infographics__descr {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  line-height: 1;
  color: #59595A;
}
@media all and (max-width: 1024px) {
  .how-it-works .infographics__descr {
    font-size: 14px;
  }
}

.boxes__content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 80px 60px;
}
@media all and (max-width: 991px) {
  .boxes__content {
    padding: 30px 20px;
  }
}
@media all and (max-width: 480px) {
  .boxes__content {
    padding: 20px;
  }
}
.boxes__title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 5vw + 1rem, 60px);
  line-height: 1;
  color: #282828;
}
.boxes__subtitle {
  margin-top: 1rem;
  font-weight: 400;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  line-height: 1;
  color: #59595A;
  margin-bottom: 3rem;
}
.boxes__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 30px;
  gap: 10px;
}
@media all and (max-width: 991px) {
  .boxes__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media all and (max-width: 480px) {
  .boxes__tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
.boxes__tab {
  background: #D9D9D9;
  border: none;
  padding: 20px 40px;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media all and (max-width: 991px) {
  .boxes__tab {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 200px;
    padding: 10px 20px;
  }
}
@media all and (max-width: 480px) {
  .boxes__tab {
    min-width: unset;
    padding: 10px;
    min-height: 57px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.boxes__tab span:not(.boxes__tab-title) {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #282828;
}
@media all and (max-width: 480px) {
  .boxes__tab .spec-box-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (max-width: 480px) {
  .boxes__tab .btn-descr {
    display: none;
  }
}
.boxes__tab.active {
  background: #FFCC08;
  font-weight: 700;
}
.boxes__tab:hover {
  background: #FFCC08;
}
.boxes__tab-title {
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #282828;
}
@media all and (max-width: 480px) {
  .boxes__tab-title {
    margin: auto;
  }
}
.boxes__item {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 77px;
  text-align: left;
}
@media all and (max-width: 991px) {
  .boxes__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.boxes__item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.boxes__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
}
@media all and (max-width: 991px) {
  .boxes__image {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
.boxes__image img, .boxes__image video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media all and (max-width: 480px) {
  .boxes__image img, .boxes__image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
}
@media all and (max-width: 480px) {
  .boxes__image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
  }
}
.boxes__info {
  max-width: 456px;
  width: 44%;
}
@media all and (max-width: 991px) {
  .boxes__info {
    max-width: 100%;
    width: 100%;
  }
}
.boxes__info * {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  line-height: 1;
  color: #59595A;
}
@media all and (max-width: 480px) {
  .boxes__info ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    padding-left: 2rem;
  }
}
.boxes__info ul {
  margin-bottom: 25px;
}
.boxes__info ul li {
  margin-bottom: 8px;
  font-size: clamp(14px, 1.5vw + 0.3rem, 16px);
}
.boxes .btn {
  position: relative;
  z-index: 1;
  max-height: 60px;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  color: #282828;
  padding: 20px 15px;
  margin-top: 5rem;
}
@media all and (max-width: 480px) {
  .boxes .btn {
    width: 100%;
    margin-top: 3rem;
  }
}
@media all and (min-width: 1220px) {
  .boxes {
    min-height: 908px;
  }
}

.promotional {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media all and (max-width: 768px) {
  .promotional {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media all and (max-width: 480px) {
  .promotional {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.promotional__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 80px;
}
@media all and (max-width: 1220px) {
  .promotional__content {
    padding-left: 20px;
  }
}
@media all and (max-width: 768px) {
  .promotional__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.promotional__image {
  margin-right: 8rem;
}
.promotional__image img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  max-width: 800px;
  max-height: 460px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media all and (max-width: 1220px) {
  .promotional__image {
    margin-right: 2rem;
  }
}
@media all and (max-width: 1024px) {
  .promotional__image {
    max-width: 50%;
  }
}
@media all and (max-width: 768px) {
  .promotional__image {
    max-width: 100%;
    min-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
}
.promotional__title {
  margin-top: 0;
  margin-bottom: 3.5rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 5vw + 1rem, 60px);
  line-height: 1;
  color: #282828;
}
.promotional__subtitle {
  font-weight: 400;
  font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  line-height: 100%;
  color: #282828;
}
.promotional__text {
  max-width: 390px;
}
@media all and (max-width: 768px) {
  .promotional__text {
    max-width: 100%;
  }
}
.promotional__phone {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  position: relative;
}
.promotional__phone img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  left: -22.5rem;
  top: -13rem;
  width: 730px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media all and (max-width: 1220px) {
  .promotional__phone img {
    left: -23.4rem;
  }
}
@media all and (max-width: 1024px) {
  .promotional__phone img {
    left: initial;
    width: 67rem;
    right: -10rem;
    margin: auto;
    bottom: -4rem;
    top: 0;
  }
}
@media all and (max-width: 768px) {
  .promotional__phone img {
    width: 25rem;
    right: -8rem;
    margin: auto;
    bottom: -35rem;
  }
}
@media all and (max-width: 480px) {
  .promotional__phone img {
    left: initial;
    width: 21rem;
    right: -2.2rem;
    bottom: -26rem;
    top: 0;
    margin: auto;
  }
}
@media all and (min-width: 769px) {
  .promotional__phone img.promo-mobile-phone {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .promotional__phone img.promo-desktop-phone {
    display: none;
  }
}
.promotional .btn {
  max-height: 60px;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  color: #282828;
  padding: 20px 15px;
  margin-top: 8.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
  text-align: center;
}
@media all and (max-width: 768px) {
  .promotional .btn {
    margin-top: 2rem;
    display: block;
    max-width: 247px;
  }
}
@media all and (max-width: 480px) {
  .promotional .btn {
    width: 100%;
  }
}

.boxes-keep {
  margin-top: 8rem;
}
@media all and (max-width: 480px) {
  .boxes-keep {
    margin-top: 5rem;
  }
}
.boxes-keep__title {
  margin-top: 0;
  margin-bottom: 3rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 5vw + 1rem, 60px);
  line-height: 1;
  color: #282828;
}
@media all and (max-width: 480px) {
  .boxes-keep__title {
    font-size: 30px;
    margin-bottom: 2rem;
  }
}
.boxes-keep__title.restricted {
  margin-top: 8rem;
}
@media all and (max-width: 480px) {
  .boxes-keep__title.restricted {
    margin-top: 5rem;
  }
}
.boxes-keep__subtitle {
  margin-top: 1rem;
  font-weight: 400;
  font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  line-height: 1;
  color: #59595A;
  margin-bottom: 3rem;
}
@media all and (max-width: 480px) {
  .boxes-keep__subtitle {
    font-size: 18px;
    margin-bottom: 2.5rem;
  }
}
.boxes-keep__content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 80px 60px;
}
@media all and (max-width: 1380px) {
  .boxes-keep__content {
    padding: 80px 30px;
  }
}
@media all and (max-width: 768px) {
  .boxes-keep__content {
    padding: 40px 10px;
  }
}
@media all and (max-width: 480px) {
  .boxes-keep__content {
    padding: 30px 20px;
  }
}
@media all and (max-width: 325px) {
  .boxes-keep__content {
    padding: 30px 20px;
  }
}
.boxes-keep__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media all and (max-width: 1100px) {
  .boxes-keep__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media all and (max-width: 480px) {
  .boxes-keep__wrapper {
    gap: 3rem;
  }
}
.boxes-keep__wrapper.restricted {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: 11px;
  grid-row-gap: 10px;
}
@media all and (max-width: 1100px) {
  .boxes-keep__wrapper.restricted {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 10px;
  }
}
@media all and (max-width: 768px) {
  .boxes-keep__wrapper.restricted {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 480px) {
  .boxes-keep__wrapper.restricted {
    grid-template-columns: repeat(3, 1fr);
  }
}
.boxes-keep__wrapper .item-restricted {
  background: #FFE7E7;
  border: 1px solid #FF6E6E;
  border-radius: 10px;
  height: 100%;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 13px;
  position: relative;
}
@media all and (max-width: 576px) {
  .boxes-keep__wrapper .item-restricted {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.boxes-keep__wrapper .item-restricted img {
  height: auto;
  max-width: 100%;
  mix-blend-mode: Darken;
}
@media all and (max-width: 480px) {
  .boxes-keep__wrapper .item-restricted img {
    max-width: 70px;
  }
}
.boxes-keep__wrapper .item-restricted .title {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  color: #282828;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.boxes-keep .items-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 11px;
  grid-row-gap: 10px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.boxes-keep .items-section .box-size-wrapper {
  grid-area: 4/1/5/5;
  background-color: #FFCC08;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  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;
}
@media all and (max-width: 1480px) {
  .boxes-keep .items-section .box-size-wrapper {
    padding: 10px 20px;
    text-align: center;
    height: 100%;
    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;
  }
}
@media all and (max-width: 768px) {
  .boxes-keep .items-section .box-size-wrapper {
    grid-area: 5/1/6/4;
  }
}
@media all and (max-width: 440px) {
  .boxes-keep .items-section .box-size-wrapper {
    width: 100%;
  }
}
.boxes-keep .items-section .box-size-wrapper .size {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  line-height: 1;
  color: #282828;
  margin-bottom: 1.6rem;
}
@media all and (max-width: 440px) {
  .boxes-keep .items-section .box-size-wrapper .size {
    font-size: 14px;
  }
}
.boxes-keep .items-section .box-size-wrapper .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  line-height: 1;
  text-align: center;
  padding: 21px 47px;
  height: 56px;
}
@media all and (max-width: 325px) {
  .boxes-keep .items-section .box-size-wrapper .btn {
    padding: 20px;
    font-size: clamp(14px, 1.5vw + 0.3rem, 16px);
  }
}
.boxes-keep .items-section .item {
  height: 100%;
  background: #F7F7F7;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 13px;
  position: relative;
  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;
  min-height: 176px;
}
@media all and (max-width: 1100px) {
  .boxes-keep .items-section .item {
    padding-top: 20px;
  }
}
@media all and (max-width: 576px) {
  .boxes-keep .items-section .item {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media all and (max-width: 480px) {
  .boxes-keep .items-section .item {
    min-height: 105px;
  }
}
.boxes-keep .items-section .item img {
  height: auto;
  max-width: 100%;
  mix-blend-mode: Darken;
  margin: 0 auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media all and (max-width: 1100px) {
  .boxes-keep .items-section .item img {
    width: 100%;
    max-width: 116px;
    margin: 0 auto;
    display: block;
  }
}
@media all and (max-width: 480px) {
  .boxes-keep .items-section .item img {
    max-width: 70px;
  }
}
.boxes-keep .items-section .item .title {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  color: #282828;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
  min-height: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 480px) {
  .boxes-keep .items-section .item .title {
    font-size: 14px;
  }
}
.boxes-keep .items-section .item .counter {
  background: #282828;
  color: #FFFFFF;
  width: 4.3rem;
  height: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -0.6rem;
  left: 0;
  right: 0;
  border-radius: 2.38889px;
}
@media all and (max-width: 1100px) {
  .boxes-keep .items-section .item .counter {
    -webkit-transform: scale(2);
        -ms-transform: scale(2);
            transform: scale(2);
  }
}
@media all and (max-width: 576px) {
  .boxes-keep .items-section .item .counter {
    -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
            transform: scale(1.5);
    top: initial;
    bottom: -0.6rem;
    z-index: 1;
  }
}
.boxes-keep .items-section .item .count {
  position: absolute;
  width: 1.9rem;
  height: 1.9rem;
  background: #FFCC08;
  border-radius: 2.38889px;
  text-align: center;
  top: -0.9rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #282828;
}
@media all and (max-width: 1100px) {
  .boxes-keep .items-section .item .count {
    -webkit-transform: scale(2);
        -ms-transform: scale(2);
            transform: scale(2);
  }
}
@media all and (max-width: 576px) {
  .boxes-keep .items-section .item .count {
    -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
            transform: scale(1.5);
    top: initial;
    bottom: -1rem;
    z-index: 1;
  }
}
.boxes-keep .items-section .item .minus {
  background: transparent 50% no-repeat;
  background-size: 0.7rem;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  cursor: pointer;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuY2xzLTEgewogICAgICAgIGZpbGw6ICNmZmY7CiAgICAgIH0KICAgIDwvc3R5bGU+CiAgPC9kZWZzPgogIDxyZWN0IGlkPSJpY29uLW1pbnVzIiBjbGFzcz0iY2xzLTEiIHk9IjMiIHdpZHRoPSI4IiBoZWlnaHQ9IjIiLz4KPC9zdmc+Cg==);
  background-position-x: 0.3rem;
  left: 0;
}
.boxes-keep .items-section .item .plus {
  background: transparent 50% no-repeat;
  background-size: 0.7rem;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  cursor: pointer;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuY2xzLTEgewogICAgICAgIGZpbGw6ICNmZmY7CiAgICAgICAgZmlsbC1ydWxlOiBldmVub2RkOwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBpZD0iaWNvbi1wbHVzIiBjbGFzcz0iY2xzLTEiIGQ9Ik02MDYsMjg1NmgtM3YzaC0ydi0zaC0zdi0yaDN2LTNoMnYzaDN2MloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01OTggLTI4NTEpIi8+Cjwvc3ZnPgo=);
  background-position-x: 1.075rem;
  right: 0;
}
@media all and (max-width: 768px) {
  .boxes-keep .items-section {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 10px;
  }
}
@media all and (max-width: 576px) {
  .boxes-keep .items-section {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
@media all and (max-width: 480px) {
  .boxes-keep .items-section > *:nth-last-child(1):nth-child(3n+1):not(.box-size-wrapper) {
    display: none;
  }
}
.boxes-keep .extra-title {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(16px, 2.2vw + 0.4rem, 22px);
  line-height: 1;
  color: #282828;
  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;
  padding: 20px 65px;
  gap: 10px;
  height: 60px;
  background: #D9D9D9;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: calc(50% - 5px);
  margin-bottom: 30px;
}
@media all and (max-width: 768px) {
  .boxes-keep .extra-title {
    min-width: unset;
    width: 100%;
  }
}

.calculate {
  margin-top: 8rem;
  margin-bottom: 8rem;
  position: relative;
  z-index: 1;
}
.calculate__pseudo-img {
  position: absolute;
  bottom: -25.5rem;
  right: -14.2rem;
}
.calculate__pseudo-img img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 305px;
}
@media all and (max-width: 1380px) {
  .calculate__pseudo-img {
    right: -20rem;
  }
}
@media all and (max-width: 1024px) {
  .calculate__pseudo-img {
    right: -14rem;
    bottom: -19rem;
  }
  .calculate__pseudo-img img {
    max-height: 230px;
  }
}
@media all and (max-width: 768px) {
  .calculate__pseudo-img {
    right: -15rem;
  }
}
@media all and (max-width: 480px) {
  .calculate__pseudo-img {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .calculate {
    margin-bottom: 12rem;
  }
}
@media all and (max-width: 480px) {
  .calculate {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.calculate__content {
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 1380px) {
  .calculate__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (max-width: 768px) {
  .calculate__content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media all and (max-width: 480px) {
  .calculate__content {
    padding-left: 0;
    padding-right: 0;
  }
}
.calculate__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
}
@media all and (max-width: 991px) {
  .calculate__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.calculate__side {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media all and (max-width: 991px) {
  .calculate__side {
    width: 100%;
  }
}
.calculate__side #btns-areas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media all and (max-width: 1250px) {
  .calculate__side #btns-areas {
    grid-template-columns: repeat(5, minmax(60px, 1fr));
  }
}
@media all and (max-width: 375px) {
  .calculate__side #btns-areas {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
}
.calculate__side #btns-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.8rem;
}
@media all and (max-width: 1250px) {
  .calculate__side #btns-months {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}
@media all and (max-width: 768px) {
  .calculate__side #btns-months {
    margin-top: 2rem;
  }
}
@media all and (max-width: 480px) {
  .calculate__side #btns-months {
    grid-template-columns: repeat(3, minmax(80px, 1fr));
  }
}
.calculate__side #btns-months .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 87px;
  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;
}
@media all and (max-width: 576px) {
  .calculate__side #btns-months .button {
    height: 54px;
  }
}
@media all and (max-width: 480px) {
  .calculate__side #btns-months .button {
    padding: 13px;
  }
}
.calculate__side .buttons-wrapper {
  gap: 10px;
}
@media all and (max-width: 576px) {
  .calculate__side .buttons-wrapper {
    gap: 6px 5px;
  }
}
.calculate__side .buttons-wrapper .button {
  cursor: pointer;
  background-color: #D9D9D9;
  border-radius: 10px;
  padding: 13px;
  text-align: center;
  gap: 12px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  color: #282828;
  font-weight: 600;
  line-height: 100%;
}
.calculate__side .buttons-wrapper .button:not(.active):hover {
  background-color: #FFCC08;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
.calculate__side .buttons-wrapper .button.active {
  background-color: #FFCC08;
}
@media all and (max-width: 576px) {
  .calculate__side .buttons-wrapper .button {
    font-size: 12px;
    min-height: 30px;
    padding: 10px;
  }
}
@media all and (max-width: 576px) {
  .calculate__side .buttons-wrapper .button {
    padding: 7px;
  }
}
.calculate__side .tile-question {
  color: #FFFFFF;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  margin: 0;
  max-width: 307px;
  line-height: 100%;
}
.calculate__side h3 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 100%;
  max-width: 363px;
  color: #FFFFFF;
  font-size: clamp(18px, 2.5vw + 0.5rem, 25px);
}
.calculate__side .tile {
  padding: 40px;
  background-color: #59595A;
  border-radius: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media all and (max-width: 768px) {
  .calculate__side .tile {
    padding: 20px;
  }
}
@media all and (max-width: 375px) {
  .calculate__side .tile {
    padding: 10px;
  }
}
.calculate__side .prices-wrapper {
  padding: 25px 40px;
  background-color: #59595A;
  border-radius: 10px;
}
@media all and (max-width: 768px) {
  .calculate__side .prices-wrapper {
    padding: 20px;
  }
}
@media all and (max-width: 375px) {
  .calculate__side .prices-wrapper {
    padding: 10px;
  }
}
.calculate__side .prices-wrapper .flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.calculate__side .prices-wrapper .price-usual {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  background-color: #D9D9D9;
  padding: 38px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.calculate__side .prices-wrapper .price-usual .title {
  font-size: 14px;
  color: #282828;
  line-height: 100%;
}
@media all and (max-width: 390px) {
  .calculate__side .prices-wrapper .price-usual .title {
    font-size: 9px;
  }
}
.calculate__side .prices-wrapper .price-usual .price-value {
  font-weight: 600;
  font-size: clamp(14px, 1.5vw + 0.3rem, 16px);
}
@media all and (max-width: 390px) {
  .calculate__side .prices-wrapper .price-usual .price-value {
    font-size: 11px;
  }
}
@media all and (max-width: 425px) {
  .calculate__side .prices-wrapper .price-usual {
    padding: 20px 10px;
  }
}
.calculate__side .prices-wrapper .price-month {
  width: 48%;
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  background-color: #FFCC08;
}
@media all and (max-width: 425px) {
  .calculate__side .prices-wrapper .price-month {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.calculate__side .prices-wrapper .price-month .title {
  font-size: 14px;
  line-height: 100%;
  color: #282828;
}
@media all and (max-width: 390px) {
  .calculate__side .prices-wrapper .price-month .title {
    font-size: 9px;
  }
}
.calculate__side .prices-wrapper .price-month .price-value {
  font-weight: 600;
  font-size: clamp(22px, 3.8vw + 0.5rem, 40px);
  line-height: 100%;
}
@media all and (max-width: 425px) {
  .calculate__side .prices-wrapper .price-month .price-value {
    font-size: clamp(16px, 2.2vw + 0.4rem, 22px);
  }
}
@media all and (max-width: 390px) {
  .calculate__side .prices-wrapper .price-month .price-value {
    font-size: 24px;
  }
}
.calculate__side .prices-wrapper .price-discount {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top-right-radius: 10px;
  text-align: center;
  border-bottom-right-radius: 10px;
  background-color: #D9D9D9;
  padding: 38px 20px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.calculate__side .prices-wrapper .price-discount .title {
  font-size: 14px;
  color: #282828;
  line-height: 100%;
}
@media all and (max-width: 390px) {
  .calculate__side .prices-wrapper .price-discount .title {
    font-size: 9px;
  }
}
.calculate__side .prices-wrapper .price-discount .price-value {
  font-weight: 600;
  font-size: clamp(14px, 1.5vw + 0.3rem, 16px);
}
@media all and (max-width: 390px) {
  .calculate__side .prices-wrapper .price-discount .price-value {
    font-size: 11px;
  }
}
@media all and (max-width: 425px) {
  .calculate__side .prices-wrapper .price-discount {
    padding: 20px 10px;
  }
}
.calculate__side .last-button button {
  width: 100%;
  font-weight: 600;
  font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  height: 56px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  line-height: 100%;
}
.calculate__side .last-button button sup {
  line-height: 0;
}
.calculate__side .last-button button {
  background: #FFCC08;
  border-radius: 10px;
  border: 3px #FFCC08 solid;
  font-style: normal;
  font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  color: #282828;
  text-decoration: none;
  min-width: 240px;
  cursor: pointer;
  font-family: var(--font-main), sans-serif;
  outline: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.calculate__side .last-button button:hover {
  background-color: transparent;
}
@media all and (max-width: 375px) {
  .calculate__side .last-button button {
    font-size: 14px;
  }
}
.calculate .cars {
  display: grid;
  gap: 10px;
  margin-top: 3rem;
  margin-bottom: 4rem;
  grid-template-columns: repeat(5, 1fr);
}
@media all and (max-width: 1250px) {
  .calculate .cars {
    grid-template-columns: repeat(5, minmax(60px, 1fr));
  }
}
@media all and (max-width: 768px) {
  .calculate .cars {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media all and (max-width: 480px) {
  .calculate .cars {
    gap: 6px;
  }
}
@media all and (max-width: 375px) {
  .calculate .cars {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
}
.calculate .cars .car {
  cursor: pointer;
  background-color: #D9D9D9;
  border-radius: 10px;
  padding: 13px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.calculate .cars .car:not(.active):hover {
  background-color: #FFCC08;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
.calculate .cars .car.active {
  background-color: #FFCC08;
}
.calculate .cars .car .title {
  color: #282828;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  font-weight: 600;
  line-height: 100%;
}
@media all and (max-width: 576px) {
  .calculate .cars .car .title {
    font-size: 12px;
  }
}
@media all and (max-width: 576px) {
  .calculate .cars .car {
    padding: 8px;
    gap: 0;
    min-height: 53.6px;
  }
}
@media all and (max-width: 375px) {
  .calculate .cars .car {
    padding: 5px 4px;
  }
}
.calculate .cars .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.calculate .cars .icon svg {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.calculate__title {
  margin-top: 0;
  margin-bottom: 3rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 5vw + 1rem, 60px);
  line-height: 1;
  color: #282828;
}
@media all and (max-width: 480px) {
  .calculate__title {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.guarantee {
  margin-top: 7rem;
}
@media all and (max-width: 480px) {
  .guarantee {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.guarantee__title {
  margin-top: 0;
  margin-bottom: 7.4rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(26px, 4vw + 0.5rem, 60px);
  line-height: 1;
  color: #282828;
}
@media all and (max-width: 768px) {
  .guarantee__title {
    margin-bottom: 3rem;
  }
}
@media all and (max-width: 768px) {
  .guarantee__title {
    text-align: center;
    font-size: 30px;
  }
}
.guarantee__content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 7rem 8rem 8rem;
}
@media all and (max-width: 1380px) {
  .guarantee__content {
    padding: 8rem 3rem;
  }
}
@media all and (max-width: 768px) {
  .guarantee__content {
    padding: 8rem 2rem;
  }
}
@media all and (max-width: 480px) {
  .guarantee__content {
    padding: 3rem 2rem;
  }
}
.guarantee__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(146px, 1fr));
  gap: 30px;
}
@media all and (max-width: 1024px) {
  .guarantee__items {
    grid-template-columns: repeat(2, minmax(146px, 1fr));
    gap: 20px;
  }
}
@media all and (max-width: 480px) {
  .guarantee__items {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 30px 20px;
  }
}
.guarantee__items h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw + 0.5rem, 25px);
  line-height: 100%;
  color: #282828;
}
@media all and (max-width: 480px) {
  .guarantee__items h2 {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.guarantee__items p {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  line-height: 100%;
  color: #59595A;
}
@media all and (max-width: 480px) {
  .guarantee__items p {
    text-align: center;
  }
}
.guarantee__items .img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 3rem;
  max-height: 147px;
}
@media all and (max-width: 480px) {
  .guarantee__items .img-wrap {
    margin-bottom: 2.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.guarantee__items .img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: 175px;
}
@media all and (max-width: 768px) {
  .guarantee__items .img-wrap img {
    width: 100%;
  }
}
@media all and (max-width: 480px) {
  .guarantee__items .img-wrap img {
    max-width: 87px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.services {
  min-height: 536px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media all and (max-width: 480px) {
  .services {
    min-height: unset;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.services__content {
  padding-top: 7rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media all and (max-width: 1024px) {
  .services__content {
    padding-top: 3rem;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
  }
}
@media all and (max-width: 480px) {
  .services__content {
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.services__title {
  max-width: 438px;
  font-size: clamp(26px, 4vw + 0.5rem, 60px);
  margin-top: 0;
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  color: #282828;
}
@media all and (max-width: 1024px) {
  .services__title {
    max-width: 100%;
  }
}
@media all and (max-width: 1024px) {
  .services__title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 2rem;
  }
}
.services__subtitle {
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  max-width: 300px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  color: #282828;
  margin-top: 0;
  margin-bottom: 4rem;
}
@media all and (max-width: 1024px) {
  .services__subtitle {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
@media all and (max-width: 480px) {
  .services__subtitle {
    font-size: 14px;
    text-align: center;
    max-width: 300px;
    margin-bottom: 3rem;
  }
}
.services__images-wrapper {
  position: relative;
  width: 49%;
}
@media all and (max-width: 1366px) {
  .services__images-wrapper {
    width: 60%;
  }
}
@media all and (max-width: 1150px) {
  .services__images-wrapper {
    width: 50%;
  }
}
@media all and (max-width: 1024px) {
  .services__images-wrapper {
    width: 45%;
  }
}
@media all and (max-width: 480px) {
  .services__images-wrapper {
    width: 100%;
  }
}
.services__images-wrapper .bus {
  position: absolute;
  left: -25.6rem;
  top: -3.3rem;
  z-index: 0;
}
@media all and (max-width: 1150px) {
  .services__images-wrapper .bus {
    left: -24rem;
    top: -3.3rem;
  }
}
@media all and (max-width: 1024px) {
  .services__images-wrapper .bus {
    left: -40rem;
  }
}
@media all and (max-width: 768px) {
  .services__images-wrapper .bus {
    left: -14rem;
    width: 40rem;
    margin-top: auto;
    bottom: 11rem;
  }
}
@media all and (max-width: 480px) {
  .services__images-wrapper .bus {
    position: relative;
    left: -11.3rem;
    width: 406px;
    margin-top: auto;
    top: 0.8rem;
    bottom: initial;
  }
}
.services__images-wrapper .man {
  position: absolute;
  left: 29.6rem;
  top: -2.8rem;
  z-index: 1;
}
@media all and (max-width: 1150px) {
  .services__images-wrapper .man {
    left: 19rem;
    top: -2.8rem;
    width: 30rem;
    height: auto;
    margin-top: auto;
    bottom: 0;
  }
}
@media all and (max-width: 1024px) {
  .services__images-wrapper .man {
    left: -7rem;
  }
}
@media all and (max-width: 768px) {
  .services__images-wrapper .man {
    left: -2rem;
    width: 18rem;
  }
}
@media all and (max-width: 480px) {
  .services__images-wrapper .man {
    bottom: 0;
    left: initial;
    right: 2.4rem;
    top: initial;
    width: 209px;
  }
}
.services__items {
  gap: 4rem 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (max-width: 1024px) {
  .services__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
@media all and (max-width: 480px) {
  .services__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
  }
}
.services__items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  width: calc(50% - 10rem);
}
@media all and (max-width: 1366px) {
  .services__items .item {
    width: calc(50% - 4rem);
  }
}
@media all and (max-width: 1024px) {
  .services__items .item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media all and (max-width: 480px) {
  .services__items .item {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.services__items .item .icon {
  width: 70px;
  height: 70px;
  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: #FFCC08;
  border-radius: 10px;
  padding: 12px;
}
.services__items .item img {
  height: auto;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.services__items .item .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.services__items .item .text h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  line-height: 100%;
  color: #282828;
}
@media all and (max-width: 480px) {
  .services__items .item .text h4 {
    text-align: center;
    font-size: 18px;
  }
}
.services__items .item .text p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #282828;
  margin: 0;
}
@media all and (max-width: 480px) {
  .services__items .item .text p {
    text-align: center;
  }
}

.clients__content {
  padding-top: 8rem;
  padding-left: 8rem;
  padding-right: 8rem;
  padding-bottom: 6rem;
  background-color: #FFFFFF;
  border-radius: 20px;
}
@media all and (max-width: 1024px) {
  .clients__content {
    padding: 2rem;
  }
}
@media all and (max-width: 480px) {
  .clients__content {
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 4rem 2rem;
  }
}
.clients__title {
  margin-top: 0;
  margin-bottom: 2rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(26px, 4vw + 0.5rem, 60px);
  line-height: 1;
  color: #282828;
}
@media all and (max-width: 768px) {
  .clients__title {
    margin-bottom: 3rem;
  }
}
@media all and (max-width: 480px) {
  .clients__title {
    font-size: 30px;
  }
}
.clients__carousel .item {
  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;
  text-align: center;
}
.clients__carousel .item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding-right: 36px;
}
@media all and (max-width: 1440px) {
  .clients__carousel .item img {
    max-width: 80%;
  }
}
@media all and (max-width: 1440px) {
  .clients__carousel .item img {
    max-width: 60%;
  }
}
@media all and (max-width: 480px) {
  .clients__carousel .item img {
    max-width: 100%;
    padding-right: 0;
    width: 80%;
    margin: 0 auto;
  }
}

.reviews {
  margin-top: 5rem;
  margin-bottom: 8rem;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 1024px) {
  .reviews {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media all and (max-width: 480px) {
  .reviews {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.reviews__slider-controls {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media all and (max-width: 375px) {
  .reviews__slider-controls {
    gap: 5px;
  }
}
.reviews__slider-controls .btn {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(16px, 2.2vw + 0.4rem, 22px);
  line-height: 88%;
  color: #282828;
  padding: 20px;
  min-width: 302px;
  height: 60px;
}
@media all and (max-width: 768px) {
  .reviews__slider-controls .btn {
    min-width: unset;
  }
}
@media all and (max-width: 480px) {
  .reviews__slider-controls .btn {
    height: 37px;
    border-radius: 6px;
    padding: 12px 30px;
    font-size: 14px;
  }
}
.reviews__slider-controls ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}
@media all and (max-width: 480px) {
  .reviews__slider-controls ul {
    gap: 10px;
  }
}
.reviews__slider-controls ul li {
  width: 60px;
  height: 60px;
  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: #D9D9D9;
  cursor: pointer;
  border-radius: 10px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
@media all and (max-width: 480px) {
  .reviews__slider-controls ul li {
    border-radius: 6px;
    width: 37px;
    height: 37px;
  }
}
.reviews__slider-controls ul li:hover {
  background-color: #ffd633;
}
.reviews__slider-controls ul li.prev {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.reviews__slider .item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.reviews__slider .inner-wrap {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  min-height: 219px;
  gap: 10px;
}
@media all and (max-width: 767px) {
  .reviews__slider .inner-wrap {
    min-height: unset;
  }
}
.reviews__slider .inner-wrap .img-wrap {
  width: 38px;
  height: 38px;
  border-radius: 5px;
  overflow: hidden;
  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;
}
.reviews__slider .inner-wrap .img-wrap.placeholder-image {
  padding: 8px;
  background-color: #FFCC08;
}
.reviews__slider .inner-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.reviews__slider .inner-wrap .title {
  font-weight: 600;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  line-height: 100%;
  color: #282828;
  margin: 0;
}
@media all and (max-width: 480px) {
  .reviews__slider .inner-wrap .title {
    font-size: 18px;
  }
}
.reviews__slider .inner-wrap .text {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #59595A;
  margin: 0;
  max-height: 108px;
  min-height: 108px;
  overflow: auto;
}
@media all and (max-width: 767px) {
  .reviews__slider .inner-wrap .text {
    min-height: unset;
    max-height: 300px;
    padding: 1px 0;
  }
}
.reviews__content {
  padding-left: 8rem;
  padding-right: 8rem;
}
@media all and (max-width: 1024px) {
  .reviews__content {
    padding: 0;
  }
}
@media all and (max-width: 480px) {
  .reviews__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.reviews__title {
  margin-top: 0;
  margin-bottom: 2rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(26px, 4vw + 0.5rem, 60px);
  line-height: 1;
  color: #282828;
}
@media all and (max-width: 480px) {
  .reviews__title {
    font-size: 60px;
    margin-bottom: 4rem;
  }
}

.contacts {
  margin-top: 8rem;
  margin-bottom: 8rem;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 1024px) {
  .contacts {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.contacts__content {
  padding-left: 6rem;
  padding-right: 6rem;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
@media all and (max-width: 1024px) {
  .contacts__content {
    padding: 0;
  }
}
@media all and (max-width: 768px) {
  .contacts__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media all and (max-width: 480px) {
  .contacts__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contacts__details {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contacts__details h2 {
  margin-top: 0;
  margin-bottom: 4.8rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(26px, 4vw + 0.5rem, 60px);
  line-height: 1;
  color: #282828;
}
@media all and (max-width: 768px) {
  .contacts__details h2 {
    margin-bottom: 2rem;
  }
}
@media all and (max-width: 480px) {
  .contacts__details h2 {
    font-size: 30px;
  }
}
.contacts__details .phones-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 2.4rem;
}
@media all and (max-width: 768px) {
  .contacts__details .phones-wrapper {
    margin-bottom: 2rem;
  }
}
@media all and (max-width: 480px) {
  .contacts__details .phones-wrapper {
    margin-bottom: 1rem;
    gap: 10px;
  }
}
.contacts__details .phones-wrapper .icon {
  width: 40px;
  height: 40px;
  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;
  border-radius: 10px;
  background-color: #FFCC08;
  margin: auto 0;
}
@media all and (max-width: 480px) {
  .contacts__details .phones-wrapper .icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
  }
  .contacts__details .phones-wrapper .icon svg {
    width: 12px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.contacts__details .phones-wrapper .phones {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contacts__details .phones-wrapper .phones a {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw + 0.5rem, 25px);
  line-height: 110%;
  color: #282828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.contacts__details .phones-wrapper .phones a:hover {
  color: #FFCC08;
}
@media all and (max-width: 991px) {
  .contacts__details .phones-wrapper .phones a {
    font-size: clamp(18px, 1.5vw + 0.5rem, 25px);
  }
}
@media all and (max-width: 480px) {
  .contacts__details .phones-wrapper .phones a {
    font-size: 14px;
  }
}
.contacts__details .btn {
  height: 40px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 2.3rem;
  font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  line-height: 88%;
  color: #282828;
  min-width: 302px;
}
@media all and (max-width: 768px) {
  .contacts__details .btn {
    min-width: unset;
  }
}
@media all and (max-width: 480px) {
  .contacts__details .btn {
    height: 30px;
    padding: 10px 30px;
    font-size: 11px;
    margin-bottom: 1rem;
  }
}
.contacts__details .social-networks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.contacts__details .social-networks a {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contacts__details .social-networks a > * {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
}
.contacts__details .social-networks a:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media all and (max-width: 480px) {
  .contacts__details .social-networks a {
    width: 38px;
    height: 38px;
    display: inline-flex;
  }
}
.contacts__details .email-wrapper {
  margin-bottom: 2.3rem;
}
@media all and (max-width: 768px) {
  .contacts__details .email-wrapper {
    margin-bottom: 2rem;
  }
}
@media all and (max-width: 480px) {
  .contacts__details .email-wrapper {
    margin-bottom: 1rem;
  }
}
.contacts__details .address-wrapper {
  margin-bottom: 3.8rem;
}
@media all and (max-width: 768px) {
  .contacts__details .address-wrapper {
    margin-bottom: 2rem;
  }
}
.contacts__details .email-wrapper, .contacts__details .address-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.contacts__details .email-wrapper .icon, .contacts__details .address-wrapper .icon {
  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;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #FFCC08;
}
@media all and (max-width: 480px) {
  .contacts__details .email-wrapper .icon, .contacts__details .address-wrapper .icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
  }
  .contacts__details .email-wrapper .icon svg, .contacts__details .address-wrapper .icon svg {
    width: 12px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media all and (max-width: 480px) {
  .contacts__details .email-wrapper, .contacts__details .address-wrapper {
    gap: 10px;
  }
}
.contacts__details .email {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw + 0.5rem, 25px);
  line-height: 110%;
  color: #282828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
@media all and (max-width: 991px) {
  .contacts__details .email {
    font-size: clamp(18px, 1.5vw + 0.5rem, 25px);
  }
}
@media all and (max-width: 480px) {
  .contacts__details .email {
    font-size: 14px;
  }
}
.contacts__details .email:hover {
  color: #FFCC08;
}
.contacts__details .address {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw + 0.5rem, 25px);
  line-height: 110%;
  color: #282828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
@media all and (max-width: 991px) {
  .contacts__details .address {
    font-size: clamp(18px, 1.5vw + 0.5rem, 25px);
  }
}
@media all and (max-width: 480px) {
  .contacts__details .address {
    font-size: 14px;
  }
}
.contacts__details .address:hover {
  color: #FFCC08;
}
.contacts__map {
  border-radius: 20px;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .contacts__map {
    min-height: 300px;
  }
}
@media all and (max-width: 480px) {
  .contacts__map {
    min-height: 266px;
  }
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
}

.faq__title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(26px, 4vw + 0.5rem, 60px);
  line-height: 1;
  color: #282828;
}
@media all and (max-width: 768px) {
  .faq__title {
    margin-bottom: 1rem;
  }
}
.faq__content {
  padding-top: 8rem;
  padding-left: 8rem;
  padding-right: 8rem;
  padding-bottom: 8rem;
  background-color: #FFFFFF;
  border-radius: 20px;
}
@media all and (max-width: 1024px) {
  .faq__content {
    padding: 2rem;
  }
}
@media all and (max-width: 480px) {
  .faq__content {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.faq__item {
  border-bottom: 1px solid #ddd;
}
.faq__item.active .faq__answer {
  max-height: 200px;
  opacity: 1;
  padding: 0 0 30px 0;
  display: block;
}
.faq__item.active .faq__icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__item.active .faq__question {
  padding-bottom: 20px;
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  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;
  text-align: left;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw + 0.5rem, 25px);
  line-height: 100%;
  color: #282828;
  gap: 10px;
}
@media all and (max-width: 768px) {
  .faq__question {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media all and (max-width: 480px) {
  .faq__question {
    font-size: 16px;
  }
}
.faq__question:hover {
  color: #FFCC08;
}
.faq__icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media all and (max-width: 768px) {
  .faq__icon {
    width: 20px;
  }
}
.faq__answer {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 2vw + 0.3rem, 18px);
  line-height: 140%;
  color: #282828;
  padding: 0;
}
.faq__answer * {
  margin: 0;
}
.faq__answer.is-open {
  opacity: 1;
  margin-bottom: 30px;
  padding: 0 0 30px 0;
}

body {
  font-family: var(--font-main), sans-serif;
  font-size: 1.8rem;
  background: #F7F7F7;
}
body.lock {
  overflow: hidden;
}
body.lock::before {
  content: "";
  position: fixed;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
}

/* Вимикає фон при натисканні на iPhone / iPad */
a, button, [role=button], input, textarea {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 80px;
}
/*# sourceMappingURL=main.css.map */
