:root {
  --white: white;
  --black: black;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

a {
  color: #ffed46;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  height: 100svh;
  background-image: url('../images/phoebe-backgorund-statue-minified.jpg');
  background-position: 50%;
  background-size: cover;
  font-family: Inter, sans-serif;
}

.header-content {
  height: 100%;
  max-width: 1200px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.header-h1 {
  margin-top: 0;
  font-family: Monasans, sans-serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 130%;
}

.body {
  color: #fff;
  font-family: Monasans, sans-serif;
}

.text-span {
  color: #e0ff1a;
}

.header-p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 0;
  font-family: Monasans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}

.header-content-block {
  width: 40%;
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-direction: column;
  display: flex;
}

.header-flex {
  height: 100%;
  max-width: 1800px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
}

.image {
  width: 259px;
}

.link {
  color: rgba(224, 255, 26, .8);
  transition: all .15s;
}

.link:hover {
  color: #e0ff1a;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .header {
    background-size: cover;
  }

  .header-h1 {
    font-size: 40px;
  }

  .header-content-block {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .header {
    background-image: url('../images/phoebe-background-statue-mobile.jpg');
    background-position: 70%;
    background-size: cover;
  }

  .header-h1 {
    font-size: 40px;
  }

  .header-p {
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
  }

  .header-content-block {
    width: 80%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .header-flex {
    padding: 50px 20px;
  }

  .image {
    width: 160px;
  }
}

@media screen and (max-width: 479px) {
  .header {
    background-image: url('../images/phoebe-background-statue-mobile.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .header-h1 {
    font-size: 26px;
  }

  .header-content-block {
    width: 90%;
  }

  .header-flex {
    height: 100svh;
  }
}


@font-face {
  font-family: 'Monasans';
  src: url('../fonts/MonaSans-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Monasans';
  src: url('../fonts/MonaSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Monasans';
  src: url('../fonts/MonaSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Monasans';
  src: url('../fonts/MonaSans-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Monasans';
  src: url('../fonts/MonaSans-Italic.woff2') format('woff2'), url('../fonts/Mona-Sans-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Monasans';
  src: url('../fonts/MonaSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}