html,
body {
    height: 100%;
}

::selection {
    background-color: #5f2088;
}

::-moz-selection {
    background-color: #5f2088;
}

.projects-page-padding-top {
	padding-top: 170px;
	color: white;
}

.footer-last-holder {
	display: flex;
}

.socbuttons {
	margin-left: auto;
	display: flex;
	justify-content: space-between;
}

.socbuttons>.socials-holder {
	padding: 0px 15px;
}

.socbuttons>.socials-holder>.soc-link {
	
}

.its-o-h {
    overflow: hidden;
}

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

.m-l {
	margin-left: 15px;
}

.m-t {
	margin-top: 15px;
}

.wrap > .container {
    padding: 70px 15px 20px;
}

.footer {
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: /*"\e113"*/ "\e151";
}

a.desc:after {
    content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding: 15px;
    border: none;
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 15px;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.its-section {
    height: 100vh;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.its-section.dark {
    /* background: #252a30;
    color: #fff; */
}

.its-section.projects {
    padding: 50px 0px;
}

.its-section.projects .its-container {
    height: 100%;
}


a.its-button {
    padding: 14px 22px;
    border: 3px solid #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    -webkit-transition: all .6s cubic-bezier(.645,.045,.355,1);
    transition: all .6s cubic-bezier(.645,.045,.355,1);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    -webkit-clip-path: polygon(0px 20px, 20px 0px, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0px 20px, 20px 0px, 100% 0%, 100% 100%, 0% 100%);
    background: transparent;
    font-weight: 600;
}

a.its-button:hover {
    color: #3f105d;
}

a.its-button span {
    z-index: 2;
    position: relative;
}

a.its-button:after {
    position: absolute;
    -webkit-transition: all .6s cubic-bezier(.645,.045,.355,1);
    transition: all .6s cubic-bezier(.645,.045,.355,1);
    content: "";
    width: 40px;
    top: -10%;
    height: 3px;
    background: #fff;
    height: 140%;
    left: -55px;
    -webkit-transform: skewX(-45deg);
    transform: skewX(-45deg);
    z-index: -1;
}

a.its-button:hover:after {
    right: -34%;
    width: 160%;
}

a.its-button.small-button {
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 700;
    border-width: 2px;
    -webkit-clip-path: polygon(0px 12px, 12px 0px, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0px 12px, 12px 0px, 100% 0%, 100% 100%, 0% 100%);
}

a.its-button.small-button:after {
    top: -4%;
    left: -51px;
}

section.projects {
    padding-right: 50px;
    padding-left: 50px;
}

section .section-title-wrapper {
    margin-top: 20px;
    margin-bottom: 35px;
}

section .section-title {
    transform: translateY(50%);
    opacity: 0;
    transition: .5s cubic-bezier(0, 0, 0.2, 1);
    margin-bottom: 50px;
	font-weight: bold;
}

section .section-title.sal-animate {
    transform: translateY(0%);
    transition-delay: .3s;
    opacity: 1;
}

section .section-title div {
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase !important;
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: 8px;
}

.its-section-title {
    font-size: 50px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
}

section .section-title div > span + a {
    margin-left: 40px;
}

/* MAIN SCREEN */

.main-section {
    position: relative;
}

.main-section .logo-and-lang-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.main-section .logo-and-lang-holder .main-screen-logo {
    padding: 40px 0px;
    text-align: center;
}

.main-section .logo-and-lang-holder .main-screen-logo img {
    max-width: 100px;
}


.main-section .video-bg-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    overflow: hidden;
}

.main-section .video-bg-wrap video {
    display: block;
    min-width: 100%;
    min-height: 100%;
    /* -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg); */
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: rotate(180deg) translate(50%, 50%);
    -ms-transform: rotate(180deg) translate(50%, 50%);
    transform: rotate(180deg) translate(50%, 50%);
}

.main-section .modern-text-wrap {
    position: absolute;
    left: 0;
    bottom: 0px;
    top: 0;
    z-index: 15;
    width: 100%;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.main-section .modern-text-wrap svg {
    border: none;
    margin-left: 0vw;
    width: 100vw;
    height: 100vh;
}

.main-section .modern-text-wrap #masked {
    -webkit-mask: url(#maskLayer);
    mask: url(#maskLayer);
}

.main-section .modern-text-wrap #info {
    font-size: 16vw;
    font-weight: 600;
    -webkit-transform: translate(6%, 28%);
    -moz-transform: translate(6%, 28%);
    -o-transform: translate(6%, 28%);
    transform: translate(6%, 28%);
    letter-spacing: 40px;
}

.text-wrapper {
    position: relative;
    z-index: 20;
}

.main-section .sect-text-box .text-holder {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 3;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
}

.love-text>div {
	font-size: 135px;
}

.main-section .sect-text-box .love-text {
    display: block;
    font-size: 135px;
    line-height: 150px;
    font-weight: bold;
    padding-bottom: 5vh;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #fff;
    text-align: center;
    /* background: linear-gradient(135deg, transparent 0%, transparent 29%, #0d0735 29%, #2c0128 48%, #000935 48%, #00208a 66%, #fff 66%, #fff 100%); */
    background: #fff;
    background: -moz-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 66%, #fff 66%, #fff 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, transparent), color-stop(29%, transparent), color-stop(29%, #2c0128), color-stop(48%, #2c0128), color-stop(48%, #00208a), color-stop(66%, #00208a), color-stop(66%, #fff), color-stop(100%, #fff));
    background: -webkit-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 66%, #fff 66%, #fff 100%);
    background: -o-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 66%, #fff 66%, #fff 100%);
    background: -ms-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 66%, #fff 66%, #fff 100%);
    background: linear-gradient(115deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 66%, #fff 66%, #fff 100%);

    background-size: 400% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;

    -moz-animation-timing-function: ease-in;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;

    -moz-animation-name: gradText;
    -webkit-animation-name: gradText;
    animation-name: gradText;

    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    
    -moz-animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.main-section.active .sect-text-box .love-text {
    
}

.main-section .sect-text-box .subtext {
    display: block;
    font-weight: 300;
    font-size: 15px;
    text-transform: uppercase;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    letter-spacing: 1px;
    background: #fff;
    /* background: linear-gradient(135deg, transparent 0%, transparent 29%, #0d0735 29%, #2c0128 48%, #000935 48%, #00208a 66%, #fff 66%, #fff 100%); */
    background: linear-gradient(135deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 66%, #fff 66%, #fff 100%);
    background-size: 400% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    

    animation: 1s ease-in gradText forwards;
    animation-delay: 1s;
}

@-moz-keyframes gradText { 
    to {
        background-position: 100% center;
    }
}

@-webkit-keyframes gradText { 
    to {
        background-position: 100% center;
    }
}

@keyframes gradText { 
    to {
        background-position: 100% center;
    }
}



/* .main-section .sect-text-box .love-text::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #fff;
} */



.main-section .sect-text-box .subtext strong {
    padding-right: 10px;
    padding-bottom: 10px;
    display: block;
}

/* END MAIN SCREEN */

.projects .projects-list {
    height: calc(100% - 240px);
}

.detail-button-wrapper {
    margin-top: 60px;
    text-align: center;
}

.projects .projects-list .projects-row {
    margin-left: -50px;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
}

.projects .projects-list .projects-row .portfolio-item-wrapper {
    padding-left: 50px;
    width: 33.333333%;
    height: 100%;
    display: flex;
    align-items: center;
}


.projects .projects-list .projects-row .portfolio-item-wrapper:nth-child(4) {
    display: none;
}

.projects .portfolio-item {
    position: relative;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    overflow: hidden;
    color: #fff;
    /* background: #009fe3; */
    -webkit-clip-path: polygon(0px 100px, 100px 0px, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0px 100px, 100px 0px, 100% 0%, 100% 100%, 0% 100%);
    max-height: 600px;
}
/* 
.projects .portfolio-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    z-index: 3;
    border: 50px solid transparent;
    border-top: 50px solid #fff;
    border-left: 50px solid #fff;
}

.projects .portfolio-item::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    z-index: 3;
    border: 20px solid transparent;
    border-right: 20px solid #fff;
    border-bottom: 20px solid #fff;
} */

.projects .portfolio-item .line {
    position: absolute;
    background: #fff;
    z-index: 5;
    
    
}

.projects .portfolio-item .line.line-1 {
    bottom: 0px;
    left: 0;
    height: 0px;
    width: 2px;
}

.projects .portfolio-item .line.line-2 {
    bottom: 0px;
    right: 0;
    width: 0px;
    height: 2px;
}

.projects .portfolio-item .line.line-3 {
    top: 0px;
    right: 0;
    width: 2px;
    height: 0px;
}

.projects .portfolio-item .line.line-4 {
    top: 0px;
    left: 100px;
    width: 0px;
    height: 2px;
}

.projects .portfolio-item .line.line-5 {
    bottom: calc(100% - 102px);
    left: 0;
    width: 0px;
    height: 2px;
    left: 0px;
    transform: rotate(-45deg);
    transform-origin: 0% 0%;
}

.projects.active .portfolio-item .line, .projects .sal-animate .portfolio-item .line {
    transition: .3s ease-in;
}

.projects.active .portfolio-item .line.line-1, .projects .sal-animate .portfolio-item .line-1 {
    height: calc(100% - 100px);
    transition-delay: .6s;
}

.projects.active .portfolio-item .line.line-2, .projects .sal-animate .portfolio-item .line-2 {
    width: 100%;
    transition-delay: .3s;
}

.projects.active .portfolio-item .line.line-3, .projects .sal-animate .portfolio-item .line-3 {
    height: 100%;
}

.projects.active .portfolio-item .line.line-4, .projects .sal-animate .portfolio-item .line-4 {
    width: calc(100% - 100px);
    transition-delay: 1.05s;
}

.projects.active .portfolio-item .line.line-5, .projects .sal-animate .portfolio-item .line-5 {
    width: 142px;
    transition: .15s;
    transition-delay: .9s;
}




.projects .portfolio-item .item-content {
    position: relative;
    bottom: calc(-2% + -150px);
    z-index: 3;
    transform: translateY(160%);
    transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.active .portfolio-item:not(:hover) .item-content {
    transition-delay: 0s;
}

.projects.active .portfolio-item .item-content, .projects .sal-animate .portfolio-item .item-content {
    transform: translateY(0);
    transition-delay: 1.3s;
}

.projects .portfolio-item:hover .item-content {
    transform: translateY(0px);
    color: #fff;
    bottom: 0px;
    transition-delay: 0s;
}



.projects .portfolio-item .img-layer {
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-size: cover;
    background-position: 50%;
    transition: all .5s cubic-bezier(.645,.045,.355,1);
    opacity: 0;
}

.projects.active .portfolio-item .img-layer, .projects .sal-animate .portfolio-item .img-layer {
    transition: all 1.35s cubic-bezier(.645,.045,.355,1);
    opacity: 1;
    
}

.projects .portfolio-item:hover .img-layer {
    transform: scale(1.1);
}

.projects .portfolio-item .hover-layer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2;
    /* background: #fff; */
    transition: all .5s cubic-bezier(.645,.045,.355,1);
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
    opacity: 0.7;
}

.projects .portfolio-item .its-button:after {
    left: -43px;
}
.projects .portfolio-item:hover .hover-layer {
    /* background: transparent; */
    opacity: .7;
    
}

.projects .portfolio-item .item-title {
    font-size: 36px;
    font-weight: bold;
    transition: all .5s cubic-bezier(.645,.045,.355,1);
    color: inherit;
    margin: 0px 0px 10px;
}

.projects .portfolio-item:hover .item-title {
    /* color: #fff; */
}

.projects .portfolio-item .item-descr {
    font-size: 18px;
    margin-bottom: 40px;
}

.projects .portfolio-item .item-sub-descr {
    margin-bottom: 20px;
}

.projects .portfolio-item a.its-button {
    
    font-size: 13px;
    border-width: 2px;
    font-weight: bold;
    padding: 10px 16px 9px;

    -webkit-clip-path: polygon(0px 14px, 14px 0px, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0px 14px, 14px 0px, 100% 0%, 100% 100%, 0% 100%);
}

.projects .portfolio-item a.its-button::after {
    left: -49px;
}

.work-stages {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 50px 0;
}

.work-stages .stages-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.work-stages .stages-wrapper.medium-width {
    display: none;
}

.work-stages .stages-wrapper.small-width {
    display: none;
}

.work-stages .stages-wrapper .stages-row {
    display: flex;
    align-items: center;
    padding: 61px 0;
}

.work-stages .stages-wrapper .stages-row.reverse {
    flex-direction: row-reverse;
}

.stages-wrapper .connecting-line {
    height: 2px;
    width: 0px;
    background: #fff;
    transition: 0s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.stages-wrapper .reverse .connecting-line {
    
}

.active .stages-wrapper .connecting-line:nth-child(3) {
    transition-delay: 1.25s;
}

.active .stages-wrapper .connecting-line:nth-child(5) {
    transition-delay: 2.5s;
}

.active .stages-wrapper .connecting-line:nth-child(7) {
    transition-delay: 3.75s;
}

.active .stages-wrapper .connecting-line {
    width: 5%;
    transition: .25s;
}


.active .stages-wrapper .connecting-line:first-child {
    width: 13%;
    transition: .25s;
}

.active .stages-wrapper .connecting-line.last-line {
    width: 17%;
}

.stages-wrapper .item {
    width: 20%;
    border: 1px solid transparent;
    position: relative;
}

.stages-wrapper .item .line-inner {
    background: #fff;
    transition-timing-function: linear !important;
    transition-delay: 0s;
}

.stages-wrapper .item .line-inner:nth-child(1) {
    width: 2px;
    height: 0;
    position: absolute;
    top: calc(50% - 1px);
    left: -1px;
    transition: 0s;
}

.stages-wrapper .reverse .item .line-inner:nth-child(1) {
    left: initial;
    right: -1px;
}

.active .stages-wrapper .item .line-inner:nth-child(1) {
    height: calc(50% + 1px);
    transition: .25s;
    transition-delay: .25s;
    
}

.stages-wrapper .item .line-inner:nth-child(2) {
    width: 2px;
    height: 0;
    position: absolute;
    top: 50%;
    left: -1px;
    transform: rotateX(180deg);
    transform-origin: 0% 0%;
    transition: 0s;
}

.stages-wrapper .reverse .item .line-inner:nth-child(2) {
    left: initial;
    right: -1px;
}

.active .stages-wrapper .item .line-inner:nth-child(2) {
    height: calc(50% - 75px);
    transition: .1s;
    transition-delay: .25s;
    
}

.stages-wrapper .item .line-inner:nth-child(3) {
    width: 0px;
    height: 2px;
    position: absolute;
    top: 75px;
    left: -1px;
    transform: rotate(-45deg);
    transform-origin: 0% 0%;
    transition: 0s;
}

.stages-wrapper .reverse .item .line-inner:nth-child(3) {
    left: initial;
    right: -1px;
    transform: rotate(45deg);
    transform-origin: 100% 0%;
}

.active .stages-wrapper .item .line-inner:nth-child(3) {
    width: 107px;
    transition: .15s;
    transition-delay: .35s;
}

.stages-wrapper .item .line-inner:nth-child(4) {
    width: 0px;
    height: 2px;
    position: absolute;
    top: -1px;
    left: 75px;
    transition: 0s;
}

.stages-wrapper .reverse .item .line-inner:nth-child(4) {
    left: initial;
    right: 75px;
}

.active .stages-wrapper .item .line-inner:nth-child(4) {
    width: calc(100% - 75px);
    transition: .5s;
    transition-delay: .5s;
}

.stages-wrapper .item .line-inner:nth-child(5) {
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: -1px;
    transition: 0s;
    
}

.stages-wrapper .reverse .item .line-inner:nth-child(5) {
    left: initial;
    right: -1px;
}

.active .stages-wrapper .item .line-inner:nth-child(5) {
    width: calc(100% + 1px);
    transition: .5s;
    transition-delay: .5s;
}

.stages-wrapper .item .line-inner:nth-child(6) {
    width: 2px;
    height: 0;
    position: absolute;
    top: -1px;
    right: -1px;
    transition: 0s;
}

.stages-wrapper .reverse .item .line-inner:nth-child(6) {
    right: initial;
    left: -1px;
}

.active .stages-wrapper .item .line-inner:nth-child(6) {
    height: calc(50% + 1px);
    transition: .25s;
    transition-delay: 1s;
}

.stages-wrapper .item .line-inner:nth-child(7) {
    width: 2px;
    height: 0;
    position: absolute;
    top: calc(100% + 1px);
    right: -1px;
    transform: rotateX(180deg);
    transform-origin: 0% 0%;
    transition: 0s;
}

.stages-wrapper .reverse .item .line-inner:nth-child(7) {
    right: initial;
    left: -1px;
}

.active .stages-wrapper .item .line-inner:nth-child(7) {
    height: 50%;
    transition: .25s;
    transition-delay: 1s;
}

.active .stages-wrapper .item:nth-child(4) .line-inner:nth-child(1) {
    transition-delay: 1.5s;
}

.active .stages-wrapper .item:nth-child(4) .line-inner:nth-child(2) {
    transition-delay: 1.5s;
}

.active .stages-wrapper .item:nth-child(4) .line-inner:nth-child(3) {
    transition-delay: 1.6s;
}

.active .stages-wrapper .item:nth-child(4) .line-inner:nth-child(4) {
    transition-delay: 1.75s;
}

.active .stages-wrapper .item:nth-child(4) .line-inner:nth-child(5) {
    transition-delay: 1.75s;
}

.active .stages-wrapper .item:nth-child(4) .line-inner:nth-child(6) {
    transition-delay: 2.25s;
}

.active .stages-wrapper .item:nth-child(4) .line-inner:nth-child(7) {
    transition-delay: 2.25s;
}




.active .stages-wrapper .item:nth-child(6) .line-inner:nth-child(1) {
    transition-delay: 2.75s;
}

.active .stages-wrapper .item:nth-child(6) .line-inner:nth-child(2) {
    transition-delay: 2.75s;
}

.active .stages-wrapper .item:nth-child(6) .line-inner:nth-child(3) {
    transition-delay: 2.85s;
}

.active .stages-wrapper .item:nth-child(6) .line-inner:nth-child(4) {
    transition-delay: 3s;
}

.active .stages-wrapper .item:nth-child(6) .line-inner:nth-child(5) {
    transition-delay: 3s;
}

.active .stages-wrapper .item:nth-child(6) .line-inner:nth-child(6) {
    transition-delay: 3.5s;
}

.active .stages-wrapper .item:nth-child(6) .line-inner:nth-child(7) {
    transition-delay: 3.5s;
}

.stages-wrapper .item::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: .25s;
    transition-delay: 0s;
}

.active .stages-wrapper .item:nth-child(2)::before {
    transition-delay: .25s;
}

.active .stages-wrapper .reverse .item:nth-child(2)::before {
    transition-delay: 1.25s;
}

.active .stages-wrapper .item:nth-child(4)::before {
    transition-delay: 1.5s;
}

.active .stages-wrapper .reverse .item:nth-child(4)::before {
    transition-delay: 2.5s;
}

.active .stages-wrapper .item:nth-child(6)::before {
    transition-delay: 2.75s;
}

.active .stages-wrapper .reverse .item:nth-child(6)::before {
    transition-delay: 3.75s;
}

.active .stages-wrapper .item::before {
    opacity: 1;
}


.stages-wrapper .item::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translate(50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: .25s;
    transition-delay: 0s;
}

.active .stages-wrapper .item:nth-child(2)::after {
    transition-delay: 1.25s;
}

.active .stages-wrapper .reverse .item:nth-child(2)::after {
    transition-delay: .25s;
}

.active .stages-wrapper .item:nth-child(4)::after {
    transition-delay: 2.5s;
}

.active .stages-wrapper .reverse .item:nth-child(4)::after {
    transition-delay: 1.5s;
}

.active .stages-wrapper .item:nth-child(6)::after {
    transition-delay: 3.75s;
}

.active .stages-wrapper .reverse .item:nth-child(6)::after {
    transition-delay: 2.75s;
}

.active .stages-wrapper .item::after {
    opacity: 1;
}

.stages-wrapper .item .item-inner {
    padding: 46px 44px;
    overflow: hidden;
    position: relative;
    text-align: right;
}

.stages-wrapper .reverse .item .item-inner {
    text-align: left;
}

.stages-wrapper .item .item-title {
    font-size: 22px;
    margin-bottom: 3px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity .3s, transform .3s;
    transform: translateY(-10px);
    transition-delay: 0s;
}

.item-n-line {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.active .stages-wrapper .item:nth-child(2) .item-title {
    transition-delay: .7s;
}

.active .stages-wrapper .item:nth-child(4) .item-title {
    transition-delay: 1.95s;
}

.active .stages-wrapper .item:nth-child(6) .item-title {
    transition-delay: 3.2s;
}

.active .stages-wrapper .item .item-title {
    opacity: 1;
    transform: translateY(0px);
}

.stages-wrapper .item .item-description {
    position: relative;
    z-index: 2;
    font-size: 17px;
    opacity: 0;
    transition: opacity .3s, transform .3s;
    transform: translateY(-10px);
    transition-delay: 0s;
}

.stages-wrapper .item .item-description > * {
    margin: 0;
}


.active .stages-wrapper .item:nth-child(2) .item-description {
    transition-delay: .8s;
}

.active .stages-wrapper .item:nth-child(4) .item-description {
    transition-delay: 2.05s;
}

.active .stages-wrapper .item:nth-child(6) .item-description {
    transition-delay: 3.3s;
}

.active .stages-wrapper .item .item-description {
    opacity: 1;
    transform: translateY(0px);
}

/* .stages-wrapper .item .number {
    font-size: 170px;
    color: #009fe3;
    z-index: 0;
    position: absolute;
    left: 25px;
    bottom: -110px;
    font-weight: bold;
    user-select: none;
    opacity: 0;
    transform: translateY(100px);
    transition: .5s;
    transition-delay: 0s;
} */

/* .stages-wrapper .reverse .item .number {
    left: initial;
    right: 25px;
} */


.stages-wrapper .item .item-number-wrapper {
    position: absolute;
    left: -43px;
    top: -10px;
    transform: rotate(-45deg);
    width: 110px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.stages-wrapper .reverse .item .item-number-wrapper {
    left: initial;
    right: -43px;
    top: -10px;
    transform: rotate(45deg);
}

.stages-wrapper .item .number {
    font-size: 57px;
    color: #fff;
    font-weight: bold;
    user-select: none;
    opacity: 1;
    transition: .5s;
    transition-delay: 0s;
    transform: translateY(100%);
}

.active .stages-wrapper .item:nth-child(2) .number {
    transition-delay: .5s;
}

.active .stages-wrapper .item:nth-child(4) .number {
    transition-delay: 1.75s;
}

.active .stages-wrapper .item:nth-child(6) .number {
    transition-delay: 3s;
}

.active .stages-wrapper .item .number {
    /* opacity: .25; */
    transform: translateY(0);
}

.mobile-main-bg {
    display: none;
}

.trust-block {
    padding: 50px 0;
}

.trust-block .its-container {
    height: 100%;
}

.trust-wrapper {
    display: flex;
    height: calc(100% - 105px);
    align-items: center;
}

.trust-wrapper-inner {
    display: flex;
    flex-wrap: wrap;
    margin-left: -50px;
    width: calc(100% + 50px);
}

.trust-wrapper .trust-wrapper-inner > div {
    height: 220px;
    width: 20%;
    padding-left: 50px;
}

.trust-wrapper .trust-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(50%);
    opacity: 0;
    transition: .5s cubic-bezier(0, 0, 0.2, 1);
}

.trust-wrapper .trust-item.sal-animate {
    transform: translateY(0%);
    transition-delay: .3s;
    opacity: 1;
}

.trust-wrapper div:nth-child(2) .trust-item {
    transition-delay: .4s;
}

.trust-wrapper div:nth-child(3) .trust-item {
    transition-delay: .5s;
}

.trust-wrapper div:nth-child(4) .trust-item {
    transition-delay: .6s;
}

.trust-wrapper div:nth-child(5) .trust-item {
    transition-delay: .7s;
}

.trust-wrapper div:nth-child(6) .trust-item {
    transition-delay: .8s;
}

.trust-wrapper div:nth-child(7) .trust-item {
    transition-delay: .9s;
}

.trust-wrapper div:nth-child(8) .trust-item {
    transition-delay: 1s;
}

.trust-wrapper div:nth-child(9) .trust-item {
    transition-delay: 1.1s;
}

.trust-wrapper div:nth-child(10) .trust-item {
    transition-delay: 1.2s;
}

.trust-wrapper div:nth-child(11) .trust-item {
    transition-delay: 1.3s;
}

.trust-wrapper div:nth-child(12) .trust-item {
    transition-delay: 1.4s;
}


.trust-wrapper .trust-item img {
    max-width: 150px;
}

.love-text .slick-vertical .slick-slide {
    background: -moz-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 63%, #fff 63%, #fff 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, transparent), color-stop(29%, transparent), color-stop(29%, #2c0128), color-stop(48%, #2c0128), color-stop(48%, #00208a), color-stop(63%, #00208a), color-stop(63%, #fff), color-stop(100%, #fff));
    background: -webkit-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 63%, #fff 63%, #fff 100%);
    background: -o-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 63%, #fff 63%, #fff 100%);
    background: -ms-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 63%, #fff 63%, #fff 100%);
    background: linear-gradient(115deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 63%, #fff 63%, #fff 100%);

    background-size: 400% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;

    -moz-animation-timing-function: ease-in;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;

    -moz-animation-name: gradText;
    -webkit-animation-name: gradText;
    animation-name: gradText;

    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    
    -moz-animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    
    outline: none;
    text-transform: uppercase;
}

button.slick-arrow {
    display: none !important;
}


/* CONTACTS */

.contacts-image-page {
	height: 100vh;
	display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
}

.contacts-page {
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.contacts-page .contacts-title {
	font-size: 75px;
    padding-bottom: 20px;
    font-weight: bold;
} 

.contacts-page .contacts-text-padding-bottom {
	padding-bottom: 20px;
}

.contacts-page .contacts-text {
	font-size: 25px;
}

.contacts-page .contacts-text img {
	padding-right: 5px; 
}

.map-holder {
	/* height: 100%;
	width: 100%; */
}

#map {
	height: 400px;
	width: 100%;
}

.section-bottom-gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, black 0%, rgba(0,0,0,0.6) 10%,transparent 20%);
    z-index: 0;
}

/* CONTACTS */


/* SEO */

.its-seo-section {
    padding: 50px 0px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
}


@media (max-width: 1600px) {
    .stages-wrapper .item .item-inner {
        padding: 30px 44px;
    }

    .work-stages .stages-wrapper .stages-row {
        padding: 40px 0px;
    }
}

@media (max-width: 1400px) {
    .stages-wrapper .item .item-inner {
        padding: 20px 29px;
    }

    .stages-wrapper .item .item-title {
        font-size: 18px;
    }

    .stages-wrapper .item .item-description {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .main-section .sect-text-box .text-holder {
        padding-left: 0;
    }

    .projects .portfolio-item {
        padding: 25px;
    }

    .projects .portfolio-item .item-content {
        bottom: -120px;
    }

    .projects .portfolio-item .item-title {
        font-size: 28px;
    }

    .projects .portfolio-item .item-descr {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .main-section .sect-text-box .love-text {
        font-size: 110px;
        line-height: 135px;
    }

    .love-text > div {
        font-size: inherit;
    }

    body {
        overflow: initial !important;
    }

    .its-section.main-section {
        height: 100vh;
    }

    .its-section {
        height: auto;
    }

    .its-section-title {
        margin-bottom: 20px;

    }

    .projects .projects-list {
        height: auto;
        margin-top: 20px;
    }

    .projects .projects-list .projects-row {
        height: auto;
    }

    .projects .projects-list .projects-row .portfolio-item-wrapper {
        width: 50%;
        padding-bottom: 40px;
        height: auto;
    }

    .projects .projects-list .projects-row .portfolio-item-wrapper:nth-child(4) {
        display: block;
    }

    .projects .portfolio-item {
        height: 450px;
        -webkit-clip-path: polygon(0px 80px, 80px 0px, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(0px 80px, 80px 0px, 100% 0%, 100% 100%, 0% 100%);
    }

    .projects.active .portfolio-item .line.line-1, .projects .sal-animate .portfolio-item .line-1 {
        height: calc(100% - 80px);
    }

    .projects.active .portfolio-item .line.line-4, .projects .sal-animate .portfolio-item .line-4 {
        width: calc(100% - 80px);
    }

    .projects .portfolio-item .line.line-4 {
        left: 80px;
    }

    .projects .portfolio-item .line.line-5 {
        bottom: calc(100% - 82px);
    }

    .projects.active .portfolio-item .line.line-5, .projects .sal-animate .portfolio-item .line-5 {
        width: 113px;
    }

    .projects .portfolio-item .item-descr {
        margin-bottom: 12px;
    }    

    .work-stages .stages-wrapper.large-width {
        display: none;
    } 
    
    .work-stages .stages-wrapper.medium-width {
        display: flex;
    }
    
    .work-stages .stages-wrapper.small-width {
        display: none;
    }

    .active .stages-wrapper .connecting-line:first-child {
        width: 5%;
    }

    .active .stages-wrapper .connecting-line.last-line {
        width: 10%;
    }

    .stages-wrapper .item {
        width: 40%;
        border: 1px solid transparent;
        position: relative;
    }

    .stages-wrapper .item .item-inner {
        padding: 46px 44px;
    }

    .stages-wrapper .item .item-title {
        font-size: 22px;
    }

    .stages-wrapper .item .item-description {
        font-size: 17px;
    }

    .work-stages .stages-wrapper .stages-row {
        display: flex;
        align-items: center;
        padding: 30px 0px;
    }

    .projects .portfolio-item .hover-layer {
        opacity: 0.7;
    }

    /* .projects .portfolio-item .item-content {
        transform: translateY(0px);
        top: 0px;
    } */

    .projects .sal-animate .portfolio-item .item-content {
        bottom: initial;
        transform: translateY(0%);
        transition-delay: .9s;
        transition-duration: 1s;
    }

    .trust-wrapper {
        height: auto;
    }

    .its-section .its-container {
        height: auto !important;
    }

    .contacts-image-page {
        height: auto;
        padding: 120px 0 50px;
    }

    .contacts-page .contacts-title, .contacts-page .contacts-text {
        text-align: center;
    }

    .contacts-page .contacts-text:last-child {
        padding-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .trust-wrapper .trust-wrapper-inner > div {
        width: 33.33333%;
    }
}

@media (max-width: 900px) {
    .main-section .sect-text-box .love-text {
        font-size: 90px;
        line-height: 115px;
    }
}

@media (max-width: 760px) {
    
    .projects-page-padding-top {
        padding-top: 120px;
        color: white;
    }


    .main-section .sect-text-box .love-text {
        font-size: 12vw;
        line-height: 15vw;
        margin-left: 0;

        background: -moz-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 63%, #fff 63%, #fff 100%);
        background: -webkit-gradient(left top, right bottom, color-stop(0%, transparent), color-stop(29%, transparent), color-stop(29%, #2c0128), color-stop(48%, #2c0128), color-stop(48%, #00208a), color-stop(63%, #00208a), color-stop(63%, #fff), color-stop(100%, #fff));
        background: -webkit-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 63%, #fff 63%, #fff 100%);
        background: -o-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 63%, #fff 63%, #fff 100%);
        background: -ms-linear-gradient(-65deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 63%, #fff 63%, #fff 100%);
        background: linear-gradient(115deg, transparent 0%, transparent 29%, #2c0128 29%, #2c0128 48%, #00208a 48%, #00208a 63%, #fff 63%, #fff 100%);

        background-size: 400% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        -moz-animation-duration: 1s;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;

        -moz-animation-timing-function: ease-in;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;

        -moz-animation-name: gradText;
        -webkit-animation-name: gradText;
        animation-name: gradText;

        -moz-animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;

        
        -moz-animation-delay: 1s;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }

    .main-section .modern-text-wrap #info {
        -webkit-transform: translate(15px, 4%);
        -moz-transform: translate(15px, 4%);
        -o-transform: translate(15px, 4%);
        transform: translate(15px, 4%);
        font-size: 18vw;
        /* font-weight: 400; */
        letter-spacing: 8px;
    }

    .main-section .video-bg-wrap {
        display: none;
    }

    .mobile-main-bg {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    .mobile-main-bg .dark-gradient {
        position: absolute;
        top: 66%;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(0deg, black, transparent);
    }
    
    .its-section.projects {
        padding: 40px 50px;
    }

    .stages-wrapper .item .item-inner {
        padding: 25px 30px;
    }
    
    .projects .portfolio-item {
        height: 350px;
    }



}

@media (max-width: 640px) {
    section .section-title div {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .its-section-title {
        font-size: 36px;
        margin-bottom: 45px;
    }

    section .section-title div > span + a {
        margin-left: 30px;
    }
    

    /* a.its-button {
        font-size: 16px;
        -webkit-clip-path: polygon(0px 16px, 16px 0px, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(0px 16px, 16px 0px, 100% 0%, 100% 100%, 0% 100%);
        padding: 8px 14px;
        border-width: 2px;
    } 

    a.its-button::after {
        top: -1px;
        left: -48px;
    } */

    .projects .portfolio-item .its-button:after {
        left: -51px;
    }

    .projects .projects-list .projects-row .portfolio-item-wrapper {
        width: 100%;
        padding-bottom: 50px;
    }

    .work-stages .stages-wrapper.large-width {
        display: none;
    } 
    
    .work-stages .stages-wrapper.medium-width {
        display: none;
    }
    
    .work-stages .stages-wrapper.small-width {
        display: flex;
    }

    .work-stages .stages-wrapper .stages-row {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .stages-wrapper .item::before {
        left: 50%;
        top: 0px;
    }

    .stages-wrapper .item::after {
        left: calc(50% - 8px);
        top: initial;
        bottom: -8px;
    }

    .stages-wrapper .item {
        width: 80%;
        position: relative;
        border-width: 1px;
        border-style: solid;
        border-color: transparent;
        border-image: initial;
    }

    .work-stages {
        display: flex;
        padding: 50px 0px;
    }

    .work-stages .stages-wrapper .stages-row {
        padding: 0px;
    }

    .active .stages-wrapper .item::before {
        opacity: 0;
    }

    .stages-wrapper .sal-animate .item::before {
        opacity: 1;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(2) .item::before {
        transition-delay: 1s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(3) .item::before {
        transition-delay: 2s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(4) .item::before {
        transition-delay: 3s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(5) .item::before {
        transition-delay: 4s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(6) .item::before {
        transition-delay: 5s;
    }

    .stages-wrapper .item-n-line:first-child .item::before {
        display: none;
    }

    .active .stages-wrapper .item::after {
        opacity: 0;
    }
    
    .stages-wrapper .sal-animate .item::after {
        opacity: 1;
        transition-delay: .75s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(2) .item::after {
        transition-delay: 1.75s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(3) .item::after {
        transition-delay: 2.75s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(4) .item::after {
        transition-delay: 3.75s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(5) .item::after {
        transition-delay: 4.75s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(6) .item::after {
        transition-delay: 5.75s;
    }

    .stages-wrapper .item-n-line:last-child .item::after {
        display: none;
    }

    .stages-wrapper .item .line-inner:nth-child(1), .active .stages-wrapper .item .line-inner:nth-child(1) {
        width: 0px;
        height: 2px !important;
        position: absolute;
        top: 1px;
        left: 50%;
        transform: rotate(180deg);
        transition: all 0.25s ease 0s;
        transform-origin: 0 0;
    }

    .stages-wrapper .sal-animate .item .line-inner:nth-child(1) {
        width: calc(50% - 75px);
        height: 2px;
    }

    .stages-wrapper .item .line-inner:nth-child(2), .active .stages-wrapper .item .line-inner:nth-child(2) {
        width: 0px;
        height: 2px!important;
        position: absolute;
        top: 1px;
        left: 50%;
        transition: all 0.25s ease 0s;
    }

    .stages-wrapper .sal-animate .item .line-inner:nth-child(2) {
        width: 50%;
        height: 2px;
    }

    .stages-wrapper .item .line-inner:nth-child(3), .active .stages-wrapper .item .line-inner:nth-child(3) {
        width: 0px;
        height: 2px!important;
        position: absolute;
        top: 1px;
        transform: rotate(135deg);
        transform-origin: 0% 0%;
        left: 76px;
        transition: all 0.15s ease 0.25s;
    }

    .stages-wrapper .sal-animate .item .line-inner:nth-child(3) {
        width: 105px;
        height: 2px;
    }

    .stages-wrapper .item .line-inner:nth-child(4), .active .stages-wrapper .item .line-inner:nth-child(4) {
        width: 2px!important;
        height: 0px;
        position: absolute;
        top: 1px;
        left: initial;
        right: 0px;
        transition: all 0.25s ease 0.25s;
    }

    .stages-wrapper .sal-animate .item .line-inner:nth-child(4) {
        height: calc(100% - 1px);
        width: 2px;
    }

    .stages-wrapper .item .line-inner:nth-child(5), .active .stages-wrapper .item .line-inner:nth-child(5) {
        width: 2px!important;
        height: 0px;
        position: absolute;
        top: 74px;
        left: 0px;
        /* right: 0px; */
        transition: all 0.1s ease 0.4s;
    }

    .stages-wrapper .sal-animate .item .line-inner:nth-child(5) {
        height: calc(100% - 75px);
        width: 2px;
    }
    
    .stages-wrapper .item .line-inner:nth-child(6), .active .stages-wrapper .item .line-inner:nth-child(6) {
        width: 0px;
        height: 2px!important;
        position: absolute;
        bottom: 0px;
        left: 0px;
        top: initial;
        /* right: 0px; */
        transition: all 0.25s ease 0.5s;
    }

    .stages-wrapper .sal-animate .item .line-inner:nth-child(6) {
        width: 50%;
        height: 2px;
    }

    .stages-wrapper .item .line-inner:nth-child(7), .active .stages-wrapper .item .line-inner:nth-child(7) {
        width: 0px;
        height: 2px!important;
        position: absolute;
        bottom: -2px;
        right: 0px;
        top: initial;
        /* right: 0px; */
        transition: all 0.25s ease 0.5s;
    }

    .stages-wrapper .sal-animate .item .line-inner:nth-child(7) {
        width: 50%;
        height: 2px;
    }

    .stages-wrapper .item-n-line:nth-child(2) .item .line-inner:nth-child(1) {
        transition-delay: 1s;
    }

    .stages-wrapper .item-n-line:nth-child(2) .item .line-inner:nth-child(2) {
        transition-delay: 1s;
    }

    .stages-wrapper .item-n-line:nth-child(2) .item .line-inner:nth-child(3) {
        transition-delay: 1.25s;
    }

    .stages-wrapper .item-n-line:nth-child(2) .item .line-inner:nth-child(4) {
        transition-delay: 1.25s;
    }

    .stages-wrapper .item-n-line:nth-child(2) .item .line-inner:nth-child(5) {
        transition-delay: 1.4s;
    }

    .stages-wrapper .item-n-line:nth-child(2) .item .line-inner:nth-child(6) {
        transition-delay: 1.5s;
    }

    .stages-wrapper .item-n-line:nth-child(2) .item .line-inner:nth-child(7) {
        transition-delay: 1.5s;
    }



    .stages-wrapper .item-n-line:nth-child(3) .item .line-inner:nth-child(1) {
        transition-delay: 2s;
    }

    .stages-wrapper .item-n-line:nth-child(3) .item .line-inner:nth-child(2) {
        transition-delay: 2s;
    }

    .stages-wrapper .item-n-line:nth-child(3) .item .line-inner:nth-child(3) {
        transition-delay: 2.25s;
    }

    .stages-wrapper .item-n-line:nth-child(3) .item .line-inner:nth-child(4) {
        transition-delay: 2.25s;
    }

    .stages-wrapper .item-n-line:nth-child(3) .item .line-inner:nth-child(5) {
        transition-delay: 2.4s;
    }

    .stages-wrapper .item-n-line:nth-child(3) .item .line-inner:nth-child(6) {
        transition-delay: 2.5s;
    }

    .stages-wrapper .item-n-line:nth-child(3) .item .line-inner:nth-child(7) {
        transition-delay: 2.5s;
    }



    .stages-wrapper .item-n-line:nth-child(4) .item .line-inner:nth-child(1) {
        transition-delay: 3s;
    }

    .stages-wrapper .item-n-line:nth-child(4) .item .line-inner:nth-child(2) {
        transition-delay: 3s;
    }

    .stages-wrapper .item-n-line:nth-child(4) .item .line-inner:nth-child(3) {
        transition-delay: 3.25s;
    }

    .stages-wrapper .item-n-line:nth-child(4) .item .line-inner:nth-child(4) {
        transition-delay: 3.25s;
    }

    .stages-wrapper .item-n-line:nth-child(4) .item .line-inner:nth-child(5) {
        transition-delay: 3.4s;
    }

    .stages-wrapper .item-n-line:nth-child(4) .item .line-inner:nth-child(6) {
        transition-delay: 3.5s;
    }

    .stages-wrapper .item-n-line:nth-child(4) .item .line-inner:nth-child(7) {
        transition-delay: 3.5s;
    }



    .stages-wrapper .item-n-line:nth-child(5) .item .line-inner:nth-child(1) {
        transition-delay: 4s;
    }

    .stages-wrapper .item-n-line:nth-child(5) .item .line-inner:nth-child(2) {
        transition-delay: 4s;
    }

    .stages-wrapper .item-n-line:nth-child(5) .item .line-inner:nth-child(3) {
        transition-delay: 4.25s;
    }

    .stages-wrapper .item-n-line:nth-child(5) .item .line-inner:nth-child(4) {
        transition-delay: 4.25s;
    }

    .stages-wrapper .item-n-line:nth-child(5) .item .line-inner:nth-child(5) {
        transition-delay: 4.4s;
    }

    .stages-wrapper .item-n-line:nth-child(5) .item .line-inner:nth-child(6) {
        transition-delay: 4.5s;
    }

    .stages-wrapper .item-n-line:nth-child(5) .item .line-inner:nth-child(7) {
        transition-delay: 4.5s;
    }



    .stages-wrapper .item-n-line:nth-child(6) .item .line-inner:nth-child(1) {
        transition-delay: 5s;
    }

    .stages-wrapper .item-n-line:nth-child(6) .item .line-inner:nth-child(2) {
        transition-delay: 5s;
    }

    .stages-wrapper .item-n-line:nth-child(6) .item .line-inner:nth-child(3) {
        transition-delay: 5.25s;
    }

    .stages-wrapper .item-n-line:nth-child(6) .item .line-inner:nth-child(4) {
        transition-delay: 5.25s;
    }

    .stages-wrapper .item-n-line:nth-child(6) .item .line-inner:nth-child(5) {
        transition-delay: 5.4s;
    }

    .stages-wrapper .item-n-line:nth-child(6) .item .line-inner:nth-child(6) {
        transition-delay: 5.5s;
    }

    .stages-wrapper .item-n-line:nth-child(6) .item .line-inner:nth-child(7) {
        transition-delay: 5.5s;
    }


    .stages-wrapper .connecting-line {
        height: 0px;
        width: 2px;
        background: rgb(255, 255, 255);
        transition: all 0s linear 0s;
    }

    .active .stages-wrapper .item .number {
        transform: translateY(100%);
    }

    .stages-wrapper .sal-animate .item .number {
        transform: translateY(0px);
        transition-delay: .3s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(2) .item .number {
        transition-delay: 1.3s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(3) .item .number {
        transition-delay: 2.3s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(4) .item .number {
        transition-delay: 3.3s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(5) .item .number {
        transition-delay: 4.3s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(6) .item .number {
        transition-delay: 5.3s;
    }

    .active .stages-wrapper .item .item-title  {
        opacity: 0;
    }
    
    .stages-wrapper .sal-animate .item .item-title {
        opacity: 1;
        transform: translateY(0px);
        transition-delay: .4s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(2) .item .item-title {
        transition-delay: 1.4s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(3) .item .item-title {
        transition-delay: 2.4s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(4) .item .item-title {
        transition-delay: 3.4s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(5) .item .item-title {
        transition-delay: 4.4s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(6) .item .item-title {
        transition-delay: 5.4s;
    }
    
    .active .stages-wrapper .item .item-description  {
        opacity: 0;
    }

    .stages-wrapper .sal-animate .item .item-description {
        opacity: 1;
        transform: translateY(0px);
        transition-delay: .5s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(2) .item .item-description {
        transition-delay: 1.5s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(3) .item .item-description {
        transition-delay: 2.5s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(4) .item .item-description {
        transition-delay: 3.5s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(5) .item .item-description {
        transition-delay: 4.5s;
    }

    .stages-wrapper .sal-animate .item-n-line:nth-child(6) .item .item-description {
        transition-delay: 5.5s;
    }

    .stages-wrapper .sal-animate .connecting-line {
        width: 2px;
        height: 80px;
        transition: all 0.25s ease .75s;
    }

    .active .stages-wrapper .item-n-line:nth-child(2) .connecting-line, .stages-wrapper .sal-animate .item-n-line:nth-child(2) .connecting-line {
        transition-delay: 1.75s;
    }

    .active .stages-wrapper .item-n-line:nth-child(3) .connecting-line, .stages-wrapper .sal-animate .item-n-line:nth-child(3) .connecting-line {
        transition-delay: 2.75s;
    }

    .active .stages-wrapper .item-n-line:nth-child(4) .connecting-line, .stages-wrapper .sal-animate .item-n-line:nth-child(4) .connecting-line {
        transition-delay: 3.75s;
    }

    .active .stages-wrapper .item-n-line:nth-child(5) .connecting-line, .stages-wrapper .sal-animate .item-n-line:nth-child(5) .connecting-line {
        transition-delay: 4.75s;
    }

    .stages-wrapper .item-n-line:last-child .connecting-line:last-child {
        display: none;
    }

    .trust-wrapper-inner {
        margin-left: -20px;
    }

    .trust-wrapper .trust-wrapper-inner > div {
        width: 50%;
        height: 180px;
        padding-left: 20px;
    }

    .trust-wrapper .trust-wrapper-inner div .trust-item {
        transition-delay: .3s;
    }
}

@media (max-width: 450px) {

    .its-section.projects {
        padding-right: 30px;
        padding-left: 30px;
    }

    section .section-title div > span + a {
        margin-left: 20px;
    }

    
    .main-section .logo-and-lang-holder .main-screen-logo img {
        max-width: 70px;
    }

    .contacts-page {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .its-section.projects {
        padding-right: 20px;
        padding-left: 20px;
    }

    section .section-title div {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .its-section-title {
        font-size: 32px;
    }

    .contacts-page .contacts-title {
        font-size: 40px;
    }

    .contacts-page .contacts-text {
        font-size: 18px;
    }

    #map {
        height: 300px;
    }
    
}

@media (max-width: 360px) {
    section .section-title div {
        font-size: 28px;
        margin-bottom: 30px;
    }

    section .section-title div > span + a {
        margin-left: 15px;
    }
    

    a.its-button {
        font-size: 14px;
        -webkit-clip-path: polygon(0px 14px, 14px 0px, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(0px 14px, 14px 0px, 100% 0%, 100% 100%, 0% 100%);
        padding: 5px 10px;
    }

    a.its-button::after {
        left: -45px;
    }

    .projects .projects-list .projects-row .portfolio-item-wrapper {
        width: 100%;
        padding-bottom: 30px;
    }

    .projects .portfolio-item {
        height: 300px;
    }

    .trust-wrapper .trust-wrapper-inner > div {
        width: 100%;
        height: 130px;
    }
}


























