.contact_main_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    background-color: var(--red_default);
    padding: 3em;
    padding-top: 6em;
}
.title {
    padding: 1em;
    display: flex;
    font-size: 1.5em;
    font-weight: 700;
    align-items: center;
    
}
.title > img {
    width: 2em;
    height: 2em;
    margin-right: 2em;
}
.contact_row {
    display: flex;
    gap: 1em;
    align-items: center;
    margin-bottom: 1em;
}
.contact_row > img {
    width: 2em;
    height: 2em;
}
.hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-bottom: 2em;
}
@media (max-width: 1200px){
    .contact_main_wrapper {
        grid-template-columns: 1fr 1.3fr;
        padding: 1em;
        padding-top: 6em;
    }
    iframe {
        width: 100%;
        height: 20em;
    }
}
@media (max-width: 750px){
    .contact_main_wrapper {
        grid-template-columns: 1fr;
    }
   
}