a {
  text-decoration: none;
  color: unset;
}

.font, .tagline, .caption, .headline, .nav-items, .logo, .bullet {
  font-family: "Red Hat Display", sans-serif;
  font-size: 15px;
  color: #292929;
}

.bullet {
  line-height: 150%;
  font-size: 20px;
}

.logo {
  font-size: 30px;
  text-transform: uppercase;
}

.nav-items {
  text-transform: uppercase;
}

.headline {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  .headline {
    text-align: center;
  }

  .bullet {
    text-align: center;
  }
}
.caption {
  font-size: 12px;
}

.container {
  margin: 0 auto;
  width: 75%;
  position: relative;
}

@media (max-width: 600px) {
  .container {
    width: 100%;
  }
}
.nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;
  height: 120px;
  margin-bottom: 20px;
}

.nav-items {
  display: flex;
  flex-direction: row;
  z-index: 90;
}

.nav-items a {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.nav-items a:hover {
  color: #1b61a1;
  transition: all 0.2s ease-in-out;
}

.nav-items-left a {
  margin-right: 15px;
}

.nav-items-right a {
  margin-left: 15px;
}

@media (max-width: 600px) {
  .nav {
    height: unset;
    width: 100%;
  }

  .nav-items {
    margin-top: 10px;
    flex-direction: column;
    text-align: center;
  }

  .nav-items-right a {
    margin-left: unset;
  }

  .nav-items a {
    margin: 5px;
  }
}
.banner {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.tagline {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 5px;
}

.full-container, .full-container-projects {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
}

.mb-40 {
  margin-bottom: 50px;
}

@media (max-width: 600px) {
  .full-container, .full-container-projects {
    height: 40vh;
  }
}
.full-container-projects {
  height: 60vh;
}

.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
}

.gallery a {
  height: 250px;
  width: 250px;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.gallery a img {
  object-fit: cover;
  width: 250px;
  height: 250px;
  transition: all 0.2s ease-in-out;
}

.gallery a img:hover {
  object-fit: cover;
  width: 250px;
  height: 250px;
  transform: scale(1.05);
  transition: all 0.2s ease-in-out;
}

.gallery a div {
  z-index: 10;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  height: 60px;
  margin: 10px;
  left: 0;
  right: 0;
  line-height: 60px;
  color: white;
  text-align: center;
  margin: 0;
  vertical-align: bottom;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 600px) {
  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .gallery a {
    margin-right: unset;
  }
}
.contact-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.contact-flex div {
  width: 50%;
}

@media (max-width: 600px) {
  .contact-flex {
    flex-direction: column;
  }

  .contact-flex div {
    width: 100%;
    margin-bottom: 15px;
  }
}
strong {
  font-weight: bold !important;
}

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