* {
	box-sizing: border-box
}

body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	background-color: #F0F0F0;
}

/* header */
header {
	padding: 80px 4%;
	width: 100%;
	color: #c3c3c3;
	background-color: #e0e0e0;
}

.header-content {
	margin: 0 auto;
	max-width: 1280px;
}

.header-content h3 {
	margin: 0;
	margin-bottom: 30px;
	font-size: 32px;
	text-transform: capitalize;
}

.header-content p {
	margin: 0;
	max-width: 600px;
	font-size: 22px;
	line-height: 30px;
}

.header-cta {
	display: inline-block;
	margin-top: 50px;
	padding: 15px 30px;
	color: #e0e0e0;
	background-color: #c3c3c3;
	border-radius: 6px;
	user-select: none;
}

/* main content */
.main {
	margin: 0 auto;
	padding: 120px 4%;
	max-width: 1280px;
}

.layout-a {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 120px;
	width: 100%;
	max-width: 1280px;
}

.layout-a-item {
	padding: 20px 2.5%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	color: #c3c3c3;
}

.layout-a-thumbnail {
	margin-bottom: 20px;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	overflow: hidden;
}

.layout-a-thumbnail img {
	display: : block;
	width: 100%;
	height: auto;
}

.layout-a h3 {
	margin: 0;
	margin-bottom: 20px;
	font-size: 18px;
	text-transform: capitalize;
}

.layout-a p {
	margin: 0;
	font-size: 15px;
	line-height: 24px;
}

.layout-b {
	margin: 0 auto;
	margin-top: 120px;
	width: 100%;
	max-width: 1280px;
}

.layout-b-item {
	display: flex;
	align-items: center;
	margin-bottom: 120px;
}

.layout-b-item:nth-child(2) {
	flex-direction: row-reverse;
	margin-bottom: 0;
}

.layout-b-content {
	padding: 50px;
	width: 50%;
}

.layout-b-content h3 {
	margin: 0;
	margin-bottom: 20px;
	color: #c3c3c3;
	font-size: 22px;
	text-transform: capitalize;
}

.layout-b-content p {
	margin: 0;
	color: #c3c3c3;
	font-size: 16px;
	line-height: 26px;
}

.layout-b-media {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 300px;
	background-color: #e0e0e0;
}

/* feature */
.feature {
	padding: 80px 4%;
	width: 100%;
	color: #c3c3c3;
	background-color: #e0e0e0;
}

.feature-content {
	margin: 0 auto;
	text-align: center;
	max-width: 1280px;
}

.feature-content h3 { 
	font-size: 32px;
	text-transform: capitalize;
}

.feature-content p {
	margin: 0 auto;
	max-width: 800px;
	font-size: 22px;
	line-height: 30px;
}

.feature-cta {
	display: inline-block;
	margin-top: 50px;
	padding: 15px 30px;
	color: #e0e0e0;
	background-color: #c3c3c3;
	border-radius: 6px;
	user-select: none;
}

/* bottle ticker */
.ticker {
	position: relative;
}

/* annotations */
.ticker::after {
	content: '';
	/*display: flex;*/
	display: none;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 30px;
	height: 30px;
	color: white;
	font-size: 10px;
	font-weight: bold;
	border-radius: 100%;
	background-color: #006AFF;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.4);

}
.annotation-1::after {
	content: '1';
	bottom: -20px;
	left: 10px;
}
.annotation-2::after {
	content: '2';
	top: -20px;
	left: 10px;
}
.annotation-3::after {
	content: '3';
	top: -20px;
	left: 10px;
}
.annotation-4::after {
	content: '4';
	top: -20px;
	left: 10px;
}

/* responsive styles */
@media screen and (max-width: 768px) {
	.layout-a {
		flex-wrap: wrap;
	}
	.layout-b-item {
		flex-wrap: wrap;
	}
	.layout-b-media {
		width: 100%;
	}
	.layout-b-content {
		width: 100%;
	}
}
