*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins';
    outline: none;
    text-decoration: none;
}


.container{
    width: 100%;
    padding: 1rem;
    display: none;
}
#logo-splash{
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: absolute;
    display: none;

    z-index: 100;
    color: #fff;
}

.splash-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.splash-wrapper img{
    width: 18rem;
}

.image-wrapper{
    width: 100%;
    height: 12rem;
    background: #eee;
    border-radius: 1rem;
    background-image: url(img/hero.jpg);
    background-size: 100%;
    background-position-y: center;
}


.title-wrapper{
    width: 100%;
    background: #a40000;
    padding: .5rem;
    border-radius: 1rem;
    margin-top: 1rem;
    padding: 1.5rem 1.5rem;
}
.title{
    font-size: 1rem;
    color: #ffffff;
}
.description{
    font-size: .85rem;
    color: #ffffff;
}

.social-wrapper{
    width: 100%;

}
.social-wrapper a .social-item{
    width: 100%;
    padding: 1rem 1.5rem;
    background: #F8FAFB;
    border-radius: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    z-index: 2;
}

.logo-wrapper{
    height: 2.5rem;
    width: 2.5rem;
    background: #ddd;
    border-radius: 100%;
    z-index: 1;
}
.logo-wrapper img{
    width: 100%;
    height: 100%;
    z-index: 1;
}

.text-wrapper{
    display: flex;
    flex-direction: column;
    margin-left: 1.5rem;
}
.social-title{
    font-size: 1rem;
    color: #222;
}
.social-description{
    font-size: .85rem;
    color: #555;
}