* {
  margin: 0;
  padding: 0;
  font-family: Helvetica;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
  list-style-type: none;
}
@media only screen and (max-width: 812px) {
  * {
    font-size: 20px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #323232;
}

.section_wrapper {
  margin-top: 2rem;
  margin-bottom: 25vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section_header {
  font-size: 40px;
  margin-bottom: 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 5;
  width: 100%;
  padding-bottom: 1rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
}

.navbar_item {
  display: inline;
  margin-right: 10px;
}

.navbar_link,
.navbar_title {
  text-decoration: none;
  color: white;
}
.navbar_link:hover, .navbar_link:focus,
.navbar_title:hover,
.navbar_title:focus {
  color: #69f0ae;
}

.navbar_title {
  font-weight: bold;
  margin-left: 15px;
  margin-top: 1rem;
}

.navbar_links {
  margin-right: 15px;
  margin-top: 1rem;
}

@media only screen and (max-width: 812px) {
  .navbar_title {
    transform: translateX(-200%);
  }

  .navbar_links {
    text-align: left;
    margin-left: -75%;
    margin-top: 20px;
  }

  .navbar {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 813px) and (max-width: 1024px) {
  .navbar_title {
    font-size: 28px;
    margin-left: 15px;
    margin-top: 20px;
  }

  .navbar_links {
    margin-top: 20px;
    margin-right: 15px;
  }
}
.splash_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 15vh;
}
.splash_container .splash_image {
  width: 100vw;
  object-fit: cover;
  filter: brightness(50%);
}

@media only screen and (max-width: 812px) {
  .splash_image {
    margin-top: 6.6vh;
  }
}
.cta {
  z-index: 1;
  font-weight: bold;
  color: white;
  position: absolute;
  font-size: 50px;
  text-align: center;
}
.cta .name {
  font-size: 60px;
  color: #69f0ae;
}

@media only screen and (max-width: 812px) {
  .cta {
    font-size: 30px;
  }
  .cta .name {
    font-size: 32px;
  }
}
.text_container {
  margin-right: 139.5px;
  margin-left: 139.5px;
}

.about_portrait {
  margin-right: 15px;
  max-width: 500px;
  max-height: 400px;
  align-self: flex-start;
  float: left;
  margin-left: 139.5px;
}

@media only screen and (max-width: 812px) {
  .text_container {
    margin-right: 15px;
    margin-left: 15px;
  }

  .about_portrait {
    margin-left: 15px;
    margin-bottom: 10px;
    width: 90vw;
    max-width: 500px;
    max-height: 400px;
  }
}
.cards_wrapper {
  margin-bottom: 20px;
  margin-left: 15px;
}

.card_image {
  width: 100%;
  max-height: 175px;
  min-height: 175px;
  object-fit: cover;
}

.card_item {
  max-width: 30vw;
  display: inline-block;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  background-color: #323232;
  margin-right: 30px;
}
@media screen and (max-width: 1366px) {
  .card_item {
    max-width: 25vw;
  }
}
@media screen and (min-width: 813px) and (max-width: 1200px) {
  .card_item {
    overflow-y: scroll;
    max-width: 20vw;
    margin-left: 30px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 812px) {
  .card_item {
    max-width: 100vw;
    margin-left: 30px;
    margin-bottom: 15px;
  }
}
.card_item:hover {
  transform: scale(1.1);
  margin-left: 18px;
  margin-right: 10px;
}
.card_item:hover p {
  color: #69f0ae;
}
.card_item .logo {
  z-index: 1;
  position: absolute;
  color: white;
  margin-top: 15px;
  margin-left: 10px;
  text-shadow: 3px 3px 6px black;
  font-size: 1.3rem;
}

.card_text {
  margin-left: 10px;
  margin-right: 10px;
}
.card_text .card_header {
  margin-bottom: 10px;
}
.card_text .card_desc {
  font-size: 18px;
}
@media only screen and (max-width: 812px) {
  .card_text .card_desc {
    font-size: 16px;
  }
}

.icons:first-child {
  margin: 0 40px;
}
.icons:last-child {
  margin: 0 80px;
}

.footer_container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 45px;
  margin-top: 30px;
  background-color: #323232;
}

.footer_title {
  color: white;
  position: absolute;
  margin-bottom: 65px;
}

.footer_item {
  display: inline;
  margin-right: 5px;
}
.footer_item:last-child {
  margin: 0 0 0 0;
}

.footer_link {
  color: white;
}
@media only screen and (max-width: 812px) {
  .footer_link {
    font-size: 18px;
  }
}
.footer_link:hover, .footer_link:focus {
  color: #69f0ae;
}

@media only screen and (max-width: 812px) {
  .footer_navbar {
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
  }
}

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