body {
    background: url("../images/bgs/logo-bg-1.png") center/cover no-repeat;
    /* height: 100vh;
    overflow-y: scroll; */
}

.about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: .5rem 0.5rem;
    line-height: 1.6;
    text-align: justify;
}

.about-logo {
    text-align: center;
    /* margin-bottom: 2rem; */
}

.about-logo img {
    max-height: 450px;
    width: auto;
}

.about-block {
    margin-bottom: 1rem;
    /* display: flex; */
}

.about-block-img {
    /* width: 50%; */
    /* make it span full width of div */
    height: 420px;
    /* match the height of parent div */
    /* object-fit: cover; */
    /* crop nicely while filling */
    display: block;
    /* remove extra bottom spacing */
    border-radius: 4px;
    /* optional: rounded corners */
    margin-bottom: 5px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .8);
}

.about-block-img-1 {
    height: 450px;
}

.about-block-img-2 {
    height: 340px;
}

.about-block p {
    font-size: 18px;
    color: #0a0a0a;
}

.about-block h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #b12a2a;
    /* your brand primary color */
    border-left: 4px solid #f6b400;
    padding-left: 0.5rem;
}

.fs-30 {
    font-size: 30px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

/* Mission-Vision-Goal Block */
.mvg-block {
    margin-top: 40px;
}

.mvg-block h2 {
    margin-bottom: 1.2rem;
}

.mvg-item {
    display: flex;
    align-items: center;
    /* center text with image */
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.mvg-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
}

.mvg-item p {
    flex: 1;
    font-size: 1.25rem;
    line-height: 1.5;
}

@media (max-width: 650px) {
    .about-block-img {
        float: none !important;
        margin: 0 !important;
        width: 100%;
        height: auto;
        margin-bottom: 12px !important;
    }

    body {
        background: none;
        height: 100vh;
    }
}