@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.nav-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 70px;
  background-color: #012E40;
}
.nav-header .nav-header-logo {
  margin-left: 20px;
  margin-right: 100px;
  display: block;
  height: 70px;
  cursor: pointer;
}
.nav-header .menu-navigation {
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 50px;
}
.nav-header a {
  text-decoration: none;
  font-size: large;
  font-weight: bold;
  color: #F2E3D5;
  transition: color 0.25s;
}
.nav-header a:hover {
  color: #3CA6A6;
}
.nav-header ul {
  list-style-type: none;
}
.nav-header .join-button {
  margin-right: 20px;
  padding: 10px;
  border-radius: 10px;
  background-color: #024959;
  transition: 250ms;
}
.nav-header .join-button:hover {
  color: #F2E3D5;
  background-color: #3CA6A6;
}

footer {
  background: #012E40;
  display: flex;
  padding: 50px 100px;
  flex-direction: row;
  justify-content: space-between;
  color: #F2E3D5;
  margin-top: 100px;
}
footer .contact {
  width: 400px;
}
footer .contact h2 {
  margin: 0;
}
footer .contact ul {
  margin: 10px 0;
}
footer .logo {
  font-size: 50px;
}
footer .logo > img {
  cursor: pointer;
  width: 200px;
}
footer .social-container > img {
  cursor: pointer;
}

.cards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 30px;
  margin: 50px 100px;
}
.cards-list a.card {
  display: block;
  position: relative;
  aspect-ratio: 6/4;
  overflow: hidden;
  transition: 250ms;
}
.cards-list a.card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards-list a.card .img-top {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 1;
}
.cards-list a.card .img-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 0;
}
.cards-list a.card h2.card-title {
  z-index: 2;
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 20px;
  height: 50%;
  font-size: xxx-large;
  color: #F2E3D5;
  background: linear-gradient(to bottom, rgba(1, 46, 64, 0) 0%, rgba(1, 46, 64, 0.8) 100%);
}
.cards-list a.card:hover {
  transform: scale(1.02);
  box-shadow: 4px 4px 8px #012E40;
}
.cards-list a.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3CA6A6;
  z-index: 2;
  clip-path: polygon(0 0, 20px 0, 100% 100%, calc(100% - 20px) 100%);
}

.carousel-container {
  position: relative;
  width: 100%;
  margin: auto;
}

.carousel-slide {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.carousel-slide img {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: fadeinout 30s infinite;
  vertical-align: middle;
}

.carousel-slide img:nth-child(1) {
  animation-delay: 0s;
}

.carousel-slide img:nth-child(2) {
  animation-delay: 6s;
}

.carousel-slide img:nth-child(3) {
  animation-delay: 12s;
}

.carousel-slide img:nth-child(4) {
  animation-delay: 18s;
}

.carousel-slide img:nth-child(5) {
  animation-delay: 24s;
}

@keyframes fadeinout {
  0% {
    opacity: 0;
  }
  6.25% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  31.25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
* {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html, body {
  margin: 0;
  background: #F2E3D5;
}

/*# sourceMappingURL=app.output.css.map */
