@charset "utf-8";
strong{
    font-size: 20px;
}
.a-phone{
    font-size: 1.75em;
    font-weight: 700;
}
a{
    font-weight: 700;
    color: #333333;
}
.o-landing{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.o-landing__content{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
	padding: 32px;
	background-color: #FFFFFF;
	border-radius: 6px;
	box-shadow: 0 0 100px 10px rgba(0,0,0,.25);
}
.o-landing__image{
    margin-bottom: 32rem;
    animation: fadeIn forwards 3s ease-in-out;
}
.o-landing__bg{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    z-index: 0;
    filter: blur(10px);
}

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