/* MENU */
.menumobile {
    display: none;
}
.menu__logo h1{display: table-column;width: 100%;text-indent: -10001px;padding: 0;margin: 0;}
.menumobile img{ max-width:100%; max-height:300px; }
.menu {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 1px 1px 0px rgba(208,208,208,1);
}

.menu__logo {
    max-width: 380px;
    max-height: 300px;
}
.menu__logo img{ max-width:100%; max-height:300px; }

.menu__navigation {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.menu__navigation__item {
    margin-right: 40px;
    cursor: pointer;
    position: relative;
    height: 120px;
    font-weight: bold;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    transition: .2s ease;
    font-size: 16px;
    color: #31353c;
}

.menu__navigation__item a{
    color: #31353c;
}

/*.menu__navigation__item:hover {
    color: #ed1c24;
    box-shadow: inset 0px -4px 0px 0px #ed1c24;
}*/

.menu__navigation__item:last-child {
    margin-right: unset;
}

.menu__navigation__item .fa-chevron-down{
    color: #d0d0d0;
    font-size: 11px;
    font-weight: normal;
    margin-left: 4px;
}

.menu__navigation__dropdown__content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
    width: 300px;
    background-color: #fff;
    z-index: 3;
}

.menu__navigation__item:hover .menu__navigation__dropdown__content {
    display: flex;
}

.menu__navigation__dropdown__content__item {
    padding: 10px;
    box-shadow: 0px 2px 0px 0px rgba(208,208,208,1);
    font-size: 14px;
    width: 100%;
    color: #31353c;
    transition: .2s ease;
}

/*.menu__navigation__dropdown__content__item:hover {
    box-shadow: 0px 2px 0px 0px #ed1c24;
    color: #ed1c24;
}*/

.menu__contato {
    height: 120px;
    /* box-shadow: 0px -1px 1px 1px rgba(208,208,208,1); */
    padding: 0 40px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-weight: bold;
}

.menu__contato__icone {
    /*color: #ed1c24;*/
    font-size: 44px;
    margin-right: 20px;
}

.menu__contato__texto .um {
    color: #7b7b7b;
    font-size: 14px;
}

/*.menu__contato__texto .dois {
    color: #ed1c24;
}*/

.menu__traducao {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    position: relative;
}

.menu__traducao span {
    color: #7b7b7b;
}

.menu__traducao__icone {
    font-size: 22px;
    margin-right: 10px;
	cursor:hand;
	cursor:pointer;
}

#google_translate_element {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
}

.goog-te-gadget-simple {
    display: flex !important;
}

.goog-te-menu-value {
    display: flex !important;
}
/* END MENU */

/*MENUMOBILE*/
.menumobile {
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px 5%;
    box-shadow: 0px 1px 1px 0px rgba(208,208,208,1);
}

.menumobile__togglebtn {
    color: #000;
    font-size: 30px;
    text-decoration: none;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.menumobile__modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    display: none;
    z-index: 4;
    left: 0;
    top: 0;
}

.menumobile__modal__container {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
}

.menumobile__modal__close {
    color: #fff;
    border:none;
    background-color: transparent;
    font-size: 30px;
    position: absolute;
    top: 3%;
    right: 7%;
    cursor: pointer;
    outline: none;
}

.menumobile__modal__close i {
    font-size: inherit;
}

.menumobile__modal__link__content {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.menumobile__modal__link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 5px;
    outline: none;
    text-align: center;
    cursor: pointer;
}

.menumobile__modal__link:last-child {
    margin-bottom: 0;
}

.menumobile__modal__link .menumobile__modal__link{
    margin-bottom: 0;
}
/*END MENUMOBILE*/

@media (max-width: 1280px) {
    /*MENU*/
    .menu {
        padding: 0 1%;
    }

    .menu__navigation__item {
        margin-right: 20px;
        height: auto;
    }

    .menu__contato {
        padding: 0px;
    }
    /*END MENU*/
}

@media (max-width: 720px) {
    /*MENU*/
    .menu {
        display: none;
    }
    /*END MENU*/

    /*MENUMOBILE*/
    .menumobile {
        display: flex;
    }
    /*END MENUMOBILE*/
}