/** ----- CONTAINERS ----- **/

/* main */
#header {
    overflow: visible;
    position: fixed;
    width: 100%;
    float: left;
    z-index: 101;
}


/*** ----- INNER -----  ***/
#header .main {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 0px;
}

    /* index */
    #header .main-2 {
        width: 100%;
        background-color: #333333;
        border-bottom: 1px solid #303030;
        padding: .6vw 40px;
        box-shadow: rgba(14, 30, 37, 0.50) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
        float: left;
    }


/*** ----- CONTENT -----  ***/
#header .content {
    overflow: visible;
    height: 80px;
    list-style-type: none;
}

    /* index */
    #header .content-2 {
        overflow: hidden;
        list-style-type: none;
    }


/*** ----- LOGO -----  ***/
#header .logo {
    overflow: hidden;
    position: relative;
    margin-top: 11px;
    margin-left: -2px;
    float: left;
    z-index: 1;
}
    #header .logo img {
        width: 230px;
    }

    /* index */
    #header .logo-2 {
        overflow: hidden;
        position: relative;
        margin-top: .1vw;
        float: left;
        z-index: 1;
    }
        #header .logo-2 img {
            width: 18vw;
        }


/*** ----- NAV -----  ***/

/*index */
#header .nav {
    overflow: visible;
    position: relative;
    margin: 0;
    margin-top: 2.4vw;
    color: #ffffff;
    font-size: 1.4vw;
    text-align: center;
}
    #header .nav a {
        text-transform: capitalize;
        border-radius: 500px;
        padding: 1.3vw 1.6vw;
    }
        #header .nav a:hover {
            color: #6ea833;
        }

    .nav-clr {
        background-color: #6ea833;
        color: #ffffff !important;
        padding: 1.2vw 1.7vw;
    }

    /* ext nav */
    #header .nav .nav-ext {
        display: none;
    }


/*** ----- BUTTON -----  ***/

/*index */
#header .button-2 {
    overflow: hidden;
    position: relative;
    margin-top: 1.05vw;
    font-size: 1.4vw;
    float: right;
    z-index: 1;
}
    #header .button-2 button {
        margin-left: 1.3vw;
        font-size: 1.4vw;
        border-radius: 500px;
        padding: 1.3vw 1.4vw;
    }
    #header .button-2 a {
        color: #ffffff;
    }
        #header .button-2 a:hover {
            color: #6ea833;
        }


/*** ----- MENU -----  ***/
#header .menu {
    overflow: hidden;
    margin: 0;
    padding-top: 40px;
    text-align: center;
}
    #header .menu a {
        margin-right: 30px;
        font-size: 16px;
        color: #8793a1;
        font-weight: 400;
        text-transform: uppercase;
    }
    #header .menu a:hover {
        color: #ffffff;
    }
        #header .menu .active {
            color: #ffffff;
            font-weight: 500;
        }


/* MOBILE MENU */

/* header */
.m-menu {
    overflow: hidden;
    position: fixed;
    width: 100%;
    box-shadow: rgba(14, 30, 37, 0.50) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    float: left;
    z-index: 102;
}
    .m-menu .bg {
        overflow: hidden;
        position: relative;
        width: 100%;
        background-color: #333333;
        text-align: center;
        padding: 20px 0px 15px 0px;
        float: left;  
    }
        .m-menu img {
            width: 230px;
        }

/* list */
.m-menu .dropdown {
    overflow: visible;
    position: relative;
    margin-top: -39px;
    width: 100%;
    float: left;
}

    /* button */
    .m-menu #mico {
        overflow: hidden;
        position: absolute;
        top: -36px;
        left: 15px;
        font-size: 30px;
        color: #ffffff;
    }
        .m-menu #mico::before {
            content: '\f0c9';
            font-family: 'FontAwesome';
            font-style: normal;
            font-weight: normal;
        }
        .m-menu #mico :hover::before {
            color: #6ea833;
            cursor: pointer;
        }

    /* content */
    .m-menu .dropdown-content {
        overflow: hidden;
        position: relative;
        margin-top: 39px;
        width: 100%;
        border-top: 2px solid #6ea833;
        float: left;
    }
        .m-menu .dropdown-content .inner {
            overflow: hidden;
            background-color: #ffffff;
            border-bottom:1px solid #e0e0e0;
            display: block;
        }
            .m-menu .dropdown-content a {
                color: #333333;
                font-size: 18px;
                border: none;
                border-bottom: 1px solid #e5e5e5;
                padding: 17px 25px;
                display: block;
            }
                .m-menu .dropdown-content a:last-child {
                    border-bottom: 0px;
                }
                    .m-menu .dropdown-content a:hover {
                        background-color: #f0f0f0;
                    }

    /* hover menu */
    .m-menu .dropdown-content:hover {
        display: block;
    }


/*** ----- DASHBOARD -----  ***/

/* USER SECTION */
#header .button {
    overflow: visible;
    position: relative;
    margin-top: 14px;
    float: right;
}

/* container */
#header .button .con {
    position: relative;
    color: #777777;
    float: right;
}

    /* ico links */
    #header .button .link {
        margin-top: 4px;
        margin-right: 10px;
        height: 46px;
        width: 46px;
        background: #ffffff;
        font-size: 22px;
        text-align: center;
        border: 1px solid #e5e5e5;
        border-radius: 500px;
        padding-top: 9px;
        float: left;
    }
        #header .button .link:hover {
            background: #ffffff;
            color: #38404a;
        }

        /* active */
        #header .button .active > .link {
            background: #ffffff;
            color: #38404a;
        }


/*** --- FOOTER ---  ***/
#footer {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #333333;
    border-top: 3px solid #6ea833;
    float: left;
}

    #footer .inner {
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 4vw 40px;
        float: left;
    }

    /* text */
    #footer .inner .foot-head {
        overflow: hidden;
        position: relative;
        color: #6ea833;
        font-size: 1.1vw;
        font-family: 'sol-500';
        text-transform: uppercase;
        display: block;
    }

    #footer .inner .foot-list {
        overflow: hidden;
        position: relative;
        margin-top: 1vw;
        color: #888888;
        font-size: 1.2vw;
        font-family: 'sol-400';
        text-transform: capitalize;
        display: block;
    }

        #footer .inner .foot-list a {
            position: inherit;
            margin-top: 1.2vw;
            transition: 0.3s;
            display: block;
        }
            #footer .inner .foot-list a:hover {
                color: #ffffff;
                cursor: pointer;
            }

    /* sec 1 */
    #footer .inner .sec-1 {
        overflow: hidden;
        position: relative;
        width: calc( 38% - 1vw);
        margin-left: 1vw;
        padding-right: 4vw;
        float: left;
    }

        #footer .inner .sec-1 img {
            width: 16vw;
        }

        #footer .inner .sec-1 span {
            overflow: hidden;
            position: relative;
            margin-top: 1vw;
            width: 100%;
            color: #999999;
            font-size: 1.2vw;
            float: left;
        }

        #footer .inner .sec-1 .social {
            overflow: hidden;
            position: relative;
            margin-top: 1.5vw;
            margin-left: -.5vw;
            width: calc(100% + .5vw);
            color: #ffffff;
            text-align: center;
            float: left;
        }

            #footer .inner .sec-1 .social div {
                overflow: hidden;
                position: relative;
                margin-left: .5vw;
                width: calc(18% - .8vw);
                background: #444444;
                font-size: 1.3vw;
                text-align: center;
                border-radius: 500px;
                padding: .7vw 0vw;
                transition: 0.4s;
                float: left;
            }
                #footer .inner .sec-1 .social div i {
                    background: transparent;
                }

                #footer .inner .sec-1 .social div:hover {
                    background: #555555;
                    cursor: pointer;
                }

    /* sec 2 */
    #footer .inner .sec-2 {
        overflow: hidden;
        position: relative;
        margin-left: 1vw;
        width: calc( 14% - 1vw);
        float: left;
    }

    /* sec 3 */
    #footer .inner .sec-3 {
        overflow: hidden;
        position: relative;
        margin-left: 1vw;
        width: calc( 14% - 1vw);
        float: left;
    }

    /* sec 4 */
    #footer .inner .sec-4 {
        overflow: hidden;
        position: relative;
        margin-left: 1vw;
        width: calc( 34% - 1vw);
        float: left;
    }

        #footer .inner .sec-4 .posts {
            overflow: hidden;
            position: relative;
            margin-top: 1.3vw;
            width: 100%;
            float: left;
        }

            #footer .inner .sec-4 .posts div {
                overflow: hidden;
                position: relative;
                margin-top: 1vw;
                width: 100%;
                background-color: #444444;
                text-transform: capitalize;
                border-radius: 1vw;
                padding: 1.5vw;
                transition: 0.4s;
                float: left;
            }
                #footer .inner .sec-4 .posts div:hover {
                    background-color: #555555;
                    cursor: pointer;
                }

            #footer .inner .sec-4 .posts span {
                position: relative;
                display: block;
            }

                #footer .inner .sec-4 .posts span:nth-child(1) {
                    color: #ffffff;
                    font-size: 1.2vw;
                }

                #footer .inner .sec-4 .posts span:nth-child(2) {
                    margin-top: .5vw;
                    color: #dbed94;
                    font-size: 1.1vw;
                    font-family: 'sol-500';
                }

/* sub links */
#footer .links {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #444444;
    color: #999999;
    font-size: 1.15vw;
    padding: 2vw 40px;
    float: left;
}

    #footer .links div:nth-child(1) {
        overflow: hidden;
        position: relative;
        float: left;
    }

    #footer .links div:nth-child(2) {
        overflow: hidden;
        margin: 0;
        text-align: right;
    }
        #footer .links div:nth-child(2) a {
            margin-left: 1.2vw;
        }
            #footer .links div:nth-child(2) a:hover {
                color: #ffffff;
            }













/** ----- BREAKPOINTS -----**/

/* Tablet */
@media screen and (min-device-width: 650px)
and (max-device-width: 1024px) {


}

/* Mobile */
@media screen and (max-width: 750px) {


    /*** FOOTER ***/
    #footer{
        margin-top: 0px;
    }
    #footer .inner {
        padding: 50px 20px;
    }
    
        /* sections */
        #footer .inner :is(.sec-1, .sec-4) {
            margin-top: 50px;
            margin-left: 0px;
            width: 100%;
            padding: 0px;
        }
        #footer .inner :is(.sec-2, .sec-3) {
            margin-top: 50px;
            margin-left: 0px;
            width: 50%;
            padding: 0px;
        }
        #footer .inner :is(.sec-3) {
            padding-left: 20px;
        }

        /* text */
        #footer .inner .foot-head {
            font-size: 19px;
        }
        #footer .inner .foot-list {
            margin-top: 10px;
            font-size: 19px;
        }
        #footer .inner .foot-list a {
            margin-top: 10px;
        }

        /* sec 1 */
        #footer .inner .sec-1 {
            margin-top: 0px;
        }
        #footer .inner .sec-1 img {
            width: 60%;
        }
        #footer .inner .sec-1 span {
            margin-top: 20px;
            font-size: 19px;
        }
        #footer .inner .sec-1 .social {
            margin-top: 25px;
            margin-left: -10px;
        }
        #footer .inner .sec-1 .social div {
            margin-left: 10px;
            width: calc(25% - 10px);
            font-size: 25px;
            border-radius: 10px;
            padding: 20px 0px;
        }
 
        /* sec 4 */
        #footer .inner .sec-4 .posts {
            margin-top: 10px;
        }
        #footer .inner .sec-4 .posts div {
            margin-top: 15px;
            border-radius: 10px;
            padding: 25px 20px;
        }
            #footer .inner .sec-4 .posts span:nth-child(1) {
                font-size: 20px;
            }
            #footer .inner .sec-4 .posts span:nth-child(2) {
                margin-top: 10px;
                font-size: 18px;
            }

        /* sub */
        #footer .links {
            font-size: 16px;
            padding: 20px 0px;
        }
            #footer .links div:nth-child(1) {
                overflow: hidden;
                position: relative;
                width: 100%;
                text-align: center;
                float: left;
            }
            #footer .links div:nth-child(2) {
                overflow: hidden;
                position: relative;
                width: 100%;
                margin: none;
                text-align: center;
                padding: 15px;
                float: left;
            }
            #footer .links div:nth-child(2) a {
                overflow: hidden;
                position: relative;
                margin-top: 15px;
                margin-left: 0;
                background-color: #333333;
                border-radius: 6px;
                padding: 15px 0px;
                display: block;
            }








}