.dealSection {
    padding-bottom:40px !important;
    header{
        border-bottom: 1px solid #ccc;padding-bottom: 16px;
        display:flex;justify-content: space-between;align-items:center;
        a{
            color:#000;
            &:hover{
                color:color(600);
            }
        }
    }
    .owl-controls {
        .owl-dots {
            display: block;
            position: absolute;
            text-align: center;
            margin-top: 0;
            left: 50%;
            transform: translateX(-50%);
            bottom:-45px;
            .owl-dot {
                width: 15px;
                height: 15px;
                background: #666;
                border-radius: 50%;
                display: inline-block;
                margin: 0 5px 0;               
                transition: 0.3s ease-in;
                box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
            }
        }
    }
    @include media-breakpoint-down(lg) {
        header{
            padding-bottom:6px;
        }
    }
    @include media-breakpoint-down(sm) {
        padding-bottom:25px !important;
        .owl-controls {
            .owl-dots {  
                bottom:-25px;             
                .owl-dot {
                    width:10px;
                    height:10px;                   
                }
            }
        }
    }
}
