@charset "UTF-8";
/* Partials
================================================ */
@import url("https://fonts.googleapis.com/css?family=Fira+Sans:300,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700");
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, body, input, textarea, select {
  font-size: 13px;
  font-weight: 300;
  color: #1d1d1b;
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.heading--lg {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 0.05em;
}
.heading--md {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 24px;
  line-height: 30px;
}
.heading--sm {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 18px;
  line-height: 1.3;
}
.heading span {
  color: #009faf;
}

@media only screen and (min-width: 768px) {
  .heading--lg {
    font-size: 55px;
    letter-spacing: 0.02em;
    line-height: 0.8;
  }
  .heading--md {
    font-size: 36px;
    line-height: 36px;
  }
  .heading--sm {
    font-size: 22px;
    line-height: 1;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
html, body {
  overflow-x: hidden;
  min-height: 100vh;
}
html.noscroll, body.noscroll {
  overflow: hidden;
}

.cc-window.cc-floating {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.cc-floating .cc-compliance > .cc-btn {
  outline: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

strong, b {
  font-weight: 600;
}

input, textarea {
  outline: none;
  border-radius: 0;
  border: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #757575;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #757575;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #757575;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #757575;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: transparent;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: transparent;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: transparent;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  /* Firefox 18- */
  color: transparent;
}

button {
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.ui-btn {
  height: 45px;
  line-height: 45px;
  padding: 0 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  transition: all 0.2s ease;
  display: inline-block;
  cursor: pointer;
  font-size: 12px;
}
.ui-btn--1 {
  color: #fff;
  background: #009faf;
  border: 2px solid #009faf;
  line-height: 42px;
}
.ui-btn--1:hover {
  color: #009faf;
  background: #fff;
}
.ui-btn--2 {
  color: #000;
  height: 50px;
  background: #fff;
  border: 4px solid #000;
  line-height: 42px;
}
.ui-btn--2:hover {
  color: #fff;
  background: #000;
}

div.wpcf7 .ajax-loader, div.wpcf7 .wpcf7-spinner {
  display: none;
}

.grecaptcha-badge {
  display: none !important;
}

@media only screen and (max-width: 1099px) {
  body {
    margin-top: 70px;
  }
}
@media only screen and (min-width: 768px) {
  .ui-btn {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1441px) {
  .container {
    width: 1370px !important;
  }
}
/* Third Party Payload
================================================ */
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=aab9f32768c28aa534c4)
 * Config saved to config.json and https://gist.github.com/aab9f32768c28aa534c4
 */
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}

.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: 15px;
  padding-right: 15px;
}

.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;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

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

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

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

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

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

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .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;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

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

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

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

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

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

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .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;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

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

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

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

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

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

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .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;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

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

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

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

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

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

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: "";
  display: table;
}

.clearfix:after,
.row:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.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 {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -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);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.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.html) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-nintendo-switch:before {
  content: "\f418";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("../eot/fa-brands-400.eot");
  src: url("../eot/fa-brands-400d41d.eot#iefix") format("embedded-opentype"), url("../woff2/fa-brands-400.woff2") format("woff2"), url("../woff/fa-brands-400.woff") format("woff"), url("../ttf/fa-brands-400.ttf") format("truetype"), url("../svg/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("../eot/fa-regular-400.eot");
  src: url("../eot/fa-regular-400d41d.eot#iefix") format("embedded-opentype"), url("../woff2/fa-regular-400.woff2") format("woff2"), url("../woff/fa-regular-400.woff") format("woff"), url("../ttf/fa-regular-400.ttf") format("truetype"), url("../svg/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../eot/fa-solid-900.eot");
  src: url("../eot/fa-solid-900d41d.eot#iefix") format("embedded-opentype"), url("../woff2/fa-solid-900.woff2") format("woff2"), url("../woff/fa-solid-900.woff") format("woff"), url("../ttf/fa-solid-900.ttf") format("truetype"), url("../svg/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  animation-delay: 0.5s;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/* Components Payload
================================================ */
.main-nav {
  background: #fff;
}
.main-nav__content {
  z-index: 100;
  position: relative;
  display: flex;
  align-items: center;
}
.main-nav__location {
  margin-left: auto;
  margin-right: 15px;
  position: relative;
  top: 2px;
}
.main-nav__location img {
  width: 35px;
}

@media only screen and (max-width: 1099px) {
  .main-nav {
    position: fixed;
    height: 70px;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.5s ease;
  }
  .main-nav.scroll {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  }
  .main-nav__content {
    height: 70px;
  }
  .main-nav--active .main-nav__links {
    transform: translateX(100%);
  }
  .main-nav--active .main-nav__search {
    max-width: 100%;
  }
  .main-nav--active .main-nav__mobile-btn {
    background: #1d1d1b;
  }
  .main-nav--active .main-nav__mobile-btn__hamburger span {
    background: #fff;
  }
  .main-nav--active .main-nav__mobile-btn__hamburger span:nth-child(1) {
    top: 50%;
    transform: rotate(-45deg);
    transition: top 0.2s ease, transform 0.2s ease 0.2s, background 0.2s ease 0s;
  }
  .main-nav--active .main-nav__mobile-btn__hamburger span:nth-child(2) {
    opacity: 0;
    transition: all 0.1s ease, background 0.2s ease 0s;
  }
  .main-nav--active .main-nav__mobile-btn__hamburger span:nth-child(3) {
    bottom: calc(50% - 3px);
    transform: rotate(45deg);
    transition: bottom 0.2s ease, transform 0.2s ease 0.2s, background 0.2s ease 0s;
  }
  .main-nav__logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-nav__logo-container img {
    height: 55px;
    display: block;
  }
  .main-nav__search {
    display: none;
  }
  .main-nav__social {
    display: none;
  }
  .main-nav__links {
    position: fixed;
    top: 70px;
    width: 100vw;
    height: calc(100vh - 70px);
    left: -100vw;
    transition: transform 0.2s ease-in-out;
    z-index: 5;
    background: #1d1d1b;
    overflow: hidden;
  }
  .main-nav__links.dropdown .menu > li > a {
    width: 50%;
  }
  .main-nav__links .menu > li.current-menu-item > a {
    background: #2e2e2e;
  }
  .main-nav__links .menu li.menu-item-has-children > a {
    pointer-events: none;
  }
  .main-nav__links .menu li.menu-item-has-children > a:after {
    width: 17.5px;
    height: 17.5px;
    content: "";
    position: absolute;
    right: 20px;
    background: url(../svg/right-arrow-white.svg) center/contain no-repeat;
  }
  .main-nav__links .menu li.menu-item-has-children .sub-menu {
    position: absolute;
    width: 50%;
    height: 100%;
    background: #fff;
    top: 0;
    z-index: 10;
    right: -50%;
    visibility: hidden;
    transition: all 0.2s ease-in-out 0.3s;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
  .main-nav__links .menu li.menu-item-has-children .sub-menu li a {
    color: #1d1d1b;
    border-bottom: 1px solid hsla(0deg, 0%, 0%, 0.15);
  }
  .main-nav__links .menu li.menu-item-has-children.active .sub-menu {
    transform: translateX(-100%);
    visibility: visible;
    transition: all 0.2s ease-in-out 0s;
  }
  .main-nav__links .menu li a {
    padding: 0 22.5px;
    line-height: 1.4;
    height: 70px;
    display: flex;
    align-items: center;
    width: 100%;
    color: #fff;
    position: relative;
    border-bottom: 1px solid hsla(0deg, 0%, 100%, 0.15);
    transition: width 0.2s ease;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .main-nav__mobile-btn {
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
    align-items: center;
    color: #1d1d1b;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease;
  }
  .main-nav__mobile-btn__hamburger {
    height: 22px;
    width: 30px;
    position: relative;
    margin: 5px 0;
  }
  .main-nav__mobile-btn__hamburger span {
    height: 3px;
    background: #1d1d1b;
    width: 100%;
    display: block;
    position: absolute;
  }
  .main-nav__mobile-btn__hamburger span:nth-child(1) {
    top: 0;
    transition: top 0.2s ease 0.2s, transform 0.2s ease, background 0.2s ease 0s;
  }
  .main-nav__mobile-btn__hamburger span:nth-child(2) {
    top: calc(50% - 2px);
    transition: all 0.1s ease 0.15s, background 0.2s ease 0s;
  }
  .main-nav__mobile-btn__hamburger span:nth-child(3) {
    bottom: 0;
    transition: bottom 0.2s ease 0.2s, transform 0.2s ease, background 0.2s ease 0s;
  }
}
@media only screen and (min-width: 1100px) {
  .main-nav__mobile-btn {
    display: none;
  }
  .main-nav__content {
    display: flex;
    max-width: 1425px;
    margin: 0 auto;
  }
  .main-nav__logo-container {
    margin-right: 20px;
    padding-left: 20px;
  }
  .main-nav__logo-container img {
    height: 62.5px;
    display: block;
  }
  .main-nav__social {
    padding: 0 15px;
    background: #000;
    height: 100%;
  }
  .main-nav__social ul {
    display: flex;
  }
  .main-nav__social ul li a {
    color: #fff;
    padding: 30px 13.5px;
    display: block;
    font-size: 16px;
    transition: all 0.2s ease;
  }
  .main-nav__social ul li a:hover {
    color: #009faf;
  }
  .main-nav__search {
    display: none;
  }
  .main-nav__links {
    margin-right: 20px;
  }
  .main-nav__links .menu {
    display: flex;
  }
  .main-nav__links .menu .nav-mobile {
    display: none;
  }
  .main-nav__links .menu > li {
    position: relative;
  }
  .main-nav__links .menu > li a {
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: block;
  }
  .main-nav__links .menu > li a:hover {
    color: #009faf;
  }
  .main-nav__links .menu > li > a {
    padding: 32px 22px;
  }
  .main-nav__links .menu > li:hover > a {
    color: #009faf;
  }
  .main-nav__links .menu > li.current_page_item > a {
    color: #fff;
    background: #000;
  }
  .main-nav__links .menu > li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav__links .menu > li:not(.curent_page_item).nav-red {
    color: #f44336;
  }
  .main-nav__links .menu > li .sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    border-top: 1px solid #e1e1e1;
    border-bottom: 6px solid #009faf;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease;
  }
  .main-nav__links .menu > li .sub-menu li a {
    padding: 15px 80px 15px 30px;
  }
  .main-nav__links .menu > li .sub-menu li:not(:last-of-type) {
    border-bottom: 1px solid #e1e1e1;
  }
}
@media only screen and (min-width: 1280px) {
  .main-nav__location {
    display: none;
  }
  .main-nav__logo-container {
    margin-right: 40px;
  }
  .main-nav__links {
    margin-right: 40px;
  }
  .main-nav__search {
    display: block;
    margin-left: auto;
    flex: 1;
    margin-right: 40px;
    position: relative;
    max-width: 350px;
  }
  .main-nav__search:after {
    content: "";
    position: absolute;
    height: 40px;
    right: 10px;
    top: -4px;
    background: url(../svg/map-marker.svg) center/contain no-repeat;
    width: 40px;
  }
  .main-nav__search__container {
    width: 100%;
  }
  .main-nav__search__container input {
    width: 100%;
    height: 45px;
    border: 5px solid #e1e1e1;
    padding: 0 20px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .main-nav__search__container input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #cacaca;
  }
  .main-nav__search__container input::-moz-placeholder {
    /* Firefox 19+ */
    color: #cacaca;
  }
  .main-nav__search__container input:-ms-input-placeholder {
    /* IE 10+ */
    color: #cacaca;
  }
  .main-nav__search__container input:-moz-placeholder {
    /* Firefox 18- */
    color: #cacaca;
  }
  .main-nav__search__container input:focus::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: transparent;
  }
  .main-nav__search__container input:focus::-moz-placeholder {
    /* Firefox 19+ */
    color: transparent;
  }
  .main-nav__search__container input:focus:-ms-input-placeholder {
    /* IE 10+ */
    color: transparent;
  }
  .main-nav__search__container input:focus:-moz-placeholder {
    /* Firefox 18- */
    color: transparent;
  }
}
@media only screen and (min-width: 1400px) {
  .main-nav__content {
    max-width: 1625px;
  }
}
@media only screen and (min-width: 1441px) {
  .main-nav__social ul li a {
    padding: 30px 12px;
  }
}
.footer {
  background: #000;
  position: relative;
  border-top: 15px solid #d5d5d5;
  text-align: center;
}
.footer .container {
  padding: 60px 40px;
}
.footer:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  border: 1px solid #444444;
  z-index: 0;
  pointer-events: none;
}
.footer__logo {
  margin-bottom: 20px;
  display: block;
}
.footer__logo img {
  height: 80px;
}
.footer__trilogy-logo {
  display: block;
  margin-bottom: 20px;
}
.footer__trilogy-logo img {
  height: 20px;
}
.footer__col {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.footer__col:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #444444;
  height: 1px;
  width: 40px;
  margin: 0 auto;
}
.footer__col .title {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.footer__col ul li:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer__col ul li a {
  text-transform: uppercase;
  font-weight: 600;
  color: #666;
  font-size: 12px;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}
.footer__col ul li a:hover {
  color: #009faf;
}
.footer__col .menu-footer-1-container,
.footer__col .menu-footer-2-container {
  max-height: 0;
  overflow: hidden;
  margin-top: 10px;
  transition: all 0.6s ease;
}
.footer__col .menu-footer-1-container.show,
.footer__col .menu-footer-2-container.show {
  max-height: 300px;
}
.footer__col--3 {
  text-align: center;
  margin-bottom: 40px;
}
.footer__col--3 .title {
  margin-bottom: 20px;
}
.footer__col--3 ul {
  display: flex;
  justify-content: center;
}
.footer__col--3 ul li:not(:last-of-type) {
  margin-right: 35px;
  margin-bottom: 0;
}
.footer__col--3 ul li a {
  font-size: 18px;
  color: #fff;
}
.footer__col--4 {
  padding-bottom: 0;
}
.footer__col--4:before {
  display: none;
}
.footer__col--4 .title {
  margin-bottom: 20px;
}
.footer__col--4 > p:not(.title) {
  color: #888;
  font-size: 14px;
  max-width: 350px;
  margin: 0 auto 25px;
}
.footer__col--4 .wpcf7-form {
  max-width: 300px;
  margin: 0 auto;
}
.footer__col--4 .wpcf7-form div.wpcf7-mail-sent-ok {
  margin-top: 15px;
  text-align: left;
  font-size: 12px;
  color: #8BC34A;
  font-weight: 400;
}
.footer__col--4 .wpcf7-form .form-wrap {
  display: flex;
}
.footer__col--4 .wpcf7-form .form-wrap p {
  display: flex;
}
.footer__col--4 .wpcf7-form .wpcf7-form-control:not(.wpcf7-submit).wpcf7-not-valid + span {
  height: 40px;
  width: 40px;
}
.footer__col--4 .wpcf7-form .wpcf7-form-control-wrap {
  position: relative;
  width: calc(100% - 60px);
}
.footer__col--4 .wpcf7-form input {
  height: 40px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: transparent;
}
.footer__col--4 .wpcf7-form input[type=email] {
  width: 100%;
  border: 3px solid #fff;
  border-right: none;
  padding: 0 15px;
}
.footer__col--4 .wpcf7-form input[type=email]::-webkit-input-placeholder {
  color: #fff;
}
.footer__col--4 .wpcf7-form input[type=email]::-moz-placeholder {
  color: #fff;
}
.footer__col--4 .wpcf7-form input[type=email]:-ms-input-placeholder {
  color: #fff;
}
.footer__col--4 .wpcf7-form input[type=email]:-moz-placeholder {
  color: #fff;
}
.footer__col--4 .wpcf7-form input[type=email]:focus::-webkit-input-placeholder {
  color: transparent;
}
.footer__col--4 .wpcf7-form input[type=email]:focus::-moz-placeholder {
  color: transparent;
}
.footer__col--4 .wpcf7-form input[type=email]:focus:-ms-input-placeholder {
  color: transparent;
}
.footer__col--4 .wpcf7-form input[type=email]:focus:-moz-placeholder {
  color: transparent;
}
.footer__col--4 .wpcf7-form input[type=submit] {
  border: 3px solid #009faf;
  border-left: none;
  padding: 0 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.footer__col--4 .wpcf7-form input[type=submit]:hover {
  background: #009faf;
}
.footer__col--4 .wpcf7-form .ajax-loader, .footer__col--4 .wpcf7-form .wpcf7-spinner {
  position: absolute;
}
.footer__scroll-top {
  position: absolute;
  bottom: -2px;
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 6px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}
.footer__scroll-top span {
  transform: rotate(-45deg);
  display: block;
  color: #009faf;
  font-size: 12px;
  margin-top: -2px;
  margin-left: -2px;
  transition: 0.2s ease;
}
.footer__scroll-top:hover {
  background: #009faf;
}
.footer__scroll-top:hover span {
  color: #000;
  font-weight: 600;
}

.copyright {
  padding: 10px 0;
  background: #252525;
  font-size: 12px;
  color: #999;
  text-align: center;
}
.copyright span {
  display: block;
}
.copyright span:first-child {
  margin-bottom: 10px;
  pointer-events: none;
}
.copyright span a {
  color: #cddc39;
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .footer {
    text-align: left;
  }
  .footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 80px 40px;
  }
  .footer__col:before {
    left: 0;
    right: 0;
    bottom: calc(100% + 10px);
    width: 1px;
    margin: 0 auto;
    height: 50px;
  }
  .footer__col .menu-footer-1-container,
.footer__col .menu-footer-2-container {
    max-height: none;
  }
  .footer__col .title {
    margin-bottom: 15px;
  }
  .footer__col--0 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__col--1, .footer__col--2 {
    display: none;
  }
  .footer__col--3 {
    margin-bottom: 0;
  }
  .footer__col--3 ul {
    display: block;
  }
  .footer__col--3 ul li:not(:last-of-type) {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .footer__col--4 {
    max-width: 300px;
    margin-bottom: 0;
  }
  .footer__col--4:before {
    display: block;
    right: auto;
    left: 80px;
  }

  .copyright {
    display: flex;
    justify-content: flex-end;
    padding: 10px 35px;
  }
  .copyright span:first-child {
    margin-bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
  }
}
@media only screen and (min-width: 992px) {
  .footer__col {
    margin-bottom: 0;
  }
  .footer__col--2 {
    display: block;
  }
  .footer__col--2:before {
    right: auto;
    left: 50px;
  }
  .footer__col--3 ul li:not(:last-of-type) {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__col--1 {
    display: block;
  }
  .footer__col--1:before {
    right: auto;
    left: 35px;
  }
}
.masthead {
  padding-bottom: 30px;
  position: relative;
}
.masthead:before {
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  position: absolute;
  bottom: calc(100% - 1px);
  background: #ebebeb;
}
.masthead--push {
  margin-bottom: 50px;
}
.masthead .container {
  position: relative;
}
.masthead .heading--lg {
  padding: 40px 20px 30px;
  max-width: 50%;
  line-height: 0.85;
  position: relative;
  z-index: 10;
}
.masthead .heading--lg span {
  color: #1d1d1b;
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s ease, transform 0.5s ease;
}
.masthead .intro {
  position: relative;
  background: #fff;
  padding: 30px 20px 0;
  z-index: 1;
}
.masthead .intro p {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s ease 0.4vs, transform 0.5s ease 0.4vs;
}
.masthead .intro p br {
  display: none;
}
.masthead .intro a {
  font-weight: 400;
  color: #009faf;
}
.masthead .intro strong {
  font-weight: 400;
}
.masthead__image {
  width: 65%;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
.masthead__image__bg-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.masthead__image__bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.masthead.animated .heading--lg span, .masthead.animated .intro p {
  opacity: 1;
  transform: translateY(0);
}

@media only screen and (max-width: 767px) {
  .masthead .container {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .masthead__wrap {
    position: relative;
    padding-top: 55px;
    width: 100%;
  }
  .masthead .heading--lg {
    background: #fff;
  }
  .masthead.animated .heading--lg:after {
    height: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .masthead {
    margin-bottom: 0;
  }
  .masthead--push {
    margin-bottom: 50px;
  }
  .masthead .heading--lg {
    padding: 50px 0;
    text-align: left;
    min-height: 192px;
    display: flex;
    align-items: center;
  }
  .masthead .intro {
    padding: 40px 30px 50px 0;
    margin-top: -50px;
    max-width: 500px;
  }
  .masthead.animated .heading--lg {
    max-width: 280px;
  }
  .masthead.animated .heading--lg:after {
    width: calc(380px - 100%);
  }
}
@media only screen and (min-width: 992px) {
  .masthead__image__bg {
    height: 120%;
    top: -10%;
    transform: scale(1.2);
    animation: scale-in 1.5s forwards;
    -webkit-animation: scale-in 1.5s forwards;
  }
  .masthead .heading--lg:after {
    left: 100%;
    width: 0;
    height: 1px;
    top: 50%;
    z-index: 1;
    transition: width 0.75s ease 0.3s;
    background: #000;
    content: "";
    position: absolute;
  }
  .masthead .intro {
    padding: 40px 60px 50px 0;
    margin-top: -50px;
    max-width: 500px;
  }
}
@media only screen and (min-width: 1200px) {
  .masthead__image {
    width: calc(100% - 350px);
    right: 15px;
  }
}
.remodal-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.newsletter-modal {
  padding: 0;
  background: #000;
}
.newsletter-modal .image {
  display: none;
}
.newsletter-modal .content {
  flex: 1;
  text-align: left;
  padding: 30px;
  background: #fff;
}
.newsletter-modal .content .heading {
  margin-bottom: 10px;
}
.newsletter-modal .content p {
  color: #666;
  margin-bottom: 30px;
  font-weight: 500;
}
.newsletter-modal .content .wpcf7 div.wpcf7-mail-sent-ok {
  margin-top: 25px;
  text-align: left;
  font-size: 12px;
  color: #8BC34A;
  font-weight: 400;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) {
  width: 100%;
  margin-bottom: -10px;
  display: block;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent).email-733 {
  margin-bottom: 30px;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text], .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email] {
  height: 45px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid #c8c8c8;
  padding: 0 15px;
  color: #1d1d1b;
  width: 100%;
  font-size: 12px;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]::-webkit-input-placeholder, .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]::-webkit-input-placeholder {
  color: #c8c8c8;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]::-moz-placeholder, .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]::-moz-placeholder {
  color: #c8c8c8;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:-ms-input-placeholder, .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:-ms-input-placeholder {
  color: #c8c8c8;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:-moz-placeholder, .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:-moz-placeholder {
  color: #c8c8c8;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:focus::-webkit-input-placeholder, .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:focus::-webkit-input-placeholder {
  color: transparent;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:focus::-moz-placeholder, .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:focus::-moz-placeholder {
  color: transparent;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:focus:-ms-input-placeholder, .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:focus:-ms-input-placeholder {
  color: transparent;
}
.newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:focus:-moz-placeholder, .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:focus:-moz-placeholder {
  color: transparent;
}
.newsletter-modal .content .wpcf7 .your-consent {
  flex: 1;
  font-weight: 500;
}
.newsletter-modal .content .wpcf7 .your-consent input {
  border: 1px solid #c8c8c8;
  height: 13px;
  width: 13px;
}
.newsletter-modal .content .wpcf7 input[type=submit] {
  height: 45px;
  line-height: 45px;
  padding: 0 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  transition: all 0.2s ease;
  display: inline-block;
  color: #fff;
  width: 100%;
  background: #8BC34A;
  border: 1px solid #8BC34A;
}
.newsletter-modal .content .wpcf7 input[type=submit]:hover {
  color: #fff;
  background: #8BC34A;
}
.newsletter-modal .content .wpcf7 .wpcf7-list-item {
  margin: 0;
}
.newsletter-modal .content .wpcf7 .wpcf7-acceptance {
  display: block;
}
.newsletter-modal .content .wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
}
.newsletter-modal .content .wpcf7 .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 12px;
  color: #666;
}
.newsletter-modal .content .wpcf7 .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label span {
  color: #009faf;
}
.newsletter-modal .content .wpcf7 .wpcf7-acceptance .wpcf7-list-item input {
  margin: 2px 10px 0 0;
}
.newsletter-modal .remodal-close {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  color: #000;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.newsletter-modal .remodal-close:hover {
  background: #fff;
}

@media only screen and (min-width: 768px) {
  .newsletter-modal .content {
    padding: 60px;
  }
  .newsletter-modal .remodal-close {
    top: -15px;
    right: -15px;
    color: #000;
    background: #9d9b9b;
  }
}
@media only screen and (min-width: 992px) {
  .remodal {
    max-width: 800px;
  }

  .remodal-overlay {
    background: rgba(30, 30, 28, 0.98);
  }

  .newsletter-modal {
    background: #000;
  }
  .newsletter-modal__inner {
    display: flex;
  }
  .newsletter-modal .image {
    width: 250px;
    position: relative;
    display: block;
  }
  .newsletter-modal .image img {
    position: absolute;
    width: 65%;
    top: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .newsletter-modal .content {
    padding: 70px;
    background: #000;
    color: #fff;
  }
  .newsletter-modal .content p {
    color: #9d9d9d;
    font-weight: 400;
  }
  .newsletter-modal .content .wpcf7 .wpcf7-form-control:not(.wpcf7-submit).wpcf7-not-valid + span {
    height: 40px;
    width: 40px;
  }
  .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text], .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email] {
    height: 40px;
    border: 1px solid #444;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
  }
  .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:focus, .newsletter-modal .content .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:focus {
    border: 1px solid #fff;
  }
  .newsletter-modal .content .wpcf7 input[type=submit] {
    width: auto;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
  }
  .newsletter-modal .content .wpcf7 input[type=submit]:not([disabled]):hover {
    color: #009faf;
    background: #fff;
  }
  .newsletter-modal .content .wpcf7 input[type=submit][disabled] {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .newsletter-modal .content .wpcf7 .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 10px;
  }
  .newsletter-modal .content .wpcf7 .columns {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 1200px) {
  .newsletter-modal .image {
    width: 280px;
  }
}
.breadcrumbs {
  position: relative;
  z-index: 0;
}
.breadcrumbs:before {
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  position: absolute;
  bottom: calc(100% - 1px);
  background: #ebebeb;
}
.breadcrumbs:after {
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  position: absolute;
  bottom: 0;
  background: #ebebeb;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  height: 40px;
  padding-top: 2px;
}
.breadcrumbs ul li {
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.breadcrumbs ul li.seperator {
  margin: 0 5px;
  color: #d7d7d7;
}
.breadcrumbs ul li:not(.home) {
  font-size: 10px;
}
.breadcrumbs ul li:not(.home) a {
  color: #d7d7d7;
  transition: all 0.1s ease;
}
.breadcrumbs ul li:not(.home) a:hover {
  color: #009faf;
}
.breadcrumbs ul li strong {
  font-weight: 600;
}
.breadcrumbs ul li.home svg {
  height: 14px;
  width: 14px;
  transition: all 0.1s ease;
}
.breadcrumbs ul li.home a:hover svg {
  fill: #009faf;
}

@media only screen and (min-width: 1200px) {
  .breadcrumbs:before, .breadcrumbs:after {
    width: 50%;
  }
}
.content-block p, .content-block ul, .content-block ol, .content-block img, .content-block h1, .content-block h2, .content-block h3, .content-block h4, .content-block .wp-video, .content-block iframe, .content-block .pdfemb-viewer, .content-block div {
  margin-bottom: 30px;
}
.content-block h1, .content-block h2, .content-block h3, .content-block h4 {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.content-block h1 {
  font-size: 36px;
  letter-spacing: 0.02em;
}
.content-block h2 {
  letter-spacing: 0.05em;
  font-size: 22px;
}
.content-block h3 {
  letter-spacing: 0.05em;
  font-size: 18px;
}
.content-block h4 {
  letter-spacing: 0.05em;
  font-size: 16px;
}
.content-block strong, .content-block b {
  font-weight: 600;
}
.content-block ul, .content-block ol {
  padding-left: 15px;
}
.content-block ul li:not(:last-of-type), .content-block ol li:not(:last-of-type) {
  margin-bottom: 10px;
}
.content-block ul {
  list-style: disc;
}
.content-block ol {
  list-style-type: decimal;
}
.content-block img {
  max-width: 100%;
  height: auto;
}
.content-block hr {
  background: #ebebeb;
  border: none;
  width: 100%;
  height: 1px;
  margin-bottom: 30px;
  margin-top: 0;
}
.content-block a {
  color: #009faf;
  font-weight: 600;
  transition: all 0.2s ease;
}
.content-block a:hover {
  color: #000;
}
.content-block blockquote {
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  padding: 30px 0;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 14px;
}
.content-block blockquote p {
  margin-bottom: 0;
}
.content-block--page {
  padding: 40px 0;
  position: relative;
}
.content-block--page:before {
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  background: #ebebeb;
}

@media only screen and (min-width: 768px) {
  .content-block ul, .content-block ol {
    padding-left: 30px;
  }
  .content-block--page {
    padding: 60px 0;
  }
  .content-block--page .container {
    padding: 0 200px;
  }
  .content-block--page hr {
    background: #dad7d7;
  }
}
@media only screen and (min-width: 992px) {
  .content-block p, .content-block li {
    font-size: 14px;
  }
  .content-block--page {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 1100px) {
  .content-block--page:before {
    top: auto;
    bottom: 100%;
  }
}
.nav-tabs {
  background: #000;
}
.nav-tabs ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.nav-tabs ul li a {
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
}
.nav-tabs ul li a.active {
  color: #009faf;
}
.nav-tabs ul li a:hover {
  color: #009faf;
}

.tabs-fixed--fixed {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 101;
}

@media only screen and (max-width: 767px) {
  .nav-tabs {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .nav-tabs ul {
    justify-content: flex-start;
  }
  .nav-tabs ul li:not(:last-of-type) {
    margin-right: 60px;
  }
  .nav-tabs ul li a {
    height: 50px;
  }
  .nav-tabs ul li a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 6px;
    background: #009faf;
    bottom: 0;
    left: 0;
    transition: all 0.2s ease;
    transform: scale(0, 1);
  }
  .nav-tabs ul li a.active:after {
    transform: scale(1, 1);
  }
}
@media only screen and (min-width: 992px) {
  .tabs-fixed--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
}
.offers-slider-wrap, .whats-here-units-slider-wrap {
  padding: 0 0 40px;
  margin-top: -37px;
}
.offers-slider-wrap__heading, .whats-here-units-slider-wrap__heading {
  background: #fff;
  padding: 15px 30px 0 30px;
  display: inline-block;
  margin: 0 auto 40px;
  position: relative;
}
.offers-slider-wrap .latest-offers-slider .events-block, .whats-here-units-slider-wrap .latest-offers-slider .events-block {
  height: 100%;
}
.offers-slider-wrap .latest-offers-slider .events-block:hover .events-block__image div, .whats-here-units-slider-wrap .latest-offers-slider .events-block:hover .events-block__image div {
  transform: scale(1.1);
}
.offers-slider-wrap .latest-offers-slider .events-block:hover .events-block__content .title, .whats-here-units-slider-wrap .latest-offers-slider .events-block:hover .events-block__content .title {
  color: #009faf;
}
.offers-slider-wrap .latest-offers-slider .events-block__image, .whats-here-units-slider-wrap .latest-offers-slider .events-block__image {
  width: 100%;
  padding-bottom: 60%;
  display: block;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.offers-slider-wrap .latest-offers-slider .events-block__image div, .whats-here-units-slider-wrap .latest-offers-slider .events-block__image div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  will-change: transform;
}
.offers-slider-wrap .latest-offers-slider .events-block .date, .whats-here-units-slider-wrap .latest-offers-slider .events-block .date {
  position: absolute;
  top: -1px;
  left: -1px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009faf;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 15px 10px 10px;
}
.offers-slider-wrap .latest-offers-slider .events-block .date span, .whats-here-units-slider-wrap .latest-offers-slider .events-block .date span {
  color: #ccc;
  display: inline-block;
  margin: 0 5px;
}
.offers-slider-wrap .latest-offers-slider .events-block__content, .whats-here-units-slider-wrap .latest-offers-slider .events-block__content {
  padding: 0 30px;
  text-align: center;
}
.offers-slider-wrap .latest-offers-slider .events-block__content .title, .whats-here-units-slider-wrap .latest-offers-slider .events-block__content .title {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 768px) {
  .offers-slider-wrap, .whats-here-units-slider-wrap {
    padding: 0 0 50px;
  }
  .offers-slider-wrap__heading, .whats-here-units-slider-wrap__heading {
    margin: 0 auto 60px;
  }
  .offers-slider-wrap__empty, .whats-here-units-slider-wrap__empty {
    margin: 40px 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .offers-slider-wrap {
    padding: 0 0 80px;
  }
  .offers-slider-wrap__heading {
    margin: 0 auto 100px;
  }

  .whats-here-units-slider-wrap {
    padding: 0 0 60px;
  }
}
.wpcf7 .ajax-loader, .wpcf7 .wpcf7-spinner {
  display: none !important;
}
.wpcf7 div.wpcf7-validation-errors, .wpcf7 div.wpcf7-acceptance-missing {
  display: none !important;
}
.wpcf7 div.wpcf7-mail-sent-ok {
  border: none;
  margin: 40px 0 0;
  padding: 0;
  text-align: center;
  font-weight: bold;
}
.wpcf7 .wpcf7-form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7 .wpcf7-form-control:not(.wpcf7-submit).wpcf7-not-valid {
  border: 3px solid #db817c !important;
}
.wpcf7 .wpcf7-form-control:not(.wpcf7-submit).wpcf7-not-valid + span {
  font-size: 0;
  position: absolute;
  width: 45px;
  height: 45px;
  top: 0;
  right: 0;
  background-image: url(../svg/cross.svg);
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.website-notice {
  background: #005b7f;
  text-align: center;
  padding: 10px 15px;
  color: #fff;
  font-weight: 600;
  font-size: 0.925em;
  line-height: 1.5;
}
.website-notice a {
  text-decoration: underline;
}

/* Components Payload
================================================ */
.home-hero .video-overlay, .home-hero video {
  display: none;
}
.home-hero .container {
  position: relative;
  z-index: 2;
}
.home-hero__slider {
  background: #1d1d1b;
  overflow: hidden;
}
.home-hero__slider .owl-dots {
  position: absolute;
  left: 0;
  bottom: 60px;
  display: flex;
  width: 100%;
  justify-content: center;
}
.home-hero__slider .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background: #fff;
  transform: rotate(45deg);
  opacity: 0.4;
  transition: all 0.2s ease;
  border-radius: 3px;
}
.home-hero__slider .owl-dots .owl-dot:not(:last-of-type) {
  margin-right: 10px;
}
.home-hero__slider .owl-dots .owl-dot.active, .home-hero__slider .owl-dots .owl-dot:hover {
  opacity: 1;
}
.home-hero__slider.owl-loaded .slide__bg, .home-hero__slider.animated .slide__bg {
  animation: scale-in 2s forwards;
  -webkit-animation: scale-in 2s forwards;
}
.home-hero__slider:not(.owl-loaded) .slide:not(:nth-child(1)) {
  display: none;
}
@keyframes scale-in {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
.home-hero__slider .slide {
  height: calc(100vh - 250px);
  min-height: 500px;
  max-height: 800px;
  position: relative;
  overflow: hidden;
}
.home-hero__slider .slide__bg-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home-hero__slider .slide__bg {
  position: absolute;
  width: 100%;
  height: 110%;
  top: -5%;
  left: 0;
  transform: scale(1.2);
}
.home-hero__slider .slide .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.home-hero__slider .slide__content {
  width: 450px;
  max-width: 100%;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  padding: 40px 20px;
}
.home-hero__slider .slide__content:before, .home-hero__slider .slide__content:after {
  position: absolute;
  content: "";
  height: 100%;
  top: -10px;
  width: 40px;
}
.home-hero__slider .slide__content:before {
  border-width: 10px 0 10px 10px;
  border-color: #7980a9;
  border-style: solid;
  left: 0;
}
.home-hero__slider .slide__content:after {
  border-width: 10px 10px 10px 0;
  border-color: #fff;
  border-style: solid;
  right: 0;
}
.home-hero__slider .slide__content .heading {
  line-height: 1;
}
.home-hero__slider .slide__content p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-top: 20px;
}
.home-hero__slider .slide .ui-btn {
  margin-top: 40px;
  position: relative;
}

.intro-block {
  background: #e9e9e9 url(../png/background-filter.png) center/2000px;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.intro-block .container {
  padding: 0 30px;
}
.intro-block:before, .intro-block:after {
  height: 40px;
  width: 1px;
  content: "";
  background: #1d1d1b;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.intro-block:before {
  top: -20px;
}
.intro-block:after {
  display: none;
}
.intro-block__box {
  background: #005b7f;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}
.intro-block__box:before, .intro-block__box:after {
  height: 20px;
  border-radius: 4px;
  width: 20px;
  content: "";
  background: #005b7f;
  position: absolute;
  left: calc(50% - 10px);
  transform: rotate(45deg);
}
.intro-block__box:before {
  top: -8px;
}
.intro-block__box:after {
  bottom: -8px;
}
.intro-block__box__border {
  height: 80%;
  position: absolute;
  border: 6px solid #fff;
  z-index: -1;
  width: calc(100% + 30px);
  left: -15px;
  top: 10%;
  transition: all 1s ease;
}
.intro-block__box p {
  text-transform: uppercase;
  line-height: 2.2;
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.feature-block {
  background: #e9e9e9 url(../png/background-filter.png) center/2000px;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.feature-block .container {
  padding: 0 30px;
}
.feature-block:before, .feature-block:after {
  height: 40px;
  width: 1px;
  content: "";
  background: #1d1d1b;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.feature-block:before {
  top: -20px;
}
.feature-block:after {
  display: none;
}
.feature-block__box {
  background: #1d1d1b;
  padding: 40px;
  text-align: left;
  position: relative;
  color: #fff;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-block__box:before, .feature-block__box:after {
  height: 20px;
  border-radius: 4px;
  width: 20px;
  content: "";
  background: #1d1d1b;
  position: absolute;
  top: calc(50% - 12.5px);
  transform: rotate(45deg);
}
.feature-block__box:before {
  left: -9px;
}
.feature-block__box:after {
  right: -9px;
}
.feature-block__box .block_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.feature-block__box__border {
  height: 80%;
  position: absolute;
  border: 6px solid #fff;
  z-index: -1;
  width: calc(100% + 30px);
  left: -15px;
  top: 10%;
  transition: all 1s ease;
}
.feature-block__box p {
  text-transform: uppercase;
  line-height: 2.2;
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.feature-block__box h2 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .feature-block__box h2 {
    font-size: 55px;
    letter-spacing: 0.02em;
    line-height: 0.8;
  }
}
.feature-block__box h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 24px;
  line-height: 30px;
}
@media only screen and (min-width: 768px) {
  .feature-block__box h3 {
    font-size: 36px;
    line-height: 36px;
  }
}

.home-sectors {
  margin-bottom: 60px;
}
.home-sectors .container {
  padding-left: 0;
  padding-right: 0;
}
.home-sectors__row {
  display: flex;
  position: relative;
}
.home-sectors__row .block {
  border-bottom: 4px solid #fff;
}
.home-sectors__row--1, .home-sectors__row--3 {
  display: flex;
}
.home-sectors__row--1 .sector-col:not(.sector-col--content), .home-sectors__row--3 .sector-col:not(.sector-col--content) {
  flex: 1;
}
.home-sectors__row--1 .sector-col--image, .home-sectors__row--3 .sector-col--image {
  display: none;
}
.home-sectors__row--1 .sector-col--content, .home-sectors__row--3 .sector-col--content {
  width: 100%;
}
.home-sectors__row--1 .sector-col--content .block:first-child, .home-sectors__row--3 .sector-col--content .block:first-child {
  display: none;
}
.home-sectors__row--1 .sector-col--content .block--small, .home-sectors__row--3 .sector-col--content .block--small {
  padding: 30% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.home-sectors__row--1 .sector-col--content .block--small .block__bg, .home-sectors__row--3 .sector-col--content .block--small .block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.6s ease;
}
.home-sectors__row--1 .sector-col--content .block--small .block__bg:before, .home-sectors__row--3 .sector-col--content .block--small .block__bg:before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  transition: all 0.6s ease;
}
@keyframes arrow-hover {
  0% {
    background-position: 50% 50%;
  }
  30% {
    background-position: 80px 50%;
  }
  30.1% {
    background-position: -30px 50%;
  }
  100% {
    background-position: 50% 50%;
  }
}
.home-sectors__row--1 .sector-col--content .block--small:hover .block__bg, .home-sectors__row--3 .sector-col--content .block--small:hover .block__bg {
  transform: scale(1.1);
}
.home-sectors__row--1 .sector-col--content .block--small:hover .block__bg:before, .home-sectors__row--3 .sector-col--content .block--small:hover .block__bg:before {
  background: rgba(0, 0, 0, 0.7);
}
.home-sectors__row--1 .sector-col--content .block--small:hover:after, .home-sectors__row--3 .sector-col--content .block--small:hover:after {
  animation-name: arrow-hover;
}
.home-sectors__row--1 .sector-col--content .block--small:after, .home-sectors__row--3 .sector-col--content .block--small:after {
  right: -1px;
  bottom: -1px;
  position: absolute;
  height: 60px;
  width: 60px;
  content: "";
  background: #fff url("../svg/right-arrow.svg") center/30px no-repeat;
  animation-duration: 0.8s;
}
.home-sectors__row--1 .sector-col--content {
  position: relative;
}
.home-sectors__row--2 {
  width: 100%;
  position: relative;
}
.home-sectors__row--2 .sector-col {
  width: 100%;
  position: relative;
}
.home-sectors__row--2 .sector-col .block {
  color: #fff;
  padding: 30% 0;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-sectors__row--2 .sector-col .block p, .home-sectors__row--2 .sector-col .block .ui-btn {
  display: none;
}
.home-sectors__row--2 .sector-col .block .heading--lg {
  margin-bottom: 0;
  font-size: 24px;
}
.home-sectors__row--2 .sector-col .block:after {
  right: -1px;
  bottom: -1px;
  position: absolute;
  height: 60px;
  width: 60px;
  content: "";
  background: #fff url("../svg/right-arrow.svg") center/30px no-repeat;
  animation-duration: 0.8s;
}

.whats-here-sectors {
  margin-bottom: 60px;
}
.whats-here-sectors .container {
  padding-left: 0;
  padding-right: 0;
}
.whats-here-sectors__row {
  display: flex;
  position: relative;
}
.whats-here-sectors__row .block {
  border-bottom: 4px solid #fff;
}
.whats-here-sectors__row--1, .whats-here-sectors__row--3 {
  display: flex;
}
.whats-here-sectors__row--1 .sector-col:not(.sector-col--content), .whats-here-sectors__row--3 .sector-col:not(.sector-col--content) {
  flex: 1;
}
.whats-here-sectors__row--1 .sector-col--image, .whats-here-sectors__row--3 .sector-col--image {
  display: none;
}
.whats-here-sectors__row--1 .sector-col--content, .whats-here-sectors__row--3 .sector-col--content {
  width: 100%;
}
.whats-here-sectors__row--1 .sector-col--content .block:first-child, .whats-here-sectors__row--3 .sector-col--content .block:first-child {
  display: none;
}
.whats-here-sectors__row--1 .sector-col--content .block--small, .whats-here-sectors__row--3 .sector-col--content .block--small {
  padding: 30% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.whats-here-sectors__row--1 .sector-col--content .block--small .heading, .whats-here-sectors__row--3 .sector-col--content .block--small .heading {
  padding: 0 3rem;
  text-align: center;
}
.whats-here-sectors__row--1 .sector-col--content .block--small .block__bg, .whats-here-sectors__row--3 .sector-col--content .block--small .block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.6s ease;
}
.whats-here-sectors__row--1 .sector-col--content .block--small .block__bg:before, .whats-here-sectors__row--3 .sector-col--content .block--small .block__bg:before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  transition: all 0.6s ease;
}
@keyframes arrow-hover {
  0% {
    background-position: 50% 50%;
  }
  30% {
    background-position: 80px 50%;
  }
  30.1% {
    background-position: -30px 50%;
  }
  100% {
    background-position: 50% 50%;
  }
}
.whats-here-sectors__row--1 .sector-col--content .block--small:hover .block__bg, .whats-here-sectors__row--3 .sector-col--content .block--small:hover .block__bg {
  transform: scale(1.1);
}
.whats-here-sectors__row--1 .sector-col--content .block--small:hover .block__bg:before, .whats-here-sectors__row--3 .sector-col--content .block--small:hover .block__bg:before {
  background: rgba(0, 0, 0, 0.7);
}
.whats-here-sectors__row--1 .sector-col--content .block--small:hover:after, .whats-here-sectors__row--3 .sector-col--content .block--small:hover:after {
  animation-name: arrow-hover;
}
.whats-here-sectors__row--1 .sector-col--content .block--small:after, .whats-here-sectors__row--3 .sector-col--content .block--small:after {
  right: -1px;
  bottom: -1px;
  position: absolute;
  height: 60px;
  width: 60px;
  content: "";
  background: #fff url("../svg/right-arrow.svg") center/30px no-repeat;
  animation-duration: 0.8s;
}
.whats-here-sectors__row--1 .sector-col--content {
  position: relative;
}
.whats-here-sectors__row--2 {
  width: 100%;
  position: relative;
}
.whats-here-sectors__row--2 .sector-col {
  width: 100%;
  position: relative;
}
.whats-here-sectors__row--2 .sector-col .block {
  color: #fff;
  padding: 30% 0;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whats-here-sectors__row--2 .sector-col .block p, .whats-here-sectors__row--2 .sector-col .block .ui-btn {
  display: none;
}
.whats-here-sectors__row--2 .sector-col .block .heading--lg {
  margin-bottom: 0;
  font-size: 24px;
}
.whats-here-sectors__row--2 .sector-col .block:after {
  right: -1px;
  bottom: -1px;
  position: absolute;
  height: 60px;
  width: 60px;
  content: "";
  background: #fff url("../svg/right-arrow.svg") center/30px no-repeat;
  animation-duration: 0.8s;
}

.units-selector .filter-menu {
  text-align: center;
}
.units-selector .filter-menu .container {
  padding-left: 0;
  padding-right: 0;
}
.units-selector .filter-menu__list {
  position: relative;
}
.units-selector .filter-menu__list:before {
  position: absolute;
  left: 15px;
  width: calc(100% - 30px);
  background: #005b7f;
  height: 1px;
  content: "";
  top: 0;
}
.units-selector .filter-menu__list ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  text-align: left;
  white-space: nowrap;
  position: relative;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
.units-selector .filter-menu__list ul li[data-filter]:hover {
  color: #009faf;
  transition: all 0.2s ease;
}
.units-selector .filter-menu__list ul .filter-btn {
  padding: 25px 0;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}
.units-selector .filter-menu__list ul .filter-btn:not(:last-of-type) {
  margin-right: 45px;
}
.units-selector .filter-menu__list ul .filter-btn:first-of-type {
  margin-left: 15px;
}
.units-selector .filter-menu__list ul .filter-btn:last-child {
  padding-right: 15px;
}
.units-selector .filter-menu__list ul .filter-btn:last-child:after {
  width: calc(100% - 15px);
}
.units-selector .filter-menu__list ul .filter-btn:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: #1d1d1b;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease;
  transform: scale(0, 1);
}
.units-selector .filter-menu__list ul .filter-btn.btn-active:after {
  transform: scale(1, 1);
}
.units-selector .filter-menu .ui-btn {
  display: none;
}
.units-selector .filter-menu__title {
  color: #fff;
  background: #005b7f;
  padding: 25px;
  display: inline-block;
  margin: 0 auto;
}
.units-selector .filter-menu__title br {
  display: none;
}
.units-selector .filter-items {
  background: #e9e9e9 url(../png/background-filter.png) center/2000px;
  padding: 40px 0 0;
  position: relative;
}
.units-selector .filter-items .container {
  padding-left: 0;
  padding-right: 0;
}
.units-selector .filter-items__slider {
  position: static;
}
.units-selector .filter-items__slider .owl-stage-outer {
  padding: 10px 0 0;
}
.units-selector .filter-items__slider .unit-item {
  height: 360px;
  background-color: #fff;
  display: block;
  transition: all 0.15s ease;
}
.units-selector .filter-items__slider .unit-item:hover {
  transform: translateY(-5px);
}
.units-selector .filter-items__slider .unit-item:hover .unit-item__text {
  color: #009faf;
}
.units-selector .filter-items__slider .unit-item:hover .unit-item__text svg path {
  fill: #009faf;
}
.units-selector .filter-items__slider .unit-item__logo {
  height: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20%;
}
.units-selector .filter-items__slider .unit-item__logo img {
  max-width: 150px;
  max-height: 160px;
  width: auto;
}
.units-selector .filter-items__slider .unit-item__logo img, .units-selector .filter-items__slider .unit-item__logo .heading {
  text-align: center;
}
.units-selector .filter-items__slider .unit-item__text {
  height: 25%;
  display: flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  flex-direction: column;
  font-size: 11px;
  transition: all 0.2s ease;
}
.units-selector .filter-items__slider .unit-item__text svg {
  content: "";
  position: relative;
  height: 20px;
  width: 20px;
  margin-top: 10px;
}
.units-selector .filter-items__slider .unit-item__text svg path {
  transition: all 0.2s ease;
}
.units-selector .filter-items__slider .owl-nav > div {
  position: absolute;
  width: 80px;
  height: 60px;
  top: calc(50% - 60px);
  background: #1d1d1b url(../svg/right-arrow-white.svg) center/30px no-repeat;
  animation-duration: 0.8s;
  transition: all 0.2s ease;
}
.units-selector .filter-items__slider .owl-nav > div.owl-prev {
  left: 0;
  transform: rotate(180deg);
}
.units-selector .filter-items__slider .owl-nav > div.owl-next {
  right: 0;
}
.units-selector .filter-items__slider .owl-nav > div:hover {
  background: #000 url(../svg/right-arrow-white.svg) center/30px no-repeat;
  animation-name: arrow-hover;
}
.units-selector .filter-items__slider .owl-dots {
  padding: 40px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.units-selector .filter-items__slider .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 3px;
  position: relative;
  transition: all 0.4s ease;
}
.units-selector .filter-items__slider .owl-dots .owl-dot:not(:last-of-type) {
  margin-right: 10px;
}
.units-selector .filter-items__slider .owl-dots .owl-dot.active {
  background: #1d1d1b;
}

.home-map {
  text-align: center;
  padding: 40px 0 60px;
  position: relative;
}
.home-map:after {
  content: "";
  position: absolute;
  bottom: 120px;
  width: 100%;
  background: #e1e1e1;
  left: 0;
  height: 1px;
}
.home-map .container {
  position: relative;
  z-index: 1;
}
.home-map__content {
  margin: 0 auto;
  max-width: 650px;
}
.home-map__content .heading--md {
  margin-bottom: 20px;
  transition: opacity 1s ease, transform 0.5s ease;
}
.home-map__content p {
  max-width: 505px;
  margin: 0 auto 40px;
  transition-delay: 0.4s;
  transition: opacity 1s ease 0.15s, transform 0.5s ease 0.15s;
}
.home-map__content .ui-btn {
  margin-bottom: 20px;
  transition: opacity 1s ease 0.3s, transform 0.5s ease 0.3s, color 0.2s ease, background 0.2s ease;
}
.home-map__content .heading--md, .home-map__content p, .home-map__content .ui-btn {
  opacity: 0;
  transform: translateY(15px);
}
.home-map.animated .home-map__content .heading--md, .home-map.animated .home-map__content p, .home-map.animated .home-map__content .ui-btn {
  opacity: 1;
  transform: translateY(0);
}
.home-map.animated .home-map__key {
  height: 60%;
  overflow: visible;
}
.home-map.animated .home-map__key:before {
  opacity: 1;
}
.home-map.animated .home-map__key__inner span {
  opacity: 1;
  transform: translateY(0);
}
.home-map__illustrate {
  width: 100%;
}
.home-map__key {
  display: none;
}

.events-offers {
  padding-bottom: 60px;
}
.events-offers .container {
  padding-left: 0;
  padding-right: 0;
}
.events-offers .container .col {
  flex: 1;
  text-align: center;
  position: relative;
}
.events-offers .container .col > .heading {
  position: relative;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0 0 25px;
  z-index: 10;
  font-size: 22px;
}
.events-offers .container .col--events {
  margin-bottom: 60px;
  padding-bottom: 60px;
}
.events-offers .container .col--events:before {
  content: "";
  width: calc(100% - 30px);
  bottom: 0;
  left: 15px;
  height: 1px;
  background: #1d1d1b;
  position: absolute;
}
.events-offers .container .col--events:after {
  content: "";
  width: 15px;
  bottom: -7.5px;
  left: calc(50% - 7.5px);
  height: 15px;
  background: #1d1d1b;
  position: absolute;
}
.events-offers .owl-item {
  animation-duration: 1.5s;
}
.events-offers__item {
  display: block;
}
.events-offers__item .image {
  width: 100%;
  padding-bottom: 55%;
}
.events-offers__item .content {
  padding: 30px 15px;
}
.events-offers__item .content .heading {
  line-height: 1.3;
}

@media only screen and (min-width: 460px) {
  .units-selector .filter-items .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-hero__slider .slide__content {
    padding: 40px 65px;
  }
}
@media only screen and (min-width: 768px) {
  .home-hero__slider .slide {
    height: calc(100vh - 200px);
  }
  .home-hero__slider .slide__content {
    padding: 40px 80px;
    top: -15px;
    width: 650px;
  }
  .home-hero__slider .slide__content:before, .home-hero__slider .slide__content:after {
    top: -15px;
  }
  .home-hero__slider .slide__content:before {
    border-width: 15px 0 15px 12.5px;
  }
  .home-hero__slider .slide__content:after {
    border-width: 15px 12.5px 15px 0;
  }
  .home-hero__slider .slide__content .heading {
    font-size: 42px;
  }
  .home-hero__slider .slide__content p {
    font-size: 12px;
    font-weight: 300;
  }
  .home-hero__slider .slide .ui-btn {
    margin-top: 50px;
  }

  .intro-block {
    padding: 80px 0;
  }
  .intro-block.animated .intro-block__box p {
    opacity: 1;
    transform: translateY(0);
  }
  .intro-block:before, .intro-block:after {
    height: 80px;
  }
  .intro-block:before {
    top: -40px;
  }
  .intro-block:after {
    bottom: -40px;
    display: block;
  }
  .intro-block__box {
    padding: 40px;
  }
  .intro-block__box:before, .intro-block__box:after {
    height: 25px;
    width: 25px;
    top: calc(50% - 12.5px);
    transform: rotate(45deg);
  }
  .intro-block__box:before {
    left: -11px;
  }
  .intro-block__box:after {
    right: -11px;
    left: auto;
  }
  .intro-block__box__border {
    left: auto;
    height: calc(100% + 60px);
    border: 8px solid #fff;
    width: calc(100% - 100px);
    top: -30px;
  }
  .intro-block__box p {
    font-size: 14px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease-out;
  }

  .home-sectors {
    padding: 80px 0;
    margin-bottom: 0;
  }
  .home-sectors .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .home-sectors__row:not(:last-of-type):not(.home-sectors__row--2) {
    margin-bottom: 60px;
  }
  .home-sectors__row .block.animated .heading--lg, .home-sectors__row .block.animated p, .home-sectors__row .block.animated .ui-btn {
    opacity: 1;
    transform: translateY(0);
  }
  .home-sectors__row .sector-col .heading--lg {
    margin-bottom: 25px;
    transition: opacity 1s ease, transform 0.5s ease;
  }
  .home-sectors__row .sector-col p {
    margin-bottom: 30px;
    transition-delay: 0.4s;
    transition: opacity 1s ease 0.15s, transform 0.5s ease 0.15s;
  }
  .home-sectors__row .sector-col .ui-btn {
    transition: opacity 1s ease 0.3s, transform 0.5s ease 0.3s, color 0.2s ease, background 0.2s ease;
  }
  .home-sectors__row .sector-col .heading--lg, .home-sectors__row .sector-col p, .home-sectors__row .sector-col .ui-btn {
    opacity: 0;
    transform: translateY(15px);
  }
  .home-sectors__row .sector-col--content .block {
    border-bottom: none;
  }
  .home-sectors__row .sector-col--content .block--mobile {
    display: none;
  }
  .home-sectors__row--1 .sector-col--image, .home-sectors__row--3 .sector-col--image {
    width: 80%;
    display: block;
  }
  .home-sectors__row--1 .sector-col--content, .home-sectors__row--3 .sector-col--content {
    width: 45%;
  }
  .home-sectors__row--1 .sector-col--content .block:first-child, .home-sectors__row--3 .sector-col--content .block:first-child {
    display: block;
    margin-bottom: 60px;
  }
  .home-sectors__row--1 .sector-col--image {
    margin-left: -25%;
    position: relative;
  }
  .home-sectors__row--1 .sector-col--image:after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    background: #fff;
    width: 120px;
    height: 100px;
  }
  .home-sectors__row--1 .sector-col--content {
    margin-left: 60px;
  }
  .home-sectors__row--1 .sector-col--content .block:first-child {
    max-width: 420px;
  }
  .home-sectors__row--2 {
    margin-bottom: 85px;
  }
  .home-sectors__row--2:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 80%;
    background: #9d6c58;
    left: -25px;
    bottom: -25px;
    z-index: -1;
    transition: all 1s ease;
    transform: translate(12.5px, -12.5px);
  }
  .home-sectors__row--2.animated:before {
    transform: translate(0, 0);
  }
  .home-sectors__row--2.animated .sector-col {
    transform: translate(0, 0);
  }
  .home-sectors__row--2 .sector-col {
    width: 100%;
    height: 450px;
    margin-right: -25px;
    position: relative;
    padding: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transform: translate(-12.5px, 12.5px);
    transition: all 1s ease;
  }
  .home-sectors__row--2 .sector-col .block {
    text-align: right;
    color: #fff;
    height: auto;
    border-bottom: none;
    display: block;
  }
  .home-sectors__row--2 .sector-col .block:after {
    display: none;
  }
  .home-sectors__row--2 .sector-col .block .ui-btn {
    display: inline-block;
  }
  .home-sectors__row--2 .sector-col .block p {
    max-width: 470px;
    margin-left: auto;
    display: block;
  }
  .home-sectors__row--2 .sector-col .block .heading--lg {
    margin-bottom: 25px;
    font-size: 55px;
  }
  .home-sectors__row--3 .sector-col--image {
    order: 2;
    margin-right: -25%;
    position: relative;
  }
  .home-sectors__row--3 .sector-col--image:after {
    position: absolute;
    content: "";
    top: -1px;
    left: -1px;
    background: #fff;
    width: 120px;
    height: 90px;
  }
  .home-sectors__row--3 .sector-col--content {
    margin-right: 60px;
    position: relative;
    text-align: right;
  }
  .home-sectors__row--3 .sector-col--content .block {
    margin-left: auto;
  }
  .home-sectors__row--3 .sector-col--content .block:first-child {
    max-width: 400px;
  }

  .whats-here-sectors {
    padding: 80px 0;
    margin-bottom: 0;
  }
  .whats-here-sectors .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .whats-here-sectors__row:not(:last-of-type):not(.whats-here-sectors__row--2) {
    margin-bottom: 60px;
  }
  .whats-here-sectors__row .block.animated .heading--lg, .whats-here-sectors__row .block.animated p, .whats-here-sectors__row .block.animated .ui-btn {
    opacity: 1;
    transform: translateY(0);
  }
  .whats-here-sectors__row .sector-col .heading--lg {
    margin-bottom: 25px;
    transition: opacity 1s ease, transform 0.5s ease;
  }
  .whats-here-sectors__row .sector-col p {
    margin-bottom: 30px;
    transition-delay: 0.4s;
    transition: opacity 1s ease 0.15s, transform 0.5s ease 0.15s;
  }
  .whats-here-sectors__row .sector-col .ui-btn {
    transition: opacity 1s ease 0.3s, transform 0.5s ease 0.3s, color 0.2s ease, background 0.2s ease;
  }
  .whats-here-sectors__row .sector-col .heading--lg, .whats-here-sectors__row .sector-col p, .whats-here-sectors__row .sector-col .ui-btn {
    opacity: 0;
    transform: translateY(15px);
  }
  .whats-here-sectors__row .sector-col--content .block {
    border-bottom: none;
  }
  .whats-here-sectors__row .sector-col--content .block--mobile {
    display: none;
  }
  .whats-here-sectors__row--1 .sector-col--image, .whats-here-sectors__row--3 .sector-col--image {
    width: 80%;
    display: block;
  }
  .whats-here-sectors__row--1 .sector-col--content, .whats-here-sectors__row--3 .sector-col--content {
    width: 45%;
  }
  .whats-here-sectors__row--1 .sector-col--content .block:first-child, .whats-here-sectors__row--3 .sector-col--content .block:first-child {
    display: block;
    margin-bottom: 60px;
  }
  .whats-here-sectors__row--1 .sector-col--image {
    margin-left: -25%;
    position: relative;
  }
  .whats-here-sectors__row--1 .sector-col--image:after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    background: #fff;
    width: 120px;
    height: 100px;
  }
  .whats-here-sectors__row--1 .sector-col--content {
    margin-left: 60px;
  }
  .whats-here-sectors__row--1 .sector-col--content .block:first-child {
    max-width: 420px;
  }
  .whats-here-sectors__row--2 {
    margin-bottom: 85px;
  }
  .whats-here-sectors__row--2:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 80%;
    background: #9d6c58;
    left: -25px;
    bottom: -25px;
    z-index: -1;
    transition: all 1s ease;
    transform: translate(12.5px, -12.5px);
  }
  .whats-here-sectors__row--2.animated:before {
    transform: translate(0, 0);
  }
  .whats-here-sectors__row--2.animated .sector-col {
    transform: translate(0, 0);
  }
  .whats-here-sectors__row--2 .sector-col {
    width: 100%;
    height: 450px;
    margin-right: -25px;
    position: relative;
    padding: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transform: translate(-12.5px, 12.5px);
    transition: all 1s ease;
  }
  .whats-here-sectors__row--2 .sector-col .block {
    text-align: left;
    color: #fff;
    height: auto;
    border-bottom: none;
    display: block;
    width: auto;
    margin-left: auto;
  }
  .whats-here-sectors__row--2 .sector-col .block:after {
    display: none;
  }
  .whats-here-sectors__row--2 .sector-col .block .ui-btn {
    display: inline-block;
  }
  .whats-here-sectors__row--2 .sector-col .block p {
    max-width: 470px;
    margin-left: auto;
    display: block;
  }
  .whats-here-sectors__row--2 .sector-col .block .heading--lg {
    margin-bottom: 25px;
    font-size: 55px;
    max-width: 470px;
  }
  .whats-here-sectors__row--3 .sector-col--image {
    order: 2;
    margin-right: -25%;
    position: relative;
  }
  .whats-here-sectors__row--3 .sector-col--image:after {
    position: absolute;
    content: "";
    top: -1px;
    left: -1px;
    background: #fff;
    width: 120px;
    height: 90px;
  }
  .whats-here-sectors__row--3 .sector-col--content {
    margin-right: 60px;
    position: relative;
    text-align: right;
  }
  .whats-here-sectors__row--3 .sector-col--content .block {
    margin-left: auto;
  }
  .whats-here-sectors__row--3 .sector-col--content .block:first-child {
    max-width: 400px;
  }

  .units-selector .filter-menu .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
  }
  .units-selector .filter-menu .container:before {
    position: absolute;
    content: "";
    left: 15px;
    top: 0;
    height: 1px;
    width: calc(100% - 30px);
    background: #e1e1e1;
  }
  .units-selector .filter-menu__title {
    margin: 0 30px 0 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: normal;
  }
  .units-selector .filter-menu__title br {
    display: block;
  }
  .units-selector .filter-menu__list {
    flex: 1;
  }
  .units-selector .filter-menu__list:before {
    display: none;
  }
  .units-selector .filter-menu__list ul {
    padding-right: 30px;
    overflow: hidden;
  }
  .units-selector .filter-menu__list ul .filter-btn {
    padding: 40px 0;
  }
  .units-selector .filter-menu__list ul .filter-btn:not(:last-of-type) {
    margin-right: 0;
  }
  .units-selector .filter-menu__list ul .filter-btn:first-child {
    margin-left: 0;
  }
  .units-selector .filter-menu__list ul .filter-btn:last-child {
    padding-right: 0;
  }

  .home-map {
    padding: 60px 0 80px;
  }

  .events-offers {
    padding-bottom: 80px;
  }
  .events-offers .container {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }
  .events-offers .container .col {
    flex: 1;
    overflow: hidden;
    text-align: center;
    position: relative;
  }
  .events-offers .container .col > .heading {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 25px 30px;
    z-index: 10;
  }
  .events-offers .container .col--events {
    margin-right: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .events-offers .container .col--events:before, .events-offers .container .col--events:after {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .home-hero__slider .owl-dots {
    left: auto;
    right: 80px;
    flex-direction: column;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .home-hero__slider .owl-dots .owl-dot:not(:last-of-type) {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .intro-block {
    padding: 100px 0;
  }
  .intro-block__box {
    padding: 60px;
  }

  .home-sectors {
    padding: 100px 0;
  }
  .home-sectors__row--1 .sector-col--content .block--small, .home-sectors__row--3 .sector-col--content .block--small {
    padding: 0;
    height: 250px;
  }
  .home-sectors__row--1 .sector-col--content .block--small:after, .home-sectors__row--3 .sector-col--content .block--small:after {
    height: 80px;
    width: 80px;
  }

  .units-selector .filter-menu .ui-btn {
    display: block;
  }
  .units-selector .filter-menu ul {
    padding-right: 40px;
  }

  .events-offers {
    padding-bottom: 100px;
  }
  .events-offers__item:hover .image:after {
    opacity: 1;
  }
  .events-offers__item .image {
    position: relative;
  }
  .events-offers__item .image:after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    transition: all 0.6s ease;
    opacity: 0;
  }
  .events-offers .container {
    position: relative;
  }
  .events-offers .container:before {
    content: "";
    height: 236px;
    width: 7.5px;
    border-right: 1px solid #1d1d1b;
    border-top: 15px solid #1d1d1b;
    border-bottom: 15px solid #1d1d1b;
    right: 50%;
    top: 0;
    position: absolute;
    box-sizing: border-box;
  }
  .events-offers .container:after {
    content: "";
    height: 236px;
    width: 7.5px;
    border-left: 1px solid #1d1d1b;
    border-top: 15px solid #1d1d1b;
    border-bottom: 15px solid #1d1d1b;
    left: 50%;
    top: 0;
    position: absolute;
    box-sizing: border-box;
  }
  .events-offers .container .col--events {
    margin-right: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-hero .video-overlay {
    display: block;
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 110%;
    background: rgba(0, 0, 0, 0.4);
    top: -5%;
    left: 0;
  }
  .home-hero video {
    display: block;
    position: absolute;
    min-width: 100%;
    min-height: 110%;
    top: -5%;
    left: 0;
  }
  .home-hero__slider .slide .slide__bg-wrap--video .slide__bg {
    display: none;
  }

  .home-sectors__row--1 .float {
    content: "";
    position: absolute;
    width: 25px;
    height: 120px;
    top: 50px;
    right: 0;
    background: #7980a9;
    z-index: 0;
  }
  .home-sectors__row--1 .sector-col--content:after {
    left: calc(100% - 60px);
    content: "";
    position: absolute;
    width: 999em;
    height: 1px;
    top: 85px;
    background: #1d1d1b;
    z-index: 1;
  }
  .home-sectors__row--3 .float {
    content: "";
    position: absolute;
    width: 25px;
    height: 120px;
    top: 50px;
    left: 0;
    background: #009faf;
    z-index: 0;
  }
  .home-sectors__row--3 .sector-col--content:after {
    content: "";
    position: absolute;
    width: 999em;
    height: 1px;
    top: 85px;
    background: #1d1d1b;
    z-index: 1;
    right: calc(100% - 60px);
  }

  .units-selector .filter-menu__title {
    margin-right: 60px;
  }
  .units-selector .filter-menu ul {
    padding-right: 60px;
  }
  .units-selector .filter-menu .ui-btn {
    margin-right: 30px;
  }
  .units-selector .filter-items__slider .owl-dots {
    padding: 0;
    margin-top: 80px;
    width: 100%;
    height: 55px;
    background: #fff;
  }
  .units-selector .filter-items__slider .owl-dots .owl-dot {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    top: -26px;
  }

  .home-map {
    padding: 40px 0 80px;
  }
  .home-map__key {
    display: block;
    position: absolute;
    height: 8px;
    overflow: hidden;
    width: calc((100% - 650px) / 2 - 60px);
    top: 50%;
    transform: translateY(-50%);
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .home-map__key:before {
    content: "";
    position: absolute;
    border: 8px solid #e1e1e1;
    width: calc(100% + 45px);
    height: 250px;
    z-index: -1;
    opacity: 0;
    top: 50%;
    transition: all 2s ease;
  }
  .home-map__key__inner {
    border: 6px solid #1d1d1b;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .home-map__key__inner span {
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0;
    transition: all 1s ease;
    transform: translateY(15px);
  }
  .home-map__key__inner span:first-child {
    margin-bottom: 20px;
    transition-delay: 0.6s;
  }
  .home-map__key__inner span:nth-child(2) {
    transition-delay: 0.7s;
    margin-bottom: 20px;
  }
  .home-map__key__inner span:nth-child(3) {
    transition-delay: 0.8s;
  }
  .home-map__key--left {
    left: 15px;
    text-align: left;
  }
  .home-map__key--left:before {
    right: 0;
    transform: translateY(-50%);
  }
  .home-map__key--left .home-map__key__inner {
    border-right: 0;
  }
  .home-map__key--left .home-map__key__inner span {
    padding-left: 35px;
    position: relative;
  }
  .home-map__key--left .home-map__key__inner span:before {
    content: "";
    left: 0;
    height: 1px;
    background: #1d1d1b;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 20px;
  }
  .home-map__key--right {
    right: 15px;
    text-align: right;
  }
  .home-map__key--right:before {
    left: 0;
    transform: translateY(-50%);
  }
  .home-map__key--right .home-map__key__inner {
    border-left: 0;
  }
  .home-map__key--right .home-map__key__inner span {
    padding-right: 35px;
    position: relative;
  }
  .home-map__key--right .home-map__key__inner span:before {
    content: "";
    right: 0;
    height: 1px;
    background: #1d1d1b;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 20px;
  }

  .events-offers .container:before, .events-offers .container:after {
    height: 280px;
  }
  .events-offers .container .col--events {
    margin-right: 60px;
    padding-right: 60px;
  }
  .events-offers__item .content {
    padding: 30px;
  }
}
@media only screen and (min-width: 1441px) {
  .events-offers .container:before, .events-offers .container:after {
    height: 335.5px;
  }
}
.events-block {
  width: 100%;
}
.events-block__image .date {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 80px;
  width: 80px;
  align-items: center;
  justify-content: center;
  color: #009faf;
  text-transform: uppercase;
  font-weight: 600;
}
.events-block__image .date span {
  width: 20px;
  height: 1px;
  background: #cecece;
  margin: 5px 0;
}

.events-wrap {
  padding: 40px 0 20px;
  background: #e9e9e9 url(../png/background-filter.png) center/2000px;
  position: relative;
}
.events-wrap__featured {
  margin-bottom: 60px;
}
.events-wrap .heading--md {
  margin-bottom: 30px;
}
.events-wrap .events-block {
  margin-bottom: 30px;
  background: #fff;
}
.events-wrap .events-block__image {
  width: 100%;
  padding-bottom: 60%;
  align-self: normal;
  position: relative;
  display: block;
}
.events-wrap .events-block__content {
  flex: 1;
  padding: 30px;
}
.events-wrap .events-block__content .title {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.events-wrap .events-block__content .ui-btn {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 500px) {
  .events-wrap {
    padding: 60px 0 40px;
  }
  .events-wrap .events-block__content {
    padding: 50px 40px;
  }
  .events-wrap .events-block__content .ui-btn {
    margin-top: 40px;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (min-width: 650px) {
  .events-wrap .events-block {
    display: flex;
    align-items: center;
  }
  .events-wrap .events-block__image {
    padding-bottom: 0;
    width: 45%;
  }
}
@media only screen and (min-width: 768px) {
  .events-wrap {
    padding: 60px 0 20px;
  }
  .events-wrap__featured {
    margin-bottom: 80px;
  }
  .events-wrap .events-block {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .events-wrap {
    padding: 80px 0 40px;
  }
  .events-wrap .heading--md {
    margin-bottom: 40px;
  }
  .events-wrap .events-block__content {
    padding: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .events-wrap {
    padding: 80px 0 40px;
  }
  .events-wrap .events-block__image {
    width: 400px;
  }
  .events-wrap .events-block__content {
    padding: 80px 60px;
    display: flex;
    align-items: center;
  }
  .events-wrap .events-block__content__copy {
    border-right: 1px solid #cecece;
    padding-right: 60px;
  }
  .events-wrap .events-block__content .ui-btn {
    width: auto;
    margin-top: 0;
    white-space: nowrap;
    margin-left: 60px;
  }
}
#wpgmza_map {
  float: none !important;
}

.contact-wrap {
  background: url(../png/background-filter.png) center center/2000px rgb(228, 228, 228);
  padding: 40px 0;
}
.contact-wrap__left, .contact-wrap__right {
  margin-bottom: 40px;
}
.contact-wrap__left .content-block, .contact-wrap__right .content-block {
  padding: 30px 30px 0;
  border-bottom: 6px solid #cecece;
  background: #fff;
}
.contact-wrap__left .content-block {
  height: 100%;
}
.contact-wrap__right .content-block:first-child {
  margin-bottom: 30px;
}
.contact-wrap__full {
  width: 100%;
  border-bottom: 6px solid #cecece;
  background: #fff;
  padding: 30px;
  margin-bottom: 60px;
}
.contact-wrap__form {
  width: 100%;
  border-bottom: 6px solid #cecece;
  background: #fff;
  padding: 30px;
}
.contact-wrap__form .heading--sm, .contact-wrap__form .sub-title {
  margin-bottom: 15px;
}
.contact-wrap__form .heading--sm {
  color: #009faf;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) {
  width: 100%;
  margin-bottom: 15px;
  display: inline-block;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text], .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email], .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) textarea {
  height: 45px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: transparent;
  border: 3px solid #e0dfdf;
  padding: 0 15px;
  width: 100%;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]::-webkit-input-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]::-webkit-input-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) textarea::-webkit-input-placeholder {
  color: #b1b1b1;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]::-moz-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]::-moz-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) textarea::-moz-placeholder {
  color: #b1b1b1;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:-ms-input-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:-ms-input-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) textarea:-ms-input-placeholder {
  color: #b1b1b1;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:-moz-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:-moz-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) textarea:-moz-placeholder {
  color: #b1b1b1;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:focus::-webkit-input-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:focus::-webkit-input-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:focus::-moz-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:focus::-moz-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) textarea:focus::-moz-placeholder {
  color: transparent;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:focus:-ms-input-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:focus:-ms-input-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=text]:focus:-moz-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) input[type=email]:focus:-moz-placeholder, .contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) textarea:focus:-moz-placeholder {
  color: transparent;
}
.contact-wrap__form .wpcf7 .wpcf7-form-control-wrap:not(.your-consent) textarea {
  resize: none;
  padding: 15px;
  height: 150px;
  display: block;
}
.contact-wrap__form .wpcf7 .your-consent {
  flex: 1;
}
.contact-wrap__form .wpcf7 input[type=submit] {
  height: 45px;
  font-size: 14px;
  line-height: 40px;
  padding: 0 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  transition: all 0.2s ease;
  display: inline-block;
  color: #fff;
  background: #009faf;
  border: 2px solid #009faf;
  cursor: pointer;
  width: 100%;
}
.contact-wrap__form .wpcf7 input[type=submit]:not([disabled]):hover {
  color: #009faf;
  background: #fff;
}
.contact-wrap__form .wpcf7 input[type=submit][disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact-wrap__form .wpcf7 .wpcf7-list-item {
  margin: 0;
}
.contact-wrap__form .wpcf7 .wpcf7-acceptance {
  margin-bottom: 20px;
  display: inline-block;
}
.contact-wrap__form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
}
.contact-wrap__form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 12px;
  color: #666;
}
.contact-wrap__form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label span {
  color: #009faf;
}
.contact-wrap__form .wpcf7 .wpcf7-acceptance .wpcf7-list-item input {
  margin: 5px 10px 0 0;
}

@media only screen and (min-width: 768px) {
  .contact-wrap {
    padding: 60px 0;
  }
  .contact-wrap .container {
    display: flex;
    flex-wrap: wrap;
  }
  .contact-wrap__left, .contact-wrap__right {
    width: calc(50% - 15px);
  }
  .contact-wrap__left {
    margin-right: 30px;
    height: 100%;
  }
  .contact-wrap__form .heading--sm, .contact-wrap__form .sub-title {
    margin-bottom: 30px;
  }
  .contact-wrap__form .wpcf7 .form-row {
    display: flex;
    align-items: center;
  }
  .contact-wrap__form .wpcf7 .form-row .your-name {
    margin-right: 15px;
  }
  .contact-wrap__form .wpcf7 input[type=submit] {
    width: auto;
  }
  .contact-wrap__form .wpcf7 .wpcf7-acceptance {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .contact-wrap {
    padding: 80px 0;
  }
  .contact-wrap__left, .contact-wrap__right {
    width: calc(50% - 30px);
    margin-bottom: 60px;
  }
  .contact-wrap__left .content-block, .contact-wrap__right .content-block {
    padding: 40px 40px 10px;
  }
  .contact-wrap__left {
    margin-right: 60px;
    height: auto;
  }
  .contact-wrap__form {
    padding: 40px;
  }
}
.pac-container {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.pac-container:after {
  background-image: none !important;
  height: 0px;
}

.transport-blocks, .whats-here-blocks {
  background: #e9e9e9 url(../png/background-filter.png) center/2000px;
  padding: 40px 0;
  position: relative;
}
.transport-blocks .container, .whats-here-blocks .container {
  position: relative;
  display: flex;
}
.transport-blocks .container:before, .transport-blocks .container:after, .whats-here-blocks .container:before, .whats-here-blocks .container:after {
  width: 15px;
  content: "";
  position: absolute;
  height: calc(85% - 70px);
  top: 7.5%;
  border: 6px solid #cecece;
}
.transport-blocks .container:before, .whats-here-blocks .container:before {
  right: calc(100% + 15px);
  border-right: none;
}
.transport-blocks .container:after, .whats-here-blocks .container:after {
  left: calc(100% + 15px);
  border-left: none;
}
.transport-blocks .container.title:before, .whats-here-blocks .container.title:before {
  content: none;
}
.transport-blocks .container.title:after, .whats-here-blocks .container.title:after {
  content: none;
}
.transport-blocks .transport-slider:not(.owl-carousel), .transport-blocks .whats-here-slider:not(.owl-carousel), .whats-here-blocks .transport-slider:not(.owl-carousel), .whats-here-blocks .whats-here-slider:not(.owl-carousel) {
  display: flex;
}
.transport-blocks .transport-slider:not(.owl-carousel) .item, .transport-blocks .whats-here-slider:not(.owl-carousel) .item, .whats-here-blocks .transport-slider:not(.owl-carousel) .item, .whats-here-blocks .whats-here-slider:not(.owl-carousel) .item {
  flex: 1;
}
.transport-blocks .transport-slider:not(.owl-carousel) .item:first-child, .transport-blocks .whats-here-slider:not(.owl-carousel) .item:first-child, .whats-here-blocks .transport-slider:not(.owl-carousel) .item:first-child, .whats-here-blocks .whats-here-slider:not(.owl-carousel) .item:first-child {
  margin-right: 30px;
}
.transport-blocks .transport-slider .owl-dots, .transport-blocks .whats-here-slider .owl-dots, .whats-here-blocks .transport-slider .owl-dots, .whats-here-blocks .whats-here-slider .owl-dots {
  position: relative;
  display: flex !important;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 40px 0 20px;
}
.transport-blocks .transport-slider .owl-dots .owl-dot, .transport-blocks .whats-here-slider .owl-dots .owl-dot, .whats-here-blocks .transport-slider .owl-dots .owl-dot, .whats-here-blocks .whats-here-slider .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background: #000;
  transform: rotate(45deg);
  opacity: 0.4;
  transition: all 0.2s ease;
  border-radius: 3px;
}
.transport-blocks .transport-slider .owl-dots .owl-dot:not(:last-of-type), .transport-blocks .whats-here-slider .owl-dots .owl-dot:not(:last-of-type), .whats-here-blocks .transport-slider .owl-dots .owl-dot:not(:last-of-type), .whats-here-blocks .whats-here-slider .owl-dots .owl-dot:not(:last-of-type) {
  margin-right: 10px;
}
.transport-blocks .transport-slider .owl-dots .owl-dot.active, .transport-blocks .transport-slider .owl-dots .owl-dot:hover, .transport-blocks .whats-here-slider .owl-dots .owl-dot.active, .transport-blocks .whats-here-slider .owl-dots .owl-dot:hover, .whats-here-blocks .transport-slider .owl-dots .owl-dot.active, .whats-here-blocks .transport-slider .owl-dots .owl-dot:hover, .whats-here-blocks .whats-here-slider .owl-dots .owl-dot.active, .whats-here-blocks .whats-here-slider .owl-dots .owl-dot:hover {
  opacity: 1;
}
.transport-blocks .transport-slider .item, .transport-blocks .whats-here-slider .item, .whats-here-blocks .transport-slider .item, .whats-here-blocks .whats-here-slider .item {
  padding: 40px 30px;
  background: #fff;
  border: 1px solid #e1e1e1;
  height: 100%;
  position: relative;
}
.transport-blocks .transport-slider .item--link, .transport-blocks .whats-here-slider .item--link, .whats-here-blocks .transport-slider .item--link, .whats-here-blocks .whats-here-slider .item--link {
  padding: 40px 30px 75px;
}
.transport-blocks .transport-slider .item--category .item_image, .transport-blocks .whats-here-slider .item--category .item_image, .whats-here-blocks .transport-slider .item--category .item_image, .whats-here-blocks .whats-here-slider .item--category .item_image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.transport-blocks .transport-slider .item--category .item_image a, .transport-blocks .whats-here-slider .item--category .item_image a, .whats-here-blocks .transport-slider .item--category .item_image a, .whats-here-blocks .whats-here-slider .item--category .item_image a {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.transport-blocks .transport-slider .item--category .item_image img, .transport-blocks .whats-here-slider .item--category .item_image img, .whats-here-blocks .transport-slider .item--category .item_image img, .whats-here-blocks .whats-here-slider .item--category .item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.transport-blocks .transport-slider .item--category .item_image .heading, .transport-blocks .whats-here-slider .item--category .item_image .heading, .whats-here-blocks .transport-slider .item--category .item_image .heading, .whats-here-blocks .whats-here-slider .item--category .item_image .heading {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  color: #fff;
}
.transport-blocks .transport-slider .item .image-wrap, .transport-blocks .whats-here-slider .item .image-wrap, .whats-here-blocks .transport-slider .item .image-wrap, .whats-here-blocks .whats-here-slider .item .image-wrap {
  width: 100%;
  height: 250px;
}
.transport-blocks .transport-slider .item .image-wrap img, .transport-blocks .whats-here-slider .item .image-wrap img, .whats-here-blocks .transport-slider .item .image-wrap img, .whats-here-blocks .whats-here-slider .item .image-wrap img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.transport-blocks .transport-slider .item .title-wrap, .transport-blocks .whats-here-slider .item .title-wrap, .whats-here-blocks .transport-slider .item .title-wrap, .whats-here-blocks .whats-here-slider .item .title-wrap {
  margin-bottom: 20px;
  display: flex;
  align-iitems: center;
}
.transport-blocks .transport-slider .item .title-wrap img, .transport-blocks .whats-here-slider .item .title-wrap img, .whats-here-blocks .transport-slider .item .title-wrap img, .whats-here-blocks .whats-here-slider .item .title-wrap img {
  height: 45px;
  width: 45px;
  margin-right: 15px;
}
.transport-blocks .transport-slider .item .title-wrap .heading, .transport-blocks .whats-here-slider .item .title-wrap .heading, .whats-here-blocks .transport-slider .item .title-wrap .heading, .whats-here-blocks .whats-here-slider .item .title-wrap .heading {
  line-height: 1;
  align-self: center;
}
.transport-blocks .transport-slider .item .ui-btn, .transport-blocks .whats-here-slider .item .ui-btn, .whats-here-blocks .transport-slider .item .ui-btn, .whats-here-blocks .whats-here-slider .item .ui-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.transport-blocks .transport-slider .item p:last-of-type, .transport-blocks .whats-here-slider .item p:last-of-type, .whats-here-blocks .transport-slider .item p:last-of-type, .whats-here-blocks .whats-here-slider .item p:last-of-type {
  margin-bottom: 30px;
}
.transport-blocks .whats-here-slider .owl-stage, .whats-here-blocks .whats-here-slider .owl-stage {
  display: flex;
}
.transport-blocks .whats-here-slider .owl-stage .item, .whats-here-blocks .whats-here-slider .owl-stage .item {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100%;
  padding: 0;
}
.transport-blocks .whats-here-slider .owl-stage .item .item_content, .whats-here-blocks .whats-here-slider .owl-stage .item .item_content {
  padding: 40px 30px 75px;
}
.transport-blocks .whats-here-slider .owl-stage .item .title-wrap, .whats-here-blocks .whats-here-slider .owl-stage .item .title-wrap {
  margin-bottom: 20px;
  display: flex;
  align-iitems: center;
}
.transport-blocks .whats-here-slider .owl-stage .item .title-wrap img, .whats-here-blocks .whats-here-slider .owl-stage .item .title-wrap img {
  height: 45px;
  width: 45px;
  margin-right: 15px;
}
.transport-blocks .whats-here-slider .owl-stage .item .title-wrap .heading, .whats-here-blocks .whats-here-slider .owl-stage .item .title-wrap .heading {
  line-height: 1;
  align-self: center;
}

.parking {
  padding: 0 0 50px;
}
.parking__inner {
  display: flex;
  flex-direction: column;
}
.parking__inner .image {
  flex: 1;
  position: relative;
  width: calc(100% + 30px);
  left: -15px;
  padding-bottom: 60%;
  margin-bottom: 50px;
}
.parking__inner .content .NCP-logo {
  width: 120px;
  margin-bottom: 20px;
}
.parking__inner .content .content-block {
  margin-bottom: 40px;
}
.parking__inner .content .heading {
  margin-bottom: 25px;
  line-height: 1;
}

.map-wrapper {
  position: relative;
  max-width: 100vw;
  margin-left: auto;
}
.map-wrapper .container {
  position: relative;
}
.map-wrapper .address-form {
  background: #fff;
  padding: 10px 0 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-wrapper .address-form > *:not(.address-form__search) {
  display: none;
}
.map-wrapper .address-form__search {
  display: flex;
  width: 100%;
}
.map-wrapper .address-form input {
  height: 45px;
  line-height: 45px;
}
.map-wrapper .address-form input[type=text] {
  flex: 1;
  width: 100%;
  border: 5px solid #e1e1e1;
  padding: 0 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.map-wrapper .address-form input[type=text]::-webkit-input-placeholder {
  color: #cacaca;
}
.map-wrapper .address-form input[type=text]::-moz-placeholder {
  color: #cacaca;
}
.map-wrapper .address-form input[type=text]:-ms-input-placeholder {
  color: #cacaca;
}
.map-wrapper .address-form input[type=text]:-moz-placeholder {
  color: #cacaca;
}
.map-wrapper .address-form input[type=text]:focus::-webkit-input-placeholder {
  color: transparent;
}
.map-wrapper .address-form input[type=text]:focus::-moz-placeholder {
  color: transparent;
}
.map-wrapper .address-form input[type=text]:focus:-ms-input-placeholder {
  color: transparent;
}
.map-wrapper .address-form input[type=text]:focus:-moz-placeholder {
  color: transparent;
}
.map-wrapper .address-form .ui-btn-wrap {
  position: relative;
}
.map-wrapper .address-form .ui-btn-wrap:after {
  position: absolute;
  content: "";
  left: 10px;
  top: 0;
  width: 45px;
  height: 45px;
  background: url("../svg/right-arrow-white.svg") center/24px no-repeat;
}
.map-wrapper .address-form .ui-btn-wrap .ui-btn {
  background: #000;
  color: #fff;
  display: inline-block;
  margin-left: 10px;
  font-size: 0;
  width: 45px;
  padding: 0;
  -webkit-appearance: none;
  border-radius: 0;
}
.map-wrapper .address-form .ui-btn-wrap .ui-btn:hover {
  background: #009faf;
}
.map-wrapper .address-form #geo-loc {
  cursor: pointer;
  display: inline-block;
  height: 45px;
  width: 45px;
  margin-left: 10px;
  border: none;
  background: #000 url("../svg/geo-loc.svg") center/20px no-repeat;
  transition: all 0.2s ease;
}
.map-wrapper .address-form #geo-loc:hover {
  background: #009faf url("../svg/geo-loc.svg") center/20px no-repeat;
}
.map-wrapper .address-form .or {
  padding: 0 30px;
  font-weight: 600;
}
.map-wrapper .address-form .find-us img {
  height: 45px;
}
.map-wrapper #map {
  height: 500px;
}

@media only screen and (min-width: 450px) {
  .map-wrapper .address-form .ui-btn-wrap:after {
    display: none;
  }
  .map-wrapper .address-form .ui-btn-wrap .ui-btn {
    width: auto;
    font-size: 14px;
    padding: 0 30px;
  }
}
@media only screen and (min-width: 600px) {
  .transport-blocks .transport-slider .item, .transport-blocks .whats-here-slider .item, .whats-here-blocks .transport-slider .item, .whats-here-blocks .whats-here-slider .item {
    padding: 50px;
  }
  .transport-blocks .transport-slider .item--link, .transport-blocks .whats-here-slider .item--link, .whats-here-blocks .transport-slider .item--link, .whats-here-blocks .whats-here-slider .item--link {
    padding: 50px 50px 100px;
  }
  .transport-blocks .transport-slider .item .ui-btn, .transport-blocks .whats-here-slider .item .ui-btn, .whats-here-blocks .transport-slider .item .ui-btn, .whats-here-blocks .whats-here-slider .item .ui-btn {
    bottom: 50px;
    left: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .transport-blocks, .whats-here-blocks {
    padding: 60px 0;
  }
  .transport-blocks .transport-slider .owl-dots, .transport-blocks .whats-here-slider .owl-dots, .whats-here-blocks .transport-slider .owl-dots, .whats-here-blocks .whats-here-slider .owl-dots {
    padding-bottom: 0;
  }

  .map-wrapper .address-form {
    flex-direction: row;
  }
  .map-wrapper .address-form > *:not(.address-form__search) {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .transport-blocks, .whats-here-blocks {
    padding: 80px 0;
  }

  .transport-blocks:after {
    width: 1px;
    content: "";
    background: #1d1d1b;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 60px;
    bottom: -40px;
  }

  .parking {
    padding: 90px 0 70px;
  }
  .parking__inner {
    flex-direction: row;
  }
  .parking__inner .image {
    padding-bottom: 0;
    flex: 1;
    margin-right: 40px;
    margin-bottom: 0;
  }
  .parking__inner .image:after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    background: #fff;
    width: 120px;
    height: 70px;
  }
  .parking__inner .content {
    width: 50%;
  }

  .map-wrapper {
    height: 100vh;
    max-height: 700px;
  }
  .map-wrapper .heading--md {
    display: none;
  }
  .map-wrapper .address-form {
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    padding: 20px 30px;
    width: 100%;
  }
  .map-wrapper .address-form .or {
    padding: 0 60px;
  }
  .map-wrapper #map {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .parking {
    padding: 90px 0;
  }
  .parking__inner .image {
    margin-right: 60px;
  }
}
.whats-here-blocks .carousel_title {
  margin: 0 0 3rem;
}

.units-filter-bar {
  background: #005b7f;
  height: 50px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.units-filter-bar .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.units-filter-bar #units-filter {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: absolute;
  top: 100%;
  background: #000;
  width: 100%;
  left: 0;
  padding: 30px 30px 0;
  z-index: 10;
  display: none;
}
.units-filter-bar #units-filter .ui-btn {
  position: relative;
  width: calc(100% + 60px);
  left: -30px;
}
.units-filter-bar #units-filter .ui-btn:hover {
  border-color: #fff;
}
.units-filter-bar #units-filter .filter-wrap {
  flex: 1;
  margin-bottom: 30px;
}
.units-filter-bar #units-filter .filter-wrap.categories--desk {
  display: none;
}
.units-filter-bar #units-filter .filter-wrap.categories--mob input[type=radio] {
  opacity: 0;
  position: absolute;
}
.units-filter-bar #units-filter .filter-wrap.categories--mob input[type=radio]:checked + label {
  color: #009faf;
}
.units-filter-bar #units-filter .filter-wrap.categories--mob input[type=radio]:checked + label:before {
  border-color: #009faf;
  background: url(../svg/tick.svg) center/12px no-repeat;
}
.units-filter-bar #units-filter .filter-wrap.categories--mob input[type=radio] + label {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  width: 100%;
  display: block;
}
.units-filter-bar #units-filter .filter-wrap.categories--mob input[type=radio] + label:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  border: 2px solid #fff;
  top: 5px;
}
.units-filter-bar #units-filter .filter-wrap > .title {
  margin-right: 15px;
  display: none;
}
.units-filter-bar #units-filter .filter-wrap input[type=text], .units-filter-bar #units-filter .filter-wrap select {
  height: 45px;
  width: 100%;
  background: #fff;
  border-radius: 0;
  outline: none;
  border: none;
  -webkit-appearance: none;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0 20px;
}
.units-filter-bar #units-filter .filter-wrap input::-webkit-input-placeholder {
  color: #8a8989;
}
.units-filter-bar #units-filter .filter-wrap input::-moz-placeholder {
  color: #8a8989;
}
.units-filter-bar #units-filter .filter-wrap input:-ms-input-placeholder {
  color: #8a8989;
}
.units-filter-bar #units-filter .filter-wrap input:-moz-placeholder {
  color: #8a8989;
}
.units-filter-bar #units-filter .filter-wrap input:focus::-webkit-input-placeholder {
  color: transparent;
}
.units-filter-bar #units-filter .filter-wrap input:focus::-moz-placeholder {
  color: transparent;
}
.units-filter-bar #units-filter .filter-wrap input:focus:-ms-input-placeholder {
  color: transparent;
}
.units-filter-bar #units-filter .filter-wrap input:focus:-moz-placeholder {
  color: transparent;
}
.units-filter-bar .title {
  width: 50%;
  position: relative;
  background: #000;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.units-filter-bar .title img {
  height: 10px;
  margin-right: 7.5px;
}
.units-filter-bar .title:before {
  right: 100%;
  content: "";
  background: #000;
  height: 100%;
  width: 999em;
  top: 0;
  display: block;
  position: absolute;
}
.units-filter-bar .count {
  text-align: center;
  flex: 1;
}
.units-filter-bar .filter-clear {
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  background: #fff;
  height: 50px;
  color: #000;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.units-filter-bar .filter-clear .far {
  margin-left: 10px;
  font-size: 16px;
}
.units-filter-bar .filter-clear:hover {
  color: #000;
}
.units-filter-bar.filter-open .filter-clear {
  opacity: 1;
  visibility: visible;
}

.units-wrap {
  background: #e9e9e9 url(../png/background-filter.png) center/2000px;
  padding: 40px 0;
}
.units-wrap .container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.units-wrap .no-results {
  font-size: 18px;
  font-weight: 600;
}
.units-wrap .no-results a {
  text-decoration: underline;
  color: #005b7f;
  transition: all 0.2s ease;
}
.units-wrap .no-results a:hover {
  color: #009faf;
}

.unit-item {
  width: 100%;
  background: #fff;
  border: 1px solid #e1e1e1;
  margin-bottom: 15px;
  transition: transform 0.15s ease, opacity 1.5s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.02);
}
.unit-item:hover {
  transform: translateY(-5px);
}
.unit-item:hover .unit-item__details .arrow {
  color: #009faf;
}
.unit-item:hover .unit-item__details .arrow svg path {
  fill: #009faf;
}
.unit-item__logo {
  height: 180px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 25%;
}
.unit-item__logo .heading {
  padding: 0 30px;
  width: 100%;
}
.unit-item__logo img {
  max-width: 100%;
  align-self: center;
  max-height: 60%;
  width: auto !important;
  margin: 0 auto;
}
.unit-item__details {
  text-align: center;
  padding: 0 30px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.unit-item__details__top {
  position: relative;
  padding: 20px 0;
  margin-bottom: 30px;
}
.unit-item__details__top:before, .unit-item__details__top:after {
  width: 100px;
  height: 1px;
  content: "";
  position: absolute;
  background: #d7d7d7;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.unit-item__details__top:before {
  top: 0;
}
.unit-item__details__top:after {
  bottom: 0;
}
.unit-item__details .title {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: 38px;
  line-height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.unit-item__details .times {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.unit-item__details .times .open {
  color: #8dc63f;
}
.unit-item__details .times .closed {
  color: #f44336;
}
.unit-item__details .arrow {
  display: flex;
  align-items: center;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  flex-direction: column;
  font-size: 10px;
  transition: all 0.2s ease;
}
.unit-item__details .arrow svg {
  content: "";
  position: relative;
  height: 20px;
  width: 20px;
  margin-top: 10px;
}
.unit-item__details .arrow svg path {
  transition: all 0.2s ease;
}

@media only screen and (min-width: 500px) and (max-width: 1199px) {
  .units-wrap .unit-item__details .title {
    display: none;
  }
}
@media only screen and (min-width: 500px) and (max-width: 767px) {
  .units-wrap .unit-item {
    width: calc(50% - 7.5px);
  }
  .units-wrap .unit-item:not(:nth-of-type(2n + 2)) {
    margin-right: 15px;
  }

  .unit-item__logo img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .units-wrap .unit-item {
    width: calc(33.3% - 10px);
    opacity: 0;
  }
  .units-wrap .unit-item.animated {
    opacity: 1;
  }
  .units-wrap .unit-item:nth-of-type(3n + 2) {
    transition: transform 0.3s ease, opacity 1.5s ease 0.1s;
  }
  .units-wrap .unit-item:nth-of-type(3n + 3) {
    transition: transform 0.3s ease, opacity 1.5s ease 0.2s;
  }
  .units-wrap .unit-item:not(:nth-of-type(3n + 3)) {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .units-filter-bar .filter-clear {
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    position: relative;
    top: 0;
    right: 0;
    width: auto;
    background: transparent;
    color: #fff;
    opacity: 1;
    visibility: visible;
    margin-left: 30px;
  }
  .units-filter-bar .title {
    padding-right: 80px;
    margin-right: 40px;
    width: auto;
  }
  .units-filter-bar .title:after {
    right: -8px;
    height: 20px;
    border-radius: 3px;
    width: 20px;
    content: "";
    background: #000;
    position: absolute;
    top: calc(50% - 10px);
    transform: rotate(45deg);
  }
  .units-filter-bar .title img {
    display: none;
  }
  .units-filter-bar .count {
    text-align: left;
    flex: unset;
    margin-right: 60px;
  }
  .units-filter-bar #units-filter {
    display: flex;
    position: relative;
    background: transparent;
    flex-direction: row;
    padding: 0;
    top: 0;
    align-items: center;
  }
  .units-filter-bar #units-filter .ui-btn {
    display: none;
  }
  .units-filter-bar #units-filter .filter-wrap {
    margin-bottom: 0;
  }
  .units-filter-bar #units-filter .filter-wrap select {
    background-image: url(../svg/arrow-down.svg);
    background-position: 95% 50%;
    background-repeat: no-repeat;
    background-size: 14px;
    cursor: pointer;
  }
  .units-filter-bar #units-filter .filter-wrap input[type=text], .units-filter-bar #units-filter .filter-wrap select {
    height: 32.5px;
  }
  .units-filter-bar #units-filter .filter-wrap.categories--mob {
    display: none;
  }
  .units-filter-bar #units-filter .filter-wrap.categories--desk {
    display: block;
    margin-right: 30px;
  }

  .units-wrap {
    padding: 60px 0;
  }
  .units-wrap .unit-item {
    width: calc(25% - 12.5px);
  }
  .units-wrap .unit-item:nth-of-type(4n + 2) {
    transition: transform 0.3s ease, opacity 1.5s ease 0.1s;
  }
  .units-wrap .unit-item:nth-of-type(4n + 3) {
    transition: transform 0.3s ease, opacity 1.5s ease 0.2s;
  }
  .units-wrap .unit-item:nth-of-type(4n + 4) {
    transition: transform 0.3s ease, opacity 1.5s ease 0.3s;
  }
  .units-wrap .unit-item:not(:nth-of-type(4n + 4)) {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .units-wrap .unit-item {
    width: calc(25% - 22.5px);
    margin-bottom: 30px;
  }
  .units-wrap .unit-item:not(:nth-of-type(4n + 4)) {
    margin-right: 30px;
  }
  .units-wrap .unit-item__details .title {
    display: initial;
  }
}
.no-results {
  font-size: 18px;
  font-weight: 600;
}
.no-results a {
  text-decoration: underline;
  color: #005b7f;
  transition: all 0.2s ease;
}
.no-results a:hover {
  color: #009faf;
}

.unit-wrap .unit-top {
  margin-bottom: 90px;
}
.unit-wrap .unit-top.animated .unit-top__content .unit-logo-wrap:after {
  width: calc(415px - 100%);
}
.unit-wrap .unit-top.animated .unit-top__content .unit-logo-wrap .unit-logo {
  opacity: 1;
  transform: translateY(0);
}
.unit-wrap .unit-top .container {
  display: flex;
  flex-direction: column;
  position: relative;
}
.unit-wrap .unit-top__content {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 55px;
}
.unit-wrap .unit-top__content .unit-logo-wrap {
  position: relative;
  display: inline-block;
  height: 220px;
  width: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
}
.unit-wrap .unit-top__content .unit-logo-wrap .unit-logo {
  max-width: 70%;
  max-height: 60%;
  display: block;
  width: 100%;
  opacity: 0;
  transform: translateY(15px);
  transition: all 1s ease;
  margin-top: -40px;
}
.unit-wrap .unit-top__content .content-wrap {
  background: #fff;
  width: 100%;
}
.unit-wrap .unit-top__content .content-wrap .unit-intro {
  position: relative;
  margin: 40px 0 60px;
}
.unit-wrap .unit-top__content .content-wrap .unit-intro__float {
  position: absolute;
  content: "";
  top: -100px;
  height: 30px;
  width: 160px;
  right: calc(60% - 160px);
  background: #000;
}
.unit-wrap .unit-top__content .content-wrap .unit-intro__content p:not(:last-of-type) {
  margin-bottom: 30px;
}
.unit-wrap .unit-top__content .content-wrap .unit-intro__content p strong {
  font-weight: 600;
}
.unit-wrap .unit-top__content .content-wrap .unit-intro__content a {
  font-weight: 600;
  color: #009faf;
}
.unit-wrap .unit-top__content .content-wrap .unit-intro__content.overflow {
  max-height: 250px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
}
.unit-wrap .unit-top__content .content-wrap .unit-intro__content.overflow:after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "READ MORE";
  color: #009faf;
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all 0.2s ease;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9) 70%, rgb(255, 255, 255) 100%);
}
.unit-wrap .unit-top__content .content-wrap .unit-intro__content.overflow--open {
  max-height: 1000px;
}
.unit-wrap .unit-top__content .content-wrap .unit-intro__content.overflow--open:after {
  opacity: 0;
}
.unit-wrap .unit-top__content .content-wrap .contact-details {
  border-bottom: 1px solid #ebebeb;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .title {
  text-align: center;
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #ebebeb;
  justify-content: space-between;
  padding-bottom: 15px;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .title p {
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .title .open, .unit-wrap .unit-top__content .content-wrap .contact-details .title .closed {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-size: 12px;
  justify-content: center;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .title .open:before, .unit-wrap .unit-top__content .content-wrap .contact-details .title .closed:before {
  content: "";
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: -1px;
  margin-right: 5px;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .title .open:before {
  background: #8dc63f;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .title .closed:before {
  background: #f44336;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap {
  padding: 20px 0 50px;
  align-items: center;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .divider {
  width: 100%;
  height: 1px;
  background: #ebebeb;
  display: block;
  margin: 40px 0;
  align-self: normal;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column {
  font-weight: 300;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column strong {
  font-weight: 600;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column li {
  display: flex;
  align-items: center;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column li .fas {
  font-size: 13px;
  color: #ccc;
  width: 35px;
  text-align: center;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column li .fas.fa-phone {
  transform: scale(-1) rotate(-90deg);
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column li a {
  transition: all 0.2s ease;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column li a:hover {
  color: #009faf;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column li.website a {
  font-weight: 600;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column--contact-details li {
  margin-left: -10px;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column--contact-details li:not(:last-of-type) {
  margin-bottom: 10px;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column--social {
  text-align: center;
  display: flex;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column--social li .fab {
  font-size: 20px;
  color: #ccc;
  transition: all 0.2s ease;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column--social li:not(:last-of-type) {
  margin-right: 20px;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column--social li a {
  margin: 0 auto;
}
.unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column--social li a:hover .fab {
  color: #009faf;
}
.unit-wrap .unit-top__right {
  z-index: 0;
  width: 100%;
  right: 15px;
}
.unit-wrap .unit-top__right .unit-gallery-slider {
  display: block;
  width: 65%;
  background: #ccc;
  position: absolute;
  height: 275px;
  top: 0;
  right: 0;
}
.unit-wrap .unit-top__right .unit-gallery-slider .owl-dots {
  display: none;
}
.unit-wrap .unit-top__right .unit-gallery-slider .item, .unit-wrap .unit-top__right .unit-gallery-slider .owl-stage, .unit-wrap .unit-top__right .unit-gallery-slider .owl-stage-outer, .unit-wrap .unit-top__right .unit-gallery-slider .owl-item {
  height: 100%;
}
.unit-wrap .unit-top__right .unit-gallery-slider .item {
  position: relative;
  overflow: hidden;
}
.unit-wrap .unit-top__right .unit-gallery-slider .item__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  animation: scale-in 1.5s forwards;
  -webkit-animation: scale-in 1.5s forwards;
}
.unit-wrap .unit-top__right .wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}
.unit-wrap .unit-top__right .wrap .social-desktop {
  display: none;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap {
  width: 100%;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times {
  background: #009faf;
  width: 100%;
  padding: 40px 30px;
  color: #fff;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times .heading {
  margin-bottom: 40px;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times ul li {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times ul li .times span {
  display: inline-block;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times ul li .times span:nth-child(2) {
  text-align: center;
  width: 20px;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times ul li .times span:nth-child(3) {
  text-align: right;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times ul li .times span i {
  font-size: 8px;
  letter-spacing: 0.1em;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times ul li.current {
  color: #000;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .disclaimer {
  margin-top: 20px;
  display: flex;
  color: #8f8e8e;
  font-size: 10px;
  align-items: flex-start;
  order: 3;
}
.unit-wrap .unit-top__right .wrap .opening-times-wrap .disclaimer:before {
  line-height: 1;
  content: "\f05a";
  font-weight: 600;
  font-size: 30px;
  margin-right: 15px;
  font-family: "Font Awesome 5 Free";
}
.unit-wrap .unit-bottom {
  margin-bottom: 40px;
}
.unit-wrap .unit-bottom.animated .container .unit-illustrate img {
  opacity: 1;
}
.unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer > span, .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer .pointer__inner {
  opacity: 1;
  transform: translateY(0);
}
.unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--warehouse-building:after {
  height: 15vw;
}
.unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--deansgate-mews:after {
  height: 12vw;
}
.unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--deansgate-terrace:after {
  height: 22vw;
}
.unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--great-northern-square:after {
  height: 35vw;
}
.unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--leisure-box:after {
  height: 8vw;
}
.unit-wrap .unit-bottom .container .unit-illustrate {
  width: 100%;
  align-self: flex-start;
  position: relative;
  margin-bottom: 30px;
  max-width: 650px;
  margin: 0 auto 30px;
}
.unit-wrap .unit-bottom .container .unit-illustrate img {
  max-width: 100%;
  opacity: 0;
  transition: opacity 2s ease;
  z-index: 0;
  position: relative;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer {
  position: absolute;
  z-index: 1;
  top: -30px;
  text-align: center;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer:after {
  content: "";
  background: #000;
  position: absolute;
  left: 50%;
  width: 1px;
  top: calc(100% + 15px);
  height: 0;
  transition: all 0.5s ease 1s;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer > span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  display: block;
  transition: all 0.4s linear 0.6s;
  opacity: 0;
  transform: translateY(10px);
  display: none;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer__inner {
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  padding: 5px 10px;
  text-align: left;
  display: flex;
  line-height: 1;
  text-align: center;
  align-items: center;
  position: relative;
  background: #000;
  transition: all 0.4s linear 0.6s;
  opacity: 0;
  transform: translateY(10px);
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer__inner:after {
  height: 10px;
  border-radius: 2px;
  width: 10px;
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
  bottom: -4px;
  z-index: -1;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer__inner span {
  background: #fff;
  display: flex;
  width: 22px;
  height: 22px;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  color: #000;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer__inner p {
  font-size: 12px;
  line-height: 1.3;
  flex: 1;
  max-width: 120px;
  letter-spacing: 0.1em;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer--warehouse-building {
  left: 35%;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer--deansgate-mews {
  right: 0;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer--deansgate-terrace {
  left: 65%;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer--great-northern-square {
  left: 0;
}
.unit-wrap .unit-bottom .container .unit-illustrate .pointer--leisure-box {
  left: 62.5%;
}
.unit-wrap .unit-bottom .container .getting-here {
  max-width: 480px;
  margin: 0 auto;
}
.unit-wrap .unit-bottom .container .getting-here .ui-btn {
  width: calc(100% - 60px);
  margin-left: 30px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}
.unit-wrap .unit-bottom .container .getting-here .ui-btn:before, .unit-wrap .unit-bottom .container .getting-here .ui-btn:after {
  z-index: -1;
  height: 15px;
  border-radius: 3px;
  width: 15px;
  content: "";
  background: #000;
  position: absolute;
  top: calc(50% - 7.5px);
  transform: rotate(45deg);
}
.unit-wrap .unit-bottom .container .getting-here .ui-btn:before {
  left: -7.5px;
}
.unit-wrap .unit-bottom .container .getting-here .ui-btn:after {
  right: -7.5px;
}
.unit-wrap .unit-bottom .container .getting-here p {
  color: #5f5f5f;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
}
.unit-wrap--entertainment .unit-top__content .content-wrap .unit-intro__float {
  background: #ad9f91;
}
.unit-wrap--entertainment .unit-bottom .container .unit-illustrate .pointer > span {
  color: #ad9f91;
}
.unit-wrap--entertainment .unit-bottom .container .unit-illustrate .pointer__inner {
  background: #ad9f91;
}
.unit-wrap--entertainment .unit-bottom .container .unit-illustrate .pointer__inner:after {
  background: #ad9f91;
}
.unit-wrap--entertainment .unit-bottom .container .unit-illustrate .pointer__inner span {
  color: #ad9f91;
}
.unit-wrap--food-drink .unit-top__content .content-wrap .unit-intro__float {
  background: #7c7eaa;
}
.unit-wrap--food-drink .unit-bottom .container .unit-illustrate .pointer > span {
  color: #7c7eaa;
}
.unit-wrap--food-drink .unit-bottom .container .unit-illustrate .pointer__inner {
  background: #7c7eaa;
}
.unit-wrap--food-drink .unit-bottom .container .unit-illustrate .pointer__inner:after {
  background: #7c7eaa;
}
.unit-wrap--food-drink .unit-bottom .container .unit-illustrate .pointer__inner span {
  color: #7c7eaa;
}
.unit-wrap--shopping .unit-top__content .content-wrap .unit-intro__float {
  background: #986b58;
}
.unit-wrap--shopping .unit-bottom .container .unit-illustrate .pointer > span {
  color: #986b58;
}
.unit-wrap--shopping .unit-bottom .container .unit-illustrate .pointer__inner {
  background: #986b58;
}
.unit-wrap--shopping .unit-bottom .container .unit-illustrate .pointer__inner:after {
  background: #986b58;
}
.unit-wrap--shopping .unit-bottom .container .unit-illustrate .pointer__inner span {
  color: #986b58;
}
.unit-wrap--lifestyle .unit-top__content .content-wrap .unit-intro__float {
  background: #019bad;
}
.unit-wrap--lifestyle .unit-bottom .container .unit-illustrate .pointer > span {
  color: #019bad;
}
.unit-wrap--lifestyle .unit-bottom .container .unit-illustrate .pointer__inner {
  background: #019bad;
}
.unit-wrap--lifestyle .unit-bottom .container .unit-illustrate .pointer__inner:after {
  background: #019bad;
}
.unit-wrap--lifestyle .unit-bottom .container .unit-illustrate .pointer__inner span {
  color: #019bad;
}
.unit-wrap--property .unit-top__content .content-wrap .unit-intro__float {
  background: #017399;
}
.unit-wrap--property .unit-bottom .container .unit-illustrate .pointer > span {
  color: #017399;
}
.unit-wrap--property .unit-bottom .container .unit-illustrate .pointer__inner {
  background: #017399;
}
.unit-wrap--property .unit-bottom .container .unit-illustrate .pointer__inner:after {
  background: #017399;
}
.unit-wrap--property .unit-bottom .container .unit-illustrate .pointer__inner span {
  color: #017399;
}

@media only screen and (min-width: 500px) {
  .unit-wrap .unit-top__content .unit-logo-wrap {
    height: 295px;
  }
  .unit-wrap .unit-top__right .unit-gallery-slider {
    height: 350px;
  }
}
@media only screen and (min-width: 768px) {
  .unit-wrap .unit-top {
    margin-bottom: 140px;
  }
  .unit-wrap .unit-top__content {
    padding-top: 80px;
    z-index: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .unit-wrap .unit-top__content .unit-logo-wrap {
    height: 370px;
    z-index: 2;
  }
  .unit-wrap .unit-top__content .unit-logo-wrap .unit-logo {
    max-width: 150px;
  }
  .unit-wrap .unit-top__content .content-wrap .unit-intro {
    margin: 60px 0 80px;
  }
  .unit-wrap .unit-top__content .content-wrap .unit-intro__float {
    top: -130px;
    z-index: 10;
  }
  .unit-wrap .unit-top__content .content-wrap .contact-details {
    height: 520px;
    border-bottom: none;
  }
  .unit-wrap .unit-top__right {
    z-index: 1;
  }
  .unit-wrap .unit-top__right .unit-gallery-slider {
    height: 450px;
  }
  .unit-wrap .unit-top__right .unit-gallery-slider .owl-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
  }
  .unit-wrap .unit-top__right .unit-gallery-slider .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    background: #fff;
    transform: rotate(45deg);
    opacity: 0.4;
    transition: all 0.2s ease;
    border-radius: 3px;
  }
  .unit-wrap .unit-top__right .unit-gallery-slider .owl-dots .owl-dot:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .unit-wrap .unit-top__right .unit-gallery-slider .owl-dots .owl-dot.active, .unit-wrap .unit-top__right .unit-gallery-slider .owl-dots .owl-dot:hover {
    opacity: 1;
  }
  .unit-wrap .unit-top__right .wrap .opening-times-wrap {
    top: -425px;
    position: absolute;
    width: 380px;
    right: 15px;
  }
  .unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times {
    padding: 50px;
  }
  .unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times .heading {
    text-align: center;
  }
  .unit-wrap .unit-bottom {
    margin-bottom: 60px;
  }
  .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--warehouse-building:after {
    height: 120px;
  }
  .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--deansgate-mews:after {
    height: 95px;
  }
  .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--deansgate-terrace:after {
    height: 175px;
  }
  .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--great-northern-square:after {
    height: 240px;
  }
  .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--leisure-box:after {
    height: 80px;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer {
    transform: translateX(-50%);
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer__inner p {
    max-width: 150px;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer--warehouse-building {
    left: 50%;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer--deansgate-mews {
    left: 85%;
    right: auto;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer--deansgate-terrace {
    left: 80%;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer--great-northern-square {
    left: 10%;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer--leisure-box {
    left: 72%;
  }
}
@media only screen and (min-width: 992px) {
  .unit-wrap .unit-top__content .unit-logo-wrap {
    justify-content: flex-start;
  }
  .unit-wrap .unit-top__content .unit-logo-wrap .unit-logo {
    max-width: 200px;
    max-height: 200px;
    width: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .unit-wrap .unit-top {
    margin-bottom: 120px;
  }
  .unit-wrap .unit-top .container {
    flex-direction: row;
  }
  .unit-wrap .unit-top__content {
    padding: 0;
    width: 50%;
    z-index: 1;
  }
  .unit-wrap .unit-top__content .unit-logo-wrap {
    height: auto;
    justify-content: flex-start;
    width: auto;
    display: inline-block;
  }
  .unit-wrap .unit-top__content .unit-logo-wrap:after {
    position: absolute;
    content: "";
    width: 0;
    background: #000;
    left: calc(100% + 60px);
    bottom: calc(50% - 10px);
    height: 1px;
    transition: all 0.75s ease 0.3s;
  }
  .unit-wrap .unit-top__content .unit-logo-wrap .unit-logo, .unit-wrap .unit-top__content .unit-logo-wrap h3 {
    max-height: none;
    padding: 80px 0 60px 0;
    margin-top: 0;
    max-width: 150px;
  }
  .unit-wrap .unit-top__content .content-wrap .unit-intro {
    padding: 50px 100px 60px 0;
    margin: 0;
  }
  .unit-wrap .unit-top__content .content-wrap .unit-intro__float {
    position: absolute;
    content: "";
    bottom: 60px;
    height: 200px;
    width: 40px;
    top: -40px;
    right: -20px;
  }
  .unit-wrap .unit-top__content .content-wrap .contact-details {
    height: auto;
    border-bottom: 1px solid #ebebeb;
  }
  .unit-wrap .unit-top__content .content-wrap .contact-details .wrap {
    display: flex;
    padding: 20px 0;
    padding-right: 30px;
  }
  .unit-wrap .unit-top__content .content-wrap .contact-details .wrap .divider {
    width: 1px;
    height: auto;
    margin: 15px 35px;
  }
  .unit-wrap .unit-top__content .content-wrap .contact-details .wrap .divider--social {
    display: none;
  }
  .unit-wrap .unit-top__content .content-wrap .contact-details .wrap .column--social {
    display: none;
  }
  .unit-wrap .unit-top__content .content-wrap .contact-details .title {
    padding-right: 45px;
  }
  .unit-wrap .unit-top__right {
    z-index: 0;
    width: calc(50% + 140px);
    position: absolute;
    right: 15px;
    top: -40px;
    height: calc(100% + 40px);
  }
  .unit-wrap .unit-top__right .unit-gallery-slider {
    height: calc(100% - 120px);
    position: relative;
    width: 100%;
  }
  .unit-wrap .unit-top__right .wrap {
    margin-left: 155px;
  }
  .unit-wrap .unit-top__right .wrap .opening-times-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 200px);
  }
  .unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times {
    padding: 60px 45px;
  }
  .unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times ul li:not(:last-of-type) {
    margin-bottom: 25px;
  }
  .unit-wrap .unit-top__right .wrap .opening-times-wrap .opening-times ul li {
    font-size: 12px;
  }
  .unit-wrap .unit-top__right .wrap .social-desktop {
    background: #000;
    height: 120px;
    width: 200px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .unit-wrap .unit-top__right .wrap .social-desktop li a {
    color: #fff;
    font-size: 16px;
    padding: 0 15px;
    transition: all 0.2s ease;
  }
  .unit-wrap .unit-top__right .wrap .social-desktop li a:hover {
    color: #009faf;
  }
  .unit-wrap .unit-bottom {
    margin-bottom: 80px;
  }
  .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--warehouse-building:after {
    height: 120px;
  }
  .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--deansgate-mews:after {
    height: 95px;
  }
  .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--deansgate-terrace:after {
    height: 170px;
  }
  .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--great-northern-square:after {
    height: 240px;
  }
  .unit-wrap .unit-bottom.animated .container .unit-illustrate .pointer--leisure-box:after {
    height: 60px;
  }
  .unit-wrap .unit-bottom .container {
    position: relative;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate {
    margin-left: 0;
    width: calc(50% + 200px);
    max-width: none;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate img {
    max-width: calc(100% - 100px);
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer > span {
    display: block;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer--warehouse-building {
    left: 45%;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer--deansgate-mews {
    left: 76%;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer--deansgate-terrace {
    left: 70%;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer--great-northern-square {
    left: 10.3%;
  }
  .unit-wrap .unit-bottom .container .unit-illustrate .pointer--leisure-box {
    left: 65%;
  }
  .unit-wrap .unit-bottom .container .getting-here {
    position: absolute;
    right: 15px;
    bottom: 40px;
    width: 370px;
  }
  .unit-wrap .unit-bottom .container .getting-here:before {
    content: "";
    position: absolute;
    width: 105px;
    height: 1px;
    background: #000;
    right: calc(100% + 30px);
    top: 24px;
  }
  .unit-wrap .unit-bottom .container .getting-here .ui-btn {
    margin-left: 0;
    width: 100%;
  }
}
.news-block {
  border-bottom: 6px solid #cecece;
  margin-bottom: 30px;
  background: #fff;
  display: block;
  transition: all 0.15s ease;
  position: relative;
  overflow: hidden;
}
.news-block:hover {
  transform: translateY(-5px);
}
.news-block:hover .news-block__content .title {
  color: #009faf;
}
.news-block__featured {
  height: 150px;
  width: 150px;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  overflow: hidden;
}
.news-block__featured span {
  position: absolute;
  display: block;
  width: 180px;
  padding: 8px 0;
  background-color: #009faf;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  left: 7px;
  top: 35px;
  transform: rotate(45deg);
  font-weight: 600;
  font-size: 0.925em;
}
.news-block__image {
  width: 100%;
  padding-bottom: 60%;
  position: relative;
  overflow: hidden;
}
.news-block__image div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.15s ease;
  will-change: transform;
}
.news-block__content {
  padding: 30px;
}
.news-block__content .heading {
  position: absolute;
  top: -38px;
  background: #fff;
  padding: 20px 30px;
  left: 0;
}
.news-block__content .title {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.news-block__content .date {
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 0;
  color: #009faf;
}

.news-wrap {
  padding: 40px 0;
  background: #e9e9e9 url(../png/background-filter.png) center/2000px;
  margin-bottom: 60px;
  position: relative;
}
.news-wrap--all {
  margin-bottom: 0;
}
.news-wrap__top .news-block--featured {
  border-bottom: none;
}
.news-wrap__top .news-block--featured .news-block__image {
  width: 100%;
  padding-bottom: 60%;
  height: auto;
}
.news-wrap__top .news-block--featured .news-block__content {
  position: relative;
  flex: 1;
  padding: 30px;
  border-bottom: 6px solid #cecece;
}
.news-wrap__top .news-block--featured .news-block__content .ui-btn {
  margin-top: 30px;
  width: 100%;
  text-align: center;
  display: none;
}

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

.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -22.5px;
  z-index: 1;
}
.pagination__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 60px;
}
.pagination__wrap:before, .pagination__wrap:after {
  width: 200px;
  content: "";
  background: #009faf;
  height: 1px;
  position: absolute;
  top: calc(50% - 1px);
}
.pagination__wrap:before {
  right: 100%;
}
.pagination__wrap:after {
  left: 100%;
}
.pagination__wrap > *:not(:last-child) {
  margin-right: 25px;
}

@media only screen and (min-width: 500px) {
  .news-wrap {
    padding: 60px 0 40px;
    margin-bottom: 80px;
  }
  .news-wrap .news-block__content {
    padding: 50px 40px;
  }
  .news-wrap .news-block__content .heading {
    padding: 20px 40px;
  }
  .news-wrap .news-block--featured .news-block__content {
    padding: 50px 40px;
  }
}
@media only screen and (min-width: 768px) {
  .news-block {
    width: calc(50% - 7.5px);
  }

  .news-wrap {
    padding: 60px 0;
  }
  .news-wrap__top, .news-wrap__bottom {
    display: flex;
    flex-wrap: wrap;
  }
  .news-wrap .news-block--featured {
    margin-right: 15px;
  }
  .news-wrap__bottom .news-block:not(:nth-of-type(2n + 2)) {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .news-wrap {
    padding: 80px 0 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .news-wrap {
    padding: 80px 0;
  }
  .news-wrap .news-block {
    width: calc(33.3% - 20px);
  }
  .news-wrap .news-block .heading {
    top: 0;
    padding: 0;
    position: relative;
    margin-bottom: 20px;
  }
  .news-wrap .news-block__content {
    padding: 30px;
  }
  .news-wrap__top .news-block--featured {
    display: flex;
    width: calc(66.6% - 10px);
    margin-right: 30px;
    border-bottom: none;
  }
  .news-wrap__top .news-block--featured .news-block__image {
    width: calc(50% - 15px);
    height: auto;
  }
  .news-wrap__top .news-block--featured .news-block__content {
    padding: 40px;
  }
  .news-wrap__top .news-block--featured .news-block__content .ui-btn {
    display: block;
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: calc(100% - 80px);
    text-align: center;
  }
  .news-wrap__bottom .news-block:not(:nth-of-type(2n + 2)) {
    margin-right: 0;
  }
  .news-wrap__bottom .news-block:not(:nth-of-type(3n + 3)) {
    margin-right: 30px;
  }
}
.masthead-single__image {
  width: calc(100% + 30px);
  left: -15px;
  position: relative;
  padding-bottom: 60%;
}
.masthead-single__content {
  box-sizing: border-box;
  display: block;
  z-index: 1;
  position: relative;
  padding: 30px 0;
}
.masthead-single__content .heading {
  background: #fff;
  margin-bottom: 20px;
  line-height: 1;
}
.masthead-single__content .date {
  letter-spacing: 0.02em;
  font-size: 16px;
  color: #009faf;
  display: inline-block;
  position: relative;
  font-weight: 600;
}
.masthead-single__content .date span {
  font-size: 12px;
  color: #1d1d1b;
}

.single-content {
  padding: 40px 0 80px;
  background: #e9e9e9 url(../png/background-filter.png) center/2000px;
}
.single-content .content-block {
  position: relative;
  background: #fff;
  padding: 30px;
}
.single-content .content-block .social {
  display: flex;
  right: 0;
  border-top: 1px solid #ebebeb;
  padding-top: 30px;
  margin-top: 40px;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}
.single-content .content-block .social span {
  color: #ccc;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 20px;
}
.single-content .content-block .social a {
  font-size: 14px;
  background: #009faf;
  color: #fff;
  height: 30px;
  width: 30px;
  border-radius: 35px;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-content .content-block .social a:not(:last-child) {
  margin-right: 10px;
}
.single-content .content-block .social a:hover {
  background: #1d1d1b;
}

.content-block .page-gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 30px;
}
.content-block .page-gallery__item {
  width: calc(50% - 7.5px);
  padding-bottom: calc(50% - 7.5px);
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}
.content-block .page-gallery__item:before, .content-block .page-gallery__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.content-block .page-gallery__item:before {
  background: rgba(0, 0, 0, 0.6);
}
.content-block .page-gallery__item:after {
  background: url("../svg/enlarge.svg") center/30px no-repeat;
}
.content-block .page-gallery__item:hover:before, .content-block .page-gallery__item:hover:after {
  opacity: 1;
  visibility: visible;
}
.content-block .page-gallery__item:not(:nth-of-type(2n)) {
  margin-right: 15px;
}
.content-block .page-gallery__item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  margin-bottom: 0;
  width: 100%;
  font-size: 0.925em;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .masthead-single__content {
    padding: 50px;
  }

  .single-content {
    padding: 60px 0 100px;
  }
  .single-content .content-block {
    padding: 50px;
  }

  .content-block .page-gallery-title {
    margin-top: 60px;
  }
  .content-block .page-gallery {
    margin-bottom: 0;
  }
  .content-block .page-gallery__item {
    width: calc(33.3% - 20px);
    padding-bottom: calc(33.3% - 20px);
    margin-bottom: 30px;
  }
  .content-block .page-gallery__item:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
  .content-block .page-gallery__item:not(:nth-of-type(3n)) {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .masthead-single {
    margin-top: -40px;
    margin-bottom: 50px;
    pointer-events: none;
  }
  .masthead-single__inner {
    display: flex;
    position: relative;
    min-height: 300px;
  }
  .masthead-single__image {
    width: 50%;
    position: absolute;
    right: 0;
    height: 100%;
    padding-bottom: 0;
    top: 0;
    left: auto;
  }
  .masthead-single__content {
    width: 50%;
    padding: 30px 0;
    padding-right: 60px;
    margin-top: 60px;
    padding-bottom: 80px;
  }
  .masthead-single__content:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ebebeb;
    z-index: 1;
  }

  .single-content .content-block {
    padding: 90px;
  }

  .content-block .page-gallery__item {
    width: calc(25% - 22.5px);
    padding-bottom: calc(25% - 22.5px);
    margin-bottom: 30px;
  }
  .content-block .page-gallery__item:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .content-block .page-gallery__item:not(:nth-of-type(4n)) {
    margin-right: 30px;
  }
}
.history-blocks .history-row.animated .history-row__image {
  opacity: 1;
}
.history-blocks .history-row.animated .history-row__content {
  transform: translateX(0);
  opacity: 1;
}
.history-blocks .history-row.animated:nth-child(odd) .history-row__image, .history-blocks .history-row.animated:nth-child(even) .history-row__image {
  transform: translateX(0);
}
.history-blocks .history-row__image {
  flex: 1;
  padding-bottom: 70%;
  opacity: 0;
  transition: opacity 1.5s ease, transform 1s ease;
}
.history-blocks .history-row__content {
  transform: translateY(15px);
  transition: opacity 1.5s ease 0.2s, transform 1s ease 0.2s;
  opacity: 0;
}
.history-blocks .history-row__content > *:last-child {
  margin-bottom: 0;
}

.timeline {
  padding: 40px 0 20px;
  background: #e9e9e9 url(../png/background-filter.png) center/2000px;
}
.timeline .heading--md {
  margin-bottom: 40px;
  text-align: center;
}
.timeline__wrap {
  position: relative;
}
.timeline__wrap:before {
  content: "";
  position: absolute;
  left: 25px;
  margin-left: -1px;
  height: calc(100% - 140px);
  width: 2px;
  background: #000;
  display: block;
}
.timeline__wrap .timeline-row {
  position: relative;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 60px;
}
.timeline__wrap .timeline-row.animated .timeline-row__content {
  opacity: 1;
  transform: translateY(0);
}
.timeline__wrap .timeline-row.animated .wheel {
  transform: rotate(180deg);
}
.timeline__wrap .timeline-row .wheel {
  height: 50px;
  width: 50px;
  position: absolute;
  left: 0;
  transition: all 1s ease;
  visibility: visible !important;
}
.timeline__wrap .timeline-row__content {
  width: 100%;
  padding-left: 80px;
  opacity: 0;
  transform: translateY(60px);
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 1s ease;
}
.timeline__wrap .timeline-row__content .heading {
  height: 50px;
  background: url("../svg/sign_empty.svg") center/contain no-repeat;
  line-height: 52px;
  margin-bottom: 10px;
  text-align: center;
}
.timeline__wrap .timeline-row__content p:not(.heading) {
  font-weight: 600;
  margin: 0 auto;
  padding-left: 15px;
}

@media only screen and (max-width: 459px) {
  .history-blocks .history-row__content {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .history-blocks .history-row .container {
    padding-left: 0;
    padding-right: 0;
  }
  .history-blocks .history-row__content {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 460px) {
  .timeline__wrap .timeline-row {
    text-align: center;
  }
  .timeline__wrap .timeline-row__content {
    margin: 0 auto;
  }
  .timeline__wrap .timeline-row__content .heading {
    margin-bottom: 20px;
  }
  .timeline__wrap .timeline-row__content p:not(.heading) {
    max-width: 500px;
  }
}
@media only screen and (min-width: 600px) {
  .timeline__wrap .timeline-row__content {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .history-blocks {
    padding: 15px 0;
  }
  .history-blocks .history-row__image {
    padding-bottom: 60%;
  }
  .history-blocks .history-row__content {
    padding: 60px 40px;
  }

  .timeline__wrap:before {
    left: 50%;
    margin-left: -1px;
    height: calc(100% - 200px);
  }
  .timeline__wrap .timeline-row {
    height: 200px;
    padding-bottom: 0;
  }
  .timeline__wrap .timeline-row .wheel {
    left: calc(50% - 25px);
  }
  .timeline__wrap .timeline-row__content {
    width: 40%;
    margin: 0;
  }
  .timeline__wrap .timeline-row__content p:not(.heading) {
    max-width: none;
  }
  .timeline__wrap .timeline-row:nth-child(even) .timeline-row__content {
    margin-left: auto;
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) {
  .history-blocks {
    padding: 0;
  }
  .history-blocks .history-row {
    padding: 80px 0;
  }
  .history-blocks .history-row .container {
    display: flex;
    align-items: center;
  }
  .history-blocks .history-row:nth-child(odd) .container {
    flex-direction: row-reverse;
  }
  .history-blocks .history-row:nth-child(odd) .history-row__content {
    padding: 0 40px 0 0;
  }
  .history-blocks .history-row:nth-child(odd) .history-row__image {
    margin: 0 0 0 40px;
    transform: translateX(30px);
  }
  .history-blocks .history-row:nth-child(even) {
    background: #e9e9e9 url(../png/background-filter.png) center/2000px;
  }
  .history-blocks .history-row:nth-child(even) .history-row__content {
    padding: 0 0 0 40px;
  }
  .history-blocks .history-row:nth-child(even) .history-row__image {
    margin: 0 40px 0 0;
    transform: translateX(-30px);
  }
  .history-blocks .history-row__image {
    flex: 1;
    min-height: 360px;
    padding-bottom: 0;
  }
  .history-blocks .history-row__content {
    width: 50%;
  }
  .history-blocks .history-row__content > *:last-child {
    margin-bottom: 0;
  }

  .timeline {
    padding: 80px 0 40px;
    background: none;
  }
  .timeline .heading--md {
    margin-bottom: 60px;
  }
  .timeline__wrap .timeline-row__content {
    width: 45%;
  }
  .timeline__wrap .timeline-row__content p:not(.heading) {
    max-width: 85%;
  }
}
.future-posts {
  padding: 40px 0;
  background: #e9e9e9 url(../png/background-filter.png) center/2000px;
  position: relative;
}
.future-posts:not(.has-slider):not(.future-posts--commercial) {
  padding: 40px 0 60px;
}
.future-posts:not(.has-slider) .future-posts__slider {
  display: flex;
}
.future-posts:not(.has-slider) .future-posts__slider .news-block {
  height: auto;
}
.future-posts:not(.has-slider) .future-posts__slider .news-block:not(:last-of-type) {
  margin-right: 30px;
}
.future-posts:not(.future-posts--commercial):after {
  height: 40px;
  width: 1px;
  content: "";
  background: #1d1d1b;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -20px;
}
.future-posts .container {
  position: relative;
}
.future-posts__slider .owl-stage-outer {
  padding: 10px 0 0;
}
.future-posts__slider .owl-dots {
  position: relative;
  padding: 40px 0 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.future-posts__slider .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background: #000;
  transform: rotate(45deg);
  opacity: 0.4;
  transition: all 0.2s ease;
  border-radius: 3px;
}
.future-posts__slider .owl-dots .owl-dot:not(:last-of-type) {
  margin-right: 10px;
}
.future-posts__slider .owl-dots .owl-dot.active, .future-posts__slider .owl-dots .owl-dot:hover {
  opacity: 1;
}
.future-posts__slider .news-block {
  width: 100%;
  margin-bottom: 0;
}
.future-posts__slider .owl-stage {
  display: flex;
}
.future-posts__slider .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.future-posts__slider .news-block {
  height: 100%;
}
.future-posts__slider .news-block__content {
  flex-grow: 1;
}

.future-intro {
  padding: 70px 0 50px;
  text-align: center;
}
.future-intro.animated .heading--md, .future-intro.animated p, .future-intro.animated .ui-btn {
  opacity: 1;
  transform: translateY(0);
}
.future-intro .heading--md {
  transition: opacity 1s ease, transform 0.5s ease;
}
.future-intro p {
  line-height: 1.6;
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto 30px;
  transition-delay: 0.4s;
  transition: opacity 1s ease 0.15s, transform 0.5s ease 0.15s;
}
.future-intro .ui-btn {
  color: #fff;
  transition: opacity 1s ease 0.3s, transform 0.5s ease 0.3s, color 0.2s ease, background 0.2s ease;
}
.future-intro .ui-btn:hover {
  color: #009faf;
}
.future-intro .heading--md, .future-intro p, .future-intro .ui-btn {
  opacity: 0;
  transform: translateY(15px);
}

.future-register {
  background: url(../png/background-filter.png) center center/2000px rgb(228, 228, 228);
  padding: 60px 0;
}
.future-register p {
  max-width: 700px;
  margin: 0 auto;
}
.future-register form {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 40px 30px;
  position: relative;
  border: 3px solid #cecece;
}
.future-register form:before, .future-register form:after {
  height: 20px;
  width: 20px;
  content: "";
  background: #fff;
  position: absolute;
  left: calc(50% - 10px);
  transform: rotate(45deg);
}
.future-register form:before {
  top: -14px;
  border-radius: 4px 0 0 0;
  border-left: 3px solid #cecece;
  border-top: 3px solid #cecece;
}
.future-register form:after {
  bottom: -14px;
  border-radius: 0 0 4px 0;
  border-bottom: 3px solid #cecece;
  border-right: 3px solid #cecece;
}
.future-register form .form-title {
  margin-bottom: 30px;
  text-align: center;
}
.future-register form .form-title p {
  display: none;
}
.future-register form .form-row br {
  display: none;
}
.future-register form .form-row--first {
  margin-bottom: 15px;
}
.future-register form .form-row .wpcf7-form-control-wrap {
  flex: 1;
  display: block;
}
.future-register form .form-row .wpcf7-form-control-wrap:not(:last-of-type) {
  margin-bottom: 15px;
}
.future-register form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.future-register form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
}
.future-register form .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 10px;
  color: #666;
}
.future-register form .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label span {
  color: #fff;
}
.future-register form .wpcf7-acceptance .wpcf7-list-item input {
  margin: 2px 10px 0 0;
}
.future-register form input[type=submit] {
  height: 45px;
  font-size: 14px;
  line-height: 40px;
  padding: 0 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  transition: all 0.2s ease;
  display: inline-block;
  color: #fff;
  background: #009faf;
  border: 2px solid #009faf;
  cursor: pointer;
  width: 100%;
}
.future-register form input[type=submit]:hover {
  color: #009faf;
  background: #fff;
}
.future-register form input[type=text], .future-register form input[type=email] {
  height: 45px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: transparent;
  border: 3px solid #e0dfdf;
  padding: 0 15px;
  color: #fff;
  width: 100%;
}
.future-register form input[type=text]::-webkit-input-placeholder, .future-register form input[type=email]::-webkit-input-placeholder {
  color: #b1b1b1;
}
.future-register form input[type=text]::-moz-placeholder, .future-register form input[type=email]::-moz-placeholder {
  color: #b1b1b1;
}
.future-register form input[type=text]:-ms-input-placeholder, .future-register form input[type=email]:-ms-input-placeholder {
  color: #b1b1b1;
}
.future-register form input[type=text]:-moz-placeholder, .future-register form input[type=email]:-moz-placeholder {
  color: #b1b1b1;
}
.future-register form input[type=text]:focus::-webkit-input-placeholder, .future-register form input[type=email]:focus::-webkit-input-placeholder {
  color: transparent;
}
.future-register form input[type=text]:focus::-moz-placeholder, .future-register form input[type=email]:focus::-moz-placeholder {
  color: transparent;
}
.future-register form input[type=text]:focus:-ms-input-placeholder, .future-register form input[type=email]:focus:-ms-input-placeholder {
  color: transparent;
}
.future-register form input[type=text]:focus:-moz-placeholder, .future-register form input[type=email]:focus:-moz-placeholder {
  color: transparent;
}

@media only screen and (min-width: 500px) and (max-width: 650px) {
  .future-posts.has-slider .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 650px) {
  .future-posts:not(.has-slider) .future-posts__slider .news-block {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .future-posts {
    padding: 60px 0;
  }
  .future-posts:not(.has-slider):not(.future-posts--commercial) {
    padding: 60px 0 80px;
  }
  .future-posts:not(.future-posts--commercial):after {
    height: 60px;
    bottom: -40px;
  }
  .future-posts__slider .owl-dots {
    padding-bottom: 0;
  }

  .future-intro {
    padding: 90px 0 70px;
  }

  .future-register form .form-title .heading {
    margin-bottom: 10px;
  }
  .future-register form .form-title p {
    display: block;
  }
  .future-register form .form-row {
    display: flex;
  }
  .future-register form .form-row .wpcf7-form-control-wrap:not(:last-of-type) {
    margin-bottom: 0;
    margin-right: 15px;
  }
  .future-register form input[type=submit] {
    width: auto;
  }
}
@media only screen and (min-width: 992px) {
  .future-posts {
    padding: 80px 0;
  }
  .future-posts:not(.has-slider):not(.future-posts--commercial) {
    padding: 80px 0 100px;
  }

  .future-register form {
    padding: 50px 60px;
  }
  .future-register form:before, .future-register form:after {
    height: 25px;
    width: 25px;
    left: auto;
    top: calc(50% - 12.5px);
  }
  .future-register form:before {
    left: -16px;
    border-radius: 0 0 0 4px;
    border-left: 3px solid #cecece;
    border-bottom: 3px solid #cecece;
    border-top: none;
  }
  .future-register form:after {
    right: -16px;
    border-radius: 0 4px 0 0;
    border-top: 3px solid #cecece;
    border-right: 3px solid #cecece;
    border-bottom: none;
  }
}
@media only screen and (min-width: 1100px) {
  .future-posts.has-slider .container:before, .future-posts.has-slider .container:after {
    height: calc(85% - 55px);
  }
  .future-posts .container:before, .future-posts .container:after {
    width: 15px;
    content: "";
    position: absolute;
    height: 85%;
    top: 7.5%;
    border: 6px solid #cecece;
  }
  .future-posts .container:before {
    right: calc(100% + 15px);
    border-right: none;
  }
  .future-posts .container:after {
    left: calc(100% + 15px);
    border-left: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1329px) {
  .future-posts .container:before, .future-posts .container:after {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .future-posts:not(.has-slider) .future-posts__slider .news-block {
    width: 33.3%;
  }
}
@media only screen and (min-width: 1330px) {
  .future-posts .container:before, .future-posts .container:after {
    display: block;
  }
  .future-posts .container:before {
    right: calc(100% + 30px);
  }
  .future-posts .container:after {
    left: calc(100% + 30px);
  }
}
.error404__content {
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.error404__content:before {
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  position: absolute;
  bottom: calc(100% - 1px);
  background: #ebebeb;
}
.error404__content .heading--lg {
  font-size: 120px;
  margin-bottom: 40px;
  color: #005b7f;
}
.error404__content a {
  color: #009faf;
  font-weight: 400;
}

.staff-offers {
  padding: 30px 0;
  background: #f1f0f0;
}
.staff-offers__single {
  background: #fff;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid #dcdcdc;
  padding: 0 15px 20px 15px;
}
.staff-offers__single .image-wrap {
  height: 110px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}
.staff-offers__single .image-wrap:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 4px;
  background: #009faf;
}
.staff-offers__single .image-wrap img {
  max-height: 65px;
  max-width: 120px;
}
.staff-offers__single ul {
  list-style: disc;
  padding-left: 15px;
}
.staff-offers__single ul, .staff-offers__single p {
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .staff-offers {
    padding: 60px 0 20px;
  }
  .staff-offers .container {
    display: flex;
    flex-wrap: wrap;
  }
  .staff-offers__single {
    width: calc(50% - 15px);
    padding: 0 30px 20px 30px;
  }
  .staff-offers__single:nth-of-type(2n + 1) {
    margin-right: 30px;
  }
  .staff-offers__single:after {
    width: calc(100% - 40px);
    left: 20px;
  }
  .staff-offers__single ul, .staff-offers__single p {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .staff-offers__single {
    width: calc(33.3% - 20px);
  }
  .staff-offers__single:nth-of-type(2n + 1) {
    margin-right: 0;
  }
  .staff-offers__single:nth-of-type(3n + 1), .staff-offers__single:nth-of-type(3n + 2) {
    margin-right: 30px;
  }
}
.masthead-single--whats-here .masthead-single__image {
  padding-bottom: 70%;
  width: 100%;
  left: 0;
}

.whats-here-units-slider-wrap {
  position: relative;
}
.whats-here-units-slider-wrap .container {
  padding-left: 0;
  padding-right: 0;
}
.whats-here-units-slider-wrap .whats-here-units-slider {
  position: static;
}
.whats-here-units-slider-wrap .whats-here-units-slider .owl-stage-outer {
  padding: 10px 0 0;
}
.whats-here-units-slider-wrap .whats-here-units-slider .owl-dots {
  padding: 40px 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whats-here-units-slider-wrap .whats-here-units-slider .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background: rgba(0, 0, 0, 0.5);
  transform: rotate(45deg);
  border-radius: 3px;
  position: relative;
  transition: all 0.4s ease;
}
.whats-here-units-slider-wrap .whats-here-units-slider .owl-dots .owl-dot:not(:last-of-type) {
  margin-right: 10px;
}
.whats-here-units-slider-wrap .whats-here-units-slider .owl-dots .owl-dot.active {
  background: #1d1d1b;
}

@media only screen and (min-width: 460px) {
  .whats-here-units-slider-wrap .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .masthead-single--whats-here {
    pointer-events: auto;
    margin-top: 0;
  }
  .masthead-single--whats-here .masthead-single__image {
    width: 50%;
    padding-bottom: 0;
    left: auto;
  }
}
@media only screen and (min-width: 1200px) {
  body.page-template-whats-here-child .breadcrumbs {
    z-index: 1;
  }
  body.page-template-whats-here-child .breadcrumbs:before, body.page-template-whats-here-child .breadcrumbs:after {
    width: 100%;
  }

  .masthead-single--whats-here {
    pointer-events: auto;
  }
  .masthead-single--whats-here .masthead-single__inner {
    min-height: 350px;
  }
  .masthead-single--whats-here .masthead-single__image {
    height: 350px;
  }
}
