header .header-master.header-half {
    height: 50vh;
}
.arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    cursor: pointer;
    outline: none;
}

.arrow .svg-circle {
    width: 60px;
    height: 60px;
}

.arrow .circle {
    stroke: rgba(128, 128, 128, 0.5);
    stroke-width: 1px;
}

.arrow:hover .arrow__pointer {
    background-color: var(--color-dark-2);
}

.arrow:hover .circle {
    stroke: var(--color-dark-2);
}

.arrow:hover .arrow__triangle {
    border-color: transparent transparent transparent var(--color-dark-2);
}

.arrow_mini .svg-circle {
    width: 40px;
    height: 40px;
}

.arrow_mini .arrow__pointer {
    width: 50% !important;
    right: 22px;
}

.arrow_mini .arrow__triangle {
    border-width: 4px 0 4px 6px;
}

.arrow_mini .circle {
    stroke-width: 2px;
}

.js-arrow:hover .arrow__pointer {
    transform: scaleX(0.3) translateX(24px);
    width: 100% !important;
}

.js-arrow:hover .arrow__triangle {
    transform: translate(calc(-50% + 6px), -50%);
}

.arrow-left {
    transform: rotate(180deg);
}

.arrow__pointer {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(128, 128, 128, 0.5);
    transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transform-origin: right center;
}

.arrow__triangle {
    display: inline-block;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent rgba(128, 128, 128, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.arrow-up {
    transform: rotate(-90deg);
}

.arrow-up .arrow__pointer {
    width: 80%;
}

.arrow-down {
    transform: rotate(90deg);
}

.arrow-down .arrow__pointer {
    width: 80%;
}

@media screen and (max-width: 991px) {
    .arrow {
        width: 36px;
        height: 36px;
    }
    .arrow .svg-circle {
        width: 36px;
        height: 36px;
    }
    .arrow .arrow__pointer {
        width: 50% !important;
        right: 20px;
    }
    .arrow .arrow__triangle {
        top: 50%;
        border-width: 4px 0 4px 6px;
    }
    .arrow .circle {
        stroke-width: 2px;
    }
}
.block-circle {
    border-radius: 100%;
}
.hover-zoom {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hover-zoom:hover:not(:focus) .hover-zoom__zoom {
    transform: scale(1.15);
}

.hover-zoom:hover:not(:focus) .hover-zoom__inner {
    transform: scale(0.9);
}

.hover-zoom:hover:not(:focus) .section-image__caption-horizontal {
    transform: translate(0, -15px);
    transition-delay: 0.06s;
}

.hover-zoom:hover:not(:focus) .section-image__caption-horizontal.text-left {
    transform: translate(15px, -15px);
}

.hover-zoom:hover:not(:focus) .section-image__caption-horizontal.text-right {
    transform: translate(-15px, -15px);
}

.hover-zoom__inner {
    overflow: hidden;
}

.hover-zoom__zoom, .hover-zoom__inner {
    transform-origin: center center;
    transition: transform 0.3s ease;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hover-zoom__caption {
    transition: transform 0.3s ease;
    will-change: transform;
}
.list-projects {
    position: relative;
    z-index: 50;
}
.text-md-left {
    text-align: left !important;
}

.list-projects {
    position: relative;
    z-index: 50;
}

.list-projects_hover .list-projects__item {
    opacity: .05;
    border-color: rgba(0, 0, 0, 0);
}

.list-projects_hover .list-projects__item:hover {
    opacity: 1;
}

.list-projects__item {
    display: block;
    position: relative;
    z-index: 60;
    border-bottom: 1px solid rgba(128, 128, 128, 0.3);
    color: #111111;
    padding: 30px 0;
}

.list-projects__item.blend-difference:hover {
    color: #fff;
}

.list-projects__item.blend-difference:hover .list-projects__wrapper-link {
    color: #fff;
}

.list-projects:not(.list-demos) .list-projects__item:first-child {
    padding: 30px 0;
}

.list-projects:not(.list-demos) .list-projects__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.list-demos__item {
    border-bottom: none;
}

.list-demos__divider {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.3);
}

.list-projects__heading {
    margin-top: 0;
    margin-bottom: 0;
    z-index: 50;
}

.list-projects__wrapper-link {
    color: var(--color-gray-1);
    z-index: 50;
    padding-left: 120px;
    transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.list-projects__wrapper-cover {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
}

.list-projects__covers {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none;
}

.list-projects__cover-reveal {
    position: relative !important;
    flex: 1 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: initial !important;
    will-change: height transform;
}

.list-projects__cover-reveal img {
    top: auto !important;
    left: auto !important;
    position: initial !important;
}

.list-projects__cover-wrapper {
    height: 0;
    padding-bottom: initial !important;
}

.list-projects__cover {
    display: none;
    flex: 1 0 50%;
}

.list-projects__cover > div {
    width: 100%;
    height: 100%;
}

.list-projects__wrapper-cover-inner {
    position: relative;
}

.list-projects__items {
    position: relative;
    z-index: 150;
}

.list-project__canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100;
}

.list-projects__wrapper-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
}

.list-projects__thumbnail {
    width: 240px;
    height: 240px;
}

.list-projects__thumbnail_small {
    width: 180px;
    height: 180px;
}
.text-center {
    text-align: center !important;
}
@media screen and (max-width: 767px) {
    .list-projects__item {
        flex-wrap: wrap;
    }
    .list-projects__heading {
        display: inline-block;
        margin-top: 0.75em;
        margin-bottom: 0.5em;
    }
    .list-projects__wrapper-link {
        line-height: 1;
        padding-left: 0;
    }
    .list-projects__cover {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .list-projects_hover .list-projects__item {
        opacity: 1;
        border-color: rgba(128, 128, 128, 0.3);
    }
    .list-projects_hover .list-projects__item:hover {
        opacity: 1;
    }
    .list-project__canvas {
        display: none;
    }
    .list-projects__thumbnail {
        margin-left: auto;
        margin-right: auto;
    }
    .list-demos__item {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

header .header-page .contenet-hero {
    padding: 150px 50px;
    max-width: 750px;
}
/*.wrapper {*/

/*    background-color: #f9f9f9;*/
/*}*/
/*.list-projects__heading {*/
/*    color: #0009 !important;*/
/*}*/
.arrow:hover .arrow__triangle {
    border-color: transparent transparent transparent #262626;
}
.js-arrow:hover .arrow__triangle {
    transform: translate(calc(-50% + 6px), -50%);
}
.arrow:hover .arrow__pointer {
    background-color: #262626;
}
.js-arrow:hover .arrow__pointer {
    transform: scaleX(0.3) translateX(24px);
    width: 100% !important;
}