@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
	font-display: swap;
  src: url('/fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
	   url('/fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('/fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
	   url('/fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
	   url('/fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('/fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
	font-display: swap;
  src: url('/fonts/roboto-v30-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
	   url('/fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('/fonts/roboto-v30-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
	   url('/fonts/roboto-v30-latin-500.woff') format('woff'), /* Modern Browsers */
	   url('/fonts/roboto-v30-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('/fonts/roboto-v30-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}

body {
	background-color: #b9e6fe;
	padding: 0;
	margin: 0;
}

.header-wrapper {
	background: url('background.jpg') no-repeat center center;
	background-size: cover;
	width: 100%;
	margin-bottom: 30px;
	border-bottom: 1px solid #015a89;
}

.header {
	margin: 0 auto;
	width: 300px;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 20px 0;
}

.header img {
	display: block;
	width: 650px;
	@media screen and (max-width: 700px) {
		width: 400px;
	}
	@media screen and (max-width: 500px) {
		width: 300px;
	}
	height: auto;
	margin-bottom: 40px;
}
a.button {
	display: block;
	background: #015a89;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 10px 20px;
}
a.button:hover {
	background: #b9e6fe;
	color: #005a89;
}

.container {
	width: calc(100% - 40px);
	max-width: 1040px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
	justify-content: center;
}

a {
	text-decoration: none;
}

.socials {
	margin-bottom: 20px;
}

.fab {
	color: #005a89;
	font-size: 30px;
	margin: 0 5px;
}
a:hover .fab {
	color: #b9e6fe;
}

.insta-item {
	display: block;
	background: #005a89;
	position: relative;
	width: 250px;
	height: 300px;
	border: 1px solid #005a89;
	overflow: hidden;
}

.product-img {
	position: absolute;
	top: 0;
	left: 0;
}
.product-img img {
	width: 250px;
	height: auto;	
}
.insta-item .label {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 20px;
	background: #005a89;
	color: #fff;
	width: 250px;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 10px 20px;
	box-sizing: border-box;
	text-align: center;
}
.insta-item .overlay {
	display: none;
	position: absolute;	
	width: 250px;
	height: 300px;
	background: rgba(255,255,255,0.3);
}

.insta-item:hover .overlay {
	display: block;
}

@media screen and (max-width: 539px) {
	.insta-item {
		width: 300px;
	}
	.product-img img {
		width: 300px;
	}
	.insta-item .label {
		width: 300px;
	}
	.insta-item .overlay {
		width: 300px;
	}
}
