.imageContainer {
    text-align: center;
    margin-top: 50px;
    position: relative;
    display: inline-block;
    margin: 20px;
}
.owl-carousel .item .imageContainer img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    display: none;
    border-radius: 16px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 18px;
    margin-bottom: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sliderx {
    position: absolute;
    cursor: pointer;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0;
    background-color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.sliderx:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 6px;
    bottom: 2px;
    background-color: #000;
    transition: 0.4s;
}

input:checked + .sliderx {
    background-color: #fff;
    border: 0.5px solid #333333;
}

input:focus + .sliderx {
    box-shadow: 0 0 1px #2196f3;
}

input:checked + .sliderx:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.sliderx.roundx {
    border-radius: 34px;
    border: 0.5px solid #333333;
}

.sliderx.roundx:before {
    border-radius: 50%;
}
img.toggle-image {
    border-radius: 16px;
}
.before_after {
    background: transparent linear-gradient(80deg, #dadada 0%, #ffffff 38%, #ebe8e8 81%, #ffffff 100%) 0% 0% no-repeat padding-box;
    border-radius: 37px;
    width: 200px;
    padding: 12px;
    margin: 0 auto;
    margin-top: -20px;
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

/*     navbar       */
.main-content {
    position: relative;
}
.main-content .owl-theme .custom-nav {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
}
.main-content .owl-theme .custom-nav .owl-prev,
.main-content .owl-theme .custom-nav .owl-next {
    position: absolute;
    height: 100px;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}
/* .main-content .owl-theme .custom-nav .owl-prev i,
.main-content .owl-theme .custom-nav .owl-next i {
    font-size: 2rem;
    color: #000;
    margin-top: -8px;
} */
.main-content .owl-theme .custom-nav span.dashicons {
    margin-top: -5px;
    margin-left: -5px;
}

.main-content .owl-theme .custom-nav .owl-prev {
    left: 31%;
    top: 40px;
    border: 1px solid #dfdfdf;
    border-radius: 100px;
    padding: 13px;
    height: 40px;
    width: 40px;
}
.main-content .owl-theme .custom-nav .owl-next {
    right: 31%;
    top: 40px;
    border: 1px solid #dfdfdf;
    border-radius: 100px;
    padding: 13px;
    height: 40px;
    width: 40px;
}

.owl-item.active {
    filter: blur(7px);
}

.owl-item.active.center {
    filter: unset;
}
.owl-item.active {
    transform: rotate(355deg);
}
.owl-item.active.center {
    transform: rotate(0deg);
}
.owl-item.active.center + .owl-item.active {
    transform: rotate(5deg);
}
.owl-carousel .item {
    text-align: center;
}

.owl-carousel .item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.owl-item.active.center .item img {
    transform: rotate(0deg);
}

.owl-item.active.prev .item img {
    transform: rotate(-20deg);
}

.owl-item.active.next .item img {
    transform: rotate(20deg);
}
