.service-block-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.service-block-content {
  display: flex;
  gap: 30px;
}
.service-block-content .advantages {
  list-style: none;
	max-height:7rem;
	overflow: scroll;
}
.service-block-content .advantages .advantage {
  position: relative;
  padding-left: 15px;
}
.service-block-content .advantages .advantage::before {
  position: absolute;
  content: "";
  background: var(--colors-main);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0px;
  top: 6px;
}
.service-block .bottom {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 10px 10px 10px 30px;
  border-radius: 30px;
  background: var(--bg-primary-second);
  align-items: center;
}
.service-block .bottom .price {
  display: flex;
  gap: 10px;
  align-items: center;
}
.service-block .bottom .cost {
  font-weight: 800;
}
.service-block .bottom .full_cost {
  text-decoration: line-through;
}
.service-block .bottom .modal {
  width: fit-content;
}
.service-block .block-left {
  width: clamp(28.125rem, -2.058rem + 43.9vw, 50.625rem);
  height: auto;
  flex-shrink: 0;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.service-block .block-left img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-block .block-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.service-block .block-right .description-contain {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-block .block-right .subtitle {
  font-weight: 800;
}
.service-block .block-right .desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: fit-content;
  transition: all 0.3s ease-in-out;
  max-height: 4em;
}
.service-block .block-right .desc.open {
  -webkit-line-clamp: unset;
}

.service-block .service-block-swiper{
	width: 100%;
	height: 100%;
}

.service-block .swiper-btn-wrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  position: absolute;
  bottom: 30px;
  left: 0px;
  width: 100%;
  padding: 0px 30px;
  z-index: 3;
}

.service-block .swiper-btn-wrap .swiper-btn {
  width: 60px;
  height: 60px;
  background: var(--bg-alt-second);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.service-block .swiper-btn-wrap .swiper-btn.swiper-button-disabled {
  background: var(--bg-primary-second);
}

.service-block .swiper-btn-wrap .swiper-btn.swiper-button-disabled svg path {
  stroke: #A9B1A9;
}

.service-block .swiper-btn-wrap .swiper-btn svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.service-block .swiper-btn-wrap .swiper-btn svg path {
  stroke: var(--colors-main);
  transition: all 0.3s ease-in-out;
}

.service-block .swiper-btn-wrap .swiper-btn:hover {
  background: var(--hover-main);
}

.service-block .swiper-btn-wrap .swiper-btn:hover svg path {
  stroke: var(--text-alt-head);
}

@media (max-width: 1100px) {
  .service-block-content {
    flex-direction: column;
  }
  .service-block .block-left {
    width: 100%;
    height: clamp(15.625rem, 11.064rem + 20.27vw, 25rem);
  }
  .service-block .block-left img {
    position: relative;
    object-position: center;
  }
}
@media (max-width: 550px) {
  .service-block .bottom {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
  }
  .service-block .bottom .modal {
    width: 100%;
  }
}/*# sourceMappingURL=block.css.map */