@charset "UTF-8";
@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}
.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}
@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}
.modal-video-close-btn:after {
  transform: rotate(-45deg);
}
.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[data-whatintent=mouse] *, [data-whatintent=mouse] *:focus,
[data-whatintent=touch] *,
[data-whatintent=touch] *:focus,
[data-whatinput=mouse] *,
[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *,
[data-whatinput=touch] *:focus {
  outline: none;
}

[draggable=false] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Lato", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #2d333d;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 3px;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 3px;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.row {
  max-width: 71.25rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
}
.row .row {
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
}
@media print, screen and (min-width: 47.5em) {
  .row .row {
    margin-right: -1.5625rem;
    margin-left: -1.5625rem;
  }
}
@media print, screen and (min-width: 62.5em) {
  .row .row {
    margin-right: -1.5625rem;
    margin-left: -1.5625rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row.is-collapse-child, .row.collapse > .column > .row, .row.collapse > .columns > .row {
  margin-right: 0;
  margin-left: 0;
}

.column, .columns {
  flex: 1 1 0px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  min-width: 0;
}
@media print, screen and (min-width: 47.5em) {
  .column, .columns {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}
@media print, screen and (min-width: 62.5em) {
  .column, .columns {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.column.row.row, .row.row.columns {
  float: none;
  display: block;
}

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.small-up-1 {
  flex-wrap: wrap;
}
.small-up-1 > .column, .small-up-1 > .columns {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-up-2 {
  flex-wrap: wrap;
}
.small-up-2 > .column, .small-up-2 > .columns {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-up-3 {
  flex-wrap: wrap;
}
.small-up-3 > .column, .small-up-3 > .columns {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.small-up-4 {
  flex-wrap: wrap;
}
.small-up-4 > .column, .small-up-4 > .columns {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-up-5 {
  flex-wrap: wrap;
}
.small-up-5 > .column, .small-up-5 > .columns {
  flex: 0 0 20%;
  max-width: 20%;
}

.small-up-6 {
  flex-wrap: wrap;
}
.small-up-6 > .column, .small-up-6 > .columns {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.small-up-7 {
  flex-wrap: wrap;
}
.small-up-7 > .column, .small-up-7 > .columns {
  flex: 0 0 14.2857142857%;
  max-width: 14.2857142857%;
}

.small-up-8 {
  flex-wrap: wrap;
}
.small-up-8 > .column, .small-up-8 > .columns {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

@media print, screen and (min-width: 47.5em) {
  .medium-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 {
    flex-wrap: wrap;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-up-2 {
    flex-wrap: wrap;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-up-3 {
    flex-wrap: wrap;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .medium-up-4 {
    flex-wrap: wrap;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-up-5 {
    flex-wrap: wrap;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .medium-up-6 {
    flex-wrap: wrap;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .medium-up-7 {
    flex-wrap: wrap;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .medium-up-8 {
    flex-wrap: wrap;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 47.5em) and (min-width: 47.5em) {
  .medium-expand {
    flex: 1 1 0px;
  }
}
.row.medium-unstack > .column, .row.medium-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 47.5em) {
  .row.medium-unstack > .column, .row.medium-unstack > .columns {
    flex: 1 1 0px;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

@media print, screen and (min-width: 62.5em) {
  .large-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 {
    flex-wrap: wrap;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .large-up-2 {
    flex-wrap: wrap;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .large-up-3 {
    flex-wrap: wrap;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .large-up-4 {
    flex-wrap: wrap;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .large-up-5 {
    flex-wrap: wrap;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .large-up-6 {
    flex-wrap: wrap;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .large-up-7 {
    flex-wrap: wrap;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .large-up-8 {
    flex-wrap: wrap;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 62.5em) and (min-width: 62.5em) {
  .large-expand {
    flex: 1 1 0px;
  }
}
.row.large-unstack > .column, .row.large-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 62.5em) {
  .row.large-unstack > .column, .row.large-unstack > .columns {
    flex: 1 1 0px;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.shrink {
  flex: 0 0 auto;
  max-width: 100%;
}

.column-block {
  margin-bottom: 1.875rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 47.5em) {
  .column-block {
    margin-bottom: 3.125rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 62.5em) {
  .column-block {
    margin-bottom: 3.125rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 47.5em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 62.5em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 47.5em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 62.5em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #2d333d;
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}

.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #2d333d;
}
[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 180px;
  transform: translateX(-180px);
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-180px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
  transform: translateX(180px);
}

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 180px;
  transform: translateX(180px);
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(180px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
  transform: translateX(-180px);
}

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: 180px;
  transform: translateY(-180px);
}
.off-canvas-content .off-canvas.position-top {
  transform: translateY(-180px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
  transform: translateY(180px);
}

.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: 180px;
  transform: translateY(180px);
}
.off-canvas-content .off-canvas.position-bottom {
  transform: translateY(180px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
  transform: translateY(-180px);
}

.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25);
}

.off-canvas-content {
  transform: none;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push {
  transition: transform 0.5s ease;
}
.off-canvas-content.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  transform: translate(0, 0);
}

@media print, screen and (min-width: 47.5em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 180px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 180px;
  }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 180px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 180px;
  }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 180px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 180px;
  }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 180px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 180px;
  }
}
@media print, screen and (min-width: 62.5em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 180px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 180px;
  }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 180px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 180px;
  }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 180px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 180px;
  }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 180px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 180px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 62.5em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
.close-button {
  position: absolute;
  z-index: 10;
  color: #2d333d;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #0a0a0a;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.close-button.medium, .close-button {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.vertical.icon-top li a img,
.menu.vertical.icon-top li a i,
.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img,
.menu.vertical.icon-bottom li a i,
.menu.vertical.icon-bottom li a svg {
  text-align: left;
}
.menu.expanded li {
  flex: 1 1 0px;
}
.menu.expanded.icon-top li a img,
.menu.expanded.icon-top li a i,
.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img,
.menu.expanded.icon-bottom li a i,
.menu.expanded.icon-bottom li a svg {
  text-align: left;
}
.menu.simple {
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 47.5em) {
  .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 62.5em) {
  .menu.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: flex;
}
.menu.icon-left li a, .menu.nested.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg, .menu.nested.icon-left li a img,
.menu.nested.icon-left li a i,
.menu.nested.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a, .menu.nested.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg, .menu.nested.icon-right li a img,
.menu.nested.icon-right li a i,
.menu.nested.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a, .menu.nested.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg, .menu.nested.icon-top li a img,
.menu.nested.icon-top li a i,
.menu.nested.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a, .menu.nested.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img,
.menu.nested.icon-bottom li a i,
.menu.nested.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: transparent;
  color: #fff6bf;
}
.menu .active > a {
  background: transparent;
  color: #fff6bf;
}
.menu.align-left {
  justify-content: flex-start;
}
.menu.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right.icon-top li a img,
.menu.align-right.icon-top li a i,
.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img,
.menu.align-right.icon-bottom li a i,
.menu.align-right.icon-bottom li a svg {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered > .menu {
  justify-content: center;
}
.menu-centered > .menu li {
  display: flex;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
  content: "";
}
.menu-icon:hover::after {
  background: #616e83;
  box-shadow: 0 7px 0 #616e83, 0 14px 0 #616e83;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #2d333d;
  box-shadow: 0 7px 0 #2d333d, 0 14px 0 #2d333d;
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

@media print, screen and (min-width: 62.5em) {
  .hide-for-large {
    display: none !important;
  }
}

.show-for-medium {
  display: inline;
}
@media screen and (max-width: 47.49875em) {
  .show-for-medium {
    display: none !important;
  }
}

.show-for-large {
  display: inline;
}
@media screen and (max-width: 62.49875em) {
  .show-for-large {
    display: none !important;
  }
}

.responsive-embed {
  position: relative;
  padding-bottom: 56.25%; /*16:9*/
  height: 0;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-block;
  padding: 0.7em 1.2em;
  text-align: center;
  border-radius: 6px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  background: #1c71d0;
  border: 1px solid #1c71d0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn:hover {
  background: #1e78dd;
}
.contest .btn {
  background: #7920ca;
  border-color: #7920ca;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.contest .btn:hover {
  background: #8122d7;
}
.quiz .btn {
  background: #f77120;
  border-color: #f77120;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.quiz .btn:hover {
  background: #f87a2f;
}

a.btn-small {
  font-size: 0.8rem;
  padding: 0.12em 0.7em 0.22em;
  border-radius: 3px;
}

a.btn-green {
  font-weight: bold;
  background-color: #16c775;
  border-color: #16c775;
}
a.btn-green:hover {
  background-color: #14b96d;
}

a.btn.btn-outline {
  background: transparent;
  color: inherit;
  color: #404957;
  border-color: #404957;
}
a.btn.btn-outline:hover {
  background: transparent;
  color: black;
  border-color: black;
}

div.selector {
  display: flex;
  border: 1px solid #104076;
  border-radius: 6px;
}
div.selector .tab {
  flex-grow: 1;
  border-right: 1px solid #104076;
}
div.selector .tab:last-child {
  border: none;
}
div.selector input {
  display: none;
}
div.selector label {
  display: block;
  margin: 0;
  padding: 0.8rem 0;
  text-align: center;
  cursor: pointer;
  color: #1c71d0;
}
div.selector input:checked + label {
  background: #1c71d0;
  color: #ffffff;
}
.contest div.selector {
  border-color: #3023ae;
}
.contest div.selector .tab {
  border-right-color: #3023ae;
}
.contest div.selector label {
  color: #7920ca;
}
.contest div.selector input:checked + label {
  background: #7920ca;
}
.quiz div.selector {
  border-color: #f76b1c;
}
.quiz div.selector .tab {
  border-right-color: #f76b1c;
}
.quiz div.selector label {
  color: #f77120;
}
.quiz div.selector input:checked + label {
  background: #f77120;
}

.switch {
  position: relative;
  border-radius: 32px;
  margin: 0 auto 20px;
  border: 1px solid rgba(213, 218, 223, 0.4);
  box-shadow: inset 0 0 4px 1px rgba(0, 0, 0, 0.12);
  height: 30px;
  width: 50px;
  font-size: 0.9375rem;
  cursor: pointer;
  /* The slider */
}
.switch input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  height: 30px;
  width: 50px;
  cursor: pointer;
}
.switch label {
  position: absolute;
  top: 0.25rem;
  color: #8c97aa;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease;
}
.switch input:checked ~ label:nth-of-type(1),
.switch input ~ :checked ~ label:nth-of-type(2) {
  color: #2d333d;
}
.switch label:nth-of-type(1) {
  right: 3.5rem;
}
.switch label:nth-of-type(2) {
  left: 3.5rem;
}
.switch input:checked {
  z-index: 0;
}
.switch .slide-button {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background-color: #16c775;
  transition: all 0.3s ease-out;
}
.switch input:last-of-type:checked ~ .slide-button {
  left: 22px;
}

.box {
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
}

.tippy-tooltip[data-size=small] {
  max-width: 280px;
  font-size: 0.8125rem;
  padding: 0.3rem 0.6rem 0.4rem;
  line-height: 1.3;
}

html.touchevents [data-tippy] {
  user-select: none;
  -webkit-user-select: none;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
kbd,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: Oswald, Arial Narrow, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 0.8rem;
}

h2 {
  font-size: 1.9rem;
}

h3,
h4 {
  margin-top: 1.7rem;
}

h3 {
  font-size: 1.2em;
}

kbd {
  font-size: 0.8em;
}

p {
  margin-bottom: 1.2rem;
  font-size: inherit;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: #1c71d0;
}

img,
svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

kbd {
  padding: 0.125rem 0.25rem 0;
  background-color: #dee1e7;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a;
  border-radius: 3px;
}

blockquote {
  border-left: 5px solid #eeeeee;
  padding: 0 0 0 1.3rem;
  font-style: italic;
}

legend,
figcaption {
  margin: 0 auto;
  padding-top: 0.5rem;
  font-style: italic;
  font-size: 0.95rem;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}
.article-header .subtitle {
  margin: 0 auto;
  max-width: 500px;
  font-size: 1.2rem;
  color: #616e83;
}

.img-bordered > img,
img.img-bordered {
  border: 1px solid #cfcfcf;
  box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.25);
}

a.img-bordered:hover > img {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
}

.text-center {
  text-align: center;
}

article {
  padding: 2.5rem 0;
  font-size: 1.2rem;
}
article a {
  text-decoration: underline;
}
article h1 a,
article h2 a,
article h3 a {
  text-decoration: none;
}
article ul,
article ol,
article dl {
  list-style-position: outside;
  line-height: 1.6;
  margin-left: 2.5rem;
  margin-bottom: 1rem;
}
article li {
  padding: 0 0 1rem 0.5rem;
}

/*** Top of the site ***/
#top-section {
  background: linear-gradient(180deg, #1fa2ff 0%, #1c71d0 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.contest #top-section {
  background: linear-gradient(180deg, #c86dd7 0%, #3023ae 100%);
}
.quiz #top-section {
  background: linear-gradient(180deg, #f7bb4c 0%, #f76b1c 100%);
}

.title-bar {
  width: 100%;
  padding: 1.4rem 0 1.5rem;
}
.title-bar .title-bar-title {
  display: flex;
  align-items: center;
  padding-right: 1.1em;
  font-size: 1rem;
}
@media print, screen and (max-width: 47.49875em) {
  .title-bar .title-bar-title {
    font-size: 0.8rem;
  }
}
.title-bar .title-bar-title .app-logo svg {
  height: 2.3em;
  padding-right: 0.7em;
}
.title-bar .title-bar-title .app-title a {
  color: #ffffff;
  font-size: 1.3em;
  line-height: 0;
  font-weight: bold;
  white-space: nowrap;
}
.title-bar .btn-login {
  display: inline;
  padding: 0.55rem 1.2rem;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  border: 1px solid #ffffff;
  background: inherit;
}
@media print, screen and (max-width: 62.49875em) {
  .title-bar .btn-login {
    display: none;
  }
}
.title-bar .btn-login:hover {
  background: inherit;
  border-color: rgba(255, 255, 255, 0.7);
}
.title-bar .menu-icon {
  vertical-align: top;
}
@media print, screen and (min-width: 62.5em) {
  .title-bar .menu-icon {
    display: none;
  }
}
.title-bar.is-stuck {
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.8rem 0 0.9rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.title-bar.is-stuck a,
.title-bar.is-stuck .app-title a {
  color: #2d333d;
}
.title-bar.is-stuck a:hover,
.title-bar.is-stuck .app-title a:hover {
  color: black;
}
.title-bar.is-stuck .app-logo svg path {
  fill: #2d333d !important;
}
.title-bar.is-stuck .btn-login {
  border-color: #2d333d;
}
.title-bar.is-stuck .active > a {
  text-shadow: none;
  font-weight: 900;
  color: black;
}

.menu {
  justify-content: flex-end;
}
.menu a {
  font-size: 0.95rem;
  font-weight: bold;
  color: #ffffff;
}
.menu a:hover {
  color: #fff6bf;
}
.menu .active > a {
  text-shadow: 1px 1px 1px rgb(97, 97, 97);
}

@media print, screen and (max-width: 62.49875em) {
  #top-section .menu {
    display: none;
  }
}

#off-canvas-menu .menu a {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #22272e;
}
#off-canvas-menu .menu a:hover {
  background: #22272e;
}
#off-canvas-menu .close-button {
  color: #6f7d94;
}
#off-canvas-menu .close-button:hover {
  color: #fff6bf;
}

.slogan {
  font-size: 2.5rem;
  min-height: 11rem;
  padding-bottom: 3rem;
}
@media print, screen and (max-width: 47.49875em) {
  .slogan {
    font-size: 1.8rem;
    min-height: 9rem;
  }
}
.slogan h1 {
  color: #ffffff;
  font-size: inherit;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  text-shadow: 1px 1px 1px rgb(97, 97, 97);
  margin: 0;
}

.auto_translate {
  background: #fff6bf;
  padding: 0.25rem 0 0.35rem;
  line-height: 1.2;
  text-align: center;
}

/*** Bottom of the site ***/
.footer-cta {
  padding: 4rem 0;
  background-color: #404957;
  font-size: 1.1em;
}

footer {
  background-color: #2d333d;
  color: #ffffff;
  letter-spacing: 0.05rem;
  text-align: center;
}
footer a {
  color: #ffffff;
}

.other-apps {
  padding: 4rem 0 3rem;
  font-size: 1rem;
}
@media print, screen and (max-width: 47.49875em) {
  .other-apps {
    font-size: 0.85rem;
  }
}
.other-apps a {
  color: #ffffff;
  vertical-align: middle;
}
.other-apps a:hover {
  color: #fff;
}
.other-apps .other-apps-title {
  font-size: 1.1em;
  margin-bottom: 2.5em;
  color: #8c97aa;
}
.other-apps .app-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.other-apps .app-title {
  font-size: 1.1em;
}
.other-apps .app-logo {
  margin-right: 0.7em;
}
@media print, screen and (max-width: 47.49875em) {
  .other-apps .app-logo {
    width: 100%;
    margin: 0 0 0.2em 0;
  }
}
.other-apps .app-logo svg {
  height: 2em;
}

address {
  display: inline-block;
  padding: 3rem 0;
  border-top: 1px solid #8c97aa;
  color: #8c97aa;
  font-size: 0.9rem;
  font-style: normal;
}
address a {
  color: inherit;
}
address a:hover {
  color: white;
}

body.blog h2 a,
body.blog-article h2 a {
  color: #2d333d;
}
body.blog table,
body.blog-article table {
  margin: 1rem 0;
}
body.blog table th,
body.blog table td,
body.blog-article table th,
body.blog-article table td {
  padding: 1rem 1rem;
  border: 1px solid #ddd;
}
body.blog .summary,
body.blog-article .summary {
  padding: 4rem 0;
}
body.blog .summary:nth-child(even),
body.blog-article .summary:nth-child(even) {
  background: #f8f9fa;
}
body.blog .summary:last-child,
body.blog-article .summary:last-child {
  padding-bottom: 0;
}
body.blog .img-container,
body.blog-article .img-container {
  text-align: center;
  margin: 2em 0 2em;
}
body.blog .img-container img,
body.blog-article .img-container img {
  border-radius: 6px;
}
body.blog .article-date,
body.blog-article .article-date {
  color: #616e83;
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
  font-weight: normal;
}
body.blog .pagination,
body.blog-article .pagination {
  margin: 2rem 0;
}
body.blog .pagination label,
body.blog-article .pagination label {
  font-weight: bold;
}
body.blog .pagination .links,
body.blog-article .pagination .links {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 1rem;
}
body.blog .pagination .links .prev,
body.blog-article .pagination .links .prev {
  margin-right: 1em;
}

.ent-feature {
  display: flex;
  margin: 0 0 1.5rem 1.5rem;
}

.icon-star {
  margin-right: 0.5rem;
  min-width: 16px;
  height: 16px;
  margin-top: 0.3rem;
  background-image: url("/images/icons/star-cee94bfe.svg");
  background-size: 100%;
}

body.examples article {
  padding: 0;
}
body.examples .examples-selector {
  margin-top: 4rem;
  font-size: 1.2rem;
}
@media print, screen and (max-width: 47.49875em) {
  body.examples .examples-selector {
    margin-top: 2rem;
    font-size: 1rem;
  }
}
body.examples .examples-selector input:checked + label {
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.examples .modal-video-body {
  max-width: 1090px;
}
body.examples #poll-cat {
  display: block;
}
body.examples .examples-cat {
  display: none;
}
body.examples .created-with {
  border-radius: 4px;
  padding: 1rem 1.2rem;
  margin-top: 2rem;
  background: #f8f9fa;
  text-align: center;
}
body.examples .featured {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}
body.examples .featured .icon {
  width: 30px;
  margin-right: 8px;
  line-height: 0;
}
@media print, screen and (max-width: 47.49875em) {
  body.examples .featured .icon {
    display: none !important;
  }
}
body.examples .example {
  padding: 5rem 0;
}
body.examples .example:first-child {
  background: none;
}
body.examples .example:nth-child(even) {
  background: #f8f9fa;
}
@media print, screen and (max-width: 62.49875em) {
  body.examples .example {
    padding: 3rem 0;
  }
}
body.examples .example img {
  width: 100%;
  max-width: 390px;
  margin-top: 0.5rem;
  border-radius: 3px;
}
body.examples .example h3 {
  margin-top: 0.3rem;
}
@media print, screen and (max-width: 62.49875em) {
  body.examples .example h3 {
    margin-top: 1.2rem;
  }
}
body.examples .example .buttons {
  margin: 0 0 1rem;
}
body.examples .example .btn-tutorial {
  margin-left: 0.5rem;
}
body.examples .example .btn-tutorial:before {
  content: "►";
  padding-right: 0.3rem;
}
body.examples .example .related {
  font-size: 1rem;
}
body.examples .example .related ul {
  list-style: none;
  margin: 0;
}
body.examples .example .related li {
  padding: 0.1rem 0;
}

body.faq .faq-category {
  padding: 2.5rem 0 0;
}
body.faq .faq-category:first-child {
  padding-top: 0;
  background: none;
}
body.faq .faq-category:last-child {
  padding-bottom: 0;
}
body.faq .faq-category h2 {
  margin: 0;
}
body.faq .faq-article {
  padding: 1rem 0;
  border-bottom: 1px solid #dee1e7;
}
body.faq .faq-article:last-child {
  border-bottom: none;
}
body.faq .faq-article.highlight {
  animation: hightlight-animation 1s;
}
body.faq .anchor {
  padding-top: 95px;
  margin-top: -95px;
}
body.faq .faq-question {
  position: relative;
  display: block;
  margin: 0.3rem 0;
  padding-right: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
}
body.faq .faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.5s;
}
body.faq .faq-question a {
  color: inherit;
  text-decoration: none;
}
body.faq .faq-answer {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s;
  color: #616e83;
}
body.faq input {
  position: absolute;
  opacity: 0;
}
body.faq input:checked ~ .faq-answer {
  margin: 0.7rem 0;
  max-height: 24rem;
}
body.faq input:checked + label::after {
  transform: rotate(315deg);
}

@keyframes hightlight-animation {
  25% {
    background: #fff6bf;
  }
}
body.pricing .additional-infos {
  text-align: center;
  max-width: 450px;
  margin: 4rem auto 2rem;
}
body.pricing div#plans-matrix {
  background: #f8f9fa;
  border-top: 1px solid #f0f1f4;
  border-bottom: 1px solid #f0f1f4;
  padding: 30px 0;
}
body.pricing div#plans-matrix .plans-container {
  display: block;
}
@media print, screen and (min-width: 47.5em) {
  body.pricing div#plans-matrix .plans-container {
    display: flex;
    justify-content: center;
  }
}
body.pricing div#plans-matrix .box {
  margin: 2rem 1rem;
  background: #ffffff;
  min-width: 280px;
}
@media print, screen and (min-width: 47.5em) {
  body.pricing div#plans-matrix .box.highlight {
    transform: scale(1.07);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
}
body.pricing div#plans-matrix .plan-header {
  min-height: 190px;
  text-align: center;
}
body.pricing div#plans-matrix .single {
  display: none;
}
body.pricing div#plans-matrix.single .annual {
  display: none;
}
body.pricing div#plans-matrix.single .single {
  display: block;
}
body.pricing div#plans-matrix .plan-title {
  font-family: Oswald, Arial Narrow, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
}
body.pricing div#plans-matrix .price .currency {
  vertical-align: 15px;
  color: #8c97aa;
  font-size: 0.875rem;
}
body.pricing div#plans-matrix .price .number {
  font-size: 2.5rem;
  font-weight: bold;
}
body.pricing div#plans-matrix .price .period {
  color: #8c97aa;
  font-size: 0.9375rem;
}
body.pricing div#plans-matrix .price-details {
  color: #8c97aa;
  font-size: 0.875rem;
}
body.pricing div#plans-matrix .price-details br {
  display: none;
}
body.pricing div#plans-matrix .unavailable {
  margin-top: 15px;
  color: #8c97aa;
}
body.pricing div#plans-matrix .btn-select-plan {
  display: block;
  margin: 20px 0 0;
  padding: 9px 18px;
  font-size: 0.875rem;
}
body.pricing div#plans-matrix .plan-features {
  display: inline-block;
}
body.pricing div#plans-matrix .feat {
  margin: 12px 0;
  color: #404957;
  font-size: 0.9375rem;
}
body.pricing div#plans-matrix .feat:last-child {
  margin-bottom: 0;
}
body.pricing div#plans-matrix .feat .attr {
  display: inline-block;
  font-weight: bold;
  min-width: 18px;
}
body.pricing div#plans-matrix .feat .attr .fa-check,
body.pricing div#plans-matrix .feat .attr .fa-times {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  background-repeat: no-repeat;
}
body.pricing div#plans-matrix .feat .attr .fa-check {
  width: 13px;
  height: 13px;
  background-image: url("/images/icons/checkmark-4d4177c3.svg");
  background-size: 13px;
}
body.pricing div#plans-matrix .feat .attr .fa-times {
  width: 11px;
  height: 11px;
  background-image: url("/images/icons/close-3d5b9468.svg");
  background-size: 11px;
}
body.pricing div#plans-matrix .feat.disabled {
  color: #8c97aa;
}
body.pricing div#plans-matrix .feat span {
  cursor: help;
}
body.pricing div#plans-matrix .feat span:hover {
  border-bottom: 1px dashed #8c97aa;
}
body.pricing div#plans-matrix.single .annual-only, body.pricing div#plans-matrix.annual .one-time-only {
  display: none;
}
body.pricing div#plans-matrix:not(.single) .box {
  position: relative;
  overflow: inherit;
}
body.pricing div#plans-matrix:not(.single) .ribbon {
  display: block;
  position: absolute;
  right: -5px;
  top: -5px;
  overflow: hidden;
  width: 75px;
  height: 75px;
}
body.pricing div#plans-matrix:not(.single) .ribbon span {
  z-index: 5;
  font-size: 0.625rem;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 20px;
  transform: rotate(45deg);
  width: 100px;
  display: block;
  background: #0a0a0a;
  position: absolute;
  top: 19px;
  right: -21px;
}
body.pricing div#plans-matrix:not(.single) .ribbon span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  z-index: -1;
  border-right: 3px solid #0a0a0a;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #0a0a0a;
}
body.pricing div#plans-matrix:not(.single) .ribbon span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #0a0a0a;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #0a0a0a;
}

.last-updated {
  margin-top: -0.5rem;
  color: #616e83;
}

.cc-mention {
  margin-top: 2rem;
  text-align: center;
  font-size: 13px;
  color: #616e83;
}

body.index {
  font-size: 15px;
}
body.index .row {
  padding: 0 1.3rem;
}
@media print, screen and (min-width: 47.5em) and (max-width: 62.49875em) {
  body.index {
    font-size: 13px;
  }
}
@media print, screen and (max-width: 47.49875em) {
  body.index {
    font-size: 12px;
  }
  body.index .row {
    padding: 0 1rem;
  }
}

/**** INTRO SECTION ****/
.intro-section {
  color: #ffffff;
}
@media print, screen and (min-width: 62.5em) {
  .intro-section {
    padding: 1em 0 0;
  }
}
.intro-section .app-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
  color: #ffffff;
}
@media screen and (max-width: 62.49875em) {
  .intro-section .app-title {
    display: none !important;
  }
}
.intro-section .app-title .app-logo {
  min-width: 40px;
  min-height: 40px;
  margin-right: 0.5em;
}
.intro-section .app-title .app-logo i {
  font-size: 2.5em;
}
.intro-section .app-title .app-name {
  font-size: 1.3em;
  font-weight: 700;
}
.intro-section .hero-container {
  display: flex;
  align-items: center;
}
.intro-section .hero {
  max-width: 45%;
  margin-bottom: 1em;
}
@media print, screen and (max-width: 62.49875em) {
  .intro-section .hero {
    font-size: 0.7rem;
  }
}
@media print, screen and (max-width: 47.49875em) {
  .intro-section .hero {
    max-width: 100%;
    margin: 3em 0 5em;
    text-align: center;
  }
}
.intro-section .hero .hero-title {
  font-family: Oswald, Arial Narrow, Arial, sans-serif;
  font-weight: bold;
  font-size: 3.2em;
  line-height: 1.35;
}
.poll .intro-section .hero .hero-title, .contest .intro-section .hero .hero-title {
  text-shadow: 1px 1px 1px rgb(97, 97, 97);
}
.intro-section .hero .hero-tagline {
  margin: 1.2em 0 2em;
  font-size: 1.8em;
}
.intro-section .hero .btn-call-to-action-start {
  background: transparent;
  border: 2px solid #ffffff;
  font-size: 1.5em;
}
.intro-section .iphone-container {
  flex-grow: 2;
  position: relative;
  height: 100%;
  padding-left: 8.9%;
  padding-top: 59%;
}
@media screen and (max-width: 47.49875em) {
  .intro-section .iphone-container {
    display: none !important;
  }
}
.intro-section .iphone-container .iphone {
  position: absolute;
  bottom: 0;
}
.intro-section .iphone-container .screenshot {
  position: absolute;
  bottom: 5.4%;
  left: 30.4%;
}
.intro-section .iphone-container .screenshot img {
  width: 63.2%;
}

#landing-content {
  /**** FEATURES SECTION ****/
  /**** VIDEO SECTION ****/
}
#landing-content .section {
  padding: 6em 0;
  text-align: center;
}
#landing-content .section .section-title {
  font-family: Oswald, Arial Narrow, Arial, sans-serif;
  font-weight: 500;
  font-size: 2.3em;
  line-height: 1.4;
}
#landing-content .section .section-text {
  margin: 1em 0 1.8em;
  font-size: 1.4em;
}
#landing-content .features-section {
  padding: 0;
}
#landing-content .features-section .feature {
  padding: 10em 0;
  color: #2d333d;
  text-align: left;
}
#landing-content .features-section .feature:nth-child(even) {
  background: #f8f9fa;
}
@media print, screen and (max-width: 62.49875em) {
  #landing-content .features-section .feature {
    padding: 6em 0;
    text-align: center;
  }
  #landing-content .features-section .feature svg {
    width: 100%;
    max-width: 475px;
    height: auto;
    margin-bottom: 3em;
  }
}
#landing-content .more-features-section {
  background: #f8f9fa;
}
#landing-content .more-features-section .feature-box {
  margin: 2.5em 0 1.5em;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  overflow: hidden;
}
#landing-content .more-features-section .feature-box.customizable {
  background-color: #3f3d56;
}
#landing-content .more-features-section .feature-box.share {
  background-color: #f8c464;
}
#landing-content .more-features-section .feature-box.results {
  background-color: #1fa2ff;
}
.contest #landing-content .more-features-section .feature-box.results {
  background-color: #7920ca;
}
.quiz #landing-content .more-features-section .feature-box.results {
  background-color: #f77120;
}
#landing-content .more-features-section .feature-img {
  height: 12rem;
  padding: 1.5rem;
}
#landing-content .more-features-section .feature-img svg {
  height: 100%;
}
#landing-content .more-features-section .feature-title {
  background: #ffffff;
  padding-top: 2rem;
  font-family: Oswald, Arial Narrow, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
#landing-content .more-features-section .feature-text {
  background: #ffffff;
  padding: 0.5em 1.5em 2em;
  font-size: 1.1rem;
}
#landing-content .video-section {
  margin-top: 1rem;
}
#landing-content .video-section .responsive-embed {
  background: #2d333d;
  margin: 1rem 0 0;
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
#landing-content .video-section .responsive-embed iframe {
  border: 2px solid #2d333d;
}
#landing-content .video-section .intro-video {
  border: 0;
}
#landing-content .video-section .video-player-cta {
  padding: 0 1rem;
  display: none;
  color: #ffffff;
}
@media print, screen and (min-width: 47.5em) {
  #landing-content .video-section .video-player-cta {
    padding-top: 8%;
  }
}
@media print, screen and (min-width: 62.5em) {
  #landing-content .video-section .video-player-cta {
    padding-top: 18%;
  }
}
#landing-content .video-section .video-player-cta .video-player-cta-title {
  font-size: 2rem;
  font-weight: 900;
}
#landing-content .video-section .video-player-cta .video-player-cta-text {
  margin: 0.3rem 0 1.8rem;
}
#landing-content .video-section .video-player-cta .btn-call-to-action-start {
  font-size: 1.1rem;
  background: #1c71d0;
}
#landing-content .buzz-section {
  background-color: #f8f9fa;
  /**** TESTIMONY SECTION ****/
}
#landing-content .buzz-section .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 2em;
}
#landing-content .buzz-section .logos > div {
  background-position: center;
  background-repeat: no-repeat;
  height: 75px;
  margin: 1.5em 0 0;
}
@media (max-width: 630px) {
  #landing-content .buzz-section .logos > div {
    width: 50% !important;
  }
}
#landing-content .buzz-section .logos .pepsi {
  background-image: url("/images/brands/pepsi-32cad31d.svg");
  background-size: 55px;
  width: 55px;
}
#landing-content .buzz-section .logos .ikea {
  background-image: url("/images/brands/ikea-22204735.svg");
  background-size: 130px;
  width: 130px;
}
#landing-content .buzz-section .logos .netflix {
  background-image: url("/images/brands/netflix-e55a37c3.svg");
  background-size: 130px;
  width: 130px;
}
#landing-content .buzz-section .logos .mcdonald {
  background-image: url("/images/brands/mcdonald-51d55fdb.svg");
  background-size: 75px;
  width: 75px;
}
#landing-content .buzz-section .logos .ea-sports {
  background-image: url("/images/brands/ea-sports-942ac1e5.svg");
  background-size: 80px;
  width: 80px;
}
@media screen and (max-width: 62.49875em) {
  #landing-content .buzz-section .logos .ea-sports {
    display: none !important;
  }
}
#landing-content .buzz-section .testimony {
  position: relative;
  margin-top: 5rem;
  text-align: left;
  line-height: 1.4;
}
#landing-content .buzz-section .testimony::before {
  content: "“";
  position: absolute;
  top: -0.4em;
  left: -0.25em;
  font-family: Georgia;
  font-size: 11em;
  font-style: normal;
  color: #dee1e7;
}
#landing-content .buzz-section .testimony .testimony-text {
  position: relative;
  z-index: 1;
  font-family: Georgia;
  font-size: 1.85em;
  font-style: italic;
}
html:not([lang=en]) #landing-content .buzz-section .testimony .testimony-text {
  font-size: 1.7em;
}
#landing-content .buzz-section .testimony .testimony-source {
  display: flex;
  align-items: center;
  margin-top: 1.3em;
}
#landing-content .buzz-section .testimony .testimony-source img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-right: 1em;
}
#landing-content .buzz-section .testimony .testimony-source .testimony-author-name {
  font-size: 1.3em;
  font-weight: bold;
}
#landing-content .buzz-section .testimony .testimony-source .testimony-website {
  font-size: 1.2em;
  color: #616e83;
}
