.createit-banner-slider-wrap {
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.createit-slider-content {
    display: flex;
    align-items: center;  /* This will center the items vertically */
    justify-content: space-between; /* This will provide equal spacing between items */
    height: 280px; /* Example height, adjust based on your banner's height */
}

.createit-slider-content .createit-slide {
    padding: 10px 12.5px; /* Adjusted padding for 25px spacing between banners */
    box-sizing: border-box; /* To include padding in width */
    flex: 0 0 calc(25% - 25px); /* This will ensure that each slide takes up 25% of the container width minus the 25px spacing */
}

.createit-slider-content .owl-nav .owl-prev,
.createit-slider-content .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
}

.createit-slider-content .owl-nav .owl-prev {
    left: 3px;
}

.createit-slider-content .owl-nav .owl-next {
    right: 3px;
}

.createit-banner-slider-wrap .owl-nav .owl-prev, .createit-banner-slider-wrap .owl-nav .owl-next {
    font-size: 25px !important;
}

.createit-banner-slider-wrap .owl-nav .owl-prev:hover {
    transform: translateY(-50%) translateX(-2px);
}

.createit-slide img {
    width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}


.createit-slider-content .createit-slide {
    height: 280px; /* assuming this is the height you want */
    display: flex;
    align-items: center; /* vertically center the content */
    justify-content: center; /* horizontally center the content */
    padding: 10px 12.5px;
}

.createit-slide img {
    max-width: 220px;
    height: auto;
    margin: 0;
}
