 .slider-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 36px 40px 36px;
    background-color: #e5f3fa;
    margin-bottom: 37px;
        }
     .slider-container a{display: block}    
        .slider_side {
            display: flex;
            transition: transform 0.5s ease;
            cursor: grab;
            user-select: none;
        }
        
        .slider_side.grabbing {
            cursor: grabbing;
            transition: none;
        }
        
        .slide_side {
            flex: 0 0 33.333%;
            padding: 0 10px;
        }
        
        .slide_side img {
            width: 100%;
            height: 269px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            pointer-events: none;
        }
        
        .slider-btn {
            position: absolute;
            top: 42%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: #0088CC;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            background-repeat: no-repeat;
            background-position: center center;
        }
        
        .slider-btn:hover {
			margin: -1px -1px 0 0;
			box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .slider-container .title{font-size: 24px;
    padding-top: 23px;
    line-height: normal;}
        .prev_slider {
            left: 0;
            background-image: url(/images/icons/left.png);
        }
        
        .next_slider {
            right: 0;
            background-image: url(/images/icons/right.png);
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .dot.active {
            background: #333;
        }