#contacts .contact img{
    width: 50px;
    aspect-ratio: 1;
}
#contacts .contact{
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: left;
    gap: 30px;
    margin: 15px 0;
}
#contacts .contact a{
    text-decoration: underline;
    color: black;
    font-size: 17px;
    text-decoration-thickness: 1px;
}
#contacts .place{
    width: 100%;
}
#contacts .map{
    aspect-ratio: 3 / 2;
    width: 100%;
    margin-top: 20px;
    box-shadow: 1px 1px 3px 2px #00000073;
}
#contacts .map ~ span{
    text-align: center;
}
#contacts .contacts{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
@media only screen and (min-width: 720px){
    #contacts .contacts{
        flex-direction: row;
        /* flex-wrap: wrap; */
        align-items: center;
        justify-content: center;
        padding: 0 min(5vw, 1%);
    }
    #contacts .contact{
        gap: 20px;
    }
    #contacts .contact:nth-child(2){
        flex-grow: 1;
        justify-content: center;
    }
    #contacts .visuals{
        display: flex;
        align-items: center;
    }
    #contacts .map-c{
        width: 100%;
    }
    #contacts .map{
        aspect-ratio: 3 / 1;
        max-height: 500px;
        position: relative;
        margin-top: 0;
    }
    #contacts .map-c span{
        position: absolute;
        bottom: -5px;
        right: 2px;
        transform: translateY(100%);
        width: max-content;
    }
    #contacts .decor1, #contacts .decor2{
        position: absolute;
        bottom: -20px;
        right: 0;
        background-image: url('/img/decor/checker.png');
        width: 60vw;
        height: 40vh;
        max-width: 700px;
        max-height: 700px;
        transform: translateX(10%) translateY(10%);
    }
}