body {
    overflow-x: hidden;
}

.cc-owl {
    position: relative;
    overflow: hidden;
    width: 100vw;       /* full viewport width */
    max-width: 100vw;   /* prevent overflow */
    left: 50%;
    right: 50%;
    margin-left: -50vw; /* pull to edge left */
    margin-right: -50vw; /* pull to edge right */
}
.cc-stage {
    display: flex;
    transition: 0.5s;
    flex-wrap: nowrap;  /* prevent wrap */
}

.cc-item {
    flex: 0 0 100%;
    position: relative;
    height: 500px; /* FIX HEIGHT */
}

.cc-item img {
    width: 100%;
    height: auto;
    object-fit: cover; /* IMPORTANT */
    display: block;
}
.cc-prev,.cc-next{
    position:absolute; top:50%;
    transform:translateY(-50%);
    background:#000;color:#fff;
    border:none;padding:10px;
}
.cc-prev{
   left:10px;
}
.cc-next{
   right:10px;
}
	
	
	
.cc-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;  /* space between dots */
    flex-wrap: nowrap; /* prevent last dot wrapping */
}
.cc-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.cc-dot.active {
    background: #fff;
}

/* Tablet */
@media (max-width: 1024px) {
    .cc-item img {
        max-height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cc-item img {
        max-height: 250px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .cc-item img {
        max-height: 200px;
    }
}
@media (max-width: 768px) {
    .cc-prev, .cc-next {
        font-size: 14px;
        padding: 5px 8px;
    }
}
@media (max-width: 768px) {
    .cc-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .cc-item {
        height: auto;
    }
}
