/* 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;
}
.photo {
	position: absolute;
	top: 20px;
	left: 15px;
	width: 123px;
	height: 140px;
	border-radius: 3px 3px 0px 0px;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.35);
	transform: translateX(-150px);
}
#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;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #A8D16C 0%, #00BCF2 100%);
	background-size: 200% 100%;
	background-position: 50% 0%;
}
#text_container {
	position: absolute;
	top: 20px;
	right: 0;
	width: 140px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 18px;
	line-height: 1.3em;
}
.text {
	position: absolute;
	width: 100%;
	transform: translateX(150px);
}
#cta_container {
	position: absolute;
	bottom: 84px;
	right: 25px;
	width: 112px;
	height: 36px;
	transform: translateX(150px);
}
#cta_btn {
	width: 100%;
	height: 100%;
	color: #0D3B62;
	font-size: 10px;
	line-height: 36px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	border-radius: 18px;
	background: #A7D16C;
	transition: .3s;
}
#container:hover #cta_btn {
	background: #FFF;
}
#footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #08243D;
	transform: scaleY(0);
	transform-origin: bottom center;
}
#footer_gradient {
	position: absolute;
	top: -4px;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #A8D16C 0%, #00BCF2 100%);
	background-size: 200% 100%;
	animation: gradient 3s ease 5;
}
@keyframes gradient {
	0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 100% 0%;
	}
	100% {
		background-position: 0% 0%;
	}
}
#logo {
	width: 82px;
	transform: scale(0);
}
