/* ubuntu-regular - latin_cyrillic */
/*@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/ubuntu/ubuntu-v14-latin_cyrillic-regular.eot');
  src: url('../fonts/ubuntu/ubuntu-v14-latin_cyrillic-regular.eot?#iefix') format('embedded-opentype'),
	   url('../fonts/ubuntu/ubuntu-v14-latin_cyrillic-regular.woff2') format('woff2'),
	   url('../fonts/ubuntu/ubuntu-v14-latin_cyrillic-regular.woff') format('woff'),
	   url('../fonts/ubuntu/ubuntu-v14-latin_cyrillic-regular.ttf') format('truetype'),
	   url('../fonts/ubuntu/ubuntu-v14-latin_cyrillic-regular.svg#Ubuntu') format('svg');
}*/

noscript div {
	height: 100vh;
	width: 100%;
	position: fixed;
	z-index: 9999;
	background-color: #fff;
	text-align: center;
}
noscript div span{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.wrapper{
	position: relative;
	min-width: 320px;
	overflow: hidden;
	width: 100%;
	min-height: 100vh;
	font-family: 'Ubuntu', sans-serif;
	font-size: 16px;
	color: #717171;
	background-color: #fff;
}
.wrapper.noCursor{
	cursor: none;
	background-color: #242323;
}
.anim {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
img,
iframe{
	max-width: 100%;
}
a, .btn.btn-primary, button, svg path{
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	outline: none;
	white-space: normal;
}
.noCursor a,.noCursor .btn.btn-primary,.noCursor button,.noCursor svg path{
	cursor: none;
}
textarea,
input[type=text],
input[type=password] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}
*:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus{
	outline: 0!important;
	outline-offset: 0!important;
}

.display-table{
	display: table;
	width: 100%;
}
.display-table > *{
	display: table-cell;
	vertical-align: middle;
}
.child-inline-block > *{
	display: inline-block;
	vertical-align: middle;
}
.inline-block{
	float: none;
	margin: 0 -2px;
	display: inline-block;
	vertical-align: top;
}
.blackout{
	position: relative;
}
.blackout > *{
	z-index: 2;
}
.blackout:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(243,202,54,0);
	z-index: 1;
	transition: all .5s;
}
.blackout:hover:before,
.blackout:focus:before{
	background-color: rgba(243,202,54,0.7)
}
header ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

button{
	margin: 100px;
}

.tilt-test{
	width: 200px;
	height: 200px;
	background-color: blue;
	margin: 100px auto;
	position: relative;
	transform-style: preserve-3d;
}
.tilt-test .tilt-inner {
	-webkit-transform: translateZ(50px) translateY(-50%) translateX(-50%);
	transform: translateZ(50px) translateY(-50%) translateX(-50%);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	background-color: transparent;
	box-shadow: 0 0 50px 0 rgb(51 51 51 / 30%);
}
.yellow{
	color: #f5f242;
	fill: #f5f242;
	stroke: #f5f242;
}
.orange{
	color: #f59642;
	fill: #f59642;
	stroke: #f59642;
}






.btn{
	margin: 20px auto;
	border: none;
	padding: 10px 44px;
	font-size: 36px;
	position: relative;
}
.btn:before{
	transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	content: '';
	width: 50%;
	height: 100%;
	background: black;
	position: absolute;
	top: 0;
	left: 0;
}

.btn .btn-text{
	color: white;
	mix-blend-mode: difference;
}
.btn:hover:before{
	background: black;
	width: 100%;
}

.btn.rounded{
	border-radius:50px;
}
.btn.rounded .text-green{
	color:#00F0B5;
	mix-blend-mode: difference;
}
		
.btn.rounded:before{
	border-radius: 50px;
	width: 25%;
	background: #00F0B5;
}
.btn.rounded:hover:before{
	background: #00F0B5;
	width: 100%;
}
.open-menu{
	overflow-y: hidden;
}
.overlay{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.7);
	opacity: 0;
	transition: all .5s;
	z-index: -1;
}
.open-menu .overlay{
	opacity: 1;
	z-index: 10;
}
header{
	position: fixed;
	top: 0;
	bottom: 0;
	width: 250px;
	left: 0;
	background-color: lightsteelblue;
	padding: 30px 10px 30px 30px;
	z-index: 99;
	transform: translateX(-200px);
	transition: all .5s;
}
.open-menu header{
	transform: translateX(0px);
}
main{
	transition: all .5s;
}
.open-menu main{
	transform: scale(0.869) translateX(144px);
}
header:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 50px;
	width: 1px;
	background-color: rgba(0,0,0,0.1);
}
header ul li{
	margin-bottom: 20px;
}
header ul li a{
	display: inline-block;
	width: 100%;
}
header ul li a:hover{
	padding-left: 20px;
	text-decoration: none;
}
header ul li span{
	vertical-align: middle;
	color: #fff;
	font-size: 18px;
	letter-spacing: 5px;
}
header .navigate{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	float: right;
	display: flex;
	justify-content: center;
	align-items: center;
}
header .navigate svg{
	width: 20px;
}
.navigate.nav-1{
	background-color: red;
}
.navigate.nav-2{
	background-color: blue;
}
.navigate.nav-3{
	background-color: #00F0B5;
}
.navigate.nav-4{
	background-color: green;
}
.navigate.nav-5{
	background-color: gray;
}
.burger-wrap{
	margin-bottom: 20px;
}
.burger{
	margin-left: auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #000;
	position: relative;
	cursor: pointer;
}
.burger span{
	display: inline-block;
	width: 20px;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	transition: all .5s;
}
.burger span:first-child{
	top: 35%;
}
.burger span:last-child{
	top: 65%;
}
.open-menu .burger span{
	opacity: 0;
	top: 13px;
	left: 5px;
}
.open-menu .burger span:first-child{
	opacity: 1;
	transform: rotate(45deg);
}
.open-menu .burger span:last-child{
	opacity: 1;
	transform: rotate(-45deg);
}

.logo-clock{
	margin: 50px auto;
	text-align: center;
}







.logo-clock{
	position: relative;
}
.logo-clock svg{
	position: relative;
	z-index: 20;
}
.clock-arrows{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: rotate(180deg);
}

.clock-arrows .hour,
.clock-arrows .min,
.clock-arrows .sec{
    position: absolute;
}

.hr:before{
    content: '';
    position: absolute;
    width: 6px;
    height: 38px;
    background-color: #000;
    z-index: 10;
    border-radius: 6px;
    transform: translateX(-3px);
}
.mn:before{
    content: '';
    position: absolute;
    width: 4px;
    height: 44px;
    background-color: #000;
    z-index: 11;
    border-radius: 6px;
    transform: translateX(-1px);
}
.sc:before{
    content: '';
    position: absolute;
    width: 2px;
    height: 100px;
    background-color: red;
    z-index: 12;
    border-radius: 6px;
    transform: translate(-1px, -20px);
}


.custom-menu{
	text-align: center;
	padding: 200px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.custom-menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	display: inline-block;
	transition: all .5s;
	margin: 100px auto;
	right: 50%;
	transform: rotate(0);
}
.custom-menu ul li{
	display: block;
}
.custom-menu ul li a{
	font-size: 200px;
	letter-spacing: 10px;
	color: #fff;
	opacity: .3;
	white-space: nowrap;
}
.custom-menu ul li a:hover,
.custom-menu ul li a:focus{
	text-decoration: none;
}
.custom-menu .extremes-div.active a{
	opacity: 1;
}
.custom-menu ul li > img{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 100%;
	opacity: 0;
	transition: opacity 3s;
}
.custom-menu .extremes-div.active > img{
	opacity: 1;
}
.cursor {
	position: absolute;
	width: 60px;
	height: 60px;
	top: -50%;
	left: -50%;
	transform: translate(-50%,-50%);
	border-radius: 50%;
	background-color: #fff;
	backface-visibility: hidden;
	transition: width .3s,height .3s;
	mix-blend-mode: difference;
	z-index: 1000;
	pointer-events: none;
}

.dev_tools_block{
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dev_block{
	width: 260px;
    height: 200px;
    display: inline-block;
    transform: rotate3d(-56, -327, 6, 67deg);
    margin: 0 -105px;
    position: relative;
	transition: transform .3s, top .3s, padding .3s;
	cursor: pointer;
}
.dev_block:hover{
	transform: rotate3d(-56, -327, 6, 67deg) translateX(50px);
}
.dev_block.active,
.dev_block.active:hover{
	transform: rotate3d(0, 0, 0, 0deg) translateX(200px);
	top: 100px!important;
	z-index: 999!important;
}
.dev_block.active > div,
.dev_block.active:hover > div{
	padding: 13px;
	border-width: 0px;
}
.dev_block.opened:after,
.dev_block.opened:before{
	opacity: 0;
}
.dev_block:before,
.dev_block:after{
	content: "";
	position: absolute;
	width: 20px;
    height: 70px;
    background-color: #fff;
	transform: rotate(72deg);
}
.dev_block:before{
	top: -34px;
    left: 4px;
}
.dev_block:after{
	bottom: -34px;
    right: -4px;
}
.dev_block > div{
	width: 100%;
    height: 100%;
    border-top: 13px solid;
    border-right: 34px solid;
	color: #fff;
}
.dev_block.text-black > div{
	color: #000;
}
.dev_block .dev_tool_name{
	padding: 0 30px;
	float: right;
	font-size: 20px;
}
.dev_block.active .dev_tool_name{
	float: none;
	padding: 0;
}
.dev_block .dev_tool_description{
	font-size: 14px;
	opacity: 0;
	visibility: hidden;
	max-height: 144px;
    overflow: hidden;
	transition: all .3s;
}
.dev_block.active .dev_tool_description{
	opacity: 1;
	visibility: visible;
}

.dev_block.block_index-1{z-index: 1;top: 0;}
.dev_block.block_index-2{z-index: 2;top: 10px;}
.dev_block.block_index-3{z-index: 3;top: 20px;}
.dev_block.block_index-4{z-index: 4;top: 30px;}
.dev_block.block_index-5{z-index: 5;top: 40px;}
.dev_block.block_index-6{z-index: 6;}
.dev_block.block_index-7{z-index: 7;}
.dev_block.block_index-8{z-index: 8;}
.dev_block.block_index-9{z-index: 9;}
.dev_block.block_index-10{z-index: 10;}
.dev_block.block_index-11{z-index: 11;}
.dev_block.block_index-12{z-index: 12;}
.dev_block.block_index-13{z-index: 13;}
.dev_block.block_index-14{z-index: 14;}
.dev_block.block_index-15{z-index: 15;}
.dev_block.block_index-16{z-index: 16;}
.dev_block.block_index-17{z-index: 17;}
.dev_block.block_index-18{z-index: 18;}
.dev_block.block_index-19{z-index: 19;}
.dev_block.block_index-20{z-index: 20;}