/* CSS Document */
/*menu*/
.menu-top {
    display: flex;
    /* height: auto;
    float: center; */
   text-align: center;
   justify-content: center;
   background-color: #c4c4c4;
   padding: 5px;
}

.menu-top .menu-top-alinha {
    margin: 0px;
}

.menu-mini, .menu-mobile {
    display: none;
}

.nav {
    padding: 0px;
    list-style-type: none;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.nav li {
    float: left;
    position: relative;
}

.nav li a {
    font-family: 'SAIRA', sans-serif;
    background-color:var(--color2);
    border-radius: 5px;
    align-items: center;
    text-align: center;
    padding: 10px 10px;
    font-size: 18px;
    width: 200px;
    color: var(--color3);
    text-decoration: none;
    display: block;
    /* text-align: left; */
    transition: all 0.3s ease-out;
    margin: 0px 0px 1px 12px;
    height: 50px;
    padding: 13px 0px;
    /* border-bottom: solid 3px #fff; */
    font-weight: 400;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.nav li a:hover {
    text-decoration: none;
    color: var(--color1);
}

/* sub menu */
.nav ul {
    display: none;
    position: absolute;
    list-style-type: none;
    z-index: 11;
    background-color: var(--color1);
    width: 200px;
    margin-left: 0px;
    margin-right: 0px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-top: 0px;
    /* border-radius: 0px 0px 4px 4px; */
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4); */
}

/* .nav ul li {
    float: left;

} */

.nav ul a {
    font-family: "SAIRA", sans-serif;
    font-size: 16px;
    color: var(--color3);
    text-decoration: none;
    /* display: block; */
    /* text-align: left; */
    /* padding: 10px; */
    transition: all 0.3s ease-out;
    font-weight: normal;
    margin: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    /* line-height: 20px; */
}

.nav ul a:hover {
    color: var(--color1);
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;

}

@media screen and (max-width: 992px) {

    .menu-top {
        display: block;
        width: 100%;
        margin: 50px 0;
        position: absolute;
        float: right;
        z-index: 1000;
        
    }

    .menu-mini {
        width: 60px;
        height: 50px;
        float: right;
        background-position: center center;
        margin-top: 0px;
        margin-right: 0px;
        background-image: url(../images/icon-menu.png);
        background-repeat: no-repeat;
        display: block;
        cursor: pointer;
    }

    .nav {
        padding: 0px;
        list-style-type: none;
        width: 100%;
        display: none;
        background-color: #fff;
        overflow: auto;
        height: auto;
        position: relative;
        z-index: 100;
        box-shadow: 1px 1px 4px #CCC;
        top: 0px;
    }

    .nav ul {
        display:none;
        list-style-type: none;
        padding: 0px;
        margin: 5px 0px 0px 0px;
        width: 100%;
    }

    .nav li {
        float: none !important;
        list-style-type: none !important;
    }

    .nav li a {
        font-size: 15px;
        color: #09446c;
        text-decoration: none;
        display: block;
        float: right;
        padding: 4% !important;
        width: 100% !important;
        transition: all 0.3s ease-out;
        border-bottom: 1px solid #c4c4c4;
        text-align: right;
        background-color: #FFF;
        margin: 0px !important;
        box-sizing: border-box;
    }

    .nav li a:hover {
        color: #09446c;
    }

    .nav ul li a:hover {
        background-color: #ffffff;
        color: #09446c;
    }

    /* menu */

}

.ancora {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    width: 40px;
    height: 40px;
    position: fixed;
    z-index: 9;
    float: right;
    margin-right: 0px;
    vertical-align: bottom;
    bottom: 10px;
    text-align: center;
    background-image: url(../images/ancora.png);
    background-position: center center;
    background-repeat: no-repeat;
    display: scroll;
    right: 10%;
    background-color: #4BAE9A;
    cursor: pointer;
    transition: all 0.3s ease-in;
    border-radius: 25px;
    box-shadow: 0 0 20px #ccc;
}