main {
    /* margin-top: 65px; */
    width: 100%;
    min-height: 50vh;
    /* border: 1px solid transparent; */
}

.nav-phone {
    color: var(--logo-dark-blue);
}

.navbar a {
    color: var(--logo-dark-blue);
}

.hamburger {
    background: var(--logo-dark-blue);
}

@media (max-width: 1080px) {
    .navbar a {
        color: white;
    }
}

.about-carousel {
    width: 100%;
    height: 60vh;
    min-height: 750px;
    top: -170px;
    background-image: url(images/about-us.jpg);
    /* background-position-y: -100px; */
    background-size: cover;
    background-position: bottom;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    position: relative;
    top: -145px;
    text-align: center;
    padding: 0 20px;
    font-size: 5rem;
    font-weight: 300;
    color: var(--logo-dark-blue);
    z-index: 2;
}

main {
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 2000px;
    width: 100%;
    position: relative;
    top: -171px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-grid-image {
    background-size: cover;
    background-position: center;
    height: 700px;
}

.about-grid-text {
    color: white;
    font-size: 2.75rem;
    font-weight: 200;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 50px;
}

.about-text1 {
    background-image: linear-gradient(135deg, var(--logo-dark-blue), #3171a8);
}

.about-text2 {
    background-image: linear-gradient(135deg, var(--logo-blue), #4994d5);
}

.about-text3 {
    background-image: linear-gradient(135deg, var(--logo-dark-blue), #3171a8);
    /* background-image: linear-gradient(135deg, var(--logo-orange), #c16219); */
}

.about-text4 {
    grid-column-start: 1;
    grid-column-end: 3;
    height: auto;
}

.about-image1 {
    background-image: url(images/skip-1.jpg);
}

.about-image2 {
    background-image: url(images/header-image.jpg);
}

.about-image3 {
    background-image: url(images/road-sweeper.jpg);
}

.profile-image {
    width: 150px;
    height: 200px;
    border: 1px solid white;
}

.about-text1 p {
    position: relative;
    transform: translateY(-50px);
}

.about-text1 a {
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 300;
    padding: 5px 15px;
    border-radius: 100px;
    position: absolute;
    transform: translateY(270px);
    color: var(--logo-orange);
    cursor: pointer;
    border: 2px solid var(--logo-orange);
    transition: 0.2s all ease-in-out;
}

.about-text1 a:hover {
    color: var(--logo-dark-blue);
    background-color: var(--logo-orange);
}

.meet-director-title {
    width: 100%;
}

#meet-director h2 {
    font-weight: 300;
    font-size: 5rem;
    margin-bottom: 40px;
    color: var(--logo-dark-blue);
}

.director-card h3 {
    font-weight: 200;
}

.director-container {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.director-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--logo-dark-blue);
}

.director-card a {
    color: var(--logo-blue);
    font-size: 4rem;
    transition: all 0.2s ease-in-out;
}

.director-card a:hover {
    color: var(--logo-orange);
    transform: scale(1.1);
}

.director-img {
    width: 400px;
}

.contact-container {
    margin-top: -170px;
}

/* --------------------RESPONSIVE STYLES-------------------- */

@media (max-width: 1300px) {
    .about-grid-text {
        font-size: 2.4rem;
    }
}

@media (max-width: 1080px) {
    .about-container {
        display: flex;
        flex-flow: column wrap;
    }

    .about-text2 {
        order: -1;
    }

    .about-text1 {
        order: -2;
    }

    .about-image1 {
        order: -2;
    }

    .about-carousel {
        height: 70vw;
        min-height: 450px;
    }
}

@media (max-width:970px) {
    .director-img {
        width: 250px;
    }

    .about-text4 {
        padding: 50px 0;
    }

    #meet-director h2 {
        font-size: 11vw;
    }
}

@media (max-width: 850px) {
    .about-carousel {
        height: 40vh;
    }
}

@media (max-width:600px) {
    .director-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .director1 {
        margin-bottom: 50px;
    }

    .director-card h3 {
        font-size: 2rem;
        font-weight: 300;
    }

    .about-carousel {
        min-height: 400px;
    }
}

@media (max-width: 550px) {
    .about-grid-text {
        font-size: 7vw;
        font-weight: 200;
        padding: 50px 50px;
    }

    .about-grid-image {
        height: 400px;
    }

    .about-carousel {
        background-image: url(images/about-us-mobile.jpg);
    }
}