section {
    margin-top: calc(60px + 20px);
    min-height: calc(100vh - 80px);
}
h1 {
    font-family: "Bricolage Grotesque", serif;
    font-size: 32px;
    font-weight: 600;
}
div.images {
    margin-top: 20px;
    height: auto;
    /*aspect-ratio: 3/1;*/
    display: flex;
    flex-direction: row;
    gap: 7px;
}
div.images div.sub-images {
    flex: 1;
    overflow: hidden;
    img {
        height: 100%;
        width: 100%;
        display: flex;
        object-fit: cover;
    }
}
div.images div.sub-images:first-child {
    background-color: red;
    border-radius: 27px 0 0 27px;

}
div.images div.sub-images:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 7px;
    img {
        height: auto !important;
    }
    & img:nth-child(2) {
        border-radius: 0 27px 0 0;
    }
    & img:nth-child(4) {
        border-bottom-right-radius: 27px;
    }
}

section div.child {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}
section div.child div.sub-child {
    flex: 1;
    h2 {
        font-size: 22px;
        font-weight: 600;
    }
    h3 {
        margin-top: 10px;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
    }
}
section div.child div.sub-child:nth-child(2) {
    flex: none;
    background-color: #fff;
    width: 450px;
}
section div.child div.booking {
    padding: 25px;
    border: 1px solid #e6e6e6;
    border-radius: 17px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}
section div.child div.sub-child:nth-child(2) div.query {
    background-color: #f2f2f2;
    border-radius: 17px;
    margin-top: 20px;
    padding: 25px;
    & p:first-child {
        font-weight: 600;
        color: #000;
        font-family: "Bricolage Grotesque", sans-serif;
    }
    & svg {
        height: 18px;
        width: 18px;
        display: flex;
        overflow: visible;
        fill: #454545;
    }
}
section div.child div.sub-child:nth-child(2) div.query div {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    & p {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 15px;
    }
    a {
        color: #212121;
        font-weight: 500;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
}
section div.child div.booking p.amount {
    & span {
        display: block;
    }
    & span:first-child {
        font-size: 26px;
        font-weight: 600;
        font-family: "Bricolage Grotesque", sans-serif;
    }
    & span:last-child {
        font-size: 16px;
        color: #353535;
        margin-top: 3px;
    }
}
section div.child div.booking a {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: rgb(233 76 59);
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    justify-content: center;
    height: 37px;
    text-decoration: none;
    margin-top: 20px;
}

div.highlighted-tab {
    height: auto;
    background-color: #f7f7f7;
    margin-top: 30px;
    border-radius: 17px;
    position: relative;
}
/*div.highlighted-tab.visibility[data-visibility="hidden"] {*/
div.highlighted-tab.visibility {
    & button.toggle-visibility {
        padding-bottom: 25px !important;
    }
    & button.toggle-visibility span.icon {
        transform: rotate(180deg);
    }
    & div.contents {
        display: none;
    }
}
div.highlighted-tab.visibility[data-visibility="visible"] {
    & button.toggle-visibility {
        padding-bottom: 15px !important;
    }
    & button.toggle-visibility span.icon {
        transform: rotate(0deg);
    }
    & div.contents {
        display: block;
    }
}
div.highlighted-tab.visibility button.toggle-visibility {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 25px 25px 15px 25px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    & svg {
        height: 16px;
        width: 16px;
        display: flex;
        overflow: visible;
    }
    & .title {
        font-family: "Bricolage Grotesque", sans-serif;
    }
}

div.highlighted-tab.visibility div.contents {
    padding: 5px 25px 25px 25px;
}
div.highlighted-tab.visibility button.toggle-visibility:hover span.title{
    text-decoration: underline;
}
div.highlighted-tab.points {
    padding: 25px;
}
div.highlighted-tab.points p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-size: 15px;
    margin-bottom: 20px;
    color: #212121;
    & svg {
        height: 20px;
        width: 20px;
        fill: #353535;
        display: flex;
    }
}
div.highlighted-tab.points p:last-child {
    margin-bottom: 0;
}

div.highlighted-tab div.customer-care {
    margin-top: 20px;
    font-size: 15px;
    color: #292929;
    line-height: 23px;

    & a.phone-number {
        display: block;
        font-size: 15px;
        margin-top: 7px;
        color: #212121;
    }
}
p.point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    margin-bottom: 14px;
    & span.dot {
        color: #454545;
    }
}
p.point:last-child {
    margin-bottom: 0;
}
/*div.food-list div.contents {*/
/*    padding-top: 0 !important;*/
/*}*/
div.food-list p.day-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 14px;
    margin-top: 25px;
}
div.food-list p.day-name:first-child {
    margin-top: 0;
}
div.food-list p.items {
    color: #212121;
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    margin-bottom: 14px;
    & span.name {
        width: 100px;
        font-weight: 500;
        font-size: 16px;
        font-family: "Bricolage Grotesque", sans-serif;
    }
}
div.food-list p.items:last-child {
    margin-bottom: 0;
}

div.departure p.info {
    font-size: 15px;
    color: #212121;
    & span {
        font-size: 16px;
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 600;
        color: #000;
    }
}
div.departure p.info:first-child {
    margin-bottom: 20px;
}
div.departure p.info:last-child {
    margin-top: 20px;
}

div.departure div.location {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;

    & svg {
        margin-top: 1px;
        height: 18px;
        width: 18px;
        display: flex;
        fill: #353535;
    }
    & a {
        text-decoration: none;
    }
    & a:hover {
        text-decoration: underline;
        color: #000;
    }
    & .texts span:nth-child(1) {
        font-weight: 500;
        font-size: 16px;
        display: block;
        margin-bottom: 5px;
        font-family: "Bricolage Grotesque", sans-serif;
        color: #121212;
    }
    & .texts span:nth-child(2) {
        font-weight: 400;
        font-size: 15px;
        color: #353535;
    }
}

@media only screen and (max-width: 1140px) {
    section div.child div.sub-child:nth-child(2) {
        width: 400px;
    }
}
@media only screen and (max-width: 1040px) {
    h1 {
        font-size: 28px;
    }
    section div.child {
        display: grid;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    section div.child div.sub-child:nth-child(2) {
        order: 1;
        width: auto;
        & div.booking {
            padding: 0;
            box-shadow: none;
            border: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;

            & a {
                width: 40%;
                margin-top: 0;
            }
        }
    }
    section div.child div.sub-child:nth-child(1) {
        order: 2;
    }
}