#about-content{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 30px;
    justify-content: start;
}

#about-phone-block{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


#about-phone-block h2 {
    color: var(--white-text-color);
    font-weight: lighter;
    font-size: 2em;
    margin: 10px;
}

#about-phone-block h2:nth-child(2) {
    margin-bottom: 40px;
}

#about-phone-block a {
    font-size: 1.8em;
    color: var(--yelow-accent-color)
}

#about-map-container {
    height: 100%;
    align-self: center;
}

#map {
    width: 50vw;
    height: 100vh;
}

@media (max-width: 768px) {
    #about-content {
        flex-direction: column-reverse;
        gap: 70px;
        padding-bottom: 30px;
    }

    #map {
        width: 100vw;
        height: 50vh;
    }
}