* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
}


.ANCA-Directors {
    display: block;
    width: 1250px;
    margin: 0 auto;
padding-top: 48px;
}


.first-director {
       display: flex;
                width: 100%;
                gap: 40px;
                background: #fff;
                box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
                padding: 10px 10px;
}

.first-director-content {
    display: block;
}

.first-director-content h3 {
       font-size: 40px; color: #182333; font-weight: 700
}

.first-director-content p {
       color: #8d9297; font-size: 17px; line-height: 25px
}

.first-director-image {
    height: 250px;
    width: 30%;
}

.first-director-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .ANCA-Directors {
        width: 100%;
        padding: 0px 15px;
padding-top: 20px;

    }


    .first-director {
        flex-direction: column;
    }

    .first-director-image {
        width: 100%;
    }

    .first-director-image img {
width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1170px) {
    .ANCA-Directors {
        width: 90%;
    }

}


@media (min-width: 1250px) {
    .ANCA-Directors {
        width: 1250px;
    }
}

