/**
* HOME HEADER
**/

.home {
    height: 100vh;
    background-image: url(../img/about.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.home-content {
    height: 100%;
    max-width: 53rem;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
}

.home-content h3 {
    color: var(--light-blue);
    padding: 0.5rem 0;
}

/**
* TEXTS
**/

h1 {
    color: var(--blue);
    padding: 1.25rem 0;
}

/**
* CONTENTS
**/

.sections hr {
    margin: 0;
}

/* Article */

.article {
    margin-top: 1.25rem;
}

.image-cell {
    flex: 45%;
    padding: 2rem;
}

.text-cell {
    flex: 55%;
    padding: 2rem;
}


/** FALSAFAH **/

#sec-2 {
    text-align: center;
}

#sec-2 h1 {
    color: var(--dark-blue);
}

#sec-2 .row {
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 2rem;
    gap: 2rem;
    justify-content: space-evenly;
    align-items: normal;
}

.why-cell {
    max-width: 20rem;
}

#sec-2 i {
    font-size: 2rem;
    line-height: 5rem;
    color: var(--blue);
    height: 5rem;
    width: 5rem;
    border-radius: 2.5rem;
    background-color: var(--light-blue);
    margin-bottom: 1.5rem;
}


@media (max-width: 768px) {
    #sec-2 .row {
        flex-direction: column;
        align-items: center;
    }
}