﻿
/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding: 0 0 200px;
}

    .project-one .container {
        max-width: 1060px;
    }

.project-one__carousel {
    position: relative;
    display: block;
}

    .project-one__carousel.owl-carousel .owl-stage-outer {
        overflow: visible;
        padding: 0px 0px 0px;
    }

    .project-one__carousel.owl-carousel .owl-dots {
        position: absolute;
        bottom: -23px;
        right: 0px;
        left: 0;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .project-one__carousel.owl-carousel .owl-dots .owl-dot {
            position: relative;
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--thm-black);
            opacity: .4;
            margin: 0px 5px;
            padding: 0px;
            border-radius: 50%;
            transition: all 100ms linear;
            transition-delay: 0.1s;
        }

    .project-one__carousel.owl-carousel .owl-dot.active {
        background: var(--thm-extra);
        opacity: 1;
        height: 13px;
        width: 13px;
    }

    .project-one__carousel.owl-carousel .owl-dot:focus {
        outline: none;
    }

    .project-one__carousel.owl-carousel .owl-dots .owl-dot span {
        display: none;
    }

.project-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-bdr-radius);
    z-index: 1;
}

    .project-one__img:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: rgba(var(--thm-black-rgb), .30);
        transform: scale(1, 0);
        transition: transform 500ms ease;
        transform-origin: top center;
        border-radius: var(--thm-bdr-radius);
        z-index: 1;
    }

.project-one__single:hover .project-one__img:before {
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.project-one__img img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
    transform: scale(1);
    transition: transform 500ms ease;
}

.project-one__single:hover .project-one__img img {
    transform: scale(1.05);
}

.project-one__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    border-radius: var(--thm-bdr-radius);
    padding: 32px 40px 39px;
    margin-top: -108px;
    margin-left: 30px;
    margin-right: 30px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 2;
}

    .project-one__content:after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background-color:var(--thm-primary);
        box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
        transition: all 500ms ease;
        opacity: 1;
        transform-origin: top;
        transform-style: preserve-3d;
        transform: scaleY(0);
        border-radius: var(--thm-bdr-radius);
        z-index: -1;
    }

.project-one__single:hover .project-one__content:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.project-one__tagline {
    font-size: 14px;
    margin: 0;
    line-height: 27px;
    transition: all 500ms ease;
    overflow:hidden;
    display:-webkit-box;
    line-clamp:1;
    color:#808080;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
}

.project-one__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    transition: all 500ms ease;
}

    .project-one__title a {
        color: var(--thm-black);
        transition: all 500ms ease;
    }

.project-one__arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

    .project-one__arrow a {
        color: var(--thm-black);
        font-size: 20px;
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 500ms ease;
    }

.project-one__single:hover .project-one__tagline,
.project-one__single:hover .project-one__title a {
    color: var(--thm-base);
}

.project-one__single:hover .project-one__arrow a {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/

.project-page {
    padding: 40px 0 90px;
    min-height:600px;
}

    .project-page .project-one__single {
        margin-bottom: 30px;
    }

.project-two {
    position: relative;
    display: block;
}

.project-two__container {
    position: relative;
    display: block;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.project-two .project-one__single {
    margin-bottom: 40px;
}

.project-two .project-one__title {
    font-size: 24px;
    line-height: 30px;
}

.project-two .project-one__content {
    padding: 20px 30px;
    margin-top: -40px;
}

.project-two .project-one__arrow {
    top: 44%;
    right: 20px;
}
.project-two .project-one__arrow span{
    font-size:20px;
}
.project-two__carousel {
    position: relative;
    display: block;
}

    .project-two__carousel.owl-carousel .owl-dots {
        position: absolute;
        bottom: 18px;
        right: 0px;
        left: 0;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .project-two__carousel.owl-carousel .owl-dots .owl-dot {
            position: relative;
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--thm-black);
            opacity: .4;
            margin: 0px 5px;
            padding: 0px;
            border-radius: 50%;
            transition: all 100ms linear;
            transition-delay: 0.1s;
        }

    .project-two__carousel.owl-carousel .owl-dot.active {
        background: var(--thm-extra);
        opacity: 1;
        height: 13px;
        width: 13px;
    }

    .project-two__carousel.owl-carousel .owl-dot:focus {
        outline: none;
    }

    .project-two__carousel.owl-carousel .owl-dots .owl-dot span {
        display: none;
    }
