/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding: 120px 0 82px;
    z-index: 1;
}

.project-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-one__img-box {
    position: relative;
    display: block;
}

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.project-one__img::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.project-one__single:hover .project-one__img::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.project-one__img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.project-one__single:hover .project-one__img img {
    transform: scale(1.1);
}

.project-one__content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-position: center bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 2;
}

.project-one__single:hover .project-one__content {
    transform: scaleY(1.0);
}

.project-one__sub-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    color: var(--maroof-white);
    background-color: var(--maroof-base);
    padding: 11px 30px 11px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.project-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.project-one__title a {
    border-radius: 20px;
    border-top-left-radius: 0;
    background-color: var(--maroof-white);
    padding: 17px 30px 17px;
    color: var(--maroof-black);
    position: relative;
    display: inline-block;
}

.project-one__title a:hover {
    color: var(--maroof-base);
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.project-two .container {
    max-width: 1760px;
}

.project-two__carousel {
    position: relative;
    display: block;
}

.project-two__single {
    position: relative;
    display: block;
}

.project-two__img {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.project-two__img img {
    width: 100%;
    border-radius: 20px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.project-two__single:hover .project-two__img img {
    transform: scale(1.05) rotate(0deg);
}

.project-two__carousel.owl-carousel .owl-dots {
    position: relative;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    border-radius: 5px;
    height: 10px;
    background-color: var(--maroof-primary);
    margin: 80px auto 0 !important;
    z-index: 2;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    height: 10px;
    width: 100px;
    border-radius: 5px;
    background-color: transparent;
    margin: 0;
    padding: 0 !important;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.project-two__carousel.owl-carousel .owl-dot.active {
    background-color: var(--maroof-base);
    opacity: 1;
}

.project-two__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# Project Three
--------------------------------------------------------------*/
.project-three {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.project-three .container {
    max-width: 1760px;
}

.project-three__carousel {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.project-three__single {
    position: relative;
    display: block;
}

.project-three__img-box {
    position: relative;
    display: block;
}

.project-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.project-three__img::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}

.project-three__single:hover .project-three__img::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.project-three__img img {
    width: 100%;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.project-three__single:hover .project-three__img img {
    transform: scale(1.1);
}

.project-three__content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-position: center bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 2;
}

.project-three__single:hover .project-three__content {
    transform: scaleY(1.0);
}

.project-three__sub-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    color: var(--maroof-white);
    background-color: var(--maroof-base);
    padding: 11px 30px 11px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.project-three__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
}

.project-three__title a {
    border-radius: 20px;
    border-top-left-radius: 0;
    background-color: var(--maroof-white);
    padding: 17px 30px 17px;
    color: var(--maroof-black);
    position: relative;
    display: inline-block;
}

.project-three__title a:hover {
    color: var(--maroof-base);
}

.project-three .owl-nav {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    line-height: 0;
    height: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-three__carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    height: 100px;
    width: 100px;
    line-height: 100px;
    border-radius: 50%;
    color: var(--maroof-black);
    background-color: var(--maroof-primary);
    font-size: 24px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-three__carousel.owl-theme .owl-nav .owl-prev {
    position: relative;
    height: 100px;
    width: 100px;
    line-height: 100px;
    border-radius: 50%;
    color: var(--maroof-black);
    background-color: var(--maroof-primary);
    font-size: 24px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: relative;
    display: inline-block;
}

.project-three__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.project-three__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

.project-three__carousel.owl-theme .owl-nav .owl-next span,
.project-three__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-three__carousel.owl-theme .owl-nav .owl-next:hover,
.project-three__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--maroof-base);
    color: var(--maroof-white);
}

/*--------------------------------------------------------------
# Project Four
--------------------------------------------------------------*/
.project-four {
    position: relative;
    display: block;
    padding: 0px 0 90px;
    z-index: 1;
}

.project-four__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-four__img-box {
    position: relative;
    display: block;
}

.project-four__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.project-four__img::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.project-four__single:hover .project-four__img::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.project-four__img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.project-four__single:hover .project-four__img img {
    transform: scale(1.1);
}

.project-four__content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-position: center bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 2;
}

.project-four__single:hover .project-four__content {
    transform: scaleY(1.0);
}

.project-four__sub-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    color: var(--maroof-white);
    background-color: var(--maroof-base);
    padding: 11px 30px 11px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.project-four__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
}

.project-four__title a {
    border-radius: 20px;
    border-top-left-radius: 0;
    padding: 17px 30px 17px;
    color: var(--maroof-white);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.project-four__title a:hover {
    color: var(--maroof-base);
}

.project-four__title a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border-top-left-radius: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: -1;
}

/*--------------------------------------------------------------
# Project Page
--------------------------------------------------------------*/
.project-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.project-page__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-page__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.project-page__img::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.project-page__single:hover .project-page__img::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.project-page__img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.project-page__single:hover .project-page__img img {
    transform: scale(1.1);
}

.project-page__icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
}

.project-page__icon a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--maroof-white);
    background-color: var(--maroof-base);
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.project-page__single:hover .project-page__icon a {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition-delay: 500ms;
    opacity: 1;
}

.project-page__icon a:hover {
    color: var(--maroof-white);
    background-color: var(--maroof-black);
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
    position: relative;
    display: block;
    padding: 120px 0 111px;
}

.project-details__left {
    position: relative;
    display: block;
}

.project-details__img-box {
    position: relative;
    display: block;
}

.project-details__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.project-details__img img {
    width: 100%;
}

.project-details__content-one {
    position: relative;
    display: block;
    margin-top: 33px;
    margin-bottom: 61px;
}

.project-details__title {
    font-size: 46px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 27px;
}

.project-details__points-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 75px;
    margin-top: 30px;
}

.project-details__points {
    position: relative;
    display: block;
}

.project-details__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.project-details__points li+li {
    margin-top: 15px;
}

.project-details__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.project-details__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: transparent;
    -webkit-text-stroke: 1px var(--maroof-base);
}

.project-details__points li .text {
    margin-left: 15px;
}

.project-details__content-two {
    position: relative;
    display: block;
}

.project-details__title-two {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 26px;
}

.project-details__text-2 {
    margin-bottom: 20px;
}

.project-details__content-two-images-box {
    position: relative;
    display: block;
    padding: 42px 0 13px;
}

.project-details__content-two-single {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    z-index: 1;
}

.project-details__content-two-single img {
    width: 100%;
    border-radius: 20px;
}

.project-details__sidebar {
    position: relative;
    display: block;
}

.project-details__project-info {
    position: relative;
    display: block;
    border: 1px solid var(--maroof-bdr-color);
    border-radius: 20px;
    padding: 30px 30px 30px;
}

.project-details__project-info-title {
    position: relative;
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    border: 1px solid var(--maroof-base);
    padding: 15px 0;
    border-radius: 20px;
}

.project-details__project-info-list {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.project-details__project-info-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    background-color: #FFF4F3;
    border-radius: 20px;
    padding: 14px 20px 14px;
}

.project-details__project-info-list li+li {
    margin-top: 20px;
}

.project-details__project-info-list li p {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--maroof-black);
    max-width: 70px;
    width: 100%;
}

.project-details__project-info-list li h5 {
    font-size: 20px;
    color: var(--maroof-gray);
    font-weight: 300;
    line-height: 20px;
}

.project-details__project-info-list li .rating {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
}

.project-details__project-info-list li .rating span {
    position: relative;
    display: block;
    font-size: 15px;
    color: #EAD411;
}

.project-details__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.project-details__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid var(--maroof-bdr-color);
    border-radius: 50%;
    font-size: 16px;
    color: var(--maroof-black);
    z-index: 1;
}

.project-details__social a:hover {
    background-color: var(--maroof-base);
    border: 1px solid var(--maroof-base);
    color: var(--maroof-white);
}

.project-details__need-help {
    position: relative;
    display: block;
    border: 1px solid var(--maroof-bdr-color);
    border-radius: 20px;
    padding: 40px 40px 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.project-details__need-help-img {
    position: relative;
    display: block;
}

.project-details__need-help-img img {
    width: 100%;
    border-radius: 20px;
}

.project-details__need-help-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border: 1px solid var(--maroof-base);
    border-radius: 50%;
    margin: 20px auto 29px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-details__need-help-icon:hover {
    background-color: var(--maroof-base);
}

.project-details__need-help-icon span {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: var(--maroof-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-details__need-help-icon:hover span {
    color: var(--maroof-white);
}

.project-details__need-help-sub-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    color: var(--maroof-black);
}

.project-details__need-help-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin-top: 22px;
}

.project-details__need-help-number a {
    color: var(--maroof-black);
}

.project-details__need-help-number a:hover {
    color: var(--maroof-base);
}

.project-details__download {
    position: relative;
    display: block;
    border: 1px solid var(--maroof-bdr-color);
    border-radius: 20px;
    padding: 40px 40px 40px;
}

.project-details__download-list {
    position: relative;
    display: block;
}

.project-details__download-list li {
    position: relative;
    display: block;
}

.project-details__download-list li+li {
    margin-top: 20px;
}

.project-details__download-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--maroof-base);
    border-radius: 32px;
    padding: 17px 20px 15px;
}

.project-details__download-list li a:hover span {
    color: var(--maroof-base);
}

.project-details__download-list li a span {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: var(--maroof-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-details__download-list li a p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--maroof-gray);
}

.project-details__download-list li a:hover p i {
    color: var(--maroof-base);
}

.project-details__download-list li a p i {
    color: var(--maroof-black);
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}













/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/