.about-section {
    height: 30vh;
    width: 100%;
    background-image: url(../images/plane-4301615_1920.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.about-hero-section {
    width: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    text-align: center;
}

.about-hero-section h1 {
    color: var(--secondary-bg-color);
    text-shadow: 0 0 10px white;
    font-size: 3.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-block: 30px;
}

.about-hero-section h1::after {
    content: "";
    width: 50%;
    height: 4px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
}

.who-we-are {
    display: flex;
    width: 80%;
    margin-inline: auto;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin-block: 50px;
}

.divider {
    width: 20%;
    height: 2px;
    background-color: var(--primary-color);
    margin-inline: auto;
    margin-block: 30px;
}


.who-are-we {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid var(--tetiary-color);
    border-radius: 5px;
    padding-bottom: 10px;
}

.who-are-we img {
    width: 100%;
}

.who-are-we h2, .who-are-we p {
    text-align: center;
}

.vision-text {
    font-family: var(--smalltext-font);
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
    .who-we-are {
        width: 100%;
    }

    .who-are-we {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {

    .about-hero-section h1 {
        font-size: 2.6rem;
    }

    .who-we-are {
        width: 100%;
    }

    .who-are-we {
        width: 90%;
    }
}