@media(max-width:768px) {
    .pageContent {
        padding: 1rem;
    }



    .gallery .col-lg-3 {
        width: 100%;
    }
}

@media(max-width:800px) {
    header.desktop {
        display: none;
    }

    header.responsive {
        display: block;
    }

    header.responsive .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    header.responsive .tools {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px dashed #DDD;
        background: #f9f9f9;
        padding: 10px 10px;
        border-bottom: 1px dashed #DDD;
    }

    header.responsive .tools .search .mobileSearch {
        display: none;
    }

    header.responsive .tools .left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-direction: row-reverse;
    }

    header.responsive .tools .left .call i {
        float: left;
        /* transform: rotate(-30deg); */
        /* width: 30px; */
        /* height: 30px; */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 6px;
    }

    header.responsive .tools .search i {
        /* width: 20px; */
        /* height: 30px; */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }


    header.responsive .tools .left .call a {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
    }

    .pageContent h2,
    .pageContent h3,
    .pageContent h4 {
        text-align: right;
    }
}

@media(min-width:801px) {
    .responsive {
        display: none;
    }
}