.get-directions {
    position: relative;
}
.directions--map {
    display: flex;
    height: max-content;
}
.directions--map iframe {
    width: 100% !important;
    height: calc(400px + (650 - 400) * (100vw - 380px) / (1920 - 380));
}
.get-directions .directions--content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.get-directions .directions--details {
    background: #000;
    color: #fff;
    padding: 1rem 1.5rem 1.5rem;
}
.get-directions h3 {
    color: #fff;
    margin: 0;
}
.directions--content .directions--address {
    display: flex;
    flex-direction: column;
    font-size: var(--font-size__base);
}
.directions--content .address--label {
    margin-bottom: 0.35rem;
    font-size: calc(var(--font-size__base) + 5px);
}
.directions--content .directions--input {
    background: #fff;
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}
.directions--content input {

}
.directions--content button {
    white-space: nowrap;
}

@media screen and (min-width: 600px) {
    .get-directions .directions--content {
        left: 2rem;
        transform: translate(0, -50%);
        width: auto;
    }
}
@media screen and (min-width: 900px) {
    .get-directions .directions--content {
        left: 3rem;
    }
}
@media screen and (min-width: 1200px) {
    .get-directions .directions--content {
        left: 6rem;
    }
}