* {
	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: #000080;
	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;
	}
}

.container {
	width: 100%;
	padding: 0px;
}
.vision {
	width: 50%;
	height: auto;
	float: left;
	background-color: #ddd;
	color: #000;
	text-align: center;
	padding: 50px;
	position: relative;
	top: 75px;
	border-radius: 0 15px 15px 0 ;
	transition: 1s;
	z-index: 1;
}
.vision h1 {
	font-weight: bold;
	line-height: 33px;
}
.vision p {
	font-weight: normal;
	font-size: 18px;
	line-height: 33px;
}
.vision-img img {
	width: 50%;
	float: right;
	border-radius: 15px 0 0 15px;
	transition: 1.5s;
}
.container:hover .vision {
	transform: translateX(30px);
}
.container:hover .vision-img img {
	transform: translateX(-30px);
}
@media screen and (max-width: 786px) {
	.vision {
		width: 100%;
		top: 0px;
		border-radius: 0;
	}
	.container:hover .vision, .container:hover .vision-img img {
		transform: translateX(0px);
	}
	.vision-img img {
		width: 100%;
		border-radius: 0;
	}
}

.mission {
	width: 50%;
	height: auto;
	float: right;
	background-color: #ddd;
	color: #000;
	text-align: center;
	padding: 50px;
	position: relative;
	top: 95px;
	border-radius: 15px 0 0 15px;
	transition: 1s;
	z-index: 1;
}
.mission h1 {
	font-weight: bold;
	line-height: 33px;
}
.mission p {
	font-weight: normal;
	font-size: 18px;
	line-height: 33px;
}
.mission-img img {
	width: 50%;
	float: left;
	border-radius: 0 15px 15px 0;
	transition: 1.5s;
}
.container:hover .mission {
	transform: translateX(-30px);
}
.container:hover .mission-img img {
	transform: translateX(30px);
}
@media screen and (max-width: 1024px) { /*FOR IPAD PRO SCREEN*/
	.vision {
		top: 10px;
	}
	.mission {
		top: 20px;
	}
}
@media screen and (max-width: 786px) { /*FOR IPAD & SMALLER SCREEN*/
	.mission {
		width: 100%;
		top: 0px;
		border-radius: 0;
	}
	.container:hover .mission, .container:hover .mission-img img {
		transform: translateX(0px);
	}
	.mission-img img {
		width: 100%;
		border-radius: 0;
	}
}

/*-----------------ANIMATION - BOXES OF WHAT WE DO------------------*/
.boxes-head {
	text-align: center;
}
.boxes-head h1 {
	width: 100%;
	font-weight: bold;
}
.boxes {
	width: 100%;
	margin: 1% auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color: #ddd;
}
.boxes .box {
	position: relative;
	width: 18%;
	height: auto;
	background: #fff;
	margin: 10px;
	box-sizing: border-box;
	display: inline-block;
}
@media screen and (max-width: 786px) {
	.boxes .box {
		width: 364px;
		height: auto;
	}
}

.boxes .box .img-box {
	position: relative;
	overflow: hidden;
}
.boxes .box .img-box img {
	max-width: 100%;
	transition: transform 2s;
}
.boxes .box:hover .img-box img {
	transform: scale(1.2);
}
.boxes .box .details {
	position: absolute;
	top: 10px; left: 10px; bottom: 10px; right: 10px;
	background: rgba(0, 0, 0, .8);
	transform: scaleY(0);
	transition: transform .5s;
}
.boxes .box:hover .details {
	transform: scaleY(1);
}
.boxes .box .details .content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	padding: 6px;
}
.boxes .box .details .content a {
	text-decoration: none;
	color: #fff;
}
.boxes .box .details .content h2 {
	margin: 0;
	padding: 0;
	font-size: 20px;
	color: #ff0;
}
.boxes .box .details .content p {
	margin: 10px 0 0;
	padding: 0;
}

/*--------“LET’S BUILD BRIDGES - NOT JUST WALLS”------- */
.skyline {
	background-image: url("../images/skyline.jpg");
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 300px;
	transition: transform 8s ease-in;
}
.skyline:hover {
	transform: scale(1.2);
}
.back {
	position: relative;
	top: 0px;
	padding: 0;
	background-color: rgba(5,0,20,.6);
	height: 100%;
}
.skyline h1 {
	color: #fff;
	background-color: 0,0,0,0.6;
	text-align: center;
	font-weight: bold;
	position: relative;
	top: 40%;
}

/*-------------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;
}