.contact-box{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.contact-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;
}

.contact-card h2{
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-card{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 15px;
}

.location{
    width: 500px;
    height: 200px;
}

.location iframe{
    width: 100%;
    height: 100%;
}


@media (max-width: 940px){
    .contact-box{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 500px){
    .contact-details{ 
        width: 100%; 
        padding: 1.2rem;
    }
    .contact-card{
        flex-direction: column;
        width: 100%;
    }

    .location{
        width: 400px;
        height: 200px;
        max-width: 100%;
        max-height: 100%;
    }
}