.contacts__breadcrumbs ol {
    display: flex;
    color: rgba(27, 27, 27, 0.4);
    font-size: 12px;
    list-style: none;
    padding: 0 40px;
    margin-bottom: 95px;
    cursor: default;
}

.contacts__breadcrumbs a {
    transition: all .3s ease-in-out;
}

.contacts__breadcrumbs a:after {
    content: '/';
    color: rgba(27, 27, 27, 0.4);
    margin: 0 6px;
}

.contacts__breadcrumbs a:hover {
    color: rgba(27, 27, 27, 1);
}

.contacts__title {
    position: relative;
    text-transform: uppercase;
    margin: 0 40px 60px;
}

.contacts__title h1 {
    font-size: 20px;
    font-weight: 700;
}

.contacts__title span {
    position: absolute;
    top: -95px;
    left: -15px;
    font-family: 'Jost';
    color: rgba(29, 29, 29, 0.03);
    font-size: 150px;
    pointer-events: none;
}

.contacts__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 40px 100px;
}

.contacts__grid-row {
    display: flex;
    gap: 20px;
}

.contacts__socials {
    width: max-content;
    background: conic-gradient(from 40deg at 28.6% 100%, rgba(166, 163, 163, 0.05) 0deg, rgba(48, 48, 48, 0.05) 360deg);
    border: 1px solid rgba(27, 27, 27, 0.05);
    border-radius: 30px;
    box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 55px 66px;
}

.contacts__banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1B1B1B;
    border-radius: 30px;
}

.contacts__banner-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #EFEFEF;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contacts__banner-info span {
    opacity: 0.5;
}

.contacts__banner-button {
    width: 200px;
    height: 50px;
    background: rgba(0, 0, 0, 0.004);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contacts__map {
    width: 100%;
    display: flex;
    gap: 60px;
    background: conic-gradient(from 40deg at 28.6% 100%, rgba(166, 163, 163, 0.05) 0deg, rgba(48, 48, 48, 0.05) 360deg);
    border: 1px solid rgba(27, 27, 27, 0.05);
    border-radius: 30px;
    box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.contacts__address {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contacts__address-item {
    max-width: 175px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #1B1B1B;
    font-size: 16px;
}

.contacts__address-title {
    opacity: 0.2;
}

.contacts__address-button {
    width: 180px;
    height: 50px;
    background: conic-gradient(from 76deg at 15.02% 100%, rgba(48, 48, 48, 0.05) 0deg, rgba(255, 255, 255, 0.05) 360deg), #212121;
}

.contacts__logo {
    min-width: 445px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: conic-gradient(from 40deg at 28.6% 100%, rgba(166, 163, 163, 0.05) 0deg, rgba(48, 48, 48, 0.05) 360deg);
    border: 1px solid rgba(27, 27, 27, 0.05);
    box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.contacts__logo img {
    max-width: 205px;
}

.contacts__gallery {
    margin-bottom: 90px;
}

.contacts__gallery-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.contacts__gallery-button {
    width: 40px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.contacts__gallery-button.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
}

.contacts__gallery-button svg {
    transition: transform 0.25s ease;
    will-change: transform;
}

.contacts__gallery-button:hover:not(.swiper-button-disabled) svg {
    transform: scale(1.08);
}

.socials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    list-style: none;
}

.socials__item img {
    transition: transform 0.25s ease;
}

.socials__item:hover img {
    transform: scale(1.08);
}

#map {
    width: 65%;
    border-radius: 20px;
    overflow: hidden;
    height: 360px;
    filter: grayscale(100%) contrast(.9);
    aspect-ratio: 1/1;
}

.map-marker {
    display: flex;
    align-items: center;
    gap: 5px;
    filter: grayscale(100%) contrast(1.1);
}

.map-marker__icon {
    width: 50px;
    height: auto;
}

.map-marker__content {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 5px;
}

.map-marker__top {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
}

.map-marker__title {
    max-width: 160px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.map-marker__rating {
    width: max-content;
    display: flex;
    gap: 5px;
    opacity: 0.8;
}

.map-marker__time {
    font-weight: 600;
    opacity: 0.5;
}

.gallery-card {
    aspect-ratio: 0.8;
    background: #D9D9D9;
    border-radius: 20px;
}
@media screen and (max-width: 1440px) {
    .contacts__socials {
        padding: 45px 50px;
    }

    .socials {
        gap: 35px;
    }

    .contacts__logo {
        min-width: 380px;
    }

    .contacts__logo img {
        max-width: 180px;
    }

    #map {
        width: 60%;
    }
}

@media screen and (max-width: 1150px) {
    .contacts__breadcrumbs ol {
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .contacts__title {
        margin: 0 20px 40px;
    }

    .contacts__title span {
        font-size: 100px;
        top: -65px;
        left: -10px;
    }

    .contacts__grid {
        margin: 0 20px 70px;
        gap: 15px;
    }

    .contacts__socials {
        padding: 35px 40px;
    }

    .socials {
        gap: 25px;
    }

    .contacts__banner-info {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .contacts__map {
        gap: 40px;
        padding: 15px;
    }

    .contacts__address-item {
        max-width: 150px;
        gap: 10px;
        font-size: 14px;
    }
    #map {
        width: 55%;
        height: 300px;
    }

    .contacts__gallery {
        margin-bottom: 70px;
    }

    .contacts__gallery-nav {
        margin-bottom: 40px;
    }

    .socials__item img {
        width: 90px;
    }
}
@media screen and (max-width: 850px) {
    .contacts__logo {
        display: none;
    }
    .contacts__socials {
        padding: 25px 30px;
    }
}

@media screen and (max-width: 768px) {
    .contacts__breadcrumbs ol {
        padding: 0 15px;
        margin-bottom: 45px;
    }

    .contacts__title {
        margin: 0 15px 49px;
    }

    .contacts__title h1 {
        font-size: 18px;
        font-weight: 500;
    }

    .contacts__title span {
        font-size: 60px;
        top: -30px;
        left: -8px;
    }

    .contacts__grid {
        margin: 0 15px 70px;
        gap: 10px;
    }

    .contacts__grid-row {
        flex-direction: column;
        gap: 10px;
    }

    .contacts__socials {
        width: 100%;
        padding: 38px 50px;
        display: flex;
        justify-content: center;
        border-radius: 20px;
    }

    .socials {
        gap: 30px;
    }

    .socials__item img {
        width: 80px;
        height: 80px;
    }

    .contacts__banner {
        min-height: 260px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .contacts__banner-button {
        width: 181px;
        height: 45px;
        font-size: 12px;
    }

    .contacts__map {
        flex-direction: column;
        gap: 45px;
        padding: 10px 10px 40px;
    }

    .contacts__address {
        justify-content: space-between;
        align-items: center;
        gap: 38px;
    }

    .contacts__address-item {
        max-width: none;
        gap: 15px;
        font-size: 16px;
        align-items: center;
    }
    .contacts__address-title {
        font-size: 12px;
    }

    .contacts__address-button {
        width: 178px;
        height: 48px;
        margin-top: 7px;
    }

    .contacts__logo {
        display: none;
    }

    #map {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 20px;
    }

    .contacts__gallery {
        margin-bottom: 50px;
    }

    .contacts__gallery-nav {
        margin-bottom: 30px;
    }

    .contacts__gallery-button {
        width: 35px;
    }

    .contacts__gallery-button svg {
        width: 12px;
        height: 12px;
    }

    .gallery-card {
        border-radius: 16px;
    }
}

@media screen and (max-width: 360px) {
    .socials {
        gap: 15px;
    }

    .contacts__banner-info {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .contacts__banner-button {
        font-size: 12px;
    }

    .contacts__address-item {
        font-size: 11px;
    }

    .contacts__address-title {
        font-size: 10px;
    }
    .contacts__address {
        gap: 20px;
    }
}