/*
:: Table of content

1.)  Media Query for Tablet
2.)  Media Query for mobile
 
 ===============================*/
/*
 1.) Media Query for Tablet
 ===============================*/
@media only screen and (min-width: 768px) and (max-width: 999px) {    
}
@media only screen and (min-width: 1000px) and (max-width: 1024px) {
}

/*
2.)  Media Query for mobile
 ===============================*/
@media only screen and (max-width: 767px) {
    .only-mobile{
        display: inline-block;
    }
    .no-mobile{
        display: none;
    }
    .page-title h1 {
        font-size: 38px;
        line-height: 0px;
    }

    #booking-section-wrapper {
        position: initial;
        margin-top: 0px;
        padding: 100px 0;
    }

    .section-padding{
        padding: 60px 0;
    }
    
    .section-title h1 {
        font-size: 38px;
    }
    .section-title p {
        font-size: 14px;
    }
    .article-padding{
        padding: 0;
    }
    .video-content{
        display: block;
    }
    .accordion{
        width: 100%;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1400px) {
}