

/* Start:/local/components/tranzit/rent.car/templates/.default/style.css?175459081210315*/
        /* === ОБЩИЙ СТИЛЬ === */
        * {
            box-sizing: border-box;
        }
        .section.rent-car {
    background: #f0f8ff;
    padding: 0px;
       
}

        .page-wrapper {
            max-width: 1200px;
            padding: 20px;
            display: flex;
            gap: 50px;
            background-color: #f0f8ff;
        }
        /* === ЛЕВАЯ КОЛОНКА === */
        .left-col {
            flex: 1;
        }
        .main-title {
            font-size: 48px;
            color: #333;
            margin-bottom: 30px;
            font-weight: bold;
            line-height: 1.2;
            margin-top: 35px;
        }
        .subtitle {
            font-size: 24px;
            color: #555;
            margin-bottom: 35px;
            line-height: 1.5;
        }
        .benefits-list {
            list-style: none;
            margin-bottom: 45px;
            padding: 0;
        }
        .benefit-item {
            font-size: 20px;
            color: #444;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            text-align: left;
            width: 100%;
        }
        .icon-check {
            color: green;
            font-weight: bold;
            width: 26px;
            height: 26px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            font-size: 22px;
            border-radius: 50%;
            background-color: #e6f7e6;
        }
        .highlight-blue {
            color: #0066cc;
            font-weight: bold;
        }
        .btn-primary {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 22px 44px;
            font-size: 22px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: bold;
            margin-top: 70px;
        }
        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background-color: #0056b3;
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            outline: none;
        }
        /* === ПРАВАЯ КОЛОНКА === */
        .right-col {
            flex: 1;
        }
        .car-card {
            background-color: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
            text-align: center;
        }
        .card-title {
            font-size: 26px;
            color: #333;
            margin-bottom: 35px;
            font-weight: bold;
        }
        .tabs-container {
            display: inline-flex;
            gap: 0;
            margin: 0 auto 35px auto;
            border-radius: 24px;
            overflow: hidden;
            background-color: #f8f9fa;
            border: 4px solid #cbd5e1;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        }
        .tabs-container input[type="radio"] {
            display: none;
        }
        .tabs-container label {
            background-color: #e9ecef;
            color: #333;
            padding: 14px 28px;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: block;
            font-weight: 500;
            min-width: 110px;
            border-radius: 0;
        }
        .tabs-container label:first-child {
            border-top-left-radius: 22px;
            border-bottom-left-radius: 22px;
        }
        .tabs-container label:last-child {
            border-top-right-radius: 22px;
            border-bottom-right-radius: 22px;
        }
        .tabs-container label:hover {
            background-color: #d0d8e0;
            color: #111;
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .tabs-container input[type="radio"]:checked + label {
            background-color: #ffc107;
            color: white;
            box-shadow: none;
            transform: none;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }

        /* === КОНТЕЙНЕР ДЛЯ КНОПКИ И ИЗОБРАЖЕНИЯ === */
        .car-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
            width: 100%;
        }

        .car-image {
            width: 65%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background-color: #ffc107;
            color: white;
            border: none;
            padding: 22px 44px;
            font-size: 22px;
            border-radius: 12px;
            cursor: pointer;
            width: 100%;
            transition: all 0.2s ease;
            font-weight: bold;
        }

        .btn-secondary:hover,
        .btn-secondary:focus,
        .btn-secondary:active {
            background-color: #e0a800;
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            outline: none;
        }

        /* === АДАПТИВ === */

        @media (max-width: 3000px) {
            .btn-primary {
                margin-top: 62px;
            }
        }


        @media (max-width: 1135px) {
            .btn-primary {
                margin-top: 49px;
            }
        }

        /*@media (max-width: 1200px) {
            .btn-primary {
                margin-top: 40px;
            }
        }*/

        @media (max-width: 992px) {
            .page-wrapper {
                padding: 30px;
                gap: 40px;
            }
            .main-title {
                font-size: 44px;
            }
            .subtitle {
                font-size: 22px;
            }
            .benefit-item {
                font-size: 18px;
                gap: 12px;
                margin-bottom: 10px;
                display: block;
            }
            .icon-check {
                width: 22px;
                height: 22px;
                font-size: 18px;
            }
            .btn-primary {
                padding: 18px 36px;
                font-size: 18px;
                margin-top: auto;
            }
            .card-title {
                font-size: 22px;
            }
            .tabs-container label {
                padding: 10px 20px;
                font-size: 16px;
            }
            .car-image {
                width: 70%;
            }
            .btn-secondary {
                padding: 18px 36px;
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .page-wrapper {
                flex-direction: column;
                padding: 20px;
                gap: 30px;
            }
            .left-col {
                text-align: center;
            }
            .main-title,
            .subtitle {
                text-align: center;
            }
            .benefits-list {
                max-width: 400px;
                margin: 0 auto 30px;
            }
            .benefit-item {
                font-size: 16px;
                gap: 12px;
            }
            .icon-check {
                width: 20px;
                height: 20px;
                font-size: 16px;
            }
            .btn-primary {
                display: block;
                margin: 0 auto;
                padding: 16px 32px;
                font-size: 16px;
            }
            .car-card {
                padding: 25px;
            }
            .card-title {
                font-size: 20px;
                margin-bottom: 25px;
            }
            .tabs-container {
                margin: 0 auto 25px auto;
            }
            .tabs-container label {
                padding: 10px 18px;
                font-size: 16px;
                min-width: 90px;
            }
            .car-image {
                width: 80%;
            }
            .btn-secondary {
                padding: 16px 32px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .page-wrapper {
                padding: 15px;
            }
            .main-title {
                font-size: 32px;
            }
            .subtitle {
                font-size: 18px;
            }
            .benefit-item {
                font-size: 15px;
                gap: 8px;
            }
            .icon-check {
                width: 18px;
                height: 18px;
                font-size: 14px;
            }
            .btn-primary {
                padding: 14px 28px;
                font-size: 15px;
            }
            .card-title {
                font-size: 18px;
            }
            .tabs-container label {
                padding: 8px 14px;
                font-size: 14px;
                min-width: 80px;
            }
            .car-image {
                width: 90%;
            }
            .btn-secondary {
                padding: 14px 28px;
                font-size: 15px;
            }
        }

        /* === МОБИЛЬНЫЙ: КНОПКА НАД ИЗОБРАЖЕНИЕМ === */
        @media (max-width: 768px) {
            .car-content {
                flex-direction: column-reverse; /* Меняем порядок: кнопка сверху */
            }
        }

/* === МОБИЛЬНАЯ ВЕРСИЯ: уменьшаем отступы в левом блоке === */
@media (max-width: 768px) {
    .main-title {
        margin-bottom: 15px !important; /* было 35px */
        margin-top: auto;
        font-size: 40px;

    }
    .subtitle {
        margin-bottom: 18px !important; /* было 45px */
    }
    .benefits-list {
        margin-bottom: 25px !important; /* было 45px */
    }
    .benefit-item {
        margin-bottom: 10px !important; /* было 20px */
    }
    .btn-primary {
        margin-top: 12px !important; /* было 10px, можно оставить или уменьшить */
    }
}
/* End */


/* Start:/local/components/tranzit/our.cars/templates/.default/style.css?17395225652021*/
.section.our-cars {
  background: #f0f0f0;
}

@media (max-width: 440px) {
  .section.our-cars {
    gap: 16px;
  }
}
.responsive-block {
  width: 1200px; /* Ширина по умолчанию для ПК */
  height: 50px; /* Высота по умолчанию для ПК */
  overflow: hidden; /* Обрезаем лишнее содержимое */
  position: relative; /* Для позиционирования видео */
}

.responsive-block video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Масштабирование видео */
}

/* Скрываем все видео по умолчанию */
.responsive-block video {
  /*display: none;*/
}

/* Видео для ПК */
.video-pc {
  display: block; /* Показываем видео для ПК */
}
.video-tablet {
  display: none; /* Скрываем видео для планшета */
}
.video-mobile {
  display: none; /* Скрываем видео для телефона */
}
/* Видео для планшета */
@media (max-width: 1024px) {
  .responsive-block {
    width: 100%; /* Ширина для планшета */
    height: 40px; /* Высота для планшета */
  }

  .video-pc {
    display: none; /* Скрываем видео для ПК */
  }
  .video-pc {
    display: none; /* Скрываем видео для ПК */
  }

  .video-mobile {
    display: block; /* Показываем видео для планшета */
  }
}

/* Видео для телефона */
@media (max-width: 440px) {
  .responsive-block {
    width: 100%; /* Ширина для телефона */
    height: 20px; /* Высота для телефона */

  }

  .video-tablet {
    display: none; /* Скрываем видео для планшета */
  }
  .video-pc {
    display: none; /* Скрываем видео для ПК */
  }

  .video-mobile {
    display: block; /* Показываем видео для телефона */
  }
}
/* End */


/* Start:/local/templates/taxi/components/bitrix/catalog.section/main/style.css?17545817464180*/
.main__banners-items {
  position: relative;
}

/* Карточка автомобиля */
.car-card {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.car-card__image {
  width: 100%;
  height: 286px;
  overflow: hidden;
}

.car-card__image-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Информация о карточке */
.car-card__info {
  padding: 10px 5px;
  flex: 1;
}

.car-card__title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
}

.car-card__price {
  font-size: 26px;
  color: #00980c;
  font-weight: 400;
}

/* Кнопки */
.car-card__buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 30px;
}

.car-card__button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 700;
}

.car-card__button--details {
  background-color: #7987e6; /* Фиолетовый цвет */
  color: #fff;
}

.car-card__button--details:hover {
  background-color: #f7d904;
}

.car-card__button--rent {
  background-color: #fff;
  color: #000000;
  border: 1px solid #7987e6;
}

.car-card__button--rent:hover {
  background-color: #f7d904;
}

.car-popup {
  /*width: 1200px;
  height: 624px;*/
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.car-popup__slider {
  width: 560px;
  position: relative;
}


.car-slide {
  width: 560px;
  height: 560px;
}

.car-popup__description {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 1024px) {
  .car-popup__slider {
    width: 87vw;
  }

  .car-popup__description {
    width: 80vw;
    flex: unset;
  }

  .fancybox__content {
    padding: 16px;
  }
}


.car-popup-name {
  font-weight: 700;
  font-family: 'TildaSans';
  font-size: 24px;
  line-height: 1.35;
  color: #000000;
  margin-bottom: 18px;
}

.car-popup-price {
  color: #00980c;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
}

.car-popup-buttons {
  margin-bottom: 30px;
  margin-top: 20px;
  display: flex;
}

.car-popup-button {
  color: #ffffff;
  background-color: #7987e6;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 45px;
  font-size: 14px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  font-family: 'TildaSans', Arial, sans-serif;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  font-weight: 700;
}

.description-title {
  color: rgb(242, 15, 15);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.55;
}

.car-popup-description {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
}

.car-thumbs {
  padding-top: 5px;
}

.car-thumbs .swiper-slide {
  width: 60px !important;
  height: 60px;
  background-repeat: no-repeat;
  background-size: cover;
}

.car-thumbs .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swiper--button {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 44%;
  z-index: 11;
  border-radius: 100px;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper--first {
  left: 30px;
  transform: rotate(180deg);
}

.swiper--second {
  right: 30px;
}

.swiper--button svg {
  width: 7px;
}

.swiper-slide-thumb-active {
  border: 2px solid rgba(0,0,0,.15);
}

.swiper--button_first-out {
  left: -60px;
}

.swiper--button_second-out {
  right: -60px;
}

/*адаптив для карточек*/
@media (max-width: 1200px) {
  .swiper--button_first-out {
    left: 0;
  }

  .swiper--button_second-out {
    right: 0;
  }

  .main__banners-items {
    padding: 0 75px;
  }
}

@media (max-width: 440px) {
  .swiper--button_first-out {
    left: 16px;
  }

  .swiper--button_second-out {
    right: 16px;
  }

  .main__banners-items {
    padding: 0;
  }
}

/*
@media (max-width: 480px) {
    .car-card {
        width: 360px;
    }
.swiper--button_second-out {
    right: 15px;
}
.swiper--button_first-out {
    left: 1px;
}
.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translate3d(5px, 0, 0);
}
}*/

/* End */


/* Start:/local/templates/taxi/components/bitrix/news.list/how.to.start/style.css?17383171542467*/
.how-to-start__items {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
  justify-content: center;

  .how-to-start__item {
    padding-top: 35px;
    position: relative;
    margin-bottom: 50px;
    max-width: 360px;
    display: inline;
    float: left;
    margin-left: 20px;
    margin-right: 20px;
    width: 100%;
  }

  .how-to-start__item-circle {
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #222;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .how-to-start__item-circle-number {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    color: #222;
    font-size: 20px;
    line-height: 1.35;
    font-family: 'TildaSans', Arial, sans-serif;
    font-weight: 600;
  }

  .how-to-start__item-content {
    height: 100%;
  }

  .how-to-start__item-content-wrapper {
    border: 1px solid #e0e0e0;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    padding: 53px 30px 40px;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .how-to-start__item-title {
    font-weight: 300;
    font-family: 'TildaSans';
    text-transform: uppercase;
    font-size: 34px;
    padding-top: 20px;
  }

  .how-to-start__item-description {
    font-size: 20px;
    font-weight: 300;
    font-family: 'TildaSans';
    padding: 12px 0 20px 0;
    line-height: 1.55;
  }

  .how-to-start__item-img {
    max-width: 100px;
    width: 100%;
    margin: auto auto 0;
    padding-top: 20px;
  }
}

.how-to-start__actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 440px) and (max-width: 1100px) {
  .how-to-start__items {
    .how-to-start__item {
      max-width: 580px;
    }
  }
}

@media (max-width: 440px) {
  .how-to-start__items {
    .how-to-start__item {
      max-width: unset;
      margin-bottom: 20px;
      margin-left: 0;
      margin-right: 0;
      padding-top: 20px;
    }

    .how-to-start__item-img {
      width: 40px;
    }

    .how-to-start__item-title {
      font-size: 18px;
    }

    .how-to-start__item-description {
      font-size: 16px;
      padding: 12px 0;
    }

    .how-to-start__item-circle {
      width: 40px;
      height: 40px;
    }
  }
}

/* End */


/* Start:/local/components/tranzit/about.us/templates/.default/style.css?1738561209932*/
.section.about-us {
  background: #f0f0f0;

  .section-header__divider {
    background-color: #ffbc57;
    max-width: 100px;
    height: 2px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
  }

  .about-us__content {
    font-size: 20px;
    font-family: 'TildaSans';
    text-overflow: ellipsis;
    line-height: 1.55;
    font-weight: 300;
  }

  .about-us__button {
    padding-left: 70px;
    padding-right: 70px;
    text-align: center;
  }
}
/*адаптив*/

@media (max-width: 820px) {
  main {
    .about-us__content {
      font-size: 3rem;
    }

    .overlay {
      height: 230px;
    }

    .video-container {
      height: 462px;
    }

    .text_video {
      font-size: 20px;

      h1 {
        font-size: 30px;
      }
    }
  }
}

@media (max-width: 440px) {
  main {
    .video-container {
      height: 242px;
    }
  }

  .about-us__actions {
    width: 100%;
  }
}
/* End */


/* Start:/local/components/tranzit/how.we.cool/templates/.default/style.css?1751884390797*/
.how-we-cool__content {
  display: flex;
  gap: 40px;
}

.how-we-cool__block {
  display: flex;
  width: 560px;
  flex-flow: column;
  align-items: center;
  gap: 40px;
}

  .how-we-cool__actions {
    display: none;
  }


@media (max-width: 480px) {
  .how-we-cool__content {
    flex-flow: column;
    max-width: 95%;
  }

  .how-we-cool__block {
    flex-flow: column;
    max-width: 100%;
  }

  .how-we-cool__block:last-child {
    order: -1;
  }

  .how-we-cool__actions {
    order: -1;
    width: 100%;
  }

  .b24-form-click-btn-wrapper button, .b24-form-click-btn-wrapper a {
    font-size: 15px;
  }

  .how-we-cool-slider__img {
    height: auto !important;
  }
}

@media (max-width: 440px) {
  .section.how-we-cool {
    gap: 32px;
  }

  .how-we-cool__content {
    gap: 16px;
  }
}

/* End */


/* Start:/local/templates/taxi/components/bitrix/news.list/how.we.cool.text/style.css?17383162961007*/
.how-we-cool__items {
  display: flex;
  flex-flow: column;
  gap: 40px;
}

.how-we-cool__item {
  display: flex;
  gap: 30px;
}

.how-we-cool__item-content {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.how-we-cool__item-img {
  padding-top: 10px;
}

.how-we-cool__item-img-picture {
  width: 65px;
  height: 65px;
}

.how-we-cool__item-title {
  line-height: 53px;
  color: #000000;
  font-size: 34px;
  font-weight: 300;
}

.how-we-cool__item-description {
  color: #000000;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

@media (max-width: 8200px) {
  .how-we-cool__item-img-picture {
    width: 40px;
    height: 40px;
  }

  .how-we-cool__items {
    gap: 32px;
  }
}

@media (max-width: 440px) {
  .how-we-cool__item {
    gap: 16px;
  }

  .how-we-cool__item-title {
    font-size: 24px;
  }

  .how-we-cool__item-description {
    font-size: 16px;
  }

  .how-we-cool__item-img-picture {
    width: 40px;
    height: 40px;
  }

  .how-we-cool__items {
    gap: 16px;
  }
}
/* End */


/* Start:/local/templates/taxi/components/bitrix/news.list/how.we.cool.slider/style.css?17383161641509*/
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.slider-wrapper {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(232, 232, 232);
  color: white; /* Белый цвет текста */
  border: none;
  padding: 0;
  width: 30px; /* Ширина кнопки */
  height: 30px; /* Высота кнопки */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%; /* Круглая форма */
  transition: background 0.3s ease;
}

.slider-button.prev {
  left: 20px; /* Расположение кнопки "Назад" */
}

.slider-button.next {
  right: 20px; /* Расположение кнопки "Вперёд" */
}

.slider-button:focus {
  outline: none; /* Убираем стандартный фокус */
}

.slider-button::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(135deg);
}

.slider-button.prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.slider-button.next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.how-we-cool-slider__img {
  width: 560px;
  height: auto;
}
/* End */


/* Start:/local/templates/taxi/components/bitrix/news.list/our.office/style.css?17383222901608*/
.section.our-office {
  background: #f0f0f0;

  .section-content {
    margin: 0;
    max-width: unset;
  }

  .swiper {
    width: 100%;
  }

  .swiper-slide {
    width: 60% !important; /* Основная ширина слайда */
    opacity: 0.4;
    transition: all 0.3s;
    filter: brightness(0.7);
  }

  .swiper-slide-active {
    opacity: 1 !important;
    filter: brightness(1);
    width: 60% !important;
    transform: scale(1);
  }

  .swiper--button {
    background: #000;
  }

  .swiper--first {
    left: 16%;
  }

  .swiper--second {
    right: 16%;
  }

  .swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: -30px;
  }

  .slider__image {
    width: 100%;
  }

  @media (max-width: 1200px) {
    .section.our-office {
      .swiper--first {
        left: 14%;
      }

      .swiper--second {
        right: 14%;
      }
    }
  }

  @media (max-width: 820px) {
    .swiper-slide {
      width: 100% !important;
    }

    .swiper--first {
      left: 30px;
    }

    .swiper--second {
      right: 30px;
    }
  }

  @media (max-width: 768px) {
    .swiper-slide {
      width: 100% !important;
      opacity: 1;
      filter: none;
    }
  }

  @media (max-width: 440px) {
    .swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
      bottom: unset;
    }

    .swiper--button {
      display: none;
    }
  }
}

.our-office-swiper {
  position: relative;
}
/* End */


/* Start:/local/components/tranzit/take.new.car/templates/.default/style.css?17520726331018*/
.section.take-new-car {
  .section-header__description {
    /*margin-bottom: 75px;*/
    max-width: 560px;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'TildaSans', Arial, sans-serif;
    font-weight: 300;
    color: #000000;
    text-align: center;
  }

  .take-new-car_phone {
    text-align: center;
    font-size: 32px;
    margin-top: 30px;
  }

  @media (hover: hover), (min-width: 0\0
  ) {
    #rec654730277 .t-submit:hover {
      color: #ffbc57 !important;
      background-color: #000000 !important;
    }

    #rec654730277 .t-submit:focus-visible {
      color: #ffbc57 !important;
      background-color: #000000 !important;
    }
  }

  #rec654730277 .t-submit {
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
  }
}

@media (max-width: 440px) {
  .section.take-new-car {
    gap: 16px;

    .section-header__description {
      margin-bottom: 0;
    }
  }
}
/* End */


/* Start:/local/templates/taxi/components/bitrix/news.list/faq/style.css?17383078693017*/
.faq {
    padding-top: 60px;
    padding-bottom: 30px;
    background-color: #f0f0f0;

    .faq__content {
        width: 100%;
        display: flex;
        align-items: center;
        flex-flow: column;
    }
    .faq__text {
        font-family: TildaSans;
        font-size: 40px;
        font-weight: 300;
        text-transform: uppercase;
        line-height: 1.35;
        color: #000000;
        text-align: center;
    }

    .faq__items {
        display: flex;
        flex-flow: column;
        width: 100%;
        justify-content: center;
        max-width: 760px;

        .faq__item {
            display: flex;
            flex-flow: column;
            align-items: flex-start;
            max-width: 760px;
            width: 100%;

            .faq__item-header {
                width: 100%;
            }

            .faq__item-button {
                width: 100%;
                padding: 27px 10px 27px 10px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                border: none;
            }

            .faq__item-header-text {
                font-family: 'TildaSans';
                font-weight: 400;
                line-height: 1.35;
                color: #000000;
                font-size: 30px;
                text-align: left;
            }

            .faq__item-content {
                overflow: hidden;
                display: flex;
                flex-flow: column;
                font-size: 20px;
                gap: 32px;
                transition: max-height ease-in-out .3s, opacity ease-in-out .3s;
                max-height: 0;
                font-weight: 300;
            }

            .faq__item-icon {
                transform: rotate(0);
                transition: all ease-in-out .3s;
            }

            .faq__item-content-bottom {
                margin-bottom: 40px;
            }
        }

        .accordion-item_opened {
            .faq__item-icon {
                transform: rotate(-45deg);
                transition: all ease-in-out .3s;
            }

            .faq__item-content {
                max-height: 130px;
            }
        }
    }
}

/*адаптив*/
@media (max-width: 820px) {
    .faq {
        .faq__content {
            padding: 0 40px;
            width: 90%;
        }
    }
}

@media (max-width: 440px) {
    .faq {
        & .faq__items {
            & .faq__item {
                .faq__item-content {
                    gap: 0px;
                    padding-left: 10px;
                    font-size: 16px;
                }
            }
        }

        .faq__content {
            padding: 0;
        }
    }

    .faq {
        .faq__text {
            font-size: 30px;
        }
    }

    .faq {
        & .faq__items {
            & .faq__item {
                .faq__item-header-text {
                    font-size: 20px;
                }
            }
        }
    }
}
/* End */


/* Start:/local/components/tranzit/self.employed/templates/.default/style.css?1738307641393*/
@media (max-width: 820px) {
  .section {
    .section-content.self-employed {
      .t-img {
        width: 570px;
        height: 760px;
      }
    }
  }
}

@media (max-width: 440px) {
  .section.self-employed {
    padding: 32px 16px;
    gap: 32px;

    .section-content.self-employed {
      max-width: 400px;

      .t-img {
        width: 100%;
        height: auto;
      }
    }
  }
}
/* End */


/* Start:/local/templates/taxi/components/bitrix/news.list/investments/style.css?1738305150820*/
.section.investments .section-header__description {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 21px;
  font-family: TildaSans;
  font-size: 24px;
  max-width: 560px;
  line-height: 1.55;
  font-weight: 300;
}

.section.investments .section-content.investments {
  display: flex;
  flex-flow: column;
  max-width: 960px;
  gap: 65px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .section.investments .section-content.investments {
    max-width: 740px;
    gap: 40px;
  }
}

@media (max-width: 440px) {
  .section.investments {
    padding: 32px 16px;
    gap: 16px;

    .section-header__description {
      font-size: 18px;
      padding-top: 0;
    }

    .section-content.investments {
      gap: 16px;
    }

    .button__primary {
      padding: 0 32px;
    }
  }
}
/* End */


/* Start:/local/templates/taxi/components/bitrix/news.list/reviews/style.css?17383050801058*/
.section.reviews {
  background: #f0f0f0;
}

.section-content.reviews {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.reviews__item-img, .reviews__item-img-picture {
  width: 120px;
  height: 120px;
}

.reviews__item {
  display: flex;
  flex-flow: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 300px;
}

.reviews__item-title {
  font-family: 'TildaSans', Arial, sans-serif;
  font-weight: 600;
  color: #000000;
  font-size: 42px;
  line-height: 1.35;
  text-align: center;
}

.reviews__item-description {
  font-size: 20px;
  font-family: 'TildaSans';
  line-height: 1.55;
  font-weight: 300;
  text-align: center;
}

.reviews__item-content-wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
}

@media (max-width: 960px) {
  .reviews__item {
    width: 640px;
  }
}

@media (max-width: 440px) {
  .section.reviews {
    padding: 32px 16px;
    gap: 32px;
  }

  .reviews__item-title {
    font-size: 24px;
  }

  .reviews__item-description {
    font-size: 18px;
  }
}
/* End */


/* Start:/local/templates/taxi/components/bitrix/news.list/departments/style.css?17383053633073*/
.section.departments {
    padding-top: 60px;
    padding-bottom: 30px;
    background-color: #f0f0f0;

    .departments__content {
        width: 100%;
        display: flex;
        align-items: center;
        flex-flow: column;
    }
    .departments__text {
        font-family: TildaSans;
        font-size: 46px;
        font-weight: 300;
        text-transform: uppercase;
        line-height: 1.35;
        color: #000000;
    }

    .departments__items {
        display: flex;
        flex-flow: column;
        width: 100%;
        justify-content: center;
        max-width: 760px;

        .departments__item {
            display: flex;
            flex-flow: column;
            align-items: flex-start;
            max-width: 760px;
            width: 100%;

            .departments__item-header {
                width: 100%;
            }

            .departments__item-button {
                width: 100%;
                padding: 27px 50px 27px 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                border: none;
            }

            .departments__item-header-text {
                font-family: 'TildaSans';
                font-weight: 400;
                line-height: 1.35;
                color: #000000;
                font-size: 30px;
            }

            .departments__item-content {
                overflow: hidden;
                display: flex;
                flex-flow: column;
                font-size: 20px;
                gap: 32px;
                transition: max-height ease-in-out .3s, opacity ease-in-out .3s;
                max-height: 0;
                font-weight: 300;
            }

            .departments__item-icon {
                transform: rotate(0);
                transition: all ease-in-out .3s;
            }

            .departments__item-content-bottom {
                margin-bottom: 40px;
            }
        }

        .accordion-item_opened {
            .departments__item-icon {
                transform: rotate(-45deg);
                transition: all ease-in-out .3s;
            }

            .departments__item-content {
                max-height: 350px;
            }
        }
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .departments {
        .departments__items {
            max-width: 700px;
        }
    }
}


@media (max-width: 440px) {
    .section.departments {
        padding: 32px 16px;

        .departments__items {
            .departments__item {
                .departments__item-button {
                    padding: 27px 16px 27px 16px;
                }
                
                .departments__item-header-text {
                    text-align: left;
                    font-size: 24px;
                }
            }
        }

        .departments__text {
            padding: 0 12px;
            text-align: center;
        }

        .departments__item-content {
            gap: 16px;
        }
    }
}
/* End */
/* /local/components/tranzit/rent.car/templates/.default/style.css?175459081210315 */
/* /local/components/tranzit/our.cars/templates/.default/style.css?17395225652021 */
/* /local/templates/taxi/components/bitrix/catalog.section/main/style.css?17545817464180 */
/* /local/templates/taxi/components/bitrix/news.list/how.to.start/style.css?17383171542467 */
/* /local/components/tranzit/about.us/templates/.default/style.css?1738561209932 */
/* /local/components/tranzit/how.we.cool/templates/.default/style.css?1751884390797 */
/* /local/templates/taxi/components/bitrix/news.list/how.we.cool.text/style.css?17383162961007 */
/* /local/templates/taxi/components/bitrix/news.list/how.we.cool.slider/style.css?17383161641509 */
/* /local/templates/taxi/components/bitrix/news.list/our.office/style.css?17383222901608 */
/* /local/components/tranzit/take.new.car/templates/.default/style.css?17520726331018 */
/* /local/templates/taxi/components/bitrix/news.list/faq/style.css?17383078693017 */
/* /local/components/tranzit/self.employed/templates/.default/style.css?1738307641393 */
/* /local/templates/taxi/components/bitrix/news.list/investments/style.css?1738305150820 */
/* /local/templates/taxi/components/bitrix/news.list/reviews/style.css?17383050801058 */
/* /local/templates/taxi/components/bitrix/news.list/departments/style.css?17383053633073 */
