* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

audio,
canvas,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden] {
  display: none; }

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: none;
  height: 100%; }

a:focus {
  outline: thin dotted; }

a:active,
a:hover {
  outline: 0; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0; }

h1 {
  font-size: 2em; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

code,
kbd,
pre,
samp {
  font-family: Ubuntu_monospaced, Monaco, 'Andale Mono', 'Courier New', monospace;
  font-size: 1em; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0;
  width: auto;
  max-width: 100%; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

button,
input {
  line-height: normal; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
input[disabled] {
  cursor: default; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

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

ul,
ol {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  ul li,
  ol li {
    margin: 0;
    padding: 0; }

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: Arial; }

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0; }

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px; }

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box; }

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none; }

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto; }

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none; }

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto; }

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top; }

/*$mq-show-breakpoints: (phone, phone-wide, phablet, tablet-small, tablet, tablet-wide, desktop, desktop-wide);*/
@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Bold.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Bold.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-LightItalic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-LightItalic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-LightItalic.ttf) format("truetype");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Black.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Black.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Black.ttf) format("truetype");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-ThinItalic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-ThinItalic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-ThinItalic.ttf) format("truetype");
  font-weight: 100;
  font-style: italic; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Medium.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Medium.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Regular.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Regular.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Light.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Light.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-BlackItalic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-BlackItalic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-BlackItalic.ttf) format("truetype");
  font-weight: 900;
  font-style: italic; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-MediumItalic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-MediumItalic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Thin.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Thin.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Thin.ttf) format("truetype");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Italic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Italic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-Italic.ttf) format("truetype");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Roboto';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-BoldItalic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-BoldItalic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/Roboto-BoldItalic.ttf) format("truetype");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'Roboto Mono';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Thin.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Thin.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Thin.ttf) format("truetype");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: 'Roboto Mono';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Regular.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Regular.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Roboto Mono';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Italic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Italic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Italic.ttf) format("truetype");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Roboto Mono';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Medium.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Medium.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Roboto Mono';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Bold.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Bold.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Roboto Mono';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-BoldItalic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-BoldItalic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-BoldItalic.ttf) format("truetype");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'Roboto Mono';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Light.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Light.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Roboto Mono';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-MediumItalic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-MediumItalic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: 'Roboto Mono';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-ThinItalic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-ThinItalic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-ThinItalic.ttf) format("truetype");
  font-weight: 100;
  font-style: italic; }

@font-face {
  font-family: 'Roboto Mono';
  src: url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-LightItalic.woff2) format("woff2"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-LightItalic.woff) format("woff"), url(/wp-content/themes/ecsa/build/assets/fonts/RobotoMono-LightItalic.ttf) format("truetype");
  font-weight: 300;
  font-style: italic; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal; }
  @media (min-width: 48em) {
    html {
      font-size: 15px; } }

a {
  color: #000000; }

p {
  margin-bottom: calc(20px / 2); }
  p:last-child {
    margin-bottom: 0; }

.font-thin {
  font-weight: 100; }

.font-light {
  font-weight: 300; }

.font-medium {
  font-weight: 500; }

.font-bold {
  font-weight: bold; }

.font-black {
  font-weight: 900; }

.font-italic {
  font-style: italic; }

.hug {
  padding-left: calc(20px * 1.5);
  padding-right: calc(20px * 1.5);
  width: 100%;
  overflow: hidden;
  max-width: 100%; }
  @media (min-width: 48em) {
    .hug {
      max-width: 1100px;
      padding-left: 20px;
      padding-right: 20px; } }

.column-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 48em) {
    .column-wrapper {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.column-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  @media (min-width: 48em) {
    .column-left {
      padding-right: 20px; } }

.column-right {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2; }
  @media (min-width: 48em) {
    .column-right {
      padding-right: 20px; } }

.fourth-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%; }
  @media (min-width: 48em) {
    .fourth-block {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%; } }

.third-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%; }
  @media (min-width: 48em) {
    .third-block {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33%;
              flex: 0 0 33%; } }

.header-container {
  width: 100vw;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; }
  .header-container.sticky .header {
    height: 40px; }
    @media (min-width: 48em) {
      .header-container.sticky .header {
        height: 40px; } }
    .header-container.sticky .header .logo {
      width: 30px;
      height: 40px;
      background-image: url(/wp-content/themes/ecsa/build/assets/svgs/logo-small.svg);
      background-size: 30px auto; }
      @media (min-width: 48em) {
        .header-container.sticky .header .logo {
          width: 50px;
          height: 30px;
          background-image: url(/wp-content/themes/ecsa/build/assets/svgs/logo-small.svg);
          background-size: 25px auto; } }
    .header-container.sticky .header .menu-logo {
      width: 150px;
      height: 110px;
      background-image: url(/wp-content/themes/ecsa/build/assets/svgs/logo.svg); }
      @media (min-width: 48em) {
        .header-container.sticky .header .menu-logo {
          width: 150px;
          height: 110px; } }
    .header-container.sticky .header .menu-icon {
      background-size: 20px; }
  @media (min-width: 48em) {
    .header-container.sticky .menu ul li {
      padding-top: 0; }
      .header-container.sticky .menu ul li a {
        font-size: 1rem;
        line-height: 1rem; } }

.header {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: height 0.2s ease-out;
  -o-transition: height 0.2s ease-out;
  transition: height 0.2s ease-out; }
  @media (min-width: 48em) {
    .header {
      height: 120px; } }

.logo {
  width: 80px;
  height: 40px;
  background-image: url(/wp-content/themes/ecsa/build/assets/svgs/logo.svg);
  background-size: 80px auto;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }
  @media (min-width: 48em) {
    .logo {
      width: 300px;
      height: 60px;
      background-image: url(/wp-content/themes/ecsa/build/assets/svgs/logo.svg);
      background-size: 140px auto;
      background-position: left center; } }
  .logo a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .logo.menu-logo {
    width: 150px;
    height: 110px;
    margin-top: calc(20px * 3); }
    @media (min-width: 48em) {
      .logo.menu-logo {
        display: none; } }

.menu-icon {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(/wp-content/themes/ecsa/build/assets/svgs/menu-icon.svg);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }
  @media (min-width: 48em) {
    .menu-icon {
      display: none; } }

.close-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(/wp-content/themes/ecsa/build/assets/svgs/close-icon.svg);
  background-size: 50px;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center; }
  @media (min-width: 48em) {
    .close-icon {
      display: none; } }

.menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(221, 115, 174, 0.95);
  z-index: 9;
  overflow: hidden;
  max-height: 100%;
  max-width: 100%; }
  .menu.menu-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 48em) {
      .menu.menu-show {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
  .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100vw;
    max-width: 100%; }
    .menu ul li {
      margin-left: 0;
      padding-top: 8px; }
      .menu ul li.inactive a {
        color: #c7c7c7;
        cursor: wait; }
        .menu ul li.inactive a:hover {
          text-decoration: none; }
      .menu ul li a {
        text-decoration: none;
        font-size: 1.2rem;
        line-height: 2.5rem;
        font-family: "Roboto Mono", sans-serif;
        font-size: 2.2rem;
        line-height: 3.5rem;
        font-weight: 300;
        -webkit-transition: font 0.2s ease-out;
        -o-transition: font 0.2s ease-out;
        transition: font 0.2s ease-out; }
        @media (min-width: 48em) {
          .menu ul li a {
            font-size: 1.6rem;
            line-height: 3.5rem; } }
        @media (min-width: 48em) {
          .menu ul li a {
            font-size: 1.4rem;
            line-height: 3.5rem; } }
        @media (min-width: 56.25em) {
          .menu ul li a {
            font-size: 1.6rem; } }
        .menu ul li a:hover {
          text-decoration: underline; }
  @media (min-width: 48em) {
    .menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      background: none; }
      .menu ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; }
        .menu ul li {
          margin-left: 25px;
          padding-top: 8px; } }
      @media (min-width: 48em) and (min-width: 56.25em) {
        .menu ul li {
          margin-left: 35px; } }
  @media (min-width: 48em) {
          .menu ul li a {
            text-decoration: none;
            font-weight: 300; }
            .menu ul li a:hover {
              text-decoration: underline; }
          .menu ul li.current-item a {
            font-weight: bold; } }

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  max-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000000; }

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  width: 100vw;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.footer-left p {
  font-size: 0.7rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1.75px;
  color: #FFFFFF; }

.footer-menu ul li a {
  font-size: 0.7rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1.75px;
  color: #FFFFFF;
  text-decoration: none; }
  .footer-menu ul li a:hover {
    text-decoration: underline; }

.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  max-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: calc(20px / 2);
  background-color: #FFDCDA;
  margin-top: 50px;
  min-height: calc(100vh - 110px); }
  @media (min-width: 48em) {
    .main-container {
      margin-top: 110px;
      min-height: calc(100vh - 170px); } }

.sticky + .main-container {
  margin-top: 40px; }
  @media (min-width: 48em) {
    .sticky + .main-container {
      margin-top: 40px; } }

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.cb-blocks {
  padding-top: calc(20px / 2);
  padding-bottom: calc(20px / 2);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.cb-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  background-color: #000000;
  background-image: url(/wp-content/themes/ecsa/build/assets/svgs/spinner.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100px; }
  .cb-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.main-container > div:first-child {
  padding-top: calc(20px * 1); }
  @media (min-width: 48em) {
    .main-container > div:first-child {
      padding-top: calc(20px * 1); } }

.main-container > div:last-child {
  padding-bottom: calc(20px / 2); }
  @media (min-width: 48em) {
    .main-container > div:last-child {
      padding-bottom: calc(20px * 1); } }

.cb-headline h1 {
  font-size: 1.4rem;
  line-height: 130%;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left; }
  @media (min-width: 48em) {
    .cb-headline h1 {
      font-size: 2rem;
      line-height: 130%; } }

.cb-video-headline, .cb-video-full-width {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.cb-video-headline .cb-video-wrapper {
  max-height: 60vh; }

.cb-video-headline h1 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  line-height: 125%;
  letter-spacing: 1.75px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  z-index: 1;
  position: absolute;
  padding: 0 40px;
  font-size: 1.6rem; }
  @media (min-width: 48em) {
    .cb-video-headline h1 {
      font-size: 3.5rem;
      line-height: 130%; } }
  @media (min-width: 48em) {
    .cb-video-headline h1 {
      padding: 0 80px; } }

.cb-question-answer .column-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .cb-question-answer .column-left p {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 1.05rem;
    line-height: 155%;
    font-weight: 900;
    line-height: 200%;
    letter-spacing: 1px;
    text-transform: uppercase; }

.cb-question-answer .column-right p {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 1.05rem;
  line-height: 155%; }

.cb-quote-text .column-left p {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 105%; }
  @media (min-width: 48em) {
    .cb-quote-text .column-left p {
      font-size: 1.8rem; } }

.cb-quote-text .column-left .quote-subline {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 1.05rem;
  line-height: 155%;
  margin-top: calc(20px / 4);
  margin-bottom: calc(20px);
  font-size: 0.8rem; }
  @media (min-width: 48em) {
    .cb-quote-text .column-left .quote-subline {
      margin-top: calc(20px / 2);
      margin-bottom: calc(20px / 2);
      font-size: 1.1rem; } }

.cb-quote-text .column-right p {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 1.05rem;
  line-height: 155%;
  line-height: 130%; }

.cb-spacer .hug {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.cb-spacer-element {
  width: calc(100% - 200px);
  height: 1px;
  background-color: #000000; }

.cb-spacer-half .hug {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.wp-block-image {
  width: 100%;
  padding-left: calc(20px * 1.5);
  padding-right: calc(20px * 1.5);
  width: 100%;
  overflow: hidden;
  max-width: 100%;
  padding-top: calc(20px / 2);
  padding-bottom: calc(20px / 2);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (min-width: 48em) {
    .wp-block-image {
      max-width: 1100px;
      padding-left: 20px;
      padding-right: 20px; } }

.cb-three-column-headline-video .column-three-block {
  padding: 20px; }

.cb-three-column-headline-video h2 {
  font-size: 1.2rem;
  line-height: 2.5rem;
  font-family: "Roboto Mono", sans-serif;
  font-weight: bold; }
  @media (min-width: 48em) {
    .cb-three-column-headline-video h2 {
      font-size: 1.6rem;
      line-height: 3.5rem; } }

.cb-three-column-headline-video p {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 1.05rem;
  line-height: 155%;
  margin-top: 20px; }

.cb-map #cb-map-osm {
  height: 60vh; }

.cb-team {
  margin-top: calc(20px * -1.5); }
  .cb-team .column-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .cb-team h2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 1.05rem;
    line-height: 155%;
    font-family: "Roboto Mono", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: calc(20px * 2);
    margin-bottom: calc(20px * 1); }
  .cb-team .team-member {
    height: 220px;
    padding-left: 10px;
    padding-right: 10px; }
    .cb-team .team-member .team-member-pic {
      background-size: contain;
      width: 160px;
      height: 90px;
      background-position: center center;
      background-repeat: no-repeat;
      margin-bottom: calc(20px * 1); }
    .cb-team .team-member h3, .cb-team .team-member p {
      font-family: "Roboto", sans-serif;
      font-weight: normal;
      font-size: 1.05rem;
      line-height: 155%;
      margin: 0;
      padding: 0;
      line-height: 130%; }
    .cb-team .team-member h3 {
      font-weight: bold;
      margin-top: calc(20px / 4);
      letter-spacing: 1.75px; }

.cb-team-core {
  margin-top: 0; }

.cb-blocks ul {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 1.05rem;
  line-height: 155%;
  margin-left: 20px; }
  .cb-blocks ul li {
    list-style-type: disc; }

.cb-text-text .column-left {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4; }
  .cb-text-text .column-left p {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 1.05rem;
    line-height: 155%;
    line-height: 160%;
    margin-bottom: 0; }

.cb-text-text .column-right {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5; }
  .cb-text-text .column-right p {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 1.05rem;
    line-height: 155%;
    line-height: 160%; }

.cb-newsletter .email-label {
  font-size: 1.4rem;
  line-height: 130%;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700; }
  @media (min-width: 48em) {
    .cb-newsletter .email-label {
      font-size: 2rem;
      line-height: 130%; } }

.cb-newsletter .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.cb-newsletter .email-field {
  margin-right: 20px; }

.cb-newsletter .input-field {
  width: 40%;
  border-bottom: 2px solid black;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  line-height: 16px;
  padding: 0;
  margin: 0; }
  .cb-newsletter .input-field input {
    width: 100%;
    background-color: transparent;
    height: 120%;
    border-style: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    font-size: 1.4rem; }

.cb-newsletter .submit-field input {
  width: 60px;
  height: 100%;
  background-image: url(/wp-content/themes/ecsa/build/assets/svgs/arrow.svg);
  background-repeat: no-repeat;
  background-position: center center; }

.cb-video-headline-newsletter {
  overflow: visible;
  padding-bottom: calc(20px * 10) !important; }
  @media (min-width: 48em) {
    .cb-video-headline-newsletter {
      padding-bottom: calc(20px * 4) !important; } }
  .cb-video-headline-newsletter .hug {
    position: relative;
    overflow: visible; }
  .cb-video-headline-newsletter h2 {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 2rem;
    line-height: 125%;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    color: #FFFFFF;
    position: absolute;
    padding: 0 40px;
    font-size: 1.4rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 40px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 48em) {
      .cb-video-headline-newsletter h2 {
        font-size: 3.5rem;
        line-height: 130%; } }
    @media (min-width: 48em) {
      .cb-video-headline-newsletter h2 {
        padding: 0 60px;
        font-size: 3rem; } }
    @media (min-width: 56.25em) {
      .cb-video-headline-newsletter h2 {
        padding: 0 80px;
        font-size: 3.8rem; } }
  .cb-video-headline-newsletter .newsletter-box {
    height: 60px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    padding-left: 0;
    padding-right: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (min-width: 48em) {
      .cb-video-headline-newsletter .newsletter-box {
        bottom: 40px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
  .cb-video-headline-newsletter .box-left {
    margin-left: calc(20px * 1.5);
    margin-right: calc(20px * 1.5); }
    @media (min-width: 48em) {
      .cb-video-headline-newsletter .box-left {
        margin-left: 40px;
        margin-right: 0; } }
    .cb-video-headline-newsletter .box-left > span {
      display: block;
      padding-left: calc(20px * 0.5);
      padding-bottom: 5px;
      color: #FF7266;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: bold;
      font-size: 1.5rem;
      line-height: 105%;
      font-size: 1.1rem; }
      @media (min-width: 48em) {
        .cb-video-headline-newsletter .box-left > span {
          font-size: 1.8rem; } }
      @media (min-width: 48em) {
        .cb-video-headline-newsletter .box-left > span {
          padding-left: calc(20px * 0.5);
          font-size: 1rem;
          color: #FFD839; } }
      @media (min-width: 56.25em) {
        .cb-video-headline-newsletter .box-left > span {
          font-size: 1.3rem; } }
    .cb-video-headline-newsletter .box-left .form {
      background-color: #000000;
      height: 55px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      border: 2px solid #FF7266;
      width: auto; }
      @media (min-width: 48em) {
        .cb-video-headline-newsletter .box-left .form {
          width: 400px; } }
      .cb-video-headline-newsletter .box-left .form .input-field {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        padding-left: calc(20px * 0.5); }
        @media (min-width: 48em) {
          .cb-video-headline-newsletter .box-left .form .input-field {
            padding-left: calc(20px * 0.5); } }
        .cb-video-headline-newsletter .box-left .form .input-field input {
          width: 100%;
          color: #FFFFFF;
          font-family: "Roboto", sans-serif;
          font-weight: normal;
          font-size: 1.05rem;
          line-height: 155%; }
      .cb-video-headline-newsletter .box-left .form .submit-field input {
        width: 60px;
        height: 51px;
        background-image: url(/wp-content/themes/ecsa/build/assets/svgs/arrow.svg);
        background-color: #FF7266;
        background-repeat: no-repeat;
        background-size: 35px;
        background-position: center center; }
  .cb-video-headline-newsletter .box-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 80px;
    margin-left: calc(20px * 1.5);
    margin-right: calc(20px * 1.5);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (min-width: 48em) {
      .cb-video-headline-newsletter .box-right {
        margin-left: 0;
        margin-right: 40px; } }
    .cb-video-headline-newsletter .box-right div {
      color: #FF7266;
      margin-top: 25px;
      padding-right: 10px;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: bold;
      font-size: 1.5rem;
      line-height: 105%;
      font-size: 1.1rem;
      text-align: left;
      padding-left: calc(20px * 0.5); }
      @media (min-width: 48em) {
        .cb-video-headline-newsletter .box-right div {
          font-size: 1.8rem; } }
      @media (min-width: 48em) {
        .cb-video-headline-newsletter .box-right div {
          color: #FFD839;
          margin-top: 35px;
          font-size: 1rem;
          text-align: right; } }
      @media (min-width: 56.25em) {
        .cb-video-headline-newsletter .box-right div {
          margin-top: 30px;
          font-size: 1.3rem; } }
      .cb-video-headline-newsletter .box-right div span {
        font-style: italic; }
    .cb-video-headline-newsletter .box-right .download-box {
      margin-top: 20px;
      display: block;
      background-color: #000000;
      border: 2px solid #FF7266;
      width: 60px;
      height: 55px;
      background-image: url(/wp-content/themes/ecsa/build/assets/svgs/arrow-down.svg);
      background-repeat: no-repeat;
      background-size: 35px;
      background-position: center center; }
      @media (min-width: 48em) {
        .cb-video-headline-newsletter .box-right .download-box {
          margin-top: 25px; } }

.side-menu-container {
  position: fixed;
  top: 120px;
  left: 0;
  width: 30px;
  z-index: 999; }
  @media (min-width: 48em) {
    .side-menu-container {
      top: 160px;
      width: 50px; } }
  .side-menu-container ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-transform: rotateZ(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotateZ(-90deg);
    height: 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 48em) {
      .side-menu-container ol {
        height: 50px; } }
    .side-menu-container ol li {
      padding: 0 20px;
      background: #FFFFFF;
      white-space: nowrap; }
      .side-menu-container ol li a {
        text-decoration: none;
        font-size: 1.2rem;
        line-height: 2.5rem;
        font-family: "Roboto Mono", sans-serif;
        font-weight: bold;
        line-height: 2.2rem; }
        @media (min-width: 48em) {
          .side-menu-container ol li a {
            font-size: 1.6rem;
            line-height: 3.5rem; } }
        @media (min-width: 48em) {
          .side-menu-container ol li a {
            line-height: 3.8rem; } }
        .side-menu-container ol li a:hover {
          text-decoration: underline; }

.cb-underline {
  border-bottom: 1px solid #000000; }

.cb-events-upcoming-background {
  background-color: #FFB564; }

.cb-events-past-background {
  background-color: #FFE7CD; }

.cb-events-upcoming .column-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.event-upcoming {
  overflow: hidden;
  border-bottom: 1px solid #000000;
  margin-bottom: 20px; }
  .event-upcoming:last-child {
    border-bottom: 0;
    margin-bottom: 0; }
  @media (min-width: 48em) {
    .event-upcoming {
      min-height: 160px;
      padding-right: 20px;
      border-bottom: 0; }
      .event-upcoming:nth-child(3n) {
        padding-right: 0; } }
  .event-upcoming p {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 1.05rem;
    line-height: 155%;
    margin-bottom: 0; }
  .event-upcoming .event-date {
    font-style: italic; }
  .event-upcoming h3 {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 1.05rem;
    line-height: 155%;
    font-weight: bold; }
  .event-upcoming .event-address {
    margin-top: calc(20px / -4); }
  @media (min-width: 48em) {
    .event-upcoming .event-description-top {
      min-height: 120px; } }
  .event-upcoming .event-description {
    margin-top: calc(20px / 2);
    margin-bottom: calc(20px * 1);
    word-break: break-word; }
    @media (min-width: 48em) {
      .event-upcoming .event-description {
        margin-top: 20px;
        word-break: break-word;
        max-height: 230px;
        overflow: hidden; } }
    .event-upcoming .event-description p {
      line-height: 130%; }

.cb-events-past .column-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.cb-events-past .cb-spacer-element {
  width: 100%;
  margin: 40px 0; }
  .cb-events-past .cb-spacer-element:last-child {
    display: none; }

.event-past {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }
  @media (min-width: 48em) {
    .event-past {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .event-past:first-child {
    margin-top: 20px; }
  .event-past h3 {
    font-size: 1.4rem;
    line-height: 130%;
    font-family: "Roboto", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px; }
    @media (min-width: 48em) {
      .event-past h3 {
        font-size: 2rem;
        line-height: 130%; } }
  .event-past p {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 1.05rem;
    line-height: 155%; }
  .event-past .event-subtitle {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 1.05rem;
    line-height: 155%;
    font-size: 0.8rem;
    margin-bottom: calc(20px * 0.5); }
  .event-past .event-date, .event-past .event-place, .event-past .event-address {
    margin-bottom: 0; }
  .event-past .spacer {
    height: 20px; }

.cb-archive-background {
  /*background-color: $colorOne;*/ }

.cb-archive .column-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.archive-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  border-bottom: 1px solid black;
  padding-bottom: calc(20px * 2);
  margin-bottom: calc(20px * 2); }
  @media (min-width: 48em) {
    .archive-post {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .archive-post h2 {
    font-size: 1.4rem;
    line-height: 130%;
    font-family: "Roboto", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700; }
    @media (min-width: 48em) {
      .archive-post h2 {
        font-size: 2rem;
        line-height: 130%; } }
  .archive-post .column-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .archive-post .column-left p {
      font-family: "Roboto", sans-serif;
      font-weight: normal;
      font-size: 1.05rem;
      line-height: 155%; }
    .archive-post .column-left .archive-authors {
      font-weight: bold;
      margin-top: calc(20px * 1);
      margin-bottom: 0; }
      @media (min-width: 48em) {
        .archive-post .column-left .archive-authors {
          margin-top: 0;
          margin-bottom: calc(20px * 1); } }
    .archive-post .column-left .archive-more {
      color: #DD73AE;
      font-weight: normal;
      margin-top: calc(20px * 1); }
      @media (min-width: 48em) {
        .archive-post .column-left .archive-more {
          margin-top: 0; } }
      .archive-post .column-left .archive-more span {
        color: #000000;
        font-size: 0.9rem;
        text-transform: uppercase; }
      .archive-post .column-left .archive-more a {
        color: #000000;
        font-weight: normal;
        text-transform: uppercase;
        font-size: 0.9rem; }
  .archive-post .column-right p {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 1.05rem;
    line-height: 155%; }
  .archive-post .column-right h2 {
    margin-bottom: calc(20px * 1); }
    .archive-post .column-right h2 a {
      text-decoration: none; }
      .archive-post .column-right h2 a:hover {
        text-decoration: underline; }
  @media (min-width: 48em) {
    .archive-post .column-right {
      padding-right: 100px; } }
  .archive-post .column-right .archive-link {
    display: none;
    background-position: left center;
    background-repeat: no-repeat;
    width: 100%;
    height: 20px;
    margin-top: calc(20px * 1);
    background-image: url(/wp-content/themes/ecsa/build/assets/svgs/arrow.svg); }
    @media (min-width: 48em) {
      .archive-post .column-right .archive-link {
        display: block; } }

.main-container.cb-tag-archive .cb-tag {
  background: #DD73AE;
  padding-top: 20px; }
  @media (min-width: 48em) {
    .main-container.cb-tag-archive .cb-tag {
      padding-top: 20px; } }
  .main-container.cb-tag-archive .cb-tag .hug {
    position: relative; }

.cb-tag-headline {
  text-align: center;
  color: white;
  text-transform: uppercase;
  text-decoration: underline; }

.close-icon-white {
  background-image: url(/wp-content/themes/ecsa/build/assets/svgs/close-icon-white.svg);
  background-size: 50px;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
  position: absolute;
  right: 10px;
  top: -10px;
  display: block;
  width: 50px;
  height: 50px; }

.glossary-menu-container {
  background-color: #00C8BC;
  position: fixed;
  top: calc(50% - 75px);
  right: 0;
  width: 30px;
  z-index: 999;
  height: 110px; }
  @media (min-width: 48em) {
    .glossary-menu-container {
      top: calc(50% - 75px);
      width: 50px;
      height: 155px; } }
  .glossary-menu-container > p {
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg);
    height: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 2.5rem;
    font-family: "Roboto Mono", sans-serif;
    font-weight: bold;
    line-height: 2.8rem;
    padding: 0 20px;
    white-space: nowrap; }
    @media (min-width: 48em) {
      .glossary-menu-container > p {
        font-size: 1.6rem;
        line-height: 3.5rem; } }
    @media (min-width: 48em) {
      .glossary-menu-container > p {
        height: 50px; } }
    .glossary-menu-container > p:hover {
      text-decoration: underline;
      cursor: pointer; }
  .glossary-menu-container .glossary-close-icon {
    display: none; }
  .glossary-menu-container ol {
    display: none; }
  .glossary-menu-container.show-glossary {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    bottom: 0;
    height: auto;
    z-index: 9999;
    overflow-y: scroll;
    -webkit-transition: width 0.5s ease, height 0.5s ease;
    -o-transition: width 0.5s ease, height 0.5s ease;
    transition: width 0.5s ease, height 0.5s ease; }
    .glossary-menu-container.show-glossary > p {
      display: none; }
    .glossary-menu-container.show-glossary .glossary-close-icon {
      display: block;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
      position: fixed;
      top: 10px;
      right: 10px;
      width: 80px;
      height: 40px;
      background-image: url(/wp-content/themes/ecsa/build/assets/svgs/close-icon-white.svg);
      background-size: 50px;
      background-repeat: no-repeat;
      background-position-x: right;
      background-position-y: center; }
    .glossary-menu-container.show-glossary ol {
      display: block;
      padding: 20px 20px; }
      .glossary-menu-container.show-glossary ol li {
        margin-bottom: 20px; }
        .glossary-menu-container.show-glossary ol li p {
          font-family: "Roboto", sans-serif;
          font-weight: normal;
          font-size: 1.05rem;
          line-height: 155%;
          font-size: 1rem; }
      .glossary-menu-container.show-glossary ol h4 {
        font-family: "Roboto", sans-serif;
        font-weight: normal;
        font-size: 1.05rem;
        line-height: 155%;
        font-weight: 900;
        line-height: 200%;
        letter-spacing: 1px;
        text-transform: uppercase; }
  .glossary-menu-container .glossary-link {
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px dotted; }

