@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

body {
  font-family: "Outfit", sans-serif;
  color: #ffffff;
  background-color: #0f0f0f;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

b {
  font-weight: 500;
}

a {
  color: #ee4a66;
  text-decoration: none;
}

.container {
  width: 80%;
  max-width: 1900px;
  margin: 0 auto;
}

.color-grey {
  background: rgba(255, 255, 255, 0.1);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.8) 50%,
    rgba(15, 15, 15, 0) 100%
  );
  padding: 15px 0;
  z-index: 100;
}

#logo {
  height: 100px;
  transition-duration: 0.2s;
}

@media screen and (max-width: 990px) {
  #logo {
    height: 70px;
  }
}

#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

#hero-content {
  max-width: 660px;
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    to right,
    rgba(15, 15, 15, 0.8) 50%,
    rgba(15, 15, 15, 0) 100%
  );
}

#hero-bg-rect {
  position: absolute;
  height: 120vh;
  width: 40%;
  background-color: #ee4a66;
  right: -100px;
  bottom: -50%;
  border-radius: 50px;
  z-index: 0;
}

#hero-bg-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 90%;
  z-index: 11;
}

@media screen and (max-width: 990px) {
  #hero {
    display: block;
  }

  #hero-content {
    height: 70%;
    background: none;
  }

  #hero-bg-rect {
    height: 60vh;
    width: 60%;
    bottom: -200px;
  }

  #hero-bg-img {
    z-index: 30;
    height: 45%;
  }
}

#scroll-to-video-btn {
  position: absolute;
  width: 214px;
  height: 143px;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: none;
  border: none;
  z-index: 30;
}

.arrow {
  position: absolute;
  top: 62px;
  left: 95px;
}

.title {
  font-size: 5rem;
  font-weight: 300;
  margin: 0;
}

.text {
  text-align: left;
  font-size: 2rem;
  font-weight: 300;
}

#video-wrapper {
  background-color: #0f0f0f;
  position: relative;
}

#video-wrapper iframe {
  border: 0;
  width: 100%;
  display: block;
  height: 700px;
}

@media screen and (max-width: 990px) {
  #video-wrapper iframe {
    height: 400px;
  }
}

.principles {
  text-align: center;
  margin-top: 20px;

  h2 {
    font-size: 50px;
    font-weight: 300;
  }

  span {
    font-size: 60px;
  }
}

.principles-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1280px) {
  .principles-blocks {
    grid-template-columns: 1fr;
  }
}

.block {
  display: flex;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #ffffff;
  padding: 0 60px;
  justify-content: space-between;
  height: 266px;

  .icon {
    margin: 10px;
  }

  .text {
    font-size: 28px;
    font-weight: 300;
  }
}

.creation {
  margin-top: 120px;
  margin-bottom: 110px;

  h2 {
    position: relative;
    z-index: 10;
    font-size: 5rem;
    font-weight: 300;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#footer-bg {
  width: 850px;
  height: 850px;
  background-color: #512129;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 100% 0 0 0;
}

.footer-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  color: #00000096;
  height: 105px;
  padding: 0 70px;
  border-radius: 24px;
  margin: 30px 0;
}
