*{
    --primary-color: #84a3c0;
    --secondary-color: #b32138;
    border-width: 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0);
}

/* MAIN CONTENT */
.hero-screen{
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #0000008a;
    background-blend-mode: darken;
    background-image: url("/plugins/assets/IMG_7907__msi___jpg.jpg");
}

.short-carousel{
    width: 100%;
    padding: 10px;
    margin-top: -100px;
    margin-bottom: 100px;
}

img{
    width: 200px;
    height: 220px;
}

.card-img-1{
    background-image: url("/plugins/assets/Cutelittlegirlswimminginthepoolattheleisu.jpg") !important;
}
.card-img-2{
    background-image: url("/plugins/assets/Cutelittleboygivingthumbsupatthepoolatth.jpg") !important;
}
.card-img-3{
    background-image: url("/plugins/assets/IMG_4454copy.jpg") !important;
}
.card-img-4{
    background-image: url("/plugins/assets/IMG_7913__msi___jpg.jpg") !important;
}
.card-img-5{
    background-image: url("/plugins/assets/IMG_6168__msi___jpg.jpg") !important;
}
.card-img-6{
    background-image: url("/plugins/assets/IMG_6105__msi___jpg_456.jpg") !important;
}

.card{
    width: 200px;
    height: 220px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.card span{
    font-size: 12px;
    text-align: center;
    font-family: 'Merienda', cursive;
    font-weight: 400;
}

.card span.inner-text{}

.card-img{
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    & span{
        display: none;
        height: 100%;
        justify-content: center;
        align-items: center;
        color: #fff;
    }
}
.card{
    width: 100%;
    margin-top: 0px;
    border-radius: 0;
    background: transparent;
    border: 3px solid #fff;
    letter-spacing: 0.1em;

    &:hover{
        & .card-img{
            background: #000000b0;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            background-blend-mode: darken;
            transition: transform ease-in .5s;
            transform: scaleZ(.8) scaleY(.8) scaleX(1);
            
            & span.inner-text{
                display: flex;
                font-size: 18px;
            }
        }
        & span{
            transition: all ease-in 1s;
            display: none;
        }
        & img {
            z-index: 1;
        }
    }
}


.lightheadline{
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2em;
    text-align: center;
    letter-spacing: 0.1em;
    z-index: 10 !important;
    font-family: 'Merienda', cursive;
    text-shadow: 1px 1px 1px #000;
}

.about-us-header{
    font-family: 'Merienda', cursive;
    font-weight: 600;
    color: #a41a30;
    font-size: 33px;
    letter-spacing: 0.1em;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-us-banner{
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("/plugins/assets/IMG_6157__msi___jpg.jpg");
}

.CTA{
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-align: center;
    padding: 40px 20px;
}

.CTA h3{
    color: #fff;
    font-size: 26px;
    text-align: center;
    line-height: 1.2em;
    word-wrap: break-word;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Merienda', cursive;
}

.affiliation-section{
    padding: 50px 0;
    position: relative;
    text-align: center;
}
.affiliation-section h3{
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2em;
    word-wrap: break-word;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-family: 'Merienda', cursive;
}
/* MAIN CONTENT */


@media only screen and (width <= 800px){
    
    .lightheadline{
        font-size: 32px;
    }
    
    .short-carousel{
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 40px;
        padding: 10px;
    }
    .card{
        height: 100px;
    
        &:hover{
            & .card-img{            
                & span.inner-text{
                    display: flex;
                    font-size: 8px;
                }
            }
        }
    }

}