@font-face {
    font-family: 'Sansation-Bold';
    src: url('../fonts/Sansation_Bold.woff');
    font-weight: bold;
    font-style: normal; 
}

.wrapper, .container-fluid, .row, col { 
	height: 100vh; 
}
#domain-content-block { 
	position: absolute; 
	top: 0; 
	bottom: 0; 
	right: 0; 
	width: 100%; 
	height: 100%; 
	overflow: hidden; 
}
.logo { 
	background: #f7f7f7; 
}
.content { 
	background: #009EDB; 
	padding: 0 75px; 
}
.text-block h1 { 
	font-size: 85px; 
	font-family: 'Sansation-Bold'; 
	width: 100%; 
	display: inline-block; 
	overflow: hidden; 
	text-overflow: ellipsis; 
	white-space: nowrap; 
}
.text-block p { 
	font-size: 26px; 
	font-family: 'Sansation-Bold', serif; 
	font-style: italic; 
}

.btn { 
	padding: 10px 15px; 
	font-family: 'Sansation-Bold', sans-serif; 
	font-weight: 500; 
	color: #fff; 
	font-size: 14px; 
	z-index: 2; 
}
.btn-primary { 
	border-radius: 50px; 
	box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.08); 
	background: #0066B3; 
	border: 1px solid #005493; 
}
.btn-primary:hover, .btn-primary:active { 
	background-color: #005493 !important; 
	border-color: #005493 !important; 
}
.btn-text:hover { 
	color: #005493; 
}

@media screen and (max-width: 991px) { 
		
	.domain { line-height: 10px;}
	.content { padding: 25px; }	
	.text-block h1 { font-size: 35px; }
	.text-block p { font-size: 16px; }
	
}

/* fix iOS */
/* ipad */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
	.fullheight {
		height: 768px;
	}
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
	.fullheight {
		height: 1024px;
	}
}
/* iphone5 */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
	.fullheight {
		height: 320px;
	}
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
	.fullheight {
		height: 568px;
	}
}
/* iPhone 4 */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 2) {
	.fullheight {
		height: 320px;
	}
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 2) {
	.fullheight {
		height: 480px;
	}
}