* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
}
body {
	background: #086d72;
}

a {
	color: #07686d;
	text-decoration: none;
}

a:visited {
	color: #055458;
}

a:hover {
	color: #0a8289;
	text-decoration: underline;
}

a:active {
	color: #044247;
}

#flyout {
    position: absolute;
    background: white;
    left: -6vw;
    width: 8vw;
    padding: 12px;
    border-radius: 0 32px 32px 0;
    box-shadow: 5px 6px 12px rgba(0, 0, 0, 0.8);
    transition: left 0.5s ease;
}

#flyout:hover {
    transition: left 0.5s ease;
    left: -.5vw;
}
#flyout .icon {
    margin-right:50px;
    width:80%;
}
.container {
	background: #f5f5f5;
	max-width: 800px;
	margin: 60px auto;
	height: auto;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 5px 6px 12px rgba(0, 0, 0, 0.8)
}
.header {
	text-align: center;
}
.header h1 {
	margin-bottom: 10px;
}
.header h3 {
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
}
.img-area {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	margin: 25px auto;
	background-color: lightslategray;
	border: 11px solid #07686d;
}
.img-area img {
	width: 110%;
}
.main {
	display: flex;
	flex-wrap: wrap;
}
.main h3 {
	margin: 24px 0 8px;
}
h2 {
	background: #07686d;
	padding: 15px;
	color: #fff;
	margin: 30px 0;
	font-size: 20px;
	border-radius: 0 50px 50px 0;
}
.left ul li,
.right ul li {
	list-style-type: square;
	margin-left: 16px;
}
.full {
	flex: 1;
	padding: 30px;
}
.left {
	flex: 1;
	padding: 30px;
}
.left p {
	line-height: 2;
}
.left ul li {
	line-height: 2;
}
.right {
	flex: 1;
	padding: 30px;
}
.right h3 {
	margin-bottom: 15px;
}
.right p {
	line-height: 2.9;
}
.right ul li {
	line-height: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.container {
		width: 95%;
		height: auto;
	}
	h2 {
		font-size: 18px;
	}
}
@media screen and (max-width: 600px) {
	.main {
		flex-direction: column;
	}
	.left, .right {
		flex: none;
		width: 100%;
	}
	.container {
		width: 95%;
		height: auto;
	}
	h2 {
		font-size: 15px;
	}
}
