/* Website Slider */
.dtm-banner-section {
    width: 100%;
    overflow: hidden;
}

.dtm-slider-section {
    padding: 0;
}

.dtm-banner-slider {
    width: 100%;
    position: relative;
}

.dtm-slider-inner {
    width: 100%;
}

.dtm-slide-item {
    width: 100%;
}

.dtm-slide-image {
    width: 100%;
    /* height: 450px; */
    object-fit: cover;
    display: block;
}

.dtm-slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dtm-indicator-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dtm-indicator-btn.active {
    background-color: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
}

.dtm-slider-prev,
.dtm-slider-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.dtm-slider-prev:hover,
.dtm-slider-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.dtm-slider-prev {
    left: 20px;
}

.dtm-slider-next {
    right: 20px;
}

.dtm-prev-icon,
.dtm-next-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .dtm-slide-image {
        height: 380px;
    }

    .dtm-slider-prev,
    .dtm-slider-next {
        width: 35px;
        height: 35px;
    }

    .dtm-slider-prev {
        left: 15px;
    }

    .dtm-slider-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .dtm-slide-image {
        height: 300px;
    }

    .dtm-slider-prev,
    .dtm-slider-next {
        width: 30px;
        height: 30px;
    }

    .dtm-prev-icon,
    .dtm-next-icon {
        width: 16px;
        height: 16px;
    }

    .dtm-slider-indicators {
        bottom: 15px;
    }

    .dtm-indicator-btn {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

@media (max-width: 576px) {
    .dtm-slide-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .dtm-slide-image {
        height: 200px;
    }
}
/* Default Fa Fa Design */
.base_fa_icons {
    color: #392c7d !important;
    font-size: 30px;
}
