.img_cnt_img, .over_hang_block, .light_texture_block {
    overflow: hidden;
}
.vidgrid {
    display: flex;
    justify-content: center;
    gap: 125px;
    flex-wrap: wrap;
}
.vidgrid div {
    text-align: center;
}
.btnbox {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.mobilewrap {
    background-color: #000;
}
.topheader #bookingnav {
    padding-inline: 24px;
    position: absolute;
    top: 0;
    right: 63px;
    left: unset;
    background: #393636;
    z-index: -1;
    min-width: unset;
    min-height: unset;
    transform: translateY(-100%);
    width: 300px;
    transition: transform 0.3s ease-in-out;
    display: flex;
    height: 87px;
}
.topheader #bookingnav.is-active {
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
.topheader #bookingnav ul {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    text-align: right;
}
.topheader #bookingnav ul li {
    padding: 5px 0;
}
.topheader #bookingnav a {
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
}
.topheader #bookingnav .booking-menu > li:hover > a {
    text-decoration: underline;
    text-underline-offset: .2rem;
}
@media (max-width: 980px) {
    .vidgrid {
        gap: 50px;
    }
    .btnbox {
        flex-wrap: wrap;
        gap: 30px;
    }
    .topheader #bookingnav {
        top: 67px;
        right: 0;
        width: 260px;
        padding-block: 15px;
        height: 100px;
        display: none;
    }
    .topheader #bookingnav.is-active {
        display: block;  
        transform: translateY(0);  
    }
    .mobilewrap {
        background-color: unset;
    }
    .light_texture_block {
        padding-bottom: 100px;
    }
}