.container{
    margin: 0 auto;
}

iframe{
    width: 100%;
}

.spacer{
    height: 50px;
}

.map{
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 50px;
}

.map .contact-details{
    width: 40%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contact-details a{
    text-decoration: none;
    color: #000;
    margin-bottom: 12.5px;
}

/* .map a{
    width: auto;
} */

.contact-details h4{
    font-size: 2em;
    font-weight: 500;
    margin-bottom: 25px;
}


@media (min-width:1200px) {
    
    
    
    iframe{
        width: 60%;
    }

    .map{
        flex-direction: row;
    }
    
    .contact-details h4{
        font-size: 3em;
    }

    #tel,
    #mail{
        font-size: 1.5em;
        transition: transform 0.3s ease;
    }

    #tel:hover,
    #mail:hover{
        color: var(--highlight-color,#f1b40c);
    }

}

