/**
 * Import Vendor for components dependencies
 *
 */
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6; }

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7; }

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in; }

.parsley-errors-list.filled {
  opacity: 1; }

/* ========================= */
/* PARSLEY Extends */
/* ========================= */
.parsley-error {
  background-color: #FFCDD2;
  border: 1px solid #F44336; }

.parsley-errors-list {
  margin-top: -5px;
  list-style: none;
  font-size: 80%;
  color: #F44336;
  /*li{
    border-left: 1px solid #222;
    padding-left: 2%;
    margin-left: 5%;
  }*/ }

.alert {
  border: 1px solid #ccc;
  padding: 10px;
  color: #ccc;
  margin-bottom: 10px; }
  .alert-success {
    border-color: #4CAF50;
    background-color: #E8F5E9;
    color: #4CAF50; }

body.stop-scrolling {
  height: 100%;
  overflow: hidden; }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999; }

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px; } }

.sweet-alert h2 {
  color: #002643;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block; }

.sweet-alert p {
  color: #333;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal; }

.sweet-alert fieldset {
  border: none;
  position: relative; }

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s; }

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s; }

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px; }

.sweet-alert .sa-error-container p {
  display: inline-block; }

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: all 0.1s; }

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px; }

.sweet-alert .sa-input-error::before {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-input-error::after {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-input-error.show {
  opacity: 1;
  -ms-transform: scale(1);
  transform: scale(1); }

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  transition: all 0.3s; }

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed; }

.sweet-alert input:focus::-moz-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus:-ms-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus::-webkit-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd; }

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd; }

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd; }

.sweet-alert.show-input input {
  display: block; }

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative; }

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden; }

.sweet-alert button {
  background-color: #0092FF;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer; }

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }

.sweet-alert button:hover {
  background-color: #0092FF; }

.sweet-alert button:active {
  background-color: #0092FF; }

.sweet-alert button.cancel {
  background-color: #C1C1C1; }

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9; }

.sweet-alert button.cancel:active {
  background-color: #a8a8a8; }

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important; }

.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default; }

.sweet-alert button.confirm[disabled] {
  color: transparent; }

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s; }

.sweet-alert button::-moz-focus-inner {
  border: 0; }

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important; }

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px; }

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box; }

.sweet-alert .sa-icon.sa-error {
  border-color: #FD9500; }

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block; }

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #FD9500;
  display: block;
  top: 37px;
  border-radius: 2px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px; }

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86; }

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: '';
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -ms-transform-origin: 60px 60px;
  transform-origin: 60px 60px; }

.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -ms-transform-origin: 0px 60px;
  transform-origin: 0px 60px; }

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat; }

/*
 * Animations
 */

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

.showSweetAlert[data-animation=pop] {
  animation: showSweetAlert 0.3s; }

.showSweetAlert[data-animation=none] {
  animation: none; }

.showSweetAlert[data-animation=slide-from-top] {
  animation: slideFromTop 0.3s; }

.showSweetAlert[data-animation=slide-from-bottom] {
  animation: slideFromBottom 0.3s; }

.hideSweetAlert[data-animation=pop] {
  animation: hideSweetAlert 0.2s; }

.hideSweetAlert[data-animation=none] {
  animation: none; }

.hideSweetAlert[data-animation=slide-from-top] {
  animation: slideToTop 0.4s; }

.hideSweetAlert[data-animation=slide-from-bottom] {
  animation: slideToBottom 0.3s; }

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

.animateSuccessTip {
  animation: animateSuccessTip 0.75s; }

.animateSuccessLong {
  animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after {
  animation: rotatePlaceholder 4.25s ease-in; }

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

.animateErrorIcon {
  animation: animateErrorIcon 0.5s; }

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.animateXMark {
  animation: animateXMark 0.5s; }

@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

.pulseWarning {
  animation: pulseWarning 0.75s infinite alternate; }

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

.pulseWarningIns {
  animation: pulseWarningIns 0.75s infinite alternate; }

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9; }

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9; }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  box-sizing: border-box; }

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff; }

.la-ball-fall.la-dark {
  color: #333; }

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-ball-fall {
  width: 54px;
  height: 18px; }

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  animation: ball-fall 1s ease-in-out infinite; }

.la-ball-fall > div:nth-child(1) {
  animation-delay: -200ms; }

.la-ball-fall > div:nth-child(2) {
  animation-delay: -100ms; }

.la-ball-fall > div:nth-child(3) {
  animation-delay: 0ms; }

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px; }

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px; }

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px; }

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px; }

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px; }

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px; }

/*
 * Animation
 */

@keyframes ball-fall {
  0% {
    opacity: 0;
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    transform: translateY(0); }
  80% {
    opacity: 1;
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    transform: translateY(145%); } }

/*! Flickity v1.2.1
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  filter: alpha(opacity=60);
  /* IE8 */
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  /* IE8 */
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25);
  /* IE8 */
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  /* IE8 */
  opacity: 1; }

/**
 * Import website Framwork base
 *
 *    Settings
 *    --------
 *      Colors pallet and Fonts
 *
 *    Mixins
 *    --------
 *      Usefull CSS functions to help develop
 *
 */
/*
 *    Colors
 *    ------
 */
/*
 *    Fonts
 *    -----
 */
/*
 *    Breakpoints
 *    -----------
 */
/**
 *  CLEARFIX AN ELEMENT
 *  ==============================================
 *
 * Usage :
 *
 * .container-with-floated-children {
 *     @extend %clearfix;
 * }
 *
 */
.init-grid .row, .main-form .form-row, .site-hr-container, .main-nav, .main-nav #navbar, .hero .secondary-nav, .main-footer {
  *zoom: 1; }
  .init-grid .row:before, .main-form .form-row:before, .site-hr-container:before, .main-nav:before, .main-nav #navbar:before, .hero .secondary-nav:before, .main-footer:before, .init-grid .row:after, .main-form .form-row:after, .site-hr-container:after, .main-nav:after, .main-nav #navbar:after, .hero .secondary-nav:after, .main-footer:after {
    content: " ";
    display: table; }
  .init-grid .row:after, .main-form .form-row:after, .site-hr-container:after, .main-nav:after, .main-nav #navbar:after, .hero .secondary-nav:after, .main-footer:after {
    clear: both; }

/**
 * Reset
 *
 */
/**
*
* Global
*
**/
*,
*::before,
*::after {
  box-sizing: border-box; }

html,
body,
button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased; }

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  line-height: 1.6250em;
  /* 26px */
  font-weight: 300;
  color: #222; }

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

/* ==========================================================================
 Outdated Browser prompt
 ========================================================================== */
.outdatedbrowser {
  z-index: 999999;
  padding: 20px 35px;
  background: white;
  color: #444;
  font-size: 19px;
  line-height: 29px;
  margin: 0;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  width: 100%;
  height: auto; }

.lt-ie9 .outdatedbrowser {
  position: relative; }

/* ==========================================================================
 Browser Selection color
 ========================================================================== */
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::selection {
  background: #333;
  color: #fff;
  text-shadow: none; }

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

/* j.mp/webkit-tap-highlight-color */
a:link {
  -webkit-tap-highlight-color: #333; }

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/**
 * Small Components
 *
 */
.init-grid {
  position: relative; }
  .init-grid .row {
    position: relative; }
    .init-grid .row.max-width {
      max-width: 1200px;
      margin: 0 auto; }
  .init-grid .col {
    position: relative;
    width: 100%; }
    .init-grid .col.half {
      float: left;
      width: 50%; }
    .init-grid .col.one-third {
      float: left;
      width: 33.3333%; }
    .init-grid .col.one-fourth {
      float: left;
      width: 25%; }
    .init-grid .col.one-fifth {
      float: left;
      width: 20%; }
    .init-grid .col.one-sixth {
      float: left;
      width: 16.6666%; }
    .init-grid .col.one-eighth {
      float: left;
      width: 12.5%; }
  @media all and (max-width: 1024px) {
    .init-grid .col.half {
      float: none;
      width: 100%; } }
  @media all and (max-width: 767px) {
    .init-grid .col.half {
      float: none;
      width: 100%; }
    .init-grid .col.one-third {
      float: none;
      width: 100%; }
    .init-grid .col.one-fourth {
      float: none;
      width: 100%; }
    .init-grid .col.one-fifth {
      float: none;
      width: 100%; }
    .init-grid .col.one-sixth {
      float: none;
      width: 100%; } }

@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon.eot?ts2vgr");
  src: url("fonts/icomoon.eot?ts2vgr#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?ts2vgr") format("truetype"), url("fonts/icomoon.woff?ts2vgr") format("woff"), url("fonts/icomoon.svg?ts2vgr#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* 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;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-youtube:before {
  content: "\e900"; }

.icon-facebook:before {
  content: "\e902"; }

.icon-brand:before {
  content: "\e902"; }

.icon-social:before {
  content: "\e902"; }

.icon-icon-plus:before {
  content: "\e901"; }

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

.site-btn {
  display: inline-block;
  margin: 0;
  padding: 15px 30px;
  border: 2px solid #ffba00;
  border-radius: 100px;
  background: #ffba00;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Roboto Condensed", sans-serif;
  transition: all 0.2s ease-in-out; }
  .site-btn:hover {
    background: transparent;
    border-color: #ffba00;
    color: #ffba00; }
  .site-btn.grey {
    background: #777777;
    border-color: #777777; }
    .site-btn.grey:hover {
      background: #fff;
      border-color: #fff;
      color: #ffba00; }
  .site-btn.white {
    background-color: #fff;
    border-color: #fff;
    color: #ffba00; }
    .site-btn.white:hover {
      background: transparent;
      color: #fff; }
  .site-btn.outlined {
    background: transparent;
    border-color: #ffba00;
    color: #ffba00; }
    .site-btn.outlined:hover {
      background: #ffba00;
      border-color: #ffba00;
      color: #fff; }
  .site-btn.contrast:hover {
    border-color: #ffba00; }
  @media all and (max-width: 767px) {
    .site-btn {
      padding: 13px 20px 11px;
      font-size: 15px; } }

.main-form {
  padding: 25px 0 0 0; }
  .main-form .form-field,
  .main-form .form-input {
    position: relative;
    width: 100%; }
    .main-form .form-field.half,
    .main-form .form-input.half {
      float: left;
      width: 49%;
      margin-right: 2%; }
    .main-form .form-field.one-third,
    .main-form .form-input.one-third {
      float: left;
      width: 32%;
      margin-right: 2%; }
    .main-form .form-field.one-forth,
    .main-form .form-input.one-forth {
      float: left;
      width: 24%;
      margin-right: 2%; }
      @media only screen and (max-width: 365px) {
        .main-form .form-field.one-forth,
        .main-form .form-input.one-forth {
          width: 63%;
          margin-right: 2%; }
          .main-form .form-field.one-forth:last-child,
          .main-form .form-input.one-forth:last-child {
            width: 35%;
            margin-right: 0; } }
    .main-form .form-field.three-forth,
    .main-form .form-input.three-forth {
      float: left;
      width: 74%;
      margin-right: 2%; }
      @media only screen and (max-width: 365px) {
        .main-form .form-field.three-forth,
        .main-form .form-input.three-forth {
          width: 63%;
          margin-right: 2%; } }
    .main-form .form-field:last-child, .main-form .form-field.last,
    .main-form .form-input:last-child,
    .main-form .form-input.last {
      margin-right: 0; }
  .main-form label {
    display: inline-block;
    width: 100%;
    text-align: left;
    color: #777777;
    font-weight: 400;
    font-size: 16px; }
    .main-form label span {
      display: block; }
  .main-form input,
  .main-form select,
  .main-form textarea {
    width: 100%;
    height: 50px;
    padding: 5px 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ABB0B7;
    border-radius: 3px;
    color: #3a3a3a;
    font-weight: 400;
    outline: none; }
  .main-form textarea {
    height: 175px;
    min-height: 175px;
    max-width: 100%;
    min-width: 100%; }
  .main-form input[type="submit"],
  .main-form button {
    outline: none; }
  .main-form .payment-errors {
    color: #e74c3c; }
  .main-form input.parsley-success,
  .main-form select.parsley-success,
  .main-form textarea.parsley-success {
    color: #3a3a3a; }
  .main-form input.parsley-error,
  .main-form select.parsley-error,
  .main-form textarea.parsley-error {
    color: #DA620C; }
  .main-form .checkbox {
    line-height: 25px;
    vertical-align: top; }
    .main-form .checkbox label span,
    .main-form .checkbox input {
      display: inline-block;
      width: inherit;
      height: 25px;
      margin-right: 0.5%;
      line-height: 25px;
      vertical-align: top; }
  .main-form .has-error input,
  .main-form .has-error select {
    background: #e74c3c; }
  .main-form .parsley-errors-list {
    position: absolute;
    right: 0;
    bottom: -7px;
    font-size: 12px;
    font-weight: 500;
    color: #DA620C; }

.title1 {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  color: #ffba00;
  margin: 0;
  padding: 0 0 35px 0;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 1px; }
  @media all and (max-width: 1339px) {
    .title1 {
      padding: 0 0 25px 0;
      font-size: 34px;
      line-height: 1.1; } }
  @media all and (max-width: 1024px) {
    .title1 {
      font-size: 26px; } }
  @media all and (max-width: 599px) {
    .title1 {
      font-size: 19px;
      padding-bottom: 20px; } }
  @media all and (max-width: 529px) {
    .title1 {
      padding-bottom: 10px; } }
  @media all and (max-width: 469px) {
    .title1 {
      font-size: 14px; } }

.title2 {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  color: #ffba00;
  margin: 0;
  padding: 0 0 25px 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px; }

.title3 {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  color: #373737;
  margin: 0;
  width: 100%;
  clear: both;
  padding: 0 0 25px 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase; }

.title4 {
  font-family: "Roboto Condensed", sans-serif;
  color: #373737;
  margin: 0;
  padding: 0 0 15px 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase; }

.title1 i, .title2 i, .title3 i, .title4 i {
  position: absolute;
  top: 50%;
  left: 0;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  font-size: 255%;
  color: #777777; }

.title1 strong, .title2 strong, .title3 strong, .title4 strong {
  font-family: "Roboto Condensed", sans-serif; }

@media all and (max-width: 969px) {
  .title1 i, .title2 i, .title3 i, .title4 i {
    margin-top: 0; } }

.main-text {
  color: #777777;
  margin: 0;
  padding: 0 0 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; }

.main-list {
  width: 100%;
  color: #373737;
  margin: 0;
  padding: 25px 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  list-style-type: none; }
  .main-list li {
    display: inline-block;
    position: relative;
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
    padding-left: 30px;
    line-height: 1; }
    .main-list li i {
      position: absolute;
      top: 50%;
      left: 0;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      color: #000;
      font-size: 135%; }
  @media all and (max-width: 1689px) {
    .main-list {
      font-size: 15px; } }
  @media all and (max-width: 969px) {
    .main-list {
      padding-left: 25px;
      padding-right: 0;
      font-size: 13px;
      line-height: 1.4; }
      .main-list li {
        padding-bottom: 10px; } }
  @media all and (max-width: 599px) {
    .main-list li {
      width: 100%; }
    .main-list li:nth-child(even) {
      left: 0; } }

a {
  cursor: pointer; }

.site-hr {
  display: inline-block;
  width: 55px;
  height: 3px;
  background: #777777;
  margin: 0 auto 25px auto;
  padding: 0;
  border: none; }

/**
 * Import Component's core modules
 *
 */
/*
 *    Main navigation
 *    ---------------
 */
.main-nav {
  margin-top: -70px;
  width: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 22px 60px;
  color: #ffba00;
  z-index: 15;
  transition: all 0.2s ease-in-out; }
  @media all and (max-width: 767px) {
    .main-nav {
      padding: 22px 35px; } }
  .main-nav .nav-logo {
    float: left;
    width: auto;
    height: auto;
    display: none; }
    @media all and (max-width: 767px) {
      .main-nav .nav-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        display: block;
        float: none; }
        .main-nav .nav-logo img {
          max-width: 100%;
          width: 120px; } }
  .main-nav #navbar .navbar-contain .nav-content {
    text-align: center; }
    .main-nav #navbar .navbar-contain .nav-content a {
      margin-left: 20px;
      text-transform: uppercase;
      font-weight: 400;
      font-size: 16px;
      font-family: "Roboto Condensed", sans-serif;
      color: #fff;
      letter-spacing: 0.05em;
      position: relative; }
      .main-nav #navbar .navbar-contain .nav-content a.active {
        color: #ffba00; }
      .main-nav #navbar .navbar-contain .nav-content a:before, .main-nav #navbar .navbar-contain .nav-content a:after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        content: '';
        opacity: 0;
        transition: transform 0.3s, opacity 0.3s;
        -ms-transform: translateX(-50%) translateY(-50%) scale(0.2);
        transform: translateX(-50%) translateY(-50%) scale(0.2); }
      .main-nav #navbar .navbar-contain .nav-content a:after {
        width: 30px;
        height: 30px;
        border-width: 6px;
        background-color: rgba(255, 255, 255, 0.2);
        -ms-transform: translateX(-50%) translateY(-50%) scale(0.8);
        transform: translateX(-50%) translateY(-50%) scale(0.8);
        border: 0; }
      .main-nav #navbar .navbar-contain .nav-content a:hover::before, .main-nav #navbar .navbar-contain .nav-content a:hover::after, .main-nav #navbar .navbar-contain .nav-content a:focus::before, .main-nav #navbar .navbar-contain .nav-content a:focus::after {
        opacity: 1;
        -ms-transform: translateX(-50%) translateY(-50%) scale(1);
        transform: translateX(-50%) translateY(-50%) scale(1); }
      @media all and (max-width: 767px) {
        .main-nav #navbar .navbar-contain .nav-content a {
          display: block;
          margin: auto;
          margin-bottom: 15px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .main-nav #navbar .navbar-contain .nav-content a {
          margin-left: 15px; } }
  @media all and (max-width: 767px) {
    .main-nav #navbar {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: auto;
      -ms-transform: translate(100%, 0);
      transform: translate(100%, 0);
      padding-top: 60px;
      width: 45%;
      height: auto;
      min-width: 375px;
      background-color: rgba(0, 0, 0, 0.85);
      z-index: 99;
      transition: all ease 0.33s; }
      .main-nav #navbar.active {
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        padding-top: 60px; } }
  @media all and (max-width: 400px) {
    .main-nav #navbar {
      width: 100%;
      min-width: inherit; } }
  .navbar-fixed .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px; }
    @media all and (max-width: 767px) {
      .navbar-fixed .main-nav {
        border-bottom: 1px solid #fff;
        padding-top: 35px;
        padding-bottom: 35px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .navbar-fixed .main-nav {
        padding: 20px; } }
    .navbar-fixed .main-nav .nav-logo {
      display: block; }
      .navbar-fixed .main-nav .nav-logo img {
        max-width: 100%;
        width: 50px;
        display: block; }
        @media all and (max-width: 767px) {
          .navbar-fixed .main-nav .nav-logo img {
            display: inline-block;
            width: 120px; } }
    .navbar-fixed .main-nav .nav-content {
      float: right;
      margin-top: 12px;
      margin-left: 10px; }
      @media all and (max-width: 767px) {
        .navbar-fixed .main-nav .nav-content {
          float: none;
          margin: 0; } }
  .main-nav #menu-mobile {
    width: 100%;
    display: none; }
    .navbar-fixed .main-nav #menu-mobile {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 99999; }
    @media (max-width: 767px) {
      .main-nav #menu-mobile {
        display: block; } }
    .main-nav #menu-mobile .menu {
      color: #ffba00;
      margin-top: 5px;
      display: block;
      float: right; }
      @media (max-width: 767px) {
        .navbar-fixed .main-nav #menu-mobile .menu {
          padding-top: 12px;
          padding-right: 35px;
          margin-top: 15px; } }
      .main-nav #menu-mobile .menu .mobile-bar {
        display: block;
        width: 25px;
        height: 2px;
        margin-bottom: 5px;
        background-color: #ffba00; }
      .main-nav #menu-mobile .menu .mobile-close {
        display: none;
        color: #000;
        font-size: 20px;
        z-index: 999999;
        position: fixed;
        top: 10px;
        right: 20px;
        font-weight: 400;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #ffba00;
        text-align: center;
        line-height: 27px; }
      .main-nav #menu-mobile .menu.active .mobile-bar {
        opacity: 0; }
      .main-nav #menu-mobile .menu.active.logo {
        opacity: 0; }
      .main-nav #menu-mobile .menu.active .mobile-close {
        display: block; }
    .main-nav #menu-mobile .logo {
      display: none;
      margin-left: 35px;
      z-index: 1;
      margin-top: -2px; }
      .main-nav #menu-mobile .logo img {
        width: 50px; }
      @media (max-width: 767px) {
        .navbar-fixed .main-nav #menu-mobile .logo {
          display: inline-block;
          float: left;
          width: auto;
          margin-top: -2px; } }

.hero {
  position: relative; }
  .hero .secondary-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 60px;
    color: #ffba00;
    z-index: 15;
    transition: all 0.2s ease-in-out; }
    .hero .secondary-nav .right {
      float: right;
      padding-top: 10px; }
      @media all and (max-width: 767px) {
        .hero .secondary-nav .right {
          float: none;
          text-align: center; } }
    .hero .secondary-nav a {
      margin-left: 20px;
      text-transform: uppercase;
      font-weight: 400;
      font-size: 16px;
      font-family: "Roboto Condensed", sans-serif;
      color: #fff;
      letter-spacing: 0.05em;
      position: relative;
      display: inline-block;
      transition: all 0.2s ease-in-out; }
      .hero .secondary-nav a:hover {
        color: #ffba00; }
      .hero .secondary-nav a.ico-nav {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid #ffba00;
        text-align: center;
        margin-left: 10px; }
        .hero .secondary-nav a.ico-nav i {
          font-size: 14px;
          color: #ffba00;
          line-height: 27px; }
        .hero .secondary-nav a.ico-nav:hover {
          background-color: #ffba00; }
          .hero .secondary-nav a.ico-nav:hover i {
            color: #000; }
      @media all and (max-width: 767px) {
        .hero .secondary-nav a {
          font-size: 14px;
          margin: 0;
          padding: 0 5px 10px; }
          .hero .secondary-nav a.ico-nav {
            position: absolute;
            top: -45px;
            left: 50%;
            margin-left: -45px; }
            .hero .secondary-nav a.ico-nav:last-child {
              margin-left: -5px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .hero .secondary-nav a {
          font-size: 14px; } }
    @media (max-width: 767px) {
      .hero .secondary-nav {
        position: fixed;
        top: initial;
        left: initial;
        bottom: 0;
        right: 0;
        -ms-transform: translate(100%, 0);
        transform: translate(100%, 0);
        width: 45%;
        min-width: 375px;
        height: auto;
        z-index: 999;
        transition: all ease 0.33s;
        text-align: left;
        border-top: 2px solid #fff;
        padding: 10px 0px; }
        .hero .secondary-nav.active {
          -ms-transform: translate(0, 0);
          transform: translate(0, 0); } }
    @media (max-width: 400px) {
      .hero .secondary-nav {
        width: 100%;
        min-width: inherit; } }
  .hero img {
    position: relative;
    display: block;
    width: 100%;
    height: auto; }
    .hero img.mobile {
      display: none; }
  .hero .content {
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 2;
    text-align: center; }
    .hero .content .logo {
      width: 200px;
      max-width: 100%;
      margin: auto;
      margin-bottom: 40px; }
    .hero .content .title1 {
      font-size: 21px;
      text-transform: none;
      font-weight: 400;
      margin: 0 auto;
      max-width: 1000px;
      color: #fff;
      margin-bottom: 40px;
      padding-bottom: 0; }
    .hero .content .title2 {
      font-size: 64px;
      color: #fff;
      font-weight: 500;
      padding-bottom: 0;
      margin-bottom: 25px; }
    .hero .content .site-btn {
      background-color: #ffba00;
      border-color: #ffba00;
      color: #000; }
      .hero .content .site-btn:hover {
        background-color: rgba(0, 0, 0, 0.75);
        border-color: #ffba00;
        color: #ffba00; }
    @media (min-width: 768px) and (max-width: 991px) {
      .hero .content {
        padding: 0 60px; } }
  @media all and (max-width: 767px) {
    .hero .content {
      margin-top: -33px; }
      .hero .content .logo {
        width: 150px;
        margin-bottom: 25px; }
      .hero .content .title1 {
        font-size: 18px;
        margin-bottom: 30px; }
      .hero .content .title2 {
        font-size: 52px;
        margin-bottom: 15px; } }

.hero.fullheight {
  min-height: 100vh;
  background: url("/images/hero.jpg") #f6f6f6 center center no-repeat;
  background-size: cover; }

.bloc-about {
  padding: 6vw 50px;
  text-align: center;
  background: #fff; }
  .bloc-about .half {
    padding: 0 15px; }
  .bloc-about img {
    max-width: 100%; }
    @media all and (max-width: 991px) {
      .bloc-about img {
        margin-bottom: 20px;
        width: 600px; } }
  .bloc-about .title2 {
    text-transform: none;
    margin-bottom: 20px;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    color: #ffba00; }
  .bloc-about .title3 {
    padding: 0;
    color: #000;
    font-size: 36px;
    margin-bottom: 50px; }
  .bloc-about .main-text {
    color: #000;
    text-align: left;
    margin-bottom: 20px; }
    @media (min-width: 768px) and (max-width: 991px) {
      .bloc-about .main-text {
        width: 600px;
        max-width: 100%;
        margin: auto;
        margin-bottom: 20px;
        text-align: center; } }
  @media all and (max-width: 1024px) {
    .bloc-about {
      padding: 60px 20px; }
      .bloc-about .title3 {
        font-size: 32px; } }
  @media (min-width: 992px) {
    .bloc-about .col.half {
      width: 50%;
      float: left; } }

.bloc-statistics {
  background: #fff; }
  .bloc-statistics .content {
    padding: 75px 15px;
    border-right: 1px solid #fff;
    background-color: #000; }
    @media all and (max-width: 767px) {
      .bloc-statistics .content {
        border-right: 0;
        border-bottom: 1px solid #fff; } }
    .bloc-statistics .content .title3 {
      padding: 0;
      font-size: 24px;
      font-weight: 400;
      text-transform: none;
      color: #fff;
      text-align: center;
      min-height: 125px; }
      .bloc-statistics .content .title3 span {
        display: block;
        margin-bottom: 10px;
        text-transform: uppercase;
        color: #ffba00;
        font-size: 64px;
        font-weight: 700; }
        .bloc-statistics .content .title3 span.counter-with-info {
          color: #ffba00; }
          .bloc-statistics .content .title3 span.counter-with-info .counter {
            display: inline-block;
            margin: 0;
            margin-right: 5px; }
  .bloc-statistics .col:last-child .content {
    border: 0; }
  @media (min-width: 465px) and (max-width: 991px) {
    .bloc-statistics .col.one-fourth {
      width: 50%;
      float: left; }
      .bloc-statistics .col.one-fourth .content {
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff; }
      .bloc-statistics .col.one-fourth:nth-child(even) .content {
        border-right: 0; } }
  @media (min-width: 385px) and (max-width: 464px) {
    .bloc-statistics .col.one-fourth {
      width: 50%;
      float: left; }
      .bloc-statistics .col.one-fourth .content {
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff; }
      .bloc-statistics .col.one-fourth:nth-child(even) .content {
        border-right: 0; }
      .bloc-statistics .col.one-fourth .title3 {
        font-size: 20px; } }

.bloc-gallery {
  padding: 70px 0px 50px;
  text-align: center;
  background: #fff;
  /*@media all and (max-width: 400px) {
    .col.one-sixth {
      width: 100%;
      float: none;
    }
  }*/ }
  .bloc-gallery img {
    width: 100%;
    max-width: 100%;
    display: block; }
  .bloc-gallery .title2 {
    text-transform: none;
    margin-bottom: 20px;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    color: #ffba00; }
  .bloc-gallery .title3 {
    padding: 0;
    color: #000;
    font-size: 36px;
    margin-bottom: 20px; }
  .bloc-gallery .main-text {
    color: #000;
    text-align: center;
    margin-bottom: 50px; }
  .bloc-gallery .grid-with-content {
    position: relative;
    background-color: #000;
    padding: 20px;
    transition: all 0.2s ease-in-out; }
    .bloc-gallery .grid-with-content img {
      opacity: 0; }
    .bloc-gallery .grid-with-content .content {
      position: absolute;
      text-align: center;
      color: #fff;
      top: 50%;
      left: 0;
      width: 100%;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      padding: 20px; }
      .bloc-gallery .grid-with-content .content a {
        font-size: 24px;
        text-align: center;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 400;
        line-height: 24px;
        max-width: 150px;
        display: block;
        margin: auto; }
      .bloc-gallery .grid-with-content .content span {
        display: block;
        width: 45px;
        height: 45px;
        margin: auto;
        border: 3px solid #ffba00;
        border-radius: 50%;
        text-align: center;
        margin-top: 15px;
        transition: all 0.2s ease-in-out; }
        .bloc-gallery .grid-with-content .content span i {
          font-size: 30px;
          font-weight: 400;
          color: #ffba00;
          margin-left: 1px;
          display: block;
          margin-top: -1px; }
    .bloc-gallery .grid-with-content:hover {
      background-color: #101010; }
      .bloc-gallery .grid-with-content:hover span {
        background-color: #ffba00; }
        .bloc-gallery .grid-with-content:hover span i {
          color: #000; }
    @media (min-width: 992px) and (max-width: 1100px) {
      .bloc-gallery .grid-with-content .content a {
        font-size: 18px; } }
  @media all and (max-width: 1024px) {
    .bloc-gallery {
      padding: 60px 0px; }
      .bloc-gallery .title-section {
        padding: 0 20px; }
      .bloc-gallery img {
        width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .bloc-gallery .col.one-sixth {
      width: 33.3333%;
      float: left; } }
  @media all and (max-width: 767px) {
    .bloc-gallery .col.one-sixth {
      width: 50%;
      float: left; }
    .bloc-gallery .title3 {
      font-size: 32px; } }

.bloc-gallery {
  padding: 70px 0px 50px;
  text-align: center;
  background: #fff;
  /*@media all and (max-width: 400px) {
    .col.one-sixth {
      width: 100%;
      float: none;
    }
  }*/ }
  .bloc-gallery .gallery-grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center; }
  .bloc-gallery .col {
    overflow: hidden; }
  .bloc-gallery img {
    width: 100%;
    max-width: 100%;
    display: block;
    -ms-transform: scale(1.01);
    transform: scale(1.01); }
  .bloc-gallery .title2 {
    text-transform: none;
    margin-bottom: 20px;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    color: #ffba00; }
  .bloc-gallery .title3 {
    padding: 0;
    color: #000;
    font-size: 36px;
    margin-bottom: 20px; }
  .bloc-gallery .main-text {
    color: #000;
    text-align: center;
    margin-bottom: 50px; }
  .bloc-gallery .grid-with-content {
    position: relative;
    background-color: #000;
    padding: 20px;
    transition: all 0.2s ease-in-out; }
    .bloc-gallery .grid-with-content img {
      opacity: 0; }
    .bloc-gallery .grid-with-content .content {
      position: absolute;
      text-align: center;
      color: #fff;
      top: 50%;
      left: 0;
      width: 100%;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      padding: 20px; }
      .bloc-gallery .grid-with-content .content.humour a {
        max-width: 175px; }
      .bloc-gallery .grid-with-content .content a {
        font-size: 24px;
        text-align: center;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 400;
        line-height: 24px;
        max-width: 150px;
        display: block;
        margin: auto; }
      .bloc-gallery .grid-with-content .content span {
        display: block;
        width: 45px;
        height: 45px;
        margin: auto;
        border: 3px solid #ffba00;
        border-radius: 50%;
        text-align: center;
        margin-top: 15px;
        transition: all 0.2s ease-in-out; }
        .bloc-gallery .grid-with-content .content span i {
          font-size: 30px;
          font-weight: 400;
          color: #ffba00;
          margin-left: 1px;
          display: block;
          margin-top: -1px; }
    .bloc-gallery .grid-with-content:hover {
      background-color: #101010; }
      .bloc-gallery .grid-with-content:hover span {
        background-color: #ffba00; }
        .bloc-gallery .grid-with-content:hover span i {
          color: #000; }
    @media (min-width: 992px) and (max-width: 1100px) {
      .bloc-gallery .grid-with-content .content a {
        font-size: 18px; } }
  @media all and (max-width: 1024px) {
    .bloc-gallery {
      padding: 60px 0px; }
      .bloc-gallery .title-section {
        padding: 0 20px; }
      .bloc-gallery img {
        width: 100%; } }
  @media (min-width: 768px) and (max-width: 1400px) {
    .bloc-gallery .col.one-eighth {
      width: 25%;
      float: left; } }
  @media all and (max-width: 767px) {
    .bloc-gallery .col.one-eighth {
      width: 50%;
      float: left; }
    .bloc-gallery .title3 {
      font-size: 32px; } }

.bloc-quoteCta {
  position: relative;
  padding: 6vw 50px;
  background: #f6f6f6;
  text-align: center;
  background-image: url("/images/background-cta.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }
  .bloc-quoteCta .max-width {
    max-width: 1000px;
    margin: auto; }
  .bloc-quoteCta .title2 {
    text-transform: none;
    margin-bottom: 20px;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    color: #ffba00; }
  .bloc-quoteCta .title3 {
    padding: 0;
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px; }
  .bloc-quoteCta p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 40px; }
  .bloc-quoteCta .site-btn {
    color: #000; }
    .bloc-quoteCta .site-btn:hover {
      background: rgba(0, 0, 0, 0.25);
      color: #ffba00; }
  @media all and (max-width: 1024px) {
    .bloc-quoteCta {
      padding: 60px 20px; } }
  @media all and (max-width: 767px) {
    .bloc-quoteCta .title3 {
      font-size: 32px; }
    .bloc-quoteCta p {
      font-size: 18px; } }

.bloc-location {
  padding: 70px 0px 0px;
  text-align: center;
  background: #fff;
  position: relative; }
  .bloc-location .max-width {
    width: 100%;
    max-width: 1000px !important;
    margin: auto; }
  .bloc-location .content {
    border: 1px solid #fff;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s linear;
    position: relative;
    display: block; }
    .bloc-location .content:hover img.background {
      -ms-transform: scale(1.1);
      transform: scale(1.1); }
    .bloc-location .content img {
      display: block;
      cursor: pointer;
      transition: all .3s linear;
      width: 100%;
      max-width: 100%; }
  .bloc-location .title2 {
    text-transform: none;
    margin-bottom: 20px;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    color: #ffba00; }
  .bloc-location .title3 {
    padding: 0;
    color: #000;
    font-size: 36px;
    margin-bottom: 20px; }
  .bloc-location .main-text {
    color: #000;
    text-align: center;
    margin-bottom: 50px; }
  .bloc-location .logo {
    position: absolute;
    width: 100%;
    padding: 0 40px;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    top: 50%;
    z-index: 5; }
    .bloc-location .logo img {
      width: 100%;
      max-width: 240px;
      margin: auto; }
  @media all and (max-width: 1024px) {
    .bloc-location {
      padding: 60px 0px 0px; }
      .bloc-location .title-section {
        padding: 0 20px; } }
  @media all and (max-width: 767px) {
    .bloc-location .col.one-third {
      width: 50%;
      float: left; }
    .bloc-location .title3 {
      font-size: 28px;
      line-height: 34px; } }
  @media all and (max-width: 400px) {
    .bloc-location .col.one-third {
      width: 100%;
      float: none; }
    .bloc-location .content {
      border-left: 0;
      border-right: 0; } }

.bloc-event {
  padding: 70px 0px 0px;
  text-align: center;
  background: #fff;
  position: relative; }
  .bloc-event .max-width {
    width: 100%;
    max-width: 1000px !important;
    margin: auto; }
  .bloc-event .content {
    border: 1px solid #fff;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s linear;
    position: relative;
    display: block; }
    .bloc-event .content:hover img.background {
      -ms-transform: scale(1.1);
      transform: scale(1.1); }
    .bloc-event .content img {
      display: block;
      cursor: pointer;
      transition: all .3s linear;
      width: 100%;
      max-width: 100%; }
  .bloc-event .title2 {
    text-transform: none;
    margin-bottom: 20px;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    color: #ffba00; }
  .bloc-event .title3 {
    padding: 0;
    color: #000;
    font-size: 36px;
    margin-bottom: 50px; }
  .bloc-event .main-text {
    color: #000;
    text-align: center;
    margin-bottom: 50px; }
  .bloc-event .logo {
    position: absolute;
    width: 100%;
    padding: 0 40px;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    top: 50%;
    z-index: 5; }
    .bloc-event .logo img {
      width: 100%;
      max-width: 400px;
      margin: auto; }
    .bloc-event .logo.mileexend img {
      max-width: 225px; }
      @media (max-width: 1024px) {
        .bloc-event .logo.mileexend img {
          max-width: 425px; } }
  @media all and (max-width: 1199px) {
    .bloc-event {
      padding: 60px 0px 0px; } }
  @media all and (max-width: 1024px) {
    .bloc-event {
      padding: 60px 0px 0px; }
      .bloc-event .title-section {
        padding: 0 20px; } }
  @media all and (max-width: 767px) {
    .bloc-event .col.one-fourth {
      width: 50%;
      float: left; }
    .bloc-event .title3 {
      font-size: 28px;
      line-height: 34px; } }
  @media all and (max-width: 400px) {
    .bloc-event .col.one-fourth {
      width: 100%;
      float: none; }
    .bloc-event .content {
      border-left: 0;
      border-right: 0; } }

.bloc-contact {
  padding: 60px 0px;
  text-align: center;
  background: #fff;
  position: relative; }
  .bloc-contact .title2 {
    text-transform: none;
    margin-bottom: 20px;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    color: #ffba00; }
  .bloc-contact .title3 {
    padding: 0;
    color: #000;
    font-size: 36px;
    margin-bottom: 20px; }
  .bloc-contact p {
    color: #000;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 20px; }
    .bloc-contact p.main-text {
      font-size: 15px; }
    .bloc-contact p.contact-info {
      font-family: "Roboto Condensed", sans-serif;
      font-weight: 400;
      font-size: 18px; }
      .bloc-contact p.contact-info span {
        display: block;
        margin-top: 20px;
        color: #ffba00; }
      .bloc-contact p.contact-info a {
        color: #ffba00; }
  .bloc-contact .employee-bloc {
    margin-top: 30px;
    padding: 0 10px;
    min-height: 325px; }
    @media (max-width: 767px) {
      .bloc-contact .employee-bloc {
        min-height: 0; } }
    @media (min-width: 768px) and (max-width: 884px) {
      .bloc-contact .employee-bloc {
        min-height: 318px; } }
    @media (min-width: 885px) and (max-width: 991px) {
      .bloc-contact .employee-bloc {
        min-height: 300px; } }
    .bloc-contact .employee-bloc img {
      width: 175px;
      max-width: 100%;
      border-radius: 50%; }
    .bloc-contact .employee-bloc p {
      margin-bottom: 0;
      line-height: 20px; }
      .bloc-contact .employee-bloc p.name {
        font-weight: 600; }
      .bloc-contact .employee-bloc p.type {
        line-height: 18px;
        font-size: 15px;
        padding-bottom: 10px;
        margin-bottom: 6px;
        position: relative; }
        .bloc-contact .employee-bloc p.type:before {
          content: '';
          width: 14px;
          height: 1px;
          background-color: #ffba00;
          position: absolute;
          left: 50%;
          bottom: 0;
          margin-left: -7px; }
        @media (min-width: 768px) and (max-width: 991px) {
          .bloc-contact .employee-bloc p.type {
            font-size: 14px; } }
      .bloc-contact .employee-bloc p.phone {
        font-size: 14px; }
    .bloc-contact .employee-bloc a {
      color: #ffba00;
      font-size: 14px;
      margin-top: -3px;
      display: block; }
      .bloc-contact .employee-bloc a:hover {
        text-decoration: underline; }
  @media all and (max-width: 1024px) {
    .bloc-contact {
      padding: 60px 20px; }
      .bloc-contact .title-section {
        padding: 0 20px; } }
  @media (min-width: 992px) and (max-width: 1099px) {
    .bloc-contact .col.one-fifth {
      width: 25%;
      float: left; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .bloc-contact .col.one-fifth {
      width: 33.3333%;
      float: left; } }
  @media all and (max-width: 767px) {
    .bloc-contact .col.one-fifth {
      width: 50%;
      float: left; }
    .bloc-contact .title3 {
      font-size: 28px;
      line-height: 34px; } }
  @media all and (max-width: 400px) {
    .bloc-contact .col.one-fifth {
      width: 200px;
      max-width: 100%;
      margin: auto;
      margin-top: 30px;
      float: none; }
    .bloc-contact .content {
      border-left: 0;
      border-right: 0; } }

.main-footer {
  position: relative;
  padding: 20px 50px;
  background: #f6f6f6; }
  .main-footer .main-text {
    color: #000;
    font-size: 14px; }
    .main-footer .main-text.footer-nav {
      text-transform: uppercase;
      font-family: "Roboto Condensed", sans-serif; }
      .main-footer .main-text.footer-nav a {
        margin-left: 20px;
        position: relative;
        display: inline-block;
        transition: all 0.2s ease-in-out; }
        .main-footer .main-text.footer-nav a:hover {
          color: #ffba00; }
        .main-footer .main-text.footer-nav a.ico-nav {
          width: 28px;
          height: 28px;
          border-radius: 50%;
          border: 2px solid #ffba00;
          text-align: center;
          margin-left: 10px;
          margin-top: -2px; }
          .main-footer .main-text.footer-nav a.ico-nav i {
            font-size: 12px;
            color: #ffba00;
            line-height: 22px; }
          .main-footer .main-text.footer-nav a.ico-nav:hover {
            background-color: #ffba00; }
            .main-footer .main-text.footer-nav a.ico-nav:hover i {
              color: #000; }
          @media all and (max-width: 767px) {
            .main-footer .main-text.footer-nav a.ico-nav {
              display: none; } }
  .main-footer .footer-logo {
    position: relative;
    top: 3px;
    margin-left: 25px;
    max-width: 120px; }
  .main-footer .left {
    float: left; }
  .main-footer .right {
    float: right; }
  @media all and (max-width: 1024px) {
    .main-footer {
      padding-left: 20px;
      padding-right: 20px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .main-footer .main-text, .main-footer a {
      font-size: 14px; } }
  @media all and (max-width: 900px) {
    .main-footer .footer-logo {
      display: block;
      margin: 5px 0px; } }
  @media all and (max-width: 767px) {
    .main-footer {
      padding-top: 15px;
      padding-bottom: 15px; }
      .main-footer .main-text, .main-footer a {
        font-size: 14px; } }
  @media all and (max-width: 599px) {
    .main-footer {
      padding: 15px 20px 10px; } }
  @media all and (max-width: 499px) {
    .main-footer .left {
      float: none;
      width: 100%;
      padding-bottom: 5px; }
    .main-footer .right {
      float: none;
      width: 100%; }
    .main-footer .main-text {
      width: 100%;
      text-align: center; }
      .main-footer .main-text.footer-nav a {
        display: block;
        margin: 0; }
    .main-footer .footer-logo {
      margin: 5px  auto 15px auto; } }

/*# sourceMappingURL=app.css.map */
