@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap");
h1, h2, h3, h4, h5, h6, p {
  margin: 0.2em 0;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.block {
  display: block;
}

.fontWeight-100 {
  font-weight: 100;
}

.fontWeight-200 {
  font-weight: 200;
}

.fontWeight-300 {
  font-weight: 300;
}

.fontWeight-400 {
  font-weight: 400;
}

.fontWeight-500 {
  font-weight: 500;
}

.fontWeight-600 {
  font-weight: 600;
}

.fontWeight-700 {
  font-weight: 700;
}

.fontWeight-800 {
  font-weight: 800;
}

.fontWeight-900 {
  font-weight: 900;
}

.flex {
  display: flex;
}
.flex-mobile-column {
  display: flex;
}
@media (max-width: 500px) {
  .flex-mobile-column {
    flex-direction: column;
  }
}
.flex-column {
  flex-direction: column;
}
.flex-center {
  justify-content: center;
}
.flex-spaceAround {
  justify-content: space-around;
}
.flex-wrap {
  flex-wrap: wrap;
}

.uppercase {
  text-transform: uppercase;
}

body {
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6, p, a {
  color: #04006c;
  font-family: "Open Sans", sans-serif;
}

section {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

.text-darkBlue {
  color: #072d46;
}
.text-light {
  color: #04006c;
}
.text-grey {
  color: #999;
}
.text-darkGrey {
  color: #04006c;
}
.text-black {
  color: #000;
}
.text-aqua {
  color: #015cfe;
}
.text-underline {
  text-decoration: underline;
}

.header {
  background: #000e5d;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  transition: 0.3s;
	background-image: none;
}
@media (max-width: 500px) {
  .header .logo {
    margin: 0 auto;
  }
  .header .nav {
    justify-content: center;
    margin-bottom: 10px;
  }
  .header .nav .link {
    font-size: 0.7em;
  }
}

.logo {
  padding: 40px 0;
}
.logo img {
  max-height: 60px;
}

.nav a {
  text-decoration: none;
}
.nav .link {
  padding: 10px;
  margin: 5px;
  transition: 0.3s;
  border: 1px solid transparent;
  position: relative;
  font-size: 0.8em;
}
.nav .link.active, .nav .link:hover {
  background: transparent;
  border-color: #bdbdbd;
}
.nav .link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
}

.divider {
  height: 5px;
  width: 5px;
  background: #fff;
  border-radius: 50%;
  margin: 10px auto;
}

.about {
  margin-top: 60px;
  border: 1px solid #0fc6ff;
  padding: 30px 20px;
}
.about-container {
  max-width: 540px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .about {
    margin-top: 10px;
  }
	.logo img {
  max-height: 45px;
}
}
@media (max-width: 775px) {
  .about {
    max-width: 100%;
    margin-right: 10px;
    margin-left: 10px;
  }
	.logo img {
  max-height: 45px;
}
}

.contactCard, .collectionCard {
  width: calc((100% / 3) - 10px);
  padding: 5px;
}
@media (max-width: 500px) {
  .contactCard, .collectionCard {
    width: 100%;
    padding: 0;
  }
}

.contactCard {
  font-size: 0.9em;
  line-height: 1.5em;
}
@media (max-width: 500px) {
  .contactCard {
    padding-bottom: 15px;
  }
}

.collectionCard {
  line-height: 1.75em;
}
.collectionCard h2 {
  margin: 0.5em 0 0.2em;
}
.collectionCard p {
  font-size: 0.9em;
  line-height: 2em;
}
.collectionCard img {
  width: 100%;
}
@media (max-width: 500px) {
  .collectionCard {
    padding-bottom: 20px;
  }
}

.contactPeople {
  border-bottom: 1px solid #0fc6ff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
}

.footer {
  font-size: 11px;
  margin: 20px 0;
}

/*# sourceMappingURL=styles.css.map */
