html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
}

html,
body {
height: 100%;
width: 100%;
box-sizing: border-box;
scroll-behavior: smooth;
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
color: #fff;
}

.vimeo-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
overflow: hidden;
}

.vimeo-wrapper iframe {
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home_lazy-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;   
}

.home_lazy-loading {
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu {
width: 100%;
/* height: 100%; */
margin: 0;
padding: 0;
position: fixed;
z-index: 100;
}

.menu_logo {
margin: 0;
padding: 0;
top: 50px;
left: 5.5vw;
position: fixed;
}

/* .menu_logo a img {
height: 3.5rem;
} */

.menu_toggler {
margin: 0;
position: fixed;
top: 50px;
padding-right: 5.5vw;
width: 100%;
display: flex;
justify-content: flex-end;
}

.menu_toggle {
height: 2rem;
filter:drop-shadow(1.5px 1.5px 1.5px rgba(0,0,0,0.25))
}

.menu_close {
height: 2.5rem;
z-index: 2;
}

.menu_itens {
display: flex;
align-items: center;
justify-content: flex-end;
height: 100%;
z-index: 1;
opacity: 1;
}

.menu_hide {
display: none;
opacity: 0;
transition: opacity 2s ease 0.2s;
}

.menu_secoes {
padding-top: 7em;
display: flex;
flex-direction: column;
align-items: flex-end;
margin: 0;
background-color: black;
height: 100vh;
padding-left: 5.5vw;
padding-right: 5.5vw;
}

.menu_languages {
display: flex;
margin-bottom: 3em;
font-size: 1.2rem;
}

.menu_language--margin {
margin-right: 20px;
}

.menu_language {
text-decoration: none;
list-style-type: none;
}

/* .menu_secao {
text-decoration: none;
list-style-type: none;
font-size: 1.4rem;
text-transform: uppercase;
padding-bottom: 2rem;
letter-spacing: 0.2rem;
color: #555555;
} */

.menu-item{
    text-decoration: none;
    list-style-type: none;
    font-size: 1.4rem;
    text-transform: uppercase;
    padding-bottom: 2rem;
    letter-spacing: 0.2rem;
    color: #555555;
    }

.menu-item a{
    text-decoration: none;
    color: #555555;
    }

.menu-item a:hover{
    color: #fff;
}

.menu_icones-redes {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 70px;
}

.menu_redes-sociais {
display: flex;
align-items: center;
padding-bottom: 5px;
}


.menu_rede-social {
text-decoration: none;
list-style-type: none;
}

.menu_rede-social--margin {
margin-right: 10px;
}

.menu_rede-social--img {
height: 25px;
}

.home_texto {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
justify-content: center;
align-items: center;
z-index: -1;
}

.home_texto--texto {
font-size: 3rem;
letter-spacing: 0.5rem;
font-weight: 400;
text-align: center;
text-shadow: 1.5px 1.5px 1.5px rgba(0,0,0,0.25);
}

@media (max-width: 425px) {
.menu_toggler {
    padding-right: 10vw;
}

.menu_logo {
    left: 5.5vw;
}

.menu_logo a img {
    width: 75px;
    height: 25px;
}

.menu_secoes {
    padding-right: 10vw;
    padding-left: 10vw;
}

.home_texto--texto {
    font-size: 1.6rem;
}
}

.bg_404 {
    min-height: 100vh;
    background-color: black;
}

.texto_404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    top: 50%;
    text-align: center;
}

.texto_404--p {
    font-size: 40px;
    font-weight: 800;
    padding-top: 25px;
}

.texto_404--h1 {
    padding-bottom: 25px;
}