.map{
    margin-top: 56px;
    padding-inline: 15px;
    padding-bottom: 80px;
    position: relative;
}
.map::before{
    content: "";
    display: block;
    background-image: url(../images/top-letters__bg-1.webp);
    background-size: cover;
    position: absolute;
    top: calc(53px/2);
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.map::after{
    content: "";
    display: block;
    background-image : linear-gradient(to right, var(--pink), var(--pink) 6px, transparent 0px, transparent 8px),linear-gradient(to left, var(--pink), var(--pink) 6px, transparent 0px, transparent 8px);
    background-size: 12px 1px;  
    background-repeat: repeat-x; 
    background-position: left bottom,right top;
    position: absolute;
    top: calc(53px/2);
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
@media(min-width:768px){
    .map{
        margin-top: 90px;
    }
    .map::before{
        background-image: url(../images/top-letters__bg.webp);
        top: calc(80px/2);
    }
    .map::after{
        top: calc(80px/2);
    }
}

.map__container{
    background-color: var(--white);
    border-radius: 30px;
    padding: 32px 22.5px;
    margin-top: 56.3px;
    max-width: 1080px;
    margin-inline: auto;
}
@media(min-width:768px){
    .map__container{
        padding: 64px 0;
        margin-top: 49px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 80px;
    }
    .map__left,
    .map__right{
        width: calc(360%/1080*100);
    }
}
.map__link a{
    padding: 4px 0 3px 32px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    border-bottom: 1px dashed #55000C;
    text-transform: uppercase;
    position: relative;
}
.map__link a::before{
    content: "";
    display: block;
    width: 12px;
    aspect-ratio: 1;
    background-color: var(--yellow-icon);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 12px;
    translate: 0 -50%;
}
.map__link a::after{
    content: "";
    display: block;
    width: 6.4px;
    aspect-ratio: 1 / 1.75;
    background-image: url(../images/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 12px;
    translate: 0 -50%;
}
@media(min-width:768px){
    .map__link a{
        font-size: 20px;
    }
}

/* 404 */
._404__h1{
    word-break: keep-all;
    white-space: nowrap;
    line-height: 1.5;
}
._404__text{
    margin-top: 86px;
    padding-inline: 15px;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #000000;
    margin-bottom: 96px;
}
._404__text ul{
    margin-block: 24px;
}
@media(min-width:768px){
    ._404__h1{
        line-height: 1;
    }
    ._404__text{
        margin-top: 120px;
        font-size: 20px;
        max-width: 1110px;
        margin-inline: auto;
        margin-bottom: 142px;
    }
}