@charset "utf-8";
/* CSS Document */


body {
    margin: 0 auto;
    /*font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";*/
	font-family: 'poppins', sans-serif;
	text-align: left;
}


nav {
    text-align: center;
    padding: 0.5% 10%;
    background-color: #0f4480;
    overflow: auto;
}

.navlinks {
color: aliceblue;
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
font-size: 25px;
float: right;
padding: 1.25% 2%;
}


/**
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
}
*/
.contact
{
	position: relative;
	min-height: 100vh;
	padding: 50px 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: url("boat-5965850_1920.jpg");
	background-size: cover;
}

.contact .content
{
	max-width: 800px;
	text-align: center;
}

.contact .content h2
{
	font-size: 50px;
	margin-bottom: 30px;
	font-weight: 700;
	color: #FFFFFF;
	
}

.contact .content p
{
	font-weight: 300;
	margin-bottom: 30px;
	color: #FFFFFF;
	
}

.container
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

.container .contactInfo
{
	width: 50%;
	display: flex;
	flex-direction: column;

}
.container .contactInfo .box
{
	position: relative;
	padding: 30px 0;
	display: flex;
}
.container .contactInfo .box .icon
{
	min-width: 60px;
	height: 60px;
	background: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	font-size: 22px;
	float: left;
}

.container .contactInfo .box .icon i {
	display:block;
}

.container .contactInfo .box .text
{
	display: block;
	margin-left: 20px;
	padding-top: 0px;
	font-size: 16px;
	color: #ffffff;
	flex-direction: column;
	font-weight: 300;
	float:right;
}

.container .contactInfo .box .text h3
{
	font-size: 20px;
	font-weight: 700;
	color: #50BEFF;
}


.container .contactInfo .box .text p
{
	display: flex;
	font-size: 16px;
	color: #ffffff;
	flex-direction: column;
	font-weight: 300;
	
}


.ContactForm
{
	width: 40% ;
	padding: 40px;
	background: #fff;
}

.ContactForm h2
{
	font-size: 25px;
	color: #333;
	font-weight: 700;
	
}

.ContactForm .inputBox
{
	position: relative;
	width: 100%;
	margin-top: 10px;
}

.ContactForm .inputBox input,
.ContactForm .inputBox textarea
{
	width: 100%;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	border: none;
	border-bottom: 2px solid #333;
	outline: none;
	resize: none;
}

.ContactForm .inputBox span
{
	position: absolute;
	left: 0;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	pointer-events: none;
	transition: 0.5s;
	color: #666;
}

.ContactForm .inputBox input:focus ~ span,
.ContactForm .inputBox input:valid ~ span,
.ContactForm .inputBox textarea:focus ~ span,
.ContactForm .inputBox textarea:valid ~ span
{
	color: #e91e63;
	font-size: 12px;
	transform: translateY(-20px);
}

.ContactForm .inputBox input[type= "submit"]
{
	width: 100px;
	background: #00bcd4;
	color: #fff;
	border: none;
	cursor: pointer;
	padding: 10px;
	font-size: 18px;
}

@media (max-width: 991px)
{
	.contact
	{
		padding: 50px;
	}
	.container
	{
	flex-direction: column;
	}
	.container .contactInfo
	{
	margin-bottom: 40px;
	}
	.container .contactInfo,
	.ContactForm  
	{
	width: 100%;
	}
}
