:root {
  --text--primary: var(--black);
  --brand: #2400ff;
  --alpha: rgba(0, 0, 0, 0);
  --text--secondary: rgba(0, 0, 0, .72);
  --white: white;
  --black: black;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

p {
  color: var(--text--primary);
  letter-spacing: 1.6px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: inline-block;
}

.section {
  margin-top: 16px;
  margin-bottom: 16px;
}

.body {
  color: var(--brand);
  -webkit-text-stroke-color: var(--brand);
  margin: 0 32px;
  font-family: Alpino, sans-serif;
  font-size: 120px;
  line-height: 120px;
}

.topnav {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 32px;
  padding-bottom: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.contactcircle {
  width: 14vw;
}

.logo {
  width: 7vw;
  cursor: pointer;
  transition: all .2s;
}

.logo:hover {
  opacity: 1;
  filter: blur(12px);
  outline-offset: 0px;
  outline: 150px red;
  transform: translate(0)rotate(0)skew(0deg, 24deg)scale(1.1);
}

.logo:active {
  transform: scale(.9);
}

.logo:focus {
  transform: scale(1.1);
}

.socials {
  z-index: auto;
  width: 40px;
  height: auto;
  grid-column-gap: 32px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  margin: 32px;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  transform: rotate(0);
}

.social-links {
  width: 40px;
  height: 40px;
  max-width: 40px;
  transition: all .2s;
}

.social-links:hover {
  transform: scale(1.2);
}

.social-links:active {
  transform: scale(.9);
}

.social-links:focus {
  transform: scale(1.2);
}

.link-block {
  height: auto;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.image {
  z-index: 2;
  padding: 32px;
  position: fixed;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.contact {
  width: 250px;
  height: 250px;
  background-color: var(--alpha);
  transform-style: preserve-3d;
  border: 0 solid #000;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  margin: 24px;
  padding: 0;
  transition: all .2s;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
  transform: scale(1.2);
}

.contact:hover {
  transform: scale(1.25);
}

.contact:active {
  transform: scale(1.1);
}

.contact:focus {
  transform: scale(1.25);
}

.section-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 24px;
  display: grid;
}

.jumbo {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 56px;
  display: grid;
}

.jumbo-title {
  color: var(--brand);
  font-size: 64px;
  line-height: 72px;
}

.image-2 {
  min-height: 100px;
  margin-top: -190px;
}

.paragraph-2 {
  max-width: 600px;
  letter-spacing: .8px;
  margin-bottom: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
}

.paragraph-2 a {
  text-decoration: none;
  color: #2400ff;
}

.image-3 {
  width: 100%;
  cursor: auto;
  margin-top: -119px;
  margin-left: 0;
}

.div-block {
  width: 10vw;
  height: 16px;
  background-color: var(--alpha);
  display: block;
  position: absolute;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  grid-column-gap: 49px;
  grid-row-gap: 49px;
  text-align: center;
  flex-direction: column;
  flex: 1;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.text-block {
  color: var(--text--secondary);
  font-family: Alpino, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

@media screen and (min-width: 1440px) {
  .contactcircle {
    width: 12vw;
  }

  .logo {
    width: 7vw;
  }

  .social-links {
    transition-duration: .1s;
  }

  .social-links:hover {
    transform: scale(1.2);
  }

  .social-links:active {
    transform: scale(.95);
  }

  .social-links:focus {
    transform: scale(1.2);
  }

  .jumbo {
    margin-top: 32px;
  }

  .jumbo-title {
    font-size: 80px;
    line-height: 88px;
  }

  .paragraph-2 {
    max-width: 700px;
    margin-bottom: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .image-3 {
    width: 100%;
    max-height: 60vh;
    margin-top: -138px;
  }
}

@media screen and (max-width: 991px) {
  .section {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .body {
    margin-bottom: 0;
  }

  .topnav {
    margin-bottom: 19px;
    padding-top: 24px;
  }

  .contactcircle {
    width: 20vw;
  }

  .logo {
    width: 12vw;
    font-size: 14px;
  }

  .socials {
    z-index: 0;
    margin-left: 32px;
    margin-right: 32px;
    position: fixed;
  }

  .contact {
    width: 250px;
    height: 250px;
  }

  .section-2, .jumbo {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .jumbo-title {
    padding-right: 32px;
    font-size: 56px;
    line-height: 60px;
  }

  .paragraph-2 {
    font-size: 20px;
    font-weight: 500;
  }

  .image-3 {
    height: 400px;
    margin-top: -101px;
  }
}

@media screen and (max-width: 767px) {
  .body {
    margin-left: 32px;
    margin-right: 32px;
  }

  .topnav {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -8px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .contactcircle {
    width: 20vw;
    max-width: 100%;
  }

  .logo {
    width: 9vw;
    margin-left: 0;
    padding-left: 0;
  }

  .socials {
    height: 240px;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 8px;
    margin-left: 16px;
    margin-right: 24px;
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .contact {
    width: 200px;
    height: 200px;
    transform: scale3d(1none, 1none, 1none);
    margin-top: 0;
    margin-right: 0;
  }

  .contact:active {
    transform: scale(.9);
  }

  .section-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-left: 80px;
  }

  .jumbo {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 64px;
    padding-left: 80px;
  }

  .jumbo-title {
    margin-left: -40px;
    margin-right: 0;
    padding-left: 0;
    padding-right: 23px;
    font-size: 40px;
    line-height: 48px;
  }

  .paragraph-2 {
    padding-left: 0;
  }

  .image-3 {
    height: 300px;
    margin-top: -88px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 479px) {
  .body {
    margin-left: 0;
    margin-right: 0;
    font-size: 64px;
    line-height: 72px;
  }

  .topnav {
    margin-top: 0;
    margin-bottom: 16px;
    margin-left: 2px;
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .contactcircle {
    width: 40vw;
  }

  .logo {
    width: 20vw;
  }

  .logo:hover {
    opacity: 1;
    pointer-events: auto;
  }

  .socials {
    margin-bottom: 0;
    margin-left: 16px;
  }

  .social-links {
    max-width: 32px;
  }

  .image {
    opacity: 1;
    pointer-events: auto;
    cursor: auto;
    mix-blend-mode: normal;
    padding: 9px;
  }

  .contact {
    width: 210px;
    height: 150px;
    margin-top: 24px;
    margin-left: 24px;
    transform: none;
  }

  .contact:hover {
    transform: scale(1.1);
  }

  .contact:active {
    transform: scale(.9);
  }

  .contact:focus {
    transform: scale(1.1);
  }

  .section-2 {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-left: 88px;
    padding-right: 16px;
  }

  .jumbo {
    grid-template-columns: 1fr;
    margin-top: 125px;
    padding-left: 88px;
    padding-right: 16px;
  }

  .jumbo-title {
    margin-left: 16px;
    padding-left: 0;
    padding-right: 0;
    font-size: 40px;
    line-height: 48px;
  }

  .paragraph-2 {
    letter-spacing: .6px;
    font-size: 20px;
    font-weight: 500;
  }

  .image-3 {
    height: 50vw;
    margin-top: -34px;
  }

  .utility-page-content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

#w-node-_0dd83660-22c1-1abf-4ee4-4b62e222e7b7-d97d85c4 {
  grid-area: 2 / 5 / 3 / 12;
}

#w-node-c6a9f1b6-1613-6024-ab95-6efbc7458c20-d97d85c4 {
  grid-area: 1 / 3 / 2 / 9;
}

#w-node-_2e11b755-8930-c585-ac9c-fa1c070e1953-d97d85c4 {
  grid-area: 1 / 5 / 2 / 12;
}

@media screen and (min-width: 1440px) {
  #w-node-_0dd83660-22c1-1abf-4ee4-4b62e222e7b7-d97d85c4 {
    grid-column-end: 11;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_0dd83660-22c1-1abf-4ee4-4b62e222e7b7-d97d85c4 {
    grid-column: 3 / 9;
  }

  #w-node-c6a9f1b6-1613-6024-ab95-6efbc7458c20-d97d85c4 {
    grid-column: 2 / 7;
  }

  #w-node-_2e11b755-8930-c585-ac9c-fa1c070e1953-d97d85c4 {
    grid-column: 3 / 8;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_0dd83660-22c1-1abf-4ee4-4b62e222e7b7-d97d85c4 {
    grid-column: 1 / 5;
  }

  #w-node-c6a9f1b6-1613-6024-ab95-6efbc7458c20-d97d85c4 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_2e11b755-8930-c585-ac9c-fa1c070e1953-d97d85c4 {
    grid-column: 1 / 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_0dd83660-22c1-1abf-4ee4-4b62e222e7b7-d97d85c4 {
    grid-row-end: 3;
    grid-column-end: 2;
  }

  #w-node-c6a9f1b6-1613-6024-ab95-6efbc7458c20-d97d85c4, #w-node-_2e11b755-8930-c585-ac9c-fa1c070e1953-d97d85c4 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


@font-face {
  font-family: 'Alpino';
  src: url('../fonts/Alpino-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Alpino';
  src: url('../fonts/Alpino-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Alpino';
  src: url('../fonts/Alpino-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Alpino';
  src: url('../fonts/Alpino-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Alpino';
  src: url('../fonts/Alpino-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Alpino';
  src: url('../fonts/Alpino-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
