nav {
  background-color: white;
  box-shadow: 0 2px 4px rgba(96, 106, 130, .2);
  padding: 8px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

nav>div {
  display: flex;
  justify-content: center;
  flex: 0 2 auto;
}

.contact {
  display: flex;
  align-items: center;
  flex: 0 1 200px;
  justify-content: space-around;
}

.contact img {
  width: 26px;
}

.contact:hover img {
  opacity: .7;
}

.contact img:hover {
  opacity: 1;
}

nav img {
  width: 40px;
  height: 40px;
}

nav a span {
  font-family: 'Josefin Sans', sans-serif;
}

.mobileMenu {
  width: 100%;
}

#myLinks {
  border-top: 1px solid #DCDEE5;
  display: none;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

#myLinks img {
  height: 1.2em;
  width: auto;
  vertical-align: top;
}

/* Style navigation menu links */
#myLinks a {
  padding: 14px 16px;
  text-decoration: none;
  display: block;
}

a.icon {
  display: none;
  position: absolute;
  right: 20px;
  top: .5em;
  font-size: 24px;
}



@media (max-width: 575.98px) {
  nav {
    padding: 8px
  }

  a.icon {
    display: block;
  }

  .contact {
    display: none;
  }
}

/* // Small devices (landscape phones, less than 768px)
@media (max-width: 767.98px) {

} */

/* 
// Medium devices (tablets, less than 992px)
@media (max-width: 991.98px) {
  ...
}

// Large devices (desktops, less than 1200px)
@media (max-width: 1199.98px) {
  ...
} */