@font-face {
  font-family: "Wt Kormelink Roman Web 1";
  src: url('../fonts/WT_Kormelink_Roman_WEB_1.1.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Wt Kormelink Italic;
  src: url('../fonts/WT_Kormelink_Italic.woff') format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Switzer;
  src: url('../fonts/Switzer-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #000;
  background-color: #d9dfd1;
  font-family: "Wt Kormelink Roman Web 1", sans-serif;
  font-size: 18px;
  line-height: 130%;
}

h1 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Wt Kormelink Roman Web 1", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 115%;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

p {
  margin-bottom: 0;
}

.grid {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.h1-home {
  z-index: 1;
  padding-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: clamp(40px, 2.5vw, 55px);
  display: flex;
  position: absolute;
}

.profile-img {
  opacity: .9;
  mix-blend-mode: multiply;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.bio-wrap {
  z-index: 2000;
  background-color: #fcfbfa;
  align-items: flex-start;
  height: auto;
  min-height: 50svh;
  padding-top: 24px;
  padding-bottom: 24px;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.bio-text {
  font-size: 18px;
  line-height: 140%;
}

.profile-img-wrap {
  pointer-events: none;
  background-color: #d9dfd1;
  width: 100%;
  padding-top: 130%;
  position: relative;
}

.profile-img-mask {
  z-index: 1;
  background-color: #d9dfd1;
  display: none;
  position: absolute;
  inset: 0%;
}

.page-wrap {
  width: 100vw;
  height: 100svh;
  position: fixed;
  inset: 0%;
}

.profile-btns-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
  top: auto;
  bottom: 24px;
  left: auto;
}

.btns-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.btn-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #000;
  cursor: pointer;
  text-decoration: none;
  display: flex;
}

.btn-link:hover {
  font-family: Wt Kormelink Italic, sans-serif;
}

.btn-link.email.animation {
  animation-delay: .75s;
}

.btn-link.close-btn {
  font-family: Wt Kormelink Italic, sans-serif;
  transition: all .2s;
}

.btn-link.close-btn:hover {
  opacity: .5;
}

.btn-link.animation {
  animation-delay: .5s;
}

.close-x {
  transform: rotate(45deg);
}

.css-styling {
  display: none;
}

.bio-text-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.animation {
  flex-flow: row;
  animation-name: animation;
  animation-duration: .7s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-play-state: running;
  animation-delay: 0s;
  animation-fill-mode: both;
  display: flex;
}

@media screen and (max-width: 991px) {
  .grid {
    grid-column-gap: 20px;
  }

  .h1-home {
    align-items: flex-start;
    font-size: 32px;
    display: flex;
  }

  .bio-text {
    column-gap: 20px;
    font-size: 18px;
    line-height: 130%;
  }
}

@media screen and (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .h1-home {
    width: 100%;
  }

  .btns-wrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .bio-text-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    place-items: start center;
  }
}

@media screen and (max-width: 479px) {
  .grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .h1-home {
    letter-spacing: -.25px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 24px;
  }

  .h1-home.animation {
    font-size: 22px;
  }

  .bio-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: scroll;
  }

  .bio-text {
    column-count: 1;
    font-size: 18px;
    line-height: 130%;
  }

  .profile-btns-wrap {
    bottom: 20px;
  }

  .bio-text-wrap {
    padding-top: 64px;
  }
}

#w-node-_79fef95f-f603-a7e7-8c8b-1108345c2e09-fd5c9d03 {
  grid-area: 1 / 7 / 2 / 13;
  align-self: end;
}

#w-node-_830f11a3-0a2a-2c63-07e9-1d031214add8-fd5c9d03 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_830f11a3-0a2a-2c63-07e9-1d031214adda-fd5c9d03 {
  grid-area: 1 / 1 / 2 / 3;
  align-self: start;
}

#w-node-_5baa09e0-3f50-8519-c199-c691662585a0-fd5c9d03 {
  grid-area: 1 / 4 / 2 / 7;
  place-self: start;
}

#w-node-e256a34f-a487-b49a-cdd1-63213cd68c13-fd5c9d03 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_93efefc6-1d61-7f21-70c2-3965dec36961-fd5c9d03 {
  grid-area: 1 / 10 / 2 / 11;
  place-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_79fef95f-f603-a7e7-8c8b-1108345c2e09-fd5c9d03 {
    grid-area: 1 / 1 / 2 / 13;
    align-self: end;
  }

  #w-node-_830f11a3-0a2a-2c63-07e9-1d031214adda-fd5c9d03 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: start;
  }

  #w-node-_5baa09e0-3f50-8519-c199-c691662585a0-fd5c9d03 {
    grid-area: 1 / 4 / 2 / 7;
    place-self: start;
  }

  #w-node-e256a34f-a487-b49a-cdd1-63213cd68c13-fd5c9d03 {
    grid-area: 1 / 1 / 2 / 11;
  }

  #w-node-_93efefc6-1d61-7f21-70c2-3965dec36961-fd5c9d03 {
    grid-area: 1 / 10 / 2 / 13;
    place-self: start end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_5baa09e0-3f50-8519-c199-c691662585a0-fd5c9d03 {
    grid-area: 1 / 4 / 2 / 7;
    place-self: start;
  }

  #w-node-e256a34f-a487-b49a-cdd1-63213cd68c13-fd5c9d03 {
    grid-area: 1 / 1 / 2 / 6;
    align-self: start;
  }

  #w-node-_93efefc6-1d61-7f21-70c2-3965dec36961-fd5c9d03 {
    grid-area: 1 / 6 / 2 / 7;
    place-self: start end;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_830f11a3-0a2a-2c63-07e9-1d031214adda-fd5c9d03 {
    grid-area: 1 / 2 / 2 / 5;
    align-self: start;
  }

  #w-node-_5baa09e0-3f50-8519-c199-c691662585a0-fd5c9d03 {
    grid-area: 1 / 4 / 2 / 7;
    place-self: start;
  }

  #w-node-e256a34f-a487-b49a-cdd1-63213cd68c13-fd5c9d03 {
    grid-column-end: 7;
    align-self: start;
  }

  #w-node-_93efefc6-1d61-7f21-70c2-3965dec36961-fd5c9d03 {
    grid-area: 1 / 1 / 2 / 7;
    place-self: start end;
  }
}


@font-face {
  font-family: 'Wt Kormelink Roman Web 1';
  src: url('../fonts/WT_Kormelink_Roman_WEB_1.1.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Wt Kormelink Italic';
  src: url('../fonts/WT_Kormelink_Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}