
/* Recent Project */
.recent__projects {
    position: relative; 
    padding-bottom: 100px;
}

.recent__projects .shape {
    position: absolute;
    top: -105px;
    right: 0;
}

.recent__projects .container-fluid {
    padding: 0 50px;
}

.project__block .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .5s;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.70);
    overflow: hidden;
}

.project__block .inner-box:hover .overlay {
    opacity: 1;
}

.project__block .inner-box {
    position: relative;
    margin-bottom: 30px;
}

.project__block .image img {
    width: 100%;
}

.project__block .shape2 {
    position: absolute;
    left: 0;
    bottom: -100px;
    right: 0;
    opacity: 0;
    transition: .7s;
}

.project__block .shape2 img {
    width: 100%;
}

.project__block .inner-box:hover .shape2 {
    opacity: 1;
    bottom: 0;
}

.project__block .link {
    position: absolute;
    top: 30px;  
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 80px;
    background: #fff;
    box-shadow: 0px 20px 40px 0px rgba(38, 32, 81, 0.2);
    color: #443986;
    font-size: 25px;
    display: inline-block;
    opacity: 0;
    transform: perspective(100px) translateZ(30px) rotate(45deg);
    transition: opacity 500ms ease 0ms, transform 500ms ease 0ms, background 500ms ease, color 500ms ease;
    text-align: center;
}

.project__block .inner-box:hover .link {
    opacity: 1;
    transform: perspective(100px) translateZ(0px) rotate(0deg);
    transition: opacity 500ms ease 300ms, transform 500ms ease 300ms, background 500ms ease, color 500ms ease;
}

.project__block .link:hover {
    color: #fff;
    background-color: var(--theme-color);
}

.project__block .bottom-content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 40px;
}

.project__block .category {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.project__block h4 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #fff;
}

.project__block h4 a {
    color: #fff;
    transition: .5s;
}

.recent__projects .owl-nav {
    position: absolute;
    top: -115px;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    left: 0;
    max-width: 1170px;
    justify-content: flex-end;
}

.recent__projects .owl-nav>* {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 25px;
    box-shadow: 0px 10px 30px 0px rgba(45, 41, 41, 0.15);
    margin: 0 0 0 10px;
    transition: .5s;
    position: relative;
    z-index: 9;
    color: #2d2929;
}

.recent__projects .owl-nav>*:hover {
    color: #fff;
    background: var(--theme-color);
}


/* Recent Project two */
.recent__projects2 {
    position: relative; 
    padding: 150px 0 120px;
}

.recent__projects2 .shape {
    position: absolute;
    top: -105px;
    right: 0;
}

.project__block2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .5s;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.70);
    overflow: hidden;
}

.project__block2 .inner-box:hover .overlay {
    opacity: 1;
}

.project__block2 .inner-box {
    position: relative;
    margin-bottom: 30px;
}

.project__block2 .image img {
    width: 100%;
}

.project__block2 .shape2 {
    position: absolute;
    left: 0;
    bottom: -100px;
    right: 0;
    opacity: 0;
    transition: .7s;
}

.project__block2 .shape2 img {
    width: 100%;
}

.project__block2 .inner-box:hover .shape2 {
    opacity: 1;
    bottom: 0;
}

.project__block2 .link {
    position: absolute;
    top: 30px;  
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 80px;
    background: #fff;
    box-shadow: 0px 20px 40px 0px rgba(38, 32, 81, 0.2);
    color: #443986;
    font-size: 25px;
    display: inline-block;
    opacity: 0;
    transform: perspective(100px) translateZ(30px) rotate(45deg);
    transition: opacity 500ms ease 0ms, transform 500ms ease 0ms, background 500ms ease, color 500ms ease;
    text-align: center;
}

.project__block2 .inner-box:hover .link {
    opacity: 1;
    transform: perspective(100px) translateZ(0px) rotate(0deg);
    transition: opacity 500ms ease 300ms, transform 500ms ease 300ms, background 500ms ease, color 500ms ease;
}

.project__block2 .link:hover {
    color: #fff;
    background-color: var(--theme-color);
}

.project__block2 .bottom-content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 40px;
}

.project__block2 .category {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.project__block2 h4 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #fff;
}

.project__block2 h4 a {
    color: #fff;
    transition: .5s;
}