html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, textarea, input, select,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  	margin: 0;
  	padding: 0;
  	border: 0;
  	font: inherit;
  	vertical-align: baseline;
}

body{
	font-family: 'Droid Sans', sans-serif;
	font-size: 16px;
	color: #9f9f9f;
	background-color: #f3f3f3;
}

.clear {
	clear: both;
}

a {
	color: #9f9f9f;
}

p {
	margin-bottom: 8px;
}

strong {
	font-weight: 700;
}

h2 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #818181;
	text-transform:  uppercase;
}

h3 {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight:  700;
}

h4 {
	font-size: 11px;
}

hr {
	margin:  30px;
	border:  0px;
	border-bottom:  1px solid #e1e1e1;
}

.spacer {
	height:  120px;
	line-height:  120px;
	display:  block;
	width:  100%;
	clear: both;
}

header {
	background-color: #FFFFFF;
	box-shadow: 0px 0px 8px rgba(0,0,0,0.7);
	padding: 60px 0 30px;
}

header .wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
}

header .logo {
	text-decoration: none;
	float: left;
}

header .logo h1 {
	margin: 5px 0px 10px 0px;
	line-height: 51px;
    font-family: Helvetica, arial, sans-serif;
    font-size: 60px;
}

header .logo h1 span {
	padding: 7px 5px;
}

/*  #0066FF*/
header .logo h1 span.grey {
	color: #999;
	background-color: #0066FF;
	padding-right: 0px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

header .logo h1 span.blue {
	color: #0066FF;
	background-color: #999;
	padding-left: 0px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

header .contacts {
	float: right;
	text-align:  right;
}

header .contacts a {
	font-size: 18px;
	line-height:  30px;
	display:  block;
	text-decoration: none;
	color: #9f9f9f;
	transition:  color 0.5s ease-in-out;
}

header .contacts a:hover {
	color:  #0066FF;
}

.image-header {
	height:  50vh;
	background: #000000;
	position:  relative;
	overflow:  hidden;
}

.image-header img {
	width:  100%;
	height:  100%;
	display:  block;
	object-fit:  cover;
	object-position:  center center;
	opacity:  0.3;
	animation: objectMove 40s infinite;
}

.image-header.op img {
	animation: objectMoveOp 40s infinite;
}

@keyframes objectMove {
  0% {
    transform-origin: bottom left;
    transform: scale(1.0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
  	transform: scale(1.0);
  }
}

@keyframes objectMoveOp {
  0% {
    transform-origin: bottom right;
    transform: scale(1.0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
  	transform: scale(1.0);
  }
}

.image-header .overlay {
	position:  absolute;
	display:  flex;
	flex-wrap: wrap;
	align-items:  center;
	left:  5%;
	right:  5%;
	bottom:  0px;
	top:  0px;
}

.image-header h2 {
	font-size: 48px;
	color:  #FFFFFF;
	margin:  0;
	text-align:  center;
	opacity:  0;
	width:  100%;
}

.image-header h2.delay-load.loaded, .image-header h2.delay-scroll.loaded {
	opacity:  1;
	transition:  opacity 1.5s ease-in-out;
}

.ico-scroll {
	opacity:  0;
	transform:  translateX(-25%);
}

.ico-scroll.r {
	transform:  translateX(25%);
}

.ico-scroll.loaded {
	opacity:  1;
	transition:  opacity 1.5s ease-in-out, transform .5s ease-in-out;
	transform:  translateX(0);
}

.container {
	max-width:  1000px;
	margin:  0 auto;
	padding:  0 20px;
}

.container:after {
	content:  '';
	height:  0px;
	line-height:  0px;
	clear:  both;
	display:  block;
}

.g-33 {
	width:  33.3333%;
	float:  left;
}

.g-4 {
	width:  40%;
	float:  left;
}

.g-4.f-right {
	float:  right;
}

.g-6 {
	width:  60%;
	float:  left;
}

.g_12 {
	width:  100%;
}

.section {
	padding:  120px 0;
}

.ico {
	text-align:  center;
}

.ico i {
	--fa-primary-color: #0066FF; 
	--fa-secondary-color: #999;
	font-size:  100px;
}

.m-pad i {
	border:  20px solid #FFFFFF;
	background:  #FFFFFF;
	border-radius:  8px;
	transform:
    	perspective(800px)
    	rotateY(25deg) 
    	rotateX(10deg)
    	scale(0.9);
    box-shadow: 0px 20px 50px #999999;
    transition: 0.6s ease all;
}

.m-pad.r i {
	transform:
    	perspective(800px)
    	rotateY(-25deg) 
    	rotateX(10deg)
    	scale(0.9);
}

.m-pad i:hover {
	transform:
      perspective(800px)
      rotateY(0deg)
      translateY(0px)
      rotateX(0deg)
      scale(1);
}

.tech {
	padding:  30px 15px;
}

.tech span {
	display:  inline-block;
	background: #FFFFFF;
	width:  150px;
	height:  150px;
	line-height:  150px;
	border-radius: 75px;
	text-align:  center;
	margin-bottom:  30px;

    box-shadow: 0px 10px 20px #999999;
}

.tech span i {
	font-size:  80px;
	line-height:  inherit;
}

.tech h3 {
	color: #0066ff;
	position:  relative;
	margin-bottom:  30px;
}

.tech h3:after {
	content:  '';
	display:  block;
	border-bottom:  2px solid #d6d6d6;
	left:  50%;
	bottom:  -10px;
	width:  100px;
	position:  absolute;
	transform: translate(-50%);
}

.logos img {
	width:  200px;
	height:  auto;
	cursor:  pointer;
}

.logos img.active {
	filter: hue-rotate(90deg) brightness(50%) grayscale(10%);
}

.descriptions {
	margin-top:  60px;
}

.descriptions > div {
	background:  #FFFFFF;
	padding:  30px 20px;
	display:  none;
}

.descriptions > div:last-child {
	display:  block;
}

.descriptions a {
	margin-top:  15px;
	display:  inline-block;
	color:  #0066FF;
}

#contact-holder {
	width: 50%;
	box-sizing: border-box;
	padding-right: 40px;
	float: left;
}
#payment-holder {
	width: 50%;
	box-sizing: border-box;
	padding-left: 40px;
	float: left;
}

input, select, textarea { 
	margin: 0; 
	border: none; 
	color: #999; 
	padding: 10px;
	border-radius: 2px;
	background-color: #E0E0E0;
}


input[type=submit] {
	float: right;
	margin: 5px 0px;
	padding: 10px 20px;
	background-color: #506A91;
	color: #FFFFFF;
	font-size: 18px;
	margin-top: 10px;
}

input[type=text], input[type=email], input[type=phone]{
	width: 100%;
	width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box; 
}

#contact textarea {
	width: 100%;
	height: 120px;
	width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box; 
}

#contact-holder .sm {
	font-size: 10px;
}

label {
	padding: 8px 0px;
	display: block;
}

footer {
	background-color: #818181;
	margin-top: 120px;
	color: #FFFFFF;
	padding: 60px 0;
}

footer a {
	color: #FFFFFF;
}

footer h2 {
	color: #FFFFFF;
}

@media screen and (max-width: 880px) {
	

}

@media screen and (max-width: 600px) {

	header {
		text-align: center;
	}

	header .logo{
		display: inline-block;
		float: none;
	}

	header .contacts {
		margin-top: 30px;
		display: block;
		text-align: center;
		width: 100%;
	}

	.image-header {
		height:  40vh;
	}

	.image-header h2 {
		font-size: 30px;
	}

	h2 {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.spacer {
		height:  60px;
		line-height:  60px;
	}

	.section {
		padding:  60px 0;
	}

	.g-6 {
		width:  100%;
		float:  none;
	}

	.g-4 {
		width:  100%;
		float:  none;
	}

	.g-33 {
		width:  100%;
		float:  none;
	}

	.no-mobile {
		display:  none;
	}

	.mobile-left {
		text-align:  left;
	}
	.m-pad {
		margin-bottom:  60px;
	}


	#contact-holder, #payment-holder {
		width: 90%;
		margin: 0 auto;
		float: none;
		padding: 0;
		margin-bottom: 80px;

	}

	

}

@media screen and (max-width: 400px) {

	
}