@charset "utf-8";
strong{
    font-size: 16px;
}
.a-phone{
    font-size: 1.75em;
    font-weight: 700;
}
a{
    font-weight: 700;
    color: #ffffff;
}
.o-landing{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    background-image: url("images/landing-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 32px 16px;
    position: relative;
}
.o-landing::before{
    content: "";
    background-color: #005EADd7;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.o-landing__title{
    margin-bottom: 24px;
    padding-bottom: 0;
}
.o-landing__title,
.o-landing__text{
    max-width: 800rem;
    text-align: center;
}
.o-landing__content{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    z-index: 1;
}
.o-landing__content p{
    text-align: center;
} 
.o-landing__image{
    animation: fadeIn forwards 3s ease-in-out;
    max-width: 200rem;
    padding-bottom: 16px;
}
.avisoLegal{
    color: #ffffff;
    max-width: 800rem;
    margin-top: 16px;
}
.a-legalDetails{
    color: #ffffff;
    margin-top: 100rem;
    z-index: 1;
}
.a-legalSummary{
    margin-top: 16px;
    cursor: pointer;
    font-weight: 700;
}
.a-legalSummary::-webkit-details-marker{
    display: none;
}

@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
body{
    margin: 0;
}
