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

body {
  margin: 0;
  padding: 0;
}

.c-1 {
  background-color: #ffffff;
  z-index: 100;
}

.c-1-1 {
  margin: 0 auto;
  width: 75vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  justify-content: space-between;
  line-height: 13vh;
  height: 13vh;
}

.c-1-1-logo {
  font-family: "Montserrat", sans-serif;
  color: #003399;
  font-size: 60px;
  font-weight: 800;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.c-1-1-name {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}

.c-1-1-nav {
  display: flex;
  flex-direction: row;
  z-index: 10;
  height: unset;
}

.c-1-1-nav-item {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin: 10px;
  transition: all 0.2s ease-in-out;
  z-index: 9;
}

.c-1-1-nav-item:hover {
  transition: all 0.2s ease-in-out;
  color: #003399;
  transform: scale(1.05);
}

.c-2 {
  margin: 0 auto;
  width: 75vw;
  height: 80vh;
  background-color: 0;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.c-2 hr {
  display: none;
}

.c-2-img {
  object-fit: cover;
  width: 75vw;
  height: 80vh;
  opacity: 100%;
  transition: all 0.5s ease-in-out;
}

.img2 {
  display: none;
  animation: slideshow2 5s infinite;
}

.img1 {
  animation: slideshow1 5s infinite;
}

@keyframes slideshow1 {
  0% {
    display: none;
  }
  100% {
    display: block;
  }
}
@keyframes slideshow2 {
  0% {
    display: block;
  }
  100% {
    display: none;
  }
}
#slideshow {
  position: relative;
}

.c-2-text {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #00339998;
  z-index: 40;
  color: white;
}

.c-2-text-head,
.c-2-text-body {
  line-height: 20px;
  margin-left: 7.5vw;
  margin-right: 7.5vw;
  max-width: 800px;
}

.c-2-text-body {
  margin-bottom: 6vh;
}

.c-2-text-head {
  margin-top: 6vh;
  font-size: 30px;
  margin-bottom: 2vh;
}

.hamburger {
  display: none !important;
}

.object-card-container {
  width: 75vw;
  margin: 0 auto;
  margin-top: 40px;
}

.object-flex-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row;
  grid-gap: 2em;
}

@media only screen and (max-width: 600px) {
  .object-flex-container {
    grid-template-columns: repeat(1, 2fr);
  }
}
.object-card {
  background-color: #bdbdbd;
  height: 350px;
  position: relative;
  margin-bottom: 40px;
  flex-basis: 250px;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}

.object-card-text {
  position: absolute;
  z-index: 90;
  bottom: 0px;
  width: 100%;
  color: white;
  background-color: #00339998;
}

.object-card-thumb {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.object-card-thumb:hover {
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}

.object-card-title {
  margin: 5px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.object-header {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
}

.object-card-exp {
  background-color: #bdbdbd;
  height: 70%;
  width: 40%;
  margin: 0 auto;
  z-index: 70;
  position: absolute;
  overflow: hidden;
}

.object-header {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
}

.profil-flex {
  display: flex;
  flex-direction: row;
  font-family: "Montserrat", sans-serif;
}

.img-container {
  width: 33.3%;
}

.img-container img {
  object-fit: contain;
  width: 100%;
}

.profil-text {
  width: 60%;
  margin-left: auto;
}

.profil-caption {
  margin-top: 10px;
  color: grey;
  font-size: 12px;
}

@media only screen and (min-width: 600px) {
  .c-1-1 {
    min-height: 15vh;
  }
}
@media only screen and (max-width: 600px) {
  .object-card {
    width: 250px;
    background-color: #bdbdbd;
    height: 200px;
    position: relative;
    flex-grow: 1;
    flex-shrink: 1;
    margin: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .object-card-container {
    width: 85vw;
  }

  .c-2,
.c-2-img {
    width: 100vw;
  }

  .c-2 {
    margin-top: 20px;
  }

  .c-1-1 {
    width: 85vw;
  }

  .c-1-1-logo {
    position: unset;
    margin-bottom: 10px;
  }

  .c-1-1 {
    flex-direction: column;
    height: unset;
    line-height: unset;
    align-items: flex-start;
  }

  .c-1-1-nav {
    flex-direction: column;
    overflow-y: hidden;
    height: 0px;
    transition: all 0.5s ease-in-out;
  }

  .c-1-1-nav-item {
    margin: 0;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .hamburger {
    position: absolute;
    right: 0;
    display: block !important;
  }

  .unfolded {
    height: 100px;
    transition: all 0.5s ease-in-out;
  }

  .hamburger-inner {
    font-size: 2px;
  }

  .c-1-1-name {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .img-container, .profil-text {
    width: 100%;
  }

  .profil-flex {
    flex-direction: column;
  }

  .profil-text {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .object-card {
    width: 100%;
    height: 25rem;
  }
}

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