.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item .fact-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}

.facts-carousel {
    position: relative;
}

.facts-carousel .owl-stage-outer {
    padding-top: 60px;
}

.facts-carousel .owl-stage {
    display: flex;
}

.facts-carousel .owl-item {
    display: flex;
    height: auto;
}

.facts-carousel .owl-nav {
    position: absolute;
    top: calc(50% + 30px);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
}

.facts-carousel .owl-nav .owl-prev,
.facts-carousel .owl-nav .owl-next {
    pointer-events: auto;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.25rem;
    margin: 0 -22px;
    cursor: pointer;
}

.facts-carousel .owl-nav .owl-prev:hover,
.facts-carousel .owl-nav .owl-next:hover {
    background-color: var(--dark);
}

.facts-carousel .owl-nav .disabled {
    opacity: .4;
    cursor: default;
    pointer-events: none;
}
