.heading-section {
    width: 100%;
    height: 500px;
    background-image: url(/images/about.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
}

.about-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: fit-content;
}

.opacity-filter {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);    
}

.company-intentions {
    background-color: #0F4C75;
    color: white;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 100px 100px;
}

/* .company-intentions p {
    font-size: 1.3rem;
    width: 65%;
    line-height: 150%;
} */

.about {
    width: 75%;
    margin: 0 auto;
    max-width: 75%;
}

.about h2 {
    font-size: 3rem;
}

.about p {
    font-size: 1.2rem;
}

.leadership {
    background-color: #133B5C;
    padding: 70px 100px;
    color: white;
}

.team-msg {
    width: 75%;
    max-width: 75%;
    margin: 0 auto;
}

.leadership h1 {
    font-size: 3rem;
}

.leadership p {
    font-size: 1.2rem;
}

.leadership h1 {
    /* border-bottom: 2px solid white; */
    width: 100%;
    text-align: left;
    /* margin-bottom: 60px; */
    /* font-size: 4.2rem; */
}

.leaders {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: fit-content;
    margin: 0 auto;
}

.leader h2 {
    font-size: 3rem;
}

.leader h4 {
    font-size: 1.3rem;
    width: fit-content;
    color: #ffdddd;
}

.leader p {
    margin: 10px 0px;
    font-size: 1.1rem;
    width: 70%;
    line-height: 170%;
}

@media only screen and (max-width: 1750px) {
    .leader p {
        width: 100%;
    }

    .leader {
        margin: 0 50px;
    }

    .company-intentions p {
        width: 80%;
    }
}

@media only screen and (max-width: 1000px) { 
    .about-title, .about-title h1, .about-title h2 {
        font-size: 2.2rem;
        margin: auto;
    }

    .company-intentions {
        padding: 100px 50px;
    }

    .leadership {
        padding: 70px 50px;
    }

    .company-intentions p {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .about-title, .about-title h1, .about-title h2 {
        font-size: 1.5rem;
        margin: auto;
    }

    .company-intentions {
        padding: 50px 5px;
    }

    .company-intentions p {
        font-size: 1rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .leadership {
        padding: 50px 5px;
    }

    .team-msg p {
        font-size: 1rem;
    }

    .team-msg h1 {
        font-size: 2rem;
    }
}