.header {
    /* margin-top: 15px;
	padding-right: 15px;
	padding-left: 15px; */
    position: absolute;
    width: 100% !important;
    height: 80px;
    background-color: transparent;
    z-index: 100;
    flex-direction: row;
    display: flex;
}

.header_content {
    width: 100%;
    height: 100%;
    background: #ffffff;
    /*border-radius: 0px 15px 15px 15px;*/
    box-shadow: 0px 20px 49px rgba(0, 0, 0, 0.67);
}

.header_content::before {
    margin-right: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

/*********************************
 Logo
*********************************/

.logo_container {
    display: inline-block;
    padding-left: 20px;
    max-width: 90% !important;
}

.logo_container img {
    max-width: 90% !important;
}

/*********************************
 Main Nav
*********************************/

.main_nav_container {
    display: inline-block;
    margin-left: auto;
    padding-right: 10px !important;
}

.main_nav_item {
    display: inline-block;
    margin-right: 1.5rem;
}

.btn_menu,
.btn-default {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 7px;
    background: linear-gradient(90deg, #6FD73A, #2CB620);
}

.main_nav_item:last-child {
    margin-right: 0px;
}

.main_nav_item a {
    font-size: 0.9rem;
    font-family: "Exo 2";
    font-weight: 700 !important;
    color: #495c63;
    text-decoration: none !important;
    line-height: 19.2px;
}

.fonte-verde {
    color: #3fa110 !important;
}

.barra {
    position: absolute;
    border-left: 1px solid #ced4da;
    height: 50px;
    top: 10px;
    right: 200px;
}

/* .main_nav_item a:hover {
	color: #0077a6 !important;
} */

/*********************************
 Header Side
*********************************/

.header_side {
    width: 279px;
    height: 100%;
    background: #ffde00;
}

.header_side img {
    width: 29px;
    height: 29px;
}

.header_side span {
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding-left: 12px;
}

/*********************************
 Hamburger
*********************************/

.hamburger_container {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    display: none;
    cursor: pointer;
}

.hamburger_container i {
    font-size: 24px;
    padding: 10px;
    color: #495c63;
}

.hamburger_container:hover i {
    /* color: #00aff2; */
}

/*********************************
4. Menu
*********************************/

.menu_container {
    position: fixed;
    top: 80px;
    margin-right: 20px;
    width: 200px;
    height: 200px;
    background: #fff;
    z-index: 99999;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: none 1s ease;
    visibility: hidden;
    opacity: 0;
    border-radius: 0px;
}

.menu_container.active {
    border-radius: 20px 0px 20px 20px;
    visibility: visible;
    opacity: 1;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    z-index: 99999999;
}

.menu {
    position: absolute;
    top: 50px;
    /* right: 30px; */
}

.menu_list {
    -webkit-transform: translateY(3.5rem);
    -moz-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    -o-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
    -webkit-transition: all 0ms ease;
    -moz-transition: all 0ms ease;
    -ms-transition: all 0ms ease;
    -o-transition: all 0ms ease;
    transition: all 1000ms ease;
    opacity: 0;
    list-style-type: none;
}

.menu_container.active .menu_list {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.menu_item {
    transition: all 200ms ease;
    padding: 7px 0px;
}

.menu_item a {
    color: #495c63;
    font-size: 14px;
    font-family: "exo 2";
    font-weight: bold;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
}

.menu_item a:hover {
    color: rgba(194, 192, 192, 0.8);
    transition-duration: 0.5s;
}

.menu_close_container {
    position: absolute;
    top: 45px;
    right: 82px;
    width: 21px;
    height: 21px;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu_close {
    top: 9px;
    width: 21px;
    height: 2px;
    background: #495c63;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.menu_close::after {
    display: block;
    position: absolute;
    top: -9px;
    left: 9px;
    content: "";
    width: 2px;
    height: 21px;
    background: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after {
    /* background: #ffde00; */
}


@media (max-width: 1290px) {
    .main_nav_item {
        display: inline-block;
        margin-right: 1.1rem;
    }
}

@media (max-width: 950px) {
    .main_nav_item {
        display: inline-block;
        margin-right: 1rem;
    }
}

@media only screen and (max-width: 820px) {
    .hamburger_container {
        display: block;
    }

    .logo_container {
        padding-left: 30px;
    }

    .main_nav_container {
        display: none;
    }

}

@media only screen and (max-width: 767px) {
    .header {
        height: 50px;
    }

    .logo_container {
        padding-left: 15px;
    }

    .menu {
        top: 0px;
        left: 5%;
    }
    .menu_item a {
        font-size: 16px;
    }
}