
/* All delay classes will take half the time to start */
:root {
  --animate-delay: 0.5s;
}

body, html {
  scroll-behavior: smooth;
}

header.header-landing-page .header-top {
  padding: 1rem;
}

header.header-landing-page #global-branding {
  width: 220px;
  height: 24px;
}

header.header-landing-page #global-nav a {
  color: unset; 
}

#global-nav .button {
  padding: 0.5rem 0.75rem;
  font-size: var(--text-size-xs);
}

.banner h1 {
  font-size: var(--text-size-6xl);
  color: var(--titan-orange);
  /* text-transform: uppercase; */
  font-weight: 800;
  text-align: center;
  line-height: 1.25em;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
}

.banner p {
  font-size: var(--text-size-xl);
  font-weight: 700;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, .8);
}

#scroll-down-button {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, .8);
  color: white;
  padding: 1em;
  display: block;
}

#ad-profiles {
  padding: 5rem 0;
}

#ad-profiles .card {
  margin: 1rem;
  display: flex;
  flex-direction: column;
}

#ad-profiles .card-image {
  position: relative;
  background-color: var(--titan-blue);
}

#ad-profiles .card-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 5;
  width: 60%;
  padding: 3.5%;
  text-align: center;
}

#ad-profiles .card.col-3 .card-title {
  width: 65%;
  padding: 2.5%;
}

#ad-profiles .card-title span {
  display: block;
  color: white;
  font-weight: 800;
  line-height: 1.25em;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
  font-size: 1.25rem;
}

#ad-profiles .card.col-3 .card-title span {
  font-size: 1rem;
}

#ad-profiles .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

#ad-profiles .cutout-image {
  position: absolute;
  right: 9%;
  bottom: 0;
  z-index: 1;
  height: 120%;
  width: auto;
}

#ad-profiles .card.col-3 .cutout-image {
  right: 5%;
  height: 110%;
}

#colleges {
  padding: 0 0 5rem 0;
  margin-top: 200px;
  color: white;
}

#colleges h2 {
  color: white;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 auto 50px auto;
}

#opportunity-video {
  position: relative;
  top: -200px;
  margin: 0 auto -130px auto;
  max-width: 900px;
  width: 90%;
}

.college-link {
  text-decoration: none;
  padding: 1em;
  display: block;
  text-align: center;
}

.college-link:hover .link-text {
  border-bottom-color: var(--titan-orange);
}

.college-link img {
  display: block;
  margin: 10px auto;
  /* border-radius: 50%; */
  overflow: hidden;
  width: 85%;
  border: 1px solid #174d89;
  border-radius: 50%;
  transition: all 300ms ease-out;
}

.college-link:hover img {
  border-color: var(--titan-orange);
}

.college-link .link-text { 
  margin-top: 20px;
  font-weight: 400;
  display: inline-block;
  padding: .5em;
  color: white;
  font-size: var(--text-size-sm);
  border-bottom: 1px solid transparent;
  transition: all 300ms ease-out;
}

#cta {
  padding: 10rem 0;
}

#cta .cta-links {
  list-style: none;
}

#cta .cta-links li {
  margin: 0 10px;
  display: inline-block;
}

@media screen and (max-width: 820px) {

  #hero-banner .banner-content {
    width: 90% !important;
  }

  #hero-banner .banner-content h1 {
    font-size: 12vw;
  }

  #ad-profiles .card {
    margin-bottom: 3rem;
  }

  #opportunity-video {
    top: -100px;
    margin: 0 auto -50px auto;
  }

}

@media (max-width: 767px) {
  html,body {
    padding-bottom:0;
  }
}