/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 28 2026 | 01:20:19 */
.profi-slider-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background: #000;
    user-select: none;
    border-radius: 0 !important;
    cursor: pointer;
}
.profi-slider-track {
    display: flex;
    width: max-content;
    will-change: transform;
}
.profi-slider-track img {
    height: 60vh !important;
    width: auto !important;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    border-right: 1px solid black;
    box-sizing: border-box;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 100;
    font-size: 30px;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.6);
    opacity: 0.6;
    transition: opacity 0.3s;
}
.slider-arrow:hover { opacity: 1; }
.prev { left: 30px; }
.next { right: 30px; }
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 101;
}
.dot {
    width: 35px;
    height: 3px;
    background-color: white;
    opacity: 0.3;
    transition: all 0.4s ease;
    cursor: pointer;
}
.dot.active { opacity: 1; width: 50px; }