#mission,
#story {
    width: 100%;
    background-color: var(--background-color);
}

.background {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.mission-container,
.story-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.mission-content,
.mission-img,
.story-content,
.story-img {
    width: 50%;
    height: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
}

.mission-content p,
.story-content p {
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 400;
}

.mission-img img,
.story-img img {
    width: 95%;
    height: auto;
}

#team {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2em;
}

.team-container {
    padding: 1rem 0;
    width: 250px;
}

.team-card {
    width: 200px !important;
    height: 350px !important;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    margin: auto 25px;
}

.team-card .card-img {
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card .card-img .img {
    width: 125px;
    height: 125px;
    border: 10px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
}

.team-card .card-img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-card .card-content {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-direction: column;
}

.team-card .card-content .name {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

.team-card .card-content .post {
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 200;
}

.splide__pagination__page.is-active {
    background: var(--primary-color);
}

.splide__pagination {
    bottom: 0;
}

.splide__arrow {
    background: none;
}

.splide__arrow--prev {
    left: -1rem;
}

.splide__arrow--next {
    right: -1rem;
}