.cover-container{
    position: relative;
    height: 625px;
    min-height: 70vh;
}

.logo-and-tagline{
    width: 100%;
    position: absolute;
    top: 20vh;
    z-index: 1;
}

.logo-and-tagline .cover-logo{
    width: 250px;
    height: 30vh;
    max-height: 250px;
    margin: auto;
    background-image: url(../images/MTBpng_color.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-and-tagline .tagline{
    width: 40%;
    color: var(--alternate-color);
    margin:20px auto 0;
    text-align: center;
    font-size: 1.5rem;
}

.cover-indicator{
    position: absolute;
    left: 10%;
    bottom: 30px;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    z-index: 100;
}

.cover-indicator .indicator{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--alternate-color);
}


.cover-indicator .indicator:hover{
    background-color: var(--main-color);
}

.cover-container .indicator.active{
    background-color: var(--main-color);
}

.chevron{
    position: absolute;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--alternate-color);
    z-index: 1;
}

.chevron.left{
    left: 3%;
}

.chevron.right{
    right: 3%;
}

.chevron > i{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.chevron > i:hover{
    background-color: #ffffff7d;
    color: var(--secondary-color);
}

.cover-slider-container{
    width: 100%;
    height: 100%;
    position: relative;
}

.cover-slider-container .cover-slider-item{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}

.fade{
    animation-name: fade-cover;
    animation-duration: 1s;
}

@keyframes fade-cover{
    from{opacity: 0;}
    to{opacity: 1;}
}

.section{
    position: relative;
    width: 100%;
    height: fit-content;
    padding-bottom: 10vh;
    background-color: var(--main-color);
}

.about-us-content .description .title{
    padding: 0;
    margin: -30px 0 0;
    font-size: 5rem;
}

.about-us-content{
    width: 80%;
    height: fit-content;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0 auto 20px;
    padding-top: 90px;
}

.about-us-content .embed-video{
    width: 25vw;
    height: 15vw;
}

.about-us-content .embed-video > iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.about-us-content .description{
    width: calc(95% - 25vw);
    height: fit-content;
    font-size: 1.25rem;
    margin: 0 0 0 30px;
}

.about-us-content .description > b{
    font-size: 1.5rem;
}

.description{
    color: var(--secondary-color);
    line-height: 1.5;
    margin-bottom: 50px;
}

.sosmed-link{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sosmed-link .item{
	margin: 20px 30px 10px 0;
	cursor: pointer;
    text-align: center;
}

.sosmed-link .item .sosmed-icon{
	display: block;
	width: 65px;
	height: 65px;
	background-color: transparent;
	border-radius: 10px;
}

.sosmed-link .item .sosmed-icon > i{
	font-size: 2.5rem;
	margin: .75rem;
	color: black;
}

.sosmed-link .item:hover .sosmed-icon{
	background-color: black;
}

.sosmed-link .item:hover .sosmed-icon > i{
	color: gold;
}

.collaborator-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.collaborator-container .item > img{
    height: 10vh;
    margin: 30px;
}

.game-section{
    min-height: 100vh;
}

.game-featured{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 30px;
}

.game-cover{
    width: 60%;
    height: auto;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.game-content{
    width: 35%;
    height: fit-content;
    padding: 3% 2% 2% 3%;
}

.game-title{
    font-family: var(--title-font);
    font-size: 3rem;
}

.game-title.coming-soon{
    text-align: center;
}

.game-description{
    margin: 25px 0;
}

.play-alert{
    margin: 10px 0;
    color: red;
    font-size: 1rem;
}

.game-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.games{
    width: calc(10% - 10px);
    height: calc(.1 * 80vw - 10px);
    margin: 10px;
    border-radius: 10px;
    background-color: var(--alternate-color);
    display: flex;    
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--text-font);
    text-align: center;
}

.games:hover{
    background-color: #fff9f5;
}

.games > img{
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.games.active{
    background-color: white;
}

.articles, .resources{
    position: relative;
}

.articles-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.article-item{
    width: 40%;
    height: auto;
    margin: 2.5%;
    background-color: #ffffff7d;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--secondary-color);
}

.article-item:hover{
    background-color: white;
}

.article-cover{
    width: 100%;
    height: 300px;
    border-radius: 10px;
    background-image: url(../images/group-kids-friends-arm-around-sitting-together.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-title{
    font-size: 2rem;
    margin: 20px 0;
    font-weight: bold;
}

.center{
    margin: auto;
}

.title-with-icon{
    width: fit-content;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.title-icon{
    width: fit-content;
    height: fit-content;
    color: var(--secondary-color);
    margin: 0 40px 40px 0;
    padding-top: 70px;
}

.title-icon > i{
    font-size: 4rem;
}

.emergency-contact-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact{
    width: 25%;
    height: fit-content;
    margin: 3%;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 0;
}

.name{
    display: flex;
    width: fit-content;
    height: 6rem;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin: auto;
}

.contact .name .text{
    width: 100%;
}

.contact .name .text.have-link{
    text-decoration: underline;
    cursor: pointer;
    color: var(--secondary-color);
}

.phone-number{
    width: calc(100% + 1px);
    height: fit-content;
    padding: 10px 0;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--main-color);
    cursor: pointer;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    margin: -1px;
    font-size: 1.5rem;
}

.toast-container{
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: fit-content;
    bottom: 100px;
    z-index: 10000;
}

.toast{
    width: fit-content;
    height: fit-content;
    margin: auto;
    padding: 16px 32px;
    color: var(--alternate-color);
    background-color: #000000c2;
    border-radius: 10px;
}

@media (min-width: 601px) and (max-width:1400px){
    .logo-and-tagline{
        top: 10vh;
    }
    
    .game-cover{
        width: 100%;
        min-height: 350px;
    }

    .game-content .action-button{
        margin: 0 auto;
    }

    .game-content{
        width: 100%;
        text-align: center;
        padding: 30px 3%;
    }

    .games{
        width: calc(20% - 10px);
        height: calc(.2 * 80vw - 10px);
    }

    .about-us-content{
        flex-wrap: wrap;
    }

    .about-us-content .embed-video{
        width: 70vw;
        height: 35vw;
    }

    .about-us-content .image{
        width: 100%;
        height: 35vw;
    }

    .about-us-content .description{
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .about-us-content .description .title{
        margin: 10px auto 0;
        font-size: 4rem;
    }

    .sosmed-link{
        justify-content: center;
    }

    .collaborator-container .item > img{
        height: 70px;
    }

    .article-item{
        width: 85%;
    }

    .contact{
        width: 35%;
        margin: 2%;
    }

    .contact .name{
        min-height: 6rem;
        padding: 0 10px;
        height: fit-content;
    }

    .phone-number{
        font-size: 1.25rem;
    }
}

@media (max-width: 600px){
    .chevron.left{
        left: 0;
        font-size: 1rem;
    }
    
    .chevron.right{
        right: 0;
        font-size: 1rem;
    }

    .logo-and-tagline .cover-logo{
        width: 150px;
        height: 15vh;
    }
    
    .logo-and-tagline .tagline{
        width: 70%;
        font-size: 14px;
    }

    .cover-indicator .indicator{
        width: 10px;
        height: 10px;
        margin: 0 2.5px;
    }

    .game-section{
        min-height: 0;
    }

    .game-cover{
        width: 100%;
        min-height: 200px;
    }

    .game-title{
        font-size: 1.5rem;
    }
    
    .game-description{
        margin: 10px 0;
    }

    .play-alert{
        font-size: 12px;
    }

    .game-content .action-button{
        margin: 10px auto;
    }

    .game-content{
        width: 100%;
        text-align: center;
        padding: 20px 3%;
    }

    .games{
        width: calc(20% - 10px);
        height: calc(.2 * 90vw - 10px);
    }

    .about-us-content .embed-video{
        width: 100%;
        height: 45vw;
    }

    .about-us-content{
        flex-wrap: wrap;
    }

    .about-us-content .image{
        width: 100%;
        height: 50vw;
    }

    .about-us-content .description{
        width: 100%;
        margin: 0;
        text-align: center;
        font-size: 12px;
    }

    .about-us-content .description > b{
        font-size: 15px;
    }

    .about-us-content .description .title{
        margin: 40px auto 20px;
        font-size: 2rem;
    }

    .sosmed-link{
        justify-content: center;
    }

    .sosmed-link .item{
        margin: 5px;
    }

    .sosmed-link .item .sosmed-icon{
        width: 40px;
        height: 40px;
    }
    
    .sosmed-link .item .sosmed-icon > i{
        font-size: 24px;
    }

    .collaborator-container .item > img{
        height: 30px;
        margin: 15px;
    }

    .article-item{
        width: 60%;
    }

    .article-cover{
        height: 150px;
    }

    .article-title{
        font-size: 14px;
    }

    .title-icon{
        margin-right: 20px;
    }

    .title-icon > i{
        font-size: 2rem;
    }

    .contact{
        width: 35%;
        margin: 5%;
    }

    .contact .name{
        min-height: 60px;
        padding: 5px;
        height: fit-content;
    }

    .phone-number{
        font-size: 1rem;
    }
}