.web-slider .slick-dots {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.web-slider .slick-dots {
    list-style: none;
}

.web-slider .slick-custom-dot {
    width: 15px;
    height: 15px;
    background-color: #dadbdb;
    border-radius: 50%;
    transition: all linear 0.3s;
}

.web-slider .slick-active .slick-custom-dot {
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    transition: all linear 0.3s;
}

.web-slider .slider-content {
    background: rgba(4, 4, 4, 0.7);
    padding: 20px;
    color: #fff;
    border-top: 5px solid var(--primary-color);
    position: absolute;
    /* width: 650px; */
    width: 60%;
    bottom: 0px;
    opacity: 0;
}

.web-slider .left-btn-slick,
.web-slider .right-btn-slick {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.web-slider .slick-current .slider-content {
    bottom: 100px !important;
    transition: all 0.8s linear;
    -webkit-animation: fadein 1.4s ease-in forwards;
    -moz-animation: fadein 1.4s ease-in forwards;
    animation: fadein 1.4s ease-in forwards;
}

.web-slider .slider-content-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.web-slider .slick-dots {
    padding: 0px;
}

.left-arrow-slick {
    position: absolute;
    left: 15px;
    top: 0px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.right-arrow-slick {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90;
}

.left-arrow-slick i,
.right-arrow-slick i {
    font-size: 48px;
}

.slider-img-bg {
    position: relative;
    background-position: center center;
    background-size: cover;
}

@media (max-width: 1199px) {
    .web-slider .slick-custom-dot {
        width: 10px;
        height: 10px;
    }

    .web-slider .slick-active .slick-custom-dot {
        width: 10px;
        height: 10px;
    }

    .web-slider .slider-content {
        width: 80% !important;
    }

    .slider-content h2 {
        font-size: 16px !important;
    }

    .slider-content p {
        font-size: 14px !important;
    }

    .left-arrow-slick i,
    .right-arrow-slick i {
        font-size: 24px !important;
    }
}