/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */
/* 
 * makes ul/ol as a dropdown select (normaly in mobile)
 * Structure: div > title > list > li > a
*/
@keyframes redraw-underline {
  0% {
    background-size: 100% 0.0625rem;
    background-position: 100% 100%;
  }
  49% {
    background-size: 0% 0.0625rem;
    background-position: 100% 100%;
  }
  51% {
    background-size: 0% 0.0625rem;
    background-position: 0 100%;
  }
  99% {
    background-size: 100% 0.0625rem;
    background-position: 0 100%;
  }
  100% {
    background-size: 100% 0.0625rem;
    background-position: 100% 100%;
  }
}
/**==================================================================================================================================
BREAKPOINT
 ==================================================================================================================================*/
/**==================================================================================================================================
BREAKPOINT ENDS
==================================================================================================================================*/
span.edit-link {
  display: inline-block;
  background-color: yellow;
  font-weight: 700;
  position: fixed;
  left: 0;
  bottom: 3.125rem;
  transform: translateX(-45px);
  transition: all 0.2s;
}

span.edit-link a {
  display: block;
  padding: 0.9375rem;
}

span.edit-link:hover {
  transform: translateX(0);
}

.block-section.hero-short {
  position: relative;
  overflow: hidden;
  background-color: #122c29;
  position: relative;
}

.block-section.hero-short > .grid-container {
  height: 40vh;
  padding-bottom: 10vh;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-left: 0;
  padding-left: 2.5625rem;
}

@media screen and (max-width: 39.99875em) {
  .block-section.hero-short > .grid-container {
    padding-bottom: 15vh;
    min-height: 37.5rem;
    max-height: 90vh;
  }
}
.block-section.hero-short > .grid-container > .grid-x {
  width: 100%;
}

.block-section.hero-short:not(.has-curved-bg) > .grid-container {
  padding-bottom: calc(7vh + 25px);
}

@media screen and (max-width: 39.99875em) {
  .block-section.hero-short:not(.has-curved-bg) > .grid-container {
    padding-bottom: calc(10vh + 25px);
  }
}
@media screen and (min-width: 64em) {
  .block-section.hero-short:not(.has-curved-bg) > .grid-container {
    padding-bottom: calc(5vh + 25px);
  }
}
.block-section.hero-short.has-curved-bg > .grid-container {
  padding-bottom: calc(7vh + 25px);
}

@media screen and (max-width: 39.99875em) {
  .block-section.hero-short.has-curved-bg > .grid-container {
    padding-bottom: calc(10vh + 25px);
  }
}
@media screen and (min-width: 64em) {
  .block-section.hero-short.has-curved-bg > .grid-container {
    padding-bottom: calc(10vh + 25px);
  }
}
.block-section.hero-short .cell {
  position: relative;
  z-index: 20;
}

.block-section.hero-short h1,
.block-section.hero-short a {
  color: #f9f1de;
}

.block-section.hero-short h1 {
  width: 100%;
  max-width: 90%;
  text-transform: uppercase;
  margin: 1.25rem 0;
  margin-left: -0.65%;
  color: #f9f1de;
  leading-trim: both;
  text-edge: cap;
  font-size: clamp(2.5rem, 6vw + 1.5rem, 7.925rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 126.8px */
  text-transform: uppercase;
}

@media screen and (min-width: 75em) {
  .block-section.hero-short h1 {
    margin-left: -0.9%;
  }
}
.block-section.hero-short .hero-image-wrapper,
.block-section.hero-short img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: 10;
}

.block-section.hero-short .hero-image-wrapper:before, .block-section.hero-short:before {
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  display: block;
  z-index: 15;
}

.block-section.hero-short .hero-image-wrapper:before {
  height: 25%;
  top: 0;
  background-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0));
}

.block-section.hero-short:before {
  height: 45%;
  bottom: 0;
  background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
}
