* {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

:root {
    --primary: linear-gradient(135deg, hsl(145 65% 35%) 0%, hsl(210 80% 45%) 100%);
    --black: #000;
    --secondary: #fff;
    --main: #135B94;
    --popular: #1F9254;
}

.animate-spin-slow {
    animation: spin 6s linear infinite !important;
}

.cursor {
    display: inline-block;
    animation: blink 0.8s infinite;
    color: #fff;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    transition: .4s;
}

.service-card:hover .service-icon {
    background: #16a34a;
    border-color: #16a34a;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-icon img {
    transition: .4s;
}

.mySwiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.custom-prev,
.custom-next {
    width: 50px !important;
    height: 50px !important;
    background: #16a34a;
    color: #fff !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

.custom-prev {
    left: -25px;
}

.custom-next {
    right: -25px;
}

.custom-prev::after,
.custom-next::after {
    display: none;
}

.custom-prev:hover,
.custom-next:hover {
    background: #15803d;
}

@media(max-width:768px) {

    .custom-prev,
    .custom-next {
        width: 40px !important;
        height: 40px !important;
    }

    .custom-prev {
        left: -19px;
    }

    .custom-next {
        right: -19px;
    }

}