body {
  font-family: "Source Code Pro", monospace;
  font-weight: 400;
  font-size: 1.6rem;
  background: rgba(109, 209, 248, 0.932);
  color: #ececec;
  padding: 1rem; }

.header-primary {
  color: #ececec;
  text-transform: uppercase;
  text-shadow: 0.75rem 0.75rem 0.75rem #0a0a0a;
  backface-visibility: hidden;
  margin-bottom: 2rem; }
  .header-primary--main {
    display: block;
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: 1.5rem;
    text-align: center;
    padding: 2rem;
    animation-name: dropDown;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.78, 0.29, 0.57, 1.31); }
    @media (max-width: 37.5em) {
      .header-primary--main {
        font-size: 4rem;
        letter-spacing: 1.2rem;
        text-align: center; } }
  .header-primary--sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1.1rem;
    text-align: left; }
    @media (max-width: 37.5em) {
      .header-primary--sub {
        margin-top: 2rem;
        font-size: 2.5rem;
        letter-spacing: 1rem; } }

.videoOfAnimations {
  position: absolute;
  background-color: orangered; }

.heading-secondary {
  text-transform: uppercase;
  padding: 3rem; }

.heading-tertiary {
  text-transform: uppercase;
  text-align: right;
  padding: 3rem; }

.paragraph {
  text-align: right;
  letter-spacing: .2rem;
  padding: 3rem; }
  @media (max-width: 37.5em) {
    .paragraph {
      font-size: 2rem;
      display: none; } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  padding: .5rem; }
  @media (max-width: 56.25em) {
    body {
      padding: 0; } }
  @media (max-width: 37.5em) {
    body {
      padding: 1rem; } }

@keyframes dropDown {
  0% {
    opacity: 0;
    transform: translateY(-200rem); }
  90% { }
  100% {
    opacity: 100%;
    transform: translateY(1rem); } }

@keyframes animateEyes {
  0% {
    background-image: url(/reference/img/animationPageCharacterEyes.png); }
  10% { }
  20% { }
  30% { }
  40% { }
  50% { }
  60% { }
  70% { }
  80% { }
  90% { }
  100% {
    background-image: url(/reference/img/animationPageCharacterEyes.png); } }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-mid {
  margin-bottom: 4rem !important; }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }

.u-margin-top-big {
  margin-top: 8rem !important; }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-2-of-3 {
    width: calc( 2 * ((100% - 2 * 6rem) / 3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-4 {
    width: calc( 2 * ((100% - 3 * 6rem) / 4) + 6rem); }
  .row .col-3-of-4 {
    width: calc( 3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }

.header {
  height: 95vh;
  position: relative;
  background-size: cover;
  background-position: top;
  background-image: linear-gradient(to right bottom, rgba(109, 209, 248, 0.932), rgba(31, 62, 95, 0.911)), url(/reference/img/codeScreenShot.png);
  border-radius: 1rem; }
  .header__head--shot {
    display: block;
    position: relative;
    padding: 5rem;
    border-radius: 3rem; }
    @media (max-width: 37.5em) {
      .header__head--shot {
        padding: 0%; } }
  .header__headShot {
    top: 3rem;
    left: 3rem;
    height: 30rem;
    border-radius: 10rem;
    position: absolute;
    box-shadow: 1rem 1rem 3rem #0a0a0a; }
    @media (max-width: 37.5em) {
      .header__headShot {
        height: 10rem;
        top: 12rem; } }
  .header__headSHot--characterAnimation {
    background-image: url(/reference/img/animationPageCharacterEyes.png);
    display: block;
    animation-name: animateEyes;
    animation-duration: 100s;
    z-index: 100;
    background-color: orangered; }
  .header__logo-box {
    position: absolute;
    top: 6rem;
    left: 6rem; }
  .header__logo {
    height: 8rem; }
    @media (max-width: 37.5em) {
      .header__logo {
        height: 4rem;
        opacity: 50%; } }
  .header__text--box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }

.header-links {
  position: fixed;
  width: 100%; }
  .header-links__nav {
    top: 2rem;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 100; }
    @media (max-width: 37.5em) {
      .header-links__nav {
        width: 100%; } }
  .header-links__list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; }
  .header-links__list--item {
    padding: 2rem; }
    @media (max-width: 37.5em) {
      .header-links__list--item {
        padding: 0.5rem; } }
  .header-links__list--link:link, .header-links__list--link:visited {
    text-shadow: 0.75rem 0.75rem 0.75rem #0a0a0a;
    font-weight: 500;
    font-size: 2.5rem;
    padding: 1rem;
    color: #73ff00;
    text-decoration: none;
    text-transform: uppercase; }
    @media (max-width: 37.5em) {
      .header-links__list--link:link, .header-links__list--link:visited {
        font-size: 1.5rem;
        padding: 0%; } }
  .header-links__list--link:hover, .header-links__list--link:active {
    color: #2c0c46;
    transform: translateY(-0.5rem); }

.youTubeLink {
  position: relative; }

.modal {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: 200ms ease-in-out;
  position: fixed;
  border-bottom: 3px solid white;
  border-radius: 5px;
  z-index: 4500;
  width: 700px;
  max-width: 80%;
  text-shadow: 0.75rem 0.75rem 0.75rem #0a0a0a;
  color: #fffffb;
  box-shadow: 1rem 1rem 3rem #0a0a0a; }
  .modal.hidden {
    z-index: 4500;
    backface-visibility: hidden;
    transform: translate(50%, 50%) scale(0); }
  .modal__header {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #99acaf; }
  .modal__title {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 600; }
  .modal__close-button {
    cursor: pointer;
    color: #99acaf;
    border: none;
    outline: none;
    background: none;
    font-size: 3rem; }
  .modal__body {
    padding: 10px 15px;
    line-height: 3rem;
    letter-spacing: 0.1rem;
    font-size: 3rem;
    display: flex; }
    @media (max-width: 37.5em) {
      .modal__body {
        line-height: 2rem;
        padding: 0%; } }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  z-index: 500; }
  .overlay.hidden {
    display: none; }

.composition {
  position: relative; }
  .composition__photo {
    width: 50%;
    box-shadow: 0 1.5rem 4rem rgba(7, 6, 6, 0.6);
    border-radius: 0.5rem;
    position: absolute;
    z-index: 10;
    transition: all 0.2s;
    outline-offset: 0.2rem; }
    @media (max-width: 37.5em) {
      .composition__photo {
        width: 100%; } }
    .composition__photo--p1 {
      left: 0;
      top: -5rem; }
    .composition__photo--p2 {
      right: 5rem;
      top: -2rem; }
      @media (max-width: 37.5em) {
        .composition__photo--p2 {
          margin-top: 2rem;
          width: 70%;
          top: 2rem;
          left: 3rem; } }
    .composition__photo--p3 {
      left: 2rem;
      top: 15rem; }
    .composition__photo--p4 {
      left: 30%;
      top: 25rem; }
      @media (max-width: 37.5em) {
        .composition__photo--p4 {
          margin-top: 2rem;
          top: 25rem;
          left: 25%; } }
    .composition__photo--p5 {
      left: 10%;
      top: 45rem; }
    .composition__photo--p6 {
      left: 15rem;
      top: 60rem; }
      @media (max-width: 37.5em) {
        .composition__photo--p6 {
          top: 50rem;
          left: 1rem; } }
    .composition__photo:hover {
      outline: 0.5rem solid rgba(111, 0, 255, 0.15);
      transform: scale(2) translateY(-0.5rem);
      box-shadow: 0 1.5rem 4rem rgba(255, 251, 0, 0.4);
      z-index: 20; }
      @media (max-width: 37.5em) {
        .composition__photo:hover {
          transform: scale(1.55) translateY(-0.5rem); } }
  composition:hover .composition__photo:not(:hover):hover composition:hover .composition__photo:not(:hover)__photo:not(:hover) {
    transform: scale(0.9); }

.slider {
  max-width: 100rem;
  height: 50rem;
  margin: 0 auto;
  position: relative;
  /* IN THE END */
  overflow: hidden; }

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* THIS creates the animation! */
  transition: transform 1s; }

.slide > img {
  /* Only for images that have different size than slide */
  width: 100%;
  height: 100%;
  object-fit: cover; }
  @media (max-width: 37.5em) {
    .slide > img {
      height: 60%; } }

.slider__btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  color: #333;
  border-radius: 50%;
  height: 5.5rem;
  width: 5.5rem;
  font-size: 3.25rem;
  cursor: pointer; }

.slider__btn--left {
  left: 6%;
  transform: translate(-50%, -50%); }

.slider__btn--right {
  right: 6%;
  transform: translate(50%, -50%); }

.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex; }

.dots__dot {
  border: none;
  background-color: #ffffff;
  opacity: 0.7;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  margin-right: 1.75rem;
  cursor: pointer;
  transition: all 0.5s;
  /* Only necessary when overlying images */
  /* box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7); */ }

.dots__dot:last-child {
  margin: 0; }

.dots__dot--active {
  /* background-color: #fff; */
  background-color: #888;
  opacity: 1; }

/* TESTIMONIALS */
.testimonial {
  width: 65%;
  position: relative; }

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -5.7rem;
  left: -6.8rem;
  line-height: 1;
  font-size: 20rem;
  font-family: inherit;
  color: var(--color-primary);
  z-index: -1; }

.testimonial__header {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem; }

.testimonial__text {
  font-size: 1.7rem;
  margin-bottom: 3.5rem;
  color: #666; }

.testimonial__author {
  margin-left: 3rem;
  font-style: normal;
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  column-gap: 2rem; }

.testimonial__photo {
  grid-row: 1 / span 2;
  width: 6.5rem;
  border-radius: 50%; }

.testimonial__name {
  font-size: 1.7rem;
  font-weight: 500;
  align-self: end;
  margin: 0; }

.testimonial__location {
  font-size: 1.5rem; }

.section__title--testimonials {
  margin-bottom: 4rem; }

.section {
  padding: 15rem 5rem;
  margin-top: .2rem;
  border-radius: 1rem;
  text-align: center;
  background-size: cover;
  background-image: linear-gradient(to top right, rgba(31, 62, 95, 0.911), rgba(111, 0, 255, 0.15));
  color: #ececec; }
  .section--hidden {
    opacity: 0;
    transform: translateY(15rem); }
