
/* #Primary
================================================== */

body{
    font-family: 'Manrope', sans-serif;
	font-weight:400;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	line-height: 1.55;
	color: #646464;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-family: 'Tenor Sans', sans-serif;
    font-weight: 400; /* Обязательно 400, чтобы шрифт оставался тонким и резким */
    letter-spacing: 1.5px; /* Добавляем больше воздуха элегантным заголовкам */
	margin-bottom: 0.6rem;
	line-height: 1.25;
	color: #212121;
}
h1, .h1 {
	font-size: 2.8rem;
}
h2, .h2 {
	font-size: 2.3rem;
}
h3, .h3 {
	font-size: 2rem;
}
h4, .h4 {
   
	font-size: 1.7rem;
}
h5, .h5 {
	font-size: 1.25rem;
	font-weight:500;
}
h6, .h6 {
	font-size: 1.1rem;
}
::selection {
	color: #fff;
}
::-moz-selection {
	color: #fff;
}
mark{
	color:#fff;
}
.lead {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.45;
	font-style: italic;
}



/* #Background Animated Lines
================================================== */

.decolines {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}
.decolines--fixed {
	position: fixed;
	width: 100vw;
	max-width: 1110px;
	height: 100vh;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.decoline {
	position: absolute;
}

/* #Navigation
================================================== */

.header{
    position: fixed;
	width:100%;
	top:0;
	left:0;
	z-index:100;
} 



   
 .logo-wrap {
 max-width: 170px;
    display: inline-block;
    

        }
        
        /* Стили самого SVG логотипа */
        .kruweb-svg {
            width: 100%;
            height: auto;
            display: block;
            overflow: visible;
            margin-left: -20px;
        }

        /* Текст логотипа */
        .kru-text { 
            font-family: 'Outfit', sans-serif; 
            font-weight: 700; 
            font-size: 70px; 
            fill: #1e3a8a; /* Темно-синий для белого фона */
            letter-spacing: -1px;
        }
        .web-text { 
            font-weight: 400; 
            fill: #3b82f6; /* Ярко-синий для акцента */
        }

        /* Анимация "Парение" (Idle) */
        .anim-float-circle {
            animation: floatUp 3s ease-in-out infinite alternate;
        }
        .anim-float-rect {
            animation: floatDown 4s ease-in-out infinite alternate;
        }

        @keyframes floatUp {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-8px); }
        }
        @keyframes floatDown {
            0% { transform: translateY(0px); }
            100% { transform: translateY(8px); }
        }




.cd-header {
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 1);
	width: 100%;
	z-index: 2002;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	height: 70px;
	background: transparent;
	box-shadow: none;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear; 
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.cd-header.is-fixed {
	position: fixed;
	top: -70px;
	background-color: rgba(255, 255, 255, 0.96);
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}
.cd-header.is-visible {
	-webkit-transform: translate3d(0, 100%, 0);
	-moz-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	-o-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.cd-header.menu-is-open {
	background-color: rgba(255, 255, 255, 0);
}


.nav-but-wrap{ 
	position: relative;
	display: inline-block;
	float: right;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
	margin-top: 12px;
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.menu-icon {
	height: 30px;
	width: 30px;
	position: relative;
	z-index: 2;
	cursor: pointer;
}
.menu-icon__line {
	height: 2px;
	width: 30px;
	display: block;
	background-color: #000;
	margin-bottom: 7px;
	-webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, background-color .5s ease;
	transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
	width: 22.5px;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.menu-icon__line-right {
	width: 22.5px;
	float: left;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
	width: 30px;
}

.nav {
	position: fixed;
	z-index: 98;
}
.nav:before, .nav:after {
	content: "";
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.1);
	z-index: -1;
	-webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
	transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
	-webkit-transform: translateX(0%) translateY(-100%);
          transform: translateX(0%) translateY(-100%);
}
.nav:after {
	background: #fff;
	-webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.nav:before {
	-webkit-transition-delay: .1s;
          transition-delay: .1s;
}
.nav__content {
	position: fixed;
	visibility: hidden;
	overflow: hidden; 
	top: 50%;
	margin-top: 40px;
	-webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
	width: 100%;
	text-align: center;
}
.nav__list {
	padding: 0;
	margin: 0;
}
.nav__list-item {
	position: relative;
	display: block;
	-webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
	opacity: 0;
	text-align: center;
	color: #000;
	overflow: hidden; 
   
	font-size: 5vh;
	line-height: 1.15;
	letter-spacing: 3px;
	-webkit-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
	-webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, transform .3s ease;
	transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
	margin-top: 0;
	margin-bottom: 0;
}
.nav__list-item a{ 
	position: relative;
	text-decoration: none;
	color: #000;
	overflow: hidden; 
	cursor: pointer;
	padding-left: 5px;
	padding-right: 5px;
	display: inline-block;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear; 
}
.nav__list-item.active-nav a{
}
body.nav-active .nav__content {
	visibility: visible;
}
body.nav-active .cd-header.is-fixed {
	-webkit-transform: translate3d(0, 100%, 0);
	-moz-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	-o-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
body.nav-active .cd-header.is-visible {
}
body.nav-active .menu-icon__line {
	background-color: #000;
	-webkit-transform: translate(0px, 0px) rotate(-45deg);
          transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
	width: 15px;
	-webkit-transform: translate(2px, 4px) rotate(45deg);
          transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
	width: 15px;
	float: right;
	-webkit-transform: translate(-3px, -3.5px) rotate(45deg);
          transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
	width: 15px;
}
body.nav-active .nav {
	visibility: visible;
}
body.nav-active .nav:before, body.nav-active .nav:after {
	-webkit-transform: translateX(0%) translateY(0%);
          transform: translateX(0%) translateY(0%);
}
body.nav-active .nav:after {
	-webkit-transition-delay: .1s;
          transition-delay: .1s;
}
body.nav-active .nav:before {
	-webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.nav-active .nav__list-item {
	opacity: 1;
	-webkit-transform: translateX(0%);
          transform: translateX(0%);
	-webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
	-webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
body.nav-active .nav__list-item:nth-child(1) {
	-webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
body.nav-active .nav__list-item:nth-child(2) {
	-webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
body.nav-active .nav__list-item:nth-child(3) {
	-webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(4) {
	-webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(5) {
	-webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(6) {
	-webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(7) {
	-webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(8) {
	-webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(9) {
	-webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(10) {
	-webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.nav__list .sub-links{ 
	position: relative;
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear; 
}
.nav__list .sub-links li{ 
	padding: 0;
	margin: 0;
	margin-top: 5px;
	margin-bottom: 5px;
	display: block;
}
.nav__list .sub-links li:first-child{ 
	margin-top: 0;
}
.nav__list .sub-links li a{ 
	color: #000;
	overflow: hidden; 
	font-family: 'Poppins', sans-serif;
	font-weight:400;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: 3px;
	padding: 0;
	margin: 0;
	display: block;
}

/* #Scroll to top button
================================================== */

.scroll-to-top {
	position: fixed;
	cursor: pointer;
	bottom: 30px;
	right: 30px;
	display: none;
	z-index: 95;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	text-align: right;
   
	font-size: 14px;
	letter-spacing: 1px;
	color: #000;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
.scroll-to-top:before {
	content: '';
	position: absolute;
	width: 100%;
	top: -30px;
	opacity: 0;
	left: 0;
	height: 40px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 25px 25px;
	background-image: url('../img/arrow-up.svg');
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
.scroll-to-top:hover:before {
	top: -40px;
	opacity: 1;
}

/* #Social fixed
================================================== */

.social-fixed-left,
.social-fixed-left-no-change {
	position: fixed;
	bottom: 30px;
	left: 30px;
	display: none;
	z-index: 94;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
}
.social-fixed-left-no-change {
	display: block;
}
.social-fixed-left a,
.social-fixed-left-no-change a{
	position: relative;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
  
	font-size: 14px;
	letter-spacing: 1px;
	color: #999;
	display: inline-block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
.social-fixed-left a:after,
.social-fixed-left a:before,
.social-fixed-left-no-change a:after,
.social-fixed-left-no-change a:before{
	position: absolute;
	content: '';
	border-radius: 50%;
	width: 3px;
	height: 3px;
	left: -1px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
.social-fixed-left a:after,
.social-fixed-left-no-change a:after{
	top: 50%;
	margin-top: -5px;
}
.social-fixed-left a:before,
.social-fixed-left-no-change a:before{
	top: 50%;
	margin-top: 2px;
}
.social-fixed-left a:hover:after,
.social-fixed-left-no-change a:hover:after{
	top: 0;
	margin-top: 0;
	height: 50%;
	border-radius: 0;
	width: 2px;
}
.social-fixed-left a:hover:before,
.social-fixed-left-no-change a:hover:before{
	top: 50%;
	margin-top: 0;
	height: 50%;
	border-radius: 0;
	width: 2px;
}
.social-fixed-left a:hover,
.social-fixed-left-no-change a:hover{
	color: #000;
	text-decoration: none;
}



/* #Primary style
================================================== */

.section {
    position: relative;
	width: 100%;
	display: block;
}
.relative {
    position: relative;
}
.over-hide{
	overflow: hidden;
}
.full-height {
	height: 100vh;
}
.half-height {
	height: 50vh;
}
.big-55-height {
	height: 55vh;
}
.big-60-height {
	height: 60vh;
}
.big-65-height {
	height: 65vh;
}
.big-70-height {
	height: 70vh;
}
.big-75-height {
	height: 75vh;
}
.big-80-height {
	height: 80vh;
}
.max-width-80 {
	max-width: 80%;
}
.background-white {
	background-color: #ffffff;
}
.background-grey {
	background-color: #fbfbfb;
}
.background-grey-1 {
	background-color: #f9f9f9;
}
.background-dark {
	background-color: #212121;
}
.background-dark-1 {
	background-color: #323232;
}
.background-dark-2 {
	background-color: #1b1b1b;
}
.background-black {
	background-color: #000000;
}
.img-wrap  {
	position:relative;
	width:100%;
}
.img-wrap img {
	width:100%;
	display:block;
}
.z-bigger  {
	z-index:10;
}
.padding-top-bottom {
	padding-top: 80px;
	padding-bottom: 80px;
}
.padding-top {
	padding-top: 80px;
}
.padding-bottom {
	padding-bottom: 80px;
}
.padding-top-bottom-big {
	padding-top: 110px;
	padding-bottom: 110px;
}
.padding-top-big {
	padding-top: 110px;
}
.padding-bottom-big {
	padding-bottom: 110px;
}
.padding-top-bottom-small {
	padding-top: 50px;
	padding-bottom: 50px;
}
.padding-top-small {
	padding-top: 50px;
}
.padding-bottom-small {
	padding-bottom: 50px;
}
.hero-center-wrap{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: 30px;
	z-index:2;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.hero-center-wrap.down-wrap{
	top: auto;
	margin-top: 0;
	bottom: 50px;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.hero-center-wrap h1{
	font-size: 4.5vw;
	line-height: 0.9;
	letter-spacing: 2px;
	text-align: left;
}
.hero-center-wrap h2{
	font-size: 3.5vw;
	line-height: 1;
	letter-spacing: 2px;
	text-align: left;
}
.hero-center-wrap.big h1{
	font-size: 5vw;
	line-height: 1;
}
.hero-center-wrap p{
	font-size: 18px;
	letter-spacing: 4px;
	text-align: left;
	font-weight: 500;
}
.span-down{
    position: absolute;
	bottom: 0;
	right: 5px;
	cursor: pointer;
	width: 30px;
    vertical-align: middle;
    border-radius: 1px;
}
.typing_loader{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-animation: typing 1s linear infinite alternate;
       -moz-animation: typing 1s linear infinite alternate;
            animation: typing 1s linear infinite alternate;
    margin: 46px auto; /* Not necessary- its only for layouting*/  
    position: relative;
	transform: rotate(90deg);
}
@-webkit-keyframes typing{
   0%{
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
      }
    25%{ 
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }
    75%{ background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,1);
      }
}
@-moz-keyframes typing{
   0%{
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
      }
    25%{ 
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }
    75%{ background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,1);
      }
}
@keyframes typing{
   0%{
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
      }
    25%{ 
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }
    75%{ background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,1);
      }
}


/* #Work Slice Reveal
================================================== */

.scroll-img {
	width: 800px;
	max-width: 100%;
	min-width: 250px;
	height: 40vh;
	min-height: 250px;
	background-size: cover;
	overflow: hidden;
}
.uncover__img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
}
.uncover__slices {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
}
.uncover__slices--vertical {
	flex-direction: row;
}
.uncover__slices--horizontal {
	flex-direction: column;
}
.uncover__slices--horizontal-double {
	display: grid;
	grid-template-columns: 50% 50%;
}
.uncover__slices--vertical-double {
	display: grid;
	grid-template-rows: 50% 50%;
}
.uncover__slice {
	color: #fff;
	background-color: currentColor;
	flex: 1;
}

.project-name{
	bottom: -30px;
	left: 20px;
	position: absolute;
  
	line-height: 1;
	color: #212121;
	font-size: 55px;
	-webkit-transform: translateZ(0);
		transform: translateZ(0);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.project-name span{
	position: relative;
	width: 15px;
	background-color: #212121;
	height: 2px;
	margin-left: 10px;
	margin-bottom: 12px;
	display: inline-block;
	opacity: 0;
	-webkit-transform: translateZ(0);
		transform: translateZ(0);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.project-name span:before{
	content: '';
	position: absolute;
	top: 0;
	right: -10px;
	width: 8px;
	height: 2px;
	background-color: #212121;
	transform-origin: 100% 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.project-name span:after{
	position: absolute;
	content: '';
	bottom: 0;
	right: -10px;
	width: 10px;
	height: 2px;
	background-color: #212121;
	transform-origin: 100% 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.parallax-elements:hover .project-name span{	
	opacity: 1;
	margin-left: 30px;
}
.parallax-elements:hover .project-name span:before{	
	transform: rotate(45deg);
}
.parallax-elements:hover .project-name span:after{	
	transform: rotate(-45deg);
}
.project-type{
	bottom: 45px;
	left: 50px;
	position: absolute;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-style: italic;
	line-height: 1;
	color: #000;
	font-size: 14px;
	letter-spacing: 1px;
	-webkit-transform: translateZ(0);
		transform: translateZ(0);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.project-type span{
	background-color: rgba(255, 255, 255, 1);
	padding: 6px 12px;
}
.parallax-elements{	
	display: block;
	-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	-webkit-transform: perspective(300px);
		transform: perspective(300px);
		box-shadow: #0000000a 0px 5px 20px 5px;
}
.parallax-elements:hover .project-type{	
	-webkit-transform: translateZ(30px);
		transform: translateZ(30px);
}
.parallax-elements:hover .project-name{	
	-webkit-transform: translateZ(10px);
		transform: translateZ(10px);
		
}

/* #Scrolling Letters Animation
================================================== */

.content__section a{
	display: block;
	margin: 0 auto;
	width: 100%;
}
.content__section a:hover{
	text-decoration: none;
}
.center-wrap{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	z-index:2;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.content__img {
	position: relative;
	display: block;
	width: 100%;
	max-width: 800px;
	height: auto;
	margin: 0 auto;
	text-align: center;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.content__text {
	position: absolute;
	left: 10px;
	top: 40px;
	z-index: 10;
    
	font-size: 6vw;
	line-height: 0.9;
	letter-spacing: 4px;
	text-align: left;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.image-3d{	
	display: block;
	-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	-webkit-transform: perspective(300px);
		transform: perspective(300px);
}
.image-3d:hover .content__text {
	-webkit-transform: translateZ(30px);
		transform: translateZ(30px);
	text-shadow: 2px 8px 6px rgba(0,0,0,0.1),
                 0px -8px 15px rgba(0,0,0,0.1);
}
.image-3d:hover .content__img {
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.content-subtext {
	position: absolute;
	right: 50%;
	margin-right: -410px;
	bottom: 30px;
	z-index: 10;
	font-family: 'Poppins', sans-serif;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	font-weight:400;
	font-style: italic;
	font-size: 15px;
	line-height: 1;
	letter-spacing: 2px;
	text-align: right;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.content-subtext span {
	padding: 18px 8px;
	background: rgba(23, 23, 23, 0.95);
	border-radius: 3px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.image-3d:hover .content-subtext {
	-webkit-transform: translateZ(10px);
		transform: translateZ(10px);
}
.image-3d:hover .content-subtext span {
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}
.pag-3d-work-wrap {
	position: fixed;
	right: 40px;
	width: 35px;
	top: 50%;
	z-index: 30;
	display: none;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.pag-3d-line{
	position: relative;
	float: right;
	width: 15px;
	margin-left: 20px;
	padding-top: 6px;
	padding-bottom: 6px;
	height: 2px;
	background-color: transparent;
	border-bottom: 2px solid #212121;
	display: block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.pag-3d-line:hover{
	width: 35px;
	margin-left: 0;
}
.pag-3d-work-wrap a.mPS2id-highlight .pag-3d-line{
	width: 35px;
	margin-left: 0;
}


/* #Masonry portfolio
================================================== */

/* #Portfolio
================================================== */

#projects-grid{
	position:relative;
	text-align:center;
	margin:0 auto;
	width: 1140px;
	max-width:100%;
	overflow:visible !important;
}
#projects-grid:after {
  content: '';
  display: block;
  clear: both;
}
.portfolio-box{
	position:relative;
	float:left;
	width: calc(50% - 30px);
	margin: 15px;
	display:inline-block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	-webkit-transform: perspective(300px);
		transform: perspective(300px);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
.portfolio-box .mask {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 100%;
	z-index: 2;
	opacity: 0;
	background-color: rgba(255, 255, 255, 0.5);
	background-image: url(../img/topography.svg);
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.portfolio-box:hover .mask {
	opacity: 0.6;
}
.portfolio-box img{
	width:100%;
	display:block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.portfolio-box h2{
	bottom: 10px;
	left: 30px;
	position: absolute;
   
	color: #212121;
	font-size: 45px;
	line-height: 0.9;
	-webkit-transform: translateZ(0);
		transform: translateZ(0);
	z-index: 70;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.portfolio-box:hover h2{	
	-webkit-transform: translateZ(20px);
		transform: translateZ(20px);
	text-shadow: 1px 8px 12px rgba(0,0,0,0.15),
                 0px -8px 5px rgba(0,0,0,0.15);
}
.portfolio-box p{
	bottom: 55px;
	left: 55px;
	position: absolute;
	font-family: 'Crimson Text';
	line-height: 1;
	font-size: 18px;
	z-index: 80;
	font-style: italic;
	-webkit-transform: translateZ(0);
		transform: translateZ(0);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.portfolio-box p span{
	background-color: #212121;
	padding: 5px 12px;
	border-radius: 2px;
}
.portfolio-box:hover p{	
	-webkit-transform: translateZ(15px);
		transform: translateZ(15px);
	text-shadow: 1px 4px 12px rgba(0,0,0,0.05),
                 0px -4px 5px rgba(0,0,0,0.05);
}
#portfolio-filter {
	position:relative;
	text-align: end;
	z-index:20;
	width:100%;
}
#filter {
	position:relative;
	display:inline-block;
	text-align: center;
	padding: 0;
}
#filter li {
	display: inline-block;
	margin-right:7px;
	margin-left:7px;
	padding: 0;
}
#filter:after {
  content: '';
  display: block;
  clear: both;
}
#filter li a {
	position: relative;
	display: inline-block;
	letter-spacing:1px;
	padding-bottom:7px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	font-family: 'Crimson Text';
	color: #777;
	font-weight:400;
	font-style: italic;
	font-size: 18px;
	line-height:22px;
	text-decoration: none;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
#filter li a:hover {
	color:#000;
}
#filter li a:before {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -15px;
	height: 2px;
	content: '';
	z-index: -1;
	opacity: 0;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
#filter li a.current:before {
	bottom: -5px;
	opacity: 1;
}
#filter li a.current {
	color:#000;
}
#filter li a:hover:before {
	bottom: -5px;
	opacity: 1;
}
.isotope-item {
    z-index: 2;
}
.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}
.isotope, .isotope .isotope-item {
    -webkit-transition-duration: 0.6s;
       -moz-transition-duration: 0.6s;
            transition-duration: 0.6s;
}
.isotope {
    -webkit-transition-property: height, width;
       -moz-transition-property: height, width;
            transition-property: height, width;
}
.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
       -moz-transition-property:    -moz-transform, opacity;
        -ms-transition-property:     -ms-transform, opacity;
         -o-transition-property:         top, left, opacity;
            transition-property:         transform, opacity;
}

/* #Parallax portfolio
================================================== */

.parallax-project-wrapper{
    position: relative;
	width: 100%;
}
a:hover{
    text-decoration: none;
}
.parallax-project-wrapper img{
	width: 100%;
	display: block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.parallax-project-wrapper:hover img{
	opacity: .7;
}
.parallax-project-wrapper h2{
	position: relative;
  
	color: #212121;
	font-size: 35px;
	line-height: 0.9;
	padding-top: 20px;
	padding-bottom: 5px;
}
.parallax-project-wrapper p{
	position: relative;
	line-height: 1;
	font-size: 16px;
}

/* #Project page
================================================== */

.project-text-wrapper{
    position: relative;
	width: 100%;
}
.project-text-wrapper h4{
    position: relative;
}
.project-text-wrapper h4:before{
    position: absolute;
	content: '';
	top: 50%;
	left: -45px;
	width: 30px;
	background-color: #212121;
	height: 1px;
	t-index: 2;
}

/* #Project nav
================================================== */

.project-nav-wrap {
	position:relative;
	display:block;
	margin:0 auto;
	text-align:center;
	background-repeat:no-repeat;
	background-position:center center;
	background-image:url('../img/line-nav.png');
	background-size:23px 80px;
}
.project-nav-wrap .left-nav {
	position:relative;
	display:inline-block;
	margin-right:30px;
	width:220px;
	height:120px;
    
	letter-spacing:2px;
	text-align:right;
	font-size: 50px;
	line-height:80px;
    vertical-align: text-top;
	color:#999;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.project-nav-wrap .left-nav:hover {
	color:#000;
}
.project-nav-wrap .right-nav {
	position:relative;
	display:inline-block;
	margin-left:30px;
	width:220px;
	height:120px;
	font-size: 50px;
	line-height:160px;
    vertical-align: text-bottom;
  
	letter-spacing:2px;
	text-align:left;
	color:#999;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.project-nav-wrap .right-nav:hover {
	color:#000;
}
.project-nav-wrap .left-nav .text-on-hover,
.project-nav-wrap .right-nav .text-on-hover {
	position:absolute;
	z-index:2;
	width:100%;
	opacity:0;
	font-family: 'Poppins', sans-serif;
	font-weight:400;
	font-size: 13px;
	line-height:20px;
	color:#000;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.project-nav-wrap .left-nav .text-on-hover{
	text-align:right;
	padding-right:50px;
	right:0;
	bottom:130px;
}
.project-nav-wrap .left-nav .text-on-hover:before{
	font-family: FontAwesome;
	padding-right:10px;
	font-size: 15px;
	content: "\f104";
}
.project-nav-wrap .left-nav:hover .text-on-hover{
	opacity:1;
	bottom:110px;
}
.project-nav-wrap .right-nav .text-on-hover{
	text-align:left;
	padding-left:50px;
	left:0;
	top:130px;
}
.project-nav-wrap .right-nav .text-on-hover:after{
	font-family: FontAwesome;
	padding-left:10px;
	font-size: 15px;
	content: "\f105";
}
.project-nav-wrap .right-nav:hover .text-on-hover{
	opacity:1;
	top:110px;
}

/* #Studio
================================================== */

.sec-titile{
    position: relative;
	width: 100%;
}
.sec-titile h4{
	font-size: 40px;
	padding-left: 45px;
	line-height: 1.1;
}
.sec-titile .subtitle{
	position: relative;
	text-align: left;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 17px;
	display: block;
	padding-left: 45px;
}
.sec-titile .subtitle:before{
	position: absolute;
	width: 20px;
	content: '';
	height: 2px;
	top: 50%;
	margin-top: -1px;
	left: 0;
	z-index: 2;
}
.logo-img{
    position: relative;	
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.logo-img img{
	width: 129px;
	display: block;
	margin: 0 auto;
	text-align: center;
	filter: grayscale(100%)
}

.team-mem{
    position: relative;	
	width: 100%;
	-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
}
.team-mem img{
	width: 100%;
	display: block;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.team-mem:hover img{
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}
.team-mask{
    position: absolute;	
	width: 100%;
	height: 100%;
	display: block;
	left: 0;
	top: 0;
	background-color: #212121;
	z-index: 1;
	padding: 0;
	margin: 0 auto;
	opacity: 0;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.team-mem:hover .team-mask{
    opacity: 0.5;
}
.team-soc{
    position: absolute;	
	width: 100%;
	display: block;
	left: 0;
	top: 50%;
	z-index: 2;
	padding: 0;
	margin: 0 auto;
	opacity: 0;
	text-align: center;
	-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.team-mem:hover .team-soc{
    opacity: 1;
	-webkit-transform: translate3d(0, -50%, 25px);
	transform: translate3d(0, -50%, 25px);
}
.team-soc li{
	padding: 0;
	margin: 0 auto;
	text-align: center;
	margin-left: 5px;
	margin-right: 5px;
	display: inline-block;
}
.team-soc li a{
	font-family:'FontAwesome';
	display: block;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	color: #212121;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.team-soc li a:hover{
	color: #fff;
}
.team-info{
    position: relative;	
	width: 100%;
}
.team-info h5{
    text-align: left;
   color: #1e3a8a;
    
}
.team-info p{
    text-align: left;
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 14px;
	line-height: 16px;
	padding-top: 30px;
	margin-bottom: 5px;
}
.services{
    position: relative;	
	margin: 0;
	text-align: left;
	padding: 30px;
	-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.services:hover{
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}
.services img{
	width: 35px;
	margin: 0;
	text-align: left;
	display: block;
	margin-bottom: 20px;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.services:hover img{
	-webkit-transform: translateZ(25px);
	transform: translateZ(25px);
}
.services h6{
	text-align: left;
    
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.services:hover h6{
	-webkit-transform: translateZ(15px);
	transform: translateZ(15px);
}
.services p{
	text-align: left;
    margin-bottom: 0;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.services:hover p{
	-webkit-transform: translateZ(20px);
	transform: translateZ(20px);
}
.contact-info{
    position: relative;	
	width: 100%;
}
.contact-info h5{
    text-align: left;
   
}
.contact-info p{
    text-align: left;
	margin-bottom: 35px;
}
.contact-info a{
    text-align: center;
	display: inline-block;
	margin: 0;
	padding: 10px 25px;
	border-radius: 3px;
	color: #fff;
	background-color: #212121;
	-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.contact-info a:hover{
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}
.contact-info a span{
	position: relative;
	display: block;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}
.contact-info a:hover span{
	-webkit-transform: translateZ(10px);
	transform: translateZ(10px);
}





/* #Footer
================================================== */

.footer p{
    
	font-size: 14px;
	color: #999;
	letter-spacing: 1px;
	text-align: center;
}
.footer a{
	text-decoration: none;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.footer a:hover{
	opacity: 0.6;
}


/* #Tooltip
================================================== */

	.tipper {background-color: transparent; height: 1px; left: -99999px; position: absolute; pointer-events: none; top: -99999px; width: 1px;z-index:100000; }
	.tipper .tipper-content { background-color: transparent; letter-spacing:0; border-radius: 3px; display: block; float: left;  font-size: 18px; margin: 0; padding: 6px 20px; position: relative; white-space: nowrap; }
	.tipper .tipper-content strong {background-color:#143747; margin-bottom: 5px; color: #fff; padding:10px 20px;font-weight:normal;font-size: 28px;}
	.tipper .tipper-content em {position:absolute;letter-spacing: 2px;bottom:-20px;right:0;background-color:#143747; padding:3px 18px; z-index:200;font-family: 'Crimson Text';font-weight:600;font-size: 18px;}
	.tipper .tipper-caret { display: block; height: 11px;  position: absolute; width: 100%; font-weight:700; }

	.tipper.right .tipper-content {  }
	.tipper.right .tipper-caret { background-position: left center; left: -5px; top: 0; }

	.tipper.left .tipper-content { }
	.tipper.left .tipper-caret { background-position: right center; right: -5px; top: 0; }

	.tipper.top .tipper-caret,
	.tipper.bottom .tipper-caret { display: block; float: none; height: 5px;  width: 12px;margin-left:-6px; }

	.tipper.top .tipper-content { }
	.tipper.top .tipper-caret { background-position: center bottom; bottom: -5px; left: 0; text-align:center;}

	.tipper.bottom .tipper-content { background: transparent; }
	.tipper.bottom .tipper-caret { background-position: center top; top: -5px; left: 0; }

	
/* #Media
================================================== */

@media (max-width: 1500px) { 
}

@media (max-width: 1300px) {
	.social-fixed-left {
		left: 10px;
	}
	.scroll-to-top {
		right: 8px;
	}
}

@media (max-width: 1199px) { 
	.decolines--fixed {
		max-width: 930px;
	}
	.hero-center-wrap.big h1,
	.hero-center-wrap h1{
		font-size: 6vw;
	}
	.hero-center-wrap h2{
		font-size: 5vw;
	}
	.scroll-img {
		height: 30vh;
	}
	#projects-grid{
		width: 960px;
	}
}

#portfolio-filter {
 
    margin-bottom: 3em;
}

@media (max-width: 991px) { 
	.decolines--fixed {
		max-width: 690px;
	}
	.content-subtext {
		margin-right: -310px;
		bottom: 20px;
	}
	.pag-3d-line{
		display: none;
	}
	.social-fixed-left-no-change {
		bottom: 10px;
		left: 10px;
	}
	.velo-slide__text {
		font-size: 16px;
	}
	.video-parallax-elements h2{
		font-size: 45px;
	}
	.video-parallax-down-text p{
		letter-spacing: 1px;
		font-size: 15px;
	}
	#projects-grid{
		width: 720px;
	}
	.portfolio-box h2{
		font-size: 35px;
	}
	.portfolio-box p{
		bottom: 50px;
	}
	.project-nav-wrap {
		background-image:none;
	}
	.project-nav-wrap .left-nav {
		margin-right:0;
		width:50%;
		float:left;
		height:40px;
		text-align:left;
		font-size: 30px;
		line-height:40px;
		vertical-align: middle;
	}
	.project-nav-wrap .right-nav {
		margin-left:0;
		width:50%;
		float:right;
		height:40px;
		font-size: 30px;
		line-height:40px;
		vertical-align: middle;
		text-align:right;
	}
	.project-nav-wrap .left-nav .text-on-hover,
	.project-nav-wrap .right-nav .text-on-hover {
		display:none;
	}
	.padding-top-bottom-big.smaller-padding-mob{
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

@media (max-width: 767px) {
	#royal_preloader.royal_preloader_progress .royal_preloader_percentage {
		font-size: 16vw;
	}
	.decolines--fixed {
		max-width: 510px;
	}
	.hero-center-wrap.big h1,
	.hero-center-wrap h1{
		font-size: 8vw;
	}
	.hero-center-wrap h2{
		font-size: 7vw;
	}
	.main {
		position: relative;
		padding-bottom: 50px;
	}
	.scroll-to-top {
		position: absolute;
		bottom: 20px;
		right: 0;
		width: 100%;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		text-align: center;
	}
	.social-fixed-left {
		position: absolute;
		bottom: 80px;
		left: 0;
		width: 100%;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		display: block;
		text-align: center;
		margin: 0 auto;
	}
	.social-fixed-left a{
		margin-left: 10px;
		margin-right: 10px;
		margin-top: 0;
		margin-bottom: 5px;
		display: inline-block;
		text-align: center;
	}
	.social-fixed-left a:after,
	.social-fixed-left a:before{
		bottom: -1px;
	}
	.social-fixed-left a:after{
		top: auto;
		left: 50%;
		margin-left: -5px;
		margin-top: auto;
	}
	.social-fixed-left a:before{
		top: auto;
		left: 50%;
		margin-top: auto;
		margin-left: 2px;
	}
	.social-fixed-left a:hover:after{
		top: auto;
		left: 0;
		margin-top: auto;
		margin-left: 0;
		height: 2px;
		border-radius: 0;
		width: 50%;
	}
	.social-fixed-left a:hover:before{
		top: auto;
		margin-top: 0;
		width: 50%;
		border-radius: 0;
		height: 2px;
	}	
	.nav-but-wrap{ 
		padding-right: 0;
	}
	.full-height.change-full-height-on-mob {
		height: auto;
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.full-height.change-full-height-on-mob .center-wrap {
		position: relative;
		top: auto;
		left: auto;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	.content__text {
		position: relative;
		left: auto;
		top: auto;
		padding-top: 20px;
		font-size: 32px;
		line-height: 1;
		letter-spacing: 1px;
	}
	.content-subtext {
		position: relative;
		right: auto;
		margin-right: 0;
		bottom: auto;
		padding-top: 5px;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		font-size: 12px;
		line-height: 1;
		letter-spacing: 1px;
		text-align: left;
	}
	.content-subtext span {
		padding: 6px 12px;
		background: rgba(23, 23, 23, 0.95);
		border-radius: 2px;
	}

	
	.social-fixed-left {
    position: fixed;
    bottom: 15px;
    left: 0;
    text-align: left;
    margin: 0 auto;
    }
    
    .social-fixed-left a {
    background-color: #ffffff70;
    padding: 5px;
    backdrop-filter: blur(8px);
    }
    
    .scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 0;
    width:auto;
     text-align: right;
    background-color: #ffffff70;
    padding: 5px;
    margin:5px;
    backdrop-filter: blur(8px);
    }
	
    .mb-4 {

    width: 50%;
    }	
	
}

@media (max-width: 575px) {
    .decolines--fixed {
	max-width: 260px;
        opacity: 0.5;
	}
	.hero-center-wrap.big h1,
	.hero-center-wrap h1{
		font-size: 11vw;
	}
	.hero-center-wrap h2{
		font-size: 9vw;
	}
}




        /* * ==========================================
         * БАЗОВЫЕ СТИЛИ И АНИМАЦИИ ИКОНОК
         * ==========================================
         */
        .services.background-grey.js-tilt svg * {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        /* 1. Лендинг (Стрелка взлетает) */
        .services.background-grey.js-tilt:hover .anim-arrow {
            transform: translate(3px, -3px);
            stroke: #38bdf8;
        }
       .services.background-grey.js-tilt:hover .anim-browser {
            stroke: #2563eb;
        }

        /* 2. Корпоративный (Слои раздвигаются) */
        .services.background-grey.js-tilt:hover .anim-layer-back {
            transform: translate(-2px, -2px);
            stroke: #38bdf8;
        }
        .services.background-grey.js-tilt:hover .anim-layer-front {
            transform: translate(2px, 2px);
            stroke: #2563eb;
        }

        /* 3. Интернет-магазин (Товарная карточка и кнопка) */
        .services.background-grey.js-tilt:hover .anim-ecom-front {
            transform: translate(2px, -2px);
            stroke: #2563eb;
        }
        .services:hover .anim-ecom-btn {
            stroke: #38bdf8;
            transform: scale(1.1);
        }
        .services.background-grey.js-tilt:hover .anim-ecom-plus {
            transform: rotate(90deg) scale(1.1);
            stroke: #38bdf8;
        }

        /* 4. Поддержка (Код + Цикл обновления) */
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .services.background-grey.js-tilt:hover .anim-bracket-left {
            transform: translateX(-2px);
            stroke: #38bdf8;
        }
        .services.background-grey.js-tilt:hover .anim-bracket-right {
            transform: translateX(2px);
            stroke: #38bdf8;
        }
        .services.background-grey.js-tilt:hover .anim-sync-spin {
            animation: spin 3s linear infinite;
        }


  /* * ==========================================
         * 1. СТИЛИ ДЛЯ ЛАЙТБОКСА (Добавьте в ваш CSS)
         * ==========================================
         */

    
        /* Основной контейнер лайтбокса (фон) - теперь ОН НЕ СКРОЛЛИТСЯ */
        .custom-lightbox {
            display: none; /* Скрыт по умолчанию */
            position: fixed;
            z-index: 99999;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #808080a3; 
            backdrop-filter: blur(8px); 
        }

        /* Класс для плавного появления */
        .custom-lightbox.active {
            display: block;
            animation: fadeInLightbox 0.3s ease-out forwards;
        }

        /* Новый слой специально для скролла картинки */
        .lightbox-scroll-area {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 100px; /* Отступ снизу, чтобы картинка не пряталась за кнопками */
        }

        /* Контейнер для самой картинки */
        .lightbox-content {
            width: 90%;
            max-width: 1200px;
            margin: 5vh auto; 
            position: relative;
        }

        /* Само изображение */
        .lightbox-content img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        /* Блокировка скролла на самом сайте */
        body.lightbox-open {
            overflow: hidden;
            padding-right: 15px; 
        }

        @keyframes fadeInLightbox {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }



       /* * ==========================================
         * 5. НОВЫЕ СТИЛИ ДЛЯ ИКОНОК И МОБИЛЬНОЙ ВЕРСИИ
         * ==========================================
         */

 
        .portfolio-box {
            position: relative; /* Добавлено для правильного позиционирования иконок внутри */
        }

       /* ЗАДАЧА 4: Замена курсора на десктопе (лупа с плюсом) */
        @media (hover: hover) {
            .custom-lightbox-link {
                cursor: zoom-in;
                display: block;
            }
        }

        /* Блок заголовка для мобильных */
        .mobile-project-title {
            display: none; /* Скрыт по умолчанию (для ПК) */
            margin-top: 10px;
           text-align: right;
        }
        .mobile-project-title em {
            display: block;
            font-size: 10px;
            color: #64748b;
            text-transform: uppercase;
            font-style: normal;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }
        .mobile-project-title strong {
            display: block;
            font-size: 14px;
            color: #0f172a;
            font-weight: 700;
            line-height: 1.1;            
        }

        @media (hover: none) {
            .mobile-project-title {
                display: block; /* Показываем статичный заголовок под миниатюрой на телефонах */
            }
        }


         /* ==========================================
         * ПАНЕЛЬ УПРАВЛЕНИЯ ЛАЙТБОКСОМ (Снизу по центру)
         * ==========================================
         */
        .lightbox-controls {
            position: absolute; /* Теперь абсолют позиционируется относительно нескроллящегося фона */
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
           
            z-index: 100001;
        }

        .lightbox-btn {
            background: #0036b782; 
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            height: 48px;
            padding: 0 24px;
         
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
          
            font-weight: 500;
            font-size: 15px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .lightbox-btn:hover {
            background: #2563eb; 
            transform: translateY(-2px);
            border-color: #3b82f6;
        }

        .lightbox-btn svg {
            width: 18px;
            height: 18px;
        }

        /* Убираем старый крестик в правом верхнем углу */
        .lightbox-close {
            display: none;
        }
  
        /* ЗАДАЧА 3: Иконка лупы для мобильных (левый нижний угол) */
        .zoom-indicator {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: none; /* Скрыта по умолчанию (для ПК) */
            align-items: center;
            justify-content: center;
            color: #3b82f6;
            z-index: 5;
            backdrop-filter: blur(4px);
        }
        
         
        @media (hover: none) {
            .zoom-indicator {
                display: flex; /* Показываем лупу на миниатюре */
            }

        }      

