@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');


* {
	box-sizing:border-box;	
}

.mobile-only {
	display:none!important;	
}

body, html {
	margin:0;
	padding:0;
	height:100%;
}

html {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  -webkit-text-size-adjust: none;
  font-weight:300;
}

body {
	background:#011844;
	color:#fff;
}

body p {
	letter-spacing: 0.7px;
	line-height: 22px;
}

.container {
	width:92%;
	max-width:1180px;
	margin:auto;
	position:relative;
	height:100%;
	
}

.homepage {
	display:flex;
	width:100%;
	/*padding:30px 0;*/
	position:absolute;
	top:50%;
	transform:translateY(-50%);
}

.homepage > .section {
	width:33.333%;
	align-self: center;
}
.homepage > .section:first-child {
	padding-right:50px;	
}
.homepage > .section:nth-child(2) {
	width:66.666%	
}



.homepage > .section .logo {
	margin-bottom:40px;	
}

.homepage > .section .logo img {
	max-width:230px;
	height:auto;	
}

.homepage .some {
	display:flex;
	position:absolute;
	bottom:75px;

}
.homepage .some a {
	width:36px;
	height:36px;
	border-radius:50%;
	text-align:center;
	line-height:36px;
	font-size:21px;
	color:#fff;
	text-decoration:none;
	background: #DDBB96;
	margin-right:10px;
	transition:ease-in-out all 0.2s;
}

.homepage .some a:last-child {
	margin-right:0;	
}

.homepage .some a:hover {
	transform:scale(1.1,1.1)	
}

.homepage .mobile-only .some {
	position: static;
	justify-content: center;
	margin:30px 0 30px 0;
}



.products {
	display:flex;
	flex-wrap:wrap;
}

.products > a {
	width:50%;
	display:block;
	padding:20px;
	text-decoration:none;
	color:#fff;
}

.products > a .image {
	width:100%;
	font-size:0;
	overflow:hidden;
}

.products > a .image img {
	width:100%;
	height:auto;
	transition:ease-in-out all 0.2s;	
}

.products > a:hover .image img {
	transform:scale(1.05,1.05);
}

.products > a .title {
	font-size:20px;
	font-weight:bold;
	padding-top:10px;
	white-space:nowrap;
}

.products > a .title i {
	font-size:16px;
	margin-left:10px;	
}

.products > a p.description {
	margin:3px 0 0 0;
}


@media screen and (min-width: 981px) and (max-height: 750px) { 
	.products > a .image {
		max-height:170px;
	}
}

@media screen and (max-width: 980px) {
	
	.desktop-only {
		display:none!important;	
	}
	.mobile-only {
		display:block!important;	
	}
	body p {
		line-height:20px;	
	}
	.homepage {
		display:block;
		position:relative;
		top:0;
		transform:none;	
		padding:30px 0;
	}
	.homepage > .section {
		width:100%!important;	
		padding-right:0!important;
	}
	
	.homepage > .section:first-child {
		padding:0 20px 20px 20px!important;	
	}
	
	.homepage > .section .logo {
		text-align:center;	
	}
}
@media screen and (max-width: 600px) {
	.products > a {
		padding:10px 10px 30px 10px;
		width:100%;	
	}
	.homepage > .section:first-child {
		padding:0 10px 20px 10px!important;		
	}
}

@media screen and (max-width: 440px) {
	.products > a .title {
		font-size:17px;
	}
}


