#rangeLocation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    font-family: "Fredoka", sans-serif;
    background-image: linear-gradient(to top, white, antiquewhite);
}

@media (max-width: 1300px) {
    #rangeLocation {
        flex-direction: column;
     }
}

.iframe-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

@media (max-width: 1300px) {
    .iframe-wrapper {
        width: 100%;
     }
}

.iframe-wrapper h3 {
    font-weight: 600;
    color: rgb(92, 92, 92);
}

.iframe-wrapper iframe {
    width: 500px;
    height: 350px;
    border: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
      .iframe-wrapper iframe {
        width: 90%;
        height: 350px;
     }
}