
/*** Project ***/
.projectCarousel {
    position: relative;
    background: var(--dark);
}

.projectItem {
    position: relative;
    display: block;
}

.projectItem img {
    transition: .5s;
}

.projectItem:hover img,
.projectCarousel .owl-item.center img {
    margin-top: -60px;
}

.projectItem .projectTitle {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.projectItem:hover .projectTitle,
.projectCarousel .owl-item.center .projectTitle  {
    bottom: -60px;
}

.projectItem .projectTitle::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.projectCarousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.projectCarousel:hover .owl-nav {
    opacity: 1;
}

.projectCarousel .owl-nav .owl-prev,
.projectCarousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}