.about-ttl-txt {
    font-size: 20px;
    font-weight: 700;
}

.who-we-are .banner-title {
    width: 90%;
}

.who-we-are .col-md-5 p {
    margin-top: 65px;
}

.counter-list {

  display: flex;

  align-items: center;

  border-top: 1px solid var(--border-color);

  margin-top: 30px;
}



.counter-list .counter-list-detail {

  display: flex;

  flex-direction: column;

  align-items: center;

  padding-right: 50px;

}



.counter-list .counter-list-detail .number {

  font-size: 48px;

  font-weight: 700;

  line-height: 1.5;

}

.counter-list .counter-list-detail .info-ttl {
    text-align: center;
}

.member-section .banner-title {
    width: 67%;
}

.member-section .member-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.member-section .member-list img {
    width: 264px;
    height: 335px;
    border-radius: 20px;
    object-fit: cover;
}

.core-services {
    padding: 80px 0;
}

.core-services .service-txt {
    font-size: 20px;
    text-transform: capitalize;
    width: 59%;
}

.core-services .service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.core-services .service-list li {
    background-color: #fff;
    box-shadow: 2px 0px 16.1px 0px #0000001A;
    padding: 24px;
}

.core-services .service-list li .list-number {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background-color: #1127C4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.core-services .service-list li p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    text-transform: capitalize;
    margin: 10px 0;
}

/* Tablet and below */
@media screen and (max-width: 1024px) {
    .member-section .member-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .core-services .service-list {
        grid-template-columns: repeat(2, 1fr);

    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .about-ttl-txt {
        font-size: 5.333vw;
    }

    .who-we-are .col-md-5 p {
        margin-top: 9.333vw;
    }



    .counter-list .counter-list-detail {

        padding-right: 8vw;

    }



    .counter-list .counter-list-detail .number {

        font-size: 8.533vw;

    }

    .member-section .banner-title {
        width: 100%;
    }

    .member-section .member-list {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 5.333vw;
    }

    .member-section .member-list img {
        width: 100%;
        height: 89.333vw;
        border-radius: 5.333vw;
        object-fit: cover;
    }

    .core-services {
        padding: 10.667vw 0;
    }

    .core-services .service-txt {
        font-size: 5.333vw;
        width: 100%;
    }

    .core-services .service-list {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 5.333vw;
    }

    .core-services .service-list li {
        padding: 6.4vw;
    }

    .core-services .service-list li .list-number {
        font-size: 5.867vw;
        width: 10.667vw;
        height: 10.667vw;
        margin-bottom: 8vw;
    }

    .core-services .service-list li p {
        font-size: 4.267vw;
        margin: 2.667vw 0;
    }

}