@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");

html {
  scroll-behavior: smooth;
}
:root {
  --white: #ffffff;
  --light: #d6cfcd;
  --true-black: #000000;
  --primary-black: #0a0a0c;
  --dark-gray: #1d1d1f;
  --orange: #f33f00;
  --hover-orange: #fd612a;
  --gray: #b4b4b4;

  /* ===== Font Weight ===== */
  --font-extra-light: 200;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;

  --font-main: "Onest", sans-serif;
}
a,
a:hover,
a:target,
input,
input:hover,
input:target,
button,
button:hover,
button:target,
select,
select:hover,
select:target,
textarea,
textarea:hover,
textarea:target {
  outline: none !important;
  font-family: var(--font-main);
}
* {
  box-sizing: border-box;
  font-family: var(--font-main);
}
a,
a:hover,
a:target {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
body {
  position: relative;
  background-color: var(--primary-black);
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--white);
  overflow-x: hidden;
}
body.noscroll {
  overflow: hidden;
}
body.noscroll:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background-color: #0000007d;
  z-index: 98;
}
.container {
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.main {
  position: relative;
  display: block;
  background-image: url(../img/main_bg-2.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
header {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  margin: 0 auto;
  max-width: 80%;
}
.header__logo {
  position: relative;
  display: flex;
  max-width: 200px;
}
.header__logo img {
  max-width: 200px;
}
nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav ul {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  z-index: 1;
}
nav ul li a {
  position: relative;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--white);
  font-weight: var(--font-medium);
  transition: 0.1s;
}
.header__btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.header__lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
}
.login-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 27px;
  background-color: var(--orange);
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--white);
  transition: 0.2s;
  cursor: pointer;
}
.login-btn:hover {
  background-color: var(--hover-orange);
}
.hamb {
  display: none;
}
.glass {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.hello__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0 120px 0;
}
.hello__features {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  overflow: hidden;
  margin-bottom: 35px;
}
.hello__wrapper h1 {
  position: relative;
  display: block;
  text-align: center;
  font-size: 70px;
  font-weight: var(--font-bold);
  margin-bottom: 30px;
}
.hello__wrapper .hello__subtitle {
  position: relative;
  display: block;
  color: var(--light);
  font-size: 18px;
  line-height: 24px;
  padding: 15px 20px;
  border-radius: 20px;
  max-width: 800px;
  text-align: center;
  margin-bottom: 50px;
}
.hello__btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 20px 32px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 16px;
  transition: 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.btn.orange {
  background-color: var(--orange);
  color: var(--white);
}
.btn.orange:hover {
  background-color: var(--hover-orange);
  color: var(--white);
}
.btn.blur {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.18);
  color: var(--white);
}
.btn.blur:hover {
  background-color: var(--hover-orange);
  color: var(--white);
}
.btn.black {
  background-color: var(--primary-black);
  color: var(--white);
}
.btn.black:hover {
  background-color: var(--orange);
  color: var(--white);
}
.hello__features-items {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 15px;
}
.hellow__features-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 20px;
  max-width: 230px;
}
.hellow__features-item p {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}
.p-tb {
  padding: 50px 0;
}
.block-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  margin-bottom: 40px;
}
.block-title h2 {
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 56px;
  font-weight: var(--font-bold);
  max-width: 800px;
}
.block-title h2 span {
  font-weight: var(--font-regular);
}
.block-title p {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: var(--font-medium);
  color: var(--light);
  max-width: 80%;
}
.block-title p span {
  font-weight: var(--font-semi-bold);
}
.block-title p a {
  color: var(--orange);
  text-decoration: underline;
}
.video__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  width: 100%;
}
.main__video {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: row;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 130px 0;
  background-image: url(../img/nikita.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  background-color: #4f4f4f;
}
.video-btn {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle at 30% 30%, #d36220, var(--orange));
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.video-btn:hover {
  transform: scale(1.05);
}
.video-btn__icon {
  width: 0;
  height: 0;
  border-left: 28px solid rgba(255, 255, 255, 0.85);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 6px;
}
.video__offer {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-radius: 20px;
  width: 100%;
}
.video__offer-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video__offer-text h4 {
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 32px;
  font-weight: var(--font-semi-bold);
}
.video__offer-text p {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: var(--light);
  font-weight: var(--font-regular);
}
.steps__wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 30px;
  z-index: 0;
}
.step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  border-radius: 32px;
  height: 100%;
}
.step-item a {
  width: 100%;
}
.step-item__header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.step-item__header h5 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: var(--font-semi-bold);
}
.step-item__header span {
  position: relative;
  display: flex;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 14px;
  line-height: 16px;
  font-weight: var(--font-semi-bold);
}
.step-item img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 15px;
}
.step-item a {
  margin-top: auto;
}
.mySwiper {
  padding-bottom: 50px;
}
.swiper-pagination-bullet {
  background: #cd906b;
}
.swiper-pagination-bullet-active {
  background: var(--orange);
}
.safety__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.safety__exchanges {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}
.safety__exchanges img {
  height: 46px;
  transition: 0.2s;
  transform-origin: center;
  will-change: transform;
}
.safety__exchanges img:hover {
  transform: scale(1.03);
}
.safety__items {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 30px;
  max-width: 80%;
}
.safety__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  padding: 22px 29px;
  border-radius: 20px;
}
.safety__item p {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
  font-weight: var(--font-regular);
}
.features__wrap {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 100%;
  cursor: grab;
}
.features__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 25px;
  border-radius: 20px;
  height: 100%;
}
.features__item h6 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: var(--font-semi-bold);
}
.features__item p {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: var(--light);
  font-weight: var(--font-regular);
  margin-top: auto;
}
.features__icons {
    position: relative;
    display: flex;
    padding: 8px;
    background-color: var(--orange);
    border-radius: 10px;
}
.interview__wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.interview__item {
  position: relative;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  width: 50%;
}
.plans__wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 30px;
  z-index: 0;
}
.plans__item {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--primary-black);
  border-radius: 25px;
  padding: 25px;
  gap: 9px;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid rgb(255 255 255 / 15%) !important;
}
.plans__item .plan-title {
  position: relative;
  display: block;
  font-weight: var(--font-bold);
  font-size: 28px;
  line-height: 32px;
  color: var(--white);
}
.plans__item h3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 8px 8px 17px;
  border: 1px solid #565656;
  border-radius: 50px;
  margin-bottom: 10px;
}
.plans__item__row {
  position: relative;
  border-bottom: 1px solid #ffffff1a;
  padding-bottom: 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 55px;
}
.bestseller {
  position: relative;
  display: block;
  font-weight: var(--font-semi-bold);
  font-size: 15px;
  color: var(--orange);
  background-color: #ff42002e;
  padding: 10px 20px;
  border-radius: 60px;
  top: -2px;
}
.plans__item h6 {
  position: relative;
  display: block;
  font-weight: var(--font-regular);
  font-size: 20px;
  color: #ffffff;
}
.plans__item-1 {
  background-image: url(../img/plan-1.jpg);
}
.plans__item-2 {
  background-image: url(../img/plan-2.jpg);
}
.plans__item-3 {
  background-image: url(../img/plan-3.jpg);
}
.plans__item-4 {
  background-image: url(../img/plan-4.jpg);
}
.plans__item h3 span {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--orange);
  padding: 8px 8px;
  font-size: 14px;
  border-radius: 50px;
  margin-left: 8px;
}
.plans__item .plan-subtitle {
  position: relative;
  display: block;
  font-weight: var(--font-medium);
  background-color: var(--orange);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
}
.plans__item .plan-volume {
  position: relative;
  display: block;
  font-weight: var(--font-medium);
  font-size: 16px;
  line-height: 20px;
  color: var(--orange);
  margin-bottom: 20px;
}
.plans__item .plan-features {
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 15px;
  padding: 0;
  margin-bottom: 20px;
}
.plans__item .plan-features li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  font-weight: var(--font-medium);
  font-size: 16px;
  line-height: 22px;
  color: var(--light);
}
.plans__item .btn {
  margin-top: auto;
  width: 100%;
}
.accardion__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 0 auto;
  width: 80%;
}
.accordion {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
  border-radius: 20px;
  background-color: var(--dark-gray);
}
.accordion:last-child {
  border: none;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  width: 100%;
}
.accordion__header svg {
  transition: 0.5s ease;
  position: relative;
  display: block;
}
.accordion__header svg.active {
  transform: rotate(180deg) translateY(2px);
}
.accordion__question {
  line-height: 23px;
  font-size: 18px;
  font-weight: var(--font-medium);
  flex: 1;
}
.accordion__answer {
  position: relative;
  display: block;
  font-weight: var(--font-regular);
  font-size: 16px;
  line-height: 22px;
  color: var(--light);
  max-width: 100%;
  z-index: 10;
}
.accordion__content {
  overflow: hidden;
  height: 0;
  transition: 0.4s ease-in-out;
}
/* ===== FOOTER STYLES ===== */

.footer {
  position: relative;
  background: linear-gradient(180deg, var(--primary-black) 0%, #0f0f11 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 60px;
  margin-top: 80px;
}

.footer__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Верхняя часть футера */
.footer__top {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* Колонки футера */
.footer__column {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__column--brand {
  gap: 25px;
}

.footer__column--cta {
  gap: 15px;
}

/* Логотип */
.footer__logo {
  position: relative;
  display: inline-flex;
  max-width: 160px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer__logo:hover {
  opacity: 1;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

/* Описание компании */
.footer__description {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

/* Социальные сети */
.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* Заголовки колонок */
.footer__title {
  font-size: 16px;
  font-weight: var(--font-semi-bold);
  color: var(--white);
  margin-bottom: 5px;
}

/* Списки ссылок */
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  position: relative;
}

.footer__link:hover {
  color: var(--orange);
}

/* CTA секция */
.footer__cta-text {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__column--cta .btn {
  margin-top: 5px;
}

/* Нижняя часть футера */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: var(--white);
}

.footer__disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
}

/* ===== АДАПТИВНАЯ ВЕРСИЯ ===== */

/* Планшеты */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

  .footer__column--brand {
    grid-column: 1 / 4;
    max-width: 500px;
  }

  .footer__column--cta {
    grid-column: 1 / 4;
    max-width: 500px;
  }
}

/* Мобильные устройства */
@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
    margin-top: 50px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer__column--brand,
  .footer__column--cta {
    grid-column: 1;
    max-width: 100%;
  }

  .footer__description {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    padding: 25px 0 20px;
    align-items: flex-start;
  }

  .footer__bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }

  .footer__legal {
    flex-direction: column;
    gap: 10px;
  }

  .footer__disclaimer {
    text-align: left;
    max-width: 100%;
  }

  .footer__bottom-right {
    width: 100%;
  }
}

/* Маленькие мобильные устройства */
@media (max-width: 480px) {
  .footer__social-link {
    width: 36px;
    height: 36px;
  }

  .footer__column--cta .btn {
    width: 100%;
    padding: 16px 24px;
  }
}

/* Анимация при появлении (опционально) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer__column {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.footer__column:nth-child(1) {
  animation-delay: 0.1s;
}
.footer__column:nth-child(2) {
  animation-delay: 0.15s;
}
.footer__column:nth-child(3) {
  animation-delay: 0.2s;
}
.footer__column:nth-child(4) {
  animation-delay: 0.25s;
}
.footer__column:nth-child(5) {
  animation-delay: 0.3s;
}
@media (max-width: 1170px) {
  .container {
    padding: 0 15px;
  }
  header {
    padding: 15px 20px;
    width: 100%;
    max-width: 100%;
  }
  .hello__wrapper h1 {
    font-size: 50px;
  }
}
@media (max-width: 991.98px) {
  header {
    position: fixed;
    width: 100%;
    max-width: 100%;
    padding: 15px;
    z-index: 99;
    height: 70px;
    background-color: var(--primary-black);
  }
  .header__logo img {
    max-width: 100px;
  }
  nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    left: 0;
    top: 70px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    padding: 0;
    z-index: 100;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
  }
  nav.open {
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 25px;
  }
  nav ul li a {
    font-size: 31px;
  }
  .hamb {
    position: relative;
    display: flex;
    align-items: center;
    padding: 7px 0;
    z-index: 100;
  }
  .hamb__field {
    cursor: pointer;
  }
  .bar {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 5px;
    margin: 7px auto;
    background-color: var(--white);
    transition: 0.4s;
  }
  .hamb__field.active .bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .hamb__field.active .bar:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
  }
  .btn {
    font-size: 14px;
  }
  .btn.w-100 {
    width: 100%;
  }
  .hello__wrapper {
    padding: 100px 0 50px 0;
  }
  .hello__wrapper h1 {
    font-size: 31px;
    line-height: 36px;
  }
  .hello__wrapper .hello__subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 25px;
  }
  .hello__btn {
    flex-direction: column;
    margin-bottom: 25px;
  }
  .hello__features-items {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    width: 100%;
    padding-bottom: 10px;
  }
  .hellow__features-item {
    align-items: start;
    max-width: 100%;
    scroll-snap-align: start;
    flex: 0 0 209px;
  }
  .p-tb {
    padding: 25px 0;
  }
  .block-title {
    margin-bottom: 25px;
  }
  .block-title h2 {
    font-size: 30px;
    line-height: 33px;
  }
  .block-title p {
    font-size: 16px;
    line-height: 20px;
  }
  .video__offer {
    flex-direction: column;
    gap: 10px;
    padding: 17px 24px;
  }
  .video__offer-text h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .safety__wrapper {
    gap: 30px;
  }
  .safety__exchanges {
    justify-content: center;
    gap: 28px;
  }
  .safety__exchanges img {
    height: 42px;
  }
  .safety__items {
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
  }
  .safety__item {
    flex-direction: row;
    align-items: center;
  }
  .safety__item p {
    font-size: 18px;
    line-height: 23px;
  }
  .interview__wrap {
    flex-direction: column;
  }
  .interview__item {
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
  }
  .accardion__wrap {
    width: 100%;
  }
}
