

/* Start:/local/templates/tourism/assets/styles/components/services-card.css?17187183163237*/
.services__gallery {
    padding-top: 6.5em;
    row-gap: 8em;
}
@media (max-width: 1366px) {
    .services__gallery {
        padding-top: 3.5em;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1023px) {
    .services__gallery {
        grid-template-columns: 100%;
    }
}

.gallery-4.services__gallery {
    row-gap: 6em;
}

@media (max-width: 1250px) and (min-width: 768px) {
    .gallery-4.services__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.services-card {
    --bg-card: var(--bg-card-dark-second);
    position: relative;
    --gradient-percent: 70%;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    padding: 4em;
    background-color: var(--bg-card);
}
.services-card--accent {
    --bg-card: var(--c-brand);
}
@media (max-width: 479px) {
    .services-card {
        padding: 3em 2.5em;
    }

}
.services-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--bg-card);
    transition: all 0.3s ease;
    pointer-events: none;
}

@media (any-hover: hover) {
    .services-card:hover:before {
        top: -1em;
    }
}

.services-card__media {
    --size: 14em;
    position: relative;
    z-index: 1;
    min-width: var(--size);
    max-width: var(--size);
    width: var(--size);
    min-height: var(--size);
    max-height: var(--size);
    height: var(--size);
    margin-bottom: 4.1em;
    margin-top: calc(-0.7 * var(--size));
    transform-origin: left top;
    transition: all 0.3s ease;
}
@media (max-width: 767px) {
    .services-card__media {
        --size: 8em;
        margin-top: calc(-1 * var(--size));
    }
}
@media (max-width: 479px) {
    .services-card__media {
        margin-top: calc(-0.9 * var(--size));
    }
}
@media (any-hover: hover) {
    .services-card:hover .services-card__media {
        transform: scale(1.3);
    }
}

.services-card__media-pic {
    width: 100%;
    height: 100%;
    display: block;
}

.services-card__media-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.services-card__title {
    position: relative;
    z-index: 1;
    font-size: 3.6em;
    line-height: 1.1;
    margin-bottom: 0.41em;
    color: var(--fg-title-on);
    font-family: var(--ff-bold);
    font-weight: 700;
}

.services-card--accent .services-card__title {
    font-size: 2.8em;
}
@media (max-width: 767px) {
    .services-card__title {
        font-size: 2.8em;
        margin-bottom: 0.53em;
        font-family: var(--ff-medium);
        font-weight: 500;
    }
}

.services-card__title-link {
    transition: all 0.3s ease;
    display: block;
}

@media (any-hover: hover) {
    .services-card__title-link:hover {
        color: var(--fg-link-hover);
    }
}
.services-card__title-link:active {
    color: var(--fg-link-active);
}

.services-card__body {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.services-card__desc {
    font-size: 1em;
    font-family: var(--ff-regular);
    font-weight: 400;
    min-height: 3.75em;
    color: var(--fg-card-second);
    margin-bottom: 3.5em;
}

.services-card__desc > * {
    font-size: 1.6em;
}

/* End */


/* Start:/local/templates/tourism/assets/styles/gallery.css?17158586016016*/
.gallery-2,
.gallery-3,
.gallery-4 {
    font-size: 10px;
    display: grid;
    gap: 2em;
}
.gallery-2 {
    grid-template-columns: repeat(2, 1fr);
}
.gallery-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gallery-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1250px) {
    .gallery-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1000px) {
    .gallery-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-3 {
        grid-template-columns: 100%;
    }
}

@media (max-width: 768px) {
    .gallery-3,
    .gallery-4 {
        gap: 1em;
    }
    .gallery-2 {
        gap: 1em;
        grid-template-columns: 100%;
    }
}
@media (max-width: 576px) {
    .gallery-3,
    .gallery-4 {
        grid-template-columns: 100%;
    }
}

.gallery--no-gap {
    gap: 0;
}

.gallery-card {
    position: relative;
    padding-top: 83.637%;
    cursor: pointer;
}

.gallery-card__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.4em 2em;
    overflow: hidden;
}

.gallery-card--has-dim .gallery-card__media::after {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: all 0.45s ease;
}

.gallery-card--has-dim:hover .gallery-card__media::after {
    opacity: 1;
}

@media (max-width: 576px) {
    .gallery-card--has-dim .gallery-card__media::after {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 40%);
        opacity: 1;
    }
}

.gallery-card__media-pic {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-card__media-img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-card__media-video {
    object-fit: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-card__media-video > .video-js,
.gallery-card__media-video .vjs-video {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gallery-card__media-video .vjs-youtube .vjs-poster {
    background-size: 150%;
}

/*.gallery-card__media-video .vjs-video::after {*/
.gallery-card__media-video::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #1C2023;
    opacity: 0.74;
    transition: all 0.2s ease;
}

.gallery-card__media-video .vjs-playing {

}
.gallery-card__media-video .vjs-has-started::after {
    opacity: 0;
}
.gallery-card__media-video .vjs-has-started ~  .gallery-card__media-play {
    transform: scale(0);
    opacity: 0;
}

.gallery-card__media-video .vjs-paused {

}
.gallery-card__media-video .vjs-paused {
}
.gallery-card__media-video .vjs-big-play-button {
    display: none;
}

.gallery-card__media-video video {
    object-fit: cover;
    pointer-events: none;
}

.gallery-card__media-play {
    font-size: 1em;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    margin: auto;
    pointer-events: none;
    transition: all 0.45s ease;
    color: var(--c-on);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-card__media-play-icon {
    --triangle-size: 1.8em;
    margin-bottom: var(--triangle-size);
    width: 0;
    height: 0;
    border-top: var(--triangle-size) solid transparent; /* Высота треугольника */
    border-bottom: var(--triangle-size) solid transparent; /* Высота треугольника */
    border-left: calc(1.75 * var(--triangle-size)) solid var(--c-on); /* Ширина треугольника и его цвет */
    transform: translateX(0.4em);
}

.gallery-card__media-play-text {
    font-size: 1.6em;
    font-family: var(--ff-regular);
}

.gallery-card__media-caption {
    position: relative;
    z-index: 3;
    font-size: 1.4em;
    line-height: initial;
    color: var(--c-on);
    font-family: var(--ff-regular);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(1em);
}

.gallery-card:hover .gallery-card__media-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .gallery-card__media-caption {
        opacity: 1;
        transform: translateY(0);
    }
}


.gallery-card__media-video ::shadow [class*="raichu-player-controls-module__controls"] {
    display: none !important;
}

.carousel__swiper .carousel__slide {
    padding: 0;
}

.carousel {
    font-size: 10px;
}

.territories-card .carousel {
    padding-top: 1.5em;
}

.swiper-button-prev.carousel__button-prev,
.swiper-button-next.carousel__button-next {
    color: var(--c-on);
    --swiper-navigation-size: 3em;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110%;
    width: 10em;
    transition: all 0.3s ease;
}

.swiper-button-prev.carousel__button-prev {
    left: 0;
    background: linear-gradient(270deg, rgba(28, 32, 35, 0) 0%, #1C2023 96.5%);
}
.swiper-button-next.carousel__button-next {
    right: 0;
    background: linear-gradient(270deg, #1C2023 0%, rgba(28, 32, 35, 0) 96.5%);
}

.swiper-button-disabled.swiper-button-prev.carousel__button-prev,
.swiper-button-disabled.swiper-button-next.carousel__button-next {
    opacity: 0;
}


.gallery-card-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gallery-card__pic {
    display: block;
    width: 100%;
    height: 100%;
}
.gallery-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* End */
/* /local/templates/tourism/assets/styles/components/services-card.css?17187183163237 */
/* /local/templates/tourism/assets/styles/gallery.css?17158586016016 */
