* {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: #f2f2f2;
}

.center { text-align: center; }

.wrapper { margin: 0 50px; }

.clear { clear: both; }

.rightMost { margin-left: auto; }

nav#topBar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 0;
  background-color: #1E73BE;
}

header {
  margin-top: 35px;
  width: 100%;
  background-color: #fff;
}

header > div.wrapper,
nav#topBar div.wrapper,
.twoSec {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

nav#topBar div.wrapper > a {
  font-size: 12px;
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
}

nav#topBar div.wrapper > a:hover {text-decoration: underline; }

nav#topBar nav.socialSec {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}

nav#topBar nav.socialSec a {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  margin-right: 0;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

nav#topBar nav.socialSec a.facebook { background-image: url('../images/facebook.svg'); }

nav#topBar nav.socialSec a.twitter { background-image: url('../images/twitter.svg'); }

nav#topBar nav.socialSec a.googlePlus { background-image: url('../images/google-plus.svg'); }

nav#topBar nav.socialSec a.linkedIn { background-image: url('../images/linkedin.svg'); }


header a#binilemma {
  width: 170px;
  height: 100px;
  background-image: url('../images/Bini_Lemma.png');
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: 250px;
  background-size: 250px;
}

header nav#mainMenu a {
  margin-left: 40px;
  text-decoration: none;
  color: #313C56;
  font-weight: bold;
}

header a#menu {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-image: url('../images/menu.svg');
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

section#banner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 550px;
  background-image: url('../images/home-banner.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

section#banner h2 {
  font-family: 'PT Sans', sans-serif;
  color: #fff;
  font-weight: normal;
  font-size: 50px;
  text-shadow: 0 0 5px #737373;
}

section.container { padding: 25px 0; }

section.container.whiteBg { background-color: #fff; }

section.container h2 {
  font-family: 'PT Sans', sans-serif;
  font-weight: normal;
  font-size: 30px;
  margin-bottom: 10px;
}

section.container h3 { font-size: 18px; margin-bottom: 10px; }

section.container p {
  font-size: 15px;
  line-height: 25px;
  margin: 20px 0;
}

section.container ul { margin: 35px 0; }

section.container ul li {
  margin: 10px 0 10px 30px;
  font-size: 14px;
}

.twoSec article {
  width: calc(98% - 450px);
}

.twoSec aside {
  width: 450px;
}

.twoSec aside iframe { width: 100%; height: 250px; }

section#pricing { background-color: #3D87C8; color: #fff; }

section#pricing .twoSec { align-items: stretch; justify-content: center; }

section.container#pricing ul {
  width: calc(90%/5);
  margin: 0 10px;
  border: rgba(255,255,255,0.3) solid thin;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-flow: column nowrap;
}

section.container#pricing ul.popular { border-color: #ffc36d; }

section.container#pricing ul li {
  list-style: none;
  text-align: center;
  padding: 10px;
  margin: 0;
  font-size: 13px;
}

section.container#pricing ul li:first-child {
  background-color: #fff;
  color: #1E73BE;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
}

section.container#pricing ul.popular li:first-child { background-color: #F39201 !important; color: #fff;}

section.container#pricing ul li:nth-child(2) { font-size: 18px; }

section.container#pricing ul li:nth-child(even) { background-color: rgba(255,255,255,0.1); }

section.container#pricing ul.popular li:nth-child(even) { background-color: rgba(255,195,109,0.3); }

section.container#pricing ul.popular li:nth-child(odd) { background-color: rgba(255,255,255,0.1); }

section.container#pricing ul li:last-child {
  padding: 0;
  margin-top: auto;
}

section.container#pricing ul li:last-child a {
  display: inline-block;
  width: 100%;
  padding: 8px 0;
  font-size: 16px;
  font-weight: bold;
  color: #F39201;
  text-decoration: none;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  transition: 0.2s all linear;
}

section.container#pricing ul:hover li:last-child a,
section.container#pricing ul.popular li:last-child a {
  background-color: #F39201;
  color: #fff;
}

section.container#contact {
  background-image: url('../images/contact-banner.jpg');
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

section.container#contact address {
  width: 60%;
  color: #fff;
}

section.container#contact aside { width: 35%; }

input[type=text], input[type=tel],
input[type=email], textarea {
  width: 95%;
  border:none;
  padding: 5px 8px;
  font-size: 15px;
  margin: 5px 0;
  background-color: #fff;
}

textarea {
  resize: vertical;
  height: 80px;
}

button[type=submit] {
  background-color: #fff;
  border: none;
  font-weight: bold;
  font-size: 15px;
  margin-top: 10px;
  cursor: pointer;
  padding: 5px 25px;
}

section#maps iframe {
  width: 100%;
  height: 300px;
}

footer {
  background-color: #3F4C6B;
  padding: 80px 0 0 0;
  color: #ffffff;
}

footer div.twoSec {
  align-items: flex-start;
  justify-content: center;
}

footer aside {
  width: calc((95% - 200px) /2);
  margin: 0 20px;
}

footer aside:first-child { width: 200px !important; }

footer aside h3 { font-size: 15px; margin-bottom: 10px; }

footer aside p {
  font-size: 12px;
  line-height: 20px;
  margin: 5px 0;
  color: #00c6ff;
}

footer aside p a {
  text-decoration: none;
  color: #00c6ff;
}

footer div#footA {
  background-color: #313C56;
  margin-top: 20px;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
}

a#scrollTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0.3;
  width: 30px;
  height: 30px;
  background-image: url('../images/up-arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  transition: 0.2s all linear;
}

a#scrollTop:hover { opacity: 0.8; }

.location, .ph, .email {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.location { background-image: url('../images/maps.svg'); }

.ph { background-image: url('../images/phone.svg'); }

.email { background-image: url('../images/envelope.svg'); }

.location.blue { background-image: url('../images/maps-blue.svg'); }

.ph.blue { background-image: url('../images/phone-blue.svg'); }

.email.blue { background-image: url('../images/envelope-blue.svg'); }

footer a.social {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-top: 15px;
  margin-right: 5px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

footer a.facebook { background-image: url('../images/facebook-blue.svg'); }

footer a.twitter { background-image: url('../images/twitter-blue.svg'); }

footer a.googlePlus { background-image: url('../images/google-plus-blue.svg'); }

footer a.linkedIn { background-image: url('../images/linkedin-blue.svg'); }

@media screen
  and (min-width: 320px)
  and (max-width: 800px) {
    .wrapper { margin: 0 20px; }
}

@media screen
  and (min-width: 320px)
  and (max-width: 680px) {

    header { position: relative; }

    header nav#mainMenu {
      visibility: hidden;
      opacity: 0;
      display: -webkit-flex;
      display: -ms-flex;
      display: flex;
      padding: 20px; 0;
      top:100px;
      flex-flow: column nowrap;
      position: absolute;
      left: 0;
      right: 0;
      background-color: rgba(255,255,255,0.9);
    }

    header a#menu { display: inline-block; transition: 0.2s all linear; }

    header nav#mainMenu.active {
      visibility: visible;
      opacity: 1;
    }

    header nav#mainMenu a { margin: 8px 0; }

    .twoSec { flex-flow: column nowrap; }

    .twoSec article,
    .twoSec aside,
    section.container#contact address,
    section.container#contact aside { width: 100%; }

    section#pricing .twoSec { flex-flow: row wrap; }

    section.container#pricing ul { width: calc(90% / 2); margin: 10px; }

    footer aside { width: 100%; margin: 20px 0; }
}

@media screen
  and (min-width: 320px)
  and (max-width: 480px) {
    .wrapper { margin: 0 10px; }
    section#pricing .twoSec { flex-flow: column nowrap; }

    section.container#pricing ul { width: 100%; margin: 10px 0; }
}

input[type=submit]{
	width: 10em; height: 2em;
	background-color: white;
}
