
/* hero-sec */
.hero-sec {
    padding-top: 125px;
}
.hero-sec img {
    max-width: 100%;
}

.hero-sec .hero-sec-content div {
    font-size: 20px;
}

.hero-sec .hero-sec-content h2 {
    font-size: 58px;
}

.hero-sec .hero-slider-container {
    padding: 10px 0;
}

.hero-sec .slick-dots li button:before {
    font-size: 10px;
}

.hero-sec .slick-dots {
    bottom: -45px;
}

.hero-sec .slick-dots li {
    margin: 0 2px;
}

@media(max-width: 992px) {
    .hero-sec .hero-sec-content h2 {
        font-size: 42px;
    }
}

@media(max-width: 767px) {
    .hero-sec {
        padding-top: 100px;
    }
    .hero-sec img {
        margin-top: 25px;
    }
    .hero-sec .hero-sec-content div {
        font-size: 16px;
    }
    .hero-sec .hero-sec-content p {
        font-size: 14px;
    }
    .hero-sec .slick-dots li button:before {
        font-size: 8px;
}
}

/* why-choose-us  */
.why-choose-us .title div {
    font-weight: 500;
}

.why-choose-us .title h1 {
    font-size: 34px;
}

.why-choose-us .card-container {
    padding-right: 30px;
    padding-left: 30px;
}

.why-choose-us .card {
    border: 1px solid var(--blue);
    background-color: var(--gray-light);
    padding: 20px 15px;
}

.why-choose-us  .card h3 {
    color: var(--blue);
    font-size: 20px;
    margin-bottom: 3px;
}

.why-choose-us .card p {
    font-size: 14px;
    margin-bottom: 5px;
    padding-left: 20px;
}

.why-choose-us .card .link {
    font-size: 14px;
    color: var(--basic);
}

.why-choose-us .card .link img {
    margin-right: 5px;
    height: 16px;
    transition: var(--transition);
}

.why-choose-us .card .link:hover img {
    margin-right: 7px;
}

.why-choose-us .card .kid {
    left: -51px;
    height: 117px;
    top: 15px;
}

.why-choose-us .first-card , .why-choose-us .second-card, .why-choose-us .third-card {
    padding: 0 40px;
}

.why-choose-us .second-card .card {
    border: 1px solid var(--red);
}

.why-choose-us .second-card h3 {
    color: var(--red);
}

@media(max-width: 992px) {
    .why-choose-us .card .kid {
        left: -52px;
        height: 107px;
        top: -15px;
    }

    .why-choose-us .card {
        margin-bottom: 50px;
    }
}

@media(max-width: 767px) {
    .why-choose-us .title div {
        font-size: 14px;
    }

    .why-choose-us .title h1 {
        font-size: 22px;
        line-height: 33px;

    }

    .why-choose-us .card h3 {
        font-size: 16px;
    }
    .why-choose-us .first-card , .why-choose-us .second-card, .why-choose-us .third-card {
    padding: 0 20px;
    }

    .why-choose-us .card .kid {
       left: -28px;
    height: 107px;
    top: 25px;
    }
}

/* about-us */
.about-us .content div {
    font-weight: 500;
    font-size: 18px;
    text-align: right!important;
}

.about-us .content h2 {
    font-size: 34px;
    text-align: right!important;
}

.about-us .content p {
    margin-bottom: 30px;
    text-align: right!important;
}
.text-lg-start {
    text-align: right !important;
}

@media(max-width: 767px) {
    .about-us .content div {
        font-size: 16px;
    }
    .about-us .content h2 {
        font-size: 24px;
    }
    .about-us .content p {
        font-size: 14px;
    }
}

/* counter */
.counter .counter-img {
    max-height: 150px;
    width: 100%;
    object-fit: contain;
}

.counter .item img {
    max-height: 100px;
}

.counter .item h4 {
    margin-bottom: 0;
    color: var(--dark-blue);
    font-size: 32px;
    font-weight: 700;
}

.counter .item .info {
    color: var(--gray-middle);
}

@media(max-width: 767px) {
    .counter .item {
        margin-bottom: 15px;
    }
    .counter .item img {
        max-height: 140px;
    }
    .counter .item h4 {
        font-size: 26px;
    }
}

/* services */
.services {
    background-image: url(../images/services-bg.png);
    background-size: cover;
}

.services .item {
    padding: 0 20px;
}

.services .title div {
    font-weight: 500;
}

.services .item h5 {
    margin-bottom: 3px;
    font-size: 20px;
}

.services .item p {
    font-size: 14px;
}

.services .item .link {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.services .item .link img {
    height: 20px;
    margin-right: 3px;
    transition: var(--transition);
}

.services .item .link:hover img {
    margin-right: 7px;
}
.slick-next:before, .slick-prev:before {
    font-family: "Font Awesome 6 free"; 
	font-weight: 400;
    color: var(--blue);
    font-size: 30px;
}

.slick-prev, .slick-next {
    top: 33%;
}

.slick-next {
    left: 0;
}

.slick-prev {
    right: 0;
}

.slick-next:before {
    content: '\f35a';
}

.slick-prev:before {
    content: '\f359';
}


.services .img-holder {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}
.services .img-holder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.services .img-holder img:hover {
    transform: scale(1.1);
}


.services .home-slider {
    padding: 0 40px;
}

@media(max-width: 992px) {
    .services .img-holder {
    height: 200px;
    }
}

@media(max-width: 767px) {
    .services {
        background-image: url(../images/services-mobile-bg.png);
    }
    .services .title div {
        font-size: 14px;
    }
    .services .title h2 {
        font-size: 20px;
    }
    .services .img-holder {
    height: 230px;
    }
    .services .item {
        text-align: center;
    }
    .services .item .link {
        justify-content: center;
    }
    .services .item h5 {
        font-size: 16px;
    }
    .services .home-slider {
        padding: 0;
    }
    .services .item p {
        margin-bottom: 5px;
    }
}

/* why-us */
.why-us .content .list-container {
    font-weight: 500;
    font-size: 18px;
}

.why-us .content p {
    color: var(--gray-middle);
}

.why-us ul {
    color: var(--blue-primary);
}

.why-us ul .child {
    margin-bottom: 10px;
    font-weight: 500;
    padding-left: 20px;
        font-size: 14px;
}

.why-us ul li img {
    height: 20px;
    margin-left: 5px;
}

@media(max-width: 767px) {
    .why-us .content div, .why-us .content p {
        font-size: 14px;
    }
    .why-us .content h2 {
        font-size: 20px;
    }
    .why-us ul .child {
        padding: 0;
    }
    .why-us .main-img {
        height: 200px;
        width: 100%;
        object-fit: contain;
    }
}

/* enroll */
.enroll {
    background-color: #6F82B866;
}

@media(max-width: 767px) {
    .enroll h3 {
        font-size: 22px;
    }
    .enroll p {
        font-size: 14px;
    }
}

/* home-second-slider */
.blogs {
    background-image: none;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button:before {
    font-size: 8px;
}

.slick-dots {
    bottom: -35px;
}