@charset "UTF-8";
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
/* line 9, ../vendor.min.scss */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

/* line 16, ../vendor.min.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

/* line 21, ../vendor.min.scss */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 28, ../vendor.min.scss */
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 33, ../vendor.min.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/* line 41, ../vendor.min.scss */
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* line 48, ../vendor.min.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

/* line 51, ../vendor.min.scss */
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

/* line 54, ../vendor.min.scss */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 64, ../vendor.min.scss */
.owl-carousel.owl-loaded {
  display: block;
}

/* line 66, ../vendor.min.scss */
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

/* line 69, ../vendor.min.scss */
.owl-carousel.owl-hidden {
  opacity: 0;
}

/* line 71, ../vendor.min.scss */
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

/* line 73, ../vendor.min.scss */
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 78, ../vendor.min.scss */
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

/* line 81, ../vendor.min.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}

/* line 83, ../vendor.min.scss */
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
/* line 87, ../vendor.min.scss */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
/* line 93, ../vendor.min.scss */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* line 97, ../vendor.min.scss */
.owl-carousel .owl-animated-in {
  z-index: 0;
}

/* line 100, ../vendor.min.scss */
.owl-carousel .owl-animated-out {
  z-index: 1;
}

/* line 103, ../vendor.min.scss */
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 115, ../vendor.min.scss */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 121, ../vendor.min.scss */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 125, ../vendor.min.scss */
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
/* line 131, ../vendor.min.scss */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

/* line 136, ../vendor.min.scss */
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

/* line 150, ../vendor.min.scss */
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

/* line 154, ../vendor.min.scss */
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

/* line 158, ../vendor.min.scss */
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 166, ../vendor.min.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
/* line 180, ../vendor.min.scss */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* line 184, ../vendor.min.scss */
.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

/* line 193, ../vendor.min.scss */
.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

/* line 197, ../vendor.min.scss */
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

/* line 201, ../vendor.min.scss */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

/* line 204, ../vendor.min.scss */
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* line 207, ../vendor.min.scss */
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/* line 211, ../vendor.min.scss */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

/* line 220, ../vendor.min.scss */
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@media (max-width: 768px) {
  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-1 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-2 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-3 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-4 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-5 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-6 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-7 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-8 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-9 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-10 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-11 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-12 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}
@media (min-width: 768px) {
  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-1 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-2 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-3 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-4 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-5 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-6 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-7 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-8 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-9 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-10 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-11 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-12 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}
@media (min-width: 960px) {
  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-1 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-2 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-3 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-4 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-5 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-6 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-7 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-8 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-9 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-10 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-11 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-12 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}
@media (min-width: 1400px) {
  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-1 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-2 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-3 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-4 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-5 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-6 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-7 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-8 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-9 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-10 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-11 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-12 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}
@media (min-width: 2400px) {
  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-1 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-2 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-3 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-4 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-5 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-6 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-7 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-8 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-9 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-10 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-11 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-12 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 9, bootstrap/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, bootstrap/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 33, bootstrap/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* line 54, bootstrap/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 67, bootstrap/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 77, bootstrap/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 89, bootstrap/bootstrap/_normalize.scss */
a {
  background-color: transparent;
}

/* line 98, bootstrap/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 110, bootstrap/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 118, bootstrap/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 127, bootstrap/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 136, bootstrap/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 145, bootstrap/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 154, bootstrap/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 162, bootstrap/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 170, bootstrap/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 174, bootstrap/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 185, bootstrap/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 193, bootstrap/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 204, bootstrap/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 212, bootstrap/bootstrap/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/* line 221, bootstrap/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 229, bootstrap/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 252, bootstrap/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 266, bootstrap/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 277, bootstrap/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 290, bootstrap/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 302, bootstrap/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 311, bootstrap/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 322, bootstrap/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 334, bootstrap/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/* line 346, bootstrap/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 356, bootstrap/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/* line 367, bootstrap/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 376, bootstrap/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 387, bootstrap/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 396, bootstrap/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 405, bootstrap/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 416, bootstrap/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 421, bootstrap/bootstrap/_normalize.scss */
td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
/* line 11, bootstrap/bootstrap/_scaffolding.scss */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 14, bootstrap/bootstrap/_scaffolding.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 22, bootstrap/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

/* line 27, bootstrap/bootstrap/_scaffolding.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: white;
}

/* line 35, bootstrap/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 47, bootstrap/bootstrap/_scaffolding.scss */
a {
  text-decoration: none;
}
/* line 50, bootstrap/bootstrap/_scaffolding.scss */
a:hover, a:focus {
  text-decoration: none;
}
/* line 55, bootstrap/bootstrap/_scaffolding.scss */
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 66, bootstrap/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 73, bootstrap/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

/* line 78, bootstrap/bootstrap/_scaffolding.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 83, bootstrap/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 6px;
}

/* line 90, bootstrap/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 103, bootstrap/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 110, bootstrap/bootstrap/_scaffolding.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #dcdee6;
}

/* line 122, bootstrap/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 138, bootstrap/bootstrap/_scaffolding.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 156, bootstrap/bootstrap/_scaffolding.scss */
[role="button"] {
  cursor: pointer;
}

/* line 9, bootstrap/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
/* line 16, bootstrap/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #dcdee6;
}

/* line 24, bootstrap/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* line 30, bootstrap/bootstrap/_type.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 35, bootstrap/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 41, bootstrap/bootstrap/_type.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, bootstrap/bootstrap/_type.scss */
h1, .h1 {
  font-size: 36px;
}

/* line 48, bootstrap/bootstrap/_type.scss */
h2, .h2 {
  font-size: 30px;
}

/* line 49, bootstrap/bootstrap/_type.scss */
h3, .h3 {
  font-size: 24px;
}

/* line 50, bootstrap/bootstrap/_type.scss */
h4, .h4 {
  font-size: 18px;
}

/* line 51, bootstrap/bootstrap/_type.scss */
h5, .h5 {
  font-size: 14px;
}

/* line 52, bootstrap/bootstrap/_type.scss */
h6, .h6 {
  font-size: 12px;
}

/* line 58, bootstrap/bootstrap/_type.scss */
p {
  margin: 0 0 10px;
}

/* line 62, bootstrap/bootstrap/_type.scss */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  /* line 62, bootstrap/bootstrap/_type.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 78, bootstrap/bootstrap/_type.scss */
small,
.small {
  font-size: 85%;
}

/* line 83, bootstrap/bootstrap/_type.scss */
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

/* line 90, bootstrap/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 91, bootstrap/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 92, bootstrap/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 93, bootstrap/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 94, bootstrap/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 97, bootstrap/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 98, bootstrap/bootstrap/_type.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 99, bootstrap/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 102, bootstrap/bootstrap/_type.scss */
.text-muted {
  color: #dcdee6;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #d4d944;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #bdc228;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #3c763d;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #31708f;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #a94442;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/* line 119, bootstrap/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #d4d944;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #bdc228;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

/* line 138, bootstrap/bootstrap/_type.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #dcdee6;
}

/* line 149, bootstrap/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
/* line 153, bootstrap/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, bootstrap/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 173, bootstrap/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
/* line 177, bootstrap/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 185, bootstrap/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 189, bootstrap/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.42857;
}

/* line 193, bootstrap/bootstrap/_type.scss */
dt {
  font-weight: bold;
}

/* line 196, bootstrap/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 960px) {
  /* line 211, bootstrap/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, bootstrap/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 229, bootstrap/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #dcdee6;
}

/* line 235, bootstrap/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
}

/* line 241, bootstrap/bootstrap/_type.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #dcdee6;
}
/* line 250, bootstrap/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
/* line 257, bootstrap/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857;
  color: #dcdee6;
}
/* line 265, bootstrap/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 274, bootstrap/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #dcdee6;
  border-left: 0;
  text-align: right;
}
/* line 286, bootstrap/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
/* line 287, bootstrap/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 294, bootstrap/bootstrap/_type.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857;
}

/* line 10, bootstrap/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 768px;
  }
}
@media (min-width: 960px) {
  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1400px) {
  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 2400px) {
  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 2400px;
  }
}

/* line 33, bootstrap/bootstrap/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 42, bootstrap/bootstrap/_grid.scss */
.row {
  margin-left: -10px;
  margin-right: -10px;
}
/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 11, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

/* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 960px) {
  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1400px) {
  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 2400px) {
  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-12 {
    margin-left: 100%;
  }
}
/* line 11, bootstrap/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 18, bootstrap/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}
/* line 25, bootstrap/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}
/* line 30, bootstrap/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
/* line 35, bootstrap/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 44, bootstrap/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
/* line 49, bootstrap/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 61, bootstrap/bootstrap/_alerts.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}
/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 65, bootstrap/bootstrap/_alerts.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}
/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 69, bootstrap/bootstrap/_alerts.scss */
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}
/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 73, bootstrap/bootstrap/_alerts.scss */
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}
/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #843534;
}

/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, bootstrap/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, bootstrap/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, bootstrap/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, bootstrap/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, bootstrap/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, bootstrap/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, bootstrap/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, bootstrap/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, bootstrap/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-xl {
  display: none !important;
}

/* line 37, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-xl-block,
.visible-xl-inline,
.visible-xl-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  /* line 58, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 63, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 68, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  /* line 77, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  /* line 82, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  /* line 87, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 960px) and (max-width: 1399px) {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 960px) and (max-width: 1399px) {
  /* line 96, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 960px) and (max-width: 1399px) {
  /* line 101, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 960px) and (max-width: 1399px) {
  /* line 106, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1400px) {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1400px) {
  /* line 115, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1400px) {
  /* line 120, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1400px) {
  /* line 125, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 2400px) {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xl {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xl {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xl {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xl,
  td.visible-xl {
    display: table-cell !important;
  }
}
@media (min-width: 2400px) {
  /* line 134, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xl-block {
    display: block !important;
  }
}

@media (min-width: 2400px) {
  /* line 139, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xl-inline {
    display: inline !important;
  }
}

@media (min-width: 2400px) {
  /* line 144, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xl-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 960px) and (max-width: 1399px) {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 2400px) {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xl {
    display: none !important;
  }
}
/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
/* line 182, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}
@media print {
  /* line 182, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 189, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}
@media print {
  /* line 189, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 196, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}
@media print {
  /* line 196, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}
/* line 1, base/_stylesheet.scss */
.grid-stylesheet {
  display: grid;
  grid: repeat(5, fit-content(300px))/repeat(4, 1fr);
  grid-template-areas: "colors typography typography typography" "colors buttons buttons links" "inputs inputs inputs inputs" "badges badges alerts alerts" "badges badges favicons favicons" "grid grid grid grid";
  border: 1px solid #b1b700;
  /*colors*/
}
/* line 13, base/_stylesheet.scss */
.grid-stylesheet > section:not(.typography) {
  padding: 30px;
}
/* line 17, base/_stylesheet.scss */
.grid-stylesheet > section {
  position: relative;
}
/* line 20, base/_stylesheet.scss */
.grid-stylesheet > section > h6 {
  font-weight: bold;
  color: #d4d944;
  background: white;
  position: absolute;
  top: -18px;
  left: 20px;
  padding: 0 10px;
}
/* line 29, base/_stylesheet.scss */
.grid-stylesheet > section h6.subheader {
  color: #999;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}
/* line 37, base/_stylesheet.scss */
.grid-stylesheet .colors {
  grid-area: colors;
  border-right: 1px solid #b1b700;
}
/* line 42, base/_stylesheet.scss */
.grid-stylesheet .typography {
  grid-area: typography;
  border-bottom: 1px solid #b1b700;
}
/* line 47, base/_stylesheet.scss */
.grid-stylesheet .font-family {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/* line 53, base/_stylesheet.scss */
.grid-stylesheet .font-family > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  padding: 30px 30px 0;
  min-width: 10em;
}
/* line 59, base/_stylesheet.scss */
.grid-stylesheet .font-family-bold > * {
  font-weight: 900;
}
/* line 63, base/_stylesheet.scss */
.grid-stylesheet .font-family-medium > * {
  font-weight: 500;
}
/* line 67, base/_stylesheet.scss */
.grid-stylesheet .font-family-light > * {
  font-weight: 300;
}
/* line 71, base/_stylesheet.scss */
.grid-stylesheet .font-example__headline {
  font-weight: 900;
}
/* line 75, base/_stylesheet.scss */
.grid-stylesheet .buttons-wrapper {
  grid-area: buttons;
  border-right: 1px solid #b1b700;
}
/* line 80, base/_stylesheet.scss */
.grid-stylesheet .links {
  grid-area: links;
}
/* line 84, base/_stylesheet.scss */
.grid-stylesheet .inputs-selects {
  grid-area: inputs;
  display: grid;
  border-top: 1px solid #b1b700;
  border-bottom: 1px solid #b1b700;
}
/* line 91, base/_stylesheet.scss */
.grid-stylesheet .badges {
  grid-area: badges;
  border-right: 1px solid #b1b700;
}
/* line 96, base/_stylesheet.scss */
.grid-stylesheet .alerts {
  grid-area: alerts;
}
/* line 100, base/_stylesheet.scss */
.grid-stylesheet .tooltips {
  grid-area: tooltips;
  border-right: 1px solid #b1b700;
}
/* line 105, base/_stylesheet.scss */
.grid-stylesheet .favicons {
  grid-area: favicons;
  border-top: 1px solid #b1b700;
}
/* line 110, base/_stylesheet.scss */
.grid-stylesheet .grid-layout {
  grid-area: grid;
  border-top: 1px solid #b1b700;
}
/* line 115, base/_stylesheet.scss */
.grid-stylesheet .font-family {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/* line 119, base/_stylesheet.scss */
.grid-stylesheet .font-family > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  padding: 30px 30px 0;
  min-width: 10em;
}
/* line 126, base/_stylesheet.scss */
.grid-stylesheet .font-example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* line 129, base/_stylesheet.scss */
.grid-stylesheet .font-example > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  padding: 30px;
  min-width: 16em;
}
/* line 134, base/_stylesheet.scss */
.grid-stylesheet .font-example p {
  margin-bottom: 15px;
}
/* line 140, base/_stylesheet.scss */
.grid-stylesheet .palette {
  display: grid;
  grid: 80px 45px min-content/repeat(5, minmax(50px, 1fr));
  margin-bottom: 1em;
}
/* line 145, base/_stylesheet.scss */
.grid-stylesheet .palette__main {
  grid-column: span 5;
}
/* line 148, base/_stylesheet.scss */
.grid-stylesheet .palette h5 {
  grid-column: span 5;
  text-align: left;
  padding: 10px 0;
}
/* line 153, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(1) {
  background: #d4d944;
}
/* line 156, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(2) {
  background: #3b4394;
}
/* line 159, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(3) {
  background: #a2aaff;
}
/* line 162, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(4) {
  background: #4fc3f7;
}
/* line 165, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(5) {
  background: #0288d1;
}
/* line 168, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(6) {
  background: #0277bd;
}
/* line 171, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(1) {
  background: #223162;
}
/* line 174, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(2) {
  background: #ede7f6;
}
/* line 177, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(3) {
  background: #d1c4e9;
}
/* line 180, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(4) {
  background: #9575cd;
}
/* line 183, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(5) {
  background: #512da8;
}
/* line 186, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(6) {
  background: #311b92;
}
/* line 189, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals {
  grid-template-rows: repeat(2, 50px) -webkit-min-content;
  grid-template-rows: repeat(2, 50px) min-content;
  grid-template-columns: repeat(4, 1fr);
}
/* line 193, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(1) {
  background: #74757d;
}
/* line 196, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(2) {
  background: #dcdee6;
}
/* line 199, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(3) {
  background: #b1b700;
}
/* line 202, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(4) {
  background: #eff0f4;
}
/* line 205, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(5) {
  background: #bfc2cd;
  grid-row: 2;
}
/* line 209, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(6) {
  background: #808488;
  grid-row: 2;
}
/* line 213, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(7) {
  background: #4d5052;
  grid-row: 2;
}
/* line 217, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(8) {
  background: #212122;
  grid-row: 2;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?dvjepi");
  src: url("../fonts/icomoon.eot?dvjepi#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?dvjepi") format("truetype"), url("../fonts/icomoon.woff?dvjepi") format("woff"), url("../fonts/icomoon.svg?dvjepi#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* define a new css font */
/* line 17, base/_icons.scss */
[class^="icon-"]:before,
[class*=" icon-"]:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: block;
  -webkit-transition: color 250ms ease;
  transition: color 250ms ease;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*    created icons    */
/* line 36, base/_icons.scss */
.icon-close {
  width: 8px;
  height: 8px;
  position: relative;
}
/* line 41, base/_icons.scss */
.icon-close::before {
  content: " ";
  width: 1px;
  height: 8px;
  background-color: #3b4394;
  position: absolute;
  top: calc(50% - 4px);
  left: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}
/* line 54, base/_icons.scss */
.icon-close::after {
  content: " ";
  width: 1px;
  height: 8px;
  background-color: #3b4394;
  position: absolute;
  top: calc(50% - 4px);
  left: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}

/* line 68, base/_icons.scss */
.icon-plus {
  width: 9px;
  height: 9px;
  position: relative;
}
/* line 73, base/_icons.scss */
.icon-plus::before {
  content: " ";
  width: 1px;
  height: 9px;
  background-color: #3b4394;
  position: absolute;
  top: calc(50% - 4px);
  left: 50%;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
/* line 85, base/_icons.scss */
.icon-plus::after {
  content: " ";
  width: 9px;
  height: 1px;
  background-color: #3b4394;
  position: absolute;
  top: 50%;
  left: calc(50% - 4px);
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

/* line 110, base/_icons.scss */
.icon-youtube {
  font-size: 15px;
  color: white;
}
/* line 114, base/_icons.scss */
.icon-youtube:before {
  content: "";
}

/* line 120, base/_icons.scss */
.icon-sucess-message:before {
  content: "";
}

/* line 126, base/_icons.scss */
.icon-error-message:before {
  content: "";
}

/* line 131, base/_icons.scss */
.icon-linkedin {
  font-size: 15px;
  color: white;
}
/* line 135, base/_icons.scss */
.icon-linkedin:before {
  content: "";
}

/* line 140, base/_icons.scss */
.icon-twitter {
  font-size: 15px;
  color: white;
}
/* line 144, base/_icons.scss */
.icon-twitter:before {
  content: "";
}

/* line 149, base/_icons.scss */
.icon-facebook {
  font-size: 15px;
  color: white;
}
/* line 153, base/_icons.scss */
.icon-facebook:before {
  content: "";
}

/* line 158, base/_icons.scss */
.icon-arrow-right {
  font-size: 10px;
  color: #3b4394;
}
/* line 162, base/_icons.scss */
.icon-arrow-right:before {
  content: "";
}

/* line 167, base/_icons.scss */
.icon-arrow-right2 {
  font-size: 12px;
  color: white;
}
@media (max-width: 1399px) {
  /* line 167, base/_icons.scss */
  .icon-arrow-right2 {
    font-size: 10px;
  }
}
/* line 175, base/_icons.scss */
.icon-arrow-right2:before {
  content: "";
}

/* line 180, base/_icons.scss */
.icon-arrow-left {
  color: #3b4394;
  font-size: 10px;
}
/* line 184, base/_icons.scss */
.icon-arrow-left:before {
  content: "";
}

/* line 189, base/_icons.scss */
.icon-arrow-left2 {
  font-size: 7px;
  color: #3b4394;
}
/* line 193, base/_icons.scss */
.icon-arrow-left2:before {
  content: "";
}

/* line 198, base/_icons.scss */
.icon-error {
  width: 14px;
  height: 14px;
  background-color: #740404;
  border-radius: 100%;
  position: absolute;
  top: calc(50% - 7px);
  right: 0;
}
/* line 207, base/_icons.scss */
.icon-error::before {
  content: "!";
  font-size: 11px;
  color: white;
  text-align: center;
}

@font-face {
  font-family: 'Pilcrow-regular';
  src: url("../fonts/Pilcrow W03 Regular.eot");
  src: local("☺"), url("../fonts/Pilcrow W03 Regular.woff") format("woff"), url("../fonts/Pilcrow W03 Regular.ttf") format("truetype"), url("../fonts/Pilcrow W03 Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Pilcrow-bold';
  src: url("../fonts/Pilcrow W03 Bold.eot");
  src: local("☺"), url("../fonts/Pilcrow W03 Bold.woff") format("woff"), url("../fonts/Pilcrow W03 Bold.ttf") format("truetype"), url("../fonts/Pilcrow W03 Bold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PilcrowW03-Semibold';
  src: url("../fonts/PilcrowW03-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/PilcrowW03-Semibold.otf") format("opentype"), url("../fonts/PilcrowW03-Semibold.woff") format("woff"), url("../fonts/PilcrowW03-Semibold.ttf") format("truetype"), url("../fonts/PilcrowW03-Semibold.svg#PilcrowW03-Semibold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PilcrowW03-Medium';
  src: url("../fonts/PilcrowW03-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/PilcrowW03-Medium.woff") format("woff"), url("../fonts/PilcrowW03-Medium.ttf") format("truetype"), url("../fonts/PilcrowW03-Medium.svg#PilcrowW03-Medium") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 42, base/_fonts.scss */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Pilcrow-regular", Arial, sans-serif;
  color: #3b4394;
}

/* line 58, base/_fonts.scss */
.page-title {
  font-size: 60px;
  line-height: 68px;
}
@media (max-width: 1399px) {
  /* line 58, base/_fonts.scss */
  .page-title {
    font-size: 45px;
    line-height: 48px;
  }
}
@media (max-width: 959px) {
  /* line 58, base/_fonts.scss */
  .page-title {
    font-size: 35px;
    line-height: 38px;
  }
}

/* line 73, base/_fonts.scss */
.pre-title {
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  color: #74757d;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 1399px) {
  /* line 73, base/_fonts.scss */
  .pre-title {
    font-size: 16px;
    line-height: 20px;
  }
}

/* line 87, base/_fonts.scss */
.page-title {
  text-align: center;
}

/* line 91, base/_fonts.scss */
.title-secundary {
  font-size: 45px;
  line-height: 48px;
  margin: 0;
}
@media (max-width: 959px) {
  /* line 91, base/_fonts.scss */
  .title-secundary {
    font-size: 30px;
    line-height: 35px;
  }
}

/* line 102, base/_fonts.scss */
strong {
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
}

/* line 1, base/_base.scss */
body {
  font-family: "Pilcrow-regular", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: .2px;
  overflow-x: hidden;
  min-height: 100vh;
}
/* line 21, base/_base.scss */
body.in-modal {
  overflow: hidden;
}

/* line 26, base/_base.scss */
img {
  max-width: 100%;
}

/* line 30, base/_base.scss */
.mt-25 {
  margin-top: 25px;
}

/* line 34, base/_base.scss */
.medium-text p {
  font-size: 23px;
  line-height: 33px;
}
@media (max-width: 767px) {
  /* line 34, base/_base.scss */
  .medium-text p {
    font-size: 19px;
    line-height: 26px;
  }
}

/* line 43, base/_base.scss */
#modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
  visibility: hidden;
  -webkit-transition: background-color 250ms ease-in-out;
  transition: background-color 250ms ease-in-out;
}
@media all and (max-height: 700px) {
  /* line 43, base/_base.scss */
  #modal-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow-y: scroll;
    padding: 50px;
  }
}
@media (max-width: 959px) {
  /* line 43, base/_base.scss */
  #modal-container {
    padding: 20px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow-y: scroll;
  }
}
/* line 66, base/_base.scss */
#modal-container.opened {
  background-color: rgba(255, 255, 255, 0.4);
}
/* line 68, base/_base.scss */
#modal-container.opened .modal-content {
  opacity: 1;
  border-radius: 250px;
  border-top-left-radius: 0;
  -webkit-box-shadow: 0 50px 40px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 50px 40px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 959px) {
  /* line 68, base/_base.scss */
  #modal-container.opened .modal-content {
    border-radius: 100px;
    border-top-left-radius: 0;
  }
}
/* line 78, base/_base.scss */
#modal-container.opened .close-modals {
  opacity: 1;
}
/* line 82, base/_base.scss */
#modal-container > .container {
  width: 100%;
}
@media (max-width: 959px) {
  /* line 82, base/_base.scss */
  #modal-container > .container {
    padding: 0 15px;
  }
}
/* line 88, base/_base.scss */
#modal-container .modal-content {
  position: relative;
  background-color: #3b4394;
  border-radius: 150px;
  border-top-left-radius: 0;
  -webkit-box-shadow: 0 50px 40px 0 transparent;
          box-shadow: 0 50px 40px 0 transparent;
  padding: 60px 60px 170px;
  min-height: 400px;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out, border-radius 350ms ease-in-out, -webkit-box-shadow 350ms ease-in-out;
  transition: opacity 250ms ease-in-out, border-radius 350ms ease-in-out, -webkit-box-shadow 350ms ease-in-out;
  transition: opacity 250ms ease-in-out, border-radius 350ms ease-in-out, box-shadow 350ms ease-in-out;
  transition: opacity 250ms ease-in-out, border-radius 350ms ease-in-out, box-shadow 350ms ease-in-out, -webkit-box-shadow 350ms ease-in-out;
}
@media (max-width: 959px) {
  /* line 88, base/_base.scss */
  #modal-container .modal-content {
    padding: 50px 35px 140px;
    border-radius: 100px;
  }
}
/* line 103, base/_base.scss */
#modal-container .close-modals {
  left: initial;
  right: 50px;
  top: 50px;
  opacity: 0;
  z-index: 5;
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
@media (max-width: 959px) {
  /* line 103, base/_base.scss */
  #modal-container .close-modals {
    right: 15px;
    top: 15px;
  }
}

/* line 117, base/_base.scss */
.modal-title {
  font-size: 45px;
  line-height: 48px;
  margin-bottom: 30px;
}
@media (max-width: 959px) {
  /* line 117, base/_base.scss */
  .modal-title {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 767px) {
  /* line 127, base/_base.scss */
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1400px) {
  /* line 134, base/_base.scss */
  [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* line 141, base/_base.scss */
.blockY {
  overflow-y: hidden;
}

/* line 145, base/_base.scss */
svg {
  width: 100%;
  max-width: 100%;
  overflow: visible !important;
}

/* line 151, base/_base.scss */
.white-background {
  background-color: white;
}

/* line 155, base/_base.scss */
.green-background {
  background-color: #d4d944;
}

/* line 159, base/_base.scss */
.blue-background {
  background-color: #3b4394;
}

/* line 163, base/_base.scss */
.institucional-content {
  position: relative;
  padding: 175px 0;
  overflow: hidden;
}
@media (max-width: 959px) {
  /* line 163, base/_base.scss */
  .institucional-content {
    padding: 150px 0 100px;
  }
}
@media (max-width: 767px) {
  /* line 163, base/_base.scss */
  .institucional-content {
    padding: 125px 0 100px;
  }
}
/* line 173, base/_base.scss */
.institucional-content td,
.institucional-content th {
  padding: 8px;
  border: 1px solid #74757d;
  color: #74757d;
}

@media (max-width: 959px) {
  /* line 181, base/_base.scss */
  .change-order-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 959px) {
  /* line 188, base/_base.scss */
  .order-mobile-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 959px) {
  /* line 194, base/_base.scss */
  .order-mobile-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/* line 200, base/_base.scss */
.centered-vertically {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 959px) {
  /* line 200, base/_base.scss */
  .centered-vertically {
    display: block;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

/* line 209, base/_base.scss */
p {
  line-height: 26px;
}

/* line 213, base/_base.scss */
a {
  -webkit-transition: color 250ms ease;
  transition: color 250ms ease;
}
/* line 215, base/_base.scss */
a:hover {
  text-decoration: none;
}

/* line 220, base/_base.scss */
ul,
ol {
  margin: 0;
  padding: 0;
}

/* line 226, base/_base.scss */
li {
  list-style-type: none;
}

/* line 230, base/_base.scss */
button {
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  letter-spacing: inherit;
}

/* line 239, base/_base.scss */
header {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 140px);
  margin: 0 auto;
  z-index: 10;
  -webkit-transition: top 200ms ease-out .25s, background-color 200ms ease-out;
  transition: top 200ms ease-out .25s, background-color 200ms ease-out;
  background-color: transparent;
}
@media (max-width: 1399px) {
  /* line 239, base/_base.scss */
  header {
    width: calc(100% - 80px);
    top: 30px;
  }
}
@media (max-width: 959px) {
  /* line 239, base/_base.scss */
  header {
    display: block;
    width: 100%;
    padding: 20px 30px;
    top: 0;
  }
}
@media (max-width: 959px) {
  /* line 262, base/_base.scss */
  header.colored {
    background-color: white;
  }
}
@media (min-width: 960px) {
  /* line 268, base/_base.scss */
  header.colored .white-logo {
    display: block !important;
  }
  /* line 269, base/_base.scss */
  header.colored .blue-logo {
    display: none !important;
  }
}
/* line 272, base/_base.scss */
header.colored:before {
  opacity: 1;
}
@media (min-width: 960px) {
  /* line 277, base/_base.scss */
  header.colored .main-menu__item.selected {
    color: #d4d944 !important;
  }
  /* line 281, base/_base.scss */
  header.colored .modal-link {
    background-color: #d4d944;
  }
  /* line 284, base/_base.scss */
  header.colored .modal-link:hover {
    color: #3b4394;
  }
}
@media (min-width: 960px) {
  /* line 293, base/_base.scss */
  header:not(.blue-version) .main-menu__item.selected {
    color: #d4d944 !important;
  }
}
/* line 299, base/_base.scss */
header.hide-it {
  top: -115px;
}
/* line 303, base/_base.scss */
header.mobile-opened #main-menu {
  opacity: 1;
}
/* line 308, base/_base.scss */
header.mobile-opened #open-mobile-menu .open-mobile__icon::before {
  top: 2px;
}
/* line 311, base/_base.scss */
header.mobile-opened #open-mobile-menu .open-mobile__icon::after {
  width: 0;
}
/* line 319, base/_base.scss */
header.blue-version .white-logo {
  display: none;
}
/* line 322, base/_base.scss */
header.blue-version .blue-logo {
  display: block;
}
@media (min-width: 960px) {
  /* line 328, base/_base.scss */
  header.blue-version:not(.colored) #main-menu > ul .main-menu__item {
    color: #74757d;
  }
}
/* line 339, base/_base.scss */
header.blue-version #main-menu > ul .main-menu__item {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media (max-width: 959px) {
  /* line 339, base/_base.scss */
  header.blue-version #main-menu > ul .main-menu__item {
    color: white;
  }
}
/* line 347, base/_base.scss */
header.blue-version #main-menu > ul .main-menu__item.selected {
  color: #3b4394;
}
@media (max-width: 959px) {
  /* line 347, base/_base.scss */
  header.blue-version #main-menu > ul .main-menu__item.selected {
    color: white;
  }
}
/* line 355, base/_base.scss */
header.blue-version #main-menu > ul .main-menu__submenu .main-menu__item {
  color: white;
}
@media (min-width: 960px) {
  /* line 363, base/_base.scss */
  header:before {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    right: -20px;
    bottom: -10px;
    left: -20px;
    z-index: -1;
    opacity: 0;
    background-color: #3b4394;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
}

/* line 381, base/_base.scss */
.homepage {
  height: 100vh;
  background: #1d284b;
  background: linear-gradient(240deg, #475f9c 0%, #223162 70%, #1d284b 100%);
}

/* line 387, base/_base.scss */
.blue-solid-background {
  background: #223162;
}
/* line 389, base/_base.scss */
.blue-solid-background .page-title,
.blue-solid-background .main-description,
.blue-solid-background .tab-button-link,
.blue-solid-background .title-secundary,
.blue-solid-background .description-text {
  color: white;
}
/* line 397, base/_base.scss */
.blue-solid-background .pre-title {
  color: #bfc2cd;
}
@media (max-width: 959px) {
  /* line 400, base/_base.scss */
  .blue-solid-background .colored {
    background-color: #dcdee6;
  }
  /* line 404, base/_base.scss */
  .blue-solid-background .colored .white-logo {
    display: none;
  }
  /* line 408, base/_base.scss */
  .blue-solid-background .colored .blue-logo {
    display: block;
  }
}

/* line 416, base/_base.scss */
.gray-gradient::before {
  content: " ";
  width: 100%;
  height: 1400px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#dcdee600), to(#dcdee6));
  background: linear-gradient(0deg, #dcdee600 0%, #dcdee6 100%);
}
@media (max-width: 959px) {
  /* line 416, base/_base.scss */
  .gray-gradient::before {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #dcdee600), to(#dcdee6));
    background: linear-gradient(0deg, #dcdee600 40%, #dcdee6 100%);
  }
}

/* line 434, base/_base.scss */
.inicial-logo {
  width: 200px;
}
@media (max-width: 959px) {
  /* line 434, base/_base.scss */
  .inicial-logo {
    width: 170px;
  }
}
/* line 439, base/_base.scss */
.inicial-logo img {
  width: 100%;
}

/* line 444, base/_base.scss */
.white-logo {
  display: block;
}

/* line 448, base/_base.scss */
.white {
  color: white;
}

/* line 452, base/_base.scss */
.row-eq-height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 959px) {
  /* line 452, base/_base.scss */
  .row-eq-height {
    display: block;
  }
}
/* line 458, base/_base.scss */
.row-eq-height > [class*='col-'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 959px) {
  /* line 458, base/_base.scss */
  .row-eq-height > [class*='col-'] {
    display: block;
  }
}

/* line 467, base/_base.scss */
#loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20;
  padding: 50px;
  background: #475f9c;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #475f9c), to(#1d284b));
  background: linear-gradient(0deg, #475f9c 0, #1d284b 100%);
  overflow: hidden;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
/* line 481, base/_base.scss */
#loading-container[data-status="visible"] {
  display: block;
}
/* line 484, base/_base.scss */
#loading-container .white-logo {
  max-width: 200px;
  margin: 0 auto;
}

/* line 490, base/_base.scss */
.blue-logo {
  display: none;
}

/* line 494, base/_base.scss */
#main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
}
@media (max-width: 959px) {
  /* line 494, base/_base.scss */
  #main-menu {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    top: 0;
    right: 0;
    width: 75vw;
    max-width: 300px;
    padding: 75px 40px 40px;
    background-color: #3b4394;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-bottom-left-radius: 20px;
    -webkit-box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.7);
            box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.7);
  }
}
/* line 513, base/_base.scss */
#main-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 959px) {
  /* line 513, base/_base.scss */
  #main-menu > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}
/* line 522, base/_base.scss */
#main-menu > ul:hover .main-menu__item {
  opacity: .6;
}
@media (max-width: 959px) {
  /* line 522, base/_base.scss */
  #main-menu > ul:hover .main-menu__item {
    opacity: 1;
  }
}
/* line 529, base/_base.scss */
#main-menu > ul li {
  position: relative;
}
@media (max-width: 959px) {
  /* line 529, base/_base.scss */
  #main-menu > ul li {
    margin-bottom: 30px;
  }
}
/* line 536, base/_base.scss */
#main-menu > ul .main-menu__item:hover {
  opacity: 1;
}
/* line 541, base/_base.scss */
#main-menu .main-menu__item {
  position: relative;
  display: block;
  padding: 20px 25px;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: white;
  -webkit-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
@media (max-width: 959px) {
  /* line 541, base/_base.scss */
  #main-menu .main-menu__item {
    padding: 0;
  }
}
/* line 553, base/_base.scss */
#main-menu .main-menu__item.selected {
  color: #3b4394;
}
@media (max-width: 959px) {
  /* line 553, base/_base.scss */
  #main-menu .main-menu__item.selected {
    color: white;
  }
}
/* line 558, base/_base.scss */
#main-menu .main-menu__item.selected::before {
  content: " ";
  width: 4px;
  height: 4px;
  background-color: #d4d944;
  border-radius: 25px;
  position: absolute;
  top: calc(50% - 4px);
  left: 10px;
}
@media (max-width: 959px) {
  /* line 558, base/_base.scss */
  #main-menu .main-menu__item.selected::before {
    left: -10px;
  }
}
/* line 572, base/_base.scss */
#main-menu .main-menu__item .icon-plus {
  display: inline-block;
  margin-left: 10px;
  display: none;
}
@media (max-width: 959px) {
  /* line 572, base/_base.scss */
  #main-menu .main-menu__item .icon-plus {
    display: inline-block;
  }
}
/* line 579, base/_base.scss */
#main-menu .main-menu__item .icon-plus::before, #main-menu .main-menu__item .icon-plus::after {
  background-color: white;
}
/* line 585, base/_base.scss */
#main-menu .btn-secondary {
  margin-left: 25px;
}
@media (max-width: 959px) {
  /* line 585, base/_base.scss */
  #main-menu .btn-secondary {
    margin-left: 0;
    color: #3b4394;
    background-color: #d4d944;
  }
}
/* line 595, base/_base.scss */
#main-menu .with-submenu:hover > .main-menu__item {
  opacity: 1;
}
/* line 598, base/_base.scss */
#main-menu .with-submenu:hover .main-menu__submenu {
  visibility: visible;
  opacity: 1;
}
/* line 604, base/_base.scss */
#main-menu .with-submenu.open .main-menu__submenu {
  max-height: 300px;
}
/* line 608, base/_base.scss */
#main-menu .with-submenu.open .icon-plus::before {
  height: 0;
}
/* line 614, base/_base.scss */
#main-menu .main-menu__submenu {
  position: absolute;
  top: 100%;
  left: 20px;
  padding: 20px;
  background-color: #3b4394;
  border-radius: 0 20px 20px 20px;
  min-width: 175px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 300ms ease, max-height 350ms ease-in-out;
  transition: opacity 300ms ease, max-height 350ms ease-in-out;
}
@media (max-width: 959px) {
  /* line 614, base/_base.scss */
  #main-menu .main-menu__submenu {
    max-height: 0;
    opacity: 1;
    visibility: inherit;
    min-width: initial;
    width: 100%;
    position: initial;
    top: initial;
    left: initial;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
  }
}
@media (max-width: 959px) {
  /* line 638, base/_base.scss */
  #main-menu .main-menu__submenu > .main-menu__item {
    margin-top: 15px;
  }
}
/* line 643, base/_base.scss */
#main-menu .main-menu__submenu .main-menu__item {
  margin-bottom: 10px;
  font-size: 13px;
  padding: 0;
}
/* line 647, base/_base.scss */
#main-menu .main-menu__submenu .main-menu__item:last-of-type {
  margin-bottom: 0;
}

/* line 654, base/_base.scss */
#open-mobile-menu {
  display: none;
  font-family: "PilcrowW03-Medium", Arial, sans-serif;
  font-size: 11px;
  background-color: #3b4394;
  border-bottom-left-radius: 20px;
  padding: 15px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 959px) {
  /* line 654, base/_base.scss */
  #open-mobile-menu {
    display: block;
  }
}
/* line 667, base/_base.scss */
#open-mobile-menu .open-mobile__icon {
  width: 20px;
  height: 6px;
  margin-right: 5px;
  display: inline-block;
  position: relative;
}
/* line 673, base/_base.scss */
#open-mobile-menu .open-mobile__icon::before {
  content: " ";
  width: 100%;
  height: 1px;
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: top 250ms ease-out;
  transition: top 250ms ease-out;
}
/* line 683, base/_base.scss */
#open-mobile-menu .open-mobile__icon::after {
  content: " ";
  width: 60%;
  height: 1px;
  background-color: white;
  margin-left: 40%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: width 250ms ease-out;
  transition: width 250ms ease-out;
}

/* line 699, base/_base.scss */
.homepage-footer.visible .homepage-footer__content {
  bottom: 0 !important;
  opacity: 1;
}
/* line 704, base/_base.scss */
.homepage-footer.visible .logo-eu p {
  opacity: 1;
}
/* line 708, base/_base.scss */
.homepage-footer.visible .developed-loba {
  opacity: 1;
}

/* line 714, base/_base.scss */
.open-footer-homepage {
  position: fixed;
  bottom: 50px;
  left: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
@media (max-width: 959px) {
  /* line 714, base/_base.scss */
  .open-footer-homepage {
    bottom: 30px;
    left: 30px;
  }
}
/* line 726, base/_base.scss */
.open-footer-homepage:hover .rounded-white-circle {
  background-color: #a2aaff;
}
/* line 728, base/_base.scss */
.open-footer-homepage:hover .rounded-white-circle::before, .open-footer-homepage:hover .rounded-white-circle::after {
  background-color: white;
}
/* line 735, base/_base.scss */
.open-footer-homepage.state-changed .label-switcher {
  color: #3b4394;
}
/* line 737, base/_base.scss */
.open-footer-homepage.state-changed .label-switcher .normal-state {
  display: none;
}
/* line 740, base/_base.scss */
.open-footer-homepage.state-changed .label-switcher .changed-state {
  display: block;
}
/* line 745, base/_base.scss */
.open-footer-homepage.state-changed .rounded-white-circle::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/* line 748, base/_base.scss */
.open-footer-homepage.state-changed .rounded-white-circle::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/* line 753, base/_base.scss */
.open-footer-homepage .label-switcher {
  margin-left: 10px;
}
/* line 756, base/_base.scss */
.open-footer-homepage .rounded-white-circle {
  position: relative;
}
/* line 758, base/_base.scss */
.open-footer-homepage .rounded-white-circle::before, .open-footer-homepage .rounded-white-circle::after {
  content: " ";
  position: absolute;
  background-color: #3b4394;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: background-color 300ms ease, -webkit-transform 300ms ease;
  transition: background-color 300ms ease, -webkit-transform 300ms ease;
  transition: transform 300ms ease, background-color 300ms ease;
  transition: transform 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
}
/* line 768, base/_base.scss */
.open-footer-homepage .rounded-white-circle::before {
  width: 1px;
  height: 9px;
  top: calc(50% - 4px);
}
/* line 773, base/_base.scss */
.open-footer-homepage .rounded-white-circle::after {
  width: 9px;
  height: 1px;
  top: 50%;
}

/* line 781, base/_base.scss */
.label-switcher {
  font-family: "Pilcrow-bold", Arial, sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: white;
  letter-spacing: 1px;
}
/* line 787, base/_base.scss */
.label-switcher .normal-state {
  display: block;
}
/* line 790, base/_base.scss */
.label-switcher .changed-state {
  display: none;
}

/* line 795, base/_base.scss */
.logo-eu {
  position: fixed;
  right: 70px;
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 5;
}
@media (max-width: 959px) {
  /* line 795, base/_base.scss */
  .logo-eu {
    bottom: 30px;
    right: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/* line 807, base/_base.scss */
.logo-eu p {
  font-size: 11px;
  line-height: 15px;
  color: #74757d;
  text-align: right;
  max-width: 250px;
  margin-bottom: 0;
  margin-top: -4px;
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
@media (max-width: 959px) {
  /* line 807, base/_base.scss */
  .logo-eu p {
    display: none;
  }
}
/* line 821, base/_base.scss */
.logo-eu .eu-image {
  margin-left: 10px;
}

/* line 826, base/_base.scss */
.eu-image {
  width: 50px;
}
@media (max-width: 959px) {
  /* line 826, base/_base.scss */
  .eu-image {
    width: 40px;
  }
}

/* line 833, base/_base.scss */
.developed-loba {
  position: fixed;
  right: 70px;
  bottom: 15px;
  z-index: 5;
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

/* line 842, base/_base.scss */
.homepage-footer__content {
  padding: 50px 0;
  position: fixed;
  left: 0;
  bottom: calc(100% + 300px);
  background-color: #dcdee6;
  width: 100%;
  opacity: 0;
  -webkit-transition: bottom 250ms ease-out, opacity 150ms ease-out;
  transition: bottom 250ms ease-out, opacity 150ms ease-out;
}
@media (max-width: 959px) {
  /* line 842, base/_base.scss */
  .homepage-footer__content {
    z-index: 10;
    padding: 75px 0 20px;
  }
}
/* line 855, base/_base.scss */
.homepage-footer__content .open-footer-homepage {
  display: none;
  position: absolute;
  top: -18px;
  bottom: initial;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 959px) {
  /* line 855, base/_base.scss */
  .homepage-footer__content .open-footer-homepage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* line 867, base/_base.scss */
.homepage-footer__content .open-footer-homepage .label-switcher {
  margin-left: 0;
  margin-top: 5px;
  color: #3b4394;
}
@media (max-width: 959px) {
  /* line 873, base/_base.scss */
  .homepage-footer__content .logo-eu {
    position: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 320px;
    margin: 40px auto 0;
  }
}
/* line 881, base/_base.scss */
.homepage-footer__content .logo-eu p {
  display: block;
  opacity: 1;
}
@media (max-width: 959px) {
  /* line 886, base/_base.scss */
  .homepage-footer__content .developed-loba {
    display: block;
    right: initial;
    position: initial;
    margin-top: 30px;
    bottom: initial;
    text-align: center;
  }
}

/* line 898, base/_base.scss */
.homepage-footer_rights {
  font-size: 13px;
  line-height: 15px;
  color: #3b4394;
}

/* line 904, base/_base.scss */
.homepage-footer__links {
  font-size: 13px;
  line-height: 15px;
}
/* line 907, base/_base.scss */
.homepage-footer__links a {
  color: #74757d;
  padding: 0 10px;
  border-right: 1px solid #74757d;
}
/* line 911, base/_base.scss */
.homepage-footer__links a:first-of-type {
  padding-left: 0;
}
/* line 914, base/_base.scss */
.homepage-footer__links a:last-of-type {
  border-right: 0;
}
/* line 917, base/_base.scss */
.homepage-footer__links a:hover {
  color: #3b4394;
}

@media (max-width: 959px) {
  /* line 923, base/_base.scss */
  .homepage-footer_rights-container {
    margin: 0 auto;
    width: 215px;
  }
}

/* line 930, base/_base.scss */
.homepage-footer__subscribe-newsletter {
  text-align: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 959px) {
  /* line 930, base/_base.scss */
  .homepage-footer__subscribe-newsletter {
    margin: 40px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 186px;
  }
}
/* line 940, base/_base.scss */
.homepage-footer__subscribe-newsletter:hover .rounded-white-circle {
  background-color: #a2aaff;
}
/* line 942, base/_base.scss */
.homepage-footer__subscribe-newsletter:hover .rounded-white-circle .icon-arrow-right {
  color: white;
}
/* line 947, base/_base.scss */
.homepage-footer__subscribe-newsletter p {
  width: 100%;
  max-width: 150px;
  font-size: 16px;
  line-height: 20px;
  color: #3b4394;
  margin-bottom: 0;
}

/* line 957, base/_base.scss */
.homepage-footer_icon {
  margin-right: 10px;
  width: 35px;
  height: 35px;
}

/* line 963, base/_base.scss */
.homepage-footer__social-networks,
.share-this__links {
  position: fixed;
  top: 50%;
  right: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 959px) {
  /* line 963, base/_base.scss */
  .homepage-footer__social-networks,
  .share-this__links {
    -webkit-transform: none;
            transform: none;
    right: 25px;
    top: initial;
    bottom: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
/* line 979, base/_base.scss */
.homepage-footer__social-networks a,
.share-this__links a {
  margin: 15px 0;
}
@media (max-width: 959px) {
  /* line 979, base/_base.scss */
  .homepage-footer__social-networks a,
  .share-this__links a {
    margin: 0 7px;
  }
}
/* line 985, base/_base.scss */
.homepage-footer__social-networks a:hover span,
.share-this__links a:hover span {
  color: #d4d944;
}

/* line 992, base/_base.scss */
.main-footer {
  background-color: #dcdee6;
  padding-bottom: 35px;
  position: relative;
}
@media (max-width: 959px) {
  /* line 992, base/_base.scss */
  .main-footer {
    padding-bottom: 40px;
  }
}
/* line 999, base/_base.scss */
.main-footer .homepage-footer_rights-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 959px) {
  /* line 999, base/_base.scss */
  .main-footer .homepage-footer_rights-container {
    width: 100%;
    margin-top: 20px;
  }
}
/* line 1007, base/_base.scss */
.main-footer .logo-eu {
  position: initial;
  right: initial;
  bottom: initial;
}
@media (max-width: 959px) {
  /* line 1007, base/_base.scss */
  .main-footer .logo-eu {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 30px;
  }
}
/* line 1015, base/_base.scss */
.main-footer .logo-eu .eu-image {
  margin-left: 0;
  margin-right: 10px;
  width: 30px;
}
/* line 1020, base/_base.scss */
.main-footer .logo-eu p {
  text-align: left;
  opacity: 1;
}
@media (max-width: 959px) {
  /* line 1020, base/_base.scss */
  .main-footer .logo-eu p {
    display: block;
  }
}
/* line 1028, base/_base.scss */
.main-footer .homepage-footer__social-networks {
  position: initial;
  right: initial;
  top: initial;
  -webkit-transform: none;
          transform: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
      -ms-flex-direction: initial;
          flex-direction: initial;
  margin-top: 10px;
}
@media (max-width: 959px) {
  /* line 1028, base/_base.scss */
  .main-footer .homepage-footer__social-networks {
    margin-top: 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
/* line 1040, base/_base.scss */
.main-footer .homepage-footer__social-networks a {
  margin: 0 10px;
}
@media (max-width: 959px) {
  /* line 1042, base/_base.scss */
  .main-footer .homepage-footer__social-networks a:first-of-type {
    margin-left: 0;
  }
}
/* line 1047, base/_base.scss */
.main-footer .homepage-footer__social-networks a:last-of-type {
  margin-right: 0;
}
@media (max-width: 959px) {
  /* line 1047, base/_base.scss */
  .main-footer .homepage-footer__social-networks a:last-of-type {
    margin-right: 10px;
  }
}
/* line 1054, base/_base.scss */
.main-footer .homepage-footer__social-networks a:hover span {
  color: #a2aaff;
}
/* line 1058, base/_base.scss */
.main-footer .homepage-footer__social-networks a span {
  color: #3b4394;
}
/* line 1063, base/_base.scss */
.main-footer .developed-loba {
  position: absolute;
  bottom: 35px;
  opacity: 1;
}
@media (max-width: 2399px) {
  /* line 1063, base/_base.scss */
  .main-footer .developed-loba {
    right: 30px;
  }
}

/* line 1073, base/_base.scss */
.newsletter-subscribe,
.quick-links {
  position: relative;
  width: 100%;
  padding: 35px 25px 25px 35px;
  border-radius: 7px;
  -webkit-box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  opacity: 0;
  top: -100px;
  -webkit-transition: opacity 500ms ease-out .1s, top 500ms ease-out;
  transition: opacity 500ms ease-out .1s, top 500ms ease-out;
}
@media (max-width: 959px) {
  /* line 1073, base/_base.scss */
  .newsletter-subscribe,
  .quick-links {
    margin-bottom: 20px;
    padding: 30px;
  }
}
/* line 1091, base/_base.scss */
.newsletter-subscribe a,
.quick-links a {
  margin-top: 45px;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  /* line 1091, base/_base.scss */
  .newsletter-subscribe a,
  .quick-links a {
    margin-top: 25px;
  }
}

/* line 1101, base/_base.scss */
.main-footer__links {
  margin-bottom: 45px;
  width: 100%;
}
@media (max-width: 767px) {
  /* line 1101, base/_base.scss */
  .main-footer__links {
    margin-top: -80px !important;
  }
}
/* line 1108, base/_base.scss */
.main-footer__links.animate-it .newsletter-subscribe,
.main-footer__links.animate-it .quick-links {
  opacity: 1;
  top: 0;
}

/* line 1116, base/_base.scss */
.newsletter-subscribe__title,
.quick-links__title {
  font-size: 23px;
  line-height: 26px;
  width: 100%;
  padding-right: 35%;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  /* line 1116, base/_base.scss */
  .newsletter-subscribe__title,
  .quick-links__title {
    padding-right: 0;
  }
}

/* line 1129, base/_base.scss */
.quick-links__title {
  color: #3b4394;
  padding-right: 50%;
}
@media (max-width: 767px) {
  /* line 1129, base/_base.scss */
  .quick-links__title {
    padding-right: 0;
  }
}

/* line 1137, base/_base.scss */
.newsletter-subscribe {
  position: relative;
  background: linear-gradient(242deg, #d9dc00, #949900);
}
/* line 1140, base/_base.scss */
.newsletter-subscribe img {
  position: absolute;
  bottom: -25%;
  left: 0;
  width: 100%;
  z-index: 0;
}

/* line 1149, base/_base.scss */
.quick-links {
  background-color: white;
  -webkit-transition-delay: .125s;
          transition-delay: .125s;
}
@media (max-width: 767px) {
  /* line 1149, base/_base.scss */
  .quick-links {
    min-height: 285px;
  }
}
/* line 1155, base/_base.scss */
.quick-links a {
  position: absolute;
  bottom: 25px;
}
@media (max-width: 959px) {
  /* line 1155, base/_base.scss */
  .quick-links a {
    position: initial;
    bottom: initial;
  }
}
@media (max-width: 767px) {
  /* line 1155, base/_base.scss */
  .quick-links a {
    position: absolute;
    bottom: 20px;
    right: 30px;
  }
}
/* line 1169, base/_base.scss */
.quick-links.template-1::before {
  content: " ";
  width: 300px;
  height: 300px;
  position: absolute;
  top: calc(50% - 150px);
  right: -150px;
  z-index: 0;
  background-color: rgba(162, 170, 255, 0.2);
  border-radius: 150px;
}
@media (max-width: 767px) {
  /* line 1169, base/_base.scss */
  .quick-links.template-1::before {
    top: calc(100% - 100px);
  }
}
/* line 1183, base/_base.scss */
.quick-links.template-1::after {
  content: " ";
  width: 100%;
  height: 110px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/points-consortium-background.svg") no-repeat top center;
  z-index: 0;
}
/* line 1195, base/_base.scss */
.quick-links.template-2::before {
  content: " ";
  width: 300px;
  height: 300px;
  position: absolute;
  top: calc(50% - 150px);
  right: -150px;
  z-index: 0;
  background-color: rgba(162, 170, 255, 0.2);
  border-radius: 150px;
}
@media (max-width: 767px) {
  /* line 1195, base/_base.scss */
  .quick-links.template-2::before {
    top: calc(100% - 100px);
  }
}
/* line 1209, base/_base.scss */
.quick-links.template-2::after {
  content: " ";
  width: 130px;
  height: 130px;
  position: absolute;
  top: 20%;
  right: 25%;
  background: url(../img/public-results-footer.svg) no-repeat top center;
  z-index: 0;
}
@media (max-width: 767px) {
  /* line 1209, base/_base.scss */
  .quick-links.template-2::after {
    bottom: 5%;
    top: initial;
    left: 10%;
  }
}
/* line 1226, base/_base.scss */
.quick-links.template-3::before {
  content: " ";
  width: 300px;
  height: 300px;
  position: absolute;
  top: calc(50% - 150px);
  right: -150px;
  z-index: 0;
  background-color: rgba(162, 170, 255, 0.2);
  border-radius: 150px;
}
@media (max-width: 767px) {
  /* line 1226, base/_base.scss */
  .quick-links.template-3::before {
    top: calc(100% - 100px);
  }
}
/* line 1240, base/_base.scss */
.quick-links.template-3::after {
  content: " ";
  width: 130px;
  height: 90%;
  position: absolute;
  top: 5%;
  right: 35%;
  background: url("../img/promotional-materials-cta.svg") no-repeat top center;
  z-index: 0;
}
@media (max-width: 767px) {
  /* line 1240, base/_base.scss */
  .quick-links.template-3::after {
    bottom: 5%;
    top: initial;
    left: 10%;
    height: 70%;
  }
}
/* line 1258, base/_base.scss */
.quick-links.template-4::before {
  content: " ";
  width: 300px;
  height: 300px;
  position: absolute;
  top: calc(50% - 150px);
  right: -150px;
  z-index: 0;
  background-color: rgba(162, 170, 255, 0.2);
  border-radius: 150px;
}
@media (max-width: 767px) {
  /* line 1258, base/_base.scss */
  .quick-links.template-4::before {
    top: calc(100% - 100px);
  }
}
/* line 1272, base/_base.scss */
.quick-links.template-4::after {
  content: " ";
  width: 100%;
  max-width: 130px;
  height: 100%;
  position: absolute;
  top: 13%;
  right: 35%;
  background: url("../img/res-survey-cta.svg") no-repeat top center;
  z-index: 0;
}
@media (max-width: 767px) {
  /* line 1272, base/_base.scss */
  .quick-links.template-4::after {
    bottom: 5%;
    top: initial;
    left: 10%;
    height: 55%;
  }
}
/* line 1291, base/_base.scss */
.quick-links.template-5::before {
  content: " ";
  width: 300px;
  height: 300px;
  position: absolute;
  top: calc(50% - 150px);
  right: -150px;
  z-index: 0;
  background-color: rgba(162, 170, 255, 0.2);
  border-radius: 150px;
}
@media (max-width: 767px) {
  /* line 1291, base/_base.scss */
  .quick-links.template-5::before {
    top: calc(100% - 100px);
  }
}
/* line 1305, base/_base.scss */
.quick-links.template-5::after {
  content: " ";
  width: 230px;
  max-width: 100%;
  height: 160px;
  max-width: 100%;
  position: absolute;
  top: 10%;
  right: 15%;
  background: url("../img/match-connect-cta.svg") no-repeat top center;
  z-index: 0;
}
@media (max-width: 767px) {
  /* line 1305, base/_base.scss */
  .quick-links.template-5::after {
    bottom: 5%;
    top: initial;
    left: 5%;
    right: initial;
  }
}
/* line 1325, base/_base.scss */
.quick-links.template-6::before {
  content: " ";
  width: 300px;
  height: 300px;
  position: absolute;
  top: calc(50% - 150px);
  right: -150px;
  z-index: 0;
  background-color: rgba(162, 170, 255, 0.2);
  border-radius: 150px;
}
@media (max-width: 767px) {
  /* line 1325, base/_base.scss */
  .quick-links.template-6::before {
    top: calc(100% - 100px);
  }
}
/* line 1339, base/_base.scss */
.quick-links.template-6::after {
  content: " ";
  width: 230px;
  max-width: 100%;
  height: 160px;
  max-width: 100%;
  position: absolute;
  top: 10%;
  right: 15%;
  background: url("../img/res-library-cta.svg") no-repeat top center;
  z-index: 0;
}
@media (max-width: 767px) {
  /* line 1339, base/_base.scss */
  .quick-links.template-6::after {
    bottom: 5%;
    top: initial;
    left: 0;
    right: initial;
  }
}
/* line 1359, base/_base.scss */
.quick-links.template-7::before {
  content: " ";
  width: 300px;
  height: 300px;
  position: absolute;
  top: calc(50% - 150px);
  right: -150px;
  z-index: 0;
  background-color: rgba(162, 170, 255, 0.2);
  border-radius: 150px;
}
@media (max-width: 767px) {
  /* line 1359, base/_base.scss */
  .quick-links.template-7::before {
    top: calc(100% - 100px);
  }
}
/* line 1373, base/_base.scss */
.quick-links.template-7::after {
  content: " ";
  width: 230px;
  max-width: 100%;
  height: 160px;
  max-width: 100%;
  position: absolute;
  top: 10%;
  right: 15%;
  background: url("../img/events-cta.svg") no-repeat top center;
  z-index: 0;
}
@media (max-width: 767px) {
  /* line 1373, base/_base.scss */
  .quick-links.template-7::after {
    bottom: 5%;
    top: initial;
  }
}

/* line 1392, base/_base.scss */
.notfound-container {
  margin-top: 20vh;
  text-align: center;
}
/* line 1395, base/_base.scss */
.notfound-container a {
  margin-top: 25px;
}

/* line 1400, base/_base.scss */
.main-description {
  color: #74757d;
  margin-top: 50px;
  text-align: center;
  padding: 0 15%;
}

/* line 1407, base/_base.scss */
#contacts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: rgba(59, 67, 148, 0);
  height: 100vh;
  z-index: 20;
  visibility: hidden;
  -webkit-transition: background-color 250ms ease-in-out;
  transition: background-color 250ms ease-in-out;
}
/* line 1417, base/_base.scss */
#contacts.opened {
  background-color: rgba(59, 67, 148, 0.8);
}
/* line 1419, base/_base.scss */
#contacts.opened .contacts-block__content {
  left: 0;
}
@media (max-width: 959px) {
  /* line 1419, base/_base.scss */
  #contacts.opened .contacts-block__content {
    top: 10vh;
  }
}
/* line 1426, base/_base.scss */
#contacts > .container, #contacts .container > [class*='col-'],
#contacts .contacts-block__content {
  height: inherit;
}
/* line 1431, base/_base.scss */
#contacts .contacts-block__title {
  font-size: 40px;
  line-height: 44px;
  margin-top: 0;
}
@media (max-width: 959px) {
  /* line 1431, base/_base.scss */
  #contacts .contacts-block__title {
    font-size: 30px;
    line-height: 28px;
  }
}
/* line 1440, base/_base.scss */
#contacts .contacts-block__content {
  position: relative;
  padding: 7vh 0;
  left: 50vw;
  -webkit-transition: left 350ms ease-out, top 350ms ease-out;
  transition: left 350ms ease-out, top 350ms ease-out;
}
@media (max-width: 959px) {
  /* line 1440, base/_base.scss */
  #contacts .contacts-block__content {
    top: 100vh;
    left: 0;
    padding: 50px 0 0;
  }
}
/* line 1450, base/_base.scss */
#contacts .contacts-block__content::before {
  content: " ";
  width: 50vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #dcdee6;
  -webkit-box-shadow: 11px 2px 50px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 11px 2px 50px 0 rgba(0, 0, 0, 0.5);
}
@media (max-width: 959px) {
  /* line 1450, base/_base.scss */
  #contacts .contacts-block__content::before {
    width: 115vw;
    left: -15vw;
  }
}
/* line 1464, base/_base.scss */
#contacts .contacts-block__content::after {
  content: " ";
  width: 50vw;
  height: 100vh;
  position: absolute;
  top: 75vh;
  left: 0;
  background-image: url("../img/points.svg");
  background-repeat: no-repeat;
  opacity: .75;
}
@media (max-width: 959px) {
  /* line 1464, base/_base.scss */
  #contacts .contacts-block__content::after {
    width: 100vw;
    top: 70vh;
    left: -30px;
  }
}
/* line 1481, base/_base.scss */
#contacts .mailto {
  font-size: 16px;
  line-height: 20px;
  color: #74757d;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/* line 1487, base/_base.scss */
#contacts .mailto::before {
  content: " ";
  width: 30px;
  height: 2px;
  background-color: #b1b700;
  margin-right: 15px;
}

/* line 1497, base/_base.scss */
.close-modals {
  position: absolute;
  top: 7vh;
  left: -30px;
}
@media (max-width: 959px) {
  /* line 1497, base/_base.scss */
  .close-modals {
    top: -18px;
    left: calc(50% - 18px);
  }
}
/* line 1506, base/_base.scss */
.close-modals:hover .rounded-white-circle {
  background-color: #a2aaff;
}
/* line 1510, base/_base.scss */
.close-modals:hover .icon-close::before, .close-modals:hover .icon-close::after {
  background-color: white;
}
/* line 1516, base/_base.scss */
.close-modals .rounded-white-circle {
  width: 60px;
  height: 60px;
}
@media (max-width: 959px) {
  /* line 1516, base/_base.scss */
  .close-modals .rounded-white-circle {
    width: 36px;
    height: 36px;
  }
}
/* line 1524, base/_base.scss */
.close-modals .icon-close {
  width: 16px;
  height: 16px;
}
@media (max-width: 959px) {
  /* line 1524, base/_base.scss */
  .close-modals .icon-close {
    width: 8px;
    height: 8px;
  }
}
/* line 1531, base/_base.scss */
.close-modals .icon-close::before, .close-modals .icon-close::after {
  height: 16px;
  top: calc(50% - 8px);
}
@media (max-width: 959px) {
  /* line 1531, base/_base.scss */
  .close-modals .icon-close::before, .close-modals .icon-close::after {
    height: 8px;
    top: calc(50% - 4px);
  }
}

/* line 1543, base/_base.scss */
.gray-points-image {
  position: absolute;
  bottom: -30vh;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 1200px;
}
@media (max-width: 767px) {
  /* line 1543, base/_base.scss */
  .gray-points-image {
    bottom: -75px;
    width: 150%;
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* line 1561, base/_base.scss */
.gray-background-color {
  background-color: #dcdee6;
}

/* line 1565, base/_base.scss */
.two-columns {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 130px;
          column-gap: 130px;
}
@media (max-width: 1399px) {
  /* line 1565, base/_base.scss */
  .two-columns {
    -webkit-column-gap: 100px;
            column-gap: 100px;
  }
}
@media (max-width: 959px) {
  /* line 1565, base/_base.scss */
  .two-columns {
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 70px;
            column-gap: 70px;
  }
}
@media (max-width: 767px) {
  /* line 1565, base/_base.scss */
  .two-columns {
    -webkit-column-gap: 0;
            column-gap: 0;
    -webkit-column-count: 1;
            column-count: 1;
  }
}

/* line 1581, base/_base.scss */
.text-gray {
  color: #74757d;
}

/* line 1585, base/_base.scss */
.standard-spacing {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 959px) {
  /* line 1585, base/_base.scss */
  .standard-spacing {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}

/* line 1594, base/_base.scss */
.tab-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 959px) {
  /* line 1594, base/_base.scss */
  .tab-button-container {
    display: none;
  }
}

/* line 1603, base/_base.scss */
.tab-button-link {
  background-color: transparent;
  border-radius: 5px;
  height: 40px;
  padding: 0 20px;
  margin: 0 10px;
  color: #74757d;
  -webkit-transition: background-color 300ms ease-out, color 300ms ease-in-out;
  transition: background-color 300ms ease-out, color 300ms ease-in-out;
}
@media (max-width: 767px) {
  /* line 1603, base/_base.scss */
  .tab-button-link {
    margin: 5px 0;
  }
}
/* line 1614, base/_base.scss */
.tab-button-link:hover {
  color: #b1b700;
}

/* line 1619, base/_base.scss */
.tab-button-link[data-status='visible'] {
  background-color: #b1b700;
  color: #ffffff;
}

/* line 1624, base/_base.scss */
.tab-item {
  display: none !important;
  margin: 30px 0;
}
@media (max-width: 1399px) {
  /* line 1624, base/_base.scss */
  .tab-item {
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  /* line 1624, base/_base.scss */
  .tab-item {
    margin: 10px 0;
  }
}
/* line 1633, base/_base.scss */
.tab-item .default-item {
  margin: 0;
}

/* line 1638, base/_base.scss */
.tab-item[data-status='visible'] {
  display: block !important;
}

/* line 1642, base/_base.scss */
.notfound-image {
  width: 100%;
  position: fixed;
  bottom: -50%;
  z-index: -1;
  left: 0;
}
@media (max-width: 767px) {
  /* line 1642, base/_base.scss */
  .notfound-image {
    bottom: 0;
  }
}

/* line 1653, base/_base.scss */
.general-content__title {
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  font-size: 23px;
  line-height: 28px;
  margin: 0;
}
@media (max-width: 767px) {
  /* line 1653, base/_base.scss */
  .general-content__title {
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 25px;
  }
}

/* line 1666, base/_base.scss */
.general-content .page-title {
  margin: 0 0 30px;
}
/* line 1669, base/_base.scss */
.general-content p {
  color: #74757d;
}
/* line 1672, base/_base.scss */
.general-content a {
  color: #3b4394;
}

/* line 1677, base/_base.scss */
.loader canvas,
.stage-scene canvas {
  position: fixed;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 1688, base/_base.scss */
.stage-labels {
  width: 200px;
  position: fixed;
  top: 45%;
  right: 14vw;
  z-index: 1;
}
@media (max-width: 767px) {
  /* line 1688, base/_base.scss */
  .stage-labels {
    top: initial;
    right: initial;
    bottom: 100px;
    left: 30px;
  }
}

/* line 1702, base/_base.scss */
.tab-button-container-mobile-container {
  display: none;
  width: 100%;
  height: 45px;
  max-width: 200px;
  background-color: #b1b700;
  border-radius: 5px;
  padding: 5px 0;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 959px) {
  /* line 1702, base/_base.scss */
  .tab-button-container-mobile-container {
    display: block;
  }
}
/* line 1715, base/_base.scss */
.tab-button-container-mobile-container .icon-arrow-left2 {
  position: absolute;
  top: calc(50% - 7px);
  right: 13px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  color: #fff;
  font-size: 10px;
  pointer-events: none;
}
/* line 1724, base/_base.scss */
.tab-button-container-mobile-container select {
  background-color: transparent;
  height: 100%;
  width: 100%;
  border: 0;
  padding: 0;
  color: #fff;
  padding: 0 15px;
  font-size: 16px;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
}
/* line 1737, base/_base.scss */
.tab-button-container-mobile-container option {
  color: black;
}

/* line 1742, base/_base.scss */
.world-map-interactive .st41 {
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

/* line 1746, base/_base.scss */
.world-map-interactive:hover .st41 {
  r: 25;
}

/* line 1750, base/_base.scss */
.world-map-interactive:hover .world-map-interactive__label {
  opacity: 1;
}

/* line 1754, base/_base.scss */
.world-map-interactive__label {
  opacity: 0;
  -webkit-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

/* Change autocomplete styles in WebKit */
/* line 2, base/_inputs.scss */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
textarea:focus,
input:focus {
  outline: none !important;
  -webkit-text-fill-color: #74757d !important;
  -webkit-box-shadow: 0 0 0px transparent black inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s, border-color 300ms ease, -webkit-box-shadow 300ms ease;
  transition: background-color 5000s ease-in-out 0s, border-color 300ms ease, -webkit-box-shadow 300ms ease;
  transition: background-color 5000s ease-in-out 0s, border-color 300ms ease, box-shadow 300ms ease;
  transition: background-color 5000s ease-in-out 0s, border-color 300ms ease, box-shadow 300ms ease, -webkit-box-shadow 300ms ease;
}

/* line 20, base/_inputs.scss */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="phone"],
textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  padding-left: 100px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #bfc2cd;
  outline: 0;
  font-size: 13px;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  color: #74757d;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-transition: border-color 250ms ease;
  transition: border-color 250ms ease;
}
/* line 42, base/_inputs.scss */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="phone"]:focus,
textarea:focus {
  border-color: #3b4394;
}
/* line 46, base/_inputs.scss */
input[type="text"]:focus + label,
input[type="email"]:focus + label,
input[type="password"]:focus + label,
input[type="number"]:focus + label,
input[type="phone"]:focus + label,
textarea:focus + label {
  color: #3b4394;
}

/* line 51, base/_inputs.scss */
label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13px;
  line-height: 36px;
  color: #74757d;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  -webkit-transition: color 250ms ease;
  transition: color 250ms ease;
}

/* line 62, base/_inputs.scss */
input[type="number"] {
  -moz-appearance: textfield;
}

/* line 66, base/_inputs.scss */
textarea {
  max-width: 100%;
  min-height: 100px;
  resize: none;
}

/* line 74, base/_inputs.scss */
select {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #666;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 139, base/_inputs.scss */
.newsletter-subscribe-form .form-check-label a {
  color: white;
}

/* line 143, base/_inputs.scss */
.form-check-label a {
  color: #74757d;
  text-decoration: underline;
}

/* line 150, base/_inputs.scss */
input[type="checkbox"] {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  margin-top: 0 !important;
  z-index: 10;
  opacity: 0;
  vertical-align: middle;
  visibility: hidden;
}
/* line 155, base/_inputs.scss */
input[type="checkbox"][disabled] + label.form-check-label, input[type="checkbox"][disabled] + label + label.form-check-label {
  opacity: 0.5;
  cursor: not-allowed;
}
/* line 165, base/_inputs.scss */
input[type="checkbox"]:checked + label.form-check-label:after, input[type="checkbox"]:checked + label + label.form-check-label:after {
  border-color: #b1b700;
}
/* line 172, base/_inputs.scss */
input[type="checkbox"]:focus + label.form-check-label:before, input[type="checkbox"]:focus + label + label.form-check-label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 178, base/_inputs.scss */
input[type="checkbox"] + label.form-check-label,
input[type="checkbox"] + label + label.form-check-label {
  padding-left: 30px;
  position: relative;
  margin-top: -15px;
  font-family: "Pilcrow-regular", Arial, sans-serif;
  font-size: 12px;
  line-height: 15px;
  color: #74757d;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/* line 182, base/_inputs.scss */
input[type="checkbox"] + label.form-check-label:before,
input[type="checkbox"] + label + label.form-check-label:before {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
  border: 1px solid #b1b700;
  background-color: transparent;
}
/* line 186, base/_inputs.scss */
input[type="checkbox"] + label.form-check-label:after,
input[type="checkbox"] + label + label.form-check-label:after {
  content: '';
  width: 13px;
  height: 7px;
  position: absolute;
  top: 1px;
  left: 4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 0 0 0 2px;
  border-bottom: 3px solid transparent;
  border-left: 3px solid transparent;
}

/* line 204, base/_inputs.scss */
input[type="radio"] {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  margin-top: 0 !important;
  z-index: 10;
  opacity: 0;
  vertical-align: middle;
  visibility: hidden;
}
/* line 209, base/_inputs.scss */
input[type="radio"][disabled] + label.form-check-label, input[type="radio"][disabled] + label + label.form-check-label {
  opacity: 0.5;
  cursor: not-allowed;
}
/* line 216, base/_inputs.scss */
input[type="radio"]:checked + label.form-check-label, input[type="radio"]:checked + label + label.form-check-label {
  position: relative;
}
/* line 220, base/_inputs.scss */
input[type="radio"]:checked + label.form-check-label:after, input[type="radio"]:checked + label + label.form-check-label:after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 50%;
  background-color: #d4d944;
}
/* line 235, base/_inputs.scss */
input[type="radio"]:focus + label.form-check-label:before, input[type="radio"]:focus + label + label.form-check-label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 241, base/_inputs.scss */
input[type="radio"] + label.form-check-label,
input[type="radio"] + label + label.form-check-label {
  padding-left: 30px;
  position: relative;
  margin-top: -15px;
  font-family: "Pilcrow-regular", Arial, sans-serif;
  font-size: 12px;
  line-height: 15px;
  color: #74757d;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/* line 245, base/_inputs.scss */
input[type="radio"] + label.form-check-label:before,
input[type="radio"] + label + label.form-check-label:before {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
  border: 1px solid #b1b700;
  background-color: transparent;
  border-radius: 50%;
}

/*the container must be positioned relative:*/
/* line 3, base/select.scss */
.custom-select-option {
  position: relative;
  font-size: 13px;
  /* Let's get this party started */
  /* Track */
  /* Handle */
}
/* line 6, base/select.scss */
.custom-select-option select {
  display: block;
  /*hide original SELECT element:*/
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
}
/* line 16, base/select.scss */
.custom-select-option select.custom-select__mobile {
  z-index: 99 !important;
}
/* line 21, base/select.scss */
.custom-select-option ::-webkit-scrollbar {
  width: 5px;
}
/* line 25, base/select.scss */
.custom-select-option ::-webkit-scrollbar-track {
  background: #dee265;
  margin-bottom: 20px;
}
/* line 30, base/select.scss */
.custom-select-option ::-webkit-scrollbar-thumb {
  background: #3b4394;
}
/* line 33, base/select.scss */
.custom-select-option ::-webkit-scrollbar-thumb:window-inactive {
  background: transparent;
}

/* line 38, base/select.scss */
.select-selected {
  height: 48px;
  padding: 0 14px;
  border-radius: 24px;
  border: 1px solid #fff;
  position: relative;
  background-color: transparent;
  line-height: 48px;
  color: #fff;
  cursor: pointer;
  vertical-align: middle;
  /*style the arrow inside the select element:*/
  /*point the arrow upwards when the select box is open (active):*/
}
/* line 50, base/select.scss */
.select-selected:after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
  color: #ffffff;
  font-family: 'icomoon' !important;
  font-size: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* line 67, base/select.scss */
.select-selected.select-arrow-active {
  border-radius: 24px 24px 0 0;
  background-color: #c1c70e;
  border-bottom: 0;
  color: #3b4394;
}
/* line 72, base/select.scss */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #7c7c7c transparent;
  -webkit-transform: translate(0, -50%) rotate(-90deg);
          transform: translate(0, -50%) rotate(-90deg);
  color: #3b4394;
}

/*style the items (options), including the selected item:*/
/* line 83, base/select.scss */
.select-items div {
  height: 48px;
  padding: 0 14px;
  color: #ffffff;
  line-height: 30px;
  cursor: pointer;
  vertical-align: middle;
}

/*style items (options):*/
/* line 95, base/select.scss */
.select-items {
  max-height: 180px;
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: auto;
  margin-top: -1px;
  border-radius: 0 0 24px 24px;
  border: 1px solid #fff;
  background-color: transparent;
  border-top: 0;
}

/*hide the items when the select box is closed:*/
/* line 113, base/select.scss */
.select-hide {
  display: none;
}

/* line 117, base/select.scss */
.select-items div {
  background-color: #c1c70e;
  color: #fff;
}
/* line 120, base/select.scss */
.select-items div:last-child {
  border-bottom: none;
}
/* line 123, base/select.scss */
.select-items div:hover {
  background-color: #c1c70e;
  color: #3b4394;
}

/* line 1, base/_file.scss */
.custom-file {
  position: relative;
}
/* line 4, base/_file.scss */
.custom-file input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

/* line 13, base/_file.scss */
.custom-file__mask {
  display: block;
  height: 34px;
  padding: 0 10px;
  border-radius: 3px;
  border: 1px solid #ddd;
  background-color: white;
  color: #74757d;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  line-height: 34px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
/* line 27, base/_file.scss */
.custom-file__mask:hover, .custom-file__mask:focus, .custom-file__mask:active {
  background-color: #ddd;
}

/* line 1, base/_forms.scss */
input[type="text"]:disabled,
input[type="number"]:disabled,
input[type="email"]:disabled,
input[type="phone"]:disabled,
input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

/* line 10, base/_forms.scss */
.validate-form {
  position: relative;
}

/* line 14, base/_forms.scss */
.contact-form {
  margin-top: 50px;
  z-index: 5;
}
@media (max-width: 959px) {
  /* line 14, base/_forms.scss */
  .contact-form {
    margin-top: 15px;
  }
}

/* line 23, base/_forms.scss */
.blur-filter {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* line 28, base/_forms.scss */
.form-group {
  position: relative;
  margin-top: 30px;
}
@media (max-width: 959px) {
  /* line 28, base/_forms.scss */
  .form-group {
    margin-top: 15px;
  }
}
@media (max-width: 1399px) {
  /* line 28, base/_forms.scss */
  .form-group {
    margin-top: 25px;
  }
}
/* line 40, base/_forms.scss */
.form-group:after {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}
/* line 48, base/_forms.scss */
.form-group.error input {
  border-color: #740404;
}
/* line 52, base/_forms.scss */
.form-group.error::before {
  content: "!";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #740404;
  position: absolute;
  right: 0;
  top: 11px;
  font-size: 13px;
}
/* line 68, base/_forms.scss */
.form-group .invalid {
  font-size: 13px;
  line-height: 15px;
  color: #740404;
  margin-top: 5px;
}

/* line 76, base/_forms.scss */
.required-text {
  text-align: right;
  font-size: 12px;
  line-height: 15px;
  color: #74757d;
  margin-top: 10px;
}

/* line 84, base/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
}

/* line 89, base/_forms.scss */
label.error {
  margin: 5px 0 0 0;
  color: #740404;
  font-size: 12px;
}
/* line 94, base/_forms.scss */
label.error + label {
  margin-bottom: 20px;
}

/* line 102, base/_forms.scss */
input[type="checkbox"].valid + label.error + label,
input[type="radio"].valid + label.error + label {
  margin-bottom: 0;
}

/* line 112, base/_forms.scss */
input[type="checkbox"] + label.error,
input[type="radio"] + label.error {
  position: absolute;
  bottom: 0;
  left: 25px;
  margin: 0;
  font-size: 12px;
}

/* line 125, base/_forms.scss */
.open-rgpd.loading {
  position: relative;
  color: transparent !important;
}
/* line 129, base/_forms.scss */
.open-rgpd.loading:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #3b4394;
  border-right-color: #3b4394;
  -webkit-animation: linear centeredRotation 0.8s infinite;
          animation: linear centeredRotation 0.8s infinite;
}

/* line 150, base/_forms.scss */
.rgpd {
  display: none;
  width: 100%;
  max-width: 300px;
  padding: 30px;
  position: absolute;
  top: 5%;
  left: calc(50% - 150px);
  -webkit-box-shadow: 0 5px 20px rgba(116, 117, 125, 0.7);
          box-shadow: 0 5px 20px rgba(116, 117, 125, 0.7);
  border-radius: 15px;
  background-color: white;
  color: #74757d;
  font-size: 12px;
  line-height: 20px;
}
@media (max-width: 959px) {
  /* line 150, base/_forms.scss */
  .rgpd {
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* line 171, base/_forms.scss */
.rgpd.rgpd--open {
  display: block;
}
/* line 175, base/_forms.scss */
.rgpd a {
  color: #3b4394;
}
/* line 179, base/_forms.scss */
.rgpd:after {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}
/* line 186, base/_forms.scss */
.rgpd button {
  min-width: 0;
  width: calc(50% - $grid-gutter-width);
  float: left;
}
/* line 191, base/_forms.scss */
.rgpd button:last-child {
  float: right;
}

/* line 197, base/_forms.scss */
.rgpd__title {
  margin-top: 0;
  color: #d4d944;
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
}

/* line 1, base/_warnings.scss */
.warnings {
  font-size: 14px;
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  text-align: center;
}
/* line 10, base/_warnings.scss */
.warnings.visible {
  z-index: 1;
}
@media (max-width: 959px) {
  /* line 1, base/_warnings.scss */
  .warnings {
    font-size: 12px;
  }
}
/* line 22, base/_warnings.scss */
.warnings.warnings--show p {
  display: block !important;
}
/* line 29, base/_warnings.scss */
.warnings p {
  display: none;
}

/* line 34, base/_warnings.scss */
.warnings__error,
.warnings__success {
  width: 100%;
  border-radius: 20px;
  border-top-left-radius: 0;
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3);
  background-color: white;
  color: #3b4394;
  font-size: 13px;
  position: absolute;
  margin: 0;
  max-width: 150px;
  line-height: 15px;
  padding: 15px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
/* line 52, base/_warnings.scss */
.warnings__error::before,
.warnings__success::before {
  font-family: 'icomoon' !important;
  font-size: 15px;
  margin: 0 auto;
  display: block;
  margin-bottom: 10px;
}

/* line 63, base/_warnings.scss */
.warnings__success::before {
  content: "";
  color: #b1b700;
}

/* line 72, base/_warnings.scss */
.warnings__error::before {
  content: "";
  color: #740404;
}

/* line 2, base/_buttons.scss */
.btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* line 15, base/_buttons.scss */
.btn:hover {
  text-decoration: none;
}
/* line 21, base/_buttons.scss */
.btn:focus, .btn:active {
  text-decoration: none;
}

/* line 27, base/_buttons.scss */
.btn-default {
  border: 1px solid #e9e9e9;
  background-color: transparent;
  color: #74757d;
}
/* line 33, base/_buttons.scss */
.btn-default:hover, .btn-default:focus, .btn-default:active {
  border: 1px solid #e9e9e9;
  background-color: #e9e9e9;
  color: #74757d;
}

/* line 44, base/_buttons.scss */
.btn-primary {
  display: inline-block;
  background-color: #d4d944;
  border-radius: 0 20px 20px 20px;
  padding: 10px 20px;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #3b4394;
  -webkit-transition: background-color 250ms ease, color 250ms ease;
  transition: background-color 250ms ease, color 250ms ease;
}
/* line 54, base/_buttons.scss */
.btn-primary:hover {
  background-color: #3b4394;
  color: white;
  text-decoration: none;
}
/* line 59, base/_buttons.scss */
.btn-primary:focus, .btn-primary:active {
  text-decoration: none;
}
/* line 63, base/_buttons.scss */
.btn-primary.white {
  background-color: white;
  color: #3b4394;
}
/* line 66, base/_buttons.scss */
.btn-primary.white:hover {
  background-color: #d4d944;
  color: #3b4394;
}
/* line 71, base/_buttons.scss */
.btn-primary.submit-filters {
  background-color: white;
  color: #3b4394;
}
/* line 74, base/_buttons.scss */
.btn-primary.submit-filters:hover {
  background-color: #3b4394;
  color: white;
}

/* line 81, base/_buttons.scss */
.btn-secondary {
  display: inline-block;
  background-color: #3b4394;
  border-radius: 5px;
  padding: 12px 20px;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: white;
  -webkit-transition: background-color 250ms ease, color 250ms ease;
  transition: background-color 250ms ease, color 250ms ease;
}
/* line 91, base/_buttons.scss */
.btn-secondary:hover {
  background-color: #d4d944;
  color: #3b4394;
  text-decoration: none;
}
/* line 96, base/_buttons.scss */
.btn-secondary:focus, .btn-secondary:active {
  text-decoration: none;
}

/* line 102, base/_buttons.scss */
.btn-success {
  background-color: #95db94;
  color: white;
}
/* line 108, base/_buttons.scss */
.btn-success:hover, .btn-success:focus, .btn-success:active {
  background-color: #3b4394;
  color: white;
}

/* line 119, base/_buttons.scss */
.btn-xs {
  padding: 1px 15px;
  font-size: 10px;
}

/* line 124, base/_buttons.scss */
.btn-sm {
  padding: 5px 20px;
  font-size: 12px;
}

/* line 129, base/_buttons.scss */
.btn-lg {
  padding: 15px 40px;
  font-size: 18px;
}

/* line 134, base/_buttons.scss */
.btn-xl {
  padding: 25px 50px;
  font-size: 24px;
}

/* line 139, base/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 144, base/_buttons.scss */
.rounded-white-circle {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}

/* Barra cookies */
/* line 3, base/_cookies.scss */
.in-modal .cookies-wrapper {
  overflow: auto;
}

/* line 7, base/_cookies.scss */
.cookies-wrapper {
  display: none;
  padding: 20px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
}
/* line 19, base/_cookies.scss */
.cookies-wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/* line 23, base/_cookies.scss */
.cookies-wrapper button {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  /* line 23, base/_cookies.scss */
  .cookies-wrapper button {
    display: block;
    width: 100%;
  }
}

/* line 33, base/_cookies.scss */
.cookies-box {
  max-width: 600px;
  padding: 10px 10px 40px 10px;
  position: relative;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white;
}
@media (min-width: 768px) {
  /* line 33, base/_cookies.scss */
  .cookies-box {
    padding: 20px 20px 40px 20px;
  }
}

/* line 46, base/_cookies.scss */
.cookies__title {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  color: #74757d;
}

/* line 57, base/_cookies.scss */
.cookies-bar-message {
  display: block;
  float: left;
  margin-bottom: 20px;
  color: #74757d;
  font-size: 1em;
  line-height: 20px;
}

@media (min-width: 768px) {
  /* line 66, base/_cookies.scss */
  .cookies-settings-link {
    text-align: right;
  }
}

/* line 72, base/_cookies.scss */
.cookies-settings {
  display: none;
}

@media (min-width: 768px) {
  /* line 76, base/_cookies.scss */
  .cookies-settings-cancel {
    text-align: right;
  }
}

/* line 82, base/_cookies.scss */
.cookie-info {
  display: block;
  padding-left: 25px;
  line-height: 16px;
  color: #74757d;
}

/* line 89, base/_cookies.scss */
.cookies-policy-link {
  padding: 0 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 0 0 4px 4px;
  background-color: #eee;
  text-align: center;
}
@media (min-width: 768px) {
  /* line 89, base/_cookies.scss */
  .cookies-policy-link {
    padding: 0 30px;
  }
}

/* line 104, base/_cookies.scss */
.cookies-bar-know-more {
  color: #9a9a9a;
  font-size: 0.85em;
  line-height: 30px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
/* line 110, base/_cookies.scss */
.cookies-bar-know-more:hover {
  color: white;
}

/* line 115, base/_cookies.scss */
.cookies-message {
  color: #74757d;
}
/* line 118, base/_cookies.scss */
.cookies-message p {
  display: none;
}
/* line 122, base/_cookies.scss */
.cookies-message b {
  display: block;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 959px) {
  /* line 131, base/_cookies.scss */
  .cookies-bar-message {
    height: auto;
  }

  /* line 135, base/_cookies.scss */
  .cookies-bar-know-more {
    padding-left: 0;
  }
}
/* Barra cookies END */
/* line 3, base/_animations.scss */
.animated-stage .animate-1 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-2 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-3 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-4 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-5 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-6 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-7 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-8 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-9 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-10 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-11 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-12 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-13 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-14 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
/* line 3, base/_animations.scss */
.animated-stage .animate-15 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  transition: transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), opacity 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79), -webkit-transform 250ms cubic-bezier(0.15, 0.6, 0.14, 0.79);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

/* line 14, base/_animations.scss */
.animate-it .animate-1 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-2 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-3 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-4 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-5 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-6 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-7 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-8 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-9 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-10 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-11 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-12 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-13 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-14 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 14, base/_animations.scss */
.animate-it .animate-15 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
/* line 20, base/_animations.scss */
.animate-it .match-connect-items__image,
.animate-it .match-connect-items__title {
  opacity: 1;
  top: 0;
}
/* line 26, base/_animations.scss */
.animate-it .curved-line {
  opacity: 1;
}

/*  cloud animation  */
@-webkit-keyframes cloudAnimationLeftToRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes cloudAnimationLeftToRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes cloudAnimationRightToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes cloudAnimationRightToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*  cloud animation end  */
/* line 61, base/_animations.scss */
.clouds {
  animation-direction: reverse;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
/* line 66, base/_animations.scss */
.clouds.left-to-right {
  -webkit-animation-name: cloudAnimationLeftToRight;
          animation-name: cloudAnimationLeftToRight;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}
/* line 71, base/_animations.scss */
.clouds.right-to-left {
  -webkit-animation-name: cloudAnimationRightToLeft;
          animation-name: cloudAnimationRightToLeft;
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
}

/*  animating svg path's  */
@-webkit-keyframes pathAnimations {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes pathAnimations {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/*  consortium circles animation  */
@-webkit-keyframes consortiumCircles {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes consortiumCircles {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* line 103, base/_animations.scss */
.float-circles__item {
  -webkit-animation-name: consortiumCircles;
          animation-name: consortiumCircles;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes centeredRotation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes centeredRotation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* line 1, layout/_loba.scss */
.block-text-homepage {
  position: fixed;
  top: 250px;
  left: 70px;
  z-index: 5;
  width: 100%;
  max-width: 325px;
}
@media (max-width: 959px) {
  /* line 1, layout/_loba.scss */
  .block-text-homepage {
    top: 100px;
    left: 30px;
    max-width: 225px;
  }
}
/* line 15, layout/_loba.scss */
.block-text-homepage .btn-primary {
  margin-top: 15px;
}
@media (max-width: 767px) {
  /* line 15, layout/_loba.scss */
  .block-text-homepage .btn-primary {
    margin-top: 0;
  }
}
/* line 23, layout/_loba.scss */
.block-text-homepage p {
  font-size: 30px;
  line-height: 35px;
}
@media (max-width: 959px) {
  /* line 23, layout/_loba.scss */
  .block-text-homepage p {
    font-size: 19px;
    line-height: 23px;
  }
}
/* line 32, layout/_loba.scss */
.block-text-homepage p strong {
  font-family: "Pilcrow-bold", Arial, sans-serif;
  font-size: 50px;
  line-height: 56px;
  color: #a2aaff;
}
@media (max-width: 959px) {
  /* line 32, layout/_loba.scss */
  .block-text-homepage p strong {
    font-size: 30px;
    line-height: 35px;
  }
}

/* line 47, layout/_loba.scss */
.balls-container__item {
  position: absolute;
  border-radius: 50px;
  top: 0;
  opacity: 1;
  -webkit-transition: top 0.6s cubic-bezier(0, 0.8, 0, 0.98), opacity 0.25s cubic-bezier(0, 0.8, 0, 0.98);
  transition: top 0.6s cubic-bezier(0, 0.8, 0, 0.98), opacity 0.25s cubic-bezier(0, 0.8, 0, 0.98);
}
/* line 54, layout/_loba.scss */
.balls-container__item.animate-it {
  top: 75vh;
  opacity: 0;
}

/* line 60, layout/_loba.scss */
.grecaptcha-badge {
  display: none !important;
}

/* line 64, layout/_loba.scss */
.stage-label {
  pointer-events: none;
}
/* line 66, layout/_loba.scss */
.stage-label a {
  pointer-events: all;
}

/* line 71, layout/_loba.scss */
.canvas-link {
  position: absolute;
  text-align: center;
}
/* line 79, layout/_loba.scss */
.canvas-link:hover .canvas-link__text {
  opacity: 1;
}
/* line 84, layout/_loba.scss */
.canvas-link .canvas-link__circles {
  display: block;
  position: relative;
  width: 66px;
  height: 66px;
  margin: 0 auto;
}
/* line 92, layout/_loba.scss */
.canvas-link .canvas-link__circles .canvas-link__circles-1 {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-animation-name: circleAnimation;
          animation-name: circleAnimation;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
}
/* line 92, layout/_loba.scss */
.canvas-link .canvas-link__circles .canvas-link__circles-2 {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-animation-name: circleAnimation;
          animation-name: circleAnimation;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
/* line 92, layout/_loba.scss */
.canvas-link .canvas-link__circles .canvas-link__circles-3 {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-animation-name: circleAnimation;
          animation-name: circleAnimation;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 450ms;
          animation-delay: 450ms;
}
/* line 101, layout/_loba.scss */
.canvas-link .canvas-link__circles .canvas-link__circles-1 {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: calc(50% - 33px);
  left: calc(50% - 33px);
  opacity: .3;
}
/* line 112, layout/_loba.scss */
.canvas-link .canvas-link__circles .canvas-link__circles-2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  opacity: .5;
}
/* line 123, layout/_loba.scss */
.canvas-link .canvas-link__circles .canvas-link__circles-3 {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
}
/* line 133, layout/_loba.scss */
.canvas-link .canvas-link__circles .canvas-link__circles-4 {
  width: 6px;
  height: 6px;
  background-color: #b1b700;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
}
/* line 147, layout/_loba.scss */
.canvas-link .canvas-link__text {
  display: block;
  background-color: #d4d944;
  border-radius: 10px;
  padding: 5px 10px;
  color: #3b4394;
  font-size: 13px;
  line-height: 14px;
  font-family: "Pilcrow-bold", Arial, sans-serif;
  margin-top: 5px;
  opacity: 0;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

@-webkit-keyframes circleAnimation {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}

@keyframes circleAnimation {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
/* line 1, layout/_nutshell.scss */
.description-text {
  color: #74757d;
  margin-top: 35px;
}
@media (max-width: 767px) {
  /* line 1, layout/_nutshell.scss */
  .description-text {
    margin-top: 25px;
  }
}

/* line 9, layout/_nutshell.scss */
.svg-right-positioned {
  position: relative;
  right: -20vw;
}
@media (max-width: 959px) {
  /* line 9, layout/_nutshell.scss */
  .svg-right-positioned {
    margin-top: 25px;
    right: -28vw;
  }
}
@media (max-width: 767px) {
  /* line 9, layout/_nutshell.scss */
  .svg-right-positioned {
    right: -10vw;
  }
}

/* line 21, layout/_nutshell.scss */
.goal-section {
  overflow: hidden;
  padding: 60px 0 350px;
}
@media (max-width: 959px) {
  /* line 21, layout/_nutshell.scss */
  .goal-section {
    padding: 25px 0 100px;
  }
}

/* line 29, layout/_nutshell.scss */
.goal-section__image {
  position: relative;
}
/* line 31, layout/_nutshell.scss */
.goal-section__image .title-secundary {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
}
@media (max-width: 767px) {
  /* line 31, layout/_nutshell.scss */
  .goal-section__image .title-secundary {
    left: 0;
    text-align: center;
    width: 100%;
    -webkit-transform: none;
            transform: none;
  }
}

/* line 48, layout/_nutshell.scss */
.animated-stage.animate-it .collored-circles {
  opacity: 1;
}

/* line 54, layout/_nutshell.scss */
.container-collored-circles {
  position: absolute;
  height: 100%;
  top: 5vh;
  left: 0;
  width: 100%;
}
/* line 60, layout/_nutshell.scss */
.container-collored-circles .collored-circles {
  border-radius: 50px;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms ease-out, -webkit-transform 250ms ease-out;
}
/* line 65, layout/_nutshell.scss */
.container-collored-circles .collored-circles:nth-child(1) {
  background-color: #d4d944;
  top: 10%;
  left: 20%;
  width: 6px;
  height: 6px;
}
/* line 72, layout/_nutshell.scss */
.container-collored-circles .collored-circles:nth-child(2) {
  background-color: #d4d944;
  top: 80%;
  left: 10%;
  width: 12px;
  height: 12px;
}
/* line 79, layout/_nutshell.scss */
.container-collored-circles .collored-circles:nth-child(3) {
  background-color: #3b4394;
  top: 50%;
  left: 35%;
  width: 6px;
  height: 6px;
}
/* line 86, layout/_nutshell.scss */
.container-collored-circles .collored-circles:nth-child(4) {
  background-color: #d4d944;
  top: 35%;
  left: 60%;
  width: 7px;
  height: 7px;
}
/* line 93, layout/_nutshell.scss */
.container-collored-circles .collored-circles:nth-child(5) {
  background-color: #a2aaff;
  top: 95%;
  left: 50%;
  width: 10px;
  height: 10px;
}
/* line 100, layout/_nutshell.scss */
.container-collored-circles .collored-circles:nth-child(6) {
  background-color: #d4d944;
  top: 85%;
  left: 65%;
  width: 1px;
  height: 1px;
}
/* line 107, layout/_nutshell.scss */
.container-collored-circles .collored-circles:nth-child(7) {
  background-color: #d4d944;
  top: 20%;
  left: 80%;
  width: 6px;
  height: 6px;
}
/* line 114, layout/_nutshell.scss */
.container-collored-circles .collored-circles:nth-child(8) {
  background-color: #3b4394;
  top: 75%;
  left: 90%;
  width: 6px;
  height: 6px;
}

/* line 124, layout/_nutshell.scss */
.items-numbered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  /* line 124, layout/_nutshell.scss */
  .items-numbered {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/* line 133, layout/_nutshell.scss */
.items-numbered.animate-it .path {
  -webkit-animation: pathAnimations 4s linear normal;
          animation: pathAnimations 4s linear normal;
}
/* line 136, layout/_nutshell.scss */
.items-numbered.animate-it .items-numbered__title {
  opacity: 1;
}
/* line 139, layout/_nutshell.scss */
.items-numbered.animate-it .items-numbered__item {
  opacity: 1;
}
/* line 141, layout/_nutshell.scss */
.items-numbered.animate-it .items-numbered__item::after {
  width: 70%;
}
/* line 146, layout/_nutshell.scss */
.items-numbered .items-numbered__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
@media (max-width: 767px) {
  /* line 146, layout/_nutshell.scss */
  .items-numbered .items-numbered__item {
    max-width: 125px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  /* line 159, layout/_nutshell.scss */
  .items-numbered .items-numbered__item:last-of-type {
    margin-bottom: 0;
  }
}
/* line 163, layout/_nutshell.scss */
.items-numbered .items-numbered__item:last-of-type::after {
  display: none;
}
/* line 167, layout/_nutshell.scss */
.items-numbered .items-numbered__item::after {
  content: " ";
  background: url("../img/curved-line.svg") no-repeat;
  position: absolute;
  top: 15px;
  right: -35%;
  width: 0;
  height: 22px;
  -webkit-transition: width .6s ease-out;
  transition: width .6s ease-out;
}
@media (max-width: 767px) {
  /* line 167, layout/_nutshell.scss */
  .items-numbered .items-numbered__item::after {
    display: none;
  }
}
/* line 181, layout/_nutshell.scss */
.items-numbered .items-numbered__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50px;
  font-size: 18px;
  color: #d4d944;
}
@media (max-width: 767px) {
  /* line 181, layout/_nutshell.scss */
  .items-numbered .items-numbered__number {
    display: none;
  }
}
/* line 195, layout/_nutshell.scss */
.items-numbered .items-numbered__title {
  font-size: 13px;
  color: #74757d;
  text-align: center;
  margin-top: 45px;
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}
@media (max-width: 767px) {
  /* line 195, layout/_nutshell.scss */
  .items-numbered .items-numbered__title {
    margin-top: 20px;
  }
}
/* line 207, layout/_nutshell.scss */
.items-numbered .items-numbered__image {
  margin-top: 45px;
}
@media (max-width: 767px) {
  /* line 207, layout/_nutshell.scss */
  .items-numbered .items-numbered__image {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  /* line 212, layout/_nutshell.scss */
  .items-numbered .items-numbered__image #Layer_112341234 {
    width: 85px;
    height: auto;
  }
}
/* line 218, layout/_nutshell.scss */
.items-numbered .items-numbered__image svg {
  width: auto;
  height: 110px;
}
@media (max-width: 959px) {
  /* line 218, layout/_nutshell.scss */
  .items-numbered .items-numbered__image svg {
    height: 80px;
  }
}
@media (max-width: 767px) {
  /* line 218, layout/_nutshell.scss */
  .items-numbered .items-numbered__image svg {
    height: 60px;
  }
}
/* line 228, layout/_nutshell.scss */
.items-numbered .items-numbered__image .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  fill: transparent;
  stroke: #3b4394;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-delay: .25s;
          animation-delay: .25s;
}

/* line 244, layout/_nutshell.scss */
.world-section {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3b4394), color-stop(52%, #1d284b));
  background-image: linear-gradient(to bottom, #3b4394, #1d284b 52%);
  margin-top: -225px;
  padding-bottom: 25vh;
  overflow: hidden;
  -webkit-clip-path: ellipse(80% 100% at 50% 100%);
  clip-path: ellipse(80% 100% at 50% 100%);
}
@media (max-width: 1399px) {
  /* line 244, layout/_nutshell.scss */
  .world-section {
    -webkit-clip-path: ellipse(110% 100% at 50% 100%);
            clip-path: ellipse(110% 100% at 50% 100%);
  }
}
@media (max-width: 959px) {
  /* line 244, layout/_nutshell.scss */
  .world-section {
    padding: 100px 0 150px;
    margin-top: -50px;
    -webkit-clip-path: ellipse(250% 100% at 50% 100%);
            clip-path: ellipse(250% 100% at 50% 100%);
  }
}
/* line 259, layout/_nutshell.scss */
.world-section .title-secundary,
.world-section .description-text {
  color: white;
}
/* line 263, layout/_nutshell.scss */
.world-section .world-map {
  width: 1000px;
  margin-left: 10vw;
  margin-top: -11vh;
}
@media (max-width: 767px) {
  /* line 263, layout/_nutshell.scss */
  .world-section .world-map {
    width: 175vw;
    margin-left: 0;
    margin-top: -150px;
  }
}
/* line 275, layout/_nutshell.scss */
.world-section .world-map-interactive:hover circle {
  fill: red;
}
/* line 280, layout/_nutshell.scss */
.world-section .world-section__cloud1 {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 70px;
}
@media (max-width: 767px) {
  /* line 280, layout/_nutshell.scss */
  .world-section .world-section__cloud1 {
    width: 40px;
    left: 40%;
  }
}
/* line 290, layout/_nutshell.scss */
.world-section .world-section__cloud2 {
  position: absolute;
  top: 40%;
  left: 75%;
  width: 70px;
}
@media (max-width: 767px) {
  /* line 290, layout/_nutshell.scss */
  .world-section .world-section__cloud2 {
    width: 40px;
    left: 65%;
  }
}
/* line 301, layout/_nutshell.scss */
.world-section.animate-it .clouds {
  opacity: 1;
}
/* line 305, layout/_nutshell.scss */
.world-section .clouds {
  opacity: 0;
  -webkit-transition: opacity 500ms ease-out;
  transition: opacity 500ms ease-out;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

/* line 1, layout/_consortium.scss */
.container-consortium {
  margin-top: 150px;
}
@media (max-width: 1399px) {
  /* line 1, layout/_consortium.scss */
  .container-consortium {
    margin: 100px 0 75px;
  }
}

/* line 9, layout/_consortium.scss */
.container-consortium__item,
.default-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px;
  width: 100%;
  position: relative;
  top: 0;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 40px;
  background-color: #eff0f4;
  margin: 30px 0;
  -webkit-box-shadow: 0 15px 25px 0 transparent;
          box-shadow: 0 15px 25px 0 transparent;
  -webkit-transition: background-color 300ms ease-out, top 300ms ease-out, -webkit-box-shadow 300ms ease-out;
  transition: background-color 300ms ease-out, top 300ms ease-out, -webkit-box-shadow 300ms ease-out;
  transition: background-color 300ms ease-out, box-shadow 300ms ease-out, top 300ms ease-out;
  transition: background-color 300ms ease-out, box-shadow 300ms ease-out, top 300ms ease-out, -webkit-box-shadow 300ms ease-out;
}
@media (max-width: 1399px) {
  /* line 9, layout/_consortium.scss */
  .container-consortium__item,
  .default-item {
    min-height: 225px;
    margin: 20px 0;
    border-bottom-right-radius: 30px;
  }
}
@media (max-width: 767px) {
  /* line 9, layout/_consortium.scss */
  .container-consortium__item,
  .default-item {
    margin: 10px 0;
    padding: 40px;
  }
}
/* line 36, layout/_consortium.scss */
.container-consortium__item:hover,
.default-item:hover {
  -webkit-box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.2);
  background-color: #dcdee6;
  top: -30px;
}
@media (max-width: 1399px) {
  /* line 36, layout/_consortium.scss */
  .container-consortium__item:hover,
  .default-item:hover {
    top: -20px;
  }
}
@media (max-width: 959px) {
  /* line 36, layout/_consortium.scss */
  .container-consortium__item:hover,
  .default-item:hover {
    top: 0;
  }
}
/* line 49, layout/_consortium.scss */
.container-consortium__item:hover .container-consortium__item-arrow,
.default-item:hover .container-consortium__item-arrow {
  width: 80px;
  height: 80px;
  background-color: white;
  right: -10px;
  bottom: -10px;
}
@media (max-width: 1399px) {
  /* line 49, layout/_consortium.scss */
  .container-consortium__item:hover .container-consortium__item-arrow,
  .default-item:hover .container-consortium__item-arrow {
    width: 70px;
    height: 70px;
  }
}
/* line 61, layout/_consortium.scss */
.container-consortium__item:hover .container-consortium__item-arrow span,
.default-item:hover .container-consortium__item-arrow span {
  color: #3b4394;
}
/* line 67, layout/_consortium.scss */
.container-consortium__item img,
.default-item img {
  -webkit-filter: invert(40%);
  filter: invert(40%);
}
/* line 72, layout/_consortium.scss */
.container-consortium__item .container-consortium__item-arrow,
.default-item .container-consortium__item-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #a2aaff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 200ms ease-out, width 200ms ease-out, height 200ms ease-out, bottom 200ms ease-out, right 200ms ease-out;
  transition: background-color 200ms ease-out, width 200ms ease-out, height 200ms ease-out, bottom 200ms ease-out, right 200ms ease-out;
}
@media (max-width: 1399px) {
  /* line 72, layout/_consortium.scss */
  .container-consortium__item .container-consortium__item-arrow,
  .default-item .container-consortium__item-arrow {
    width: 50px;
    height: 50px;
  }
}

/* line 92, layout/_consortium.scss */
.container-consortium__item {
  min-height: 225px;
}

/* line 96, layout/_consortium.scss */
.consortium-animated-logos {
  position: relative;
}
/* line 101, layout/_consortium.scss */
.consortium-animated-logos.animate-it .circle-2,
.consortium-animated-logos.animate-it .circle-3,
.consortium-animated-logos.animate-it .circle-4,
.consortium-animated-logos.animate-it .clouds,
.consortium-animated-logos.animate-it .float-circles__item {
  opacity: 1;
}
/* line 110, layout/_consortium.scss */
.consortium-animated-logos.animate-it .circle-2,
.consortium-animated-logos.animate-it .circle-3,
.consortium-animated-logos.animate-it .circle-4 {
  -webkit-transform: scale(1);
          transform: scale(1);
}
/* line 117, layout/_consortium.scss */
.consortium-animated-logos .circle-2,
.consortium-animated-logos .circle-3,
.consortium-animated-logos .circle-4 {
  position: absolute;
  border-radius: 100%;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  transition: opacity 250ms ease-out, transform 250ms ease-out;
  transition: opacity 250ms ease-out, transform 250ms ease-out, -webkit-transform 250ms ease-out;
}
/* line 126, layout/_consortium.scss */
.consortium-animated-logos .consortium-animated__illustration {
  position: relative;
  width: 80px;
  height: 80px;
  z-index: 6;
}
@media (max-width: 959px) {
  /* line 126, layout/_consortium.scss */
  .consortium-animated-logos .consortium-animated__illustration {
    width: 60px;
    height: 60px;
  }
}
/* line 138, layout/_consortium.scss */
.consortium-animated-logos .circle-1 {
  position: absolute;
  border-radius: 100%;
  width: calc(100% - 400px);
  height: calc(100% - 400px);
  top: 200px;
  left: 200px;
  background-color: #223162;
  z-index: 5;
}
@media (max-width: 959px) {
  /* line 138, layout/_consortium.scss */
  .consortium-animated-logos .circle-1 {
    width: 120px;
    height: 120px;
    top: 100px;
    left: 100px;
  }
}
/* line 156, layout/_consortium.scss */
.consortium-animated-logos .circle-2 {
  width: calc(100% - 330px);
  height: calc(100% - 330px);
  top: 165px;
  left: 165px;
  background-color: rgba(59, 67, 148, 0.1);
  z-index: 4;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
@media (max-width: 959px) {
  /* line 156, layout/_consortium.scss */
  .consortium-animated-logos .circle-2 {
    width: 180px;
    height: 180px;
    top: 70px;
    left: 70px;
  }
}
/* line 174, layout/_consortium.scss */
.consortium-animated-logos .circle-3 {
  width: calc(100% - 200px);
  height: calc(100% - 200px);
  top: 100px;
  left: 100px;
  background-color: rgba(59, 67, 148, 0.05);
  z-index: 3;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
@media (max-width: 959px) {
  /* line 174, layout/_consortium.scss */
  .consortium-animated-logos .circle-3 {
    width: 260px;
    height: 260px;
    top: 30px;
    left: 30px;
  }
}
/* line 192, layout/_consortium.scss */
.consortium-animated-logos .circle-4 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(59, 67, 148, 0.02);
  z-index: 2;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
@media (max-width: 959px) {
  /* line 192, layout/_consortium.scss */
  .consortium-animated-logos .circle-4 {
    width: 420px;
    height: 420px;
    top: -50px;
    left: -50px;
  }
}
/* line 210, layout/_consortium.scss */
.consortium-animated-logos .consortium-animated__main-logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 560px;
  height: 560px;
  margin: 0 auto;
}
@media (max-width: 959px) {
  /* line 210, layout/_consortium.scss */
  .consortium-animated-logos .consortium-animated__main-logo {
    width: 320px;
    height: 320px;
    left: -10px;
  }
}
/* line 226, layout/_consortium.scss */
.consortium-animated-logos .clouds {
  width: 120px;
  height: auto;
  position: absolute;
  top: 55%;
  right: 25%;
  opacity: 0;
  z-index: 7;
  -webkit-transition: opacity 500ms ease-out .4s;
  transition: opacity 500ms ease-out .4s;
}
@media (max-width: 959px) {
  /* line 226, layout/_consortium.scss */
  .consortium-animated-logos .clouds {
    width: 80px;
  }
}
@media (max-width: 767px) {
  /* line 226, layout/_consortium.scss */
  .consortium-animated-logos .clouds {
    display: none;
  }
}

/* line 246, layout/_consortium.scss */
.float-circles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* line 253, layout/_consortium.scss */
.float-circles .float-circles__item {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 500ms ease .4s;
  transition: opacity 500ms ease .4s;
}
@media (max-width: 959px) {
  /* line 253, layout/_consortium.scss */
  .float-circles .float-circles__item {
    width: 30px;
    height: 30px;
    padding: 7px;
  }
}
/* line 271, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(1) {
  left: 12%;
  top: -10%;
}
/* line 276, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(2) {
  left: 5%;
  top: 40%;
}
/* line 281, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(3) {
  left: 10%;
  top: 90%;
}
/* line 286, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(4) {
  left: 33%;
  top: 31%;
}
/* line 291, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(5) {
  left: 20%;
  top: 60%;
}
/* line 296, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(6) {
  left: 35%;
  top: 100%;
}
/* line 301, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(7) {
  left: 45%;
  top: 3%;
}
/* line 306, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(8) {
  left: 50%;
  top: 92%;
}
/* line 311, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(9) {
  left: 64%;
  top: 17%;
}
/* line 316, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(10) {
  left: 67%;
  top: 96%;
}
/* line 321, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(11) {
  left: 78%;
  top: -9%;
}
/* line 326, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(12) {
  left: 78%;
  top: 50%;
}
/* line 331, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(13) {
  left: 89%;
  top: 26%;
}
/* line 336, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(14) {
  left: 93%;
  top: 85%;
}
/* line 341, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(15) {
  left: 95%;
  top: -2%;
}
/* line 346, layout/_consortium.scss */
.float-circles .float-circles__item:nth-child(16) {
  left: 28%;
  top: -6%;
}

/* line 354, layout/_consortium.scss */
.consortium-position {
  color: #a2aaff;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  margin-bottom: 20px;
}

/* line 361, layout/_consortium.scss */
.modal-content p {
  font-size: 13px;
  line-height: 22px;
}
/* line 366, layout/_consortium.scss */
.modal-content .consortium-short-description {
  margin-bottom: 30px;
}
@media (max-width: 959px) {
  /* line 366, layout/_consortium.scss */
  .modal-content .consortium-short-description {
    margin-top: 40px;
  }
}
/* line 373, layout/_consortium.scss */
.modal-content .consortium-short-description p {
  font-size: 16px;
  line-height: 24px;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
}
@media (max-width: 959px) {
  /* line 373, layout/_consortium.scss */
  .modal-content .consortium-short-description p {
    font-size: 16px;
  }
}

/* line 385, layout/_consortium.scss */
.consortium-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 550px;
  text-align: center;
  padding: 40px 0;
  overflow: hidden;
}
@media (max-width: 959px) {
  /* line 385, layout/_consortium.scss */
  .consortium-logo {
    padding: 30px 0;
    border-radius: 100px;
    width: 85%;
  }
}
/* line 402, layout/_consortium.scss */
.consortium-logo::before {
  content: " ";
  width: 100%;
  padding-bottom: 100%;
  border-radius: 100%;
  background-color: #a2aaff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .3;
}
/* line 414, layout/_consortium.scss */
.consortium-logo img {
  position: relative;
}
@media (max-width: 959px) {
  /* line 414, layout/_consortium.scss */
  .consortium-logo img {
    max-width: 90px;
  }
}

/* line 1, layout/_public-results.scss */
.public-results-svg {
  max-height: 700px;
}

/* line 5, layout/_public-results.scss */
.default-item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 375px;
  text-align: left;
}
@media (max-width: 1399px) {
  /* line 5, layout/_public-results.scss */
  .default-item {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  /* line 5, layout/_public-results.scss */
  .default-item {
    border-top-left-radius: 70px;
    min-height: initial;
  }
}
/* line 21, layout/_public-results.scss */
.default-item .default-item_button {
  margin-top: 40px;
}
/* line 25, layout/_public-results.scss */
.default-item .top-content {
  width: 100%;
}

/* line 30, layout/_public-results.scss */
.default-item__container-date,
.share-this {
  width: 100%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 38, layout/_public-results.scss */
.default-item__date {
  font-size: 14px;
  color: #74757d;
}

/* line 43, layout/_public-results.scss */
.default-item__separator,
.share-this__separator {
  width: 100%;
  height: 1px;
  background-color: #b1b700;
  margin: 0 10px;
}

/* line 51, layout/_public-results.scss */
.default-item__category {
  font-size: 15px;
  color: #74757d;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* line 58, layout/_public-results.scss */
.default-item__title {
  font-size: 23px;
  line-height: 30px;
  color: #3b4394;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
}
@media (max-width: 767px) {
  /* line 58, layout/_public-results.scss */
  .default-item__title {
    font-size: 19px;
    line-height: 26px;
  }
}

/* line 1, layout/_detail-pages.scss */
.detail-page {
  padding-bottom: 150px;
}
@media (max-width: 959px) {
  /* line 1, layout/_detail-pages.scss */
  .detail-page {
    padding: 175px 0 75px;
  }
}
/* line 8, layout/_detail-pages.scss */
.detail-page .pre-title {
  font-size: 23px;
  text-align: left;
}
@media (max-width: 767px) {
  /* line 8, layout/_detail-pages.scss */
  .detail-page .pre-title {
    font-size: 16px;
  }
}
/* line 17, layout/_detail-pages.scss */
.detail-page .title-secundary {
  text-align: left;
}
/* line 21, layout/_detail-pages.scss */
.detail-page .title-description {
  font-size: 23px;
  line-height: 30px;
  color: #74757d;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  margin-top: 15px;
}
@media (max-width: 767px) {
  /* line 21, layout/_detail-pages.scss */
  .detail-page .title-description {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0;
  }
}
/* line 35, layout/_detail-pages.scss */
.detail-page img {
  margin-bottom: 50px;
}
/* line 39, layout/_detail-pages.scss */
.detail-page p {
  color: #74757d;
  margin-bottom: 25px;
}
/* line 44, layout/_detail-pages.scss */
.detail-page a:not(.btn-primary) {
  color: #d4d944;
}
/* line 48, layout/_detail-pages.scss */
.detail-page .default-item__container-date {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
/* line 53, layout/_detail-pages.scss */
.detail-page .default-item__date {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: right;
}
/* line 58, layout/_detail-pages.scss */
.detail-page .default-item__separator {
  width: 70px;
}
/* line 62, layout/_detail-pages.scss */
.detail-page ul,
.detail-page ol {
  line-height: 26px;
}
/* line 67, layout/_detail-pages.scss */
.detail-page ol {
  counter-reset: item;
}
/* line 71, layout/_detail-pages.scss */
.detail-page li {
  color: #74757d;
  text-indent: 10px;
  position: relative;
}
/* line 77, layout/_detail-pages.scss */
.detail-page ol li {
  counter-increment: item;
  text-indent: 0;
}
/* line 81, layout/_detail-pages.scss */
.detail-page ol li::before {
  content: counters(item,".") ". ";
  color: #d4d944;
  font-size: 16px;
  line-height: 26px;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
}
/* line 93, layout/_detail-pages.scss */
.detail-page ul li::before {
  content: " ";
  width: 4px;
  height: 4px;
  background-color: #d4d944;
  border-radius: 25px;
  position: absolute;
  top: 8px;
  left: 0;
}

/* line 107, layout/_detail-pages.scss */
.share-this__title {
  font-size: 23px;
  line-height: 29px;
  color: #3b4394;
  min-width: 20%;
}
@media (max-width: 767px) {
  /* line 107, layout/_detail-pages.scss */
  .share-this__title {
    font-size: 19px;
    line-height: 23px;
    min-width: 35%;
  }
}

/* line 120, layout/_detail-pages.scss */
.share-this {
  margin-bottom: 0;
}

/* line 124, layout/_detail-pages.scss */
.share-this__links {
  position: initial;
  top: initial;
  right: initial;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-transform: none;
          transform: none;
}
/* line 131, layout/_detail-pages.scss */
.share-this__links a {
  margin: 0 10px;
}
@media (max-width: 767px) {
  /* line 134, layout/_detail-pages.scss */
  .share-this__links a:last-of-type {
    margin-right: 0;
  }
}
/* line 140, layout/_detail-pages.scss */
.share-this__links a span {
  color: #3b4394;
}
/* line 145, layout/_detail-pages.scss */
.share-this__links a:hover span {
  color: #a2aaff;
}

/* line 153, layout/_detail-pages.scss */
.carousel-items {
  background-color: #3b4394;
  padding: 75px 0 200px;
  overflow: hidden;
}
@media (max-width: 767px) {
  /* line 153, layout/_detail-pages.scss */
  .carousel-items {
    padding: 50px 0 150px;
  }
}
/* line 162, layout/_detail-pages.scss */
.carousel-items .default-item {
  margin: 0;
  height: 100%;
}
/* line 167, layout/_detail-pages.scss */
.carousel-items .owl-stage-outer {
  overflow: visible;
}
/* line 171, layout/_detail-pages.scss */
.carousel-items .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* line 176, layout/_detail-pages.scss */
.carousel-items .item {
  width: 100%;
}
/* line 180, layout/_detail-pages.scss */
.carousel-items .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  opacity: .5;
  -webkit-transition: opacity 350ms ease-out;
  transition: opacity 350ms ease-out;
}
/* line 186, layout/_detail-pages.scss */
.carousel-items .owl-item.active {
  opacity: 1;
}

/* line 197, layout/_detail-pages.scss */
.owl-carousel:active,
.owl-carousel a:active {
  cursor: url("../img/cursor-image.png"), auto;
}

/* line 202, layout/_detail-pages.scss */
.carousel-items__title {
  font-size: 23px;
  line-height: 29px;
  text-align: center;
  color: white;
  margin: 0 0 75px;
}
@media (max-width: 767px) {
  /* line 202, layout/_detail-pages.scss */
  .carousel-items__title {
    font-size: 19px;
    line-height: 23px;
    margin: 0 0 40px;
  }
}

/* line 217, layout/_detail-pages.scss */
.back-button {
  position: absolute;
  top: 170px;
  left: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1399px) {
  /* line 217, layout/_detail-pages.scss */
  .back-button {
    left: 40px;
  }
}
@media (max-width: 959px) {
  /* line 217, layout/_detail-pages.scss */
  .back-button {
    top: 100px;
    left: 30px;
  }
}
/* line 234, layout/_detail-pages.scss */
.back-button:hover .rounded-white-circle {
  background-color: #a2aaff;
}
/* line 237, layout/_detail-pages.scss */
.back-button:hover .rounded-white-circle span {
  color: white;
}
/* line 243, layout/_detail-pages.scss */
.back-button .label {
  margin-left: 10px;
  font-size: 13px;
  color: #3b4394;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
}

/* line 4, layout/_events-list.scss */
.events-list .items-numbered__item::after {
  display: none;
}

/* line 12, layout/_events-list.scss */
.default-item.events {
  min-height: 515px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  /* line 12, layout/_events-list.scss */
  .default-item.events {
    padding-bottom: 60px;
    min-height: initial;
  }
}
/* line 21, layout/_events-list.scss */
.default-item.events .items-numbered__image {
  margin-top: 0;
}
/* line 25, layout/_events-list.scss */
.default-item.events .default-item__container-date {
  margin-bottom: 0;
}
/* line 29, layout/_events-list.scss */
.default-item.events .default-item__separator {
  margin-right: 0;
}
/* line 33, layout/_events-list.scss */
.default-item.events .default-item__category {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  /* line 33, layout/_events-list.scss */
  .default-item.events .default-item__category {
    margin-bottom: 20px;
  }
}
/* line 41, layout/_events-list.scss */
.default-item.events img {
  -webkit-filter: none;
          filter: none;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  /* line 41, layout/_events-list.scss */
  .default-item.events img {
    margin-bottom: 20px;
  }
}

/* line 52, layout/_events-list.scss */
.interested-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 58, layout/_events-list.scss */
.interested-block__title {
  font-size: 23px;
  line-height: 29px;
  color: #3b4394;
  margin-top: 15px;
}

/* line 65, layout/_events-list.scss */
.interested-block__separator {
  width: 1px;
  height: 50px;
  background-color: #b1b700;
}

/* line 71, layout/_events-list.scss */
.interested-block__content {
  color: #74757d;
  margin-top: 15px;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
}
/* line 76, layout/_events-list.scss */
.interested-block__content a {
  font-family: "Pilcrow-regular", Arial, sans-serif;
  color: #74757d;
}

/* line 1, layout/_match-connect.scss */
.match-connect-items__image {
  height: 160px;
  opacity: 0;
  top: -150px;
  position: relative;
  -webkit-transition: top 300ms ease-out, opacity 300ms ease-out;
  transition: top 300ms ease-out, opacity 300ms ease-out;
}
@media (max-width: 959px) {
  /* line 1, layout/_match-connect.scss */
  .match-connect-items__image {
    height: 80px;
  }
}
/* line 12, layout/_match-connect.scss */
.match-connect-items__image img {
  max-width: 150px;
}
@media (max-width: 959px) {
  /* line 12, layout/_match-connect.scss */
  .match-connect-items__image img {
    max-width: 90px;
  }
}

/* line 21, layout/_match-connect.scss */
.match-connect-items__title {
  margin-top: 60px;
  opacity: 0;
  top: -75px;
  position: relative;
  -webkit-transition: top 300ms ease-out, opacity 300ms ease-out;
  transition: top 300ms ease-out, opacity 300ms ease-out;
}
@media (max-width: 959px) {
  /* line 21, layout/_match-connect.scss */
  .match-connect-items__title {
    font-size: 14px;
    margin-top: 50px;
  }
}

/* line 34, layout/_match-connect.scss */
.curved-line {
  display: block;
  background: url("../img/curved-line.svg") no-repeat;
  width: 200px;
  height: 22px;
  margin-top: 75px;
  opacity: 0;
  -webkit-transition: opacity .6s ease-out;
  transition: opacity .6s ease-out;
}

@media (max-width: 959px) {
  /* line 45, layout/_match-connect.scss */
  .match-connect-items .curved-line {
    display: none;
  }
}

/* line 1, layout/_newsletters.scss */
.newsletter-subscribe-form {
  border-radius: 7px;
  -webkit-box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.1);
  background: #949900;
  background: linear-gradient(253deg, #d9dc00 0, #949900 100%);
  padding: 60px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  /* line 1, layout/_newsletters.scss */
  .newsletter-subscribe-form {
    padding: 35px 0;
  }
}
/* line 13, layout/_newsletters.scss */
.newsletter-subscribe-form .form-group {
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 959px) {
  /* line 16, layout/_newsletters.scss */
  .newsletter-subscribe-form .form-group.text-right {
    text-align: left;
    margin-bottom: 0;
  }
}
/* line 23, layout/_newsletters.scss */
.newsletter-subscribe-form input {
  border-bottom: 1px solid white;
}
/* line 26, layout/_newsletters.scss */
.newsletter-subscribe-form .required-text {
  margin-top: -25px;
  margin-bottom: 20px;
}
/* line 30, layout/_newsletters.scss */
.newsletter-subscribe-form label {
  color: white;
}
/* line 33, layout/_newsletters.scss */
.newsletter-subscribe-form input[type="checkbox"] + label.form-check-label,
.newsletter-subscribe-form input[type="checkbox"] + label + label.form-check-label,
.newsletter-subscribe-form input:-webkit-autofill,
.newsletter-subscribe-form input:-webkit-autofill:hover,
.newsletter-subscribe-form input:-webkit-autofill:focus,
.newsletter-subscribe-form textarea:-webkit-autofill,
.newsletter-subscribe-form textarea:-webkit-autofill:hover,
.newsletter-subscribe-form textarea:-webkit-autofill:focus,
.newsletter-subscribe-form select:-webkit-autofill,
.newsletter-subscribe-form select:-webkit-autofill:hover,
.newsletter-subscribe-form select:-webkit-autofill:focus,
.newsletter-subscribe-form textarea:focus,
.newsletter-subscribe-form input:focus,
.newsletter-subscribe-form input:active,
.newsletter-subscribe-form input::-webkit-input-placeholder,
.newsletter-subscribe-form input {
  color: white !important;
  -webkit-text-fill-color: white !important;
}
/* line 52, layout/_newsletters.scss */
.newsletter-subscribe-form input[type="checkbox"] + label.form-check-label:before,
.newsletter-subscribe-form input[type="checkbox"] + label + label.form-check-label:before,
.newsletter-subscribe-form input[type="checkbox"]:checked + label.form-check-label:after,
.newsletter-subscribe-form input[type="checkbox"]:checked + label + label.form-check-label:after {
  border-color: white;
}

/* line 60, layout/_newsletters.scss */
.newsletter-subscribe-block__title {
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  font-size: 23px;
  color: white;
  margin: 0;
}
@media (max-width: 767px) {
  /* line 60, layout/_newsletters.scss */
  .newsletter-subscribe-block__title {
    margin-bottom: 20px;
  }
}

/* line 70, layout/_newsletters.scss */
.newsletter-subscribe-block__image {
  position: absolute;
  bottom: -35%;
  left: 50%;
  width: 100%;
  max-width: 600px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 959px) {
  /* line 70, layout/_newsletters.scss */
  .newsletter-subscribe-block__image {
    bottom: -25px;
  }
}

/* line 2, layout/_tenders.scss */
.tenders-search {
  padding: 100px 0;
}
@media (max-width: 767px) {
  /* line 2, layout/_tenders.scss */
  .tenders-search {
    padding: 50px 20px;
  }
}
/* line 7, layout/_tenders.scss */
.tenders-search .row {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  /* line 7, layout/_tenders.scss */
  .tenders-search .row {
    margin-bottom: 40px;
  }
}
/* line 12, layout/_tenders.scss */
.tenders-search .row:last-of-type {
  margin-bottom: 0;
}
/* line 15, layout/_tenders.scss */
.tenders-search .row-range {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  /* line 15, layout/_tenders.scss */
  .tenders-search .row-range {
    margin-bottom: 0;
  }
}
/* line 22, layout/_tenders.scss */
.tenders-search .search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  /* line 22, layout/_tenders.scss */
  .tenders-search .search-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* line 29, layout/_tenders.scss */
.tenders-search .newsletter-subscribe-block__title {
  font-family: "Pilcrow-regular", Arial, sans-serif;
}
@media (max-width: 767px) {
  /* line 29, layout/_tenders.scss */
  .tenders-search .newsletter-subscribe-block__title {
    text-align: center;
  }
}
/* line 35, layout/_tenders.scss */
.tenders-search .icon-search {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
/* line 42, layout/_tenders.scss */
.tenders-search .search_input {
  position: relative;
  width: 100%;
  height: 48px;
  padding: 6px 20px;
  -webkit-box-shadow: 0 12px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 8px 0 rgba(0, 0, 0, 0.1);
  -webkit-appearance: none;
  border-radius: 24px;
  font-size: 15px;
  line-height: 46px;
  background-color: #b1b700;
  border-bottom: none;
  padding-left: 50px;
  font-family: "Pilcrow-regular", Arial, sans-serif;
  -webkit-transition: -webkit-box-shadow 250ms ease;
  transition: -webkit-box-shadow 250ms ease;
  transition: box-shadow 250ms ease;
  transition: box-shadow 250ms ease, -webkit-box-shadow 250ms ease;
}
/* line 61, layout/_tenders.scss */
.tenders-search .search_input:focus {
  border: 1px solid #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}
/* line 67, layout/_tenders.scss */
.tenders-search .form-group {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  /* line 67, layout/_tenders.scss */
  .tenders-search .form-group {
    margin-bottom: 15px;
  }
}
/* line 72, layout/_tenders.scss */
.tenders-search .form-group .custom-select-option {
  font-size: 14px;
}
/* line 76, layout/_tenders.scss */
.tenders-search .checkbox label {
  font-size: 14px;
  color: white !important;
}

/* line 83, layout/_tenders.scss */
.search-container__bottom-checkbox input[type="checkbox"] {
  display: none;
}
/* line 85, layout/_tenders.scss */
.search-container__bottom-checkbox input[type="checkbox"] + label {
  margin-top: 0;
}

/* line 91, layout/_tenders.scss */
.range-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  /* line 91, layout/_tenders.scss */
  .range-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* line 97, layout/_tenders.scss */
.range-container .range-name {
  font-size: 14px;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
}
/* line 101, layout/_tenders.scss */
.range-container .range {
  padding-top: 40px;
}
@media (max-width: 767px) {
  /* line 101, layout/_tenders.scss */
  .range-container .range {
    padding-top: 20px;
    height: 40px;
  }
}
/* line 108, layout/_tenders.scss */
.range-container .amount-range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  /* line 108, layout/_tenders.scss */
  .range-container .amount-range {
    padding-bottom: 20px;
  }
}
/* line 115, layout/_tenders.scss */
.range-container .amount-range input[type="text"] {
  font-size: 14px;
}

@media (max-width: 767px) {
  /* line 121, layout/_tenders.scss */
  .order-1-mobile {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 767px) {
  /* line 127, layout/_tenders.scss */
  .order-2-mobile {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 767px) {
  /* line 133, layout/_tenders.scss */
  .order-3-mobile {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

/* line 139, layout/_tenders.scss */
#amount1,
#amount2 {
  color: #223162 !important;
  -webkit-text-fill-color: #223162 !important;
  font-family: "Pilcrow-regular", Arial, sans-serif;
  cursor: pointer;
}

/* line 148, layout/_tenders.scss */
.flat-slider.ui-corner-all,
.flat-slider .ui-corner-all {
  border-radius: 0;
}

/* line 153, layout/_tenders.scss */
.flat-slider.ui-slider {
  border: 0;
  background: #ffffff;
  border-radius: 1px;
}

/* line 159, layout/_tenders.scss */
.flat-slider.ui-slider-horizontal {
  height: 1px;
}

/* line 163, layout/_tenders.scss */
.flat-slider.ui-slider-vertical {
  height: 15em;
  width: 1px;
}

/* line 168, layout/_tenders.scss */
.flat-slider .ui-slider-handle {
  width: 11px;
  height: 11px;
  background: #3e6336;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

/* line 177, layout/_tenders.scss */
.flat-slider.ui-widget.ui-widget-content {
  border: none;
  position: relative;
}
/* line 180, layout/_tenders.scss */
.flat-slider.ui-widget.ui-widget-content:after {
  content: "";
  height: 20px;
  width: 100%;
  position: absolute;
  cursor: pointer;
}
/* line 187, layout/_tenders.scss */
.flat-slider.ui-widget.ui-widget-content:before {
  content: "";
  height: 20px;
  width: 100%;
  position: absolute;
  top: -20px;
  cursor: pointer;
}

/* line 197, layout/_tenders.scss */
.flat-slider.ui-slider-horizontal .ui-slider-handle {
  top: 50%;
  margin-top: -5.5px;
  border: 2px solid #3b4394;
  background: #d4d944;
  width: 12px;
  height: 12px;
}

/* line 206, layout/_tenders.scss */
.flat-slider.ui-slider-vertical .ui-slider-handle {
  left: 50%;
  margin-left: -5.5px;
}

/* line 211, layout/_tenders.scss */
.flat-slider .ui-slider-handle:hover {
  opacity: .8;
}

/* line 215, layout/_tenders.scss */
.flat-slider .ui-slider-range {
  border: 0;
  border-radius: 1;
  background: #223162;
}

/* line 221, layout/_tenders.scss */
.flat-slider.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 1px;
}

/* line 226, layout/_tenders.scss */
.flat-slider.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 1px;
}

/* line 232, layout/_tenders.scss */
.buttons-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
/* line 236, layout/_tenders.scss */
.buttons-filters .trash-icon {
  margin-right: 30px;
}
/* line 239, layout/_tenders.scss */
.buttons-filters .trash-icon:hover svg {
  fill: #3b4394;
}
/* line 241, layout/_tenders.scss */
.buttons-filters .trash-icon:hover svg * {
  fill: #3b4394;
}
/* line 245, layout/_tenders.scss */
.buttons-filters .trash-icon:hover span {
  color: #3b4394;
}
/* line 249, layout/_tenders.scss */
.buttons-filters .trash-icon svg {
  margin-right: 10px;
  vertical-align: middle;
  width: 13px;
  height: 14px;
  fill: #fff;
}
/* line 255, layout/_tenders.scss */
.buttons-filters .trash-icon svg * {
  fill: #fff;
  -webkit-transition: fill 250ms ease;
  transition: fill 250ms ease;
}
/* line 260, layout/_tenders.scss */
.buttons-filters .trash-icon span {
  font-size: 14px;
  color: #fff;
  font-family: "Pilcrow-regular", Arial, sans-serif;
  -webkit-transition: color 250ms ease;
  transition: color 250ms ease;
}

/* line 269, layout/_tenders.scss */
.tenders-results {
  border-top: solid 1px rgba(162, 170, 255, 0.5);
  font-size: 14px;
}
/* line 272, layout/_tenders.scss */
.tenders-results .head-results {
  margin-top: 15px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
}
/* line 278, layout/_tenders.scss */
.tenders-results .head-results-details {
  color: #0c0c13;
}
/* line 282, layout/_tenders.scss */
.tenders-results .body-results {
  border-radius: 7px;
  background-color: rgba(162, 170, 255, 0.3);
  padding-top: 25px;
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  text-align: left;
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
  line-height: 18px;
  cursor: pointer;
}
@media (min-width: 768px) {
  /* line 295, layout/_tenders.scss */
  .tenders-results .body-results:hover {
    background-color: #b1b700;
  }
}
/* line 299, layout/_tenders.scss */
.tenders-results .body-results-details {
  color: #74757d;
  font-family: "Pilcrow-regular", Arial, sans-serif;
}
/* line 304, layout/_tenders.scss */
.tenders-results .more-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}
/* line 310, layout/_tenders.scss */
.tenders-results .more-results .tenders-arrow {
  width: 36px;
  height: 36px;
  background-color: #a2aaff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}
/* line 319, layout/_tenders.scss */
.tenders-results .more-results .tenders-arrow:hover {
  background-color: #d4d944;
}
/* line 322, layout/_tenders.scss */
.tenders-results .more-results .tenders-arrow-left {
  position: relative;
  margin-right: 10px;
}
/* line 325, layout/_tenders.scss */
.tenders-results .more-results .tenders-arrow-left:after {
  content: "";
  position: absolute;
  color: #ffffff;
  font-family: 'icomoon' !important;
  font-size: 10px;
}
/* line 333, layout/_tenders.scss */
.tenders-results .more-results .tenders-arrow-right {
  position: relative;
  margin-left: 10px;
}
/* line 336, layout/_tenders.scss */
.tenders-results .more-results .tenders-arrow-right:after {
  content: "";
  position: absolute;
  color: #ffffff;
  font-family: 'icomoon' !important;
  font-size: 10px;
}
/* line 345, layout/_tenders.scss */
.tenders-results .more-results .tenders-number {
  margin: 0 10px;
  color: #fff;
  height: 100%;
  cursor: pointer;
}
/* line 350, layout/_tenders.scss */
.tenders-results .more-results .tenders-number:hover {
  color: #d4d944;
}
/* line 353, layout/_tenders.scss */
.tenders-results .more-results .tenders-number.active {
  color: #d4d944;
}
/* line 358, layout/_tenders.scss */
.tenders-results a {
  color: white;
}

/* line 364, layout/_tenders.scss */
.tenders-results-details .head-results {
  color: #3b4394;
  font-family: "PilcrowW03-Semibold", Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}
/* line 370, layout/_tenders.scss */
.tenders-results-details .body-results {
  color: #74757d;
  font-family: "Pilcrow-regular", Arial, sans-serif;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* line 376, layout/_tenders.scss */
.tenders-results-details .standard-spacing {
  margin-bottom: 80px;
}

/* line 2, layout/_join-us.scss */
.join-network {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

/* line 7, layout/_join-us.scss */
.join-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
/* line 11, layout/_join-us.scss */
.join-logos:first-child {
  margin-right: 80px;
}
/* line 14, layout/_join-us.scss */
.join-logos .join-logos-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #b1b700;
  font-weight: 400;
  margin-bottom: 25px;
  position: relative;
  line-height: 24px;
}
/* line 23, layout/_join-us.scss */
.join-logos span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 1px;
  background-color: #d4d944;
}
/* line 32, layout/_join-us.scss */
.join-logos img {
  opacity: 0.6;
  -webkit-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
/* line 35, layout/_join-us.scss */
.join-logos img:hover {
  opacity: 1;
}

/* line 42, layout/_join-us.scss */
.join-us a {
  color: #74757d;
  -webkit-transition: color 250ms ease;
  transition: color 250ms ease;
}
/* line 45, layout/_join-us.scss */
.join-us a:hover {
  color: #b1b700;
}
/* line 49, layout/_join-us.scss */
.join-us .svg-right-positioned {
  right: 0;
}
/* line 52, layout/_join-us.scss */
.join-us .standard-spacing {
  margin-top: 130px;
}

@media (max-width: 1399px) {
  /* line 58, layout/_join-us.scss */
  img {
    max-width: 80%;
  }
}
@media (max-width: 959px) {
  /* line 65, layout/_join-us.scss */
  .join-us .standard-spacing {
    margin-top: 85px;
  }
  /* line 68, layout/_join-us.scss */
  .join-us .svg-right-positioned {
    margin-bottom: 30px;
    margin-top: 0;
  }

  /* line 73, layout/_join-us.scss */
  .order-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /* line 76, layout/_join-us.scss */
  .order-mobile > div:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  /* line 79, layout/_join-us.scss */
  .order-mobile > div:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 84, layout/_join-us.scss */
  .join-logos:first-child {
    margin-right: 20px;
  }
}
/* line 1, layout/_video.scss */
.youtube-player {
  position: relative;
  padding-bottom: 55.75%;
  /* Use 75% for 4:3 videos */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 5px;
}

/* line 11, layout/_video.scss */
.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
}

/* line 21, layout/_video.scss */
.youtube-player img {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  border-radius: 5px;
  height: auto;
  cursor: pointer;
  -webkit-transition: .4s all;
  transition: .4s all;
}

/* line 40, layout/_video.scss */
.youtube-player img:hover {
  -webkit-filter: brightness(75%);
}

/* line 44, layout/_video.scss */
.youtube-player .play {
  height: 72px;
  width: 72px;
  left: 50%;
  top: 50%;
  margin-left: -36px;
  margin-top: -36px;
  position: absolute;
  background: url("//i.imgur.com/TxzC70f.png") no-repeat;
  cursor: pointer;
}
