main header {
  width: 100%;
  height: 90px;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.5019607843);
  background: #155389;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  display: flex;
  padding: 0 40px;
  margin-bottom: 20px;
}
main header div {
  display: flex;
}
main header .links {
  margin-left: auto;
}

main header a {
  text-decoration: none;
  color: white;
  margin: auto 10px;
  position: relative;
  box-shadow: 5px 5px 5px -2px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

main header a img {
  display: block;
  width: 45px;
}

main header .iconHover:hover {
  transform: scale(1.05);
}

main header .logo {
  border-radius: 7px;
  box-shadow: none;
}

main header .logo img {
  width: 70px;
}

main header .logo:hover {
  transform: scale(1);
}

main header a:nth-child(2) {
  margin-left: auto;
}

main header .emailMenuIcon .emailTag {
  position: absolute;
  top: 62px;
  left: -170px;
  background-color: #791818;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.5019607843);
  padding: 8px;
  width: 225px;
  height: 35px;
  z-index: 50;
  border-radius: 8px;
  transition: opacity 0.3s ease-in-out;
  text-align: center;
}

main header .emailMenuIcon .emailTag:after {
  content: "";
  width: 0;
  height: 0;
  margin: 0 auto;
  position: absolute;
  top: -30px;
  left: 178px;
  background: transparent;
  border-top: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 15px solid #791818;
  border-right: 15px solid transparent;
  z-index: 51;
  transition: opacity 0.1s ease-out;
}

@media only screen and (max-width: 570px) {
  main header {
    padding: 0 8px;
  }
  main header a {
    margin: auto 6px;
  }
  main header a img {
    width: 42px;
  }
  main header .logo img {
    width: 45px;
  }
}
@media only screen and (max-width: 570px) {
  main header {
    flex-direction: column;
    justify-content: center;
    height: 130px;
    margin: 0;
    padding: 0 40px;
  }
  main header div {
    justify-content: center;
    margin: 10px 0;
    width: 100%;
  }
  main header .links {
    margin: 10px auto;
    display: grid;
    grid-template: auto/repeat(6, 60px);
    place-items: center;
  }
}/*# sourceMappingURL=header.css.map */