/* CSS Document */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	color: #fff;
	text-decoration: none;
}
/*GLOBAL STYLES*/
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #fff;
	-webkit-font-smoothing: antialiased;
}
#container {
	position: relative;
	width: 100%;
	height: 100%;
	background: #0D3B62;
	border: 1px solid #0D3B62;
	overflow: hidden;
}
#blue_box {
	position: absolute;
	top: 0;
	left: 0;
	width: 265px;
	height: 100%;
	background-color: #08243D;
	border-right: 1px solid rgba(0, 188, 242, 0.5);
	transform: scaleX(0);
	transform-origin: center left;
}
.photo {
	position: absolute;
	top: 15px;
	left: 190px;
	width: 128px;
	height: 58px;
	border-radius: 3px 0px 0px 3px;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.35);
	transform: translateY(90px);
}
#photo_1 {
	background: url('images/photo_1.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}
#photo_2 {
	background: url('images/photo_2.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}
.photo_gradient {
	position: absolute;
	top: 0;
	right: -4px;
	width: 4px;
	height: 100%;
	background: linear-gradient(0deg, #A8D16C 0%, #00BCF2 100%);
	background-size: 100% 200%;
	background-position: 0% 50%;
}
#text_container {
	position: absolute;
	top: 0;
	left: 340px;
	width: 280px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 18px;
	line-height: 1.5em;
}
.text {
	position: absolute;
	width: 100%;
	transform: translateY(90px);
}
#cta_container {
	position: absolute;
	top: 30px;
	right: 20px;
	width: 98px;
	height: 30px;
	transform: translateY(90px);
}
#cta_btn {
	width: 100%;
	height: 100%;
	color: #0D3B62;
	font-size: 10px;
	line-height: 30px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	border-radius: 15px;
	background: #A7D16C;
	transition: .3s;
}
#container:hover #cta_btn {
	background: #FFF;
}
#logo {
	position: absolute;
	top: 25px;
	left: 40px;
	width: 110px;
	transform: scale(0);
}
