@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local("Roboto Regular"), local("Roboto-Regular"),
  url("../fonts/roboto-regular.woff2") format("woff2"),
  url("../fonts/roboto-regular.woff") format("woff"),
  url("../fonts/roboto-regular.ttf") format("ttf");
}

@font-face {
  font-family: "Roboto";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"),
  url("../fonts/roboto-medium.woff2") format("woff2"),
  url("../fonts/roboto-medium.woff") format("woff"),
  url("../fonts/roboto-medium.ttf") format("ttf");
}

@font-face {
  font-family: "Roboto";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"),
  url("../fonts/roboto-bold.woff2") format("woff2"),
  url("../fonts/roboto-bold.woff") format("woff"),
  url("../fonts/roboto-bold.ttf") format("ttf");
}

@font-face {
  font-family: "Roboto";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: local("Roboto Black"), local("Roboto-Black"),
  url("../fonts/roboto-black.woff2") format("woff2"),
  url("../fonts/roboto-black.woff") format("woff"),
  url("../fonts/roboto-black.ttf") format("ttf");
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0;
  padding: 0;
}

:active,
:hover,
:focus {
  outline: 0;
  outline-offset: 0;
}

li {
  list-style-type: none;
}

:root {
  /* применение var(--color-blue); */
  /*css - переменные*/
  --white: #ffffff;
  --white-opacity: 0, 0, 0;
  --black: #000000;
  --black-opacity: 255, 255, 255;
  --black-1: #141414;
  --dark-blue: #2C304F;
  --dark-blue-opacity: 44, 48, 79;
  --red: #D72924;
  --blue-light: #56A5DB;
  --blue: #3C548B;
  --blue-1: #2C3777;
  --blue-dark: #293172;
  --blue-dark-opacity: 44, 55, 119;
  --pink: #DF5450;
  --gray-light: #F0F9FF;
  --violet: #313B5D
}

a {
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  color: var(--white);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

svg {
  flex-shrink: 0;
  display: flex;
}

.body {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
}

.main {
  font-family: "Roboto", "Arial", sans-serif;
}

.promo {
  width: 100%;
  height: 700px;
  background-image: url("../images/background-promo.png");
  background-position: center left;
  background-size: cover;
  color: var(--white);
  padding: 30px 0;
}

.container-x {
  padding: 0 100px;
  height: 100%;
}

.promo__container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.promo__link {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo__text {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

.promo__content {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.promo__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo__row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.promo__title {
  font-size: 36px;
  line-height: 42px;
  text-shadow: 3px 2px 4px var(--dark-blue);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.promo__info {
  font-size: 22px;
  text-shadow: 0 4px 4px rgba(var(--white-opacity), 0.25);
  font-weight: 500;
  line-height: 28px;
  max-width: 745px;
}

.button {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  padding: 16px 25px;
  background-color: var(--red);
  border-radius: 7px;
  transition: 0.3s;
  text-align: center;
}

.button:hover {
  background-color: var(--pink);
  transition: 0.3s;
}

.concept {
  background-image: url("../images/background-concept-desktop.png");
  background-position: center right;
  background-size: cover;
}

.container {
  padding: 80px 100px;
}

.info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  max-width: 685px;
}

.title {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  text-transform: uppercase;
}

.title--light-blue {
  color: var(--blue-light);
}

.title--blue {
  color: var(--blue);
}

.title--white {
  color: var(--white);
}

.texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.texts--white {
  color: var(--white);
}

.texts--black {
  color: var(--black-1);
}

.text {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.text--640 {
  max-width: 640px;
}

.text--570 {
  max-width: 570px;
}

.text__link {
  color: var(--blue);
  font-weight: 700;
  transition: 0.3s;
}

.text__link:hover {
  color: var(--blue-dark);
  transition: 0.3s;
}

.directions {
  background-image: url("../images/background-directions-desktop.png");
  background-position: top right;
  background-size: cover;
}

.directions__block {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.directions__parent {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 950px;
}

.subtitle {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  color: var(--blue);
}

.subtitle--center {
  text-align: center;
}

.directions__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.directions__item {
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(98deg, var(--blue) 2.84%, var(--blue-dark) 96.55%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.directions__name {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
}

.directions__icon {
  margin: 0 -90px -40px 0;
  height: auto;
}

.decisions {
  background-color: var(--gray-light);
}

.decisions__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.slider {
  display: grid;
  grid-template-columns: 32% auto;
  align-items: center;
  gap: 110px;
}

.slider__navs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  border-radius: 10px;
  background-color: var(--white);
  border: 1px solid rgba(var(--blue-dark-opacity), 0.1);
  transition: 0.3s;
}

.tns-nav-active .slider__link,
.slider__link:hover {
  border-color: var(--red);
  background-color: var(--red);
  transition: 0.3s;
}

.slider__icon {
  transition: 0.3s;
}

.slider__icon--hover {
  display: none;
}

.tns-nav-active .slider__icon--hover,
.slider__link:hover .slider__icon--hover {
  display: block;
  transition: 0.3s;
}

.tns-nav-active .slider__icon--default,
.slider__link:hover .slider__icon--default {
  display: none;
  transition: 0.3s;
}

.slider__text {
  color: var(--black-1);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  transition: 0.3s;
}

.tns-nav-active .slider__text,
.slider__link:hover .slider__text {
  color: var(--white);
  transition: 0.3s;
}

.slider__container {
  position: relative;
  padding: 0 6% 0 9%;
}

.slider__ipad {
  width: 100%;
}

.slider__relative {
  position: relative;
}

.slider__absolute {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3%;
  right: 4%;
}

.slider__img {
  width: 100%;
  border-radius: 20px;
}

.slider__arrows-link {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 1px solid var(--violet);
  transition: 0.3s;
  display: flex;
  position: absolute;
  top: calc(50% - 23px);
  align-items: center;
  justify-content: center;
}

.slider__arrows-link:hover {
  background-color: var(--violet);
  transition: 0.3s;
}

.slider__arrows-link--left {
  left: 0;
}

.slider__arrow {
  fill: var(--violet);
  transition: 0.3s;
}

.slider__arrows-link:hover .slider__arrow {
  fill: var(--white);
  transition: 0.3s;
}

.slider__arrows-link--right {
  right: 0;
}

.slider__arrows-link--right .slider__arrow {
  transform: rotate(180deg);
}

.decisions {
  position: relative;
}

.decisions__relative {
  position: relative;
  z-index: 2;
}

.decisions__decor {
  position: absolute;
  height: 100%;
  width: auto;
  bottom: 0;
  left: 0;
}

.decisions__container {
  padding: 0 0 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.decisions__news {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.decisions__new {
  display: flex;
  flex-direction: column;
}

.decisions__top {
  padding: 40px 15px 45px;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(var(--blue-dark-opacity), 0.1);
  background-color: var(--white);
}

.decisions__img {
  width: 100%;
  border-radius: 4px;
}

.decisions__bottom {
  border-radius: 8px;
  background-color: var(--blue-1);
  min-height: 105px;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin: -5px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.rent {
  background-image: url("../images/background-rent.png");
  background-position: right top;
  background-size: cover;
}

.rent__block {
  max-width: 1030px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0 0 0 auto;
}

.rent__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.rent__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 15px 22px;
  width: 100%;
  background: linear-gradient(98deg, var(--blue) 2.84%, var(--blue-dark) 96.55%);
  border-radius: 8px;
}

.rent__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rent__number {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: var(--blue-1);
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rent__decor--right {
  transform: rotate(180deg);
}

.rent__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
  margin: auto 0;
}

.rent__info {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
  max-width: 570px;
  margin: 0 0 0 auto;
}

.footer {
  background-image: url("../images/background-footer-desktop.svg");
  background-position: center center;
  background-size: cover;
  margin: -2px 0 0;
}

.footer__block {
  border-radius: 10px;
  border: 1px solid var(--white);
  display: grid;
  grid-template-columns: 66% 34%;
}

.footer__left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  background-color: var(--white);
  border-radius: 10px;
  margin: 0 -5px 0 0;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--black-opacity), 0.2);
  padding: 50px 40px 50px 45px;
  gap: 50px;
}

.footer__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer__subtitle {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
  color: var(--white);
  max-width: 280px;
}

.footer__list {
  width: 315px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.footer__item {
  width: 100%;
}

.footer__link {
  border-radius: 8px;
  background-color: var(--white);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.footer__icon {
  transition: 0.3s;
}

.footer__link:hover .footer__icon {
  transition: 0.3s;
  transform: translateY(-5px);
}

.footer__company {
  width: 100%;
}

.results {
  background-image: url("../images/background-results.svg");
  background-position: bottom center;
  background-size: cover;
  overflow: hidden;
}

.results__block {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.results__left {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.results__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 400px;
}

.results__item {
  display: flex;
  flex-direction: column;
}

.results__text {
  margin: 0 0 0 40px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.results__icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rent__decor {
  flex-grow: 1;
}

.slides__item {
  margin: 40px 0 0;
}

.results .tns-ovh {
  overflow: visible;
}

.slides__item:not(.tns-slide-active) .slides__img {
  filter: blur(2px);
  border-radius: 8px;
  width: 82%;
  margin: auto;
}

.tns-slide-active .slides__img {
  border-radius: 10px;
  box-shadow:
    71px 91px 32px 0 rgba(var(--dark-blue-opacity), 0.00),
    46px 58px 30px 0 rgba(var(--dark-blue-opacity), 0.02),
    26px 33px 25px 0 rgba(var(--dark-blue-opacity), 0.07),
    11px 15px 19px 0 rgba(var(--dark-blue-opacity), 0.12),
    3px 4px 10px  rgba(var(--dark-blue-opacity), 0.14);
}

.show-780 {
  display: none;
}

@media (max-width: 1380px) {
  .slider {
    gap: 80px;
  }

  .decisions__top {
    padding: 35px 15px 40px;
  }

  .footer__right {
    padding: 45px 35px;
  }

  .footer__subtitle {
    font-size: 28px;
    line-height: 34px;
  }

  .footer__list {
    width: 100%;
  }

  .slides__item {
    margin: 35px 0 0;
  }
}

@media (max-width: 1180px) {
  .promo {
    height: 630px;
    padding: 25px 0;
  }

  .container-x {
    padding: 0 80px;
  }

  .container {
    padding: 75px 80px;
  }

  .promo__company {
    width: 168px;
  }

  .promo__row {
    gap: 25px;
  }

  .promo__logo {
    width: 250px;
  }

  .promo__title {
    font-size: 32px;
    line-height: 38px;
  }

  .promo__info {
    font-size: 20px;
    line-height: 24px;
  }

  .title {
    font-size: 32px;
    line-height: 38px;
  }

  .text {
    font-size: 18px;
    line-height: 26px;
  }

  .directions__block {
    gap: 75px;
  }

  .subtitle {
    font-size: 28px;
    line-height: 34px;
  }

  .directions__name {
    font-size: 18px;
    line-height: 24px;
  }

  .directions__icon {
    width: 170px;
    margin: 0 -85px -45px 0;
  }

  .decisions__wrapper {
    gap: 45px;
  }

  .slider {
    gap: 50px;
  }

  .decisions__container {
    padding: 0 0 75px;
  }

  .decisions__news {
    gap: 20px;
  }

  .decisions__top {
    padding: 30px 15px 35px;
  }

  .decisions__bottom {
    padding: 10px 20px;
  }

  .rent__block {
    gap: 45px;
  }

  .rent__list {
    gap: 20px;
  }

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

  .rent__info {
    font-size: 18px;
    line-height: 22px;
  }

  .footer__left {
    padding: 35px 35px 35px 40px;
    gap: 35px;
  }

  .footer__right {
    padding: 40px 30px;
  }

  .footer__subtitle {
    font-size: 26px;
    line-height: 32px;
  }

  .results__left {
    gap: 45px;
  }

  .results__list {
    gap: 20px;
  }

  .slides__item {
    margin: 30px 0 0;
  }
}

@media (max-width: 980px) {
  .promo {
    height: 590px;
  }

  .container-x {
    padding: 0 65px;
  }

  .container {
    padding: 70px 65px;
  }

  .promo__company {
    width: 156px;
  }

  .promo__logo {
    width: 230px;
  }

  .promo__title {
    font-size: 30px;
    line-height: 36px;
  }

  .title {
    font-size: 28px;
    line-height: 32px;
  }

  .directions__block {
    gap: 70px;
  }

  .subtitle {
    font-size: 26px;
    line-height: 30px;
  }

  .directions__icon {
    width: 155px;
    margin: 0 -80px -60px 0;
  }

  .slider {
    gap: 45px;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .decisions__container {
    padding: 0 0 70px;
  }

  .decisions__top {
    padding: 25px 10px 30px;
  }

  .decisions__news {
    grid-template-columns: 1fr;
  }

  .decisions__decor {
    width: 100%;
    height: auto;
  }

  .rent__number {
    font-size: 20px;
    line-height: 20px;
  }

  .rent__list {
    grid-template-columns: 1fr;
  }

  .footer__left {
    padding: 35px 30px 35px 35px;
  }

  .footer__right {
    padding: 40px 25px 35px;
    margin: -5px 0 0;
  }

  .footer__subtitle {
    font-size: 24px;
    line-height: 28px;
  }

  .footer__block {
    grid-template-columns: 1fr;
  }

  .slides__item {
    margin: 25px 0 0;
  }
}

@media (max-width: 780px) {
  .promo {
    height: 550px;
    padding: 20px 0;
  }

  .container-x {
    padding: 0 50px;
  }

  .container {
    padding: 60px 50px;
  }

  .promo__text {
    font-size: 16px;
    line-height: 20px;
  }

  .promo__company {
    width: 144px;
  }

  .promo__content {
    gap: 35px;
  }

  .promo__row {
    gap: 20px;
  }

  .promo__logo {
    width: 215px;
  }

  .promo__title {
    font-size: 26px;
    line-height: 30px;
  }

  .promo__info {
    font-size: 18px;
    line-height: 22px;
  }

  .info {
    gap: 15px;
  }

  .title {
    font-size: 24px;
    line-height: 28px;
  }

  .text {
    font-size: 16px;
    line-height: 22px;
  }

  .directions__block {
    gap: 60px;
  }

  .directions__parent {
    gap: 25px;
  }

  .subtitle {
    font-size: 22px;
    line-height: 26px;
  }

  .directions__list {
    gap: 20px;
  }

  .directions__item {
    padding: 15px;
  }

  .directions__name {
    font-size: 16px;
    line-height: 22px;
  }

  .directions__icon {
    width: 140px;
    margin: 0 -65px -50px 0;
  }

  .directions {
    background-image: url("../images/background-directions-mobile.png");
    background-position: top right;
  }

  .decisions__wrapper {
    gap: 40px;
  }

  .slider {
    gap: 40px;
  }

  .slider__navs {
    gap: 15px;
  }

  .slider__text {
    font-size: 16px;
    line-height: 20px;
  }

  .slider__container {
    padding: 0 7% 0 10%;
  }

  .decisions__container {
    padding: 0 0 60px;
    gap: 25px;
  }

  .decisions__news {
    gap: 15px;
  }

  .decisions__top {
    padding: 20px 10px 35px;
    border-radius: 10px 10px 0 0;
  }

  .decisions__bottom {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 15px;
  }

  .slider__img {
    border-radius: 15px;
  }

  .rent__block {
    gap: 40px;
  }

  .rent__list {
    gap: 15px;
  }

  .rent__item {
    padding: 10px 15px;
  }

  .rent__text {
    font-size: 16px;
    line-height: 20px;
  }

  .rent__number {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 18px;
  }

  .rent__info {
    font-size: 16px;
    line-height: 20px;
  }

  .footer__left {
    padding: 30px 20px 30px 25px;
    gap: 30px;
  }

  .footer__right {
    padding: 35px 20px 30px;
  }

  .footer__wrap {
    gap: 25px;
  }

  .footer__subtitle {
    font-size: 22px;
    line-height: 26px;
  }

  .footer__icon {
    width: 35px;
    height: 35px;
  }

  .results__left {
    gap: 40px;
  }

  .results__list {
    gap: 15px;
  }

  .results__text {
    margin: 0 0 0 35px;
    font-size: 16px;
    line-height: 20px;
  }

  .results__ball {
    width: 25px;
    height: 25px;
  }

  .results__block {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .slides {
    align-items: center;
    scale: 0.9;
    margin: 45px 0 0 -20%;
  }

  .slides__item {
    margin: 0;
  }

  .show-780 {
    display: flex;
  }

  .hide-780 {
    display: none;
  }

  .slides__item:not(.tns-slide-active) .slides__img {
    width: 82%;
  }

  .tns-slide-active .slides__img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .promo {
    height: 510px;
  }

  .container-x {
    padding: 0 35px;
  }

  .container {
    padding: 50px 35px;
  }

  .promo__company {
    width: 132px;
  }

  .promo__logo {
    width: 200px;
  }

  .promo__title {
    font-size: 22px;
    line-height: 26px;
  }

  .promo__info {
    font-size: 16px;
    line-height: 20px;
  }

  .concept {
    background-image: url("../images/background-concept-mobile.png");
    background-position: bottom right;
  }

  .title {
    font-size: 22px;
    line-height: 26px;
  }

  .directions__block {
    gap: 50px;
  }

  .subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .directions__icon {
    width: 125px;
    margin: 0 -65px -25px 0;
  }

  .directions__list {
    grid-template-columns: 1fr;
  }

  .directions__item {
    min-height: 80px;
  }

  .decisions__wrapper {
    gap: 35px;
  }

  .slider {
    gap: 35px;
  }

  .slider__container {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .slider__arrows-block {
    display: flex;
    justify-content: center;
    gap: 20px;
    order: -1;
  }

  .slider__arrows-link {
    position: static;
  }

  .slider__relative {
    position: relative;
    margin: 0 -4% 0 0;
  }

  .decisions__container {
    padding: 0 0 50px;
  }

  .decisions__top {
    padding: 15px 10px 20px;
  }

  .rent__block {
    gap: 35px;
  }

  .rent__number {
    font-size: 16px;
    line-height: 16px;
  }

  .footer {
    background-image: url("../images/background-footer-mobile.svg");
  }

  .footer__left {
    padding: 25px 15px 25px 20px;
    gap: 25px;
  }

  .footer__right {
    padding: 30px 15px 25px;
  }

  .footer__subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .results__left {
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .promo {
    height: 470px;
    padding: 15px 0;
    text-align: center;
  }

  .container-x {
    padding: 0 20px;
  }

  .container {
    padding: 40px 20px;
  }

  .promo__container {
    justify-content: center;
  }

  .promo__link {
    gap: 5px;
    align-items: center;
  }

  .promo__text {
    font-size: 14px;
    line-height: 16px;
  }

  .promo__company {
    width: 120px;
  }

  .promo__content {
    gap: 30px;
    align-items: center;
  }

  .promo__wrap {
    gap: 15px;
  }

  .promo__row {
    gap: 15px;
    flex-direction: column;
  }

  .promo__logo {
    width: 180px;
  }

  .promo__title {
    font-size: 20px;
    line-height: 24px;
    order: -1;
  }

  .promo__info {
    font-size: 14px;
    line-height: 16px;
  }

  .button {
    width: 100%;
    padding: 14px 25px;
    font-size: 16px;
    line-height: 20px;
  }

  .info {
    gap: 10px;
  }

  .title {
    font-size: 20px;
    line-height: 24px;
  }

  .text {
    font-size: 14px;
    line-height: 18px;
  }

  .directions__block {
    gap: 40px;
  }

  .directions__parent {
    gap: 20px;
  }

  .subtitle {
    font-size: 18px;
    line-height: 22px;
  }

  .directions__list {
    gap: 15px;
  }

  .directions__item {
    padding: 10px;
  }

  .directions__name {
    font-size: 14px;
    line-height: 20px;
  }

  .directions__icon {
    width: 105px;
    margin: 0 -50px -30px 0;
  }

  .decisions__wrapper {
    gap: 30px;
  }

  .slider {
    gap: 30px;
  }

  .slider__navs {
    gap: 10px;
  }

  .slider__link {
    padding: 10px;
  }

  .slider__text {
    font-size: 14px;
    line-height: 18px;
  }

  .decisions__container {
    padding: 0 0 40px;
    gap: 20px;
  }

  .decisions__news {
    gap: 10px;
  }

  .decisions__top {
    padding: 10px 5px 15px;
    border-radius: 5px 5px 0 0;
  }

  .decisions__bottom {
    border-radius: 5px;
    font-size: 14px;
    line-height: 18px;
    min-height: auto;
    padding: 5px 10px;
  }

  .slider__img {
    border-radius: 10px;
  }

  .rent__block {
    gap: 30px;
  }

  .rent__list {
    gap: 10px;
  }

  .rent__item {
    padding: 10px;
  }

  .rent__text {
    font-size: 14px;
    line-height: 18px;
  }

  .rent__top {
    gap: 5px;
  }

  .rent__number {
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 14px;
  }

  .rent__info {
    font-size: 14px;
    line-height: 18px;
  }

  .footer__left {
    padding: 20px 10px 20px 15px;
    gap: 20px;
  }

  .footer__right {
    padding: 25px 10px 20px;
    gap: 45px;
  }

  .footer__list {
    width: 255px;
  }

  .footer__wrap {
    gap: 20px;
  }

  .footer__subtitle {
    font-size: 18px;
    line-height: 22px;
    max-width: 170px;
  }

  .footer__link {
    padding: 10px;
    border-radius: 5px;
  }

  .footer__icon {
    width: 30px;
    height: 30px;
  }

  .results__left {
    gap: 30px;
  }

  .results__list {
    gap: 10px;
  }

  .results__text {
    margin: 0 0 0 30px;
    font-size: 14px;
    line-height: 18px;
  }

  .results__ball {
    width: 20px;
    height: 20px;
  }

  .slides__item:not(.tns-slide-active) .slides__img {
    width: 88%;
  }

  .footer .title {
    text-align: center;
    width: 100%;
  }
}
