/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'microsoft yahei', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #7b7981;
    --thm-gray-rgb: 123, 121, 129;
    --thm-primary: #1989fb;
    --thm-primary-rgb: 25, 137, 251;
    --thm-black: #1b1825;
    --thm-black-rgb: 27, 24, 37;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-extra: #42d9be;
    --thm-extra-rgb: 66, 217, 190;
    --thm-bdr-color: #dae3e9;
    --thm-bdr-color-rgb: 218, 227, 233;
    --thm-bdr-radius: 8px;
}
.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active {
    box-shadow: none !important;
    outline: none !important;
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/

.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:#ecf3ff;
    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: rgb(25, 137, 251);
    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;
}

.project-one__title {
    font-size: 24px;
    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-extra);
}

.project-two {
    position: relative;
    display: block;
}

.project-two .project-one__single {
    margin-bottom: 70px;
}

.project-two .project-one__title {
    font-size: 24px;
    line-height: 30px;
}

.project-two .project-one__content {
    padding: 22px 30px 29px;
    margin-top: -78px;
}

.project-two .project-one__arrow {
    top: 50%;
    right: 20px;
}