.slide {
    height: max(650px, 50vh);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.slide:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
    z-index: 2;
}

.title {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.title .line2 {
    display: block;
    font-weight: 300;
    margin-left: 18rem;
}

.buttons {
    margin-top: 30px;
    display: flex;
    margin-top: -3rem;
    flex-direction: column;
    gap: 15px;
}

.location {
    display: flex;
    position: relative;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 20px 25px;
    min-width: 350px;
    z-index: 2;
    border-radius: 35px 0 0 0;
}

.location::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 100%;
    width: 50px;
    height: 50px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 20px 0 white
}

.location-texts {
    display: flex;
    margin-left: 20px;
    flex-direction: column;   /* gap: 5px; */
}

.location-city {
    font-size: 1.5rem;
}
@media (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }
    .title .line2 {
        margin-left: 5rem;
    }

    .buttons {
        margin-top: 1.5rem;
        align-items: center;
    }
    .location {
        min-width: 250px;
    }
}