/* reset generale */

/* Regular */
@font-face {
  font-family: "Rooftop";
  src: url("../fonts/Rooftop-Regular.otf") format("opentype");
  font-weight: 400; /* Standard for Regular */
  font-style: normal;
  font-display: swap;
}

/* Book (slightly lighter or different weight) */
@font-face {
  font-family: "Rooftop";
  src: url("../fonts/Rooftop-Book.otf") format("opentype");
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Rooftop";
  src: url("../fonts/Rooftop-Bold.otf") format("opentype");
  font-weight: 700; /* Standard for Bold */
  font-style: bold;
  font-display: swap;
}

/* Mono (Separate Family) */
@font-face {
  font-family: "Rooftop Mono";
  src: url("../fonts/Rooftop-Mono-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0px;
  padding: 0px;
}
button {
  background-color: transparent;
  border: none;
}
.pageWrap {
  display: flex;
  flex-direction: column;
  gap: 256px;
}
.hero {
  height: 100svh;
  width: 100%;
  position: relative;
}
.intro {
  position: absolute;
  width: 100%;
  height: 100svh;
  z-index: 1000000000000;
  background-color: black;
}
.wrapLogoInfoHero {
  z-index: 10000000;
  position: absolute;
  height: auto;
  width: calc(100% - 128px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0px 64px;
  height: 100%;
  align-items: center;
  gap: 16px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #00000000 0%,
    rgba(0, 0, 0, 0.5) 50%,
    #ffffff00 100%,
    transparent 100%
  );
}

.logoHero {
  grid-column: span 2;
  width: 100%;
  max-height: 80px;
  z-index: 100000000000001;
}
.logoHeroImg {
  max-height: 80px;
  width: auto;
}
.wrapInfoHero {
  display: flex;
  flex-direction: row;
  gap: 16px;
  grid-column: span 2;
  height: 80px;
  align-items: end;
}
.autoplay-timer {
  z-index: 100000000;
  position: absolute;
  height: 4px;
  background-color: white;
  left: 64px;
  grid-column: span 4;
  transform: translateY(64px);
}
.autoBG {
  z-index: 10000009;
  position: absolute;
  height: 2px;
  background-color: white;
  left: 64px;
  grid-column: span 4;
  transform: translateY(64px);
  width: calc(100% - 128px);
}
.swiper-slide {
  height: 100%;
  width: 100%;
}
.imgSlide {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.numberProject,
.nameProject,
.yearProject {
  color: white;
  font-family: "Rooftop";
  font-weight: 400;
}

.numberProject {
  font-size: 1rem;
}
.nameProject,
.yearProject {
  font-size: 2rem;
}
.nameProject {
  font-family: "Rooftop";
  font-weight: 700;
}
.regular {
  font-weight: 400;
}
.missionHead {
  font-size: 4rem;
  align-items: start;
  font-family: Rooftop;
  font-weight: 400;
  padding: 0px 64px;
}
.missionWrap {
  margin-bottom: 256px;
}
.missionText {
  font-size: 1rem;
  margin-right: 128px;
  display: inline-flex;
  gap: 8px;
}
.crocini {
  padding-bottom: 64px;
  padding-left: 64px;
}
.bold {
  font-weight: bold;
}
.blockText {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: solid 1px black;
  margin-top: -16px;
}
.textSquare {
  padding: 132px 64px 132px 0px;
  border-left: solid 1px black;
  grid-column: 3 / span 2;
  font-family: "Rooftop";
  font-weight: 400;
  height: 100%;
  display: flex;
  align-items: center;
}
.split-line {
  overflow: hidden;
  vertical-align: bottom; /* Prevents descenders like 'y' or 'g' from being cut off */
}
.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 16px;
  padding: 192px 64px 64px 64px;
  background-color: #b5b8b5;
  position: relative;
  z-index: 1; /* Keep it below previous sections */
  /* This prevents the "cut off" by giving the footer a buffer */
  margin-bottom: 0;
  min-height: 500px;
}
.wrapFooterTexts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-column: span 4;
}
.colFooter {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  font-family: "Rooftop";
  font-size: 1.5rem;
}
.linkFooter {
  color: black;
  width: fit-content;
}
.linkFooter:hover {
  color: white;
}

.logoFooter {
  grid-column: span 4;
}
.mono {
  font-family: "Rooftop Mono";
  font-size: 1rem;
}
.caps {
  text-transform: uppercase;
}
.blank {
  min-height: 250px;
  background-color: #b5b8b5;
  width: 100%;
  margin-top: -144px;
}
.line {
  outline: 1px solid red;
}
/* Large screens */
@media (max-width: 1440px) {
}
/* Small laptops */
@media (max-width: 1024px) {
}
/* Tablets */
@media (max-width: 768px) {
}

/* Small tablets / large phones */
@media (max-width: 640px) {
}
