h1+p {
    margin-top: 10px;
}

.right, .left {
    width: 50%;
}

/* ---------- Introduction ---------- */
.intro {
    margin-top: 40px;

    >h1 {
        text-align: center;
        font-style: italic;
        color: var(--orange-clr);
        margin-bottom: 40px;
    }

    .right img {
        width: 70%;
        margin-left: 80px;
    }
}


/* ---------- Our Mission ---------- */
.our-mission {
    margin-top: 250px;
    
    .left img {
        width: 70%;
    }

    .mission {
        img {
            width: 30px;
            align-self: center;
            margin-right: 10px;
        }

        .picture-description {
            align-items: center;
            margin-bottom: 10px;
        }
        .container {
            margin-top: 15px;
        }
    }

    .vision {
        margin-top: 30px;
    }
}

/* ---------- Core Value ---------- */

.core-values {
    margin: 200px 0;

    h2 {
        font-size: 1.5rem;
    }
    .top, .bottom, .hidden-bottom, .middle {
        display: grid;
        margin-top: 20px;
        gap: 20px;
    }

    .middle {
        margin-top: 20px;
        grid-template-columns: 1fr;
    }

    .top, .hidden-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom {        
        grid-template-columns: repeat(3, 1fr);
    }

    .middle, .hidden-bottom {
        display: none;
    }

    .glass-card {        
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .right, .left {
        width: fit-content;
        max-width: 550px;
    }

    .intro .picture-description.section-padding {

        flex-direction: column-reverse;
        justify-content: center;

        .right {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;

            img {
                width: 50%;
                min-width: 300px;
                margin-left: 0px;
            }
        }
    }
    .our-mission .left {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;

        img {
            width: 50%;
            min-width: 300px;
        }
    }

    .core-values {
        .middle, .hidden-bottom {
            display: grid;
        }

        .bottom {
            display: none;
        }
    }
}

@media (max-width: 499px) {
    .core-values {
        .hidden-bottom {
            grid-template-columns: 1fr;            
        }

        .top, .middle, .hidden-bottom, .bottom {
            gap: 15px;
        }
    }
}