.custom-fifth {
    width: 20%; 
    float: left; 
    box-sizing: border-box; 
    padding: 10px;
}
.custom-four-fifth {
    width: 80%; 
    float: left; 
    box-sizing: border-box; 
    padding: 10px;
}
.custom-quarter {
    width: 25%;
    float: left; /* Float columns to make them inline */
    box-sizing: border-box; /* Include padding and borders within the width */
    padding: 10px; 
}
.custom-third {
    width: 33%; 
    float: left; 
    box-sizing: border-box; 
    padding: 10px; 
}
.custom-two-third {
    width: 66%; 
    float: left; 
    box-sizing: border-box; 
    padding: 10px; 
}
.custom-half {
    width: 50%; 
    float: left; 
    box-sizing: border-box; 
    padding: 10px; 
}
.custom-three-quarter {
    width: 75%; 
    float: left;
    box-sizing: border-box; 
    padding: 10px;
}
.custom-full {
    width: 100%; 
    float: left; 
    box-sizing: border-box; 
    padding: 0px; 
}
.btn-book-direct{
    width:200px;
    margin-top:29px;
    line-height:0px!important;
    padding:0px;
}

/* Tablets */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .custom-quarter {
        width: 50%!important;
    }
    .btn-book-direct{
        width:200px;
        margin-top:29px;
    }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
    .custom-half {
    width: 100%; 
    }
    .custom-quarter {
        width: 100%;
        padding:0px;
    }
    .btn-book-direct{
        width:200px;
        margin-top:10px;
    }
}