@charset "UTF-8";
/*
 Scss Libraries, mixins, functions and any Scss focused logic
*/
/*
* Variables are in a map in settings.scss:

    'small'  : 48em,
    'medium' : 56.25em,
    'large'  : 68.75em,

* Use like this:

.foo {
  color: red;
  @include respond-to('small') {
    color: blue;
  }
}
*/
/*
    $FUNCTIONS
\*




/*
 * Function to keep font size consistent
 .selector { font-size: fs(x-small);}
 * You can see the current values and variables in settings.scss
 */
/*
 * Function to control Index
 	.selector { z-index: z(goku);}
 * Compiles:
	.selector { z-index: 9001;}
 * The MAP used for this is in constants.scss
 */
/*
 Settings for differents elements
*/
/*
    $CONSTANTS
\*
/**
 * Constant layout values, apart from these we can also declare values
 * for different blocks sizes and more.
 */
/*
* A simple solution to manage z-index
* We implement it with the z($layers) function:
.element {
 z-index: z(goku);
}
*
*/
/**
 * "Start with the small screen first, then expand until it looks like shit. Time to insert a breakpoint!"
 * We use it with a respond-to($breakpoint) mixin:

.text {
  color: pink;
  @include respond-to(medium) {
    color: maroon;
  }
}
 *
 */
/*
    $COLORS
\*
/**
 * Color Palette
 */
/**
 * SS Colors
 */
/**
 * Message Colors
 */
/*
    $FONTS
*/
/*
 * Font Size variables are defined in a Scss MAP,
 * TODO: this MAP will create a class (in `utilities.scss`)
 * for every size with the value in REM units, you can check
 * `utilities.scss` if you need to change the loop:

 .xrs-small { font-size: .8rem}

 * We also have a function to assign font sizes, call `fs`:

  .selector { font-size: fs(x-small);}

 */
/*
 * Fonts definitions
 */
/*
 Base HTML elements
*/
/*
    $LINKS
*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css);
a {
  text-decoration: none;
  color: #EA9514;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
  color: #EA9514;
}
a:focus {
  outline: 0;
  text-decoration: none;
  color: #EA9514;
}
a:hover, a:active {
  outline: 0;
}

/*
    $TIPOGRAPHY
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: #121a24;
  text-rendering: optimizelegibility;
  text-transform: uppercase;
}

/* Set headers line-height, margin bottom and font size */
h1, .h1 {
  line-height: 1;
  font-size: 3rem;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #2f2c2c;
  text-shadow: 1px 1px white;
}

h2, .h2 {
  line-height: 1;
  font-size: 2rem;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #2f2c2c;
  text-shadow: 1px 1px white;
}

h3, .h3 {
  line-height: 1;
  font-size: 1.75rem;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #2f2c2c;
  text-shadow: 1px 1px white;
}

h4, .h4 {
  line-height: 1;
  font-size: 1.25rem;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #2f2c2c;
  text-shadow: 1px 1px white;
}

h5, .h5 {
  line-height: 1;
  font-size: 2rem;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #2f2c2c;
  text-shadow: 1px 1px white;
}

h6, .h6 {
  line-height: 1;
  font-size: 2rem;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #2f2c2c;
  text-shadow: 1px 1px white;
}

.single-post main h2 {
  margin-top: 6rem;
}

p {
  margin-top: 0;
  font-weight: 400;
}

code {
  color: #121a24;
  display: inline-block;
  padding: 2px 6px;
  font: 12px SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

hr {
  margin-top: 12px;
  margin-bottom: 12px;
  border-top: 1px solid #121a24;
  border-bottom: none;
}

.blockquote, blockquote {
  font-weight: 100;
  max-width: 600px;
  position: relative;
  margin: 0;
  padding: 0.5rem 24px;
  text-transform: none;
}
.blockquote::before, .blockquote::after, blockquote::before, blockquote::after {
  position: absolute;
  color: #dedede;
  font-size: 8rem;
  width: 4rem;
  height: 4rem;
  z-index: -1;
}
.blockquote::before, blockquote::before {
  content: "“";
  left: 0rem;
  top: 0rem;
}
.blockquote__cite, .blockquote cite, blockquote__cite, blockquote cite {
  line-height: 3;
  text-align: left;
}

.iconsvg {
  /* Flow with text content */
  display: inline-block;
  /* Inherit the parent text color */
  fill: currentColor;
  height: 1em;
  width: 1em;
  vertical-align: middle;
  position: relative;
  top: -0.0725em;
  overflow: hidden;
  pointer-events: none;
}

.header-home__cta, .btn {
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  cursor: pointer;
  color: #ffffff;
  display: inline-block;
  border: 2px solid #ffffff;
  border-radius: 24px;
  background: #EA9514;
  padding: 12px 36px;
  line-height: 1.5;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  text-align: center;
}
.header-home__cta:hover, .btn:hover {
  text-decoration: none;
  color: #ffffff;
}
.header-home__cta:focus, .btn:focus {
  -webkit-box-shadow: 0 0 2px 0 #EA9514;
          box-shadow: 0 0 2px 0 #EA9514;
  outline: 0;
  color: #ffffff;
}

/*
 Layout and general styles
*/
/*
    $GRID
*/
.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 41.87em) {
  .grid {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.grid__1 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__1 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__1 {
    -ms-flex-preferred-size: 49.25px;
        flex-basis: 49.25px;
    margin-right: 12px;
  }
}
.grid__2 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__2 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__2 {
    -ms-flex-preferred-size: 110.5px;
        flex-basis: 110.5px;
    margin-right: 12px;
  }
}
.grid__3 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__3 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__3 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__3 {
    -ms-flex-preferred-size: 171.75px;
        flex-basis: 171.75px;
    margin-right: 12px;
  }
}
.grid__4 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__4 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__4 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__4 {
    -ms-flex-preferred-size: 233px;
        flex-basis: 233px;
    margin-right: 12px;
  }
}
.grid__5 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__5 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__5 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__5 {
    -ms-flex-preferred-size: 294.25px;
        flex-basis: 294.25px;
    margin-right: 12px;
  }
}
.grid__6 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__6 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__6 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__6 {
    -ms-flex-preferred-size: 355.5px;
        flex-basis: 355.5px;
    margin-right: 12px;
  }
}
.grid__7 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__7 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__7 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__7 {
    -ms-flex-preferred-size: 416.75px;
        flex-basis: 416.75px;
    margin-right: 12px;
  }
}
.grid__8 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__8 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__8 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__8 {
    -ms-flex-preferred-size: 478px;
        flex-basis: 478px;
    margin-right: 12px;
  }
}
.grid__9 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__9 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__9 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__9 {
    -ms-flex-preferred-size: 539.25px;
        flex-basis: 539.25px;
    margin-right: 12px;
  }
}
.grid__10 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__10 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__10 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__10 {
    -ms-flex-preferred-size: 600.5px;
        flex-basis: 600.5px;
    margin-right: 12px;
  }
}
.grid__11 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__11 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__11 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__11 {
    -ms-flex-preferred-size: 661.75px;
        flex-basis: 661.75px;
    margin-right: 12px;
  }
}
.grid__12 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__12 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__12 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__12 {
    -ms-flex-preferred-size: 723px;
        flex-basis: 723px;
    margin-right: 12px;
  }
}
.grid__13 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__13 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__13 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__13 {
    -ms-flex-preferred-size: 784.25px;
        flex-basis: 784.25px;
    margin-right: 12px;
  }
}
.grid__14 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__14 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__14 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__14 {
    -ms-flex-preferred-size: 845.5px;
        flex-basis: 845.5px;
    margin-right: 12px;
  }
}
.grid__15 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__15 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__15 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__15 {
    -ms-flex-preferred-size: 906.75px;
        flex-basis: 906.75px;
    margin-right: 12px;
  }
}
.grid__16 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - (12px / 2));
      flex-basis: calc(50% - (12px / 2));
}

.grid--mobilefull .grid__16 {
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 64em) {
  .grid--mobilefull .grid__16 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

@media (min-width: 41.87em) {
  .grid__16 {
    -ms-flex-preferred-size: 968px;
        flex-basis: 968px;
    margin-right: 12px;
  }
}
.grid--twocols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid--justify {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.grid--align-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.grid--spacearound {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.grid--spacebetween {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.grid--flexgrow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.grid--nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.grid--centered {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid--item-pushright {
  margin-left: auto;
}

/*
 Main layout and HTML/BODY styles
*/
html {
  background: #f8f8f8;
  font-size: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: transparent;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #121a24;
  font-size: 1.125rem;
  font-weight: 400;
}

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

img {
  max-width: 100%;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  height: auto;
}

.header-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("images/bg-landing-m.jpg");
  background-size: cover;
  background-position: right;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 48px;
}
@media (orientation: landscape) {
  .header-home {
    padding-top: 100px;
  }
  @supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .header-home {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(100px);
    }
  }
}
@media (min-width: 64em) {
  .header-home {
    width: 100%;
    padding-right: calc((100% - 980px) / 2);
    padding-left: calc( (100% - 980px) / 2);
    height: auto;
    background-image: url("images/bg-landing.jpg");
    padding-top: 200px;
    padding-bottom: 200px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.header-home__container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 24px;
}
@media (min-width: 64em) {
  .header-home__container {
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-bottom: 24px;
    padding: 24px;
    -webkit-box-shadow: 0 0 12px 5px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 12px 5px rgba(0, 0, 0, 0.5);
  }
}
.header-home__title {
  color: #ffffff;
  text-shadow: 1px 1px #262215;
  margin-bottom: 24px;
}
.header-home__tag {
  color: #ffffff;
  font-size: 1.5rem;
}
.header-home__cta {
  border-radius: 0;
  width: 100%;
  border: 0;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-home__cta svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.header-home__cta:hover svg {
  -webkit-transform: translateX(20%) scale(1.5);
      -ms-transform: translateX(20%) scale(1.5);
          transform: translateX(20%) scale(1.5);
}
@media (min-width: 64em) {
  .header-home__cta {
    width: auto;
  }
}

.section-home {
  padding: 0 24px;
  position: relative;
  margin-bottom: 48px;
}
@media (min-width: 64em) {
  .section-home {
    width: 100%;
    padding-right: calc((100% - 980px) / 2);
    padding-left: calc( (100% - 980px) / 2);
  }
}
.section-home h2 {
  position: relative;
  margin-bottom: 4rem;
}
@media (min-width: 64em) {
  .section-home h2:before {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: #ff0057;
  }
}
.section-home--even {
  background-color: #d9d9d9;
  padding-top: 48px;
  padding-bottom: 48px;
}
.section-home--even:before {
  content: none;
}
.section-home--centered {
  background-color: #d9d9d9;
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
  height: 100vh;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 64em) {
  .section-home--centered {
    height: auto;
  }
}
.section-home--centered h2 {
  text-shadow: none;
  margin-bottom: 2rem;
}
.section-home--centered h2:before {
  content: none;
  position: absolute;
  bottom: -1rem;
  width: 100px;
  height: 2px;
  background-color: #ff0057;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section-home--centered p {
  margin-bottom: 2rem;
}
.section-home--centered .header-home__cta {
  background-color: #ff0057;
}
.section-home--centered .form-control {
  padding: 1.5rem 0.75rem;
  border-radius: 0;
}
.section-home--centered .mb-3 {
  margin-bottom: 0 !important;
}
.section-home--centered .mr-md-2 {
  margin-right: 0 !important;
}

.section-category {
  width: 100%;
  padding-right: calc((100% - 980px) / 2);
  padding-left: calc( (100% - 980px) / 2);
  margin-bottom: 48px;
}

.footer {
  padding: 48px 24px 72px 24px;
  background-color: #ff0057;
  color: #ffffff;
  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: 64em) {
  .footer {
    text-align: center;
  }
}
.footer__menu {
  list-style-type: none;
  text-align: center;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer__menu li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.footer__menu li a {
  color: #ffffff;
}
.footer__menu li:last-child::after {
  content: none;
}
.footer__ssnn {
  text-align: center;
}
@media (min-width: 64em) {
  .footer__ssnn {
    margin-top: -48px;
  }
}
.footer__ssnn a {
  margin: 0 12px;
  font-size: 1.125rem;
  color: #ffffff;
}

.disclosure {
  padding: 48px 0 48px;
}
.disclosure:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #d9d9d9;
  margin-bottom: 48px;
}
.disclosure__title {
  font-size: 1.125rem;
  margin-bottom: 1em;
}
.disclosure p {
  font-size: 1rem;
  color: #233346;
  font-family: Arial, Helvetica, sans-serif;
}

.topbar {
  padding: 24px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}
.topbar__logo {
  max-width: 200px;
}
.topbar--relative {
  position: static;
  background-color: rgba(0, 0, 0, 0.8);
  margin-bottom: 4rem;
}

.class__section {
  position: relative;
  padding-bottom: 72px;
  margin-bottom: 72px;
}
.class__section::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #EA9514;
}
.class__section:last-child {
  margin-bottom: 0;
}
.class__section:last-child:after {
  content: none;
}
.class__title {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}
@media (min-width: 64em) {
  .class__title {
    margin-bottom: 48px;
  }
}
.class__description {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}
@media (min-width: 64em) {
  .class__description {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    padding-right: 24px;
  }
}
.class__list {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 64em) {
  .class__list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-columns: 2 auto;
       -moz-columns: 2 auto;
            columns: 2 auto;
  }
}
.class__list__item {
  border-radius: 3px;
  margin-bottom: 6px;
  background-color: #e6e6e6;
  border: 1px solid #d9d9d9;
  font-weight: bold;
  cursor: pointer;
}
.class__list__item:hover svg {
  -webkit-animation: bellshake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: bellshake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
}
.class__list__item svg {
  margin-right: 1em;
  font-size: 1rem;
  color: #ff0057;
}

@-webkit-keyframes bellshake {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  15% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  45% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  75% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  85% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  92% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes bellshake {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  15% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  45% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  75% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  85% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  92% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@media (min-width: 64em) {
  .features {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 48px;
    grid-column-gap: 48px;
  }
}
.features__item {
  background-color: #ff0057;
  color: white;
  padding: 24px 24px 24px 60px;
  position: relative;
  margin-bottom: 2px;
}
@media (min-width: 64em) {
  .features__item {
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  }
}
.features__item .iconsvg {
  position: absolute;
  left: 12px;
  top: 19px;
  color: #ffffff;
  width: 32px;
  height: 32px;
}
.features__title {
  font-size: 1.125rem;
  color: white;
  text-shadow: none;
  margin-bottom: 24px;
}
.features__title:after {
  content: "";
  width: 50%;
  height: 1px;
  background-color: #EA9514;
  display: block;
  margin-top: 1em;
}
.features__description {
  font-size: 1rem;
}

.founders {
  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 all and (min-width: 800px) {
  .founders {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.founder {
  position: relative;
  text-align: center;
  padding: 24px;
  margin-bottom: 100px;
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
@media (min-width: 64em) {
  .founder__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 48px;
    grid-column-gap: 48px;
  }
}
.founder__photo {
  border-radius: 50%;
  max-width: 100px;
  margin-top: -60px;
  margin-bottom: 1em;
  border: 3px solid white;
}
.founder__text {
  text-align: left;
}

.post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-box-shadow 0.1s ease;
  transition: -webkit-box-shadow 0.1s ease;
  -o-transition: box-shadow 0.1s ease;
  transition: box-shadow 0.1s ease;
  transition: box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
  position: relative;
}
.post:hover {
  -webkit-box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.2);
}
.post__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 48px;
  grid-column-gap: 48px;
}
.post__content {
  padding: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post__date {
  font-size: 0.85rem;
}
.post__title {
  font-size: 1.125rem;
  text-shadow: none;
  margin-bottom: 2rem;
}
.post__title:before {
  content: none;
  position: absolute;
  bottom: -1rem;
  width: 100px;
  height: 2px;
  background-color: #ff0057;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.post__excerpt {
  font-size: 1rem;
}
.post__footer {
  font-size: 1.125rem;
  text-align: right;
  padding: 0 24px;
  background-color: #ff0057;
}
.post__footer a, .post__footer a:visited {
  color: #ffffff;
  font-weight: bold;
}
.post__footer a .iconsvg, .post__footer a:visited .iconsvg {
  font-size: 1.5rem;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.post__footer a:hover, .post__footer a:visited:hover {
  text-decoration: none;
}
.post__footer a:hover svg, .post__footer a:visited:hover svg {
  -webkit-transform: translateX(20%) scale(1.5);
      -ms-transform: translateX(20%) scale(1.5);
          transform: translateX(20%) scale(1.5);
}

/*
 Utilities as a last resource, so we can avoid some !importants
*/
.maxwidth {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  width: 100%;
}

/*
*
*   Classes for font- sizes, you can check them in _fonts.scss
*   Same name of the variables with the `font-` prefix

    .font-x-small {
        font-size: .9rem;
    }

    *
 */
.font-x-small {
  font-size: 0.85rem;
}

.font-small {
  font-size: 1rem;
}

.font-normal {
  font-size: 1.125rem;
}

.font-big {
  font-size: 1.125rem;
}

.font-bigger {
  font-size: 1.5rem;
}

.font-x-bigger {
  font-size: 2rem;
}

.font-huge {
  font-size: 2.5rem;
}

.font-x-huge {
  font-size: 4.25rem;
}

/*
*
*   Classes for colors, you can check them in _colors.scss
*   Same name of the variables with the `color-` prefix

    .color-info {
        color: #157ffb;
    }

    *
 */
.color-brand {
  color: #EA9514;
}

.colorbg-brand {
  background-color: #EA9514;
}

.color-primary {
  color: #ff0057;
}

.colorbg-primary {
  background-color: #ff0057;
}

.color-bg {
  color: #f8f8f8;
}

.colorbg-bg {
  background-color: #f8f8f8;
}

.color-text {
  color: #121a24;
}

.colorbg-text {
  background-color: #121a24;
}

.color-info {
  color: #157ffb;
}

.colorbg-info {
  background-color: #157ffb;
}

.color-success {
  color: #15cd72;
}

.colorbg-success {
  background-color: #15cd72;
}

.color-error {
  color: #e64759;
}

.colorbg-error {
  background-color: #e64759;
}

.color-warning {
  color: #ffa200;
}

.colorbg-warning {
  background-color: #ffa200;
}

.color-twitter {
  color: #00acee;
}

.colorbg-twitter {
  background-color: #00acee;
}

.color-twitch {
  color: #6441a4;
}

.colorbg-twitch {
  background-color: #6441a4;
}

.color-mixer {
  color: #0075d5;
}

.colorbg-mixer {
  background-color: #0075d5;
}

.color-youtube {
  color: #e62117;
}

.colorbg-youtube {
  background-color: #e62117;
}

.color-facebook {
  color: #1876f0;
}

.colorbg-facebook {
  background-color: #1876f0;
}

.center-content {
  padding: 24px;
}
@media (min-width: 64em) {
  .center-content {
    width: 100%;
    padding-right: calc((100% - 980px) / 2);
    padding-left: calc( (100% - 980px) / 2);
  }
}

.cursor-pointer {
  cursor: pointer;
}

.no-margin {
  margin: 0;
}

.margin-bottom {
  margin-bottom: 1em;
}

.margin-bottom-xl {
  margin-bottom: 4em;
}

.responsive__tabs {
  width: 100%;
  padding-right: calc((100% - 980px) / 2);
  padding-left: calc( (100% - 980px) / 2);
}
.responsive__tabs ul.scrollable-tabs {
  background-color: #333;
  overflow-x: auto;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.responsive__tabs ul.scrollable-tabs li {
  list-style-type: none;
}
.responsive__tabs ul.scrollable-tabs li a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}
.responsive__tabs ul.scrollable-tabs li a:hover, .responsive__tabs ul.scrollable-tabs li a.active {
  background-color: #777;
}