#about-header{
    background-color: rgba(21, 128, 61, .12);
    text-align: center;
    font-family: var(--main-font-family);
    padding-block: 3rem;
}
#about-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
#about-header h1 span{
    color: var(--main-color);
}
#about-header p{
    font-size: 1.2rem;
    color: #6B6B6B;
}

#our-history{
    padding: 4rem 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    font-family: var(--main-font-family);
}
#our-history > div{
    width: 48%;
}
.our-history-left h2{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.our-history-left p{
    font-size: 1.15rem;
    margin-top: 1rem;
    color: #6B6B6B;
}

.our-history-years{
    display: flex;
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
}
.our-history-years-left{
    background-color: rgba(21, 128, 61, .12);
    padding: 1rem;
    border-radius: .5rem;
    width: 48%;
    color: var(--main-color)
}
.our-history-years-right{
    background-color: rgba(220, 38, 38, 0.12);
    padding: 1rem;
    border-radius: .5rem;
    width: 48%;
    color: var(--secondary-color);
}
.our-history-right img{
    max-width: 100%;
    border-radius: .85rem;
}

#mission-vision{
    display: flex;
    padding: 4rem 12rem;
    gap: 3.5rem;
    font-family: var(--main-font-family);
}
#mission-vision > div{
    width: 48%;
}
#mission-vision i{
    font-size: 1.25rem;
    color: #ffffff;
    padding: .65rem;
    border-radius: 50%;
}
#mission-vision h2{
    font-size: 2rem;
    margin-block: 1rem;
    font-weight: 700;
}
#mission-vision > div{
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 3.5px 3.5px 5px rgba(120, 120, 120, .3)
}
.vision i{
    background-color: var(--main-color)
}
.mission i{
    background-color: var(--secondary-color)
}

#proprietor{
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    padding: 4rem 8rem;
    font-family: var(--main-font-family);
    background-color: var(--main-color);
    color: #ffffff;
}
#proprietor img{
    max-width: 100%;
    border-radius: 1.5rem;
}
#proprietor > div{
    width: 48%;
}

@media screen and (max-width: 598px) {
    #about-header{
        padding: 3rem;
    }
    #about-header h1{
        font-size: 2rem;
    }
    #about-header p{
        font-size: 1rem;
    }
    #our-history{
        padding: 2rem;
        display: block;
    }
    #our-history > div{
        width: 100%;
    }
    .our-history-left h2{
        font-size: 2rem;
    }
    .our-history-left p{
        font-size: 1rem;
    }
    .our-history-years{
        gap: 1rem;
        display: block;
    }
    .our-history-years-left{
        padding: .75rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    .our-history-years-right{
        padding: .75rem;
        width: 100%;
    }
    .our-history-right{
        margin-top: 1rem;
    }
    #mission-vision{
        display: block;
        padding: 2rem;
    }
    #mission-vision > div{
        width: 100%;
    }
    #proprietor{
        display: block;
        padding: 2rem;
    }
    #proprietor > div{
        width: 100%;
    }
}