#profile-section {
    margin-top: 3em;
    margin-bottom: 0;
}

.banner {
    height: 350px;
}

.banner > img {
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

#about-section,
#visi-misi-section {
    margin-top: 3em;
    padding: 1em 0 2em 0;
}

.profile-container,
.visi-container {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(11, minmax(20px, 1fr));
    grid-template-rows: repeat(9, 36px);
}

.about-img-wrapper {
    overflow: hidden;
}

.about-img-wrapper > img {
    height: 100%;
    object-fit: cover;
}

.about-img-wrapper:first-child {
    grid-area: 3 / 1 / span 7 / span 7;
    border-radius: 1em;
    border: 8px solid #e6e9f5;
}

.about-img-wrapper:nth-child(2) {
    grid-area: 1 / 7 / span 7 / span 5;
    border-radius: 1em;
    border: 8px solid #e6e9f5;
    /* z-index: -1; */
}

.about-img-wrapper:nth-child(3) {
    background-color: #627154;
    border: 8px solid #e6e9f5;
    grid-area: 1 / 5 / span 2 / span 2;
}

.about-img-wrapper:last-child {
    background-color: #627154;
    border: 6px solid #e6e9f5;
    grid-area: 8 / 8 / span 1 / span 2;
}

.visi-title {
    flex: 1;
}

.visi-title h2 {
    max-width: 200px;
}

.visi-content {
    flex: 3;
}

.visi-content-text {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 1em;
}

.visi-img > img {
    aspect-ratio: 21/10;
    object-fit: cover;
    object-position: center 30%;
}

#visi-misi-section {
    background-image: linear-gradient(to bottom, #ecdec9 40%, #e6e9f5 70%);
    background-color: #ecdec9;
    margin-bottom: 2em;
}



@media screen and (min-width: 768px) {
    .profile-container,
    .visi-container {
        flex-direction: row;
    }

    .visi-content-text {
        flex-direction: row;
    }

    .visi-content-text > div {
        flex: 1;
    }
}
