@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans+SC:ital,wght@0,100..900;1,100..900&family=Commissioner:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Unbounded:wght@200..900&family=WDXL+Lubrifont+SC&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body {
  margin: 0;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

.site-header {
  background-color: var(--color-bg-dark);
  display: flex;
  justify-content: center;
  padding: 0 var(--side-padding);
}

.top-bar {
  width: 100%;
  max-width: var(--max-width);
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  gap: 24px;
  padding: 16px 0 40px;
  color: var(--color-text-light);
  box-sizing: border-box;
}
@media screen and (min-width: 720px) {
  .top-bar {
    display: flex;
  }
}
.top-bar__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: var(--text-base);
  line-height: var(--line-height-base);
}
.top-bar__item a {
  text-decoration: none;
}

.header-nav {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: var(--max-width);
}
@media screen and (max-width: 1111px) {
  .header-nav {
    justify-content: space-between;
    align-items: center;
  }
}
.header-nav__container {
  display: flex;
  justify-content: center;
  padding: 0 var(--side-padding);
  position: absolute;
  width: 100%;
  top: 56px;
  z-index: 1000;
}
@media screen and (max-width: 719px) {
  .header-nav__container {
    top: 16px;
  }
}
.header-nav__container--sticky {
  position: fixed;
  top: 16px;
}
.header-nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 227px;
  height: 72px;
  position: relative;
}
.header-nav__logo img {
  z-index: 2;
}
.header-nav__logo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  transform: skewX(-10deg);
  z-index: 1;
  border-radius: 8px;
}
.header-nav__menu {
  display: flex;
  gap: 16px;
  flex-grow: 1;
  height: 72px;
  align-items: center;
  padding: 8px 12px 8px 24px;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1164px) {
  .header-nav__menu {
    gap: 24px;
    padding: 8px 12px 8px 40px;
  }
}
.header-nav__menu::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(227, 227, 227, 0.75);
  backdrop-filter: blur(16px);
  transform: skewX(-10deg);
  border-radius: 8px;
  z-index: 1;
}
@media screen and (max-width: 1111px) {
  .header-nav__menu {
    display: none;
  }
}
.header-nav__item {
  text-decoration: none;
  font-size: var(--text-base);
  line-height: var(--line-height-base);
  color: var(--color-text-main);
  text-transform: uppercase;
  z-index: 2;
}
.header-nav__item--button {
  padding: 12px 18px;
  position: relative;
  margin-left: auto;
}
.header-nav__item--button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 2px solid var(--color-accent);
  transform: skewX(-10deg);
  z-index: -1;
  border-radius: 4px;
}
.header-nav__item--button:hover::before {
  background-color: var(--color-accent);
}
.header-nav__phone {
  color: var(--color-text-light);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: var(--text-base);
  line-height: var(--line-height-base);
}
@media screen and (max-width: 520px) {
  .header-nav__phone {
    display: none;
  }
}
@media screen and (min-width: 720px) {
  .header-nav__phone {
    display: none;
  }
}
.header-nav__phone a {
  text-decoration: none;
}
.header-nav__burger {
  display: block;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.header-nav__burger::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(227, 227, 227, 0.75);
  backdrop-filter: blur(16px);
  transform: skewX(-10deg);
  border-radius: 8px;
  z-index: 0;
}
@media screen and (min-width: 1112px) {
  .header-nav__burger {
    display: none;
  }
}
.header-nav__burger-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header-nav__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
  border-radius: 2px;
}
.header-nav__burger.active .header-nav__burger-wrapper .header-nav__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  transition: transform 0.3s;
}
.header-nav__burger.active .header-nav__burger-wrapper .header-nav__burger-line:nth-child(2) {
  opacity: 0;
  transition: opacity 0.3s;
}
.header-nav__burger.active .header-nav__burger-wrapper .header-nav__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  transition: transform 0.3s;
}
.header-nav__burger .header-nav__burger-wrapper .header-nav__burger-line {
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav__container {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(56, 62, 0, 0.75);
  backdrop-filter: blur(16px);
  z-index: 10;
  transition: height 0.5s ease, opacity 0.5s ease;
  will-change: height, opacity;
  opacity: 0;
  overflow: hidden;
}
@media screen and (min-width: 1112px) {
  .mobile-nav__container {
    display: none;
  }
}
.mobile-nav__container--active {
  height: 100vh;
  height: 100dvh;
  opacity: 1;
}
.mobile-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 200px 24px;
  padding: 0;
}
.mobile-nav__menu .header-nav__item--button {
  display: none;
}
.mobile-nav__item {
  color: var(--color-text-light);
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--text-xl);
}

.popup-form {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
}
.popup-form__title {
  font-size: var(--display-sm);
  line-height: var(--line-height-display-sm);
  font-weight: 600;
  color: var(--color-bg-alt);
  text-align: center;
  border-bottom: #858585 dashed 1px;
  margin: 0;
  padding: 0px 8px 16px;
}
.popup-form__label {
  font-size: var(--text-base);
  line-height: var(--line-height-text-base);
  font-weight: 600;
  color: var(--color-bg-alt);
}
.popup-form__label .required::after {
  content: "*";
  color: #CC3333;
}
.popup-form__label input {
  padding: 8px;
  width: 100%;
  border: solid 1px #D9D9D9;
  border-radius: 4px;
}
.popup-form__label input ::-webkit-input-placeholder {
  color: #858585;
}
.popup-form__label input :-ms-input-placeholder {
  color: #858585;
}
.popup-form__label input ::placeholder {
  color: #858585;
}
.popup-form__checkbox > span {
  margin: 0;
  display: flex;
}
.popup-form__checkbox input {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.popup-form__checkbox .wpcf7-list-item-label {
  font-size: var(--text-base);
  line-height: var(--line-height-text-base);
  font-weight: 600;
  color: var(--color-bg-alt);
}

.button {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-accent);
  color: var(--color-text-main);
  border-radius: 8px;
  border: none;
}
.button--primary {
  cursor: pointer;
  text-decoration: none;
  border-radius: 8px;
  padding: 16px 24px;
}
.button--small {
  font-size: 1.25rem;
  line-height: 1.5rem;
  padding: 12px 16px;
}
.button--large {
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.hero_section {
  height: 100vh;
  height: 100dvh;
  min-height: 400px;
  padding: 0 var(--side-padding);
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 720px) {
  .hero_section {
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
  }
}
.hero_section__content {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  column-gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: var(--color-text-light);
}
.hero_section__content .wrapper {
  grid-column: 1/span 12;
}
@media screen and (min-width: 768px) {
  .hero_section__content .wrapper {
    grid-column: 1/span 8;
  }
}
@media screen and (min-width: 1198px) {
  .hero_section__content .wrapper {
    grid-column: 1/span 6;
  }
}
.hero_section__title {
  font-size: var(--display-lg);
  line-height: var(--line-height-display-lg);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.hero_section__subtitle {
  font-size: var(--display-sm);
  line-height: var(--line-height-display-sm);
  margin: 0 0 40px;
}
.hero_section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero_section__background picture,
.hero_section__background picture img,
.hero_section__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero_section__background ::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero_section__background::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(61, 61, 61, 0) 0%, #3d3d3d 100%);
  z-index: 1;
}
.hero_section__separator {
  display: block;
  width: 100%;
  height: 120px;
  background-color: #fff;
}
.hero_section__separator-img {
  width: 100%;
  height: 100%;
  background-image: url(../images/separator.svg);
  background-repeat: repeat-x;
}

.site-footer {
  padding: 48px var(--side-padding);
  background-color: var(--color-bg-alt);
}
.site-footer__container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  color: var(--color-text-light);
}
@media screen and (max-width: 768px) {
  .site-footer__container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 48px;
  }
}
.site-footer__container > div {
  padding-right: 16px;
}
.site-footer__text {
  margin: 0;
}

.footer-info {
  grid-column: span 4;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer__logo img {
  max-width: 120px;
  height: auto;
}
.footer-menu:nth-child(2) {
  grid-column: span 5;
}
.footer-menu:nth-child(2) .footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(var(--footer-rows, 1), auto);
  column-gap: 16px;
}
.footer-menu:nth-child(3) {
  grid-column: span 3;
}
.footer-menu:nth-child(3) .footer-links {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.footer-menu__header {
  display: flex;
  margin-bottom: 16px;
  gap: 16px;
}
.footer-menu__title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: var(--line-height-lg);
  letter-spacing: 0.02em;
  margin: 0;
}
.footer-menu .bg-lines {
  flex-grow: 1;
  opacity: 0.2;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
}
.footer-links {
  row-gap: 8px;
}
.footer-link {
  color: var(--color-text-light);
  font-size: var(--text-base);
  line-height: var(--line-height-base);
  text-decoration: none;
}
.footer-link:visited {
  color: var(--color-text-light);
}

.contact-button {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 var(--side-padding);
  margin-top: -72px;
}
.contact-button__wrapper {
  height: 0;
  display: flex;
  justify-content: flex-end;
  padding: 0 var(--side-padding) 24px;
  box-sizing: content-box;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  max-width: var(--max-width);
  width: 100%;
  z-index: 10;
  user-select: none;
}
.contact-button__label {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  height: 64px;
  position: relative;
  transition: width 0.1s, opacity 0.3s;
}
.contact-button__label::before {
  border-radius: 4px;
  background-color: var(--color-accent);
}
.contact-button__text {
  overflow: hidden;
  box-sizing: border-box;
  transition: width 0.2s, opacity 0.3s;
}
.contact-button__text p {
  margin: 0;
  padding: 0 16px;
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.contact-button__toggle {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 4;
}
.contact-button__toggle svg path {
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.contact-button__toggle::before {
  border-radius: 4px;
  background-color: var(--color-accent);
}
.contact-button__toggle--active .bubble__line-1 {
  transform: rotate(45deg) translate(0px, 4px);
}
.contact-button__toggle--active .bubble__line-2 {
  transform: rotate(-45deg) translate(1px, -2px);
}
.contact-button__toggle--active .bubble__cloud {
  transform: scale(1.1);
  opacity: 0;
}
.contact-button__options {
  display: flex;
  gap: 8px;
  padding: 0 16px;
  margin-right: -16px;
  overflow: hidden;
  z-index: 3;
  transition: width 0.3s, margin-right 0.3s;
}
.contact-button__options--collapsed {
  width: 0;
  margin-right: -40px;
}
.contact-button__messenger {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.contact-button__messenger::before {
  border-radius: 4px;
  background-color: var(--messenger-bg-color);
}
.contact-button__icon {
  width: 40px;
  height: 40px;
}
.contact-button .button-collapsed {
  width: 0;
  opacity: 0;
}

.about {
  background-color: #fff;
  padding: 96px var(--side-padding);
  overflow: hidden;
}
.about__content {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.about-list {
  display: flex;
  flex-direction: column;
}
.about__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .about__item {
    flex-direction: row;
    gap: 0;
  }
  .about__item > div {
    width: 50%;
  }
}
.about__item:nth-child(1) {
  flex-direction: column-reverse;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .about__item:nth-child(1) {
    flex-direction: row-reverse;
    align-items: flex-end;
  }
}
.about__item:nth-child(1) .about__image-wrapper {
  justify-content: flex-start;
  align-items: flex-end;
  transform: scale(1.3);
  transform-origin: left bottom;
}
@media screen and (min-width: 768px) {
  .about__item:nth-child(1) .about__image-wrapper {
    transform: scale(1);
  }
}
.about__item:nth-child(1) .about__image-wrapper picture {
  -webkit-mask-image: url("../images/top-image-mask.svg");
  mask-image: url("../images/top-image-mask.svg");
}
.about__item:nth-child(2) .about__image-wrapper {
  justify-content: flex-end;
  align-items: flex-start;
  transform: scale(1.3);
  transform-origin: right top;
}
@media screen and (min-width: 768px) {
  .about__item:nth-child(2) .about__image-wrapper {
    transform: scale(1);
  }
}
.about__item:nth-child(2) .about__image-wrapper picture {
  -webkit-mask-image: url("../images/bottom-image-mask.svg");
  mask-image: url("../images/bottom-image-mask.svg");
}
.about__image {
  position: relative;
}
.about__image-wrapper {
  display: flex;
  width: 50%;
  height: auto;
  flex-shrink: 0;
  overflow: hidden;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (min-width: 768px) {
  .about__image-wrapper {
    height: 279px;
    width: 640px;
  }
}
.about__text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 16px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .about__text-group {
    padding: 32px 32px;
  }
}
.about__title {
  font-size: var(--display-sm);
  line-height: var(--line-height-display-sm);
  text-transform: uppercase;
  margin: 0;
}

.benefit {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  row-gap: 32px;
}
@media screen and (min-width: 860px) {
  .benefit-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.benefit__icon {
  user-select: none;
}
.benefit__title {
  font-size: 1.25rem;
  line-height: 1.5rem;
  text-align: center;
  text-transform: uppercase;
}
.benefit__description {
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
}

.services {
  padding: 96px var(--side-padding);
  background-color: #D9D9D9;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.services__header {
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.services__section-title {
  font-size: var(--display-sm);
  line-height: var(--line-height-display-sm);
  text-transform: uppercase;
  margin: 0;
}
.services__section-subtitle {
  font-size: var(--text-xl);
  line-height: var(--line-height-text-xl);
  margin: 0;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1198px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services__card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 196px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}
.services__card > div {
  width: 100%;
  height: 100%;
  background-image: var(--card-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.services__card > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E8FF01;
  transition: background-color 0.3s;
  z-index: 0;
  mix-blend-mode: multiply;
}
.services__card > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: background-color 0.3s;
  z-index: 2;
}
.services__card:hover > div::before {
  opacity: 0;
}
.services__card:hover > div::after {
  background-color: rgba(0, 0, 0, 0.65);
}
.services__title {
  z-index: 1;
  color: var(--color-text-light);
  font-size: var(--text-xl);
  line-height: var(--line-height-xl);
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  text-decoration: none;
}

.rent {
  background: linear-gradient(to bottom, #313944 0%, #688393 50%, #FFFFFF 100%);
  position: relative;
  padding: 96px var(--side-padding) 48px;
  overflow: hidden;
}
.rent__header {
  display: flex;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto 64px;
  align-items: center;
  gap: 40px;
}
.rent__header .bg-lines {
  mix-blend-mode: screen;
  mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
}
.rent__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .rent__wrapper {
    flex-direction: row;
  }
}
.rent__info {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .rent__info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.rent__title {
  font-size: var(--display-sm);
  line-height: var(--line-height-display-sm);
  text-transform: uppercase;
  color: var(--color-text-light);
  margin: 0;
}
.rent__price {
  font-size: var(--text-xl);
  line-height: var(--line-height-text-xl);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rent__price > span {
  font-size: var(--display-lg);
  line-height: var(--line-height-display-lg);
  font-weight: 800;
}
.rent__currency {
  display: flex;
  flex-direction: column;
}
.rent__plans {
  display: inline-flex;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 4px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.rent__plans input[type=radio] {
  display: none;
}
.rent__plans label {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
  user-select: none;
}
.rent__plans input[type=radio]:checked + label {
  background-color: var(--color-accent);
  color: var(--color-text-main);
}
.rent__offer {
  font-size: var(--text-lg);
  line-height: var(--line-height-text-lg);
  color: var(--color-text-light);
  margin-bottom: 64px;
}

.picture {
  width: 100%;
  display: block;
  position: relative;
  height: var(--carHeight, 211px);
  height: 211px;
}
@media screen and (min-width: 768px) {
  .picture {
    width: 50%;
    align-self: flex-end;
  }
}

.car {
  position: absolute;
  width: 693px;
  height: 211px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  bottom: 2px;
  animation: carMoving 10s ease infinite;
  transform: translateX(-15%);
}
@media screen and (max-width: 768px) {
  .car {
    transform: scale(var(--scaleCar));
    transform-origin: left bottom;
  }
}
.car__vehicle {
  display: block;
  width: 693px;
  height: 211px;
}
.car__wheels {
  width: 494px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 126px;
  left: 112px;
  right: 0;
}
.car__wheel {
  display: block;
  height: 75px;
  width: 75px;
}
.car__wheel img {
  height: 100%;
}
.road {
  width: 110%;
  position: absolute;
  bottom: -4px;
  left: -5%;
  right: -5px;
}
.road__border {
  display: block;
  width: 100%;
  height: 26px;
  background-image: url("../images/road-border.png");
  background-repeat: repeat-x;
  margin-bottom: -8px;
}
.road__grass {
  display: block;
  width: 100%;
  height: 48px;
  background-image: url("../images/blurred-grass.png");
  background-repeat: repeat-x;
  filter: blur(1px);
}

@keyframes carMoving {
  0% {
    left: 0;
  }
  25% {
    left: -20px;
  }
  50% {
    left: 10px;
  }
  75% {
    left: 5px;
  }
  85% {
    left: -12px;
  }
  100% {
    left: 0;
  }
}
.testimonials {
  background-color: #444444;
  padding: 96px var(--side-padding);
  overflow: hidden;
}
.testimonials__header {
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto 48px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--color-text-light);
}
.testimonials__title {
  font-size: var(--display-sm);
  line-height: var(--line-height-display-sm);
  text-transform: uppercase;
  margin: 0;
}
.testimonials__subtitle {
  font-size: var(--text-xl);
  line-height: var(--line-height-text-xl);
  margin: 0;
}
.testimonials .bg-lines {
  opacity: 0.25;
}
.testimonials__slider {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial {
  width: calc((100% - 176px) / 12 * 11 + 160px);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 16px;
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 2;
  filter: blur(8px);
  transition: filter 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) scale(0.85);
  will-change: transform, opacity, filter;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .testimonial {
    width: calc((100% - 176px) / 12 * 8 + 112px);
  }
}
@media screen and (min-width: 1198px) {
  .testimonial {
    width: calc((100% - 176px) / 12 * 5 + 64px);
  }
}
.testimonial__header {
  display: flex;
  gap: 32px;
  align-items: center;
}
.testimonial__client-info {
  display: flex;
  flex-direction: column;
}
.testimonial__client-name {
  font-size: var(--text-xl);
  line-height: var(--line-height-text-xl);
  font-weight: 700;
}
.testimonial__client-status {
  font-size: var(--text-sm);
  line-height: var(--line-height-text-sm);
}
.testimonial__photo {
  display: block;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background-image: var(--client-photo);
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
}
.testimonial__stars {
  display: flex;
  margin-top: 16px;
}
.testimonial__stars > div {
  height: 16px;
  width: 17px;
  background-image: url("../images/star.svg");
}
.testimonial__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.testimonial__text {
  margin: 0;
}
.testimonial--prev, .testimonial--next {
  filter: blur(4px);
}

.testimonial--active {
  filter: blur(0px);
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
}

.testimonial--prev {
  transform: translateX(-125%) scale(0.9);
  opacity: 0.7;
  z-index: 2;
}

.testimonial--next {
  transform: translateX(25%) scale(0.9);
  opacity: 0.7;
  z-index: 2;
}

.slider__track {
  display: flex;
  height: var(--testimonial-track-height);
  position: relative;
  justify-content: center;
  align-items: center;
}
.slider__controls {
  display: flex;
  margin-top: 72px;
}
.slider__button {
  width: 48px;
  height: 48px;
  display: block;
  background-size: cover;
}
.slider__button--prev {
  background-image: url("../images/prev.svg");
}
.slider__button--next {
  background-image: url("../images/next.svg");
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal iframe {
  width: 80%;
  height: 80%;
}

.contacts {
  height: auto;
  padding: 96px var(--side-padding);
  background-color: #171717;
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 896px) {
  .contacts {
    height: 696px;
  }
}
.contacts__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media screen and (min-width: 896px) {
  .contacts__container {
    flex-direction: row;
  }
}
.contacts__info {
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 896px) {
  .contacts__info {
    width: calc((100% - 176px) / 12 * 4 + 48px);
  }
}
.contacts__header {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto 64px;
  gap: 64px;
}
.contacts__title {
  font-size: var(--display-sm);
  line-height: var(--line-height-display-sm);
  text-transform: uppercase;
  margin: 0;
}
.contacts__location {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--text-xl);
  line-height: var(--line-height-text-xl);
  margin-bottom: 32px;
}
.contacts__location a {
  color: var(--color-text-light);
  text-decoration: none;
}
.contacts__phones {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  font-size: var(--text-lg);
  line-height: var(--line-height-text-lg);
}
.contacts__phones-title {
  font-weight: 400;
  margin: 0 0 8px;
}
.contacts__phones a {
  text-decoration: none;
  margin: 0 0 8px;
}
.contacts__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.contacts__social-link {
  display: block;
  height: 32px;
  width: 32px;
  background-image: var(--social-link-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contacts .map {
  flex: 1;
}
.contacts .map__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/map.png");
  background-position: calc(100% + 100px) 0%;
  z-index: 0;
}
@media screen and (min-width: 896px) {
  .contacts .map__image {
    background-position: 100% 0%;
  }
}
.contacts .map__mark {
  display: flex;
  position: absolute;
  z-index: 2;
  right: 122px;
  top: 275px;
}
@media screen and (min-width: 896px) {
  .contacts .map__mark {
    right: 222px;
    top: 275px;
  }
}
.contacts .map__mark-address {
  color: var(--color-text-light);
  font-size: var(--text-xl);
  line-height: var(--line-height-text-xl);
  font-weight: 700;
  margin-right: 16px;
  display: none;
}
@media screen and (min-width: 896px) {
  .contacts .map__mark-address {
    flex-direction: row;
    display: block;
  }
}
.contacts .map__mark-pin {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-accent);
}
.contacts .map__mark-pin::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-accent);
  opacity: 0.75;
  z-index: 2;
  animation: pulse 2.5s ease infinite;
}
.contacts .map__overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: #171717;
}
.contacts .map__overlay::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 300px;
  background-image: linear-gradient(to right, #171717 0%, transparent 100%);
  pointer-events: none;
}
@media screen and (min-width: 896px) {
  .contacts .map__overlay {
    width: var(--gradient-width);
  }
  .contacts .map__overlay::after {
    left: var(--gradient-width);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.service__header {
  display: flex;
  align-items: center;
  height: 576px;
  background-image: var(--header-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 96px var(--side-padding);
}
.service__header::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  background-color: #000;
  opacity: 0.7;
}
.service__header-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  color: var(--color-text-light);
}
.service__title {
  font-size: var(--display-base);
  line-height: var(--line-height-display-base);
  margin-bottom: 40px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service__title {
    width: calc((100% - 176px) / 12 * 8 + 112px);
  }
}
@media screen and (min-width: 1198px) {
  .service__title {
    width: calc((100% - 176px) / 12 * 6 + 80px);
  }
}
.service__content {
  padding: 96px var(--side-padding);
  background-color: #fff;
}
.service__content-wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}
.service__content-wrapper .bg-lines {
  width: var(--service-info-bg-lines-width);
  position: absolute;
  bottom: 0;
  right: 0;
}
.service__content-wrapper .bg-lines__wrapper {
  height: 32px;
  position: relative;
}
.service__content-wrapper .bg-lines__wrapper--bottom {
  position: absolute;
  width: 100%;
  height: 32px;
  bottom: -48px;
  z-index: 0;
}
.service__content-wrapper .bg-lines__wrapper--bottom .bg-lines {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service__content-wrapper {
    flex-direction: row;
    gap: calc((100% - 176px) / 12 * 1 + 32px);
  }
  .service__content-wrapper > div {
    width: calc((100% - 176px) / 12 * 5 + 64px);
    flex-shrink: 0;
  }
}
.service__info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.service__info .bg-lines {
  width: var(--service-info-bg-lines-width);
}
.service__description p:first-child {
  margin-top: 0;
}
.service__secondary-image {
  width: calc(100% + 40px);
  height: 100%;
  margin-left: -40px;
  position: relative;
  transform: skewX(-10deg);
  transform-origin: top right;
  overflow: hidden;
  border-top-right-radius: 8px;
  opacity: 0.2;
  z-index: 3;
}
.service__secondary-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  display: block;
  background: var(--secondary-image) no-repeat center/cover;
  transform: skewX(10deg);
  transform-origin: top right;
  /* Use alpha-based gradient so the mask actually fades from transparent -> opaque */
  -webkit-mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0) 50px, rgb(0, 0, 0) 240px, rgb(0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left top;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0) 50px, rgb(0, 0, 0) 240px, rgb(0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: left top;
  mask-size: 100% 100%;
}
.service__secondary-image-wrapper {
  display: none;
  position: relative;
  height: 344px;
  margin: auto 0 -96px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .service__secondary-image-wrapper {
    display: block;
  }
}
.service__secondary-image-wrapper svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(var(--service-info-bg-lines-width) + 40px);
  height: 100%;
  z-index: 0;
  transform: skewX(-10deg);
  transform-origin: top right;
  border-top-right-radius: 8px;
}
.service__secondary-image-wrapper svg rect {
  fill: #383E00;
  transform: skewX(10deg);
  transform-origin: top right;
}
.service__secondary-image-wrapper--mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .service__secondary-image-wrapper--mobile {
    display: none;
  }
}
.service__prices {
  flex-grow: 1;
}

.prices-table {
  flex-grow: 1;
  width: 100%;
  border-collapse: collapse;
}
.prices-table tbody tr {
  border-bottom: 1px solid #141414;
}
.prices-table tbody tr:last-child {
  border-bottom: none;
}
.prices-table__title {
  font-size: var(--text-xl);
  line-height: var(--line-height-text-xl);
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
}
.prices-table__name {
  width: auto;
  padding: 16px 16px 16px 0;
}
.prices-table__value {
  text-align: center;
  vertical-align: top;
  width: auto;
  white-space: nowrap;
  padding: 16px 0;
}

.promo__header {
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, #141414 0%, #313944 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 120px var(--side-padding) 48px;
}
@media screen and (min-width: 768px) {
  .promo__header {
    max-height: 504px;
  }
}
.promo__header-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  color: var(--color-text-light);
}
.promo__title {
  font-size: var(--display-base);
  line-height: var(--line-height-display-base);
  margin-bottom: 40px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .promo__title {
    width: calc((100% - 176px) / 12 * 8 + 112px);
  }
}
@media screen and (min-width: 1198px) {
  .promo__title {
    width: calc((100% - 176px) / 12 * 6 + 80px);
  }
}
.promo__info-title {
  font-size: var(--text-xl);
  line-height: var(--line-height-text-xl);
  margin: 0;
}
.promo__due {
  font-size: var(--text-xl);
  line-height: var(--line-height-text-xl);
}
.promo__content {
  padding: 96px var(--side-padding);
  background-color: #fff;
}
.promo__content-wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}
.promo__content-wrapper .bg-lines {
  width: var(--service-info-bg-lines-width);
  position: absolute;
  bottom: 0;
  right: 0;
}
.promo__content-wrapper .bg-lines__wrapper {
  height: 32px;
  position: relative;
}
.promo__content-wrapper .bg-lines__wrapper--bottom {
  position: absolute;
  width: 100%;
  height: 32px;
  bottom: -48px;
  z-index: 0;
}
.promo__content-wrapper .bg-lines__wrapper--bottom .bg-lines {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .promo__content-wrapper {
    flex-direction: row;
    gap: calc((100% - 176px) / 12 * 1 + 32px);
  }
  .promo__content-wrapper > div {
    width: calc((100% - 176px) / 12 * 5 + 64px);
    flex-shrink: 0;
  }
}
.promo__image img {
  border-radius: 8px;
}

.promo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .promo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1198px) {
  .promo__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.promo__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 20px;
  height: 196px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}
.promo__card > div {
  width: 100%;
  height: 100%;
  background-image: var(--card-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.promo__card > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E8FF01;
  transition: background-color 0.3s;
  z-index: 0;
  mix-blend-mode: multiply;
}
.promo__card > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: background-color 0.3s;
  z-index: 2;
}
.promo__card:hover > div::before {
  opacity: 0;
}
.promo__card:hover > div::after {
  background-color: rgba(0, 0, 0, 0.65);
}
.promo__card-due {
  z-index: 1;
  color: var(--color-text-light);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  font-size: var(--text-sm);
  line-height: var(--line-height-text-sm);
  padding: 4px 10px;
}
.promo__card-due--finished {
  background-color: rgba(128, 128, 128, 0.2);
}
.promo__card-due--active {
  background-color: rgba(232, 255, 1, 0.4);
}
.promo__card-title {
  z-index: 1;
  color: var(--color-text-light);
  font-size: var(--text-xl);
  line-height: var(--line-height-xl);
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  text-decoration: none;
}

.page-content {
  background-color: #fff;
  padding: 120px var(--side-padding) 48px;
}
.page-content-wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

:root {
  --max-width: 1198px;
  --desktop-breakpoint: 1198px;
  --tablet-breakpoint: 768px;
  --mobile-breakpoint: 480px;
  --side-padding: 16px;
}
@media screen and (min-width: 786px) {
  :root {
    --side-padding: 32px;
  }
}

:root {
  /* Main backgrounds */
  --color-bg-dark: #3D3D3D;
  /* Main dark background */
  --color-bg-alt: #313944;
  /* Second dark background */
  /* Accents */
  --color-accent: #E8FF01;
  /* buttons, logo, markers */
  /* Texts */
  --color-text-main: #141414;
  /* main text */
  --color-text-light: #ffffff;
  /* text on dark background */
  --text-xs: 0.75rem;
  --line-height-text-xs: 1rem;
  --text-sm: 0.875rem;
  --line-height-text-sm: 1rem;
  --text-base: 1rem;
  --line-height-text-base: 1.5rem;
  --text-lg: 1.25rem;
  --line-height-text-lg: 1.5rem;
  --text-xl: 1.5rem;
  --line-height-text-xl: 2rem;
  --display-sm: 1.75rem;
  --line-height-display-sm: 2rem;
  --display-base: 2rem;
  --line-height-display-base: 2.5rem;
  --display-lg: 2.5rem;
  --line-height-display-lg: 3rem;
}
@media screen and (min-width: 786px) {
  :root {
    --display-sm: 2.5rem;
    --line-height-display-sm: 3rem;
    --display-base: 3rem;
    --line-height-display-base: 3.5rem;
    --display-lg: 3.5rem;
    --line-height-display-lg: 4rem;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text-main);
  background-color: var(--color-bg-dark);
}

.bg-lines {
  height: 32px;
  flex-grow: 1;
  background-image: url("../images/lines.svg");
  background-repeat: repeat-x;
  background-size: auto;
  background-position: top left;
  pointer-events: none;
  z-index: 0;
}
.bg-lines--fade {
  mix-blend-mode: screen;
  mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
}
.bg-lines--dark {
  mix-blend-mode: normal;
}

.skewed-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: skewX(-10deg);
  z-index: -1;
}

.line-separator {
  display: block;
  height: 1px;
  width: 100%;
  background-color: #B8B8B8;
}

.breadcrumbs {
  gap: 8px;
  align-items: center;
  margin-bottom: 96px;
  display: none;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    display: flex;
  }
}
.breadcrumbs__arrow {
  width: 6px;
  height: 12px;
  background-image: url("../images/separator-arrow.svg");
  background-size: cover;
}
.breadcrumbs a {
  text-decoration: none;
}

::selection {
  background-color: rgba(232, 255, 1, 0.3137254902);
  color: var(--color-text-dark);
}

::-moz-selection {
  background-color: rgba(232, 255, 1, 0.3137254902);
  color: var(--color-text-dark);
}

/*# sourceMappingURL=styles.css.map */
