/* Section: Getaways */
.getaways {
    background: linear-gradient(180deg, #E2E7F0 0%, #F8F9FD 100%);
    overflow-x: hidden;
}
.getaways .img-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
    margin: 0 auto;
}
.getaways .img-container {
    flex-shrink: 0;
    height: auto;
    width: 100%;
    max-width: 239px;
}
.getaways .img-container img {
    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    transition: all ease 0.5s;
    border-radius: 4px;
}
.getaways .img-container img:hover {
    border-radius: 80px;
    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.5);
}
.getaways .img-container img.logo:hover {
    border-radius: 0px;
    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.15);
}
.getaways .img-container img:nth-of-type(2) {
    margin-top: 30px;
}

