* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  color: #000;
}

h1 {
  font-family: "Alegreya";
  font-weight: 600;
  font-size: 90px;
  color: #fff;
  padding: 80px 0;
  pointer-events: none;
}

h1 a {
  pointer-events: auto;
  color: inherit;
}

h2 {
  font-family: "Alegreya";
  font-weight: 600;
  font-size: 32px;
  color: #fff;
}

h3 {
  font-family: "Alegreya";
  font-weight: 600;
  font-size: 28px;
  color: #000;
  margin-bottom: 15px;
}

.collabs {
  padding: 50px 0;
  position: relative;
  background-color: #000;
}

.collabs h2 {
  color: #f4ffd8;
}

@media screen and (min-width: 800px) {
  .collabs h2 {
    padding: 30px 0;
  }
}

@media screen and (min-width: 801px) {
  .collabs .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .collabs .logo {
    flex: 1;
    flex-basis: 50%;
    max-width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .collabs .logos {
    flex: 1;
    flex-basis: 50%;
    max-width: 70%;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 800px) {
  .collabs .content {
    display: flex;
    flex-direction: column;
  }

  .collabs .logo,
  .collabs .logos {
    width: 100%;
  }

  .collabs .logos img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

.title {
  color: #000;
}

p,
button {
  font-family: "Alegreya";
  font-weight: 600;
}

a {
  color: #000000;
}

.footer {
  background-color: #000;
  padding: 50px 0;
  position: relative;
}

.footer p {
  text-align: center;
  color: #f4ffd8;
  font-size: 22px;
}

.footer p a {
  color: #f4ffd8;
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 80px;
    padding: 80px 0 10px;
  }
  h2 {
    font-size: 22px;
  }
  .content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  p {
    margin-top: 30px;
  }
}

@media screen and (min-width: 801px) {
  .content {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Fullscreen Video Section */
.fullscreen-bg {
  display: block;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.fullscreen-bg__videos {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fullscreen-bg__video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.fullscreen-bg .content {
  z-index: 1;
  position: absolute;
  bottom: 60px;
}

@media screen and (max-width: 800px) {
  .fullscreen-bg .content {
    bottom: 20px;
  }
  .title-logo {
    margin-top: 30px;
    width: 80%;
  }
  .description {
    width: 260px;
    padding: 20px 0 40px;
  }
}

@media screen and (min-width: 801px) {
  .title-logo {
    margin-top: 100px;
    margin-bottom: 30px;
    width: 470px;
  }
  .description {
    font-size: 50px;
  }
}

/* Intro Section */
.intro {
  background-color: #cafe03;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 600px) {
  .intro {
    padding: 32px 0;
  }
}

@media screen and (min-width: 601px) {
  .intro {
    padding: 86px 0px;
  }
}

.intro .content a {
  position: relative;
  background-color: black;
  color: #cafe03;
  text-decoration: underline black;
  padding: 16px 24px;
  border-radius: 0;
  transition: background-color 0.3s, text-decoration 0.3s;
  text-underline-offset: 12px;
}

@media screen and (min-width: 601px) {
  .intro .content a:hover {
    text-decoration: underline #cafe03;
    background-color: #222222;
  }
}

@media screen and (max-width: 1000px) {
  .intro .content .text-wrapper {
    margin-bottom: 50px;
    position: relative;
  }

  .intro .content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 1001px) {
  .intro .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    align-items: center;
  }
}

/* Feature Box */
.feature-box {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 0;
}

.feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-box li {
  font-family: "Alegreya";
  font-weight: 500;
  font-size: 20px;
  color: #000;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-box li:last-child {
  border-bottom: none;
}

/* Two Column Layout */
.title {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.col1, .col2 {
  width: 50%;
  box-sizing: border-box;
  padding: 23px;
}

@media screen and (max-width: 800px) {
  .col1, .col2 {
    width: 100%;
  }
}

@media screen and (min-width: 1001px) {
  .collabs .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
  }
}
