/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1470px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
  margin-left: -30px;
}

@font-face {
  font-family: "Manrope";
  font-stretch: 100%; /* Note that font-stretch is a % of normal width */
  font-style: normal;
  font-weight: 200 800;
  src: url("../../fonts/Manrope[wght].woff2") format("woff2-variations");
}
@font-face {
  font-family: "Aktiv Grotesk Corp Here East";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/hereeast_aktivgrotesk_corp_rg.ttf") format("truetype");
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  outline: none;
}

:root {
  --header-height: 80px;
}
@media (min-width: 768px) {
  :root {
    --header-height: 90px;
  }
}
@media (min-width: 1300px) {
  :root {
    --header-height: 105px;
  }
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: #8d8d8e;
  letter-spacing: -0.025em;
  line-height: 1.4;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 1600px) {
  body {
    font-size: 18px;
  }
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

img {
  display: block;
}

input {
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

button {
  border: none;
  box-shadow: none;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: unset;
  font-size: inherit;
  cursor: pointer;
}

header {
  height: var(--header-height);
  border-bottom: 1px solid #979797;
  display: flex;
  align-items: center;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-logo {
  display: block;
}
header .header-logo img {
  height: 26px;
}
@media (min-width: 768px) {
  header .header-logo img {
    height: 30px;
  }
}
@media (min-width: 1300px) {
  header .header-logo img {
    height: 34px;
  }
}
header .logout-button {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 20px;
  color: inherit;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.4em;
}
header .logout-button:hover svg {
  translate: 0.2em -0.2em;
}
@media (min-width: 768px) {
  header .logout-button {
    gap: 4em;
    font-size: 1.25rem;
  }
}
header .logout-button svg {
  height: 1.1em;
  width: auto;
  display: block;
  transition: translate 0.2s;
}

footer {
  padding-block: 50px;
  border-top: 1px solid #979797;
}
footer .footer-inner {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  footer .footer-inner {
    gap: 100px;
  }
}
footer .footer-top {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 768px) {
  footer .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
footer .footer-hereeast {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  footer .footer-hereeast {
    flex-basis: 50%;
    flex-grow: 1;
    max-width: 345px;
  }
}
footer .hereeast-copy {
  text-wrap: pretty;
}
footer .footer-logo {
  display: block;
}
footer .footer-logo img {
  height: 30px;
}
@media (min-width: 1300px) {
  footer .footer-logo img {
    height: 35px;
  }
}
footer .footer-contact {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  footer .footer-contact {
    flex-basis: auto;
  }
}
footer .footer-contact h2 {
  font-size: 26px;
  color: #009f8b;
  line-height: 1;
  font-weight: 400;
}
@media (min-width: 1300px) {
  footer .footer-contact h2 {
    font-size: 30px;
  }
}
footer .footer-agents {
  display: grid;
  gap: 1em;
}
@media (min-width: 1300px) {
  footer .footer-agents {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 3em;
         column-gap: 3em;
  }
}
footer .footer-agent .name {
  color: #009f8b;
}
footer .footer-agent a {
  display: block;
  color: inherit;
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 768px) {
  footer .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1300px) {
  footer .footer-links {
    display: flex;
    flex-direction: row;
    gap: 2em;
  }
}
footer .footer-link {
  display: flex;
  gap: 0.8em;
  color: inherit;
  align-items: center;
  line-height: 1;
}
footer .footer-link svg {
  display: block;
  height: 1em;
  width: auto;
}

.button {
  width: 100%;
  padding: 1.2em;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  gap: 1em;
  font-variation-settings: "wght" 400;
  transition: font-variation-settings 0.15s;
}
.button:hover .button-text::after {
  transform-origin: left;
  transform: scaleX(1);
}
.button--download {
  background-color: var(--theme-colour);
}
.button--view {
  border: 1px solid #404042;
  color: #404042;
}
.button .button-text {
  display: inline-block;
  position: relative;
}
.button .button-text::after {
  content: "";
  border-bottom: solid 0.1em currentColor;
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}
.button svg {
  height: 1.2em;
}
.button svg path {
  transition: stroke-width 0.2s;
}

.text-pattern-banner {
  padding-block: 30px;
  height: calc(100dvh - var(--header-height));
}
@media (min-width: 768px) {
  .text-pattern-banner {
    height: max(50vh, 400px);
  }
}
@media (min-width: 992px) {
  .text-pattern-banner {
    padding-block: 40px;
    height: auto;
  }
}
.text-pattern-banner .container {
  height: 100%;
}
.text-pattern-banner .text-pattern-banner-inner {
  background-color: #009f8b;
  color: #ffffff;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .text-pattern-banner .text-pattern-banner-inner {
    aspect-ratio: 2.52;
    height: auto;
    width: 100%;
    position: relative;
  }
}
@media (min-width: 1300px) {
  .text-pattern-banner .text-pattern-banner-inner {
    aspect-ratio: 2.6;
  }
}
@media (min-width: 1600px) {
  .text-pattern-banner .text-pattern-banner-inner {
    aspect-ratio: 2.9;
  }
}
.text-pattern-banner .img-bg-wrapper {
  flex: 1;
  position: relative;
}
@media (min-width: 992px) {
  .text-pattern-banner .img-bg-wrapper {
    position: unset;
  }
}
.text-pattern-banner .img-bg--mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media (min-width: 992px) {
  .text-pattern-banner .img-bg--mobile {
    display: none;
  }
}
.text-pattern-banner .img-bg--desktop {
  display: none;
}
@media (min-width: 992px) {
  .text-pattern-banner .img-bg--desktop {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
}
.text-pattern-banner .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  padding: 20px;
  position: relative;
}
@media (min-width: 992px) {
  .text-pattern-banner .banner-content {
    position: unset;
  }
}
.text-pattern-banner .banner-heading {
  font-family: "Aktiv Grotesk Corp Here East", sans-serif;
  line-height: 0.95;
  font-size: 40px;
}
@media (min-width: 992px) {
  .text-pattern-banner .banner-heading {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    padding-bottom: calc(20px - 0.1em);
    font-size: 60px;
  }
}
@media (min-width: 1300px) {
  .text-pattern-banner .banner-heading {
    padding: 40px;
    padding-bottom: calc(40px - 0.1em);
    font-size: 70px;
  }
}
@media (min-width: 1600px) {
  .text-pattern-banner .banner-heading {
    padding: 40px 60px;
    padding-bottom: calc(40px - 0.1em);
    font-size: 105px;
  }
}
.text-pattern-banner .banner-copy {
  text-wrap: pretty;
}
@media (min-width: 992px) {
  .text-pattern-banner .banner-copy {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 37%;
    padding: 20px;
  }
}
@media (min-width: 1300px) {
  .text-pattern-banner .banner-copy {
    padding: 40px;
  }
}
@media (min-width: 1600px) {
  .text-pattern-banner .banner-copy {
    padding: 40px 60px;
  }
}

.items-section {
  display: grid;
  padding-bottom: 40px;
}
@media (min-width: 1300px) {
  .items-section {
    padding-bottom: 70px;
  }
}
.items-section .items-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .items-section .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .items-section .items-grid {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1300px) {
  .items-section .items-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1600px) {
  .items-section .items-grid {
    gap: 40px;
  }
}
.items-section .grid-item {
  display: grid;
  color: #ffffff;
  gap: 10px;
}
@media (min-width: 1600px) {
  .items-section .grid-item {
    gap: 15px;
  }
}
.items-section .grid-item:hover .title::after {
  transform-origin: left;
  transform: scaleX(1);
}
.items-section .grid-item:hover .image-wrapper img {
  transform: scale(1.05);
}
.items-section .grid-item:nth-of-type(2n) .grid-item-bottom {
  background-color: #012e41;
}
@media (min-width: 768px) {
  .items-section .grid-item:nth-of-type(2n) .grid-item-bottom {
    background-color: #009f8b;
  }
}
@media (min-width: 768px) {
  .items-section .grid-item:nth-of-type(4n + 3) .grid-item-bottom, .items-section .grid-item:nth-of-type(4n + 4) .grid-item-bottom {
    background-color: #012e41;
  }
}
@media (min-width: 1300px) {
  .items-section .grid-item:nth-of-type(4n + 3) .grid-item-bottom, .items-section .grid-item:nth-of-type(4n + 4) .grid-item-bottom {
    background-color: #009f8b;
  }
}
@media (min-width: 1300px) {
  .items-section .grid-item:nth-of-type(6n + 4) .grid-item-bottom, .items-section .grid-item:nth-of-type(6n + 5) .grid-item-bottom, .items-section .grid-item:nth-of-type(6n + 6) .grid-item-bottom {
    background-color: #012e41;
  }
}
.items-section .image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.items-section .image-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.2s;
}
.items-section .grid-item-bottom {
  background-color: #009f8b;
  padding: 1em 1.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
@media (min-width: 992px) {
  .items-section .grid-item-bottom {
    font-size: 18px;
  }
}
.items-section .grid-item-bottom .title {
  display: inline-block;
  position: relative;
}
.items-section .grid-item-bottom .title::after {
  content: "";
  border-bottom: solid 0.1em currentColor;
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}
.items-section .grid-item-bottom svg {
  display: block;
  height: 1.1em;
  width: auto;
}
.items-section .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  height: 20%;
}
.items-section .play-button svg {
  display: block;
  height: 100%;
  width: auto;
}

.image-banner {
  padding-block: 30px;
}
@media (min-width: 992px) {
  .image-banner {
    padding-block: 40px;
  }
}
.image-banner .image-banner-inner {
  position: relative;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .image-banner .image-banner-inner {
    aspect-ratio: 2.5;
  }
}
.image-banner .image-banner-inner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.media-gallery-banner {
  padding-block: 30px;
}
.media-gallery-banner .banner-swiper {
  overflow-x: clip;
}
.media-gallery-banner .banner-swiper {
  position: relative;
}
.media-gallery-banner .swiper-button {
  background-color: #012e41;
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 9;
}
@media (min-width: 992px) {
  .media-gallery-banner .swiper-button {
    width: 50px;
  }
}
@media (min-width: 1600px) {
  .media-gallery-banner .swiper-button {
    width: 60px;
  }
}
.media-gallery-banner .swiper-button svg {
  display: block;
  width: 70%;
  height: auto;
}
.media-gallery-banner .swiper-button-prev {
  left: 0;
  rotate: 180deg;
}
.media-gallery-banner .swiper-button-next {
  right: 0;
}
.media-gallery-banner .swiper-slide {
  aspect-ratio: 16/9;
  position: relative;
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .media-gallery-banner .swiper-slide {
    aspect-ratio: 2.5;
  }
}
.media-gallery-banner .slide-video {
  width: 100%;
  height: 100%;
  background-color: #979797;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.media-gallery-banner .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.media-gallery-banner .play-button svg {
  display: block;
  width: 50px;
  height: auto;
}
@media (min-width: 992px) {
  .media-gallery-banner .play-button svg {
    width: 60px;
  }
}
@media (min-width: 1300px) {
  .media-gallery-banner .play-button svg {
    width: 70px;
  }
}
@media (min-width: 1600px) {
  .media-gallery-banner .play-button svg {
    width: 80px;
  }
}

.item-main {
  padding-top: 20px;
  padding-bottom: 40px;
  --theme-colour: #009f8b;
}
@media (min-width: 768px) {
  .item-main {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .item-main {
    padding-top: 50px;
    padding-bottom: 90px;
  }
}
@media (min-width: 1300px) {
  .item-main {
    padding-top: 80px;
    padding-bottom: 110px;
  }
}
@media (min-width: 1600px) {
  .item-main {
    padding-top: 90px;
    padding-bottom: 130px;
  }
}
.item-main .item-main-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 992px) {
  .item-main .item-main-inner {
    flex-direction: row;
    gap: 100px;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.item-main .item-main-intro {
  display: grid;
  gap: 20px;
}
@media (min-width: 1300px) {
  .item-main .item-main-intro {
    gap: 24px;
  }
}
.item-main .item-main-intro h1 {
  font-family: "Aktiv Grotesk Corp Here East", sans-serif;
  font-size: 30px;
  color: var(--theme-colour);
  line-height: 1;
}
@media (min-width: 768px) {
  .item-main .item-main-intro h1 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .item-main .item-main-intro h1 {
    font-size: 50px;
  }
}
@media (min-width: 1300px) {
  .item-main .item-main-intro h1 {
    font-size: 60px;
  }
}
@media (min-width: 1600px) {
  .item-main .item-main-intro h1 {
    font-size: 70px;
  }
}
.item-main .item-main-intro .item-desc {
  max-width: 25em;
  text-wrap: pretty;
}
.item-main .item-main-items {
  display: grid;
  gap: 30px;
}
@media (min-width: 992px) {
  .item-main .item-main-items {
    flex-shrink: 0;
  }
}
.item-main .item-buttons {
  display: grid;
  gap: 15px;
}
@media (min-width: 768px) {
  .item-main .item-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .item-main .item-buttons {
    grid-template-columns: unset;
    width: 20em;
  }
}
@media (min-width: 1300px) {
  .item-main .item-buttons {
    font-size: 18px;
    gap: 20px;
  }
}
@media (min-width: 1600px) {
  .item-main .item-buttons {
    font-size: 20px;
  }
}

.media-modal {
  width: 100vw;
  border: 0;
  max-width: min(1000px, 100% - 10vw);
  padding: 0;
}
.media-modal .modal-inner {
  width: 100%;
}
.media-modal .iframe-wrapper {
  aspect-ratio: 16/9;
  position: relative;
}
.media-modal iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.login-section {
  min-height: 100vh;
  background-image: url("../../img/delete/login/login-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  display: grid;
  place-items: center;
}
.login-section .login-form {
  background-color: #ffffff;
  padding: 60px 40px;
  display: grid;
  gap: 50px;
  justify-items: center;
  width: 100%;
  max-width: 300px;
}
@media (min-width: 768px) {
  .login-section .login-form {
    max-width: 400px;
    padding: 70px 50px;
    gap: 60px;
  }
}
@media (min-width: 1300px) {
  .login-section .login-form {
    max-width: 440px;
    padding-block: 80px;
    gap: 70px;
  }
}
.login-section .login-error {
  text-wrap: balance;
  text-align: center;
}
.login-section .form-logo {
  width: 100%;
  max-width: 140px;
}
@media (min-width: 768px) {
  .login-section .form-logo {
    max-width: 160px;
  }
}
@media (min-width: 1300px) {
  .login-section .form-logo {
    max-width: 180px;
  }
}
.login-section .login-fields {
  display: grid;
  gap: 2em;
  width: 100%;
}
.login-section .login-fields input {
  border: 0;
  border-bottom: 1px solid #979797;
  padding-bottom: 0.7em;
}
.login-section .submit-button {
  background-color: #009f8b;
  color: #ffffff;
  padding: 0.7em 2em;
  font-size: 1.1em;
  max-width: 180px;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .login-section .submit-button {
    max-width: 200px;
  }
}
