@font-face {
  font-family: "Intro";
  src: url("/fonts/intro-regular.woff2") format("woff2");
  font-weight: normal;
}

@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}

@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.1);
  }

  20% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.1);
  }

  20% {
    transform: scale(1);
  }
}

.dropzone,
.dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}

.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */

figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */

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

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

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

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */

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

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

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

/**
 * Restore the focus styles unset by the previous rule.
 */

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

/**
 * Correct the padding in Firefox.
 */

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

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

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

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

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

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

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* Hidden
   ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 57px 0 0;
  min-width: 320px;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Intro", sans-serif;
  color: #000000;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}

fieldset {
  padding: 0;
  border: 0;
  margin: 0;
}

input,
textarea,
button {
  outline: 0;
}

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

@media (min-width: 500px) {
  body {
    margin: 70px 0 0;
  }
}

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

@media (min-width: 960px) {
  body {
    margin: 97px 0 0;
  }
}

.center--x {
  left: 50%;
  transform: translateX(-50%);
}

.center--y {
  top: 50%;
  transform: translateY(-50%);
}

.center--xy {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

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

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

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex--inline {
  display: inline-flex;
}

.flex--r-nowrap {
  flex-wrap: nowrap;
}

.flex--x-start {
  justify-content: flex-start;
}

.flex--x-center {
  justify-content: center;
}

.flex--x-end {
  justify-content: flex-end;
}

.flex--x-between {
  justify-content: space-between;
}

.flex--x-around {
  justify-content: space-around;
}

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

.flex--y-center {
  align-items: center;
}

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

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

.flex--y-baseline {
  align-items: baseline;
}

.no-edge-margin > :first-child,
.no-first-margin > :first-child {
  margin-top: 0 !important;
}

.no-edge-margin > :last-child,
.no-last-margin > :last-child {
  margin-bottom: 0 !important;
}

.o--0 {
  opacity: 0;
}

.o--1 {
  opacity: 0.1;
}

.o--2 {
  opacity: 0.2;
}

.o--3 {
  opacity: 0.3;
}

.o--4 {
  opacity: 0.4;
}

.o--5 {
  opacity: 0.5;
}

.o--6 {
  opacity: 0.6;
}

.o--7 {
  opacity: 0.7;
}

.o--8 {
  opacity: 0.8;
}

.o--9 {
  opacity: 0.9;
}

.pos--rel {
  position: relative;
}

.pos--abs {
  position: absolute;
}

.pos--fix {
  position: fixed;
}

.z--0 {
  z-index: -1;
}

.z--1 {
  z-index: 1;
}

.z--2 {
  z-index: 2;
}

.z--3 {
  z-index: 3;
}

.z--4 {
  z-index: 4;
}

.z--5 {
  z-index: 5;
}

.z--6 {
  z-index: 6;
}

.z--7 {
  z-index: 7;
}

.z--8 {
  z-index: 8;
}

.z--9 {
  z-index: 9;
}

.z--10 {
  z-index: 10;
}

.z--max {
  z-index: 999;
}

.ff--intro {
  font-family: "Intro", sans-serif;
}

.ff--body {
  font-family: "Helvetica", "Arial", sans-serif;
}

.fs--10 {
  font-size: 10px;
  font-size: calc(10 / 16 * 1rem);
}

.fs--11 {
  font-size: 11px;
  font-size: calc(11 / 16 * 1rem);
}

.fs--12 {
  font-size: 12px;
  font-size: calc(12 / 16 * 1rem);
}

.fs--13 {
  font-size: 13px;
  font-size: calc(13 / 16 * 1rem);
}

.fs--14 {
  font-size: 14px;
  font-size: calc(14 / 16 * 1rem);
}

.fs--15 {
  font-size: 15px;
  font-size: calc(15 / 16 * 1rem);
}

.fs--16 {
  font-size: 16px;
  font-size: calc(16 / 16 * 1rem);
}

.fs--18 {
  font-size: 18px;
  font-size: calc(18 / 16 * 1rem);
}

.fs--20 {
  font-size: 20px;
  font-size: calc(20 / 16 * 1rem);
}

.fs--22 {
  font-size: 22px;
  font-size: calc(22 / 16 * 1rem);
}

.fs--24 {
  font-size: 24px;
  font-size: calc(24 / 16 * 1rem);
}

.fs--28 {
  font-size: 28px;
  font-size: calc(28 / 16 * 1rem);
}

.fs--32 {
  font-size: 32px;
  font-size: calc(32 / 16 * 1rem);
}

.fs--36 {
  font-size: 36px;
  font-size: calc(36 / 16 * 1rem);
}

.fs--48 {
  font-size: 48px;
  font-size: calc(48 / 16 * 1rem);
}

.fs--64 {
  font-size: 64px;
  font-size: calc(64 / 16 * 1rem);
}

.fc--white {
  color: #fff;
}

.fc--black {
  color: #000000;
}

.fc--darkgrey {
  color: #4F6162;
}

.fc--green {
  color: #18C29C;
}

.fc--darkgreen {
  color: #084447;
}

.fc--red {
  color: #D93131;
}

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

.fw--400 {
  font-weight: 400;
}

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

.fw--600 {
  font-weight: 600;
}

.fw--700 {
  font-weight: 700;
}

.lh--120 {
  line-height: calc(120 / 100);
}

.lh--150 {
  line-height: calc(150 / 100);
}

.lh--180 {
  line-height: calc(180 / 100);
}

.ls--t100 {
  letter-spacing: -0.1em;
}

.ls--t25 {
  letter-spacing: -0.025em;
}

.ls--t10 {
  letter-spacing: -0.01em;
}

.ls--l20 {
  letter-spacing: 0.02em;
}

.tt--capital {
  text-transform: capitalize;
}

.tt--lower {
  text-transform: lowercase;
}

.tt--upper {
  text-transform: uppercase;
}

.container {
  margin: 0 auto;
  width: 100%;
  padding: 0 56px;
  padding: 0 40px;
  padding: 0 28px;
}

@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 960px) {
  .container {
    padding: 0 28px;
  }
}

.container--large {
  max-width: 1424px;
}

.container--medium {
  max-width: 1160px;
}

svg {
  display: inline-block;
}

.icon--email {
  width: 28px;
  height: 22px;
}

.icon--phone {
  width: 23px;
  height: 23px;
}

.icon--arrow {
  width: 16px;
  height: 40px;
}

.icon--arrow-down {
  width: 24px;
  height: 8px;
}

.icon--close {
  width: 16px;
  height: 24px;
}

.siteHeader {
  height: 57px;
  top: 0;
  left: 0;
  right: 0;
}

.siteHeader__container {
  padding: 0 0 0 25px;
  background: #fff;
  border-bottom: 1px solid #F5F0F0;
}

.siteHeader__logo {
  display: inline-block;
  position: relative;
  top: 7px;
  transition: all 0.2s;
}

.siteHeader__logo svg {
  width: 120px;
  height: 31px;
}

.siteHeader__logo:hover {
  opacity: 0.5;
}

.siteHeader__adminOptions,
.siteHeader__nav {
  width: 100%;
  top: 57px;
  left: 0;
  transform: translateY(-101%);
  transition: transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.siteHeader__adminOptions.js-open,
.siteHeader__nav.js-open {
  transform: translateY(-1px);
}

.siteHeader__adminLink {
  width: 100%;
  padding: 24px 32px;
  display: inline-block;
  background: #F5F0F0;
  border-bottom: 1px solid #DEDEDE;
}

.siteHeader__adminButtonLabel,
.siteHeader__myAccountLabel,
.siteHeader__signOut {
  display: none;
}

.siteHeader__navItem {
  width: 100%;
}

.siteHeader__navLink {
  width: 100%;
  padding: 24px 32px;
  display: inline-block;
  background: #084447;
  border-bottom: 1px solid #0E5558;
}

.siteHeader__adminButton {
  display: inline-flex;
  width: 64px;
  height: 57px;
  margin-left: auto;
  background: #F5F0F0;
}

.siteHeader__adminButton svg {
  transition: opacity 0.3s;
}

.siteHeader__adminButton.js-open .siteHeader__adminClose {
  opacity: 1;
}

.siteHeader__adminButton.js-open svg {
  opacity: 0;
}

.siteHeader__adminClose {
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}

.siteHeader__adminClose:before,
.siteHeader__adminClose:after {
  content: "";
  position: absolute;
  top: 11px;
  width: 24px;
  height: 2px;
  background: #084447;
}

.siteHeader__adminClose:before {
  transform: rotate(-45deg);
}

.siteHeader__adminClose:after {
  transform: rotate(45deg);
}

.siteHeader__mobileMenu {
  width: 64px;
  height: 57px;
  background: #084447;
  color: #fff;
  font-size: 20px;
}

.siteHeader__mobileMenu.js-open .siteHeader__mobileIcon {
  height: 0;
}

.siteHeader__mobileMenu.js-open .siteHeader__mobileIcon:before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.2s ease, transform 0.2s 0.2s ease;
}

.siteHeader__mobileMenu.js-open .siteHeader__mobileIcon:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 0.2s ease, transform 0.2s 0.2s ease;
}

.siteHeader__mobileIcon {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: height 0.1s 0.2s ease;
}

.siteHeader__mobileIcon:before,
.siteHeader__mobileIcon:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: top 0.2s 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.siteHeader__mobileIcon:before {
  top: -7px;
}

.siteHeader__mobileIcon:after {
  top: 7px;
}

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

@media (min-width: 500px) {
  .siteHeader {
    height: 70px;
  }

  .siteHeader__adminOptions,
  .siteHeader__nav {
    top: 70px;
  }

  .siteHeader__adminButton,
  .siteHeader__mobileMenu {
    height: 70px;
    width: 75px;
  }

  .siteHeader__logo {
    top: 9px;
  }

  .siteHeader__logo svg {
    width: 150px;
    height: 40px;
  }
}

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

@media (min-width: 750px) {
  .siteHeader__nav {
    position: relative;
    transform: none;
    width: auto;
    height: 70px;
    top: 0;
    z-index: 1;
  }

  .siteHeader__navList,
  .siteHeader__navLink {
    height: 100%;
  }

  .siteHeader__navList {
    display: flex;
    margin-left: 20px;
  }

  .siteHeader__navItem {
    width: auto;
    margin: 0 24px;
  }

  .siteHeader__navLink {
    position: relative;
    background: transparent;
    color: #000000;
    border: 0;
    padding: 0;
    line-height: 70px;
    letter-spacing: 0.02em;
    font-size: 13px;
    font-size: 0.8125rem;
    transition: all 0.2s;
  }

  .siteHeader__navLink:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #000;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .siteHeader__navLink:hover {
    opacity: 0.3;
  }

  .siteHeader__navLink:hover:after {
    opacity: 0.3;
  }

  .siteHeader__navLink.active {
    color: #18C29C;
  }

  .siteHeader__navLink.active:hover {
    opacity: 1;
  }

  .siteHeader__navLink.active:after {
    background: #18C29C;
    opacity: 1;
  }

  .siteHeader__mobileMenu {
    display: none;
  }
}

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

@media (min-width: 960px) {
  .siteHeader {
    height: 97px;
    background: #fff;
    border-bottom: 1px solid #F5F0F0;
  }

  .siteHeader__container {
    padding: 0 32px;
    background: none;
    border: 0;
  }

  .siteHeader__nav {
    height: 97px;
  }

  .siteHeader__navLink {
    line-height: 97px;
    font-size: 14px;
    font-size: 0.875rem;
  }

  .siteHeader__adminOptions {
    display: none;
  }

  .siteHeader__adminButton {
    background: #18C29C;
    height: 66px;
    padding: 0 40px;
    width: auto;
    transition: opacity 0.2s;
  }

  .siteHeader__adminButton:hover {
    opacity: 0.3;
  }

  .siteHeader__adminButton svg {
    display: none;
  }

  .siteHeader__adminButton--myAcc {
    padding: 0;
    margin-right: 48px;
    background-color: transparent;
  }

  .siteHeader__adminButton--myAcc svg {
    display: inline-block;
    margin-right: 12px;
  }

  .siteHeader__adminButtonLabel {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .siteHeader__myAccountLabel,
  .siteHeader__signOut {
    display: inline-block;
  }

  .siteHeader__signOut {
    transition: opacity 0.2s;
  }

  .siteHeader__signOut:hover {
    opacity: 0.3;
  }

  .siteHeader__adminButtonLabel span {
    font-size: 40px;
    font-size: 2.5rem;
    opacity: 0.3;
    margin: 0 10px;
  }
}

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

@media (min-width: 1080px) {
  .siteHeader__logo svg {
    width: 181px;
    height: 48px;
  }
}

.siteFooter {
  background: #084447;
  padding: 64px 0;
}

.siteFooter__logo {
  display: none;
}

.siteFooter__left {
  order: 2;
}

.siteFooter__trustpilot {
  display: inline-block;
  max-width: 150px;
  margin: 0 0 20px;
}

.siteFooter__trustpilot svg {
  width: 100%;
}

.siteFooter__payments {
  margin: 0 0 25px;
}

.siteFooter__payment {
  background: #fff;
  max-height: 40px;
  padding: 0 5px;
}

.siteFooter__partof {
  max-width: 210px;
  margin: 0 0 10px;
}

.siteFooter__copyright {
  bottom: 48px;
  left: 28px;
}

.siteFooter__nav {
  width: 100%;
}

.siteFooter__navList {
  width: 50%;
  margin: 0 0 44px;
}

.siteFooter__navTitle {
  margin: 0 0 8px;
}

.siteFooter__navLink {
  display: inline-block;
  margin: 12px 0;
}

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

@media (min-width: 600px) {
  .siteFooter__navList {
    width: 33.33%;
  }
}

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

@media (min-width: 750px) {
  .siteFooter__left {
    position: relative;
    width: 210px;
    order: 0;
  }

  .siteFooter__logo {
    display: inline-block;
  }

  .siteFooter__logo svg {
    width: 200px;
    height: 53px;
  }

  .siteFooter__copyright {
    bottom: -10px;
    left: 0;
  }

  .siteFooter__trustpilot {
    margin: 25px 0 20px;
  }

  .siteFooter__payments {
    margin: 10px 0;
  }

  .siteFooter__nav {
    width: calc(100% - 210px);
    padding-left: 75px;
  }

  .siteFooter__navList {
    width: 33.33%;
  }

  .siteFooter__navLink {
    transition: opacity 0.2s;
  }

  .siteFooter__navLink:hover {
    opacity: 0.5;
  }
}

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

@media (min-width: 960px) {
  .siteFooter__logo svg {
    width: 260px;
    height: 68px;
  }

  .siteFooter__nav {
    width: 64%;
  }
}

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

@media (min-width: 1200px) {
  .siteFooter__navTitle {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.featuredComp__image {
  width: calc(100% + 56px);
  padding-bottom: calc(100% + 56px);
  left: -28px;
  height: 0;
  background-size: cover;
  background-position: center;
  margin: 0 0 32px;
}

.featuredComp__imageTag {
  background: #084447;
  padding: 22px 26px;
  bottom: 0;
  left: 0;
}

.featuredComp__imageTag--desktop {
  display: none;
}

.featuredComp__subHeading,
.featuredComp__text {
  display: none;
}

.featuredComp__compHeading {
  line-height: 1em;
}

.featuredComp__info {
  margin: 5px 0 24px;
}

.featuredComp__price,
.featuredComp__time {
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.featuredComp__price .featuredComp__infoLabel span {
  font-size: 24px;
  font-size: 1.5rem;
}

.featuredComp__infoLabel {
  width: calc(100% - 24px);
  display: inline-block;
  padding-left: 10px;
  transition: opacity 0.2s;
}

.featuredComp__buy {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

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

@media (min-width: 600px) {
  .featuredComp__compHeading {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

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

@media (min-width: 750px) {
  .featuredComp .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .featuredComp__image {
    width: calc(50% + 28px);
    padding-bottom: calc(50% + 28px);
    left: 28px;
  }

  .featuredComp__imageTag {
    display: none;
  }

  .featuredComp__content {
    width: calc(50% - 40px);
    padding: 100px 0;
  }

  .featuredComp__buttons {
    justify-content: flex-start;
    align-items: center;
  }

  .featuredComp__learn.button {
    font-family: "Helvetica", "Ariel", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 0 40px;
    text-decoration: underline;
  }

  .featuredComp__learn.button:hover {
    background: transparent;
    opacity: 0.5;
  }

  .featuredComp__compHeading {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .featuredComp__subHeading {
    display: block;
    margin: 0 0 30px;
  }

  .featuredComp__text {
    display: block;
    margin: 30px 0 32px;
  }

  .featuredComp__buy.button {
    width: auto;
    margin-right: 40px;
  }

  .featuredComp__learn.button {
    padding: 20px 0;
    width: auto;
    border: 0;
    margin: 0;
  }
}

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

@media (min-width: 960px) {
  .featuredComp__compHeading {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .featuredComp__info {
    margin: 15px 0 24px;
  }

  .featuredComp__content {
    width: calc(50% - 60px);
  }
}

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

@media (min-width: 1080px) {
  .featuredComp__compHeading {
    font-size: 44px;
    font-size: 2.75rem;
  }

  .featuredComp__text {
    font-size: 16px;
    font-size: 1rem;
  }

  .featuredComp__image {
    width: 60%;
    padding-bottom: 60%;
    left: 0;
    max-width: 1080px;
  }

  .featuredComp__content {
    width: calc(40% - 60px);
  }

  .featuredComp__infoLabel {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .featuredComp__price .featuredComp__infoLabel {
    font-size: 16px;
    font-size: 1rem;
  }

  .featuredComp__price .featuredComp__infoLabel span {
    font-size: 32px;
    font-size: 2rem;
  }
}

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

@media (min-width: 1200px) {
  .featuredComp__content {
    max-width: 415px;
  }

  .featuredComp__subHeading {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .featuredComp__compHeading {
    font-size: 56px;
    font-size: 3.5rem;
  }

  .featuredComp__price,
  .featuredComp__time {
    padding: 6px 0;
  }
}

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

@media (min-width: 1400px) {
  .featuredComp__content {
    padding: 140px 0;
  }
}

.activeComps__image {
  width: 100%;
  margin: 0 0 24px;
}

.activeComps__title {
  margin: 4px 0 8px;
}

.activeComps__list {
  display: block;
  position: relative;
  left: -28px;
  width: calc(100% + 56px);
}

.activeComps__list .competitionList__item {
  margin: 0;
  background: #F9F9F9;
  padding: 20px;
  width: calc(100% - 56px);
  transform: translateX(-14px);
  margin: 0;
}

.activeComps__list .competitionList__item.active {
  opacity: 1;
  transform: translateX(28px);
}

.activeComps__list .competitionList__item.before {
  transform: translateX(70px);
}

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

@media (min-width: 750px) {
  .activeComps__list {
    display: flex;
    flex-wrap: wrap;
    left: 0;
    width: calc(100% + 16px);
  }

  .activeComps__list .competitionList__item {
    width: calc(50% - 8px);
    margin: 0 16px 16px 0;
    transform: none;
  }
}

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

@media (min-width: 960px) {
  .activeComps__list .competitionList__item {
    width: calc(33% - 13px);
  }
}

.fullComp {
  margin: 0 0 80px;
}

.fullComp__image {
  width: calc(100% + 56px);
  padding-bottom: calc(100% + 56px);
  left: -28px;
  height: 0;
  background-size: cover;
  background-position: center;
  margin: 0 0 32px;
}

.fullComp__compHeading {
  line-height: 1em;
}

.fullComp__back.button {
  transform: translateY(-100%);
  left: -32px;
  top: -32px;
}

.fullComp__back.button:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.31' height='11.31' viewBox='0 0 11.31 11.31'%3E%3Cpath d='M2.12,3.54,5.66,0,7.78,2.12,4.24,5.66,7.78,9.19,5.66,11.31,0,5.66Z' style='fill:%23fff'/%3E%3C/svg%3E");
  background-size: contain;
}

.fullComp__infoLabel {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  transition: opacity 0.2s;
}

.fullComp__info {
  margin: 5px 0 24px;
}

.fullComp__price,
.fullComp__time {
  padding: 4px 0;
}

.fullComp__price .fullComp__infoLabel span {
  font-size: 24px;
  font-size: 1.5rem;
}

.fullComp__button {
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.fullComp__terms {
  margin: 16px 0;
}

.fullComp__terms a {
  color: #18C29C;
  text-decoration: underline;
}

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

@media (min-width: 600px) {
  .fullComp__compHeading {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

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

@media (min-width: 750px) {
  .fullComp .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .fullComp__image {
    width: calc(50% + 28px);
    padding-bottom: calc(50% + 28px);
    left: 28px;
  }

  .fullComp__content {
    width: calc(50% - 40px);
    padding: 100px 0;
  }

  .fullComp__compHeading {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .fullComp__text {
    display: block;
    margin: 30px 0 32px;
  }

  .fullComp__button {
    position: relative;
  }

  .fullComp__back.button {
    position: relative;
    margin: 0 0 30px;
    left: 0;
    top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #18C29C;
    transform: none;
    font-size: 12px;
    font-size: 0.75rem;
  }

  .fullComp__back.button:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.31' height='11.31' viewBox='0 0 11.31 11.31'%3E%3Cpath d='M2.12,3.54,5.66,0,7.78,2.12,4.24,5.66,7.78,9.19,5.66,11.31,0,5.66Z' style='fill:%2318c29c'/%3E%3C/svg%3E");
    transition: transform 0.2s;
  }

  .fullComp__back.button:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #18C29C;
    opacity: 0.5;
    transition: width 0.2s;
  }

  .fullComp__back.button:hover:after {
    width: 0;
  }

  .fullComp__back.button:hover:before {
    transform: translateX(-6px);
  }
}

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

@media (min-width: 960px) {
  .fullComp__compHeading {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .fullComp__info {
    margin: 15px 0 24px;
  }

  .fullComp__content {
    width: calc(50% - 60px);
  }
}

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

@media (min-width: 1080px) {
  .fullComp__imageTag {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .fullComp__compHeading {
    font-size: 44px;
    font-size: 2.75rem;
  }

  .fullComp__text,
  .fullComp__terms {
    font-size: 16px;
    font-size: 1rem;
  }

  .fullComp__image {
    width: 60%;
    padding-bottom: 60%;
    left: 0;
    max-width: 1080px;
  }

  .fullComp__content {
    width: calc(40% - 60px);
  }

  .fullComp__infoLabel {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .fullComp__price .fullComp__infoLabel {
    font-size: 16px;
    font-size: 1rem;
  }

  .fullComp__price .fullComp__infoLabel span {
    font-size: 32px;
    font-size: 2rem;
  }
}

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

@media (min-width: 1200px) {
  .fullComp {
    margin: 0 0 120px;
  }

  .fullComp__content {
    max-width: 415px;
  }

  .fullComp__back.button {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .fullComp__compHeading {
    font-size: 56px;
    font-size: 3.5rem;
  }

  .fullComp__price,
  .fullComp__time {
    padding: 6px 0;
  }
}

.login {
  max-width: 100vw;
  width: 100vw;
  overflow: hidden;
}

.login__goBack.button {
  display: none;
}

.login__signUp,
.login__signIn {
  width: 100%;
  min-width: 100%;
  transition: transform 0.2s;
}

.login__signUp {
  padding: 0 0 75px;
}

.login__signIn {
  display: none;
  padding: 40px 0 0;
}

.login__nav {
  width: 100%;
}

.login__navItem {
  width: 50%;
}

.login__navLink {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  opacity: 0.2;
  transition: all 0.3s;
}

.login__navLink:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000000;
  opacity: 0.6;
  transition: all 0.3s;
}

.login__navLink.js-active {
  color: #18C29C;
  opacity: 1;
}

.login__navLink.js-active:after {
  background: #18C29C;
  opacity: 1;
}

.login__heading {
  display: none;
}

.login__form {
  padding: 0 32px;
}

.login__signUpMessage {
  width: calc(100% - 64px);
  margin: 24px 32px 32px;
  padding: 24px;
  background: rgba(137, 250, 214, 0.2);
  border: 1px dashed #18C29C;
}

.login__button {
  width: 100%;
}

.login__forgotten {
  display: block;
  text-decoration: underline;
  margin: 0 0 32px;
}

.login__marketing.fieldset,
.login__remember.fieldset {
  margin: 0 0 32px;
}

.login__marketing .checkbox__box,
.login__remember .checkbox__box {
  margin-right: 15px;
}

.login__marketing a {
  text-decoration: underline;
}

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

@media (min-width: 600px) {
  .login__form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

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

@media (min-width: 750px) {
  .login__goBack.button {
    display: inline-block;
  }

  .login__nav {
    display: none;
  }

  .login__forms {
    flex-direction: row-reverse;
    height: calc(100vh - 71px);
    min-height: 480px;
    width: 100%;
  }

  .login__form {
    padding: 0;
  }

  .login__heading {
    display: block;
    margin: 0 0 24px;
  }

  .login__signUp,
  .login__signIn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px 32px;
  }

  .login__signUp {
    background: #084447;
    width: 60%;
    min-width: 60%;
  }

  .login__signUp .label {
    color: #fff;
  }

  .login__signIn {
    background: #F9F9F9;
    width: 40%;
    min-width: 40%;
  }

  .login__signIn .fieldset {
    width: 100%;
  }

  .login__signInHolder {
    max-width: 300px;
  }

  .login__signUpHolder {
    max-width: 625px;
  }

  .login__signUpMessage {
    display: none;
  }

  .login__marketing .form-check-label {
    color: #fff;
  }

  .login__remember .form-check-label {
    color: #084447;
  }
}

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

@media (min-width: 1080px) {
  .login__heading {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.howToWin {
  padding: 80px 0;
}

.howToWin__list {
  display: block;
  position: relative;
  left: -28px;
  width: calc(100% + 56px);
}

.howToWin__header {
  margin: 0 0 24px;
}

.howToWin__item {
  width: calc(100% - 56px);
  transform: translateX(-14px);
  opacity: 0.5;
  transition: all 0.3s;
}

.howToWin__item .howToWin__itemStep,
.howToWin__item .howToWin__itemTitle,
.howToWin__item .howToWin__itemText {
  opacity: 0;
  transition: all 0.3s;
}

.howToWin__item.active {
  opacity: 1;
  transform: translateX(28px);
}

.howToWin__item.active .howToWin__itemStep,
.howToWin__item.active .howToWin__itemTitle,
.howToWin__item.active .howToWin__itemText {
  opacity: 1;
}

.howToWin__item.before {
  transform: translateX(70px);
}

.howToWin__imageHolder {
  width: 100%;
  padding-bottom: 64%;
  margin: 0 0 24px;
}

.howToWin__image {
  height: 100%;
  max-height: 130px;
  width: auto;
}

.howToWin__itemTitle {
  margin: 4px 0 8px;
}

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

@media (min-width: 750px) {
  .howToWin {
    padding: 75px 0;
  }

  .howToWin__list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    left: 0;
  }

  .howToWin__heading {
    margin: 0 auto;
    font-size: 26px;
    font-size: 1.625rem;
  }

  .howToWin__itemText {
    padding-right: 20px;
  }

  .howToWin__pagination {
    display: none;
  }

  .howToWin__image {
    max-height: 90px;
  }

  .howToWin__item {
    opacity: 1;
    transform: translateX(0);
    width: calc(33.33% - 10px);
  }

  .howToWin__item.active {
    transform: translateX(0);
  }

  .howToWin__item .howToWin__itemStep,
  .howToWin__item .howToWin__itemTitle,
  .howToWin__item .howToWin__itemText {
    opacity: 1;
  }
}

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

@media (min-width: 960px) {
  .howToWin__heading {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

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

@media (min-width: 1080px) {
  .howToWin--page {
    min-height: calc(100vh - 400px);
  }

  .howToWin__heading {
    font-size: 32px;
    font-size: 2rem;
  }

  .howToWin__header {
    margin: 0 0 40px;
  }

  .howToWin__item {
    width: calc(33.33% - 25px);
  }

  .howToWin__itemStep {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .howToWin__itemTitle {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .howToWin__itemText {
    font-size: 16px;
    font-size: 1rem;
  }

  .howToWin__image {
    max-height: 160px;
  }
}

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

@media (min-width: 1200px) {
  .howToWin {
    padding: 80px 0;
  }
}

.questions {
  padding: 40px 0;
}

.questions__header {
  max-height: 200px;
  transition: all 0.3s;
}

.questions__header.hide {
  max-height: 0;
  opacity: 0;
  display: none;
}

.questions__text {
  margin: 5px 0 25px;
}

.questions__terms {
  margin: 25px 0 0;
}

.questions__question {
  max-height: 1000px;
  transition: opacity 0.3s, max-height 0.3s, visibility 0.1s 0.3s;
}

.questions__question.hide {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}

.questions__heading {
  margin: 0;
}

.questions__image {
  width: 100%;
  margin: 0 0 30px;
  border: 6px solid #18C29C;
}

.questions__questionTitle {
  margin: 20px 0 50px;
}

.questions__submit {
  width: 100%;
  margin: 20px 0 0;
}

.questions__submit:disabled {
  background: #E6E6E6;
  border: 2px solid #E6E6E6;
  pointer-events: none;
}

.questions__error {
  margin: 24px 0 0;
}

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

@media (min-width: 600px) {
  .questions__header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  .questions__text,
  .questions__terms {
    text-align: left;
  }

  .questions__heading {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .questions__image {
    position: absolute;
    left: 0;
    width: 50%;
    top: 0;
    border: 10px solid #18C29C;
  }

  .questions .answerform {
    max-width: 340px;
  }

  .questions__questionContent {
    width: calc(50% - 30px);
    margin-left: auto;
  }

  .questions__questionTitle {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .questions__submit {
    width: auto;
  }
}

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

@media (min-width: 750px) {
  .questions__header {
    margin: 20px auto 70px;
  }

  .questions__questionTitle {
    font-size: 30px;
    font-size: 1.875rem;
    margin: 20px 0 50px;
  }
}

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

@media (min-width: 960px) {
  .questions {
    padding: 40px 0 80px;
  }

  .questions__heading {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .questions__text {
    font-size: 16px;
    font-size: 1rem;
  }

  .questions__questionTitle {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

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

@media (min-width: 1080px) {
  .questions {
    padding: 75px 0 120px;
  }

  .questions__questionTitle {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .questions__questionContent {
    width: calc(50% - 100px);
    margin-left: auto;
  }
}

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

@media (min-width: 1200px) {
  .questions .answerform {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .questions__image {
    border: 15px solid #18C29C;
  }

  .questions__answers {
    width: calc(50% - 6px);
  }

  .questions__submit {
    width: 350px;
    margin: 20px auto 0;
  }

  .questions__text,
  .questions__terms {
    width: 100%;
    text-align: center;
  }
}

.about {
  padding: 0 0 80px;
}

.about__image {
  position: relative;
  width: calc(100% + 64px);
  left: -32px;
  padding-bottom: 77%;
  background-size: cover;
  background-position: center;
  background-image: url(/images/dreams-to-reality.jpg?132a8ddb6bc6d08159f21acaeaf30343);
  margin: 0 0 37px;
}

.about__title {
  margin: 0 0 24px;
}

.about__text {
  margin: 0 0 15px;
}

.about__button {
  width: 100%;
  text-align: center;
  margin: 35px 0 0;
}

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

@media (min-width: 600px) {
  .about__title {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .about__image {
    padding-bottom: 50%;
  }

  .about__button {
    width: auto;
  }
}

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

@media (min-width: 750px) {
  .about__image {
    position: absolute;
    top: 0;
    left: auto;
    right: 32px;
    width: calc(50% - 32px);
    height: 50vw;
    padding: 0;
    max-height: 450px;
  }

  .about__header {
    margin: 0 0 60px;
  }

  .about__content {
    width: calc(50% - 30px);
  }
}

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

@media (min-width: 960px) {
  .about__text {
    font-size: 16px;
    font-size: 1rem;
  }
}

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

@media (min-width: 1080px) {
  .about {
    padding: 0 0 120px;
    min-height: calc(100vh - 400px);
  }

  .about__header {
    margin: 0 0 80px;
  }

  .about__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .about__content {
    width: calc(50% - 100px);
    max-width: 500px;
  }
}

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

@media (min-width: 1200px) {
  .about__title {
    font-size: 48px;
    font-size: 3rem;
  }
}

.billing__heading {
  margin: 0 0 16px;
  width: 100%;
  text-align: center;
}

.billing__pay {
  width: 100%;
}

.billing__payPanel {
  width: 100%;
  position: relative;
  margin: 20px 0 0;
}

.billing__payInfo {
  width: 77%;
  background: #F5F0F0;
  padding: 20px 24px;
}

.billing__payImage {
  width: 23%;
  background-size: cover;
  background-position: center;
}

.billing__payTitle {
  margin: 4px 0 0;
}

.billing__payTotal {
  width: 100%;
  padding: 15px 24px;
  background: #084447;
}

.billing__formHolder {
  width: 100%;
}

.billing__formTitle {
  width: 100%;
  margin: 40px 0 15px;
}

.billing__findAddress .input {
  width: calc(100% - 152px);
}

.billing__findButton.button {
  padding: 16px 18px;
}

.billing__findLabel {
  width: 100%;
}

.billing__fieldset.fieldset {
  width: 100%;
}

.billing__button {
  width: 100%;
}

.billing__notice {
  margin: 24px 0;
  width: 100%;
}

.billing__formHolder iframe {
  position: relative;
  width: calc(100% + 78px);
  left: -39px;
  margin: 20px 0 0;
}

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

@media (min-width: 400px) {
  .billing__payInfo {
    padding: 24px;
  }

  .billing__payTicket {
    font-size: 12px;
    font-size: 0.75rem;
  }

  .billing__payTitle {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

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

@media (min-width: 600px) {
  .billing__billing {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .billing__payPanel {
    margin: 20px 10% 0;
  }

  .billing__formHolder iframe {
    width: 100%;
    left: 0;
  }

  .billing__payImage {
    padding-bottom: 23%;
  }

  .billing__payInfo {
    padding: 30px;
  }

  .billing__payTicket {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .billing__payTitle {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

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

@media (min-width: 750px) {
  .billing {
    display: block;
    min-height: calc(100vh - 110px);
  }

  .billing__heading {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .billing__payPanel {
    position: absolute;
    right: 0;
    width: 40%;
    top: 0;
    margin: 68px 0 0;
  }

  .billing__payImage {
    padding-bottom: 50%;
  }

  .billing__payInfo,
  .billing__payImage {
    width: 100%;
  }

  .billing__formTitle--details {
    margin: 0 0 15px;
  }

  .billing__formHolder {
    width: calc(60% - 30px);
    margin: 0 0 120px;
  }

  .billing__fieldset.fieldset {
    width: 100%;
  }

  .billing__findAddress.fieldset {
    width: 100%;
  }

  .billing__formHolder iframe {
    width: 100%;
  }
}

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

@media (min-width: 750px) {
  .billing__findButton.button {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .billing__fieldset.fieldset--half {
    width: calc(50% - 10px);
  }

  .billing__notice {
    display: block;
  }
}

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

@media (min-width: 960px) {
  .billing__payPanel {
    max-width: 450px;
  }

  .billing__payTicket {
    font-size: 16px;
    font-size: 1rem;
  }

  .billing__payTitle {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .billing__payInfo {
    padding: 28px 34px;
  }

  .billing__payTotal {
    padding: 24px 34px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

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

@media (min-width: 1080px) {
  .billing__formHolder {
    width: calc(100% - 530px);
  }
}

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

@media (min-width: 1200px) {
  .billing__heading {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .billing__formTitle {
    font-size: 32px;
    font-size: 2rem;
    margin: 60px 0 32px;
  }

  .billing__formTitle--details {
    margin: 0 0 32px;
  }

  .billing__payInfo {
    padding: 40px;
  }

  .billing__payTicket {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .billing__payTitle {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .billing__payTotal {
    padding: 28px 40px;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .billing__addressFinder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .billing__fieldset.fieldset {
    margin: 0 0 32px;
  }

  .billing__fieldset.fieldset,
  .billing__findAddress .input {
    width: calc(50% - 20px);
  }

  .billing__findAddress .input {
    margin-right: 40px;
  }

  .billing__findAddress {
    width: 100%;
    justify-content: flex-start;
  }

  .billing__findButton.button {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 16px 40px;
  }

  .billing__button {
    width: auto;
  }

  .billing__notice {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1355px) {
  .billing__formHolder iframe {
    width: 700px;
  }
}

.faqs {
  padding: 0 0 80px;
}

.faqs__header {
  margin: 0 0 40px;
}

.faqs__accordion {
  max-width: 800px;
}

.faqs__accordionItem {
  background: #18C29C;
  padding: 20px 60px 20px 20px;
  margin: 0 0 16px;
  cursor: pointer;
}

.faqs__accordionItem.js-open .faqs__accordionText {
  max-height: 500px;
  opacity: 1;
  padding: 20px 0 0;
}

.faqs__accordionItem.js-open:after {
  transform: rotate(-180deg);
}

.faqs__accordionItem:after {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  top: 24px;
  width: 14px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.19' height='9.19' viewBox='0 0 14.19 9.19'%3E%3Cpath d='M7.1,9.17l0,0L0,2.12,2.13,0l5,5,5-5L14.2,2.12,7.13,9.19Z' style='fill:%23084447'/%3E%3C/svg%3E");
  transition: transform 0.3s;
}

.faqs__accordionText {
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: all 0.3s;
}

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

@media (min-width: 500px) {
  .faqs__accordionTitle {
    font-size: 16px;
    font-size: 1rem;
  }
}

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

@media (min-width: 500px) {
  .faqs__accordionItem {
    padding: 22px 60px 22px 26px;
  }

  .faqs__accordionTitle {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

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

@media (min-width: 1200px) {
  .faqs__header {
    margin: 0 0 80px;
  }

  .faqs__accordionItem {
    padding: 26px 60px 26px 30px;
  }

  .faqs__accordionTitle {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.terms {
  padding: 0 0 80px;
}

.terms__header {
  margin: 0 0 40px;
}

.terms__content {
  max-width: 800px;
}

.terms__content h1,
.terms__content h2,
.terms__content h3,
.terms__content h4 {
  color: #18C29C;
  margin: 60px 0 24px;
}

.terms__content ul {
  list-style: disc;
}

.terms__content h1 {
  font-size: 22px;
  font-size: 1.375rem;
}

.terms__content h2 {
  font-size: 20px;
  font-size: 1.25rem;
}

.terms__content h3 {
  font-size: 18px;
  font-size: 1.125rem;
}

.terms__content h4 {
  font-size: 16px;
  font-size: 1rem;
}

.terms__content p,
.terms__content li {
  font-family: "Helvetica", "Arial", sans-serif;
  color: #4F6162;
  line-height: 1.5em;
  font-size: 15px;
  font-size: 0.9375rem;
}

.terms__content li {
  margin: 0 0 15px 12px;
}

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

@media (min-width: 1200px) {
  .terms__header {
    margin: 0 0 80px;
  }

  .terms__content h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .terms__content h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .terms__content h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .terms__content h4 {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .terms__content p,
  .terms__content li {
    font-size: 16px;
    font-size: 1rem;
  }
}

.forgotten {
  padding: 80px 0 200px;
}

.forgotten__heading {
  margin: 0 0 40px;
}

.forgotten .alert-success {
  margin: 24px 0 36px;
}

.forgotten__back.button {
  position: relative;
  margin: 0 0 30px;
  left: 0;
  top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #18C29C;
  transform: none;
  font-size: 12px;
  font-size: 0.75rem;
}

.forgotten__back.button:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.31' height='11.31' viewBox='0 0 11.31 11.31'%3E%3Cpath d='M2.12,3.54,5.66,0,7.78,2.12,4.24,5.66,7.78,9.19,5.66,11.31,0,5.66Z' style='fill:%2318c29c'/%3E%3C/svg%3E");
  transition: transform 0.2s;
}

.forgotten__back.button:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #18C29C;
  opacity: 0.5;
  transition: width 0.2s;
}

.forgotten__back.button:hover:after {
  width: 0;
}

.forgotten__back.button:hover:before {
  transform: translateX(-6px);
}

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

@media (min-width: 750px) {
  .forgotten__heading {
    font-size: 32px;
    font-size: 2rem;
  }
}

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

@media (min-width: 1080px) {
  .forgotten {
    min-height: calc(100vh - 400px);
  }

  .forgotten__heading {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.ticket {
  margin: 32px 0;
  max-width: 350px;
}

.ticket__text {
  margin: 0 0 12px;
}

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

@media (min-width: 750px) {
  .ticket__form {
    flex-wrap: wrap;
  }

  .ticket__button {
    width: 100%;
  }
}

.dashboard {
  padding: 40px 0 80px;
}

.dashboard__heading .welcome {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 6px;
  color: #4F6162;
}

.dashboard__initials {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  color: #084447;
  background: #F5F0F0;
  border-radius: 50%;
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 22px;
}

.dashboard__nav {
  margin: 20px 0 40px;
  max-width: 600px;
}

.dashboard__navItem {
  width: calc(50% - 7px);
  text-align: center;
}

.dashboard__navLink.button {
  width: 100%;
  text-align: center;
  padding: 20px 12px;
}

.dashboard__navLink.button.active {
  background: #18C29C;
  color: #fff;
}

.dashboard__title {
  margin: 32px 0 12px;
}

.dashboard__details {
  max-width: 800px;
  width: 100%;
}

.dashboard__text {
  margin: 0 0 28px;
}

.dashboard__competitions {
  position: relative;
  overflow-x: scroll;
  max-width: 800px;
  width: calc(100% + 64px);
  left: -32px;
}

.dashboard__competitions:after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

.dashboard__form {
  width: 100%;
  margin: 0 0 28px;
}

.dashboard__table {
  display: inline;
  border-collapse: collapse;
  margin: 0 32px;
  width: 100%;
}

.dashboard__table td,
.dashboard__table th {
  border: 2px solid #E6E6E6;
}

.dashboard__table th {
  min-width: 150px;
  color: #084447;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px;
  font-weight: normal;
  text-align: left;
}

.dashboard__table td {
  font-family: "Helvetica", "Arial", sans-serif;
  color: #084447;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 12px 10px 10px;
}

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

@media (min-width: 600px) {
  .dashboard__welcome {
    display: flex;
    align-items: center;
    margin: 0 0 32px;
  }

  .dashboard__initials {
    margin: 0 24px 0 0;
  }

  .dashboard__heading {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .dashboard__form {
    width: calc(50% - 12px);
  }

  .dashboard__fieldset.fieldset {
    width: 100%;
  }

  .dashboard__form .button {
    display: block;
    margin: 24px 0 0 auto;
  }

  .dashboard__nav {
    margin: 28px 0 40px;
  }
}

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

@media (min-width: 750px) {
  .dashboard__initials {
    width: 110px;
    height: 110px;
    font-size: 38px;
    font-size: 2.375rem;
  }

  .dashboard__competitions {
    width: 100%;
    overflow-x: visible;
  }

  .dashboard__title {
    font-size: 24px;
    font-size: 1.5rem;
    margin: 32px 0 22px;
  }

  .dashboard__table th {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .dashboard__table td {
    font-size: 16px;
    font-size: 1rem;
  }
}

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

@media (min-width: 1080px) {
  .dashboard {
    padding: 80px 0 120px;
  }

  .dashboard__heading {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .dashboard__nav {
    margin: 32px 0 60px;
  }

  .dashboard__title {
    font-size: 28px;
    font-size: 1.75rem;
    margin: 42px 0 24px;
  }

  .dashboard__table {
    margin: 0 0 40px;
  }

  .dashboard__competitions {
    left: 0;
  }
}

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

@media (min-width: 1200px) {
  .dashboard__heading {
    font-size: 48px;
    font-size: 3rem;
  }
}

.success__content {
  padding: 100px 32px;
  max-width: 400px;
  margin: 0 auto;
}

.success__heading {
  margin: 0 0 26px;
}

.success__roundup {
  padding: 75px 0;
  background: #18C29C;
}

.success__title {
  margin: 0 auto 50px;
  max-width: 500px;
}

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

@media (min-width: 500px) {
  .success__heading {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .success__title {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

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

@media (min-width: 750px) {
  .success__content {
    padding: 120px 0;
    max-width: 480px;
  }

  .success__heading {
    font-size: 32px;
    font-size: 2rem;
    margin: 0 0 32px;
  }

  .success__title {
    font-size: 26px;
    font-size: 1.625rem;
    margin: 0 auto 60px;
  }
}

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

@media (min-width: 960px) {
  .success__roundup {
    padding: 100px 0;
  }
}

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

@media (min-width: 1200px) {
  .success__content {
    padding: 150px 32px;
  }
}

.competitionList {
  padding: 50px 0;
}

.competitionList__list {
  margin: 50px 0 0;
  justify-content: space-between;
}

.competitionList__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  width: calc(50% - 4px);
  margin: 0 0 50px;
}

.competitionList__subtitle {
  margin: 25px 0 0;
}

.competitionList__itemHeading {
  margin: 15px 0 5px;
}

.competitionList__image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
}

.competitionList__infoLabel {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  transition: opacity 0.2s;
}

.competitionList__infoLabel span {
  display: none;
}

.competitionList__info {
  margin: 5px 0 24px;
}

.competitionList__price,
.competitionList__time {
  padding: 4px 0;
}

.competitionList__time {
  display: inline-flex;
  align-items: center;
}

.competitionList__time .competitionList__infoLabel {
  margin: 0;
  padding-left: 10px;
  width: calc(100% - 24px);
  font-size: 12px;
  font-size: 0.75rem;
}

.competitionList__ticketTitle {
  margin: 20px 0 15px;
}

.competitionList__ticketInfo {
  font-family: "Helvetica", "Arial", sans-serif;
  color: #084447;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 8px 0 0;
  padding: 15px;
  border: 2px dashed #E6E6E6;
}

.competitionList__ticketInfo p {
  margin: 4px 0;
}

.competitionList__seeFull.button {
  text-align: center;
  margin: 10px 0;
  padding: 15px 14px;
  width: 100%;
}

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

@media (min-width: 500px) {
  .competitionList__item {
    width: calc(50% - 8px);
  }

  .competitionList__itemHeading {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

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

@media (min-width: 600px) {
  .competitionList__list {
    justify-content: flex-start;
    width: calc(100% + 8px);
  }

  .competitionList__item {
    width: calc(33.33% - 8px);
    margin-right: 8px;
  }
}

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

@media (min-width: 750px) {
  .competitionList {
    padding: 75px 0;
  }

  .competitionList__itemHeading {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .competitionList__list {
    margin: 75px 0 0;
  }

  .competitionList__infoLabel {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .competitionList__time .competitionList__infoLabel {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .competitionList__seeFull.button {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

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

@media (min-width: 960px) {
  .competitionList__list {
    width: calc(100% + 12px);
  }

  .competitionList__item {
    width: calc(33.33% - 12px);
    margin: 0 12px 12px 0;
  }
}

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

@media (min-width: 1080px) {
  .competitionList__item {
    text-align: center;
    background: #F9F9F9;
    padding: 20px;
  }

  .competitionList__itemHeading {
    margin: 20px 0 8px;
  }

  .competitionList__seeFull.button {
    margin: 15px 0;
  }

  .competitionList__time {
    justify-content: center;
  }

  .competitionList__time .competitionList__infoLabel {
    width: auto;
  }
}

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

@media (min-width: 1200px) {
  .competitionList {
    padding: 80px 0;
  }

  .competitionList__list {
    width: calc(100% + 20px);
    margin: 80px 0 0;
  }

  .competitionList__item {
    width: calc(25% - 20px);
    margin: 0 20px 20px 0;
  }

  .competitionList__itemHeading {
    font-size: 27px;
    font-size: 1.6875rem;
  }

  .competitionList__price .competitionList__infoLabel {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .competitionList__seeFull.button {
    padding: 18px 28px;
  }
}

.error {
  padding: 100px 0;
  background: #F9F9F9;
}

.error__heading {
  margin: 15px auto 30px;
  max-width: 320px;
}

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

@media (min-width: 600px) {
  .error__heading {
    font-size: 34px;
    font-size: 2.125rem;
    max-width: 375px;
  }
}

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

@media (min-width: 750px) {
  .error {
    padding: 120px 0;
  }

  .error__heading {
    font-size: 36px;
    font-size: 2.25rem;
    margin: 20px auto 40px;
  }
}

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

@media (min-width: 960px) {
  .error__heading {
    font-size: 40px;
    font-size: 2.5rem;
    max-width: 500px;
  }
}

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

@media (min-width: 1080px) {
  .error__heading {
    font-size: 44px;
    font-size: 2.75rem;
  }
}

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

@media (min-width: 1200px) {
  .error {
    padding: 150px 0;
  }

  .error__subheading {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .error__heading {
    font-size: 56px;
    font-size: 3.5rem;
    max-width: 600px;
  }
}

.button {
  display: inline-block;
  font-family: "Intro", sans-serif;
  background: #18C29C;
  border: 2px solid #18C29C;
  color: #fff;
  padding: 20px 26px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 18px;
  font-size: 1.125rem;
}

.button:hover {
  background: transparent;
  color: #18C29C;
}

.button--small {
  font-size: 14px;
  font-size: 0.875rem;
}

.button--outline {
  padding: 20px 26px;
  background: transparent;
  border: 2px solid #18C29C;
  color: #18C29C;
}

.button--outline:hover {
  background: rgba(24, 194, 156, 0.2);
}

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

@media (min-width: 750px) {
  .button {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

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

@media (min-width: 750px) {
  .button {
    padding: 22px 34px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.icon {
  display: inline-block;
  vertical-align: middle;
}

.icon--ticket {
  height: 24px;
  width: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='23.938' viewBox='0 0 24 23.938'%3E%3Cpath id='Path_67' data-name='Path 67' d='M1008.113,731.065a3,3,0,0,1-4.256-4.223L1002,725l-4.27,4.253.038.038-1.414,1.414-.041-.04L986,740.938l1.913,1.912a3,3,0,0,1,4.237,4.237l1.85,1.851,10.293-10.293-.061-.061,1.414-1.414.061.06,4.293-4.292ZM1001.281,741l-2.781-2.125L995.719,741l1.062-3.438L994,735.438h3.438L998.5,732l1.062,3.438H1003l-2.781,2.124Z' transform='translate(-986 -725)' fill='%2318c29c'/%3E%3C/svg%3E");
  background-size: cover;
}

.icon--time {
  height: 24px;
  width: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg id='Group_125' data-name='Group 125' transform='translate(-1466.084 474.29)'%3E%3Cpath id='Path_43' data-name='Path 43' d='M1484.763-472.241c.236-.343.461-.675.691-1,.1-.138.185-.321.389-.282s.217.229.26.386q.411,1.478.817,2.955c.147.536-.047.807-.593.854-1.006.088-2.011.182-3.016.272-.169.015-.359.06-.466-.118s.036-.314.124-.447c.222-.335.453-.663.695-1.015-.247-.151-.481-.3-.725-.441a9.827,9.827,0,0,0-4.957-1.258,9.78,9.78,0,0,0-5.266,1.562,10,10,0,0,0-4.353,5.924,9.783,9.783,0,0,0-.241,4.043,9.978,9.978,0,0,0,3.712,6.561,9.7,9.7,0,0,0,4.39,2.016.979.979,0,0,1,.645,1.579.921.921,0,0,1-.93.344,11.773,11.773,0,0,1-5.588-2.655,11.865,11.865,0,0,1-3.84-6.066,12.033,12.033,0,0,1-.275-5.083,11.924,11.924,0,0,1,2.171-5.228,11.764,11.764,0,0,1,5.671-4.248,11.8,11.8,0,0,1,5.733-.573,11.868,11.868,0,0,1,4.846,1.856C1484.684-472.288,1484.712-472.272,1484.763-472.241Z' fill='%2318c29c'/%3E%3Cpath id='Path_44' data-name='Path 44' d='M1476.711-465.43c0-1.254,0-2.509,0-3.763a.789.789,0,0,1,.549-.822.779.779,0,0,1,1,.674,2.192,2.192,0,0,1,.007.257q0,3.228,0,6.457a.328.328,0,0,0,.2.348q3,1.549,5.986,3.115a.787.787,0,0,1,.494.821.773.773,0,0,1-1.136.6c-.442-.215-.874-.45-1.31-.677q-2.793-1.454-5.585-2.9a.332.332,0,0,1-.213-.346C1476.715-462.921,1476.711-464.175,1476.711-465.43Z' fill='%2318c29c'/%3E%3Cpath id='Path_45' data-name='Path 45' d='M1488.137-462.31a3.716,3.716,0,0,1,.042-.549.947.947,0,0,1,1-.736.968.968,0,0,1,.89.942,6.578,6.578,0,0,1,0,.731.967.967,0,0,1-.956.936.967.967,0,0,1-.963-.948c-.006-.124,0-.25,0-.375Z' fill='%2318c29c'/%3E%3Cpath id='Path_46' data-name='Path 46' d='M1481.7-451.4a.947.947,0,0,1-.667.9,5.922,5.922,0,0,1-.843.183.95.95,0,0,1-1.048-.776.954.954,0,0,1,.671-1.1,6.932,6.932,0,0,1,.764-.175A.958.958,0,0,1,1481.7-451.4Z' fill='%2318c29c'/%3E%3Cpath id='Path_47' data-name='Path 47' d='M1488.351-464.737a.859.859,0,0,1-.662-.545,6.066,6.066,0,0,1-.291-.817.953.953,0,0,1,.553-1.119.923.923,0,0,1,1.188.4,4.468,4.468,0,0,1,.362,1C1489.628-465.252,1489.124-464.709,1488.351-464.737Z' fill='%2318c29c'/%3E%3Cpath id='Path_48' data-name='Path 48' d='M1485.525-455a1.977,1.977,0,0,1,1.172-1.46.907.907,0,0,1,.983.38.889.889,0,0,1,.039,1.056,5.461,5.461,0,0,1-.559.711.922.922,0,0,1-1.047.215A.956.956,0,0,1,1485.525-455Z' fill='%2318c29c'/%3E%3Cpath id='Path_49' data-name='Path 49' d='M1488.389-457.284a.959.959,0,0,1-.922-1.222,6.737,6.737,0,0,1,.26-.745.943.943,0,0,1,1.2-.549.959.959,0,0,1,.606,1.192,6.9,6.9,0,0,1-.243.709A.935.935,0,0,1,1488.389-457.284Z' fill='%2318c29c'/%3E%3Cpath id='Path_50' data-name='Path 50' d='M1483.657-451.619a.959.959,0,0,1-.95-.6.934.934,0,0,1,.281-1.091,4.859,4.859,0,0,1,.836-.515.935.935,0,0,1,1.145.357.922.922,0,0,1-.109,1.2,7.368,7.368,0,0,1-1.034.633A.37.37,0,0,1,1483.657-451.619Z' fill='%2318c29c'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: cover;
}

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

@media (min-width: 1080px) {
  .icon--ticket,
  .icon--price {
    width: 28px;
    height: 28px;
  }
}

.input {
  width: 100%;
  padding: 16px 24px;
  background: #fff;
  border: 2px solid #E6E6E6;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border 0.3s;
}

.input::-webkit-input-placeholder {
  font-size: 15px;
  font-family: "Helvetica", "Ariel", sans-serif;
  color: #000000;
  opacity: 0.3;
}

.input:-moz-placeholder {
  font-size: 15px;
  font-family: "Helvetica", "Ariel", sans-serif;
  color: #000000;
  opacity: 0.3;
}

.input::-moz-placeholder {
  font-size: 15px;
  font-family: "Helvetica", "Ariel", sans-serif;
  color: #000000;
  opacity: 0.3;
}

.input:-ms-input-placeholder {
  font-size: 15px;
  font-family: "Helvetica", "Ariel", sans-serif;
  color: #000000;
  opacity: 0.3;
}

.input:active,
.input:focus {
  border: 2px solid #18C29C;
}

.label {
  display: block;
  margin: 0 0 8px;
}

.invalid-feedback {
  display: inline-block;
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #D93131;
  line-height: 1.5em;
  margin: 14px 0 0;
}

.fieldset {
  margin: 0 0 16px;
}

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

@media (min-width: 600px) {
  .fieldset {
    width: calc(50% - 12px);
  }

  .fieldset--full {
    width: 100%;
  }
}

.pagination__item {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #084447;
  margin-left: 8px;
}

.pagination__item:first-child {
  margin: 0;
}

.pagination__item.active {
  background: #18C29C;
}

.header {
  width: 100%;
  background: #084447;
  padding: 20px 0;
}

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

@media (min-width: 500px) {
  .header {
    padding: 24px 0;
  }

  .header__text {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .header--home .header__text {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

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

@media (min-width: 750px) {
  .header {
    padding: 26px 0;
  }

  .header__text {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

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

@media (min-width: 960px) {
  .header {
    padding: 28px 0;
  }

  .header__text {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

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

@media (min-width: 1200px) {
  .header {
    padding: 43px 0;
  }

  .header__text {
    font-size: 32px;
    font-size: 2rem;
  }

  .header--home {
    padding: 38px 0;
  }

  .header--home .header__text {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.radio {
  position: relative;
  display: block;
  margin: 0 0 12px;
  cursor: pointer;
}

.radio:hover input ~ .radio__box {
  background-color: rgba(24, 194, 156, 0.2);
}

.radio input:checked ~ .radio__box {
  background-color: #18C29C;
}

.radio input:checked ~ .radio__box:after {
  width: 15px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.56' height='12.73' viewBox='0 0 15.56 12.73'%3E%3Cpath d='M2.83,10.61,0,7.78,2.12,5.66,5,8.49,13.44,0l2.12,2.12L5,12.73Z' style='fill:%23fff'/%3E%3C/svg%3E");
}

.radio input:checked ~ .radio__label {
  border: 2px solid #18C29C;
}

.radio input.error ~ .radio__box {
  background-color: #D93131;
  border: 2px solid #D93131;
}

.radio input.error ~ .radio__box:after {
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.73' height='12.73' viewBox='0 0 12.73 12.73'%3E%3Cpath d='M6.36,8.49,2.12,12.73,0,10.61,4.24,6.36,0,2.12,2.12,0,6.36,4.24,10.61,0l2.12,2.12L8.49,6.36l4.24,4.25-2.12,2.12Z' style='fill:%23fff'/%3E%3C/svg%3E");
}

.radio input.error ~ .radio__label {
  border: 2px solid #D93131;
  color: #D93131;
}

.radio__label {
  display: block;
  padding: 18px 35px 17px 60px;
  border: 2px solid #E6E6E6;
  transition: border 0.2s;
  cursor: pointer;
}

.radio__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio__box {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  height: 28px;
  width: 28px;
  border: 2px solid #18C29C;
  transition: all 0.2s;
  pointer-events: none;
}

.radio__box:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.checkbox {
  position: relative;
  height: 28px;
}

.checkbox:hover input ~ .checkbox__box {
  background-color: rgba(24, 194, 156, 0.2);
}

.checkbox input:checked ~ .checkbox__box {
  background-color: #18C29C;
  border: 2px solid #18C29C;
}

.checkbox input:checked ~ .checkbox__box:after {
  width: 15px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.56' height='12.73' viewBox='0 0 15.56 12.73'%3E%3Cpath d='M2.83,10.61,0,7.78,2.12,5.66,5,8.49,13.44,0l2.12,2.12L5,12.73Z' style='fill:%23fff'/%3E%3C/svg%3E");
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox__box {
  position: relative;
  display: inline-block;
  height: 28px;
  width: 28px;
  border: 2px solid #E6E6E6;
  transition: all 0.2s;
}

.checkbox__box:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
}

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

@media (min-width: 750px) {
  .checkbox__box {
    height: 20px;
    width: 20px;
    background: #fff;
  }
}

.mt--40 {
  margin-top: 40px;
}

@media (min-width: 750px) {
  .mt--40 {
    margin-top: 26.6666666667px;
  }
}

.mb--40 {
  margin-bottom: 40px;
}

@media (min-width: 750px) {
  .mb--40 {
    margin-bottom: 26.6666666667px;
  }
}

.mt--60 {
  margin-top: 60px;
}

@media (min-width: 750px) {
  .mt--60 {
    margin-top: 40px;
  }
}

.mb--60 {
  margin-bottom: 60px;
}

@media (min-width: 750px) {
  .mb--60 {
    margin-bottom: 40px;
  }
}

.mt--80 {
  margin-top: 80px;
}

@media (min-width: 750px) {
  .mt--80 {
    margin-top: 53.3333333333px;
  }
}

.mb--80 {
  margin-bottom: 80px;
}

@media (min-width: 750px) {
  .mb--80 {
    margin-bottom: 53.3333333333px;
  }
}

.mt--100 {
  margin-top: 100px;
}

@media (min-width: 750px) {
  .mt--100 {
    margin-top: 66.6666666667px;
  }
}

.mb--100 {
  margin-bottom: 100px;
}

@media (min-width: 750px) {
  .mb--100 {
    margin-bottom: 66.6666666667px;
  }
}

.mt--120 {
  margin-top: 120px;
}

@media (min-width: 750px) {
  .mt--120 {
    margin-top: 80px;
  }
}

.mb--120 {
  margin-bottom: 120px;
}

@media (min-width: 750px) {
  .mb--120 {
    margin-bottom: 80px;
  }
}

.mt--140 {
  margin-top: 140px;
}

@media (min-width: 750px) {
  .mt--140 {
    margin-top: 93.3333333333px;
  }
}

.mb--140 {
  margin-bottom: 140px;
}

@media (min-width: 750px) {
  .mb--140 {
    margin-bottom: 93.3333333333px;
  }
}

.mt--160 {
  margin-top: 160px;
}

@media (min-width: 750px) {
  .mt--160 {
    margin-top: 106.6666666667px;
  }
}

.mb--160 {
  margin-bottom: 160px;
}

@media (min-width: 750px) {
  .mb--160 {
    margin-bottom: 106.6666666667px;
  }
}

