.heading {
    margin: 5em 0;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 3em auto;
}

.info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 1em 5em;
    gap: 1em;
}

.info div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5em;
    width: 25em;
    height: 15em;   
    text-align: center;
    padding: 3em 2em;
    border-radius: 1em;
    box-shadow: 0 0 1em 0.5em rgba(65, 64, 64, 0.041);
}

.info div i {
    display: flex;
    align-items: center;
    justify-content: center;  
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 2em;
    padding: 1em;
    width: 1em;
    height: 1em;
    border-radius:  var(--border-radius);
    margin-bottom: 1em;

}

.map {
    width: 80%;
    margin: 1em;
}

.map iframe {
    width: 100%;
    height: 30em;
    border: none;
    border-radius: var(--border-radius);
}

@media (max-width: 768px) {
   
    .info div {
        width: 100%;
    }
    .map {
        width: 100%;
    }
    .map iframe {
        height: 20em;
    }
}
