/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
/**
 * @file
 * Map functions.
 *
 * @package Functions.
 */
/* Use. */
/* Next. */
/* Prev. */
/**
 * @file
 * Mixins for breakpoints.
 *
 * @package Tools.
 */
/* Use. */
/* Breakpoint up. */
/* Breakpoint down. */
/* Breakpoint only. */
/**
 * @file
 * Hero styles.
 *
 * @package Organisms.
 */
/* Use. */
/* Hero. */
.o-hero {
  background-color: currentColor;
  color: #0062FF;
  position: relative;
}
.o-hero::after {
  background-color: #b2adc9;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 1.3rem;
  z-index: 1;
}
@media (min-width: 1440px) {
  .o-hero::after {
    width: calc((100vw - (1440px - 2.6rem)) / 2);
  }
}
.o-hero__main {
  display: flex;
}
.o-hero__content {
  flex: 1 1 auto;
  padding: 1.95rem 0;
}
@media (min-width: 768px) {
  .o-hero__content {
    padding: 2.6rem 0;
  }
}
@media (min-width: 1200px) {
  .o-hero__content {
    padding: 3.9rem 0;
  }
}
.o-hero__visual {
  align-items: center;
  background-color: #b2adc9;
  display: flex;
  flex: 0 0 auto;
  font-size: 3rem;
  justify-content: center;
  margin: 0 -1.3rem 0 0;
  overflow: hidden;
  padding: 1.3rem 0;
  position: relative;
  width: calc(33.3333333333% + 1.3rem);
  z-index: 2;
}
.o-hero__visual::after {
  background-color: currentColor;
  content: "";
  display: block;
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: scale(2) skew(25deg);
  transform-origin: 100% 0%;
  width: 100%;
}
@media (min-width: 768px) {
  .o-hero__visual::after {
    transform: scale(2) skew(45deg);
  }
}
@media (min-width: 1200px) {
  .o-hero__visual {
    font-size: 4rem;
  }
}
@media (min-width: 1440px) {
  .o-hero__visual {
    margin: 0;
    width: 33.3333333333%;
  }
}
.o-hero__image {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.o-hero__icon {
  color: white;
  display: none;
}
@media (min-width: 768px) {
  .o-hero__icon {
    display: block;
  }
}

/*# sourceMappingURL=hero.css.map */