#main h2.title,
#main h3.title,
#main h4.title,
#main h5.title,
#main h6.title{
    text-transform: capitalize;
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 6px;
    text-align: center;
    letter-spacing: .6rem;
}

#main p.text{
    text-align: center;
    margin-bottom: 7px;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-md);
}


section .card,
section .card .card-header,
section .card .card-body,
section .card .card-footer{
    background-color: var(--light);
    border: none;
    border-radius: 0;
    padding: 0;
}

section .card{
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 5px;
}

#main #tour-pl .grid-wrapper,
#main #cat-wrapper .cat-grid-wrapper
{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    margin-top: 1.4rem;
}


#header .mobile-toggle,
#header .close-sidebar-btn{
    display: none;
}

@media screen and (max-width:1000px) {
    body{
        position: relative;
    }


    #header .mobile-toggle
    {
        display: block;
        font-size: var(--font-size-xxl);
    }

    #header .menu-wrapper.m-sidebar
    {
        position: fixed;
        right: 0;
        top: 0;
        height: 100%;
        width: 0;
        background-color: var(--white);
        z-index: 100;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transition: all 0.9s ease;
        overflow: hidden;
    }

    #header .close-sidebar-btn{
        display: block;
        margin: 0 auto;
        font-size: var(--font-size-xxl);
        color: var(--primary);
        margin-bottom: 20px;
        border-radius: 50%;
        padding: 6px 18px;
        margin-right: 10px;
        margin-top: 20px;
    }


    #header .middle-header-wrapper .content .menu .menu-item{
        display: block;
        width: 100%;
        margin: 12px 0;
        font-size: var( --font-size-lg);
    }

    #header .menu-wrapper.m-sidebar.active{
        width: 98%;
        overflow: visible;
    }
}



@media screen and(max-width: 775px) {
      #footer .footer-row{
        align-items: flex-start;
    }


    #main #abt .grid-wrapper .abt-rt-wrap,
    #main #intro .grid-wrapper .content-wrapper,
    #main #featured-ads .prd-wrapper .grid-content .card .card-body .flex-wrapper .prc-content .tmf
    {
        margin-left: unset;
    }
}



@media screen and (max-width: 455px) {
     #footer .footer-row{
        flex-direction: column;
     }

     #footer .footer-row{
        display: block;
     }

     #footer .footer-row .column.fs,
     #footer .footer-row .column.ls{
        flex: 1;
        width: 100%;
        max-width: 100%;
     }

       #footer .footer-row .column.ls{
        margin-top: 12px;
       }

     #footer .footer-row .column.ls .title{
        font-size: 16px;
     }

     .large-padding-layout{
        padding: 0;
        margin: 3rem 0;
     }
}


