@charset "utf-8";
strong{
    font-size: 20px;
}
.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;
    height: 100vh;
    background-image: url("images/landing-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.o-landing::before{
    content: "";
    background-color: #374E53d7;
    height: 100%;
    width: 100%;
    position: absolute;
}
.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: 300rem;
    padding-bottom: 16px;
}

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