@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box; /* Includes padding and border in the element's width and height */
}

html {
  margin: 0;
  padding: 0;
}

body {
  background: #111111;
  margin: 0;
  color: #f5f5f5;
  font-family: "DM Sans", sans-serif;
}

/* --- Intro Section --- */

video#intro-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto;
  background-position: center center;
  opacity: 0.85;
}

@media (min-aspect-ratio: 16/9) {
  video#intro-video-player {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  video#intro-video-player {
    width: 300%;
    left: -100%;
  }
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#intro {
  width: 700px;
  position: relative;
  margin: 70px 0px 0px 70px;
  z-index: 2;
  line-height: 35px;
}

#intro img.intro-logo {
  width: 530px;
  height: 214px;
  margin: 0px 0px 0px -10px;
  display: block;
}

#intro .subtitle {
  width: 500px;
  font-size: 32px;
  margin: 50px 0px 0px 0px;
  display: block;
  font-weight: 700;
}

#intro .subline {
  font-size: 22px;
  display: block;
  margin-top: 10px;
  line-height: 30px;
}

#intro .about-button {
  font-size: 22px;
  font-weight: bold;
  text-align: left;
  margin-top: 15px;
  text-decoration: none;
  background: none;
  color: #d900ff;
  border: none;
  font-family: inherit;
  clear: both;
  display: block;
  padding: 0px;
  cursor: pointer;
}

#intro .about-button:hover {
  text-decoration: underline;
}

#logo-ticker-container {
  display: flex;
  width: 100%;
  height: 290px;
  background: linear-gradient(to bottom, #00000000 0%, #000000 100%);
  position: absolute;
  bottom: 0;
  overflow: hidden;
  align-items: flex-end; /* aligns ticker to bottom inside this container */
  padding-bottom: 50px;
}

#logo-ticker {
  display: flex;
  white-space: nowrap;
  gap: 80px;
  height: 65px;
}

#logo-ticker img {
  height:65px;
}

#logo-ticker .crayola-logo {
  width: 129px;
  margin-top: 1px;
}

#logo-ticker .google-logo {
  width: 120px;
  margin-top:2px;
}

#logo-ticker .samsung-logo {
  width: 114px;
  margin-left: -10px;
}

#logo-ticker .tiktok-logo {
  width: 129px;
  margin-top: -2px;
}

#logo-ticker .moma-logo {
  width: 115px;
}

#logo-ticker .calvin-klein-logo {
  width: 139px;
}

#logo-ticker .apple-logo {
  width: 51px;
  transform: scale(0.8);
  margin-top: -5px;
}

#logo-ticker .nat-geo-logo {
  width: 143px;
  transform: scale(0.8);
}

#logo-ticker .teamlab-logo {
  width: 159px;
  margin-top: -2px;
}

#logo-ticker .beyonce-logo {
  width: 88px;
  margin-top:-5px;
}

#logo-ticker .nike-logo {
  width: 78px;
}

#logo-ticker .academy-logo {
  width: 97px;
  margin-top: -2px;
}

.logo-more-head-space {
  margin-top: 10px;
}

.block-container {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

/* --- About Section --- */

.about {
  background-color: #111111;
  min-height: 1000px;
}

.about-container {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.about-container img {
  display: block;
  margin: auto auto;
  border-radius: 50%;
}

.about-columns {
  display: flex;
  justify-content: center;
  column-gap: 5%;
}

.about-columns .left-column {
  width: 40%;
  max-width: 600px;
}

.about-container p {
  font-size: 20px;
}

.about-container p a {
  text-decoration: none;
  color: #d900ff;
  font-weight: bold;
}

.about-container p a:hover {
  text-decoration: underline;
}

.about-container ul {
  padding: 0px;
}

.about-container ul li {
  list-style: none;
  padding: 2px 0px;
}

.garrett-description {
  text-align: center;
  color: #a0a0a0;
  margin-bottom: 70px;
  font-weight: 100;
  font-size: 20px;
}

.social-icons {
  width: 235px;
  margin: 50px 0px 0px 0px;
  height: 53px;
}

.social-icons a {
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -999em;
  float: left;
  margin-right: 20px;
  opacity: 1;
  transition: 0.3s;
}

.social-icons a:hover {
  opacity: 0.5;
}

.social-icons a.insta {
  background: url(img/insta_btn.svg);
}

.social-icons a.linkedin {
  background: url(img/linkedin_btn.svg);
}

.social-icons a.pinterest {
  background: url(img/pinterest_btn.svg);
}

.social-icons a.x-twitter {
  background: url(img/x_btn.svg);
}

.social-icons a.tiktok {
  background: url(img/tiktok_btn.svg);
}

.social-icons a:first-child {
  margin-left: -4px;
}

.social-icons a:last-child {
  margin-right: 0px;
}

.about-columns a.email {
  color: #d900ff;
}

@media (max-width: 900px) {
  *,
  *::before,
  *::after {
    box-sizing: border-box; /* Includes padding and border in the element's width and height */
  }

  #container {
    width: 100vw;
  }

  #intro-video {
    min-height: 700px;
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  #logo-ticker-container {
    padding-bottom: 10px;
  }

  #logo-ticker {
    gap: 15px;
  }

  #logo-ticker img {
    transform: scale(0.65);
  }

  #intro {
    width: 100%;
    position: absolute;
    left: 0px;
    top: 50px;
    margin: 0px;
    font-size: 25px;
  }

  #intro img.intro-logo {
    width: 80%;
    height: auto;
    margin: auto;
  }

  #intro .subtitle,
  #intro .subline {
    width: 80%;
    margin: 0px auto;
  }

  #intro .subtitle {
    margin-top: 50px;
  }

  #intro .subline {
    margin-top: 20px;
  }

  .block-container {
    height: auto;
    float: left;
    padding: 25px;
    clear: both;
    width: 100%;
  }

  .about-button {
    display: none !important;
  }

  .about {
    min-height: 0px;
  }

  .about-container {
    position: relative;
    min-height: 0px;
    transform: none;
    top: 0px;
    left: 0px;
    padding: 20px 0px 0px 0px;
  }

  .about-container p {
    font-size: 20px;
  }

  .about-columns {
    display: block;
    margin-top: 60px;
  }

  .about-columns .left-column,
  .about-columns .right-column {
    width: 100%;
    max-width: none;
  }
}
