/* Base styles for CarMatch */
@font-face {
  font-family: 'Oceanic Grotesk TRIAL';
  src: url('../fonts/OceanicGroteskTRIAL/OceanicGroteskTRIAL-Light-BF677de6f7e767c.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oceanic Grotesk TRIAL';
  src: url('../fonts/OceanicGroteskTRIAL/OceanicGroteskTRIAL-Regular-BF677de6f80627f.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oceanic Grotesk TRIAL';
  src: url('../fonts/OceanicGroteskTRIAL/OceanicGroteskTRIAL-Medium-BF677de6f7f025e.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oceanic Grotesk TRIAL';
  src: url('../fonts/OceanicGroteskTRIAL/OceanicGroteskTRIAL-Bold-BF677de6f7ce982.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oceanic Grotesk TRIAL';
  src: url('../fonts/OceanicGroteskTRIAL/OceanicGroteskTRIAL-Extrabold-BF677de6f7dd205.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oceanic Grotesk TRIAL';
  src: url('../fonts/OceanicGroteskTRIAL/OceanicGroteskTRIAL-Poster-BF677de6f8024b3.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #8e00ea;
  --text: #ffffff;
  --muted: #f0e6ff;
  --font-family: 'Oceanic Grotesk TRIAL', sans-serif;
}

@keyframes bounceY {

  0%,
  100% {
    transform: translateY(-2px) translateX(-50%);
  }

  50% {
    transform: translateY(6px) translateX(-50%);
    ;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font-family);
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1550px;
  height: 100%;
  position: relative;
}

@media (max-width: 1536px) {
  .container {
    max-width: 1300px;
    padding: 0 20px;
  }
}

@media (max-width: 1399px) {
  .container {
    max-width: 1200px;
    padding: 0 20px;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 992px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 768px;
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.slider-container {
  position: relative;
  height: 100vh;
  width: 100vw;
  background: var(--bg);
}

.section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 2;
}

/* Специальные стили для секции с машинами */
.section.cars {
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  align-items: flex-start;

  /* Скрываем скроллбар */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.section.cars::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}


.section.active {
  opacity: 1;
  pointer-events: auto;
}

.content {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 20px;
}


.main-screen {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.main-screen__logo {
  margin-bottom: 62px;
  margin-bottom: clamp(12px, 5vw, 62px);
}

.main-screen__logo img {
  width: 100%;
  height: auto;
}

.main-screen__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 5vw, 48px);
  line-height: 69%;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
}

.main-screen__next {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  animation: bounceY 2s infinite;
  bottom: 40px;
  position: absolute;
  left: 50%;
}

.main-screen__next img {
  width: 100px;
  height: 100px;
  display: block;
}

@media (max-width: 1199px) {

  .main-screen__next img {
    width: 60px;
    height: 60px;
    ;
  }

  .main-screen__text span {
    display: none;
  }
}

.bg-videos {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 1s ease;
  /* анимируем width и top */
}

.bg-video:nth-child(1) {
  width: 660px;
  height: auto;
}


.bg-video.active {
  opacity: 1;
}

.bg-video.zoom-in {
  transform: translate(-50%, -50%) scale(1.5);
}

.bg-video.zoom-out {
  transform: translate(-50%, -50%) scale(1);
}


.bg-video:nth-child(2) {
  width: auto;
  height: 90vh;
}

.bg-video:nth-child(3) {
  width: auto;
  height: 90vh;
}

.bg-video:nth-child(4) {
  width: 460px;
  height: auto;
  top: 135px;
}


@media (max-width: 1199px) {
  .bg-video:nth-child(1) {
    width: 100%;
    top: 50%;
  }
}

.second-section__logo {
  position: absolute;
  top: 15px;
  left: 20px;
  height: 45px;

}

.second-section__logo img {
  display: block;
  width: auto;
  height: 100%;
}

.animated {
  opacity: 0;
}



.info-column {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 130px;
  height: calc(100vh - 130px);
  justify-content: center;
}

.info-digits {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;

  width: 100%;
}

.info-digits__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  max-width: 265px;
}

.info-digits__item span {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.2px;
}

.info-digits__item p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  max-width: 300px;
}

.info-titles {
  display: flex;
  flex-direction: column;
}

.info-titles span {
  font-size: 124px;
  font-style: normal;
  font-weight: 400;
  line-height: 122px;
  letter-spacing: -6.32px;
  color: #ffffff;
}

.cookies {
  position: fixed;
  right: 48px;
  bottom: 48px;
  width: 100%;
  max-width: 264px;
  padding: 21.79px 11.761px 16.4px 11.886px;
  display: none;
  flex-direction: column;
  gap: 12.21px 0;
  border-radius: 26.412px;
  background: #F8EEFF;
  box-shadow: 0px 0px 13.206px 0px rgba(0, 0, 0, 0.25);
  z-index: 100;
  opacity: 1;
}

.cookies .cookies-info {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
  margin-bottom: 12px;
}

.cookies-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookies .blue_btn {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14.527px;
  background: #9240C6;
  color: #FFF;
  text-align: center;
  font-family: "Oceanic Grotesk TRIAL";
  font-size: 12.823px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.86px;
  letter-spacing: -0.385px;
  text-decoration: none;
}

.cookies .blue_btn.op {
  background: rgba(146, 64, 198, 0.5);
}

.chat {
  height: 100vh;
  padding-top: 85px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1212px;
  gap: 30px;
}

.chat_texts-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 20px;
  min-height: 100%;
}

.chat .chat_input {
  background: #F8EEFF;
  padding: 10px 14px 10px 0;
  border-radius: 60px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 48px;
  overflow: hidden;
  flex: 0 0 auto;
}

.chat .chat_input button {
  background: #F8EEFF;
  border: none;
  outline: none;
  cursor: pointer;
  opacity: 0.3;
  transition: 0.3s all ease;
  height: 100%;
}

.chat .chat_input button.active {
  opacity: 1;
}

.chat .chat_input button svg {
  height: 100%;
  width: 100%;
}

.chat .input_chat {
  font-family: inherit;
  height: 100%;
  border: none;
  outline: none;
  width: 100%;
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100px;
  background-color: #F8EEFF;
  letter-spacing: -1.44px;
}

.chat .chat_texts .chat_item {
  padding: 20px 40px 24px 40px;
  color: #000;
  font-family: "Oceanic Grotesk TRIAL";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.84px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 730px;
  width: max-content;
}

.chat .chat_texts .chat_item.right {
  border-radius: 40px 40px 0px 40px;
  background: #F8EEFF;
  margin-left: auto;
}

.chat .chat_texts .chat_item.left {
  border-radius: 40px 40px 40px 0px;
  background: #F8EEFF;
}

.chat_texts {
  height: calc(100vh - 250px);
  overflow: hidden;
  overflow: auto;
  /* Изменено с hidden на auto */
  -webkit-overflow-scrolling: touch;

  /* Для плавного скролла на iOS */
  /* Скрываем scrollbar для WebKit браузеров (Chrome, Safari, Edge) */
  &::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  /* Скрываем scrollbar для Firefox */
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* IE и Edge */
}

.chat_texts::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, #8E00EA, transparent);
  z-index: 10;
  pointer-events: none;
  /* Чтобы можно было кликать сквозь градиент */
}

.section[data-index="3"] .second-section__logo {
  top: 60px;
  height: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}



.cars .car_swiper {
  margin: auto;
  touch-action: pan-y;
  overflow-y: auto;
  overflow-x: visible;
  padding-top: 200px;
  padding-bottom: 50px;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;

  /* Скрываем скроллбар для всех браузеров */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE и Edge */
}

/* Скрываем скроллбар для webkit браузеров */
.cars .car_swiper::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.cars .car_swiper .swiper-wrapper {
  position: relative;
  z-index: 15;
  touch-action: pan-x;
  justify-content: center;
}

@media (max-width: 767px) {
  .cars .car_swiper .swiper-wrapper {
    overflow: scroll;
    scrollbar-width: none;
    gap: 0 12px;
    align-items: stretch;
  }
}

.cars .car_swiper .swiper-wrapper .swiper-slide {
  /*max-width: 400px;*/
  border-radius: 40px;
  height: auto;
  min-height: 600px;
  touch-action: auto;
  user-select: none;
}

@media (max-width: 767px) {
  .cars .car_swiper .swiper-wrapper .swiper-slide {
    max-width: 260px;
    border-radius: 24px;
  }
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  border-radius: 40px;
  background: #F8EEFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 18px;
  width: 100%;
  height: 100%;
  min-height: 580px;
  text-align: start;
}

@media (max-width: 767px) {
  .cars .car_swiper .swiper-wrapper .swiper-slide .cars_item {
    border-radius: 24px;
    padding: 12px;
    height: 100%;
  }
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_img {
  max-width: 364px;
  max-height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 34px 0;
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 25px;
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  text-align: start;
}

@media (max-width: 767px) {
  .cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts {
    gap: 0;
  }
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts .item_title {
  margin-top: 27px;
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 27.048px;
  /* 112.7% */
  letter-spacing: -0.72px;
}

@media (max-width: 767px) {
  .cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts .item_title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.6px;
    margin-bottom: 8px;
  }
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px 0;
}

@media (max-width: 767px) {
  .cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts ul {
    margin-bottom: 20px;
  }
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts ul li {
  display: flex;
  gap: 0 5px;
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts ul li span {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts ul li span:first-child {
  color: rgba(0, 0, 0, 0.5);
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts ul li span:last-child {
  color: #000;
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_texts .item_description {
  color: rgba(0, 0, 0, 0.7);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 19.6px */
  margin-top: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_buttons {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  width: 100%;
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_buttons .button {
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-align: center;
  font-family: "Oceanic Grotesk TRIAL";
  font-size: 19.419px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.048px;
  /* 139.286% */
  letter-spacing: -0.583px;
  border-radius: 22px;
  background: #FFF;
  transition: 0.3s all ease;
}

@media (max-width: 767px) {
  .cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_buttons .button {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
    height: 48px;
    border-radius: 12px;
  }
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_buttons .button:hover {
  background-color: #9240C6;
  color: #fff;
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_buttons .button.white {
  color: #000;
}

.cars .car_swiper .swiper-wrapper .swiper-slide .cars_item .item_buttons .button.white:hover {
  color: #fff;
}

.cars .car_swiper .swiper_buttons {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: none;
  align-items: center;
  justify-content: space-around;
}

@media (max-width: 1199px) {
  .cars .car_swiper .swiper_buttons {
    gap: 0 500px;
  }
}

@media (max-width: 767px) {
  .cars .car_swiper .swiper_buttons {
    display: none;
  }
}

.cars .car_swiper .swiper_buttons .swiper-button-disabled {
  opacity: 0.4;
}

.cars .car_swiper .swiper_buttons .left_button,
.cars .car_swiper .swiper_buttons .right_button {
  transition: 0.3s all ease;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

.cars .car_swiper .swiper_buttons .left_button {
  transform: rotate(180deg);
}


/*modals*/
.modal {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  padding: 33px 18px 22px 18px;
  border-radius: 40px;
  background: #F8EEFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 400px;
  height: max-content;
  z-index: 100;
  opacity: 0;
  scale: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  z-index: 101;
}

@media (max-width: 767px) {
  .modal {
    max-width: 260px;
    padding: 30px 12px 19px 12px;
    border-radius: 24px;
  }
}

.modal.active {
  opacity: 1;
  scale: 1;
  visibility: visible;
}

.modal.thanks video {
  max-width: 343px;
  max-height: 343px;
  width: 100%;
  height: 100%;
}

.modal.thanks .modal_title {
  text-align: start;
}

.modal.thanks .button_modal {
  border: none;
  outline: none;
  border-radius: 22px;
  background: #9240C6;
  width: 100%;
  height: 63px;
  cursor: pointer;
  margin-top: 18px;
  color: #FFF;
  text-align: center;
  font-family: "Oceanic Grotesk TRIAL";
  font-size: 19.419px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.048px;
  /* 139.286% */
  letter-spacing: -0.583px;
  transition: 0.3s all ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .modal.thanks .button_modal {
    border-radius: 12px;
    height: 48px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
  }
}

.modal .close_btn {
  position: absolute;
  right: -70px;
  top: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
}

@media (max-width: 767px) {
  .modal .close_btn {
    width: 18px;
    height: 18px;
    right: -30px;
  }
}

.modal .close_btn svg {
  height: 100%;
  width: 100%;
}

.modal .modal_title {
  color: #000;
  font-family: Inter;
  font-size: 25.389px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.762px;
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 767px) {
  .modal .modal_title {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.6px;
    margin-bottom: 17px;
  }
}

.modal .modal_inputs {
  display: flex;
  gap: 14px 0;
  flex-direction: column;
}

@media (max-width: 767px) {
  .modal .modal_inputs {
    gap: 7px 0;
  }
}

.modal .modal_inputs input {
  width: 100%;
  height: 63px;
  border-radius: 22px;
  background: #FFF;
  text-align: center;
  color: #000;
  text-align: center;
  font-family: "Oceanic Grotesk TRIAL";
  font-size: 19.419px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.048px;
  /* 139.286% */
  letter-spacing: -0.583px;
  border: none;
  outline: none;
}

@media (max-width: 767px) {
  .modal .modal_inputs input {
    padding-left: 19px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
    text-align: start;
  }
}

.modal .modal_inputs input::placeholder {
  color: #000;
  text-align: center;
  font-family: "Oceanic Grotesk TRIAL";
  font-size: 19.419px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.048px;
  /* 139.286% */
  letter-spacing: -0.583px;
}

@media (max-width: 767px) {
  .modal .modal_inputs input::placeholder {
    color: #50555C;
    font-family: "Oceanic Grotesk TRIAL";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
    text-align: start;
  }
}

.modal .modal_inputs input:focus {
  color: #000;
  text-align: center;
  font-family: "Oceanic Grotesk TRIAL";
  font-size: 19.419px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.048px;
  /* 139.286% */
  letter-spacing: -0.583px;
}

@media (max-width: 767px) {
  .modal .modal_inputs input:focus {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
    text-align: start;
  }
}

.modal .policy {
  display: flex;
  gap: 0 17px;
  margin-top: 18px;
}

.modal .policy .checked {
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
}

.modal .policy .checked.active::after {
  opacity: 1;
  visibility: visible;
}

.modal .policy .checked.active::before {
  opacity: 1;
  visibility: visible;
}

.modal .policy .checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0px;
  height: 100%;
  width: 1px;
  background: #000;
  transform: rotate(45deg);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}

.modal .policy .checked::before {
  content: "";
  position: absolute;
  right: 7px;
  top: 0px;
  height: 100%;
  width: 1px;
  background: #000;
  transform: rotate(-45deg);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}

.modal .policy .link {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
}

@media (max-width: 767px) {
  .modal .policy .link {
    font-size: 14px;
  }
}

.modal .policy .link a {
  text-decoration: underline;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
}

@media (max-width: 767px) {
  .modal .policy .link a {
    font-size: 14px;
  }
}

.modal button {
  border: none;
  outline: none;
  border-radius: 22px;
  background: rgba(146, 64, 198, 0.3);
  width: 100%;
  height: 63px;
  cursor: pointer;
  margin-top: 18px;
  color: #FFF;
  text-align: center;
  font-family: "Oceanic Grotesk TRIAL";
  font-size: 19.419px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.048px;
  /* 139.286% */
  letter-spacing: -0.583px;
  transition: 0.3s all ease;
}

@media (max-width: 767px) {
  .modal button {
    border-radius: 12px;
    height: 48px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
  }
}

.modal button.active {
  background-color: #9240C6;
}


@media (max-width: 767px) {
  .cookies {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 1600px) {
  .main-screen__text {
    line-height: 110%;
  }

  .info-titles span {
    font-size: 94px;
    line-height: 102px;
  }

  .section[data-index="3"] .second-section__logo {
    height: 85px;
    top: 45px;
  }

  .bg-video:nth-child(4) {
    width: 350px;
    top: 105px;
  }

  .cars .car_swiper {
    padding-top: 180px;
  }
}

@media (max-width: 1399px) {
  .info-titles span {
    font-size: 94px;
    line-height: 102px;
  }
}

@media (max-width: 1000px) {
  .chat .chat_texts .chat_item {
    font-size: 22px;
  }
  .chat .input_chat {
    font-size: 32px;
  }
}

@media (max-width: 567px) {
  .info-titles span {
    font-size: 46px;
    line-height: 52px;
    letter-spacing: -2px;
  }

  .second-section__logo {
    position: absolute;
    top: 15px;
    left: 15px;
    height: 35px;
  }

  .section[data-index="3"] .second-section__logo {
    height: 40px;
    top: 10px;
  }

  .cars .car_swiper {
    padding-top: 110px;
  }

  .chat .chat_texts .chat_item {
    max-width: 100%;
    font-size: 14px;
  }

  .chat .input_chat {
    font-size: 14px;
  }

  .chat .chat_input {
    padding-left: 24px;
    height: 60px;
  }

  .chat_texts::before {
    top: 60px;
  }

  .chat_texts {
    height: calc(100vh - 150px);
  }

  .cars .car_swiper .swiper-wrapper .swiper-slide {
    max-width: 100%;
    ;
  }

  .bg-video:nth-child(4) {
    width: 250px;
    top: 80px;
  }
}