.about-us {
    font-family: 'Kanit';
    color: var(--color-dark);
    margin-bottom: 50px;
}

.about-us strong {
    font-weight: 500;
    font-size: 24px;
}

.about-us p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.5;
}

.about-us h2 {
    font-family: 'Orbitron';
    font-size: 32px;
    margin: 60px 0;
    font-weight: 500;
}

.about-us img {
    width: 100%;
    height: 484px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 60px;
}

.about-us h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
}

.about-us ul {
    list-style: disc;
    line-height: 1.5;
    font-weight: 300;
    margin-left: 30px;
    margin-bottom: 30px;
}

.about-us ul li strong {
    font-size: 16px;
}

.about-us .aboutus-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

.about-us .aboutus-card img {
    width: calc((100% - 30px) / 2);
    height: 360px;
    margin-bottom: 30px;
}



@media only screen and (max-width: 980px) {
    .about-us .aboutus-card {
        flex-direction: column;
    }

    .about-us .aboutus-card img {
        width: 100%;
    }
}