body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: black;
}

/* header css starts */
header {
  width: 100%;
  position: fixed;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 1;
}

header.white-header {
  color: white;
}

header.black-header {
  color: black;
}

.htitle {
  line-height: 0.8;
  font-weight: 700;
  font-size: 128px;
}

.nav-links {
  display: flex;
  align-self: flex-start;
  gap: 15px;
}

.nav-item {
  font-size: 16px;
}

.nav-item.selected {
  font-weight: 700;
  text-decoration: underline;
}

header a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 992px) {
  header {
    padding: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-end;
  }

  .htitle {
    font-size: 64px;
  }
}
/* header css ends */

/* carousel css starts */
.swiper {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  z-index: 0;
}

.swiper-wrapper {
  display: flex;
  align-self: flex-start;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img,
.swiper-slide video {
  min-width: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.last-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.last-slide .main-text {
  font-size: 40px;
  margin: 0;
}

.last-slide .sub-text {
  font-family: "Jost", sans-serif;
  font-size: 40px;
  margin: 0;
}

.last-slide .social-icons {
  padding: 25px 0;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.last-slide .social-icons img {
  width: 25px;
  height: 25px;
  filter: contrast(7%);
}
.social-icons img:hover {
  filter: contrast(100%);
}

@media (max-width: 992px) {
  .last-slide .main-text,
  .last-slide .sub-text {
    font-size: 20px;
  }
  .swiper-slide img,
  .swiper-slide video {
    min-width: 100%;
    object-fit: cover;
    height: 100%;
  }
}
/* carousel css ends */
