.landingPage {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    /* background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),url(../img/LP1.jpg); */
    animation: landing-page 15s infinite;
    display: flex;
    flex-direction: column;
}
.landingPage::before {
    content:'';
    width:100%;
    height:100%;
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    position: absolute;
    top:0;
    left:0;
}
.landingPage * {
    position: relative;
    z-index: 5;
}
.headerLP {
    height: 40%;
    display: flex;
    align-items: flex-end;
    z-index: 6;
}
.logoLP {
    font-size: 0;
    width: 370px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    height: 7rem;
    padding: 5rem 2rem;
    background-color: #fff;
    transform: translateY(calc(50% + 3px));
}
.logoLP img {
    width: 100%;
}
.slogan {
    color: #fff;
    font-size: 3rem;
}
.divisor {
    background: rgba(216,54,51,1);
    padding: 3px;
}
.divisor__text {
    font-family: Light;
    font-size: 2.3rem;
    text-transform: uppercase;
    color: #020202;
    width: 32.5%;
    background-color: #fff;
    padding: 1.5rem 1.5rem 1.5rem 0;
    text-align: right;
}
.languages {
    background: rgba(0, 0, 0, .4);
    flex: 1;
}
.wrapp-languages {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 0 0 0;
}
.languages__header {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.languages__title {
    font-family: Light;
    font-size: 2.5rem;
    line-height: 2.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.languages__paragraph {
    color: #fff;
    font-family: Bold;
    font-size: 2rem;
    letter-spacing: 1.5px;
    margin-bottom: 5rem;
}
.languages__options {
    display: flex;
    align-items: center;
}
.global-version {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-right: 4rem;
    text-decoration: none;
    color: #fff;
    font-family: Light;
    font-size: 1.8rem;
    text-transform: uppercase;
}
.global-version span {
    display: block;
}
.languages__country {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex: 1;
}
.country-version {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    font-family: Light;
}
.country-version:hover .flag {
    opacity: 1;
}
.global-version svg {
    width: 130px;
    height: 100px;
    margin-bottom: 2rem;
}
.global-version:hover .flag {
    opacity: .3;
}
.country-version svg {
    width: 40%;
    height: 70px;
    margin-bottom: 1.5rem;
}
.flag {
    opacity: 0;
}

/* Responsive */

@media (max-width:1023px){
    .logoLP {
        width: 50%;
    }
}
@media only screen and (max-width: 800px) {
    .flag {
        opacity: 1;
    }
    .global-version .flag {
        opacity: .3;
    }
    .languages__options {
        flex-direction: column;
        flex: 1;
    }
    .global-version {
        margin: 0 0 2rem 0;
    }
    .wrapp-languages {
        padding: 8rem 0 0 0;
        width: 100%;
    }
    .languages__paragraph{
        margin-bottom: 0;
    }
    .languages__country {
        flex: 1;
        width: 100%;
    }
    .global-version svg {
        height: 70px;
    }
    .country-version {
        flex: 0 0 30%;
    }
    .headerLP {
        height: unset;
        padding: 0;
    }
    .languages {
        flex: 1;
    }
    .languages__country {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 13%);
    }
}
@media only screen and (max-width: 500px) {
    .logoLP{
        width: 315px
    }
    .wrapp-languages {
        padding: 7rem 0 0 0;
    }
    .languages__country {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 45%);
    }
    .languages__header {
        padding: 0 1rem;
    }
}