.kv {
    position: relative;
	height: calc(100vh - 100px);
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
.kv video {
	position: absolute;
	z-index: 0;
	top: 0;
	width: auto;
	height: 100%;
}

.kv .screen {
	background-color: rgba(0,0,0,0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACCAYAAAB/qH1jAAAAF0lEQVQYV2NkYGBogGIGEGAEkxAAlgAAH1UCAxI0vTkAAAAASUVORK5CYII=);
    background-repeat: repeat;
	background-size: 4px 3px;
    position: absolute;
	z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}
.kv .texts {
	z-index: 2;
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	font-weight: 500;
	color: #fff;
	padding: 0 15px;
}
.kv .texts .future {
	font-size: 48px;
	text-shadow: 0 0 7px rgba(0,0,0,0.4);
	margin-bottom: 25px;
}
.kv .texts .leads {
	font-size: 22px;
	text-shadow: 0 0 7px rgba(0,0,0,0.4);
	text-align: center;
	margin-bottom: 45px;
	opacity: 0;
}
.kv .texts a {
    font-size: 18px;
	font-weight: 400;
    text-align: center;
    color: #fff;
    line-height: 46px;
    display: block;
	width: 200px;
	height: 50px;
	border: 2px solid #fff;
	background-color: rgba(255,255,255,0.3);
	border-radius: 200em;
	opacity: 0;
}
.kv .texts .leads.transition {
	transition: opacity 3s 0.6s;
}
.kv .texts a.transition {
	transition: opacity 3s 1.2s, background-color .3s;
}
.kv .texts a:hover {
	background-color: #fff;
	color: #414141;
}
.kv .texts .leads.on,
.kv .texts a.on {
	opacity: 1;
}

.ityped-cursor {
    font-size: 2.2rem;
    opacity: 1;
    -webkit-animation: blink 0.3s infinite;
    -moz-animation: blink 0.3s infinite;
    animation: blink 0.3s infinite;
    animation-direction: alternate;
}
.box-gray.box-message {
    margin-bottom: 250px;
	padding:  60px 60px 60px 120px;
}
.box-gray.box-message:before {
	content: "";
	display: block;
	width: calc( (100% - 1280px)/2 );
	min-width: 60px;
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 0;
}
.box-gray.box-message p {
	width: 40%;
    margin-bottom: 50px;
}
.box-gray.box-message .inner {
    padding: 0 60px;
}
.box-gray .img-message {
    position: absolute;
    bottom: -70px;
    left: 48%;
    width: 56%;
	max-width: 756px;
}

.box-gray.box-about {
	margin-bottom: 250px;
    padding: 60px 60px 60px 60px;
}
.box-gray.box-about .inner {
	width: auto;
	margin-left: 60%;
}
.box-gray.box-about p {
    width: auto;
	margin-bottom: 50px;
}
.box-gray .img-about {
    position: absolute;
    top: 28%;
    left: -2%;
    width: 56%;
}

.box-gray.box-interview {
    margin-bottom: 0;
	padding: 60px;
}
.box-gray.box-interview h1 {
	margin: 0 0 15px;
}
.box-gray.box-interview h2 {
	margin-bottom: 0;
}
.box-gray.box-gray-left.box-interview .underconstruction {
    color: #fff;
    background-color: #435f6d;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 40px;
    margin-top: 65px;
}
.box-gray.box-gray-left.box-interview .underconstruction small {
    display: block;
    margin-top: 15px;
    font-size: 18px;
}

@media screen and (max-width:767px){
    .box-gray.box-gray-left.box-interview .underconstruction {
        font-size: 18px;
        padding: 15px;
        margin-top: 25px;
    }
    .box-gray.box-gray-left.box-interview .underconstruction small {
        margin-top: 15px;
        font-size: 15px;
    }
}


.box-products {
    margin-bottom: 200px;
}
.box-products p {
    margin-bottom: 30px;
}

.footer-news {
	display: none;
}

@keyframes blink {
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes blink {
    100% {
        opacity: 0;
    }
}

@-moz-keyframes blink {
    100% {
        opacity: 0;
    }
}

@media screen and (max-width:767px){
	.kv {
		height: calc(100vh - 60px);
	}
	.kv video {
		top: 0;
		left: calc( ( 100vw - (100vh * 16 / 9) ) / 2 );
		width: auto;
		height: 100%;
	}
	.kv .texts .future {
		font-size: 27px;
		margin-bottom: 25px;
	}
	.kv .texts .leads {
		font-size: 16px;
		margin-bottom: 45px;
	}
	
	
	
	.box-gray p {
		width: auto;
		margin-bottom: 25px;
	}
	.box-gray.box-message {
		margin-bottom: 100px;
		padding: 20px;
	}
	.box-gray.box-message:before {
		content: "";
		width: 20px;
		min-width: 20px;
	}
	.box-gray.box-message p {
		width: auto;
		margin-bottom: 30px;
	}
	.box-gray.box-message .inner {
		padding: 0 5px;
		margin-bottom: 0;
	}
	.box-gray .img-message {
		position: relative;
		top: 40px;
		bottom: auto;
		left: 40px;
		width: 100%;
	}

	.box-gray.box-about {
		margin-bottom: 100px;
		padding: 20px 30px;
	}
	.box-gray.box-about .inner {
		width: auto;
		margin-left: 0;
	}
	.box-gray.box-about p {
		margin-bottom: 30px;
	}
	.box-gray .img-about {
		position: relative;
		top: 40px;
		left: -30px;
		width: calc( 100% + 30px );
		max-width: initial;
	}

	.box-gray.box-interview {
		margin-bottom: 0;
		padding: 20px 40px;
	}
	.box-gray.box-interview h1 {
		margin: 0 0 15px;
	}
	.box-gray.box-interview h2 {
		margin-bottom: 0;
	}


	.box-products {
		margin-bottom: 100px;
	}
	.box-products p {
		margin-bottom: 15px;
	}

}
