body {
    /*background-color: var(--grey-light-1);*/
    background-color: #bdc9be2b;
}

.hero-section .section-container {
    position: relative;
}

.hero-section .section-container .hero-bg {
    height: 450px;
    background-color: rgba(0, 0, 0, 0.2);

}

.hero-section .hero-bg img {
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

h1 {
    font: 700 48px/1.3 var(--all-round-gothic);
    color: var(--color-text-titles);
    text-align: center;
    text-shadow: 0 0 20px #00000075;
}

.projects-text-container {
    padding: 16px 0;
    text-align: center;
}

.projects-text-container:first-of-type {
    padding: 0 0 16px;
}

.projects-text-container h2 {
    font: 700 38px/1.3 var(--Lexend);
    color: var(--brand-grey-dark);
    /*max-width: 340px;*/
    margin: 0 auto 8px;
}

.projects-text-container p:first-child {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-grey-dark);
}

.projects-text-container p {
    /*font: 300 16px/1.3 var(--Lexend);*/
    line-height: 1.3;
}

.projects-text-container h3 {
    font: 500 20px/1.3 var(--Lexend);
    color: var(--brand-grey);
    margin: 0 auto 8px;
    max-width: 95%;
}

.projects-text-container h4 {
    font: 500 26px/1.3 var(--Lexend);
    color: var(--brand-grey);
    margin-bottom: 8px;
    text-decoration: underline;
}

.projects-text-container .title-text,
.projects-text-container .title-text * {
    font: 300 18px / 1.3 var(--Lexend);
}

/*.projects-text-container .title-text p {*/
/*    font: 300 16px / 1.5 var(--Lexend);*/
/*    color: var(--brand-grey);*/
/*}*/

/*.projects-text-container .title-text p {*/
/*    font: 400 16px/1.3 var(--Lexend);*/
/*    */
/*}*/

.projects-text-container:last-of-type {
    padding: 40px 0 16px;
}

.projects-grid-container {
    padding: 16px 0;
}

.projects-grid-container h2 {
    font: 700 26px/1.3 var(--Lexend);
    color: var(--brand-grey-dark);
    text-align: center;
    margin: 30px auto 16px;
    max-width: 600px;
}

ul.bookings-grid-list {
    list-style: none;
    margin: 0;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.book-now .cta-booking-item {
    position: relative;
    opacity: 1;
    height: 590px;
    width: 100%;
}

.cta-booking-item .image-wrapper {
    position: relative;
    border-radius: 4px;
    box-shadow: 0 0 10px 0 #00000054;
    overflow: hidden;
    width: 100%;
}

.book-now .cta-booking-item-wrapper {
    display: grid;
    grid-template-rows: 40% 60%;
    grid-template-columns: none;
    height: 100%;
    width: 100%;
}

.booking-item-image {
    border-radius: 4px;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding: 0 16px;
}

.cta-booking-item .image-wrapper {
    position: relative;
    border-radius: 4px;
    box-shadow: 0 0 10px 0 #00000054;
    overflow: hidden;
    width: 100%;
}

.booking-item-image img {
    width: 100%;
    object-fit: cover;
}

.img-overlay {
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s ease;
}

.booking-item-content {
    padding: 10px 14px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 0 15px 0 #00000054;
    background: var(--color-website-bg);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    overflow: hidden;
}

.cta-booking-item h4 {
    font: 700 20px/1.3 var(--Lexend);
    text-transform: capitalize;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.cta-booking-text {
    font: 400 17px/1.25 var(--Lexend);
    color: var(--brand-grey-dark);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

.cta-booking-details {
    margin: 10px auto;
}

.cta-booking-details p {
    font: 300 16px / 1.3 var(--Lexend);
    /*color: var(--cyan-dark-88);*/
}

.cta-booking-details p.cta-booking-price {
    color: var(--green-dark-2);
    font-weight: 500;
}

.booking-buttons.d-flex {
    margin: auto auto 0;
    gap: 12px;
    width: 100%;
}

.booking-buttons .btn-medium {
    padding: 8px 16px;
    margin: auto auto 0;
    font-size: 14px;
    width: 100%;
}

.booking-btn.btn-medium {
    background-color: var(--brand-grey);
    border: 2px solid var(--brand-grey);
}

a.read-more.btn-medium {
    color: var(--brand-grey);
    background-color: var(--color-website-bg);
    border: 2px solid var(--brand-grey);
}


img.asian-elephant-projects {
    margin: 16px auto;
    border-radius: 4px;
}


@media (min-width: 768px) {

    ul.bookings-grid-list {
        gap: 70px 24px;
    }

    .projects-text-container h2 {
        font: 700 32px/1.3 var(--Lexend);
        max-width: 600px;
        margin: 0 auto 12px;
    }

    .book-now .cta-booking-item {
        width: calc(50% - 12px);
    }
}



@media (min-width: 991px) {
    h1 {
        font: 700 80px/1.3 var(--all-round-gothic);
    }

    .projects-text-container:first-of-type {
        padding: 30px 0 16px;
    }

    .projects-text-container p:first-child {
        font-size: 30px;
    }

    .projects-grid-container {
        padding: 32px 0;
    }

    .projects-text-container {
        padding: 16px 60px;
    }

    .projects-text-container h2 {
        font: 700 48px/1.3 var(--Lexend);
        max-width: unset;
    }

    .projects-text-container h3 {
        font: 500 30px/1.3 var(--Lexend);
        max-width: unset;
    }

    .projects-text-container .title-text, .projects-text-container .title-text * {
        font: 300 22px / 1.3 var(--Lexend);
    }

    .projects-grid-container h2 {
        font: 700 32px/1.3 var(--Lexend);
        margin: 30px auto;
        max-width: 790px;
    }

    .projects-text-container h4 {
        font: 500 32px/1.3 var(--Lexend);
        margin-bottom: 12px;
    }

    ul.bookings-grid-list {
        gap: 70px 40px;
    }

    .book-now .cta-booking-item {
        height: 590px;
        width: calc(50% - 20px);
    }

    .book-now .cta-booking-item-wrapper {
        grid-template-rows: 40% 60%;
    }

    .cta-booking-item h4 {
        font: 700 24px/1.2 var(--Lexend);
    }

    .cta-booking-text {
        font: 400 18px/1.25 var(--Lexend);
    }

    .cta-booking-details p {
        font: 300 18px / 1.3 var(--Lexend);
    }

    .booking-buttons .btn-medium {
        font-size: 20px;
        height: 42px;
    }

    .projects-text-container:last-of-type {
        padding: 40px 60px;
    }

    img.asian-elephant-projects {
        margin: 30px auto;
    }
}