@font-face {
    font-family: 'Instrument Sans';
    src: url('InstrumentSans-Regular.woff2') format('woff2'),
        url('InstrumentSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('InstrumentSans-SemiBold.woff2') format('woff2'),
        url('InstrumentSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
  color: #fff;
  background: linear-gradient(338deg, #2349C8 5.18%, rgba(95, 95, 132, 0.00) 85.83%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%), #111 100% / cover no-repeat;
  background-blend-mode: color, normal, normal;
  background-attachment: fixed;

  font-family: 'Instrument Sans', Arial, Helvetica, sans-serif;
}
.bubble1 {
  display:none;
}
@media (min-width: 576px) {
  .bubble1 {
    display: block;
    position: fixed;
    left: -2rem;
    top: 8.5rem;
    width: 40%;
    height: 40%;
    background-image: url("bubble1.svg");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
  }
}
.bubble2 {
  position: fixed;
  right: -2rem;
  bottom: 0;
  width: 50%;
  height: 50%;
  background-image: url("bubble2.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}
@media (min-width: 1200px) {
  .bubble1 {
    left: 0;
  }
  .bubble2 {
    right: 0;
  }
  .bubble1, .bubble2 {
    width: 70%;
    height: 70%;
  }
}
p {
  margin: 0;
}
p.lead {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
a {
  color: #fff;
  text-decoration: none;
}
.logo {
  position: relative;
  z-index: 1;
  padding: 2.1875rem;
  margin-bottom: 6.25rem;
}
.logo img {
    width: 150px;
  }
@media (min-width: 768px) {
  .logo {
    padding: 2.1875rem 4.3125rem;
  }
  .logo img {
    width: 270px;
  }
}
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.0625rem;
}
.headline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.0625rem;
}
h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.1rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 6rem;
    letter-spacing: -0.18rem;
  }
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 1200px) {
  .contact {
    gap: 5rem;
    flex-direction: row;
  } 
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-item__icon {
  padding-top: 1.25rem;
}
.contact-item__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
@media (min-width: 768px) {
  .contact-item__icon {
    padding-top: 1.25rem;
  }
  .contact-item__icon svg {
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1/1;
  }
}
.contact-item__label {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 120%;
}
.contact-item__content {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
}
@media (min-width: 768px) {
  .contact-item__label {
    font-size: 1rem;
    letter-spacing: -0.02rem;
  }
  .contact-item__content {
    font-size: 2rem;
  }
}
.footer {
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 1;
}