section{
    padding: 2rem 5rem;
}
.aboutpage-hero{
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;
    justify-content: space-between;
    gap: 1rem;
    text-align: justify;
}
.aboutpage-hero>*{
    flex:1;
    max-width: 700px;
}
.aboutpage-hero h1{
    font-size: 2.5rem;
    text-decoration: underline;
}
.aboutpage-hero-img{
    /* height: 100%; */
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.aboutpage-hero-img img{
    position: sticky;
    top: 100px;
    border-radius: 10px;
    height: auto;
    width: 100%;
    box-shadow: 0 0 5px 0 #000;
    transition: all .5s ease-in-out;
}
.aboutpage-hero-img img:hover{
    scale: 98%;
}
.aboutpage-hero p{
    margin: 1rem 0;
}
.aboutpage-hero ol{
    list-style-type: none;
}
.aboutpage-hero li{
    list-style-type: none;
    padding: 1rem;
    margin: 1rem;
    border: 1px solid var(--primary-light);
    border-radius: 10px;
    background-color: var(--primary-light);
}
.about-history{
    margin: auto;
}
.about-history h1{
    text-align: center;
    margin: 1rem;
    font-size: 2.5rem;
    text-decoration: underline;
}
.history-card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.history-card-inner-container{
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
.history-card{
    min-width: 230px;
    max-width: 400px;
    width: 100%;
    height: auto;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: justify;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.history-card .date{
    margin-top: 2rem;
    color: var(--dark-gray);
    text-align: right;
}
@media screen and (max-width:768px) {
    section{
        padding: 2rem;
    }
    .aboutpage-hero h1{
        font-size: 1.5rem;
        text-align: center;
    }
    .aboutpage-hero{
        flex-direction: column-reverse;
    }
    .history-card{
        height: 100%;
    }
}
@media screen and (min-width:1500px) {
    section{
        max-width: 1500px;
        margin: auto;
    }
    .aboutpage-hero{
        margin-top: 120px;
    }
}