@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
Убираем внутренние отступы слева тегам списков,
у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
Убираем внешние отступы body и двум другим тегам,
у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
Убираем внешние отступы вертикали нужным тегам,
у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
Убираем стандартный маркер маркированному списку,
у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
Обнуляем вертикальные внешние отступы параграфа,
объявляем локальную переменную для внешнего отступа вниз,
чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
Внешний отступ вниз для параграфа без атрибута class,
который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
Приводим к единому цвету svg-элементы
(за исключением тех, у которых уже указан
атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
Приводим к единому цвету svg-элементы
(за исключением тех, у которых уже указан
атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
Удаляем все анимации и переходы для людей,
которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
button {
  border: none;
  background-color: transparent;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lexend Zetta";
  src: url("../fonts/LexendZetta-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: "Open Sans", sans-serif;
  --second-family: "Lexend Zetta", sans-serif;
  --max-width-figma: 90rem;
  --container-width: 73.125rem;
  --container-padding-x: 0.9375rem;
  --main-colo-text: #333333;
  --orande-button-color: #F07C52;
  --green-button-color: #52AA7F;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

h1.h1 {
  font-family: var(--second-family);
  font-size: clamp(2rem, 1.375rem + 2.7777777778vw, 3.875rem);
  line-height: 1.11;
  letter-spacing: -0.5rem;
  color: #fff;
}

.subtitle {
  font-family: var(--font-family);
  line-height: 2;
  font-size: clamp(0.8125rem, 0.75rem + 0.2777777778vw, 1rem);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.5);
}
.subtitle--white {
  color: #fff;
}
.subtitle:not(:last-child) {
  margin-bottom: clamp(0.5rem, -0.0208333333rem + 2.3148148148vw, 2.0625rem);
}

.h3 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(2rem, 1.5rem + 2.2222222222vw, 3.5rem);
  line-height: 1.14;
  letter-spacing: -0.21em;
  text-align: center;
  color: #333;
}

@media (width <= 30.06125rem) {
  .hidden-mobile--s {
    display: none !important;
  }
}

@media (width > 30.06125rem) {
  .visible-mobile--s {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

.dialog__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dialog__list .dialog__link {
  padding: 5px;
  font-size: 2rem;
}

.modal__inner {
  padding: 20px;
}

.close {
  background-color: #dbaaaa;
  border-radius: 10px;
  color: white;
  font-size: 2rem;
}

.section__header {
  margin-bottom: 4.1875rem;
  display: grid;
}

html {
  min-height: 100%;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  letter-spacing: -0.03em;
  color: var(--color-gray-50);
  background-color: var(--color-dark);
}

main {
  flex-grow: 1;
}

#burger {
  width: 45px;
  height: 45px;
}

dialog {
  display: block;
  border-radius: 25px;
  text-align: center;
  transform: scale(0.2);
  opacity: 0;
  transition: all 0.5s linear;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

dialog[open] {
  transform: scale(1);
  opacity: 1;
  width: 78vw;
  height: 70dvh;
  visibility: visible;
  background: var(--orande-button-color);
  color: #fff;
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
}

dialog::backdrop {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

body.scroll-block {
  overflow: hidden;
}

.btn {
  color: #fff;
  letter-spacing: -0.1125rem;
  font-family: var(--second-family);
  font-size: 1rem;
  padding: 0.875rem 1.3125rem;
  border: 1px solid #fff;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
@media (any-hover: hover) {
  .btn:hover {
    scale: 1.2;
  }
}
@media (any-hover: none) {
  .btn:active {
    scale: 1.2;
  }
}
.btn--green {
  background: #52aa7f;
  border: none;
}
.btn--orange {
  background: var(--orande-button-color);
}
@media (width <= 63.99875rem) {
  .btn {
    padding: 0.625rem 1rem;
  }
}
@media (width <= 47.99875rem) {
  .btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}
@media (width <= 30.06125rem) {
  .btn {
    padding: 0.625rem 0.75rem;
  }
}

.menu__list {
  display: flex;
  align-items: center;
  gap: 2.0625rem;
}
@media (width <= 47.99875rem) {
  .menu__list {
    gap: 0.9375rem;
  }
}
.menu__link {
  font-weight: 400;
  font-size: 1rem;
  font-family: var(--font-family);
  transition: all 0.2s linear;
}
@media (any-hover: hover) {
  .menu__link:hover {
    padding: 0.375rem;
    translate: 0 -0.3125rem;
    color: var(--orande-button-color);
    box-shadow: 2px 2px 10px var(--orande-button-color);
  }
}
@media (any-hover: none) {
  .menu__link:active {
    padding: 0.375rem;
    translate: 0 -0.3125rem;
    color: var(--orande-button-color);
    box-shadow: 2px 2px 10px var(--orande-button-color);
  }
}
@media (width <= 47.99875rem) {
  .menu__link {
    font-size: 0.875rem;
  }
}

.header {
  background-color: #6347f9;
  position: fixed;
  z-index: 2;
  width: 100%;
  margin-inline: auto;
  color: #fff;
  padding-block: 0.9375rem;
}
.header__container {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  justify-content: space-between;
}
@media (width <= 47.99875rem) {
  .header__container {
    gap: 1.25rem;
  }
}
.header__logo {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.4375rem;
}
@media (width <= 47.99875rem) {
  .header__logo {
    font-size: 1.5rem;
  }
}
@media (width <= 30.06125rem) {
  .header__logo {
    font-size: 1.375rem;
  }
}
.header__menu {
  margin-left: auto;
}
.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.swiper {
  padding-bottom: clamp(1.875rem, 0.5208333333rem + 6.0185185185vw, 5.9375rem);
}

.swiper-wrapper {
  padding-inline: clamp(0.625rem, 0.5208333333rem + 0.462962963vw, 0.9375rem);
}

.testomotials__wrapper {
  position: relative;
  padding-bottom: 20px;
}

.swiper-pagination-my {
  position: absolute;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 2px solid var(--orande-button-color);
}
@media (width <= 47.99875rem) {
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-bullet-active {
  background: var(--orande-button-color);
}

.choose {
  position: relative;
  min-height: 690px;
  text-align: center;
  background: #6347f9;
  padding-block: 10.625rem;
}
@media (width <= 78.18625rem) {
  .choose {
    padding-top: 8.75rem;
  }
}
@media (width <= 63.99875rem) {
  .choose {
    min-height: 590px;
    padding-top: 5rem;
  }
}
@media (width <= 47.99875rem) {
  .choose {
    min-height: 450px;
    padding-top: 3.125rem;
  }
}
@media (width <= 30.06125rem) {
  .choose {
    min-height: 450px;
  }
}
.choose__ {
  margin-bottom: 1.25rem;
}
.choose__title {
  max-width: 59.375rem;
  margin-inline: auto;
  margin-bottom: 80px;
}
.choose__images {
  position: absolute;
  width: 100%;
  bottom: -42%;
  background: transparent;
  margin-block: auto;
}
@media (width <= 47.99875rem) {
  .choose__images {
    bottom: -40%;
  }
}
.choose__list {
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}
@media (width <= 78.18625rem) {
  .choose__list {
    scroll-snap-type: x mandatory;
    justify-content: start;
    overflow: scroll;
    width: 100vw;
    gap: 20px;
  }
}
@media (width <= 47.99875rem) {
  .choose__list {
    gap: 8px;
  }
}
@media (width <= 30.06125rem) {
  .choose__list {
    padding-inline: 5px;
  }
}
@media (width <= 78.18625rem) {
  .choose__item {
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
.choose__link--article {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (width <= 47.99875rem) {
  .choose__link--article {
    gap: 0.4375rem;
  }
}
.choose__link--info {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.choose__link--city {
  color: #333;
}
.choose__link--country {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(51, 51, 51, 0.5);
}
@media (width <= 78.18625rem) {
  .choose__link--img {
    max-height: 400px;
  }
}
@media (width <= 63.99875rem) {
  .choose__link--img {
    max-height: 370px;
    width: 230px;
  }
}
@media (width <= 47.99875rem) {
  .choose__link--img {
    max-height: 350px;
    width: 180px;
  }
}
.choose__link--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  margin-top: clamp(11.25rem, 8.125rem + 13.8888888889vw, 20.625rem);
  padding-top: 3.125rem;
  padding-bottom: clamp(2.5rem, -1.0416666667rem + 15.7407407407vw, 13.125rem);
}
.about__container {
  overflow: hidden;
  display: flex;
  align-items: center;
  -moz-column-gap: 6.4375rem;
       column-gap: 6.4375rem;
  row-gap: 60px;
  justify-content: space-between;
}
@media (width <= 63.99875rem) {
  .about__container {
    flex-direction: column;
  }
}
.about__info {
  max-width: 34.375rem;
  text-align: left;
}
@media (width <= 63.99875rem) {
  .about__info {
    max-width: 100%;
  }
}
.about__headers:not(:last-child) {
  margin-bottom: clamp(1.875rem, -0.4166666667rem + 10.1851851852vw, 8.75rem);
}
.about__subtitle {
  margin-bottom: clamp(1.4375rem, 1.2708333333rem + 0.7407407407vw, 1.9375rem);
}
.about__title {
  text-align: left;
}
.about__adventures {
  position: relative;
  padding-left: 6.25rem;
}
.about__adventures::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8125rem;
  height: 36px;
  background: url("../../images/about/Combined Shape.svg") no-repeat center;
}
.about__adventures:not(:last-child) {
  margin-bottom: 2rem;
}
.about__adventures p {
  max-width: 23.125rem;
}
.about__block-img {
  position: relative;
  max-width: 29.375rem;
  aspect-ratio: 470/590;
}
@media (width <= 47.99875rem) {
  .about__block-img {
    max-width: 23.125rem;
  }
}
@media (width <= 30.06125rem) {
  .about__block-img {
    max-width: 18.75rem;
  }
}
.about__block-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 47.99875rem) {
  .about__block-img {
    align-self: flex-end;
  }
}
.about__block-img--absolute {
  padding-inline: 2rem;
  padding-top: 2.5rem;
  position: absolute;
  top: 50%;
  left: -24.47%;
  transform: translateY(-50%);
  background: var(--orande-button-color);
  max-width: 16.875rem;
  aspect-ratio: 270/400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .about__block-img--absolute {
    left: auto;
    right: -15%;
    padding-inline: 0.625rem;
    max-height: 320px;
    padding-top: 0.625rem;
    max-width: 16.875rem;
  }
}
@media (width <= 30.06125rem) {
  .about__block-img--absolute {
    top: 20%;
    max-width: 16.875rem;
    aspect-ratio: 240/180;
  }
}
.about__block-img--absolute p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fff;
}
@media (width <= 30.06125rem) {
  .about__block-img--absolute p {
    font-size: 1rem;
  }
}
.about__block-img--absolute span {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.5);
}
@media (width <= 30.06125rem) {
  .about__block-img--absolute span {
    font-size: 0.875rem;
  }
}
.about__block-img--absolute div {
  max-width: 12.25rem;
  aspect-ratio: 196/198;
}
@media (width <= 30.06125rem) {
  .about__block-img--absolute div {
    max-width: 8.5rem;
  }
}

.exclusive {
  background: rgba(254, 114, 84, 0.08);
  padding-top: clamp(2.5rem, 1.7708333333rem + 3.2407407407vw, 4.6875rem);
  padding-bottom: clamp(3.75rem, 2.6041666667rem + 5.0925925926vw, 7.1875rem);
}
.exclusive__headers {
  text-align: center;
}
.exclusive__title {
  max-width: 35.9375rem;
  margin-inline: auto;
}
.exclusive__wrapper {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
  flex-wrap: wrap;
}
.exclusive__item {
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 0.8125rem;
       column-gap: 0.8125rem;
  row-gap: 2.5rem;
}
@media (width <= 63.99875rem) {
  .exclusive__item {
    flex-basis: 44%;
    gap: 1.25rem;
  }
}
@media (width <= 47.99875rem) {
  .exclusive__item {
    flex-basis: 97%;
    flex-direction: column-reverse;
  }
}
.exclusive__img {
  position: relative;
}
.exclusive__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 370/400;
}
.exclusive__img span {
  position: absolute;
  top: 56%;
  left: 9%;
  height: 9rem;
  aspect-ratio: 1; /* 1/1 */
  border-radius: 50%;
  background: var(--orande-button-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--second-family);
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.2em;
}
.exclusive__info {
  display: grid;
}
.exclusive__info span:first-child {
  font-family: var(--second-family);
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.2em;
}
.exclusive__info span :last-child {
  line-height: 2;
  color: rgba(0, 0, 0, 0.5);
}

.popular {
  padding-block: clamp(2.5rem, 1.7916666667rem + 3.1481481481vw, 4.625rem);
  text-align: left;
}
.popular__headers {
  margin-bottom: clamp(1.875rem, 1.0416666667rem + 3.7037037037vw, 4.375rem);
}
.popular__title {
  text-align: left;
  max-width: 41.375rem;
}
.popular__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.875rem, 1fr));
  gap: 1.875rem;
  margin-bottom: clamp(1.875rem, 1.1458333333rem + 3.2407407407vw, 4.0625rem);
}
@media (width <= 47.99875rem) {
  .popular__list {
    gap: 1.25rem;
  }
}

.item {
  color: #333;
  transition: all 0.3s linear;
}
@media (any-hover: hover) {
  .item:hover:hover {
    background: #6347f9;
    color: #fff;
  }
}
@media (any-hover: none) {
  .item:hover:active {
    background: #6347f9;
    color: #fff;
  }
}
.item__info {
  padding: 1.5rem 2rem;
  display: grid;
  gap: 0.5rem;
}
@media (width <= 47.99875rem) {
  .item__info {
    padding: 1rem 1.625rem;
  }
}
.item__place {
  font-size: 1.25rem;
  line-height: 1.6;
}
@media (width <= 47.99875rem) {
  .item__place {
    font-size: 1.125rem;
  }
}
.item__date {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(51, 51, 51, 0.5);
}
.item__price {
  font-family: var(--second-family);
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.2em;
}
@media (width <= 47.99875rem) {
  .item__price {
    font-size: 1.625rem;
  }
}
.item__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 270/176;
}

.popular__btn {
  display: block;
  margin: 0 auto;
  background-color: transparent;
  color: var(--orande-button-color);
  border: 0.0625rem solid var(--orande-button-color);
}

.features {
  margin-top: clamp(0rem, -0.8333333333rem + 3.7037037037vw, 2.5rem);
  padding-block: clamp(0.625rem, -1.25rem + 8.3333333333vw, 6.25rem);
}
.features__container {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(40%, 68%) auto;
  -moz-column-gap: 5.375rem;
       column-gap: 5.375rem;
  row-gap: 3.75rem;
}
@media (width <= 63.99875rem) {
  .features__container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.features__img-wrapper {
  display: inline-block;
  position: relative;
}
.features__img-wrapper:after {
  content: "";
  position: absolute;
  top: 15%;
  right: -22%;
  width: 19.0625rem;
  height: 440px;
  background: url("../../images/features/fon.jpg") no-repeat;
  background-size: cover;
}
@media (width <= 78.18625rem) {
  .features__img-wrapper:after {
    width: 17.8125rem;
    height: 380px;
  }
}
@media (width <= 47.99875rem) {
  .features__img-wrapper:after {
    width: 15.3125rem;
    height: 300px;
    right: -8%;
  }
}
@media (width <= 30.06125rem) {
  .features__img-wrapper:after {
    width: 10.9375rem;
    height: 260px;
    right: -3%;
  }
}
.features__img-wrapper img {
  aspect-ratio: 79.661017%; /* 470/590 */
}
@media (width <= 63.99875rem) {
  .features__info {
    order: -1;
  }
}
.features__headers {
  margin-bottom: clamp(0.9375rem, 0.6458333333rem + 1.2962962963vw, 1.8125rem);
}
.features__title {
  text-align: left;
}
.features__text {
  font-size: clamp(1rem, 0.9166666667rem + 0.3703703704vw, 1.25rem);
  line-height: 1.6;
  color: #333;
}
.features__text:not(:last-child) {
  margin-bottom: clamp(1.5625rem, 1.3541666667rem + 0.9259259259vw, 2.1875rem);
}
.features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 5.3125rem;
       column-gap: 5.3125rem;
  row-gap: 1.875rem;
}
@media (width <= 30.06125rem) {
  .features__list {
    row-gap: 0.625rem;
  }
}
.features__list:not(:last-child) {
  margin-bottom: clamp(1.875rem, 0.7291666667rem + 5.0925925926vw, 5.3125rem);
}
.features__item {
  padding-left: 3.125rem;
  position: relative;
  display: flex;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .features__item {
    justify-self: center;
  }
}
.features__item::before {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  top: 0;
  left: 0;
  background: url("../../images/features/icon.svg") no-repeat;
}

.testimonials {
  padding-block: clamp(1.875rem, 0.3125rem + 6.9444444444vw, 6.5625rem);
  text-align: center;
}

.slide {
  display: grid;
  gap: clamp(1.25rem, 0.7291666667rem + 2.3148148148vw, 2.8125rem);
}
.slide__text {
  background: #f5f6f8;
  padding: clamp(1.125rem, 0.2916666667rem + 3.7037037037vw, 3.625rem) clamp(1.375rem, 0.8333333333rem + 2.4074074074vw, 3rem);
  position: relative;
  max-width: 22.5rem;
}
.slide__text::after {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
  background: #f5f6f8;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media (width <= 47.99875rem) {
  .slide__text::after {
    bottom: -1.25rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (width <= 30.06125rem) {
  .slide__text::after {
    bottom: -0.9375rem;
    width: 0.9375rem;
    height: 0.9375rem;
  }
}
.slide__text p {
  max-width: 14.6875rem;
  line-height: 2;
  color: rgba(51, 51, 51, 0.5);
}
@media (width <= 63.99875rem) {
  .slide__text p {
    max-width: none;
  }
}
@media (width <= 30.06125rem) {
  .slide__text p {
    line-height: 1.6;
    font-size: 0.875rem;
  }
}
.slide__author {
  margin-left: -0.9375rem;
  display: flex;
  gap: 2.5rem;
}
@media (width <= 30.06125rem) {
  .slide__author {
    margin-left: -0.625rem;
  }
}
.slide__author-img {
  width: 4.875rem;
  height: 4.875rem;
}
@media (width <= 47.99875rem) {
  .slide__author-img {
    width: 3.625rem;
    height: 3.625rem;
  }
}
@media (width <= 30.06125rem) {
  .slide__author-img {
    width: 3rem;
    height: 3rem;
  }
}
.slide__author-info {
  display: grid;
  justify-items: start;
  gap: 0.4375rem;
}
@media (width <= 30.06125rem) {
  .slide__author-info {
    gap: 0;
  }
}
.slide__author-name {
  font-size: clamp(1rem, 0.9166666667rem + 0.3703703704vw, 1.25rem);
  line-height: 1.6;
  color: #333;
}
.slide__author-profecia {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(51, 51, 51, 0.5);
}

@media (width <= 63.99875rem) {
  .testimonials__headers {
    margin-bottom: clamp(1.875rem, 1.25rem + 2.7777777778vw, 3.75rem);
  }
}

.blog {
  overflow: hidden;
  padding-top: clamp(2.5rem, 1.7916666667rem + 3.1481481481vw, 4.625rem);
  padding-bottom: clamp(2.5rem, 1.5625rem + 4.1666666667vw, 5.3125rem);
  background: rgba(1, 29, 44, 0.9882352941);
  color: #fff;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.7294117647);
}
.blog .blog__headers.section__header {
  margin-bottom: 0;
}
.blog__headers-wr {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: end;
  margin-bottom: clamp(1.875rem, 1.0416666667rem + 3.7037037037vw, 4.375rem);
}
@media (width <= 47.99875rem) {
  .blog__headers-wr {
    flex-direction: column;
    align-items: start;
  }
}
.blog__subtitle {
  color: rgba(255, 255, 255, 0.5);
}
.blog__title {
  color: #fff;
  text-align: left;
  max-width: 30rem;
}
.blog__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  margin-bottom: clamp(1.875rem, 0.625rem + 5.5555555556vw, 5.625rem);
}
@media (width <= 63.99875rem) {
  .blog__wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.blog__item {
  background: #fff;
}

.blog-item {
  color: rgba(51, 51, 51, 0.5);
}
.blog-item__header {
  padding: 1.625rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.blog-item__text {
  display: grid;
  gap: 0.8125rem;
  max-width: 23.125rem;
}
.blog-item__data {
  line-height: 2;
  text-transform: uppercase;
}
.blog-item__tex {
  margin-top: 0.3125rem;
  font-weight: 400;
  font-size: clamp(1rem, 0.8333333333rem + 0.7407407407vw, 1.5rem);
  line-height: 1.3;
  color: #333;
}
.blog-item__img {
  display: inline-block;
  width: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-item__img img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.blog-item__imagesBig img {
  max-width: 100%;
  aspect-ratio: 169.642857%;
  -o-object-fit: cover;
     object-fit: cover; /* 570/336 */
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
}
@media (width <= 63.99875rem) {
  .blog-footer {
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
  }
}
.blog-footer__text h4 {
  margin-block: 0;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.1666666667rem + 1.4814814815vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.2em;
  color: #fff;
}
.blog-footer__text p {
  color: rgba(255, 255, 255, 0.5);
}
@media (width <= 30.06125rem) {
  .blog-footer__text p {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
  }
}
.blog-footer__form {
  display: flex;
  gap: 1.875rem;
}
@media (width <= 30.06125rem) {
  .blog-footer__form {
    flex-direction: column;
  }
}
.blog-footer__form input {
  padding: 0.5625rem 1rem 0.4375rem;
  width: 16.875rem;
}
@media (width <= 30.06125rem) {
  .blog-footer__form input {
    flex-direction: column;
  }
}
.blog-footer__form input::-moz-placeholder {
  line-height: 2;
  color: rgba(51, 51, 51, 0.5);
}
.blog-footer__form input::placeholder {
  line-height: 2;
  color: rgba(51, 51, 51, 0.5);
}

.contact {
  padding-top: clamp(3.75rem, 2.7083333333rem + 4.6296296296vw, 6.875rem);
  padding-bottom: clamp(2.5rem, 0rem + 11.1111111111vw, 10rem);
  background: rgba(1, 29, 44, 0.9882352941);
  color: #fff;
}
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.75rem, 1.125rem + 7.2222222222vw, 7.625rem);
}
@media (width <= 63.99875rem) {
  .contact__container {
    grid-template-columns: 1fr;
  }
}
.contact__map .ifr {
  width: 100%;
  aspect-ratio: 570/592;
}
@media (width <= 63.99875rem) {
  .contact__map .ifr {
    max-width: 31.25rem;
  }
}
.contact__info {
  flex-basis: 48%;
}
@media (width <= 63.99875rem) {
  .contact__info {
    order: -1;
  }
}
.contact__headers {
  margin-bottom: 1.8125rem;
}
.contact__subtitle {
  color: rgba(255, 255, 255, 0.5);
}
.contact__title {
  text-align: left;
  color: #fff;
}
.contact__text {
  font-size: 1.25rem;
  line-height: 160%;
  color: #fff;
  margin-bottom: clamp(1.25rem, 0.8333333333rem + 1.8518518519vw, 2.5rem);
  max-width: 29.375rem;
}
.contact__active {
  display: grid;
  gap: 2.1875rem;
}
.contact__active:not(:last-child) {
  margin-bottom: clamp(1.875rem, 1.5625rem + 1.3888888889vw, 2.8125rem);
}
.contact__active a {
  position: relative;
  padding-left: 3.75rem;
  transition: all 0.3s linear;
}
@media (any-hover: hover) {
  .contact__active a:hover {
    scale: 1.1;
    color: var(--orande-button-color);
  }
}
@media (any-hover: none) {
  .contact__active a:active {
    scale: 1.1;
    color: var(--orande-button-color);
  }
}
.contact__active a::before {
  top: -0.75rem;
  left: 0rem;
  position: absolute;
  content: "";
  width: 3rem;
  aspect-ratio: 1;
  border: 1px solid #938c8c;
  border-radius: 50%;
  background: url("../../images/phone.svg") no-repeat center;
}
.contact__active a:last-child::before {
  background: url("../../images/Telegram.svg") no-repeat center;
}

.footer {
  background: #0c1a29;
  padding-top: clamp(2.5rem, 2.0833333333rem + 1.8518518519vw, 3.75rem);
  padding-bottom: clamp(0.1875rem, -0.5833333333rem + 3.4259259259vw, 2.5rem);
  color: #fff;
}
.footer__main {
  padding-bottom: clamp(1.875rem, 1.0416666667rem + 3.7037037037vw, 4.375rem);
  display: grid;
  gap: 1.25rem;
  row-gap: 0.625rem;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.662745098);
}
@media (width <= 47.99875rem) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__logo {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.2em;
  color: #fff;
}
.footer__list h3 {
  padding-top: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.footer__item a {
  font-size: 1rem;
  line-height: 2;
  color: #fff;
  position: relative;
}
.footer__item a:after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--orande-button-color);
  transition: all 0.5s linear;
}
@media (any-hover: hover) {
  .footer__item a:hover:after {
    width: 100%;
    height: 0.125rem;
    left: 0;
  }
}
@media (any-hover: none) {
  .footer__item a:active:after {
    width: 100%;
    height: 0.125rem;
    left: 0;
  }
}
.footer__list--social .social-item {
  display: flex;
  gap: 0.625rem;
}
.footer__list--social .social-item a {
  width: 3rem;
  aspect-ratio: 1;
  border: 0.0625rem solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
}
@media (any-hover: hover) {
  .footer__list--social .social-item a:hover {
    border: 0.12375rem solid #c2791a;
  }
}
@media (any-hover: none) {
  .footer__list--social .social-item a:active {
    border: 0.12375rem solid #c2791a;
  }
}
.footer__bottom {
  padding-top: clamp(0.9375rem, 0.4166666667rem + 2.3148148148vw, 2.5rem);
  display: flex;
  justify-content: space-between;
}
@media (width <= 47.99875rem) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }
}
.footer__bottom p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom div {
  display: flex;
  gap: clamp(3.125rem, 2.3958333333rem + 3.2407407407vw, 5.3125rem);
}
.footer__bottom div p {
  color: #fff;
}/*# sourceMappingURL=main.css.map */