/* XS */
@media (max-width: 767px) {

    .container {
        width: 95%;
        padding-right: 5px;
        padding-left: 5px;
        margin-right: auto;
        margin-left: auto;
    }

    h1 {
        font-size: 41px;
    }

    h2 {
        font-size: 31px;
    }

    /* Header & Menu styles start */
    .site-header {
        padding: 10px 0;
        position: relative;

    }

    .main-navigation {
        position: relative;
        z-index: 3;
    }

    .main-navigation .menu-link {
        display: block;
        height: 50px;
        width: 50px;
        background-color: #fff;
        border-radius: 50%;
        -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9;
    }

    .header-menu-container {
        display: none;
        position: fixed;
        left: 0%;
        top: 0;
        box-shadow: 0 6px 6px rgba(0, 0, 0, 0.16);
        background-color: #ffffff;
        height: 300px;
        width: 100%;
        padding: 25px;
        z-index: 1;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .add-flex {
        display: flex !important;
    }

    .header-menu-container ul {
        padding: 0;
    }

    .header-menu-container .header-menu {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin-bottom: 0;
    }

    .header-menu-container .header-btn {
        padding: 0;
    }

    .header-menu li {
        margin-bottom: 15px;
    }
    
    .header-menu li a {
        font-size: 20px;
        padding: 0;
    }

    /* Header & Menu styles end */

    .footer-bottom {
        text-align: center;
    }

    .site-footer .social-networks {
        justify-content: center;
        padding: 0;
    }
  
}

/* XS, SM */
@media (max-width: 991px) {
  
}

/* SM */
@media (min-width: 768px) and (max-width: 991px) {
  
}

/* MD */
@media (min-width: 992px) and (max-width: 1199px) {
  
}

/* MD, LG */
@media (min-width: 992px) {
  
}

/* LG */
@media (min-width: 1200px) {
  
}