@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');
div.banner {
    position: relative;
    height: 270px;
    background-color: #f7f7f7;
    margin-top: 60px;
    border-radius: 27px;
    overflow: hidden;
    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    & div.caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        /* background-color: #00000053; */
        z-index: 2;
        padding: 20px 30px;
        color: #fff;
    }
}
div.bg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #0000006c;
        z-index: 1;
    }
div.categories {
    margin-top: 40px;    
    margin-bottom: 50px;
    & div.child {
        height: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    & h2 {
        font-size: 27px;
        margin-bottom: 14px;
    }
    & a {
        position: relative;
        width: calc(20% - 16px);
        aspect-ratio: 2.5/1;
        background-color: #f7f7f7;
        border-radius: 17px;
        overflow: hidden;
        & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        & p {
            font-family: "Playball", cursive;
            color: #fff;
            bottom: 20px;
            left: 50%;
            position: absolute;
            z-index: 2;
            font-size: 34px;
            transform: translate(-50%, 0);
        }
    }
    & a.selected {
        opacity: 0.5;
        cursor: default;
    }
}

div.packages {
    background-color: #fff !important;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    & div.package {
        position: relative;
        width: calc(50% - 10px);
        /*height: 180px;*/
        aspect-ratio: 3.4/1;
        min-height: 200px;
        box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0, rgba(0, 0, 0, 0.06) 0 1px 2px 0;
        /*background-color: #f7f7f7;*/
        display: flex;
        gap: 20px;
        border-radius: 27px;
        overflow: hidden;
    }
}

div.package div.image {
    overflow: hidden;
    aspect-ratio: 1.2/1;
    & img {
        margin-top: 2%;
        margin-left: 2%;
        height: 96%;
        width: 96%;
        object-fit: cover;
        border-radius: 23px;
    }
}
div.package div.texts {
    flex: 1;
    margin: 14px 20px 14px 0;
    & h3 {
        font-family: "Bricolage Grotesque", serif;
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 7px;
    }
    & div.dr {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    & svg {
        height: 16px;
        width: 16px;
        display: flex;
        overflow: visible;
        fill: #353535;
    }
}
div.package div.texts div.dr p {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    color: #212121;
    & img {
        height: 16px;
        width: 16px;
    }
}
div.package div.texts p.price {
    margin-top: 14px;
    color: #454545;
    font-size: 15px;
    & span {
        color: #000;
        font-size: 22px;
        font-weight: 600;
    }
}
div.package div.links {
    bottom: 18px;
    position: absolute;
    margin-top: 14px;
    display: flex;
    gap: 14px;
}
div.package div.links a {
    font-size: 15px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    color: #212121;
    background-color: #f1f1f1;
    font-weight: 500;
}
div.package div.links a:hover {
    opacity: 0.7;
}
div.package div.links a:first-child {
    background-color: rgb(233 76 59);
    color: #fff;
    box-shadow: 0 0 2px 1px #e8e8e8;
}

div.empty {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 27px;
    width: 700px;
    gap: 20px;
    margin-bottom: 50px;
    padding: 0 20px;
    & img {
        height: 100px;
        width: 100px;
        display: flex;
        overflow: visible;
    }
    & div.texts {
        padding: 20px 0;
    }
    & div.texts h2 {
        font-size: 27px;
        margin-bottom: 10px;
    }
    & p {
        line-height: 1.5;
    }

}

@media only screen and (max-width: 1315px) {
    & div.empty {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media only screen and (max-width: 1170px) {
    div.banner {
        height: 330px;
    }
    div.categories a {
        position: relative;
        width: calc(33.33% - 14px);
        aspect-ratio: 4/1;
    }
}

@media only screen and (max-width: 1040px) {
    div.packages {
        display: grid;
        & div.package {
            width: 100%;
            aspect-ratio: auto;
            min-height: auto;
            height: 180px;
        }
    }
    div.highlights div.child {
        flex-wrap: wrap;
        & div.highlight {
            flex: auto;
            width: calc(50% - 50px);
        }

    }
}

@media only screen and (max-width: 940px) {
    div.banner {
        height: 270px;
    }
    div.categories a {
        aspect-ratio: 3/1;
    }
}

@media only screen and (max-width: 820px) {
    div.empty {
        width: calc(100% - 100px) !important;
    }
}