/* ------------------ Media Queries ------------------ */

/* Small devices (phones) */
@media (max-width: 750px) {
    #location_block {
        flex-direction: column;
        padding: 20px;
    }
}

/* Medium devices (tablets, laptops) */
@media (min-width: 750px) { 
    #location_block {
        flex-direction: row;
        padding: 40px;
    }
}
 
/* Large devices (desktops) */
@media (min-width: 1400px) { 
    #location_block {
        flex-direction: row;
        padding: 40px;
    }
}

#location_block {
    display: flex;
    margin-top: 40px;
    background-color: #1E1C1C;
    border-radius: 10px;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}
.location_div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    flex: 1 0 260px;
    max-width: 100%;
}
#location_block h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin: 0;
}
#location_block p {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 20px 0;
    color: white;
}
#location_block .text_group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}
#map {
    display: flex;
    justify-content: center;
    flex: 1 0 260px;
}
#location_block iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.3);
}

.download {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px;
    background: #a4b381;
    color: white;
    border-radius: 10px;
	border: none;
	cursor: pointer;
    font-family: 'Merriweather', serif;
    font-size: 16px;
    margin: 0;
    justify-self: center;
}