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

html {
  font-size: 62.5%;
  font-family: sans-serif;
}
@media only screen and (max-width: 43.75em) {
  html {
    font-size: 50%;
  }
}

.primary-heading {
  font-size: 3rem;
  font-weight: 600;
}

.secondary-heading {
  font-size: 2.6rem;
  font-weight: 600;
}

.tertiary-heading {
  font-size: 1.8rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1.5rem;
  line-height: 1.5;
}

.hero {
  position: relative;
}
.hero__img > * {
  width: 100%;
  display: block;
}
.hero h1 {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  width: 80%;
}

.info {
  background-color: #000;
  color: #fff;
}
.info__text {
  width: 80%;
  padding: 8rem 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info__img > * {
  width: 100%;
  display: block;
}
.info__video {
  width: 100%;
  display: block;
}
@media (max-width: 50em) {
  .info__video-big {
    display: none;
  }
}
.info__video-small {
  display: none;
}
@media (max-width: 50em) {
  .info__video-small {
    display: block;
  }
}

.line {
  position: relative;
}
.line__img > * {
  width: 100%;
  display: block;
}
.line h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 50em) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.grid__text {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 50em) {
  .grid__text {
    padding: 5rem 0;
  }
}
.grid video,
.grid img {
  width: 100%;
  display: block;
}

.float {
  position: relative;
}
.float__text {
  position: absolute;
  top: 10rem;
  right: 3rem;
  text-align: right;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50em) {
  .float__text {
    width: 80%;
    right: 50%;
    transform: translate(50%, 0);
    text-align: center;
  }
}
.float__text2 {
  position: absolute;
  top: 10rem;
  left: 3rem;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50em) {
  .float__text2 {
    width: 80%;
    right: 50%;
    left: auto;
    transform: translate(50%, 0);
    text-align: center;
  }
}
.float__img > * {
  width: 100%;
  display: block;
}
.float__video {
  width: 100%;
  display: block;
}
@media (max-width: 50em) {
  .float__video-big {
    display: none;
  }
}
.float__video-small {
  display: none;
}
@media (max-width: 50em) {
  .float__video-small {
    display: block;
  }
}

.audio {
  position: relative;
  color: #fff;
}
.audio__img > * {
  display: block;
  width: 100%;
}
.audio__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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