/* splash ----------------------------------------------------------------- */
.splash {
    margin-top: 56px;
    width: 100%;
}

.splash img {
    width: 100%;
    height: auto;
}

.splash-text-container {
    position: absolute;
    margin-top: -30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-weight: bold;

    display: flex;
    flex-flow: column nowrap;
}

.splash-caption {
    font-size: 5vw;
    color: #fff952;
}

.splash-text {
    font-size: 2.5vw;
    color: rgb(245, 245, 245);
    -webkit-text-stroke: 0.02em black;
}

@media screen and (max-width: 992px) {

    .splash-text-container {
        margin-top: -30%;
    }
    .splash-caption {
        font-size: 6vw;
    }

    .splash-text {
        font-size: 3vw;
    }
}

/* splash-card ----------------------------------------------------------------- */
.splash-card{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    margin: 40px;
}

.splash-card img{
    width: auto;
    height: 256px;
    margin: 20px;
}

.splash-card-text{
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    flex: 1;
    padding: 20px 0px 20px 60px;
    text-align: left;

    -webkit-text-stroke: 0em black;
    color: black;
}

.splash-card-title{
    font-size: 32px;
}

.splash-list{
    list-style-type: none;
}

.splash-list-item{
    font-size: 22px;
}

.splash-list-item:last-child{
    margin-top: 10px;
}

.splash-btn{
    border: 1px solid rgb(33, 151, 230);
    border-radius: 3px;
    padding: 4px 12px;
}

.splash-btn:hover{
    background-color: rgb(224, 238, 247);
    text-decoration: none;
}
@media screen and (max-width: 992px) and (min-width: 772px) {
    .splash-card img{
        width: auto;
        height: 168px;
        margin: 10px;
    }

    .splash-card-title{
        font-size: 28px;
    }
    
    .splash-list-item{
        font-size: 18px;
    }
}

@media screen and (max-width: 772px) {
    .splash-card{
        flex-flow: column nowrap;
        margin: 0px;
    }

    .splash-card img{
        height: 168px;
        margin: 0px;
        object-fit: contain; 
    }

    .splash-card-title{
        font-size: 22px;
    }
    
    .splash-list-item{
        font-size: 14px;
    }

    .splash-card-text{
        padding: 10px 20px;
        margin: 0 20px;
    }
}




/* hangout ----------------------------------------------------------------- */
.hangout {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    height: 200px;
}

.hangout img {
    height: 100%;
    width: auto;
    padding: 10px;
    border-radius: 5px;

    -webkit-box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.3);
}

.hangout-body {
    display: flex;
    flex-flow: column nowrap;
    flex: 1;
    margin-left: 40px;
    text-align: left;
}

.hangout-title {
    font-size: 22px;
}

.hangout-text {
}

.hangout-link {
    border: 1px solid rgb(31, 140, 243);
    border-radius: 3px;
    padding: 3px 10px;
    margin-top: 10px;
    width: 120px;
}

.hangout-link:hover {
    background-color: rgb(225, 240, 255);
}
