/* About-us page */

.abt-img {
    margin-bottom: 20px;
    border-radius: 10px;
    min-height: 173px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 10px;
}

.abt-img.overlay.img-pos::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.abt-img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media(min-width:1024px) {
    .abt-img {
        margin-bottom: 30px;
    }
}

.abt-img.overlay.img-pos h5 {
    margin: 0;
    position: relative;
    color: white;
}

.abt-img.overlay.img-pos:hover h5 {
    color: #0067b2;
    transition: 0.5s;
}


/* About-us-details */

.mission-vision p {
    margin: 0;
    color: #fff;
}

.mission-vision h2 {
    color: #ffcb30;
}

.mission-section .mission-vision:first-child {
    border-bottom: 2px solid rgba(174, 14, 30, 0.26);
}


/* board-of-director */

.chairman-img {
    width: 100%;
    padding-top: 350px;
}

.chairman-img img {
    width: 100%;
}

.chairman-content {
    width: 100%;
    padding: 15px;
}

.chairman-content h2 {
    color: #fff;
}

.chairman-content p {
    color: #fff;
    font-size: 26px;
    font-weight: 300;
}

.chairman-content p.chairman-name {
    font-size: 20px;
}

.chairman-content p.chairman-name span {
    font-size: 16px;
    display: block;
}

@media(min-width:1024px) {
    section.message-section {
        display: flex;
        position: relative;
    }
    .director-wrapper {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .col-md-12.col-sm-12.col-xs-12 .director-wrapper {
        display: flex;
        flex-wrap: wrap;
    }
    .chairman-img {
        width: 35%;
        padding: 0;
    }
    .chairman-img img {
        width: 100%;
    }
    .chairman-content {
        width: 65%;
        padding: 60px 50px 90px 50px;
    }
    section.message-section:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 140px;
        transform: skewY(4deg);
        background-color: #fff;
        bottom: -45px;
        left: 0;
    }
}

@media(min-width:1300px) {
    section.message-section:before {
        height: 160px;
        bottom: -70px;
    }
    .chairman-content {
        padding: 80px 90px 120px 90px;
    }
}


/* director-section */

.directors-content {
    margin-bottom: 30px;
}

.directors-content p {
    font-size: 18px;
    font-weight: 300;
}


/* .director-img {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.director-img-content  {
    position: relative;
    margin-right: 20px;
    width: 150px;
    height: 150px;
} */

.director-img-content img {
    border-radius: 50%;
}

.director-img h5 {
    color: #e53135;
    width: calc(100% - 150px - 15px);
}

.director-img h5 span {
    font-size: 15px;
    display: block;
    color: #484848;
}

.director-img {
    margin-bottom: 15px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media(min-width:1024px) {
    .col-md-12.col-sm-12.col-xs-12 .director-wrapper .director-img {
        width: calc(100%/3);
    }
}

.director-img-content {
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
    width: 150px;
    height: 150px;
    margin-right: 15px;
    padding: 2px;
}

.director-img-content img {
    position: relative;
    z-index: 2;
    width: 100%;
}

.director-img-content .circle {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
}


/* .director-img-content .circle:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background: #042b1c;
  } */

.director-img-content .circle span {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.director-img-content .circle span em {
    position: absolute;
    border-radius: 999px;
    width: 100%;
    height: 100%;
    background: #e53135;
    transition: transform 0.25s linear;
}

.director-img-content .circle span:first-child {
    left: 0%;
}

.director-img-content .circle span:first-child em {
    left: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transform-origin: 0% 50%;
}

.director-img-content .circle span:last-child {
    left: 50%;
}

.director-img-content .circle span:last-child em {
    left: -100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transform-origin: 100% 50%;
    transition-delay: 0.25s;
}

.director-img-content:hover .circle span:first-child em {
    transform: rotate(-180deg);
    transition: transform 0.5s ease-out;
    transition-delay: 0.25s;
}

.director-img-content:hover .circle span:last-child em {
    transform: rotate(-180deg);
    transition: transform 0.25s linear;
}

.members-content {
    display: none;
}

.members-content.show {
    display: block;
}

.members-button {
    margin-bottom: 15px;
}