/*===== hilda =====*/
.hilda1 {
    height: 95vh;
    float: right;
    display: block;
}

.hilda-bg {
    background-image: url('/assets/images/aboutbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    background-color: #d6bda8;
}

@media only screen and (max-width: 900px) {
    .hilda-bg {
        background-image: url('/assets/images/aboutbgm.png');
        background-position: top center;
    }
}

.hilda-about-top {
    font-family: var(--bs-font-sans-serif);
    position: absolute;
    top: 40vh;
    left: 34vh;
    font-size: 48px;
    color: var(--bs-white);
    max-width: 50%;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    line-height: 40px;
    margin-top: 4px;
    visibility: visible;
    animation-duration: 1.3s;
    animation-delay: 0.2s;
    animation-name: fadeInUp;
}

.hilda-about-botton {
    font-family: var(--bs-font-sans-serif);
    position: absolute;
    top: 50vh;
    left: 34vh;
    font-size: 24px;
    color: var(--bs-white);
    max-width: 40%;
    word-wrap: break-word;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    line-height: 32px;
    margin-top: 2px;
    visibility: visible;
    animation-duration: 1.3s;
    animation-delay: 0.4s;
    animation-name: fadeInUp;
}

@media (max-width: 767px) {
    .hilda-about-top {
        position: relative;
        top: 45vh;
        left: 5vh;
        font-size: 36px;
        color: #ffffff;
        max-width: 75%;
        text-overflow: ellipsis;
        white-space: normal;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .hilda-about-botton {
        position: relative;
        top: 46vh;
        left: 5vh;
        font-size: 18px;
        color: #ffffff;
        max-width: 75%;
        word-wrap: break-word;
        overflow: hidden;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    }
}

#texto-sobre-hilda {
    background-color: white;
    padding: 40px;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
}

#texto-sobre-hilda h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

#texto-sobre-hilda p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

#texto-sobre-hilda ul {
    list-style: disc inside;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#texto-sobre-hilda li {
    font-size: 16px;
    width: 50%;
    padding: 10px;
    text-align: left;
    margin-bottom: 20px;
}

.kodfun-galeri {
    display: flex;
    height: 20rem;
    gap: 1rem;
}

.kodfun-galeri > div {
    flex: 4;
    border-radius: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    transition: all .8s cubic-bezier(.25, .4, .45, 1.4);
}

.kodfun-galeri > div:hover {
    flex: 6;
}