
@media(min-height:800px) and (min-width:1400px) {
    .carousel-wrapper {
        max-width: 860px
    }
}

*+.carousel-wrapper {
    margin-top: 60px
}

@media(min-width:1200px) {
    *+.carousel-wrapper {
        margin-top: 100px
    }
}

.circle-carousel {
    position: relative;
    padding-top: 100%
}

.circle-carousel .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.circle-carousel .content-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.circle-carousel .content-box.active {
    pointer-events: auto
}

.circle-carousel .content-box.active .content-box-inner {
    z-index: 1;
    opacity: 1;
    transform: scale(1)
}

.circle-carousel .content-box.active .content-title-wrap {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.circle-carousel .content-box-inner {
    width: 55%;
    height: 55%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, .3);
    transition: .55s ease-in-out;
    transform: scale(.85);
}

.circle-carousel .content-box-inner .content-box-img {
    border-radius: 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: #0281c8;
    background-image: -moz-linear-gradient(55deg, #0281c8 0%, #6abdeb);
    background-image: -webkit-linear-gradient(55deg, #0281c8 0%, #6abdeb);
    background-image: -ms-linear-gradient(55deg, #0281c8 0%, #6abdeb); 
}

.circle-carousel .content-title-wrap {
    opacity: 0;
    visibility: hidden;
    transition: all .5s .4s;
    overflow: hidden;
    text-align: center;
    z-index: 30;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 15px;
    transform: scale(.8);
    display: flex;
    justify-content: center;
    align-items: center
}

.circle-carousel .content-title h4 {
    color: #fff
}
.circle-carousel .content-title a{color: #ffffff;}

.circle-carousel .pagination {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 3px solid #000000;
    pointer-events: none;
    user-select: none
}

.circle-carousel .pagination .dot {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 13%;
    width: 13%;
    border-radius: 50%;
    pointer-events: auto;
    transition: .3s;
    background-color: #0281c8;
    font-size: 14px;
    color: rgba(255, 255, 255, .5)
}

.circle-carousel .pagination .dot:before,
.circle-carousel .pagination .dot:after {
    position: absolute;
    bottom: 0;
    margin: auto;
    content: "";
    transform: rotate(-180deg);
    opacity: 0;
    transition: all 1s
}

.circle-carousel .pagination .dot:before {
    transform-origin: top right;
    top: -50%;
    right: 140%;
    width: 30%;
    height: 30%;
    filter: blur(3px);
    border: 6px solid #f48e2a;
    z-index: -1
}

.circle-carousel .pagination .dot:after {
    transform-origin: bottom left;
    top: 100%;
    left: 130%;
    width: 40%;
    height: 40%;
    border-radius: 50%;
    border: 10px solid #fe9290;
    z-index: 5
}

.circle-carousel .pagination .dot:hover {
    transform: translate(-50%, -50%) scale(1.05);
    cursor: pointer;
    background: #fd5b45;
    color: #fff
}

@media(min-width:768px) {
    .circle-carousel .pagination .dot {
        font-size: 26px
    }
}

.circle-carousel .pagination .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.circle-carousel .pagination .item.active .dot {
    background-color: #fd5b45; 
    color: #fff
}

.circle-carousel .pagination .item.active .dot:before,
.circle-carousel .pagination .item.active .dot:after {
    transform: rotate(0deg);
    opacity: .6
}

.circle-carousel .prev,
.circle-carousel .next {
    display: none
}

@media(min-width:1200px) {
    .circle-carousel .prev,
    .circle-carousel .next {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 92px;
        cursor: pointer
    }
    .circle-carousel .prev span,
    .circle-carousel .next span {
        writing-mode: vertical-rl;
        text-orientation: upright;
        font-weight: 700
    }
    .circle-carousel .prev {
        left: -100px
    }
    .circle-carousel .next {
        right: -100px
    }
}

.bg-overlay-dark::before{background: green;}

