@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;900&display=swap');
html {
  overflow-x: hidden;
  box-sizing: border-box;
}

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

/* Reset margins and paddings on most elements */
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
pre,
blockquote,
figure,
hr {
  margin: 0;
  padding: 0;
}

/* Removes discs from ul */
ul {
  list-style: none;
}

/* @font-face {
  font-family: Gotham;
  src: url(/assets/gotham.otf);
} */

body {
  overflow-x: hidden;
  background: linear-gradient(
    107.11deg,
    #f0d800 0%,
    #ffeb38 59.88%,
    #ffd43e 113.34%
  );
  /* background: linear-gradient(107.11deg, #FDC707 0%, #FFEB38 59.88%, #FFBD3E 113.34%); */

  height: 100vh;
  width: 100%;
}

a {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(42, 37, 13, 1);
  transition: 0.1s all;
}

a:hover {
  transition: 0.1s all;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
}

.container {
  display: flex;
  max-width: 1440px;
  height: 100%;
  width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60vw;
  padding-right: 100px;
}

.brandpitt__desktop {
  background-image: url(/assets/brand-pitt.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  margin-top: 120px;
  width: 40vw;
  transform: translateX(-500px);
}

.brandpitt__mobile {
  height: 180px;
}

.mobile-mover {
  transform: translateY(180px);
  translate: transform 1s;
}

.brandpitt__mobile-container {
  display: flex;
  justify-content: center;
  display: none;
}

.body-text {
  margin-top: 18px;
  margin-bottom: 46px;
  max-width: 715px;
  opacity: 0;
  transition: opacity 2s;
}

.body-text span {
  font-weight: 600;
}
.mover {
  transform: translateX(0px);
  transition: transform 1s;
}

.contact {
  opacity: 0;
  transition: opacity 2s;
}

.title {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: 83px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 0;
  transition: opacity 2s;
}

.reveal {
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .mover {
    transform: translateX(-500px);
  }

  .container {
    flex-direction: column;
    justify-content: space-between;
  }

  .content {
    width: 100vw;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: -80px;
  }

  .brandpitt__mobile-container {
    display: flex;
  }

  .mobile-mover {
    transition: all 1s;
    transform: translateY(0px);
  }
  .title {
    font-size: 48px;
    line-height: 57.2px;
  }
  .body-text {
    font-size: 20px;
    line-height: 130%;
  }
}

.custom-height {
  height: 100vh;
  /*  Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
}
