.main-color{
    color: #19C1B6;
}
.education-card{
    margin: 0 !important;
}
@media only screen
and (max-device-width: 840px) {
    .education-card{
        margin: 0 15px !important;
    }
}
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    top: 30%;
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
    transition: all 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
    background: #f8f8f8;
    transform: scale(1.1);
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    color: #333;
    opacity: 1;
}

/* Position arrows */
.slick-prev {
    left: -30px;
}

.slick-next {
    right: -20px;
}


.slick-dots{
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
    margin-left: 30px;
    padding-bottom: 10px;
    gap: 5px;
    flex-wrap: wrap;
}
.slick-dots li {
    margin: 0 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    background-color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.slick-dots li button:before {
    font-size: 12px;
    color: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active  {
    background-color:rgba(25, 193, 182, .8);
    width: 28px;
    height: 28px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slick-prev {
        display: none!important;
        /*left: 5px;*/
        /*width: 30px !important;*/
        /*height: 30px!important;*/
    }
    .slick-next {
        display: none!important;
        /*right: 5px;*/
        /*width: 30px !important;*/
        /*height: 30px!important;*/
    }
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.educational-offer-slider  .slick-slide{
    display: flex!important;
}
.slick-dots li button {
    outline: none !important;
    border: none !important;
}

.slick-dots li button:focus {
    outline: none !important;
    border: none !important;
}



.hover-effect {
    position: relative;
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 2px;
}

.hover-effect::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--main-color);
    transition: width 0.3s ease;
}

.hover-effect:hover::after {
    width: 100%;
}
