.presentation {
}

.presentation__box {
}

.presentation__content {
}

.presentation__title {
}

.presentation__info {
}

.presentation__directions {
  margin: 60px 0 40px;
  display: flex;
  justify-content: center;
  gap: 90px;
}

.presentation__directions-btn {
  width: 20%;
  cursor: pointer;
  color: var(--textMedium);
  font-weight: 400;
  text-align: center;
}

.presentation__directions-btn.active {
  color: var(--btnDark);
  font-weight: 700;
}

.presentation__directions-item {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.presentation__directions-itemMobile {
  display: none;
}

.presentation__directions-item.presentation__directions-itemMobile.active {
  display: none;
}

.presentation__directions-item.active {
  display: grid;
}

.presentation__nameList {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.presentation__nameList-item {
  cursor: pointer;
  padding: 26px;
  border: 1px solid var(--borderColor);
  text-align: center;
  border-radius: 12px;
  color: var(--borderColor);
}

.presentation__nameList-item.active {
  border-color: var(--btnDark);
  background: var(--btnDark);
  color: var(--bgLight);
}

.presentation__presentation {
}

.presentation__presentation-item {
  display: none;
  max-width: 630px;
}

.presentation__presentation-item.active {
  display: block;
}

.presentation__swiper {
  border-radius: 0 0 24px 24px;
  /* height: 412px; */
  aspect-ratio: 7/4;
}

.presentation__slide {
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  width: 100%;
  height: 100%;

  > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.presentation__pagination {
}

.presentation__pagination.swiper-pagination-progressbar {
  background: var(--borderColor);
  z-index: 2;
}

.presentation__navigation {
}

.presentation__prevEl,
.presentation__nextEl {
}

.presentation__prevEl {
}

.presentation__nextEl {
}

@media (hover: hover) {
  .presentation__directions-btn:hover {
    color: var(--btnDark);
    transform: translateY(-4px);
  }

  .presentation__directions-btn.active:hover {
    transform: translateY(0);
  }

  .presentation__nameList-item:hover {
    border-color: var(--btnDark);
    color: var(--btnDark);
    transform: translateY(-4px);
  }

  .presentation__nameList-item.active:hover {
    color: var(--bgLight);
    transform: translateY(0);
  }
}

@media screen and (max-width: 1200px) {
  .presentation__directions {
    gap: 30px;
  }

  .presentation__directions-btn {
    width: 26%;
  }

  .presentation__directions-item {
    gap: 40px;
  }

  .presentation__nameList {
    gap: 20px;
  }

  .presentation__nameList-item {
    padding: 22px;
  }
}

@media screen and (max-width: 1100px) {
  .presentation__directions {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-items: center;
  }

  .presentation__directions-btn {
    text-align: center;
    width: max-content;
  }

  .presentation__presentation-item {
    display: none;
    max-width: 480px;
  }
}

@media screen and (max-width: 1000px) {
  .presentation__directions {
    margin: 40px 0;
  }

  .presentation__nameList-item {
    padding: 16px;
  }
}

@media screen and (max-width: 900px) {
  .presentation__directions-item {
    gap: 30px;
  }

  .presentation__presentation-item {
    max-width: 420px;
  }
}

@media screen and (max-width: 760px) {
  .presentation__nameList {
    gap: 12px;
  }

  .presentation__directions-btn {
    font-size: 24px;
  }

  .presentation__directions {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .presentation__directions-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .presentation__presentation-item {
    max-width: 90vw;
  }

  .presentation__directions-itemDefault {
    display: none;
  }

  .presentation__directions-itemDefault.active {
    display: none;
  }

  .presentation__directions-itemMobile {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    display: grid;
    max-height: 0px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s linear;
  }

  .presentation__directions-item.presentation__directions-itemMobile.active {
    display: grid;
    max-height: 1000px;
    opacity: 1;
    pointer-events: all;
  }
}

@media screen and (max-width: 460px) {
  .presentation__directions-btn {
    font-size: 22px;
  }
}
