@import url('https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i&subset=latin-ext');

*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  background-color: #222222;
}

.content {
  margin: 0;
  padding: 0;
  
  position: absolute;
  top: 50%;
  left: 50%;
  
  color: white;
  font-size: 7vmin;
  text-align: center;
  text-transform: uppercase;

  transform: translate3d(-50%, -50%, 0);
}
@media screen and (max-width: 992px) {
    .content {
    	position: static;
    	top: 0;
    	left: 0;
    	transform: none;
    	overflow-y: scroll; 
    }
}
.content h1{
	display: inline-block;
	margin: -100px 0 0 0;
	line-height: 0;
	padding: 0;
	font-size: 0;
}
.content h1 a{
	display: inline-block;
	width: 451px;
	height: 103px;
	background-image: url(../img/logo.png);
	font-size: 0;
	line-height: 0;
	color: transparent;
}
.content .t{
	height: 41px;
	display: block;
	background-image: url(../img/shape_t.png);
	background-position: center;
	opacity: .05;
	margin-top: 30px;
}
.content .row.logos{
	padding: 30px 0;
	font-size: 0;
}
.content .row.logos .company{
	width: 14.15%;
	display: inline-block;
	padding: 0px 7.5px;
}
@media screen and (max-width: 1200px) {
    .content .row.logos .company{
    	padding: 7.5px;
    	width: auto;
    }
}
.content .row.logos .company .inner{
	background-color: rgba(255,255,255,.05);
	text-align: center;
	padding: 65px 0 55px;
	display: block;
	border-bottom: 5px solid transparent;
	transition: all .3s ease;
}
@media screen and (max-width: 1200px) {
    .content .row.logos .company .inner{
    	width: 150px;
    	height: 150px;
    }
}
.content .row.logos .company.g:hover .inner{
	border-bottom: 5px solid #1f7ab6;
	background-color: white;
}
.content .row.logos .company.ap:hover .inner{
	border-bottom: 5px solid #d24f00;
	background-color: white;
}
.content .row.logos .company.ad:hover .inner{
	border-bottom: 5px solid #848484;
	background-color: white;
}
.content .row.logos .company.w:hover .inner{
	border-bottom: 5px solid #8e44ad;
	background-color: white;
}
.content .row.logos .company.m:hover .inner{
	border-bottom: 5px solid #2b3d4f;
	background-color: white;
}
.content .row.logos .company.c:hover .inner{
	border-bottom: 5px solid #f6b400;
	background-color: white;
}
.content .row.logos .company.p:hover .inner{
	border-bottom: 5px solid #e22c34;
	background-color: white;
}
.content .b{
	height: 2px;
	display: block;
	background-image: url(../img/shape_b.png);
	background-position: center;
	opacity: .05;
	margin-top: 0px;
}
.content .row.contactrow{
	display: block;
	padding: 30px 15px;
	text-transform: none;
}
.content .row.contactrow .follow{
	display: inline-block;
	float: left;
	line-height: 20px;
	text-align: left;
}
.content .row.contactrow .follow p{
	font-size: 16px;
	color: #41b873;
	font-weight: 700;
	text-decoration: underline;
	margin-bottom: 0;
}
.content .row.contactrow .follow .facebook{
	width: 12px;
	height: 20px;
	background-image: url(../img/facebook_icon.png);
	display: inline-block;
	margin-top: -5px;
}
.content .row.contactrow .follow .instagram{
	width: 19px;
	height: 19px;
	background-image: url(../img/instagram_icon.png);
	display: inline-block;
}
.content .row.contactrow .contact{
	display: inline-block;
	float: right;
}
.content .row.contactrow .contact p{
	text-align: right;
	font-size: 14px;
	color: #777777;
	line-height: 20px;
}
.content .row.contactrow .contact p strong{
	font-size: 16px;
	color: #41b873;
	font-weight: 700;
	text-decoration: underline;
	line-height: 24px;
}


.wrap {
  height: 100%;  
  position: relative;
  overflow: hidden;
}
.bg {
    width: 100%;
    height: 100%;
    
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    
    background: url(../img/bg.jpg) no-repeat center center;
    background-size: cover;

    transform: scale(1.1);
  }