/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.project-one__shape-1 {
    position: absolute;
    top: 168px;
    right: 20px;
    z-index: -1;
}

.project-one__shape-1 img {
    width: auto;
}

.project-one__bg-color {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc((100% - -800px) /3);
    background-color: var(--arovan-primary);
    z-index: -1;
    clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0% 100%);
}

.project-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 62px;
}

.project-one__top .section-title {
    margin-bottom: 0px;
}

.project-one__btn-box {
    position: relative;
    display: block;
}

.project-one__bottom {
    position: relative;
    display: block;
}

.project-one__bottom .container {
    max-width: 1730px;
}
.project-single__container {
    margin-bottom: 30px;
}
.project-one__single {
    position: relative;
    display: block;
    /* margin-bottom: 30px; */
}

.project-one__img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--arovan-bdr-radius);
    background-color: var(--arovan-black);
}

/* .project-one__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--arovan-black-rgb), .85);
    border-radius: var(--arovan-bdr-radius);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
}

.project-one__single:hover .project-one__img::before {
    opacity: 1;
    transform: translateY(0px);
} */

.project-one__img img {
    width: 100%;
    opacity: .70;
    border-radius: var(--arovan-bdr-radius);
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
    height: 400px;
    object-fit: cover;
}

.project-one__single:hover .project-one__img img {
    transform: scale(1.05) rotate(0deg);
}



.project-one__title-box {
    position: relative;
    display: block;
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    padding: 20px 10px;
}



.project-one__sub-title {
    color: var(--arovan-black);
    margin-bottom: 5px;
}

.project-one__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}



.project-one__title span {
    color: var(--arovan-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-one__title span:hover {
    color: var(--arovan-base);
}

.project-one__arrow {
    position: relative;
    display: block;
    opacity: 0;
    transform: translateX(60px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.project-one__single:hover .project-one__arrow {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 600ms;
}

.project-one__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--arovan-base);
    font-size: 16px;
    color: var(--arovan-white);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-one__arrow a:hover {
    background-color: var(--arovan-white);
    color: var(--arovan-base);
}




.project-single__container {
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 10%);
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}



.project-one__sub-title {
    color: var(--arovan-black);
    margin-bottom: 5px;
    background: #0071921f;
    padding: 2px 15px;
    display: inline-block;
    border-radius: 100px;
}

.project-one__content {
    position: absolute;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}




/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
