.single-services__top {
  display: flex;
  -moz-column-gap: max( 30 / 19.2 * 1vw, 20px);
       column-gap: max( 30 / 19.2 * 1vw, 20px);
  margin-bottom: max( 30 / 19.2 * 1vw, 20px);
}
.single-services__top-gallery {
  width: 40.2%;
}
.single-services__content {
  flex: 1;
}
.single-services__content > *:not(:last-child) {
  margin-bottom: max( 30 / 19.2 * 1vw, 20px);
}
.single-services__content-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.single-services__content-btn > *:not(:last-child) {
  margin-right: max( 30 / 19.2 * 1vw, 20px);
}
.single-services__content-desc {
  line-height: 150%;
  letter-spacing: 0.8px;
}
.single-services__price {
  color: var(--color3E);
  font-size: max( 32 / 19.2 * 1vw, 25px);
  font-family: "Lora";
  font-weight: 700;
  line-height: 100%;
}
.single-services__price-caption {
  color: #828282;
}
.single-services__btn {
  padding: max( 13 / 19.2 * 1vw, 8px) max( 30 / 19.2 * 1vw, 10px);
}

@media (max-width: 540px){
  .single-services__btn{
    width: 100%;
  }
}

.single-services__btn svg {
  color: var(--colorFF);
  margin-right: max( 5 / 19.2 * 1vw, 5px);
  width: max( 24 / 19.2 * 1vw, 20px);
  height: max( 24 / 19.2 * 1vw, 20px);
}
.single-services__gallery .swiper-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
.single-services__gallery .swiper-slide:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.single-services__gallery .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-services__gallery-thum {
	display: none;
  margin-top: max( 20 / 19.2 * 1vw, 10px);
}
.single-services__gallery-thum .swiper-slide {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}
.single-services__gallery-thum .swiper-slide:after {
  content: "";
  display: block;
  padding-bottom: 100%;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.single-services__gallery-thum .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-services__gallery-thum .swiper-slide:not(.swiper-slide-thumb-active):after {
  background: rgba(0, 0, 0, 0.2);
}

.single-services__gallery .swiper-slide.video {
  position: relative;
}
.single-services__gallery .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(62, 43, 15, 0.6);
  border: 2px solid #B08D57;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: all 0.3s ease-in;
}
.single-services__gallery .video-play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #B08D57;
  margin-left: 4px;
  transition: all 0.3s ease-in;
}
.single-services__gallery .swiper-slide.video:hover .video-play {
  background-color: rgba(176, 141, 87, 0.8);
}
.single-services__gallery .swiper-slide.video:hover .video-play::after {
  border-color: transparent transparent transparent #fff;
}

@media (max-width: 767px) {
  .single-services__top {
    flex-direction: column;
    row-gap: max( 20 / 19.2 * 1vw, 20px);
  }
  .single-services__top-gallery {
    width: 100%;
  }
}/*# sourceMappingURL=single-services.css.map */