#carousel {
    margin: auto;
    width: 100%;
    text-align: center;
    font-size: 32px;
    color: #7E8D85;
}

#carousel .item {
    height: 600px;
}

.item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-item:nth-child(1) {
    background: #EFFBF5;
}

.owl-item:nth-child(2) {
    background: #EEE;
}

.owl-item:nth-child(3) {
    background: #E8E8E8;
}

.owl-item:nth-child(4) {
    background: #EFFBF5;
}

.owl-item:nth-child(5) {
    background: #EEE;
}

.owl-item:nth-child(6) {
    background: #E8E8E8;
}

.project-slider > .owl-nav {
    top: 36%;
    left: -48px;
    right: -48px;
}

.client-slider > .owl-nav {
    top: 42%;
    left: -48px;
    right: -48px;
}

.owl-nav {
    position: absolute;
    height: 0;
    top: 50%;
    left: 16px;
    right: 16px;
}

.owl-carousel {
    margin-bottom: 2rem;
}

.owl-stage-outer {
    padding-bottom: 1rem;
}

.owl-nav [class^=owl] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ed1c24;
    position: absolute;
    top: -12px;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.owl-nav [class^=owl]:after {
    content: "";
    display: block;
    border: 10px solid transparent;
    position: absolute;
    top: calc(50% - 10px);
    transition: opacity 0.2s ease 0.2s;
}

.owl-nav [class^=owl].disabled {
    transform: scale(0);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.owl-nav [class^=owl].disabled:after {
    opacity: 0;
}

.owl-nav> :first-child {
    left: 0;
}

.owl-nav> :first-child:after {
    left: calc(50% - 16px);
    border-right-color: white !important;
}

.owl-nav> :last-child {
    right: 0;
}

.owl-nav> :last-child:after {
    right: calc(50% - 16px);
    border-left-color: white !important;
}

@media (max-width: 480px) {
    .project-slider > .owl-nav {
        top: 30%;
        left: -30px;
        right: -30px;
    }
    
    .client-slider > .owl-nav {
        top: 42%;
    }
    
    .owl-nav {
        position: absolute;
        height: 0;
        top: 50%;
    }

    .client-slider > .owl-nav {
        top: 42%;
        left: -36px;
        right: -36px;
    }

    .owl-nav [class^=owl] {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #ed1c24;
        position: absolute;
        top: -12px;
        transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .project-slider > .owl-nav [class^=owl] {
        top: -5px;
    }

    .owl-nav [class^=owl]:after {
        content: "";
        display: block;
        border: 7px solid transparent;
        position: absolute;
        top: calc(50% - 7px);
        transition: opacity 0.2s ease 0.2s;
    }

    .owl-nav> :first-child:after {
        left: calc(50% - 12px);
        border-right-color: white !important;
    }

    .owl-nav> :last-child:after {
        right: calc(50% - 12px);
        border-left-color: white !important;
    }
}

.owl-dots {
    text-align: center;
    line-height: 0;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
}

.owl-dot+.owl-dot {
    margin-left: 12px;
}

.owl-dot:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ed1c24;
    transform: scale(0.25);
    transition: transform 0.3s ease;
}

.owl-dot.active:after {
    transition-delay: 0.2s;
    transform: scale(1);
}

.dot-indicator {
    width: 24px;
    height: 2px;
    background: #ed1c24;
    position: absolute;
    top: calc(50% - 1px);
    transform: scaleX(0);
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.dot-indicator.next {
    left: 50%;
    -webkit-animation-name: dot-indicator-next;
    animation-name: dot-indicator-next;
}

.dot-indicator.prev {
    right: 50%;
    -webkit-animation-name: dot-indicator-prev;
    animation-name: dot-indicator-prev;
}

@-webkit-keyframes dot-indicator-next {

    0%,
    100% {
        transform: scaleX(0);
    }

    0%,
    60% {
        transform-origin: left;
    }

    60% {
        transform: scaleX(1);
    }

    60.1%,
    100% {
        transform-origin: right;
    }
}

@keyframes dot-indicator-next {

    0%,
    100% {
        transform: scaleX(0);
    }

    0%,
    60% {
        transform-origin: left;
    }

    60% {
        transform: scaleX(1);
    }

    60.1%,
    100% {
        transform-origin: right;
    }
}

@-webkit-keyframes dot-indicator-prev {

    0%,
    100% {
        transform: scaleX(0);
    }

    0%,
    60% {
        transform-origin: right;
    }

    60% {
        transform: scaleX(1);
    }

    60.1%,
    100% {
        transform-origin: left;
    }
}

@keyframes dot-indicator-prev {

    0%,
    100% {
        transform: scaleX(0);
    }

    0%,
    60% {
        transform-origin: right;
    }

    60% {
        transform: scaleX(1);
    }

    60.1%,
    100% {
        transform-origin: left;
    }
}