#section-index #index-bg,
#section-index #index-bg-color {
    position: absolute;
    right: 0;
    width: auto;
    height: 100%;
}
#section-index #index-bg-color {
    animation: fadein 2s;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#section-index #index-content {
    position: absolute;
    top: 9.4%;
    left: 5.47%;
}
#section-index .logo-container .title {
    margin-top: 5%;
    font-size: 2.3rem;
    line-height: 1.5;
}
#section-index .info-container #rounded-bar {
    margin-top: 5%;
}
#section-index .info-container #contact-info {
    margin-top: 5%;
    line-height: 1.35;
    color: #5a5a5a;
}

/* Mobile Version */
@media only screen and (max-width: 768px) {

    #section-index #index-bg,
    #section-index #index-bg-color {
        top: min(30vw, 10rem);
        width: auto;
        height: max(50%, calc(50% + 30vw - 10rem));
    }

    #section-index #index-content {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    #section-index .logo-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    #section-index .logo-container .logo {
        display: inline-block;
        width: min(30vw, 10rem);
    }
    #section-index .logo-container .title {
        display: inline-block;
        width: 69vw;
        margin-top: 0;
        font-size: 1.2rem;
    }
    #section-index .logo-container .title img {
        width: 100%;
    }

    #section-index .info-container {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        width: 80%;
        font-size: 1rem;
    }
    #section-index .info-container #rounded-bar {
        margin-top: 0;
        width: 2rem;
    }
    #section-index .info-container #contact-info {
        margin-top: 1rem;
    }

}
