/*---------------------------------------- NAVBAR SECTION ----------------------------------------*/
.navbar{    
    background: url(../assets/home_page_navbar.svg);
}
/*---------------------------------------- LANDING PAGE SECTION ----------------------------------------*/

.first-container, .about-container{
    width: 100%;
    height: 100vh;
    padding-top: 85px;
}

.first-container{
    background: url(../assets/home_page_background.svg);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.text-container{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 2%;
    margin-bottom: 2%;
    height: 90%;
    width: 50%;
    overflow: hidden;
}
.ct{
    font-size: 48px;
    font-weight: 700;
    animation: fade-out 5s linear infinite 2.5s;
}
.text-container h1{
    position: relative;
    right: 100%;
    font-size: 48px;
    margin-bottom: 5%;
    animation: fade-in 1s ease-in 0s;
    animation-fill-mode: forwards;
    font-weight: 700;
}
.text-container h3{
    position: relative;
    right: 100%;
    font-size: 24px;
    margin-bottom: 5%;
    animation: fade-in 1s ease-in 0.5s;
    animation-fill-mode: forwards;
    font-weight: 500;
}
.text-container p{
    text-align: center;
    position: relative;
    right: 100%;
    font-size: 18px;
    font-weight: 400;
    width: 75%;
    animation: fade-in 1s ease-in 1s;
    animation-fill-mode: forwards;
}

@keyframes fade-in{
    0%{
        opacity: 0;
        right: 100%;
        filter: blur(5px);
    }
    100%{
        opacity: 1;
        right: 0;
        filter: blur(0);
    }
}
@keyframes fade-out{
    0%, 100%{
        opacity: 1;
        filter: blur(0);
    }
    50%{
        opacity: 0;
        filter: blur(5px);
    }
    25%, 75%{
        filter: blur(0);
    }
}

/*---------------------------------------- ABOUT SECTION ----------------------------------------*/

.about-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    width: 100%;
    padding: 85px 0;
    background-color: #F0EAD6;
}

.card{
    display: flex;
    height: 100%;
    width: 90%;
}

.toc{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 35%;
    height: 100%;
}

.toc .text{
    display: flex;
    align-items: center;
    width: 70%;
    border-bottom: 1px solid black;
}

.toc .text a{
    color: black;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    width: 100%;
    cursor: pointer;
    padding-left: 5px;
}

.toc img{
    width: 16px;
    height: 16px;
    display: inline;
}

.mission-info{
    display: inline;
    align-items: center;
    justify-content: center;
    width: 65%;
    height: 100%;
    overflow: hidden;
}

.mission-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
    height: 100%;
    width: 100%;
}

.mission-title{
    font-weight: 700;
    margin-bottom: 2%;
}
.mission-desc{
    text-align: center;
    font-weight: 500;
    width: 80%;
}

@media screen and (max-height:700px){
    .mission-title{
        font-size: 24px;
    }
    .mission-desc{
        font-size: 16px;
    }
}
@media screen and (max-height:590px){
    .mission-title{
        font-size: 18px;
    }
    .mission-desc{
        font-size: 12px;
    }
}

@media screen and (max-width: 915px) {
    .first-container{
        justify-content: center;
        align-items: flex-start;
    }
    .text-container{
        background-color: rgb(50, 50, 50, 0.5);
        border-radius: 25px;
        width: 80%;
    }
    .text-container p{
        font-size: 24px;
    }
    .toc{
        width: 45%;
    }
    .toc .text a{
        font-size: 13px;
    }
    .mission-title{
        font-size: 20px;
    }
    .mission-desc{
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .text-container{
        background-color: rgb(50, 50, 50, 0.5);
        border-radius: 25px;
        width: 80%;
    }
    .text-container h1, .ct{
        font-size: 20px;
    }
    .text-container h3{
        font-size: 18px;
    }
    .text-container p{
        font-size: 16px;
    }
    .toc{
        width: 45%;
    }
    .toc img{
        height: 10px;
        width: 10px;
    }
    .toc .text a{
        font-size: 10px;
    }
    .mission-title{
        font-size: 12px;
    }
    .mission-desc{
        font-size: 10px;
    }
}