/* portfolio block */

body.page-single .section-portfolio {
  padding: 100px 0;
}

body.page-single .portfolio__subtitle {
  margin-bottom: 20px;
}

body.page-single .portfolio__text {
  margin-top: 20px;
}

body.page-single .portfolio__content {
  margin-top: 50px;
}

body.page-single .portfolio__swiper {
  overflow: hidden;
  padding: 25px 0;
}

body.page-single .portfolio__slide {
  box-shadow: var(--main-box-shadow);
}

body.page-single .portfolio__slide a {
  color: var(--main-light-gray-color);
}

body.page-single .portfolio__slide__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

body.page-single .portfolio__slide__title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  padding: 0 20px;
  color: white;
}

body.page-single .portfolio__slide__price {
  margin-top: 10px;
  padding: 0 20px;
  padding-bottom: 20px;
}

body.page-single .portfolio__slide__price span {
  color: var(--main-primary-color1);
}

/* end portfolio block */

/* section info */

body.page-single .section-info {
  position: relative;
  padding: 100px 0;
}

body.page-single .info__img {
  position: absolute;
  right: 0;
  width: 50%;
  top: 0;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

body.page-single .info__content {
  display: flex;
}

body.page-single .info__block {
  width: 45%;
}

body.page-single .info__title {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

body.page-single .info__title::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--main-primary-color1);
  border-radius: 100px;
  left: -10px;
  top: 0px;
}

body.page-single .info__text {
  margin-top: 20px;
  color: var(--main-light-gray-color);
}

body.page-single .section-info.right .info__content {
  flex-direction: row-reverse;
}

body.page-single .section-info.right .info__img {
  left: 0;
  right: auto;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

/* end section info */

/* section prices */

body.page-single .section-prices {
  padding: 100px 0;
}

body.page-single .prices__subtitle {
  margin-bottom: 20px;
}

body.page-single .prices__text {
  margin-top: 20px;
}

body.page-single .prices__tabs {
  background: linear-gradient(
    96.83deg,
    var(--main-primary-color1) 0%,
    var(--main-primary-color3) 100%
  );
}

body.page-single .prices__content {
  margin-top: 50px;
}

body.page-single .prices__tabs__wrap {
  display: flex;
  align-items: center;
}

body.page-single .prices__tabs__item {
  padding: 20px;
  cursor: pointer;
}

body.page-single .prices__tabs__item.active {
  background-color: #ffffff1c;
}

body.page-single .prices__tabs__content {
  margin-top: 20px;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

body.page-single .prices__tabs__content__item {
  padding: 20px;
  box-shadow: var(--main-box-shadow);
}

body.page-single .prices__tabs__content__item__title {
}

body.page-single .prices__tabs__content__item__price {
  color: var(--main-light-gray-color);
  margin-top: 10px;
}

body.page-single .prices__tabs__content__item__price span {
  color: var(--main-primary-color1);
}

body.page-single .prices__tabs__content.active {
  display: grid;
}
/* end section prices */

/* related section */

body.page-single .section__related {
  padding: 100px 0;
}

body.page-single .related__subtitle {
  margin-bottom: 20px;
}

body.page-single .related__title {
}

body.page-single .related__text {
  margin-top: 20px;
}

body.page-single .related__content {
  margin-top: 50px;
}

body.page-single .related__swiper {
  overflow: hidden;
}

body.page-single .related__item {
  color: white;
  box-shadow: var(--main-box-shadow);
  padding: 80px 50px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: 0.3s;
  display: block;
}

body.page-single .related__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--main-black-color);
  opacity: 0.8;
  left: 0;
  top: 0;
}

body.page-single .related__item__title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}

/* end related section */

@media (max-width: 1199.98px) {
  body.page-single .prices__tabs__content {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991.98px) {
  body.page-single .prices__tabs__content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  body.page-single .section-info {
    padding: 0;
    margin-bottom: 100px;
  }

  body.page-single .info__content {
    flex-direction: column;
  }

  body.page-single .info__block {
    width: auto;
  }

  body.page-single .info__img {
    position: static;
    width: 100%;
    clip-path: none;
  }

  body.page-single .info__title {
    margin-top: 40px;
    font-size: 20px;
  }

  body.page-single .prices__tabs__wrap {
    display: block;
  }

  body.page-single .prices__tabs__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
}

@media (max-width: 575.98px) {
  body.page-single .prices__tabs__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
