@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  margin: 0;
}
body * {
  box-sizing: border-box;
}

.homepage__hero {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.homepage__hero.loaded .logo-top path {
  animation: fadeInUp 1s ease forwards;
}
.homepage__hero.loaded-complete .logo-wrap .logo-bot,
.homepage__hero.loaded-complete .logo-wrap .circle {
  opacity: 1;
}
.homepage__hero.loaded-complete .logo-wrap .circle::before {
  animation: highlight 0.92s ease-out forwards;
  animation-delay: 0.65s;
}
.homepage .logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 8vh;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  .homepage .logo-wrap {
    width: 100%;
  }
}
.homepage .logo-wrap svg {
  width: 600px;
  height: 306px;
}
@media only screen and (max-width: 960px) {
  .homepage .logo-wrap svg {
    width: calc(100vw - 48px);
    height: 46vw;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes highlight {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(100%);
  }
  10% {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0);
  }
  99% {
    opacity: 1;
    transform: rotate(-45deg) translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: rotate(-45deg) translateY(-100%);
  }
}
.homepage .logo-wrap .logo-top path {
  opacity: 0;
  transform: translateY(12px);
}
.homepage .logo-wrap .logo-top path:nth-child(1) {
  animation-delay: 1.19s;
}
.homepage .logo-wrap .logo-top path:nth-child(2) {
  animation-delay: 1.02s;
}
.homepage .logo-wrap .logo-top path:nth-child(3) {
  animation-delay: 0.85s;
}
.homepage .logo-wrap .logo-top path:nth-child(4) {
  animation-delay: 0.68s;
}
.homepage .logo-wrap .logo-top path:nth-child(5) {
  animation-delay: 0.51s;
}
.homepage .logo-wrap .logo-top path:nth-child(6) {
  animation-delay: 0.34s;
}
.homepage .logo-wrap .logo-top path:nth-child(7) {
  animation-delay: 0.17s;
}
.homepage .logo-wrap .logo-top path:nth-child(8) {
  animation-delay: 0s;
}
.homepage .logo-wrap .logo-bot {
  opacity: 0;
  transition: all 1.25s;
}
.homepage .logo-wrap .circle {
  opacity: 0;
  transition: all 1.25s;
  position: absolute;
  bottom: 8vh;
  left: 0;
  background-color: black;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.homepage .logo-wrap .circle::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, rgb(78, 205, 243));
  transform: rotate(-45deg) translateY(100%);
  transition: all 1.25s ease;
  opacity: 1;
}
@media only screen and (max-width: 960px) {
  .homepage .logo-wrap .circle {
    width: 8vw;
    height: 8vw;
    left: 24px;
  }
}
.homepage__main {
  margin-top: -63px;
  position: relative;
  z-index: 10;
  opacity: 0;
  transition: all 0.5s;
}
.homepage__main.loaded {
  opacity: 1;
}
.homepage__main .tabs {
  margin-left: auto;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  position: sticky;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 960px) {
  .homepage__main .tabs {
    padding: 0;
  }
}
.homepage__main .tabs button {
  background-color: transparent;
  border: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.125em;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.homepage__main .tabs button:hover {
  background-color: #cff0fb;
}
.homepage__main .tabs button.active {
  background-color: #cff0fb;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media only screen and (max-width: 960px) {
  .homepage__main .tabs button {
    font-size: 20px;
    padding: 10px 20px;
  }
}
.homepage__main .main-content {
  background-color: #cff0fb;
  min-height: 100vh;
  display: none;
}

.content-wrapper,
.content-full {
  padding: 216px 48px;
}
@media only screen and (max-width: 1280px) {
  .content-wrapper,
  .content-full {
    padding: 180px 24px;
  }
}
@media only screen and (max-width: 960px) {
  .content-wrapper,
  .content-full {
    padding: 120px 24px;
  }
}
.content-wrapper h2,
.content-full h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  letter-spacing: 0.125em;
  text-align: center;
  margin: 0 0 162px;
}
@media only screen and (max-width: 960px) {
  .content-wrapper h2,
  .content-full h2 {
    font-size: 58px;
    margin: 0 0 80px;
    letter-spacing: 0.1em;
  }
}
.content-wrapper h3,
.content-full h3 {
  margin: 0 0 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 66px;
  letter-spacing: -0.02em;
  color: black;
  position: relative;
  font-weight: normal;
  font-style: italic;
}
@media only screen and (max-width: 960px) {
  .content-wrapper h3,
  .content-full h3 {
    font-size: 48px;
  }
}
.content-wrapper h3 a,
.content-full h3 a {
  color: black;
  text-decoration: none;
  position: relative;
}
.content-wrapper h3 a span,
.content-full h3 a span {
  position: relative;
  z-index: 2;
}
.content-wrapper h3 a::after,
.content-full h3 a::after {
  display: inline-block;
  content: " ";
  width: 100%;
  height: 19px;
  background: white;
  position: absolute;
  bottom: 8px;
  left: 0;
  z-index: 1;
  transition: all 0.3s;
}
@media only screen and (max-width: 960px) {
  .content-wrapper h3 a::after,
  .content-full h3 a::after {
    height: 12px;
  }
}
@media only screen and (min-width: 961px) {
  .content-wrapper h3 a:hover::after,
  .content-full h3 a:hover::after {
    height: 40px;
  }
}
.content-wrapper p,
.content-full p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  max-width: 660px;
  width: 100%;
  margin: 0 0 0 auto;
}
.content-wrapper p + p,
.content-full p + p {
  margin-top: 24px;
}
.content-wrapper p a,
.content-full p a {
  color: black;
  text-decoration-color: white;
  transition: all 0.3s;
}
.content-wrapper p a:hover,
.content-full p a:hover {
  text-decoration-color: black;
}
.content-wrapper p a.cta,
.content-full p a.cta {
  display: block;
  margin-top: 6px;
  font-size: 125%;
}
.content-wrapper > p,
.content-full > p {
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  max-width: 720px;
}

.content-full {
  padding: 0 24px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.content-full h2 {
  margin-bottom: 48px;
}

.project, .about-block {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 960px) {
  .project, .about-block {
    display: block;
  }
}
.project .col, .about-block .col {
  width: 66%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 960px) {
  .project .col, .about-block .col {
    width: 100%;
  }
}
.project .col + .col, .about-block .col + .col {
  width: 44%;
  padding-left: 0;
  padding-right: 48px;
  padding-bottom: 24px;
  border-right: solid 6px white;
  border-bottom: solid 6px white;
  margin-left: 48px;
}
@media only screen and (max-width: 960px) {
  .project .col + .col, .about-block .col + .col {
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
    padding-right: 24px;
    border-right: solid 3px white;
    border-bottom: solid 3px white;
  }
}
.project .col img, .about-block .col img {
  display: block;
  width: 100%;
  height: auto;
}
.project .col h4, .about-block .col h4 {
  max-width: 660px;
  width: 100%;
  margin: 0 0 48px auto;
  font-size: 26px;
  letter-spacing: 0.05em;
  font-style: normal;
  font-family: "Bebas Neue", sans-serif;
  padding-top: 6px;
  text-align: right;
}
@media only screen and (max-width: 960px) {
  .project .col h4, .about-block .col h4 {
    padding-top: 0;
    margin: 0 0 24px 0;
    font-size: 20px;
    text-align: left;
  }
}
.project .col h4 span, .about-block .col h4 span {
  font-style: italic;
}
.project .col > a, .about-block .col > a {
  display: block;
}
@media only screen and (max-width: 1280px) {
  .project .col > a, .about-block .col > a {
    padding-top: 66%;
    position: relative;
  }
}
@media only screen and (max-width: 960px) {
  .project .col > a, .about-block .col > a {
    padding-top: 0;
  }
}
.project .col > a img, .about-block .col > a img {
  display: block;
}
@media only screen and (max-width: 1280px) {
  .project .col > a img, .about-block .col > a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (max-width: 960px) {
  .project .col > a img, .about-block .col > a img {
    position: static;
  }
}
@media only screen and (max-width: 960px) {
  .project .col p, .about-block .col p {
    margin-left: 0;
  }
}
.project + .project, .about-block + .project, .project + .about-block, .about-block + .about-block {
  margin-top: 288px;
}
@media only screen and (max-width: 960px) {
  .project + .project, .about-block + .project, .project + .about-block, .about-block + .about-block {
    margin-top: 80px;
  }
}

.about-block {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
.about-block .col:first-child {
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .about-block .col:first-child {
    width: 100%;
  }
}
.about-block .col:first-child img + img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.about-block .col:first-child img:hover + img {
  opacity: 1;
}
.about-block .col + .col {
  width: 50%;
  border: 0;
  padding-right: 0;
}
@media only screen and (max-width: 960px) {
  .about-block .col + .col {
    width: 100%;
  }
}
.about-block .col + .col p {
  font-size: 19px;
}
.about-block + .about-block {
  margin-top: 162px;
}
@media only screen and (max-width: 960px) {
  .about-block + .about-block {
    margin-top: 80px;
  }
}
.about-block:nth-child(odd) .col + .col {
  order: -1;
  margin-left: 0;
  margin-right: 50px;
}
/*# sourceMappingURL=style.css.map */
