/**
 SASS files that don't get compiled into CSS. Do not put element selectors in here.
 Every file not starting with '_' should import this file if you want to use functions and mixins.
 */
/**
 * SASS variables
 *
 These are only used in the properties and abstract SASS files.
 */
/**
 Breakpoints and columns
 */
/**
 Text
 */
/**
Fill in the header styles, only write the properties you want to override.
 */
/**
 Form
 */
/**
  Buttons
 */
/**
 Breakpoints

 @param {Keyword} $breakpoint - The breakpoint name of the minimum width. Can be any of the names in the $breakpoint variable
 */
/**
  Custom column size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size in columns or 'expand'/'shrink'.
  @param {number} $total - the total size in columns. Ignored when size is 'expand'/'shrink'
 */
/**
  Custom offset size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size of the offset.
  @param {number} $total - the total size in columns.
  @param {string} - the side from the offset.
 */
.node--type-home > header {
  padding-top: 85px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .node--type-home > header {
    position: relative;
  }
}
@media (min-width: 1600px) {
  .node--type-home > header {
    padding-top: 135px;
  }
}
.node--type-home > header h1 {
  grid-column: 2/-2;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .node--type-home > header h1 {
    grid-column: 4/span 12;
    margin-bottom: 40px;
  }
}
.node--type-home > header .field--name-body {
  grid-column: 2/-2;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 992px) {
  .node--type-home > header .field--name-body {
    font-size: 1.25rem;
    line-height: 32px;
  }
}
@media (min-width: 992px) {
  .node--type-home > header .field--name-body {
    grid-column: 4/span 12;
    font-size: 1rem;
    line-height: 24px;
  }
}
@media (min-width: 1600px) {
  .node--type-home > header .field--name-body {
    font-size: 1.25rem;
    line-height: 32px;
  }
}
.node--type-home > header .field--name-field-media {
  grid-column: 1/-1;
  margin-top: -100px;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
@media (min-width: 992px) {
  .node--type-home > header .field--name-field-media {
    margin-top: -250px;
  }
}
@media (min-width: 1440px) {
  .node--type-home > header .field--name-field-media {
    margin-top: -350px;
  }
}
.node--type-home > header .field--name-field-media .bottom-blue {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -5px;
  right: 0;
  display: block;
  z-index: -1;
}
@media (min-width: 768px) {
  .node--type-home > header .field--name-field-media .bottom-blue {
    bottom: -10px;
  }
}
@media (min-width: 992px) {
  .node--type-home > header .field--name-field-media .bottom-blue {
    bottom: -20px;
  }
}
@media (min-width: 1440px) {
  .node--type-home > header .field--name-field-media .bottom-blue {
    bottom: -30px;
  }
}
.node--type-home > header .field--name-field-media video {
  width: 100%;
  height: auto;
}
.node--type-home > header .field--name-field-media img {
  width: 100%;
}
.node--type-home > header .field--name-field-media .cyprus-svg {
  position: absolute;
  width: 0;
  height: 0;
}
.node--type-home > header .field--name-field-media .clipped {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: url(#cyprus-path);
  transform: scale(1.1);
}
.node--type-home > header .scroll-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: none;
}
@media (min-width: 992px) {
  .node--type-home > header .scroll-button {
    right: 30px;
    bottom: 30px;
    display: block;
  }
}
.node--type-home > header .scroll-button svg {
  width: 160px;
  height: 80px;
}
@media (min-width: 992px) {
  .node--type-home > header .scroll-button svg {
    width: 190px;
    height: 111px;
  }
}
.node--type-home > header .scroll-button-mobile {
  width: 100%;
  background-color: var(--primary-color);
  grid-column: 1/-1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 24px;
}
@media (min-width: 992px) {
  .node--type-home > header .scroll-button-mobile {
    display: none;
  }
}
.node--type-home .node__content {
  z-index: 10;
  position: relative;
}
