@import url("./reset.css");
@import url("./variables.css");
@import url("./layout.css");

.main {
  display: flex;
  align-items: start;
  gap: 32px;
}

.sidebar {}

.category__title {
  font-size: 18px;
  font-weight: 700;
}

.category__list {
  margin-top: 12px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category__list li a {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 640px) {
  .main {
    flex-direction: column;
  }

  .category__list {
    flex-direction: row;
    gap: 12px;
  }
}

.content {
  display: flex;
  align-items: start;
  gap: 24px;
}

.images img {
  border-radius: 12px;
  width: 100%;
}

@media (max-width: 890px) {
  .content {
    flex-direction: column;
  }
}

.info {
  flex: 1;
  font-size: 20px;
}

@media (max-width: 950px) {
  .info {
    font-size: 16px;
  }
}

.name {
  font-size: 32px;
  font-weight: 700;
}

.phone {
  margin-top: 12px;
}

.phone p {
  opacity: .7;
  font-size: 14px;
}

.phone-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.phone-btns .telegram,
.phone-btns .whatsapp {
  background: transparent;
  border: 1px solid #8200DB;
  transition: background .1s ease-in-out;
}

.phone-btns .telegram:hover,
.phone-btns .whatsapp:hover {
  background: #8200DB;
  border: 1px solid #8200DB;
}

.checks {
  font-size: 18px;
  margin: 12px 0;
  font-weight: 600;
}

.checks svg {
  display: inline;
}

.about {}

.about h3,
.prices h3,
.data h3 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 24px;
}

.about p {}

.data__lists {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 500px) {
  .data__lists {
    display: block;
  }
}

.data__list-1,
.data__list-2 {
  flex: 1
}


.data__list-1 p,
.data__list-2 p {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  color: #ffffff80;
}

.data__list-1 span,
.data__list-2 span {
  color: #ffffff;
  font-weight: 700;
}

/* PRICES */
.prices {}

.prices__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 1280px) {
  .prices__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}

.prices-1,
.prices-2 {
  background: var(--input-bg);
  border: 1px solid #8200DB70;
  border-radius: 12px;
  padding: 12px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prices-1 span,
.prices-2 span {
  font-weight: 700;
}

/* SWIPER */
.images {
  width: 300px;
  height: 500px;
}

@media (max-width: 640px) {
  .images {
    margin: 0 auto;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  margin-top: 12px;
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}