@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400&family=Work+Sans:wght@300..600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

:root {
  --color-royal-green: #0D3334;
  --color-royal-yellow: #FFD592;
  --color-royal-purple: #141830;
  --color-royal-purple-dark: #0B0F22;
  --color-royal-yellow-dark: #ECA66A;
  --color-royal-green-dark: #0C1717;
  --color-white: #FFFFFF;

  --font-serif: 'Playfair Display', Times, serif;
  --font-sans: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background-color: var(--color-royal-purple);
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-white);
}

main {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0 auto;
  box-shadow: 0px -486px 80px rgba(11, 15, 34, 0.32), 0px -203.039px 33.4221px rgba(11, 15, 34, 0.230033), 0px -108.554px 17.869px rgba(11, 15, 34, 0.190754), 0px -60.8547px 10.0172px rgba(11, 15, 34, 0.16), 0px -32.3195px 5.32008px rgba(11, 15, 34, 0.129246), 0px -13.4489px 2.21381px rgba(11, 15, 34, 0.0899666);
  background-color: var(--color-royal-purple-dark);
  transition: background-color 0.2s;
}




/****

  HEADER AND NAVIGATION

****/

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 80px 0 80px;
  transition: all 0.2s;
}
header nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: stretch;
  align-items: center;
  width: 100%;
}
.nav__profile {
  flex-grow: 1;
  line-height: 0;
}
.nav__logo {
  display: block;
  width: 300px;
}
.nav__logo svg {
  width: 100%;
  height: auto;
}
.nav__items {
  display: flex;
  flex-flow: row nowrap;

}
.nav__item {
  display: block;
  margin-right: 2em;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.nav__item:last-child {
  margin-right: 0;
}
.nav__item:hover {
  color: var(--color-royal-yellow-dark);
}

.nav__menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.nav__menu-button > div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: auto;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-out 0.4s;
}
.nav__menu-button span {
  display: block;
  position: absolute;
  left: 50%;
  height: 2px;
  width: 100%;
  border-radius: 100px;
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.nav__menu-button:hover span {
  background-color: var(--color-royal-yellow)
}
.nav__menu-button span:nth-child(1) {
  top: 0;
  transform: translate(-50%, 100%);
}
.nav__menu-button span:nth-child(2),
.nav__menu-button span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav__menu-button span:nth-child(3) {
  width: 2px;
  opacity: 0;
}
.nav__menu-button span:nth-child(4) {
  top: 100%;
  transform: translate(-50%, -200%);
}
.nav__menu-button--active > div {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.nav__menu-button--active span:nth-child(1),
.nav__menu-button--active span:nth-child(4) {
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.nav__menu-button--active span:nth-child(2) {
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%);
}
.nav__menu-button--active span:nth-child(3) {
  width: 2px;
  height: 100%;
  transform: translate(-50%, -50%);
  opacity: 1;
}





/****

  HERO AREA

****/

.hero {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 50px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(330.24deg, rgba(11, 15, 34, 0) 31.06%, var(--color-royal-purple-dark) 108.93%);
  opacity: 0.9;
  pointer-events: none;
}

.hero__skies {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url('assets/skies-orig.jpg') no-repeat;
  background-size: 100% auto;
  background-position: top right;
  transform-origin: top center;
  transform-style: preserve-3d;
  animation: 50s ease-out 0s infinite heroSkiesAnimate;
}
@keyframes heroSkiesAnimate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
    transform-origin: center center;
  }
  100% {
    transform: scale(1);
  }
}

.hero__mountains {
  position: relative;
  z-index: 2;
  margin-top: 75px;
}
.hero__mountains > img {
  width: calc(100% + 2px);
  height: auto;
  margin-left: -1px;
}

.hero__rauma {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.hero__rauma > img {
  width: 100%;
  height: auto;
}

.hero__fisher {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 7;
  transform: translateY(30%);
  /*transition: all 0.2s;*/
  pointer-events: none;
}
.hero__fisher--not-fixed {
  position: absolute;
}
.hero__fisher > img {
  width: 100%;
  max-width: 1390px;
  height: auto;
}

.hero__gradient {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 8;
  width: 100%;
  height: 350px;
  background: linear-gradient(180deg, rgba(11, 15, 34, 0) 0%, var(--color-royal-purple-dark) 95%);
  pointer-events: none;
}


.hero__content {
  position: absolute;
  top: 240px;
  left: 50%;
  z-index: 6;
  width: 100%;
  max-width: 830px;
  transform: translateX(-50%);
}
.hero__cta {
  margin-top: 32px;
}

@media screen and (max-width: 1300px) {
  .nav__items {
    display: none;
  }
  .nav__menu-button {
    display: block;
  }
}

@media screen and (max-width: 1100px) {
  .hero__content { 
    width: 480px;
  }

  .hero__gradient {
    height: 200px;
  }
}

@media screen and (max-width: 900px) {
  header {
    padding: 40px 40px 0 40px;
  }
  .hero {
    padding-top: 84px;
  }
  .nav__logo {
    width: 200px;
  }

  .hero__content {
    top: 160px;
  }
}

@media screen and (max-width: 680px) {
  .hero__skies {
    background-position: top right;
  }

  .hero__content { 
    width: 300px;
  }
  .hero__cta {
    margin-top: 16px;
  }

  .hero__gradient {
    height: 100px;
  }
}

@media screen and (max-width: 440px) {
  body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
  html {
    height: -webkit-fill-available;
  }

  header {
    padding: 20px 20px 0 20px;
  }
  .nav__logo {
    width: 160px;
  }

  .hero {
    height: 85vh;
    padding-top: 64px;
  }
  .hero__skies {
    background-size: auto 85vh;
  }
  .hero__mountains {
    position: absolute;
    top: auto;
    bottom: 0;
  }

  .hero__content { 
    /*top: 100px;*/
    width: 280px;
  }
}



/****

  BUTTONS

****/

.button {
  display: inline-block;
  padding: 1.25em 1.625em;
  background: var(--color-royal-yellow);
  box-shadow: 0px 100px 80px rgba(11, 15, 34, 0.07), 0px 41.7776px 33.4221px rgba(11, 15, 34, 0.0523249), 0px 22.3363px 17.869px rgba(11, 15, 34, 0.0460644), 0px 12.5216px 10.0172px rgba(11, 15, 34, 0.0411875), 0px 6.6501px 5.32008px rgba(11, 15, 34, 0.0354012), 0px 2.76726px 2.21381px rgba(11, 15, 34, 0.0259951);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 112.5%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-royal-purple);
  transition: all 0.25s;
  cursor: pointer;
}
.button:hover {
  background-color: var(--color-royal-yellow-dark);
}

@media screen and (max-width: 1000px) {
  .button {
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  .button {
    font-size: 10px;
  }
}




/****

  FIXED HEADER ON SCROLL

****/

header.header--fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 24px 32px;
  background-color: var(--color-white);
  box-shadow: 0px 100px 80px rgba(11, 15, 34, 0.07), 0px 41.7776px 33.4221px rgba(11, 15, 34, 0.0523249), 0px 22.3363px 17.869px rgba(11, 15, 34, 0.0460644), 0px 12.5216px 10.0172px rgba(11, 15, 34, 0.0411875), 0px 6.6501px 5.32008px rgba(11, 15, 34, 0.0354012), 0px 2.76726px 2.21381px rgba(11, 15, 34, 0.0259951);
  transform: translateY(-100%);
}
header.header--fixed.header--fixed-show {
  transform: translateY(0);
}
header.header--fixed nav a {
  color: var(--color-royal-purple-dark);
}
header.header--fixed nav a:hover {
  color: var(--color-royal-yellow-dark);
}
header.header--fixed nav .nav__menu-button span {
  background-color: var(--color-royal-purple-dark);
}
header.header--fixed nav svg .logotype > path {
  fill: var(--color-royal-purple);
}

header.header--fixed nav .nav__logo {
  width: 200px;
}
@media screen and (max-width: 768px) {
  header.header--fixed {
    padding: 16px 24px;
  }
}


/****

  MOBILE MENU

****/

.body--open-menu {
  overflow: hidden;
}
.body--open-menu main {
  background-color: var(--color-white);
}
.body--open-menu main > section {
  opacity: 0;
}
.body--open-menu header {
  bottom: 0;
  height: 100vh;
  background-color: transparent;
}
.body--open-menu header nav .nav__menu-button span {
  background-color: var(--color-royal-purple-dark);
}
.body--open-menu header nav svg .logotype > path {
  fill: var(--color-royal-purple);
}
.body--open-menu header nav .nav__items {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20px;
  left: 0;
}
.body--open-menu header nav .nav__item {
  margin: 12px auto;
  color: var(--color-royal-purple-dark);
}
.body--open-menu header nav .nav__item:hover {
  color: var(--color-royal-yellow-dark);
}



/****

  CONTENT

****/

.content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px;
  font-size: 22px;
  line-height: 1.5;
}
.content--front {
  padding-top: 240px;
}
.content > p {
  margin-bottom: 1.5em;
}
.content > p:last-child {
  margin-bottom: 0;
}
p.ingress {
  font-family: var(--font-serif);
  font-size: 2em;
}
.content a:not(a.button) {
  color: var(--color-royal-yellow);
  transition: all 0.25s ease-in-out;
}
.content a:not(a.button):hover {
  color: var(--color-royal-yellow-dark);
}
@media screen and (max-width: 1000px) {
  .content {
    padding: 60px;
  }
  .content--front {
    padding-top: 160px;
  }
}
@media screen and (max-width: 800px) {
  .content {
    padding: 40px;
  }
  .content--front {
    padding-top: 80px;
  }
  p.ingress {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 400px) {
  .content {
    padding: 32px;
    font-size: 16px;
  }
  .content--front {
    padding-top: 64px;
  }
  p.ingress {
    font-size: 1.3em;
  }
}



/****

  ARTICLE LIST

****/

.article-list {
  max-width: 1400px;
  margin: 0 auto;
}
.article-list--page {
  margin-top: 180px;
}

.article-list__article {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 500px;
  margin-bottom: 240px;
}
.article-list__image {
  position: relative;
  width: 50%;
  height: 100%;
}
.article-list__image img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.article-list__content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 0 0 0 64px;
}
.article-list__article--reversed .article-list__image {
  order: 2;
}
.article-list__article--reversed .article-list__content {
  padding: 0 64px 0 0;
}
.article-list__content p {
  margin-top: 32px;
  font-size: 16px;
  line-height: 175%;
  font-weight: 400;
  color: var(--color-white);
}
.article-list__content a {
  margin-top: 24px;
}
.article-link {
  position: relative;
  display: inline-block;
  color: var(--color-royal-yellow);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  transition: all 0.2s;
}
.article-link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -44px;
  display: inline-block;
  width: 30px;
  height: 18px;
  background: url('assets/arrow.svg') no-repeat;
  background-size: 100% auto;
  transform: translate(0, -50%);
  transition: all 0.25s;
}
.article-link:hover {
  color: var(--color-royal-yellow-dark);
}
.article-link:hover::after {
  transform: translate(8px, -50%);
}

@media screen and (max-width: 1100px) {
  .article-list--page {
    margin-top: 80px;
  }
  .article-list__article {
    margin-bottom: 120px;
  }
  .article-list__content p {
    margin-top: 24px;
    font-size: 14px;
  }
  .article-link {
    font-size: 14px;
  }

  .article-list__image {
    height: 320px;
  }
}
@media screen and (max-width: 800px) {
  .article-list--page {
    margin-top: 60px;
  }
  .article-list__article {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    height: auto;
    margin-bottom: 80px;
  }
  
  .article-list__image {
    width: 100%;
    height: 380px;
  }
  .article-list__content {
    width: 100%;
  }
  .article-list__article--reversed .article-list__image {
    order: unset;
  }
  .article-list__content,
  .article-list__article--reversed .article-list__content {
    padding: 32px 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  .article-list__image {
    height: 200px;
  }
}
.article-list__article:last-child {
  margin-bottom: 0;
}


/****

  HEADERS

****/

h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 88px;
  line-height: 115%;
  color: var(--color-white);
}
h1 strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-royal-yellow);
}
h1 strong::before {
  display: inline-block;
  content: '';
  width: 72px;
  height: 2px;
  margin-right: 32px;
  vertical-align: 5px;
  background-color: var(--color-royal-yellow);
}
h1 span {
  display: none;
}

h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 115%;
  color: var(--color-white);
}
h2 strong {
  display: block;
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-royal-yellow);
}
h2 strong::before {
  display: inline-block;
  content: '';
  width: 48px;
  height: 2px;
  margin-right: 24px;
  vertical-align: 5px;
  background-color: var(--color-royal-yellow);
}
h2 span {
  display: none;
}


@media screen and (max-width: 1100px) {
  h1 {
    font-size: 50px;
  }
  h1 strong {
    font-size: 14px;
    letter-spacing: 4px;
  }
  h1 strong::before {
    width: 40px;
    height: 2px;
    margin-right: 24px;
    vertical-align: 5px;
  }

  h2 {
    font-size: 26px;
  }
  h2 strong {
    font-size: 12px;
    letter-spacing: 4px;
  }
  h2 strong::before {
    width: 40px;
    height: 2px;
    margin-right: 24px;
    vertical-align: 5px;
  }
}

@media screen and (max-width: 680px) {
  h1 {
    font-size: 32px;
  }
  h1 strong {
    font-size: 11px;
    letter-spacing: 2px;
  }
  h2 strong {
    font-size: 11px;
    letter-spacing: 2px;
  }
  h1 strong::before,
  h2 strong::before {
    width: 32px;
    height: 1px;
    margin-right: 16px;
    vertical-align: 4px;
  }
}

@media screen and (max-width: 440px) {
  h1 {
    font-size: 28px;
  }
}


/****

  OVERLAY

****/
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 34, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}
.overlay--active {
  z-index: 100;
  opacity: 1;
  visibility: visible;
}
.overlay-wrap {
  position: relative;
  width: 80%;
  height: 100%;
  max-width: 1312px;
  max-height: 80%;
  margin: 0 auto;
  overflow: hidden;
}
.overlay .slider img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background-image: url('assets/close.svg');
  background-size: 16px 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--color-royal-yellow);
  cursor: pointer;
}
.overlay__close:hover {
  background-color: var(--color-royal-yellow-dark);
}


/****


VIDEO PLAYER (in article list)


****/
.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 738px;
  object-fit: cover;
}


/*
.video-wrapper {
  width: 80%;
  max-width: 1312px;
  max-height: 80%;
  margin: 0 auto;
  border-radius: 3px;
  display: none;
}
.overlay--active {
  z-index: 100;
  opacity: 1;
  visibility: visible;
}
.overlay--active .video-wrapper {
  display: block;
}
.video-player-wrapper {
  width: 100%;
  position: relative;
  padding: 56.25% 0 0 0;
  box-shadow: 0px 22px 155px rgba(7, 5, 16, 0.66), 0px 9.19107px 64.7553px rgba(7, 5, 16, 0.474444), 0px 4.91399px 34.6213px rgba(7, 5, 16, 0.393431), 0px 2.75474px 19.4084px rgba(7, 5, 16, 0.33), 0px 1.46302px 10.3077px rgba(7, 5, 16, 0.266569), 0px 0.608796px 4.28925px rgba(7, 5, 16, 0.185556);
}
.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 738px;
}
.video-player__close {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background-image: url('assets/close.svg');
  background-size: 16px 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--color-royal-yellow);
  cursor: pointer;
}
.video-player__close:hover {
  background-color: var(--color-royal-yellow-dark);
}
#play-video {
  cursor: pointer;
}
*/




/****

  IMAGE GALLERY

****/
.content--gallery {

}

.gallery {
  display: flex;
  flex-flow: wrap;
  margin: 0 -8px;
}
.gallery__item {
  position: relative;
  width: 25%;
  padding: 8px;
}
.gallery__image {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.250, 0.250, 0.260, 1.280);
}
.gallery__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 350ms cubic-bezier(0.250, 0.250, 0.260, 1.280);
}
/*
.gallery {
  position: relative;
  width: 100%;
  column-count: 5;
  column-gap: 0;
  line-height: 0;
}
.gallery__image {
  display: block;
  position: relative;
  break-inside: avoid;
  transition: all 350ms cubic-bezier(0.250, 0.250, 0.260, 1.280);
  overflow: hidden;
}
.gallery__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  transition: all 350ms cubic-bezier(0.250, 0.250, 0.260, 1.280);
}
*/
.gallery__image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: var(--color-royal-yellow-dark);
  opacity: 0;
  transition: all 350ms cubic-bezier(0.250, 0.250, 0.260, 1.280);
}
.gallery__image:hover::after {
  opacity: 0.4;
}
.gallery__image:hover img {
  filter: blur(2px);
  transform: scale(1.02);
}
@media screen and (max-width: 800px) {
  .gallery__item {
    width: 50%;
  }
}
@media screen and (max-width: 400px) {
  .gallery__item {
    width: 100%;
    padding: 8px 0;
  }
}




/****

  SLIDER

****/

.slider {
  overflow: hidden;
  display: flex;
}
.slider__slide {
  z-index: -1;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
}
.slider__slide--prev {
  z-index: -1;
  transform: translateX(-100%);
}
.slider__slide--active {
  z-index: 2;
  transform: translateX(0);
}
.slider__next,
.slider__prev {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 1000;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.4);
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.slider__next {
  background-image:  url('assets/charet-right.svg');
}
.slider__prev {
  right: auto;
  left: 12px;
  background-image: url('assets/charet-left.svg');
}
.slider__next:hover,
.slider__prev:hover {
  background-color: var(--color-royal-purple);
}
.slider__dots {
  list-style: none;
  position: absolute;
  right: 50%;
  bottom: 12px;
  z-index: 3;
  display: flex;
  padding: 4px;
  border-radius: 8px;
  background-color: #1418309d;
  transform: translateX(50%);
}
.slider__dots > li {
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-radius: 4px;
  background-color: #fff;
  opacity: 0.4;
  transition: all 0.2s ease-in-out;
}
.slider__dots > li:last-child {
  margin-right: 0;
}
.slider__dots > li.slider__dot--active {
  opacity: 1;
  background-color: var(--color-royal-yellow);
}




/****

  CONTENT PAGE

****/
.top {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.top__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  user-select: none;
}
.top__image img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top__image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(330.24deg, rgba(11, 15, 34, 0) 0.06%, var(--color-royal-purple-dark) 108.93%);
  opacity: 0.9;
  pointer-events: none;
}
.top__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  width: 100%;
  max-width: 830px;
  padding: 80px;
  transform: translate(-50%, -50%);
}
.top h1 {
  font-size: 56px;
}
.top__gradient {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 8;
  width: 100%;
  height: 10vh;
  background: linear-gradient(180deg, rgba(11, 15, 34, 0) 0%, var(--color-royal-purple-dark) 95%);
  pointer-events: none;
}


@media screen and (max-width: 1100px) {
  .top__content {
    padding: 80px;
  }
  .top h1 {
    font-size: 50px;
  }
}

@media screen and (max-width: 680px) {
  .top__content {
    padding: 40px;
  }
  .top h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 440px) {
  .top__content {
    padding: 32px;
  }
  .top h1 {
    font-size: 28px;
  }
}




/****

  ABOUT-SEGMENT

****/
.content--about {
  margin-top: 80px;
}
.content--about::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  width: 240px;
  height: 1px;
  background-color: var(--color-white);
  transform: translateX(-50%);
  opacity: 0.2;
}

/****

  CONTACT FORM

****/
.contact {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1400px;
  background-color: var(--color-royal-purple);
  padding: 0;
}
.map {
  width: 50%;
}
.map-info {
  padding: 8px;
  color: var(--color-royal-purple);
  font-family: var(--font-sans);
  font-size: 16px;
}
.map-info strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
}
form {
  width: 50%;
  padding: 80px 64px;
}

form fieldset {
  margin: 20px 0 0 0;
  border: 0;
}

form label {
  display: block;
  margin-top: 20px;
  padding: 0 0 8px 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
}

form input,
form textarea {
  display: block;
  width: 100%;
  padding: 12px 8px;
  border: 0;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 18px;
  color: var(--color-white);
  transition: all 0.25s;
  font-family: var(--font-sans);
}
form textarea {
  height: 100px;
}
form input:hover,
form textarea:hover {
  background-color: rgba(255, 213, 146, 0.2);
}
form input:focus,
form textarea:focus {
  background-color: rgba(255, 213, 146, 0.2);
}
form button {
  width: auto;
  margin-top: 20px;
  border: 0;
  border-radius: 0;
}

@media screen and (max-width: 800px) {
  .contact {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    height: auto;
    margin-bottom: 80px;
  }
  form {
    order: 2;
    width: 100%;
  }
  .map {
    order: 1;
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 600px) {
  form {
    padding: 40px 32px;
  }
}




/****

  Footer

****/

footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  width: 240px;
  height: 1px;
  background-color: var(--color-white);
  transform: translateX(-50%);
  opacity: 0.2;
}
footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 120px auto 0 auto;
  padding-bottom: 80px;
  font-size: 24px;
}
.footer-address a {
  color: var(--color-royal-yellow);
  transition: all 0.25s ease-in-out;
}
.footer-address a:hover {
  color: var(--color-royal-yellow-dark);
}
footer h3 {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
}
footer address {
  font-size: 20px;
}
footer a {
  margin-top: 8px;
  position: relative;
  display: inline-block;

}

.footer-phone {
  margin-top: 32px;
  font-size: 20px;
}

.footer-links {
  margin-top: 72px;
  font-size: 18px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  line-height: 1.5;
}
.footer-links a {
  color: var(--color-royal-yellow);
  transition: all 0.25s ease-in-out;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--color-royal-yellow-dark);
}

.footer-logo {
  width: 48px;
  height: auto;
  margin-bottom: 16px;
}


@media screen and (max-width: 800px) {
  footer {
    flex-flow: column;
    text-align: center;
  }
  .footer-links {
    margin-top: 60px;
  }
}