*{
	margin:0;
	padding: 0;
}
body{
	background: #88C9F3;
	font-size:14px;
	font-family: 'Open Sans', sans-serif;
}
.container {
	width:80%;
	margin: 50px auto;
}
.contact-box{
	background: #fff;
	display:flex;
}
.contact-left {
	flex-basis:60%;
    padding: 40px 60px;
}
.contact-right {
	flex-basis:40%;
    padding: 40px;
	background:#1c00b5;
	color: #fff;
}
h1{
	margin-bottom: 10px;
}
h2{
	margin-bottom: 10px;
}
.container p{
	margin-bottom: 40px;
}
.input-row {
	display:flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.input-row .input-group {
	flex-basis: 45%;
}
input {
	width: 100%;
	border:none;
	border-bottom: 1px solid #ccc;
	outline: none;
	padding-bottom: 5px;
}
textarea{
	width: 100%;
	border: 1px solid #ccc;
	outline: none;
	padding: 10px;
	box-sizing: border-box;
}
label{
	margin-bottom: 6px;
	display: block;
	color: #1c00b5;
}
button {
	background-color: #1c00b5;
	width: 100px;
	border: none;
	outline: none;
	color: #fff;
	height: 35px;
	border-radius: 30px;
	margin-top: 20px;
	box-shadow: 0px 5px 15px 0px rgba(20,0,101,0.3);
	cursor: pointer;
	content: url(index.html);
}
.contact-left h3{
	color: #1c00b5;
	font-weight: 600;
	margin-bottom: 30px;
}
.contact-right h3{
	font-weight: 600;
	margin-bottom: 30px;
}
tr td:first-child{
	padding-right: 20px;
}
tr td{
	padding-top: 20px;
}
.popup{
	width: 300px;
	height: 250px;
	background: #fff;
	border-radius: 6px;
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%,-50%) scale(0.1);
	text-align: center;
	padding: 0 30px 30px;
	color: #333;
	visibility: hidden;
	transition: transform 0.4s, top 0.4s;
}
.open-popup {
	visibility: visible;
	top: 50%;
	transform: translate(-50%, -50%) scale(1);
}

.popup img {
	width: 100px;
	margin-top: 10px;
}
.popup h2{
	margin-top: 10px;
}
.popup button {
	margin-top: 0px;
}
#thanks {
	margin-top: 100px;
	width: 360px;
	margin: auto;
	text-align: center;
}