﻿/**Header**/

header {
    background: white;
}

.logo {
    margin-top: 6%;
    float: left;
    font-size: 0;
}

    .logo img {
        width: 200px;
        height: 35px;
    }

.btn-menu {
    width: 45px;
    height: 45px;
    float: right;
}

.menu {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0,0,0,0.9);
    top: 0;
    left: 0;
}

.btn-close {
    font-size: 1.5em;
    color: #fff;
    float: right;
    cursor: pointer;
    margin: 5% 5% 0 0;
}

.menu ul {
    float: left;
    text-align: left;
    width: 100%;
}

.menu li {
    padding: 1.5%;
}

.menu li a {
    font-size: 1.5em;
    color: #fff;
    padding: 1.5% 3%;
}

.menu li a:hover {
    border-radius: 5px;
    color: var(--orange);
}

.btn-login {
    border-radius: 5px !important;
    border-color: var(--orange) !important;
    color: var(--orange) !important;
}

.btn-login:hover {
    border-color: var(--orange-dark) !important;
    background-color: var(--orange);
    color: white !important;
}

/**Content*/
#content {
    padding-top: 100px;
}
/******************/
/*footer*/

.separator {
    width: 95%;
    height: 2px;
    margin: 2%;
}

.footer-col h3 {
    margin-bottom: 5%;
}

.footer-list {
    line-height: 2em;
    font-size: 1.1em;
}

.social-network li {
    display: inline
}

.copy-right
{
    font-size : 12px;
}

/****/
@media screen and (min-width:768px) {
    /*header*/
    header {
        position: fixed;
    }

    .logo {
        margin-top: 1%;
        margin-bottom: 1%;
    }

    .btn-menu {
        display: none;
    }

    .btn-close {
        display: none;
    }

    .menu {
        width: auto;
        height: 56px;
        line-height: 56%;
        float: right;
        display: block;
        position: static;
        background-color: white;
    }

    .menu li {
        padding: 0;
        padding-top: 5%;
        float: left;
    }

    .menu li a {
        color: var(--blue);
        font-size: 1em;
        font-weight: bold;
        padding: 15px;
    }

    .menu li a:hover {
        color: var(--orange);
        border-radius: 0px;
        border-bottom: 2px solid var(--orange);
    }
    /**************************/
    /**********footer*********/
    .footer-col {
        width: 31%;
        margin-left: 1%;
        margin-right: 1%;
    }
}
