
/* BUILDED */
@import url(/fonts/fonts.css);

body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.container {
    width: 1400px;
    margin: 0 auto;
    border: 1px solid red
}
.partners {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: scroll 30s linear infinite; 
}

.partner-logo {
    flex-shrink: 0;
    width: calc(16.666% - 30px); 
    text-align: center;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px; 
    filter: grayscale(100%); 
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%); 
    transform: scale(1.05); 
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners:hover .partners-track {
    animation-play-state: paused;
}
.yandex-map {
    position: relative;
    width: 100%;
}

.yandex-map, .yandex-map * {
    cursor: pointer;
}

.yandex-map:after {
    content: '';
    display: block;
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s ease;
}

.yandex-map:hover:after {
    z-index: -1;
    background: none;
}
.reviews {
    margin-top: 215px;
    margin-bottom: 130px;
}

.reviews__title {
    text-align: center;
    width: 100%;
    display: block;
    font-size: 110px;
    line-height: 86px;
    text-transform: uppercase;
    color: #464451;
    font-weight: bold;
    font-family: "Verdana", sans-serif;
    text-align: center;
}
.gallery {
    width: 100%;
    height: 600px;
    position: relative;
}

.gallery-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: auto; 
    flex-shrink: 0; 
    transition: all .3s ease;
}

.swiper-slide, .swiper-slide * {
    cursor: pointer;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.swiper-slide:after {
    content: '';
    background:url(/images/site/gallery/gallery.bg.png) center;
    background-size: cover;
    width: 100%;
    height: 110%;
    position: absolute;
    top: -5px;
    left: 0;
    transition: all .3s ease;
}

.swiper-slide:hover:after {
    background: none;
    z-index: -1;
}
