/**
 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.
 */
.page-node-type-casestudy header ul.menu li a:not(.button) {
  --anchor-color: var(--secondary-color);
  --text-color: var(--secondary-color);
  color: var(--anchor-color);
}

.layout-container > header {
  z-index: 50;
}
.layout-container > main {
  z-index: 49;
}

@media (min-width: 992px) {
  .node--type-casestudy header .left-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.node--type-casestudy header .left-wrapper h2 {
  font-weight: 400;
  margin-bottom: 24px;
}
.node--type-casestudy header .left-wrapper h1 {
  margin-bottom: 32px;
}
.node--type-casestudy header .left-wrapper .field--name-field-sectors a {
  padding: 12px 12px;
  background-color: var(--white);
  display: inline-block;
  border-radius: 500px;
  text-transform: uppercase;
  font-family: var(--header-font-family);
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 14px;
  color: var(--primary-color);
}
@media (min-width: 992px) {
  .node--type-casestudy header .left-wrapper .field--name-field-sectors a {
    font-size: 1.25rem;
  }
}
.node--type-casestudy header .left-wrapper .field--name-field-sectors a {
  background-color: var(--medium-gray);
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1rem;
}
.node--type-casestudy header .left-wrapper .field--name-field-sectors a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}
.node--type-casestudy header .left-wrapper .lower-left {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 32px;
}
.node--type-casestudy header .left-wrapper .lower-left .h-simple-tag {
  background-color: var(--medium-gray);
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1rem;
}
.node--type-casestudy header .left-wrapper .lower-left a.h-simple-tag:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}
@media (min-width: 992px) {
  .node--type-casestudy header .left-wrapper {
    grid-column: 2/span 11;
  }
}
@media (min-width: 1200px) {
  .node--type-casestudy header .left-wrapper {
    grid-column: 2/span 10;
  }
}
.node--type-casestudy header .right-wrapper {
  margin-top: 40px;
}
.node--type-casestudy header .right-wrapper img, .node--type-casestudy header .right-wrapper video {
  border-radius: 32px;
}
.node--type-casestudy header .right-wrapper video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .node--type-casestudy header .right-wrapper {
    display: flex;
    margin-top: 0px;
    flex-direction: column;
    justify-content: center;
    grid-column: 15/-2;
  }
}
