/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

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;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
/* My Style */
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family: montserrat, "Open Sans", Sans-serif;
}
body{
	min-height:100vh;
	background:linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url(images/contact-img2.jpg) no-repeat center;
	background-size:cover;
	display:flex;
	align-items: center;
	justify-content: center;
}
.main-nav{
	position:fixed;
	height:80px;
	overflow:hidden;
	top:0;
	display: flex;
	align-items: center;
	background:#111e27;
	width:100%;
	z-index:3
}
.nav-logo{
	background:url(images/Logo3.png) no-repeat;
	background-size:contain;
	width:112px;
	height:71px;
	float:left;
	margin-left:50px;
}
.main-nav .btn{
	display:none;
	position:absolute;
	right:20px;
}
.main-nav .btn span{
	display:block;
	margin:6px;
	width:40px;
	height:3px;
	background:#fff;
}
.main-nav .btn:hover > span{
	background:#6ab04c;
}
.nav-links{
	position:absolute;
	right:50px;
}
.nav-links a{
	color:#fff;
	text-decoration:none;
	font-weight:700;
	margin-left:20px;
	transition:color 0.3s;
	text-transform:uppercase;
	font-size:18px;
	cursor:pointer;
}
.nav-links a:hover{
	color:#6ab04c;
}
.content-wrapper{
	width:100%;
	height:100%;
	margin-top:80px;
	z-index:2;
}
.contact-page{
	width:100%;
	padding:50px;
	display:flex;
	overflow-x: hidden;
	align-items: flex-start;
	justify-content:center;
	flex-wrap:wrap;
	position:relative;
}
h2{
	width:100%;
	margin-bottom:20px;
	text-transform:uppercase;
	color:#fff;
	font-size:60px;
}
.contact-info, .contact-form{
	flex:1;
}
.item{
	margin-bottom:24px;
	font-size:16px;
	color:#fff;
}
.icon{
	width:60px;
	height:60px;
	line-height:60px;
	background-color:#3494db;
	text-align:center;
	color:#fff;
	border-radius:50%;
	margin-right:16px;
}
.contact-form{
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
.textb{
	width: calc(50% -16px);
	height:50px;
	padding:12px;
	background-color:#fff;
	border:none;
	color:#000;
	margin-bottom:20px;
}
textarea{
	width: 100%;
	min-height:200px;
	max-height:400px;
	resize:vertical;
	padding:12px;
	background-color:#fff;
	border:none;
	color:#000;
	margin-bottom:20px;
}
.contact-form .btn{
	width: 120px;
	height:40px;
	margin-left:auto;
	background-color:#3494db;
	border:none;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	border: 2px solid #3494db;
	transition: .3s linear;
}
.btn:hover{
	background-color:transparent;
	color:#3494db;
}
@media only screen and (max-width : 900px){
	.main-nav{
		overflow:visible;
	}
	.nav-links{
		width:100%;
		right:0;
		top:80px;
		background:#111e27;
		overflow:hidden;
		max-height:0;
	}
	.nav-links a{
		display:block;
		text-align:center;
		padding:10px;
		margin:0;
	}
	.main-nav .btn{
		display:block;
		cursor:pointer;
	}
	.show{
		max-height:500px;
	}
	.contact-page{
		max-width:800px;
		position:relative;
	}
	h2{
		font-size: 40px;
		margin-bottom: 40px;
	}
	.contact-info, contact-form{
		flex: 100%;
		margin-bottom:30px;
	}
	.textb{
		width:100%;
	}
}