/* Default Section */
.mission-section{
    width: 100%;
    height: calc(100% - 60px);
}

.mission-section-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.about-images-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-images-container .about-image{
    position: relative;
    width: 35vw;
    height: 25vw;
    flex-shrink: 0;
    overflow: hidden;
    z-index: 3;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.8), -10px 0 20px rgba(0, 0, 0, 0.8);
}

.about-image:first-child{
    left: 50px;
    z-index: 1;
    box-shadow: none;
}

.about-image:last-child{
    right: 50px;
    z-index: 1;
    box-shadow: none;
}

.about-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.mission-content-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-content{
    color: var(--text-color);
    font-size: var(--content-font-size);
    font-weight: 100;
    text-align: justify;
}