* {
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: "Open Sans", sans-serif;
}

/*------------CONTACT BAR------------*/
.contactBar {
	width:100%;
	margin:auto;
	overflow: hidden;
	background-color: #0040ff;
	min-height: 45px;
	padding:4px 0 0 5px;
	z-index: 1;
}
@media only screen and (max-width: 768px) {
	.contactBar {
		display: none;
	}
}
.contactBarLeft ul li {
	float: left;
	display: block;
	color: #fff;
	list-style: none;
	margin-left: 50px;
}
.contactBarLeft ul li:hover {
	color: coral;
}
.contactBarLeft ul li i {
	color: #fff;
	font-size: 19px;
}

.contactBarRight {
	float: right;
}
.contactBarRight ul li {
	float: left;
	display: block;
	list-style: none;
	margin-right: 40px;
}
.contactBarRight ul li a i {
	color: #fff;
	font-size: 22px;
}
.contactBarRight ul li a i:hover {
	color: coral;
}

/*-----------NAVBAR-------------*/
nav.line {
	border-bottom: 5px solid #;
}
.navbar {
	width:100%;
	margin:auto;
	background-color: #fff;
	min-height: 60px;
	padding:4px 0 0 5px;
	position: sticky;
	top: 0;
	border-radius: 0;
	z-index: 2;
}

.navbar-left {
	width: 18%;
}
.navbar-left a img {
	width: 60%;
	margin-left: 20%;
	padding: 0px;
	transition: .4s;
}
nav.line .navbar-left a img {
	width: 40%;
	margin-right: 10%;
	padding: 0;
}

.navbar-right {
	background-color: #fff;
	padding: 20px 0 0 0;
	margin-right: 60px;
	font-family: "Open Sans", sans-serif;
	transition: .8s;
	height: 100%;
}
.navbar-right ul li {
	padding: 0;
}

nav ul {
	float: left;
}
nav ul li {
	float: left;
	list-style: none;
	position: relative;
	font-weight: bold;
}
nav ul li a {
	display: block;
	font-family: arial;
	color: #444;
	font-size: 15px;
	padding: 12px 14px 12px 14px;
	text-decoration: none;
}
nav.line .navbar-right {
	margin-right: 20px;
}
nav ul li a:hover {
	color: coral;
	text-decoration: none;
}
nav ul li ul {
	width: 230px;
	display: none;
	position: absolute;
	background-color: #eee;
	border-radius: 0px 0px 6px 6px;
}
nav ul li:hover ul {
	display: block;
}
nav ul li ul li {
	width: 100%;
	font-weight: normal;
}
nav ul li ul li a {
	padding: 12px 14px;
	text-align: left;
	font-size: 13px;
	font-weight: bold;
	font-family: "Open Sans", sans-serif;
}
nav ul li ul li a:hover {
	background: coral;
	color: #fff;
	transition-duration: 0.6s;
	border-radius: 6px;
}

.toggle-button {
    position: absolute;
    top: 2.5rem;
    right: 1.5rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 22px;
    z-index: 1002;
}

.toggle-button .bar {
    height: 5px;
    width: 100%;
    background: red;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
	.navbar-left {
		width: 35%;
	}
	.navbar-left a img {
		width: 60%;	
	}
	.navbar-right {
		display: none;
		width: 98%;
		float: left;
		padding:0 20px 0 0;
		margin-top: 35px;
		margin-right: 20px;
	}
	.navbar-right a {
		float: left;
	}
	.navbar-right ul {
        width: 100%;
        border-top: 1px solid #ccc;
    }
	.navbar-right ul li{
		width: 100%;
	}
	.navbar-right ul li ul {
		width: 230px;
		background-color: #eee;
		left: 130px;
		z-index: 1;
	}
	.navbar-right ul li ul li a {
		width: 100%;
	}
    .toggle-button {
        display: flex;
    }
    .navbar-right.active {
        display: inline;
    }
}
@media screen and (max-width: 414px) {
	.navbar-left a img {
		width: 80%;
		padding: 0px;
	}
	.navbar-right {
		float: left;
		padding:0px;
		margin-top: 5px;
	}
	.navbar-right a {
		padding:0 0 0 8px;
	}
}

/*-----------------------BODY----------------------*/
.background {
	background-image: url(../images/background-3-contactUs.jpg);
	width: 100%;
	height: 1000px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.content {
	width: 50%;
	text-align: center;
	position: relative;
	top: 100px;
	left: 40%;
	border-radius: 6px;
	color: #fff;
	line-height: 30px;
}
.content h1 {
	font-weight: bold;
}
.content p {
	font-size: 16px;
}
@media screen and (max-width: 800px) {
	.content {
		width: 96%;
		left: 0%;
		background-color: rgba(0,0,0,.7);
	}
}

/*-------------CONTACT FORM---------------*/
#contact {
	width: 50%;
	min-height: 300px;
	padding: 15px 0 15px 0;
	float: right;
	position: relative;
	top: 150px;
	padding: 10px;
}
.form {
	width: 60%;
	border-radius: 12px;
	background-color: rgba(0,0,0,.5);
	text-align: center;
	padding: 0px;
}

.form h1 {
	text-align: center;
	font-size: 24px;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: bold; 
	color: #fff;
}
.form:hover {
	transition: 1s;
	transform: scale(1.04);
}
.contact-form input {
	min-width: 90%;
	padding: 5px;
	font-family: 'Nunito Sans', sans-serif;
	border-radius: 8px;
	border: 0px solid black;
}
.contact-form textarea {
	min-width: 90%;
	padding: 5px;
	font-family: 'Nunito Sans', sans-serif;
	border-radius: 8px;
	border: 0px solid black;
}
.contact-form button {
	min-width: 20%;
	padding: 5px;
	font-family: 'Nunito Sans', sans-serif;
	border-radius: 8px;
	border: 0px solid black;
	font-weight: bold;
}
.contact-form button:hover {
	background: #ddd;
	color: #0066ff;
}
@media screen and (max-width: 768px) {
	#contact {
		width: 100%;
	}
	.form {
		width: 90%;
		margin-left: 2%;
	}
}
/*--------“LET’S BUILD BRIDGES - NOT JUST WALLS”------- */
.skyline {
	width: 42%;
	min-height: 50px;
	position: relative;
	top: 600px;
	left: 44%;
	border-radius: 6px;
	padding: 10px;
}
.skyline h2 {
	text-align: center;
	font-weight: bolder;
	color: #fff;
	position: relative;
	top: 40%;
}
@media screen and (max-width: 800px) {
	.skyline {
		width: 90%;
		top: 230px;
		left: 5%;
	}
}
@media screen and (max-width: 600px) {
	.skyline {
		left: 1%;
	}
}

/*-------------MAIN FOOTER---------------*/
.mainFooter {
	display: flex;
	background: #000;
	color: #fff;
	min-height: 400px;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 28px;
	align-items: center;
}
.menu, .policies, .contact, .socialMedia {
	flex-basis: 300px;
	padding: 10px 20px 10px 10px;
	border-left: 1px solid #eee;
}
.menu ul li, .policies ul li, .contact ul li, .socialMedia ul li {
	text-align: left;
	list-style: none;
}
.menu ul li a, .policies ul li a, .contact ul li a, .socialMedia ul li a {
	color: #fff;
}

.socialMedia ul li {
	float: left;
}
.socialMedia a:hover {
	color: #0047b3;
}
.socialMedia ul li a i {
	color: #fff;
	font-size: 24px;
	margin: 0 20px;
}
.socialMedia ul li a i:hover {
	color: #0047b3;
}
@media screen and (max-width: 768px) {
	.mainFooter {
		min-height: 500px;
	}
	.menu, .policies, .contact, .socialMedia {
		border-left: 0;
	}
}
.copyright-bar {
	background-color: #ddd;
	text-align: center;
	padding: 5px 25px;
}