 /*  ========================= Responsive ========================= */
@media screen and (min-width: 768px) {
    .main-area {
        width: 750px;
    }
    .footer {
        padding: 15px 25px;
    }



}

@media screen and (min-width: 992px) {
    .carousel-item img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .left-menu-content > ul > li:not(.active) {
        display: block;
    }
    .left-menu-content > ul > li.active > a::before {
        display: block;
    }

    body {
        padding-top: 120px;
    }

    .main-area {
        width: 970px;
    }

    .header {
        height: 120px;
        padding: 11px 25px 15px 25px;
    }

    /* Logo */
    .header .logo-container {
        padding-top: 20px;
    }
    .header .logo-ysc {
        height: 60px;
    }
    .header .logo-ywca {
        height: 54px;
    }

    /* Reduce header height when scroll down */
    .header.scroll {
        background: rgba(255,255,255,0.9);
        box-shadow: 0 0 8px #777;
        height: 100px;
    }
    .header.scroll img {
        height: 95%;
    }

    /* Menu Item */
    .header .top-nav ul li {
        float: left;
        margin: 0 0 10px 20px;
    }

    /* Hide navigation side menu */
    .responsive-nav-menu {
        display: none;
    }

    /* Home */
    .home-box {
        font-size: 15px;
        margin-bottom: 40px;
    }
    .home-box .title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .home-box-group {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    /* Footer */
    .footer .left ul li {
        margin-right: 20px;
    }
    .footer .right img {
        width: auto;
    }


}




/* Responsive menu button */
.menu-responsive-btn {
    cursor:pointer;
    position: absolute;
    right: 10px;
    top: 5px;
    background: url(../images/menu-icon.png) no-repeat center;
    width: 40px;
    height: 40px;
    outline:none;
    border:none;
/*  border-radius: 5px;
    text-indent: -9999px;*/
}

.responsive-nav-menu {
    position: relative;
    width: 100%;
    height: 0;
    z-index: 6000;
}
.responsive-nav-menu ul.responsive-nav-ul {
    visibility: hidden;
    opacity: 1;
    /*margin: 0;*/
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60%;
    overflow: auto;
    /*background: #fff;*/
    z-index: 5600;
    color: #231815;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
/*    -webkit-box-shadow: 0 0 8px 0 rgba(80, 80, 80, 0.5);
    -moz-box-shadow: 0 0 8px 0 rgba(80, 80, 80, 0.5);
    box-shadow: 0 0 8px 0 rgba(80, 80, 80, 0.5);*/
}

.drawer-opened .responsive-nav-menu ul.responsive-nav-ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

/*
    Overlay - Only visible when side menu is opened
*/
#overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    cursor: pointer;
    transition: visibility 0.4s, opacity 0.4s;
}
.drawer-opened #overlay {
    visibility: visible;
    opacity: 1;
}

 .pagination {
     display: initial;
 }

 .pagination li{
     flex-direction: row;
     display: inline-block;
 }