/*
*
* [Table of contents]
* > Normalize
* > Global Wrapper
* > Bootstrap grid upgrade
* > Global styles
* > Type styles
* > Offsets
* > Preloader
* > Text align
* > Text style
* > Blocks visibility
* > Color
* > Backgrounds
* > Font Awesome
* > Buttons
* > Icons
* > Lists
* > Script styles
* > Header
* > Main
* > Footer
*
*/
/*#17848C;*/
/*
* Normalize
* ================ */
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, button, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: top; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, time, section {
  display: block; }

ol, ul {
  list-style: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: ''; }

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

button, input[type=text], textarea, select {
  display: inline-block;
  /* -webkit-appearance: none;*/
  outline: none;
  color: inherit;
  overflow: visible;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0; }

button,
input[type='button'],
input[type='submit'] {
  cursor: pointer; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/*
* @bugfix input text-overflow padding ignore
* @affected lt IE11
*/
.lt-ie11 input {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom-left-radius: 1px !important; }

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

a,
a[href^="tel:"],
a[href^="callto:"] {
  font: inherit;
  color: inherit;
  text-decoration: none; }
  a:focus,
  a:active,
  a[href^="tel:"]:focus,
  a[href^="tel:"]:active,
  a[href^="callto:"]:focus, a[href^="callto:"]:active {
    outline: 0; }

img {
  max-width: 100%;
  height: auto; }

button:focus, button:active {
  outline: 0; }

a, button, input {
  transition: .3s all ease; }

/*
* Layouts
* ================ */
.main-wrapper {
  position: relative;
  overflow: hidden;
  /*background: $content-bg;*/ }

body.boxed.bg-image {
  background: url(../img/pattern-1.jpg) top center repeat;
  background-attachment: fixed; }

body.boxed .main-wrapper {
  margin: 0 auto;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2); }
  @media (min-width: 768px) {
    body.boxed .main-wrapper {
      max-width: 778px; }
      body.boxed .main-wrapper .k-nav {
        max-width: 778px; } }
  @media (min-width: 992px) {
    body.boxed .main-wrapper {
      max-width: 1054px; }
      body.boxed .main-wrapper .k-nav {
        max-width: 1054px; } }
  @media (min-width: 1200px) {
    body.boxed .main-wrapper {
      max-width: 1230px; }
      body.boxed .main-wrapper .k-nav {
        max-width: 1230px; } }
  @media (min-width: 1800px) {
    body.boxed .main-wrapper {
      max-width: 1300px; }
      body.boxed .main-wrapper .k-nav {
        max-width: 1300px; } }

/*
* Bootstrap grid upgrade
* ================ */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 300px;
  max-width: 480px;
  width: auto; }
  @media (min-width: 768px) {
    .container {
      max-width: 750px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1200px; } }
  @media (min-width: 1800px) {
    .container.container-large {
      max-width: 1800px; } }
  .container.container-fluid {
    max-width: none; }

.row {
  margin-left: -15px;
  margin-right: -15px; }

[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px; }

.row:before, .row:after {
  content: none; }

.row-no-gutter {
  margin-left: 0;
  margin-right: 0; }
  .row-no-gutter > [class*='col'] {
    padding-left: 0;
    padding-right: 0; }

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.row > [class*='col'] {
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

.flex {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.flex-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.flex-left {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.flex-right {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.flex-justify {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.flex-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

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

.flex-middle {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

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

.flex-item-top {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start; }

.flex-item-middle {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }

.flex-item-bottom {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end; }

@media (min-width: 480px) {
  * + [class*="col-xs-"] {
    margin-top: 0; }
  .flex-xs {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .flex-xs-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .flex-xs-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .flex-xs-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .flex-xs-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .flex-xs-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .flex-xs-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .flex-xs-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .flex-xs-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .flex-xs-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .flex-item-xs-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .flex-item-xs-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center; }
  .flex-item-xs-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end; }
  .row > .col-xs-offset-0 {
    margin-left: 0; }
  .row > .col-xs-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .row > .col-xs-offset-1 {
    margin-left: 8.33333%; }
  .row > .col-xs-order-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }
  .row > .col-xs-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .row > .col-xs-offset-2 {
    margin-left: 16.66667%; }
  .row > .col-xs-order-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; }
  .row > .col-xs-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .row > .col-xs-offset-3 {
    margin-left: 25%; }
  .row > .col-xs-order-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3; }
  .row > .col-xs-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .row > .col-xs-offset-4 {
    margin-left: 33.33333%; }
  .row > .col-xs-order-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4; }
  .row > .col-xs-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .row > .col-xs-offset-5 {
    margin-left: 41.66667%; }
  .row > .col-xs-order-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5; }
  .row > .col-xs-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .row > .col-xs-offset-6 {
    margin-left: 50%; }
  .row > .col-xs-order-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6; }
  .row > .col-xs-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .row > .col-xs-offset-7 {
    margin-left: 58.33333%; }
  .row > .col-xs-order-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7; }
  .row > .col-xs-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .row > .col-xs-offset-8 {
    margin-left: 66.66667%; }
  .row > .col-xs-order-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8; }
  .row > .col-xs-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .row > .col-xs-offset-9 {
    margin-left: 75%; }
  .row > .col-xs-order-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9; }
  .row > .col-xs-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .row > .col-xs-offset-10 {
    margin-left: 83.33333%; }
  .row > .col-xs-order-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10; }
  .row > .col-xs-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .row > .col-xs-offset-11 {
    margin-left: 91.66667%; }
  .row > .col-xs-order-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11; }
  .row > .col-xs-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .row > .col-xs-offset-12 {
    margin-left: 100%; }
  .row > .col-xs-order-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12; } }

@media (min-width: 768px) {
  * + [class*="col-sm-"] {
    margin-top: 0; }
  .flex-sm {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .flex-sm-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .flex-sm-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .flex-sm-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .flex-sm-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .flex-sm-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .flex-sm-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .flex-sm-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .flex-sm-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .flex-sm-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .flex-item-sm-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .flex-item-sm-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center; }
  .flex-item-sm-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end; }
  .row > .col-sm-offset-0 {
    margin-left: 0; }
  .row > .col-sm-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .row > .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .row > .col-sm-order-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }
  .row > .col-sm-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .row > .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .row > .col-sm-order-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; }
  .row > .col-sm-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .row > .col-sm-offset-3 {
    margin-left: 25%; }
  .row > .col-sm-order-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3; }
  .row > .col-sm-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .row > .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .row > .col-sm-order-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4; }
  .row > .col-sm-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .row > .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .row > .col-sm-order-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5; }
  .row > .col-sm-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .row > .col-sm-offset-6 {
    margin-left: 50%; }
  .row > .col-sm-order-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6; }
  .row > .col-sm-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .row > .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .row > .col-sm-order-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7; }
  .row > .col-sm-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .row > .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .row > .col-sm-order-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8; }
  .row > .col-sm-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .row > .col-sm-offset-9 {
    margin-left: 75%; }
  .row > .col-sm-order-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9; }
  .row > .col-sm-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .row > .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .row > .col-sm-order-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10; }
  .row > .col-sm-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .row > .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .row > .col-sm-order-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11; }
  .row > .col-sm-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .row > .col-sm-offset-12 {
    margin-left: 100%; }
  .row > .col-sm-order-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12; } }

@media (min-width: 992px) {
  * + [class*="col-md-"] {
    margin-top: 0; }
  .flex-md {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .flex-md-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .flex-md-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .flex-md-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .flex-md-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .flex-md-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .flex-md-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .flex-md-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .flex-md-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .flex-md-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .flex-item-md-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .flex-item-md-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center; }
  .flex-item-md-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end; }
  .row > .col-md-offset-0 {
    margin-left: 0; }
  .row > .col-md-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .row > .col-md-offset-1 {
    margin-left: 8.33333%; }
  .row > .col-md-order-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }
  .row > .col-md-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .row > .col-md-offset-2 {
    margin-left: 16.66667%; }
  .row > .col-md-order-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; }
  .row > .col-md-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .row > .col-md-offset-3 {
    margin-left: 25%; }
  .row > .col-md-order-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3; }
  .row > .col-md-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .row > .col-md-offset-4 {
    margin-left: 33.33333%; }
  .row > .col-md-order-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4; }
  .row > .col-md-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .row > .col-md-offset-5 {
    margin-left: 41.66667%; }
  .row > .col-md-order-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5; }
  .row > .col-md-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .row > .col-md-offset-6 {
    margin-left: 50%; }
  .row > .col-md-order-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6; }
  .row > .col-md-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .row > .col-md-offset-7 {
    margin-left: 58.33333%; }
  .row > .col-md-order-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7; }
  .row > .col-md-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .row > .col-md-offset-8 {
    margin-left: 66.66667%; }
  .row > .col-md-order-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8; }
  .row > .col-md-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .row > .col-md-offset-9 {
    margin-left: 75%; }
  .row > .col-md-order-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9; }
  .row > .col-md-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .row > .col-md-offset-10 {
    margin-left: 83.33333%; }
  .row > .col-md-order-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10; }
  .row > .col-md-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .row > .col-md-offset-11 {
    margin-left: 91.66667%; }
  .row > .col-md-order-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11; }
  .row > .col-md-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .row > .col-md-offset-12 {
    margin-left: 100%; }
  .row > .col-md-order-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12; } }

@media (min-width: 1200px) {
  * + [class*="col-lg-"] {
    margin-top: 0; }
  .flex-lg {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .flex-lg-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .flex-lg-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .flex-lg-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .flex-lg-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .flex-lg-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .flex-lg-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .flex-lg-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .flex-lg-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .flex-lg-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .flex-item-lg-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .flex-item-lg-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center; }
  .flex-item-lg-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end; }
  .row > .col-lg-offset-0 {
    margin-left: 0; }
  .row > .col-lg-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .row > .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .row > .col-lg-order-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }
  .row > .col-lg-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .row > .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .row > .col-lg-order-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; }
  .row > .col-lg-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .row > .col-lg-offset-3 {
    margin-left: 25%; }
  .row > .col-lg-order-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3; }
  .row > .col-lg-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .row > .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .row > .col-lg-order-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4; }
  .row > .col-lg-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .row > .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .row > .col-lg-order-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5; }
  .row > .col-lg-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .row > .col-lg-offset-6 {
    margin-left: 50%; }
  .row > .col-lg-order-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6; }
  .row > .col-lg-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .row > .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .row > .col-lg-order-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7; }
  .row > .col-lg-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .row > .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .row > .col-lg-order-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8; }
  .row > .col-lg-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .row > .col-lg-offset-9 {
    margin-left: 75%; }
  .row > .col-lg-order-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9; }
  .row > .col-lg-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .row > .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .row > .col-lg-order-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10; }
  .row > .col-lg-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .row > .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .row > .col-lg-order-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11; }
  .row > .col-lg-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .row > .col-lg-offset-12 {
    margin-left: 100%; }
  .row > .col-lg-order-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12; } }

@media (min-width: 1800px) {
  * + [class*="col-xl-"] {
    margin-top: 0; }
  .flex-xl {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .flex-xl-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .flex-xl-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .flex-xl-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .flex-xl-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .flex-xl-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .flex-xl-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .flex-xl-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .flex-xl-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .flex-xl-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .flex-item-xl-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .flex-item-xl-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center; }
  .flex-item-xl-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end; }
  .row > .col-xl-offset-0 {
    margin-left: 0; }
  .row > .col-xl-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .row > .col-xl-offset-1 {
    margin-left: 8.33333%; }
  .row > .col-xl-order-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }
  .row > .col-xl-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .row > .col-xl-offset-2 {
    margin-left: 16.66667%; }
  .row > .col-xl-order-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; }
  .row > .col-xl-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .row > .col-xl-offset-3 {
    margin-left: 25%; }
  .row > .col-xl-order-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3; }
  .row > .col-xl-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .row > .col-xl-offset-4 {
    margin-left: 33.33333%; }
  .row > .col-xl-order-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4; }
  .row > .col-xl-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .row > .col-xl-offset-5 {
    margin-left: 41.66667%; }
  .row > .col-xl-order-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5; }
  .row > .col-xl-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .row > .col-xl-offset-6 {
    margin-left: 50%; }
  .row > .col-xl-order-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6; }
  .row > .col-xl-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .row > .col-xl-offset-7 {
    margin-left: 58.33333%; }
  .row > .col-xl-order-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7; }
  .row > .col-xl-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .row > .col-xl-offset-8 {
    margin-left: 66.66667%; }
  .row > .col-xl-order-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8; }
  .row > .col-xl-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .row > .col-xl-offset-9 {
    margin-left: 75%; }
  .row > .col-xl-order-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9; }
  .row > .col-xl-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .row > .col-xl-offset-10 {
    margin-left: 83.33333%; }
  .row > .col-xl-order-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10; }
  .row > .col-xl-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .row > .col-xl-offset-11 {
    margin-left: 91.66667%; }
  .row > .col-xl-order-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11; }
  .row > .col-xl-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .row > .col-xl-offset-12 {
    margin-left: 100%; }
  .row > .col-xl-order-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12; } }

/*
* Global styles
// ================================= */
body {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.04em;
  color: #222;
  background: #fff; }
  body .default-font {
    font-family: "Open Sans", sans-serif; }
  body .second-font {
    font-family: "Montserrat", sans-serif; }

hr {
  height: 1px;
  width: 100%;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  background: #000; }

.link {
  text-decoration: underline;
  display: inline-block; }

a:hover {
  color: #142365;
  text-decoration: none; }

a:focus {
  color: #142365;
  text-decoration: none; }

/*
* Type styles
* ================ */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  vertical-align: baseline;
  display: block;
  color: #222;
  font-weight: 400;
  font-family: "Montserrat", sans-serif; }
  h1 a:focus, h1 a:hover, h2 a:focus, h2 a:hover, h3 a:focus, h3 a:hover, h4 a:focus, h4 a:hover, h5 a:focus, h5 a:hover, h6 a:focus, h6 a:hover, .h1 a:focus, .h1 a:hover, .h2 a:focus, .h2 a:hover, .h3 a:focus, .h3 a:hover, .h4 a:focus, .h4 a:hover, .h5 a:focus, .h5 a:hover, .h6 a:focus, .h6 a:hover {
    color: #142365;
    text-decoration: none; }

h1, .h1 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em; }
  @media (min-width: 768px) {
    h1, .h1 {
      font-size: 60px;
      letter-spacing: 0.2em; } }

h2, .h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em; }
  @media (min-width: 768px) {
    h2, .h2 {
      font-size: 40px;
      letter-spacing: 0.2em; } }
  h2.small, .h2.small {
    font-size: 28px;
    font-weight: 500; }
    @media (min-width: 768px) {
      h2.small, .h2.small {
        font-size: 35px;
        letter-spacing: 0.1em; } }

h3, .h3 {
  font-size: 25px;
  line-height: 1.4; }
  @media (min-width: 768px) {
    h3, .h3 {
      font-size: 30px; } }

h4, .h4 {
  font-size: 20px;
  line-height: 1.4; }
  @media (min-width: 768px) {
    h4, .h4 {
      font-size: 24px; } }

h5, .h5 {
  font-size: 18px;
  line-height: 30px; }
  @media (min-width: 768px) {
    h5, .h5 {
      font-size: 20px; } }

h6, .h6 {
  font-size: 18px;
  line-height: 1.2; }

/*
* Offsets
* ================ */
h2 + p {
  margin-top: 10px; }

h3 + p {
  margin-top: 20px; }

h4 + p {
  margin-top: 10px; }

h5 + p {
  margin-top: 10px; }

h6 + p {
  margin-top: 10px; }

html .mt-0 {
  margin-top: 0; }

html .mt-20 {
  margin-top: 20px; }

html .mt-30 {
  margin-top: 30px; }

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

@media (min-width: 480px) {
  html .mt-xs-0 {
    margin-top: 0; }
  html .mt-xs-20 {
    margin-top: 20px; }
  html .mt-xs-30 {
    margin-top: 30px; }
  html .mt-xs-40 {
    margin-top: 40px; } }

@media (min-width: 768px) {
  html .mt-sm-0 {
    margin-top: 0; }
  html .mt-sm-20 {
    margin-top: 20px; }
  html .mt-sm-30 {
    margin-top: 30px; }
  html .mt-sm-40 {
    margin-top: 40px; } }

@media (min-width: 992px) {
  html .mt-md-0 {
    margin-top: 0; }
  html .mt-md-20 {
    margin-top: 20px; }
  html .mt-md-30 {
    margin-top: 30px; }
  html .mt-md-40 {
    margin-top: 40px; } }

@media (min-width: 1200px) {
  html .mt-lg-0 {
    margin-top: 0; }
  html .mt-lg-20 {
    margin-top: 20px; }
  html .mt-lg-30 {
    margin-top: 30px; }
  html .mt-lg-40 {
    margin-top: 40px; } }

@media (min-width: 1800px) {
  html .mt-xl-0 {
    margin-top: 0; }
  html .mt-xl-20 {
    margin-top: 20px; }
  html .mt-xl-30 {
    margin-top: 30px; }
  html .mt-xl-40 {
    margin-top: 40px; } }

/*
* Preloader styles
* ====================
*/
#page-preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #142365;
  z-index: 3000; }

.contpre {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.preloader {
  margin: 300px auto;
  width: 70px;
  height: 30px;
  text-align: center;
  font-size: 10px; }

.preloader > div {
  background-color: #fff;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: stretchdelay 0.7s infinite ease-in-out;
  animation: stretchdelay 0.7s infinite ease-in-out; }

.preloader .circ2 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s; }

.preloader .circ3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s; }

.preloader .circ4 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s; }

.preloader .circ5 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s; }

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: translateY(-10px); }
  20% {
    -webkit-transform: translateY(-20px); } }

@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px); }
  20% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px); } }

/*
* Text align
* ================ */
.text-center {
  text-align: center; }

.text-middle {
  vertical-align: middle; }

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

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

@media (min-width: 480px) {
  .text-xs-center {
    text-align: center; }
  .text-xs-right {
    text-align: right; }
  .text-xs-justify {
    text-align: justify; }
  .text-xs-left {
    text-align: left; } }

@media (min-width: 768px) {
  .text-sm-center {
    text-align: center; }
  .text-sm-right {
    text-align: right; }
  .text-sm-justify {
    text-align: justify; }
  .text-sm-left {
    text-align: left; } }

@media (min-width: 992px) {
  .text-md-center {
    text-align: center; }
  .text-md-right {
    text-align: right; }
  .text-md-justify {
    text-align: justify; }
  .text-md-left {
    text-align: left; } }

@media (min-width: 1200px) {
  .text-lg-center {
    text-align: center; }
  .text-lg-right {
    text-align: right; }
  .text-lg-justify {
    text-align: justify; }
  .text-lg-left {
    text-align: left; } }

/*
* Text-style
* ================ */
html body .big {
  font-size: 18px; }

.small {
  font-size: 14px; }

.text-italic {
  font-style: italic; }

.text-normal {
  font-style: normal; }

.text-underline {
  text-decoration: underline; }

.text-light {
  font-weight: 300; }

.text-semibold {
  font-weight: 600; }

.text-bold, strong {
  font-weight: 700; }

.ls-0 {
  letter-spacing: 0; }

.ls-40 {
  letter-spacing: 0.04em; }

.ls-50 {
  letter-spacing: 0.05em; }

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

/*
* Blocks visibility
* ================ */
.show-flex {
  display: flex !important; }

.show-inline-block {
  display: inline-block !important; }

.show-block {
  display: block !important; }

.hide {
  display: none !important; }

@media (min-width: 480px) {
  .show-xs-block {
    display: block !important; }
  .show-xs-inline-block {
    display: inline-block !important; }
  .show-xs-inline {
    display: inline !important; }
  .show-xs-flex {
    display: flex !important; }
  .hide-xs {
    display: none !important; } }

@media (min-width: 768px) {
  .show-sm-block {
    display: block !important; }
  .show-sm-inline-block {
    display: inline-block !important; }
  .show-sm-inline {
    display: inline !important; }
  .show-sm-flex {
    display: flex !important; }
  .hide-sm {
    display: none !important; } }

@media (min-width: 992px) {
  .show-md-block {
    display: block !important; }
  .show-md-inline-block {
    display: inline-block !important; }
  .show-md-inline {
    display: inline !important; }
  .show-md-flex {
    display: flex !important; }
  .hide-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .show-lg-block {
    display: block !important; }
  .show-lg-inline-block {
    display: inline-block !important; }
  .show-lg-inline {
    display: inline !important; }
  .show-lg-flex {
    display: flex !important; }
  .hide-lg {
    display: none !important; } }

@media (min-width: 1800px) {
  .show-xl-block {
    display: block !important; }
  .show-xl-inline-block {
    display: inline-block !important; }
  .show-xl-inline {
    display: inline !important; }
  .show-xl-flex {
    display: flex !important; }
  .hide-xl {
    display: none !important; } }

/*
* Color
* ================== */
html body .text-primary {
  color: #142365; }

.text-white {
  color: #fff; }

.text-gray {
  color: #646464; }

/*
* Backgrounds
* ================ */
.bg-primary {
  background: #142365; }

.bg-gray {
  background: rgba(225, 231, 235, 0.3); }

.bg-dark {
  background: #1F1F1F; }

.bg-pattern {
  background: url(../img/bg-pattern.png) center center no-repeat;
  background-size: cover; }

.overlay-bg {
  position: relative;
  z-index: 1; }
  .overlay-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #142365;
    opacity: 0.8;
    z-index: -3; }

.overlay-bg-dark {
  position: relative;
  z-index: 1; }
  .overlay-bg-dark:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(66, 78, 92, 0.85);
    opacity: 0.8;
    z-index: -3; }

.all-light, .all-light h1, .all-light h2, .all-light h3, .all-light h4, .all-light h5, .all-light h6, .all-light .h1, .all-light .h2, .all-light .h3, .all-light .h4, .all-light .h5, .all-light .h6 {
  color: #fff; }

/*
* Components
// ================================= */
/*@import "components/font-awesome.scss";*/
/*
* Buttons
* ================ */
.btn {
  display: inline-block;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  border-radius: 0; }
  .btn:hover {
    color: inherit;
    text-decoration: none; }
  .btn .icon {
    padding-right: 10px; }

.btn-xs {
  padding: 10px 15px; }

.btn-sm {
  padding: 12px 20px;
  font-size: 14px; }

.btn-md {
  padding: 18px 30px; }

.btn-default {
  color: #222;
  background: #fff;
  border: none; }
  .btn-default:hover {
    color: #fff;
    background: #0d0d0d; }
  .btn-default:focus {
    color: #fff;
    background: #0d0d0d;
    outline: none; }
  .btn-default:active {
    color: #fff;
    background: #0d0d0d; }
  .btn-default:active:focus {
    color: #fff;
    background: #0d0d0d;
    outline: none; }

.btn-primary {
  background: #142365;
  color: #fff;
  border: none; }
  .btn-primary:hover {
    color: #fff;
    background: #0d0d0d; }
  .btn-primary:focus {
    color: #fff;
    background: #0d0d0d;
    outline: none; }
  .btn-primary:active {
    color: #fff;
    background: #0d0d0d; }
  .btn-primary:active:focus {
    color: #fff;
    background: #0d0d0d;
    outline: none; }

/*
* Icons
* ================ */
.icon {
  display: inline-block;
  text-align: center; }

.icon-sm {
  font-size: 14px; }

.icon-md {
  font-size: 20px; }

.icon-lg {
  font-size: 35px; }

.icon-block {
  margin-top: 30px; }
  .icon-block:hover .icon {
    color: #424E5C; }
  .icon-block:hover .icon-wrap:before {
    transform: translateX(-30px);
    opacity: 0.8; }
  .icon-block:hover .icon-wrap:after {
    transform: translateX(30px);
    opacity: 0.6; }

.icon-wrap {
  display: block;
  position: relative;
  width: 140px;
  margin: 0 auto 15px;
  height: 100px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1; }
  .icon-wrap:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 70px 100px 35px;
    border-color: transparent transparent #142365 transparent;
    transform-origin: bottom right;
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out; }
  .icon-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 35px 0 70px;
    border-color: #142365 transparent transparent transparent;
    opacity: 0.8;
    transform-origin: top left;
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out; }
  .icon-wrap .icon {
    font-size: 28px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease; }

.contact-block {
  margin-top: 30px; }
  .contact-block:hover .icon:after {
    -webkit-transform: skew(20deg);
    transform: skew(20deg); }

.contact-wrap + * {
  margin-top: 10px; }

.contact-wrap .icon {
  color: #fff;
  font-size: 24px;
  width: 90px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1; }
  .contact-wrap .icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #142365;
    -webkit-transform: skew(-20deg);
    transform: skew(-20deg);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0.5;
    z-index: -1; }

/*
* Lists
* ================ */
* + .list {
  margin-top: 20px; }

.list li {
  font-size: 14px; }
  .list li + li {
    margin-top: 5px; }

* + .address-list {
  margin-top: 20px; }

.address-list li {
  color: #7A7A7A; }
  .address-list li + li {
    margin-top: 8px; }

.address-list .icon {
  vertical-align: middle;
  font-size: 16px;
  width: 20px;
  padding-right: 35px; }

* + .marked-list {
  margin-top: 20px; }

.marked-list > li {
  font-size: 14px;
  color: #646464; }
  .marked-list > li span {
    display: inline-block;
    position: relative;
    padding-left: 20px; }
    .marked-list > li span:before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 5px;
      height: 5px;
      margin-top: -3px;
      background: #142365; }
  .marked-list > li + li {
    margin-top: 12px; }

* + .list-inline {
  margin-top: 10px; }

.list-inline {
  margin-left: 0; }
  @media (min-width: 768px) {
    .list-inline.long li {
      padding: 0 25px; } }
  @media (min-width: 1200px) {
    .list-inline.long li {
      padding: 0 35px; } }
  .list-inline li {
    padding: 10px; }
  .list-inline .icon {
    font-size: 30px;
    color: #C8C8C8; }
    .list-inline .icon:hover {
      color: #142365; }

.index-list {
  margin-top: 25px;
  counter-reset: li;
  z-index: 3; }
  .index-list + * {
    margin-top: 20px; }
  .index-list > li.index-list-counter {
    position: relative;
    padding-left: 35px; }
    .index-list > li.index-list-counter + .index-list-counter {
      margin-top: 30px; }
    .index-list > li.index-list-counter:before {
      content: counter(li);
      counter-increment: li;
      color: #142365;
      position: absolute;
      top: 0;
      left: 0;
      font-size: 30px;
      font-weight: 700;
      line-height: 1; }

* + .project-stats {
  margin-top: 20px; }

.project-stats + * {
  margin-top: 20px; }

.project-stats li + li {
  margin-top: 15px; }

.project-stats .title {
  display: block;
  width: 80px;
  float: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase; }
  @media (min-width: 768px) {
    .project-stats .title {
      width: 120px; } }

.project-stats .content {
  display: block;
  margin-left: 95px;
  font-size: 15px;
  line-height: 20px; }
  @media (min-width: 768px) {
    .project-stats .content {
      margin-left: 125px; } }

/*
* Media
// ====================*/
.media-right {
  padding-top: 20px; }

.media-left {
  padding-bottom: 20px; }

.media-ltr {
  direction: ltr; }

.media-rtl {
  direction: rtl; }
  .media-rtl > .media-left {
    padding-right: 0;
    padding-left: 20px; }
  .media-rtl > .media-right {
    padding-right: 20px;
    padding-left: 0; }

.media {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex: 0 1 100%;
  -webkit-flex: 0 1 100%;
  flex: 0 1 100%;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.media-0 {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }
  .media-0 > .media-left img, .media-0 > .media-right img {
    max-width: none; }
  .media-0 > .media-right {
    padding-left: 20px;
    padding-top: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%; }
  .media-0 > .media-left {
    padding-right: 20px;
    padding-bottom: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%; }
  .media-0 .media-body {
    -ms-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto; }

.media-0-base > .media-left img, .media-0-base > .media-right img {
  max-width: 100%; }

.media-0-base > .media-left,
.media-0-base > .media-right,
.media-0-base .media-body {
  padding: 0;
  display: block;
  vert-align: top; }

.media-0-base > .media-right {
  padding-top: 20px; }

.media-0-base > .media-left {
  padding-bottom: 20px; }

.media-0-rtl {
  direction: rtl; }
  .media-0-rtl > .media-left {
    padding-right: 0;
    padding-left: 20px; }
  .media-0-rtl > .media-right {
    padding-right: 20px;
    padding-left: 0; }

.media-0-ltr {
  direction: ltr; }
  .media-0-ltr > .media-left {
    padding-right: 20px;
    padding-left: 0; }
  .media-0-ltr > .media-right {
    padding-right: 0;
    padding-left: 20px; }

@media (min-width: 480px) {
  .media-xs {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
    .media-xs > .media-left img, .media-xs > .media-right img {
      max-width: none; }
    .media-xs > .media-right {
      padding-left: 20px;
      padding-top: 0;
      -ms-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      flex: 0 0 auto;
      max-width: 100%; }
    .media-xs > .media-left {
      padding-right: 20px;
      padding-bottom: 0;
      -ms-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      flex: 0 0 auto;
      max-width: 100%; }
    .media-xs .media-body {
      -ms-flex: 0 1 auto;
      -webkit-flex: 0 1 auto;
      flex: 0 1 auto; }
  .media-xs-base > .media-left img, .media-xs-base > .media-right img {
    max-width: 100%; }
  .media-xs-base > .media-left,
  .media-xs-base > .media-right,
  .media-xs-base .media-body {
    padding: 0;
    display: block;
    vert-align: top; }
  .media-xs-base > .media-right {
    padding-top: 20px; }
  .media-xs-base > .media-left {
    padding-bottom: 20px; }
  .media-xs-rtl {
    direction: rtl; }
    .media-xs-rtl > .media-left {
      padding-right: 0;
      padding-left: 20px; }
    .media-xs-rtl > .media-right {
      padding-right: 20px;
      padding-left: 0; }
  .media-xs-ltr {
    direction: ltr; }
    .media-xs-ltr > .media-left {
      padding-right: 20px;
      padding-left: 0; }
    .media-xs-ltr > .media-right {
      padding-right: 0;
      padding-left: 20px; } }

@media (min-width: 768px) {
  .media-sm {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
    .media-sm > .media-left img, .media-sm > .media-right img {
      max-width: none; }
    .media-sm > .media-right {
      padding-left: 20px;
      padding-top: 0;
      -ms-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      flex: 0 0 auto;
      max-width: 100%; }
    .media-sm > .media-left {
      padding-right: 20px;
      padding-bottom: 0;
      -ms-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      flex: 0 0 auto;
      max-width: 100%; }
    .media-sm .media-body {
      -ms-flex: 0 1 auto;
      -webkit-flex: 0 1 auto;
      flex: 0 1 auto; }
  .media-sm-base > .media-left img, .media-sm-base > .media-right img {
    max-width: 100%; }
  .media-sm-base > .media-left,
  .media-sm-base > .media-right,
  .media-sm-base .media-body {
    padding: 0;
    display: block;
    vert-align: top; }
  .media-sm-base > .media-right {
    padding-top: 20px; }
  .media-sm-base > .media-left {
    padding-bottom: 20px; }
  .media-sm-rtl {
    direction: rtl; }
    .media-sm-rtl > .media-left {
      padding-right: 0;
      padding-left: 20px; }
    .media-sm-rtl > .media-right {
      padding-right: 20px;
      padding-left: 0; }
  .media-sm-ltr {
    direction: ltr; }
    .media-sm-ltr > .media-left {
      padding-right: 20px;
      padding-left: 0; }
    .media-sm-ltr > .media-right {
      padding-right: 0;
      padding-left: 20px; } }

@media (min-width: 992px) {
  .media-md {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
    .media-md > .media-left img, .media-md > .media-right img {
      max-width: none; }
    .media-md > .media-right {
      padding-left: 20px;
      padding-top: 0;
      -ms-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      flex: 0 0 auto;
      max-width: 100%; }
    .media-md > .media-left {
      padding-right: 20px;
      padding-bottom: 0;
      -ms-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      flex: 0 0 auto;
      max-width: 100%; }
    .media-md .media-body {
      -ms-flex: 0 1 auto;
      -webkit-flex: 0 1 auto;
      flex: 0 1 auto; }
  .media-md-base > .media-left img, .media-md-base > .media-right img {
    max-width: 100%; }
  .media-md-base > .media-left,
  .media-md-base > .media-right,
  .media-md-base .media-body {
    padding: 0;
    display: block;
    vert-align: top; }
  .media-md-base > .media-right {
    padding-top: 20px; }
  .media-md-base > .media-left {
    padding-bottom: 20px; }
  .media-md-rtl {
    direction: rtl; }
    .media-md-rtl > .media-left {
      padding-right: 0;
      padding-left: 20px; }
    .media-md-rtl > .media-right {
      padding-right: 20px;
      padding-left: 0; }
  .media-md-ltr {
    direction: ltr; }
    .media-md-ltr > .media-left {
      padding-right: 20px;
      padding-left: 0; }
    .media-md-ltr > .media-right {
      padding-right: 0;
      padding-left: 20px; } }

@media (min-width: 1200px) {
  .media-lg {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
    .media-lg > .media-left img, .media-lg > .media-right img {
      max-width: none; }
    .media-lg > .media-right {
      padding-left: 20px;
      padding-top: 0;
      -ms-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      flex: 0 0 auto;
      max-width: 100%; }
    .media-lg > .media-left {
      padding-right: 20px;
      padding-bottom: 0;
      -ms-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      flex: 0 0 auto;
      max-width: 100%; }
    .media-lg .media-body {
      -ms-flex: 0 1 auto;
      -webkit-flex: 0 1 auto;
      flex: 0 1 auto; }
  .media-lg-base > .media-left img, .media-lg-base > .media-right img {
    max-width: 100%; }
  .media-lg-base > .media-left,
  .media-lg-base > .media-right,
  .media-lg-base .media-body {
    padding: 0;
    display: block;
    vert-align: top; }
  .media-lg-base > .media-right {
    padding-top: 20px; }
  .media-lg-base > .media-left {
    padding-bottom: 20px; }
  .media-lg-rtl {
    direction: rtl; }
    .media-lg-rtl > .media-left {
      padding-right: 0;
      padding-left: 20px; }
    .media-lg-rtl > .media-right {
      padding-right: 20px;
      padding-left: 0; }
  .media-lg-ltr {
    direction: ltr; }
    .media-lg-ltr > .media-left {
      padding-right: 20px;
      padding-left: 0; }
    .media-lg-ltr > .media-right {
      padding-right: 0;
      padding-left: 20px; } }

html body .media-wrap {
  margin-top: 10px; }

.media {
  overflow: visible;
  margin-top: 50px; }
  .media:first-child {
    margin-top: 50px; }
  .media > .media-left,
  .media > .media-right,
  .media > .media-body {
    padding: 0;
    direction: ltr;
    display: block; }
  .media .media-left {
    margin-left: 3px;
    padding-right: 15px;
    position: relative;
    z-index: 1;
    width: 54px; }
    @media (min-width: 768px) {
      .media .media-left {
        padding-right: 20px; } }
    .media .media-left .icon {
      color: #142365;
      font-size: 30px; }
  .media .media-body {
    margin-top: 4px;
    text-align: left;
    overflow: visible;
    position: relative; }

.section-pad {
  padding: 60px 0; }
  @media (min-width: 992px) {
    .section-pad {
      padding: 80px 0; } }

.section-pad-small {
  padding: 60px 0; }

.section-pad-big {
  padding: 100px 0; }

.section-pad-top {
  padding-top: 60px; }

.section-pad-bottom {
  padding-bottom: 60px; }

.fa-play:before {
  margin-left: 2px; }

/*
// Button block
// ================ */
.btn-block {
  margin: -10px;
  margin-top: 30px; }
  .btn-block .btn {
    display: inline-block;
    margin: 10px; }

/*
// Page 404
// ================ */
@media (min-width: 992px) {
  .page-404 {
    font-size: 100px; } }

/*
// Portfolio single
// ================ */
.portfolio-single {
  width: 100%;
  height: 460px;
  object-fit: cover;
  margin-bottom: 50px; }

/*
// Section title
// ================ */
.section-title {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  display: inline-block; }
  .section-title + * {
    margin-top: 80px; }
  .section-title + .tabs-wrapper {
    margin-top: 120px; }
  .section-title:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 80px;
    height: 1px;
    background: rgba(204, 204, 204, 0.8); }
    @media (min-width: 992px) {
      .section-title:before {
        min-width: 80px;
        width: 15%;
        top: -30px; } }
  .section-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 80px;
    height: 1px;
    background: rgba(204, 204, 204, 0.8); }
    @media (min-width: 992px) {
      .section-title:after {
        min-width: 80px;
        width: 15%;
        bottom: 4px; } }
  .section-title.single:after {
    bottom: -30px; }
  .section-title p {
    color: #404040;
    margin-top: 10px;
    letter-spacing: 0.15em; }
  @media (min-width: 992px) {
    .section-title.left {
      text-align: left; }
      .section-title.left > * {
        margin-left: 20px; } }

.all-light .section-title p {
  color: #fff; }

.section-title-small {
  position: relative;
  text-align: left; }
  .section-title-small:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #142365; }
  .section-title-small + * {
    margin-top: 60px; }
  .section-title-small > * {
    display: inline-block;
    vertical-align: sub; }
    .section-title-small > * + * {
      margin-left: 15px; }
  .section-title-small p {
    color: #899; }
  .section-title-small .sub-title {
    display: none; }
    @media (min-width: 480px) {
      .section-title-small .sub-title {
        display: inline-block; } }
  .section-title-small .right-cont {
    display: block;
    margin: 15px 0 0 0;
    top: 50%;
    transform: translateY(-50%);
    right: 0; }
    @media (min-width: 768px) {
      .section-title-small .right-cont {
        position: absolute;
        margin: 0; } }
    .section-title-small .right-cont .icon {
      vertical-align: middle;
      color: #222; }
    .section-title-small .right-cont:before {
      position: absolute;
      top: 50%;
      right: calc(100% + 20px);
      width: 100px;
      height: 1px;
      background: #C1C1C1; }
      @media (min-width: 768px) {
        .section-title-small .right-cont:before {
          content: ''; } }

/*
// Dividers styles
// ================ */
.divider {
  width: 80px;
  height: 1px;
  background: #142365;
  border: none;
  margin: 16px auto; }

.divider-short {
  width: 80px;
  height: 1px;
  background: rgba(204, 204, 204, 0.8);
  border: none;
  margin: 50px auto;
  margin-left: 0; }

.inline-elems {
  margin: -20px; }
  .inline-elems > * {
    display: inline-block;
    vertical-align: middle;
    margin: 20px; }

/*
// Image caption styles
// ================ */
figure {
  position: relative;
  z-index: 1; }
  figure > a {
    display: block; }
  figure:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(204, 204, 204, 0.8);
    width: 0;
    height: 1px;
    transition: all 0.4s ease;
    z-index: 2; }
  figure:after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(204, 204, 204, 0.8);
    width: 0;
    height: 1px;
    transition: all 0.4s ease;
    z-index: 2; }
  figure .figcaption {
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0; }
  figure img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  figure:hover:before, figure:hover:after {
    width: 70px;
    transition-delay: 0.2s; }
  figure:hover .figcaption {
    opacity: 1; }

/*
// Pricing box styles
// ================ */
.pricing-box {
  margin: 15px 0;
  background: #F6F8F9;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2); }
  .pricing-box-head {
    padding: 30px;
    padding-bottom: 80px;
    margin-bottom: -65px;
    background: #142365; }
    .pricing-box-head * + p {
      margin-top: 0; }
  .pricing-box-body {
    padding: 40px 0 0; }
    .pricing-box-body p {
      padding: 0 30px; }
    .pricing-box-body ul {
      padding: 0 30px; }
      .pricing-box-body ul li {
        color: rgba(29, 29, 29, 0.7);
        font-size: 16px; }
        .pricing-box-body ul li + * {
          margin-top: 10px; }
    .pricing-box-body * + ul {
      margin-top: 30px; }
    .pricing-box-body .btn {
      margin-top: 40px;
      width: 100%; }
  .pricing-box .price {
    font-size: 28px;
    line-height: 1.3; }
    .pricing-box .price span {
      font-size: 18px;
      vertical-align: middle; }
  .pricing-box .price-circle {
    margin: 0 auto;
    width: 130px;
    height: 130px;
    background: #142365;
    border: 5px solid #F6F8F9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }

.testim {
  text-align: left; }
  .testim h5 + p {
    margin-top: 5px; }
  .testim > * {
    display: inline-block; }
  .testim-left {
    width: 90px; }
    .testim-left img {
      border-radius: 50%; }
  .testim-body {
    width: calc(100% - 95px);
    padding-left: 25px; }

blockquote {
  position: relative;
  padding-bottom: 15px; }
  blockquote:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -20px;
    background: rgba(204, 204, 204, 0.8);
    width: 70px;
    height: 1px; }
  blockquote q, blockquote .cite {
    display: block; }
  blockquote q {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    font-style: italic; }

/*
// Sidebar Styles
// ================ */
aside {
  margin-top: 45px;
  text-align: left; }
  @media (min-width: 992px) {
    aside {
      margin-top: 0; } }
  aside .widget + .widget {
    margin-top: 60px; }

/*
// Widgets
// ================ */
.widget h4 + * {
  margin-top: 20px; }

.widget-categories * + .categories-list {
  margin-top: 12px; }

.widget-categories .categories-list li {
  position: relative;
  font-size: 14px;
  display: block;
  position: relative; }
  .widget-categories .categories-list li .cat-count {
    float: right;
    opacity: 0.6; }
  .widget-categories .categories-list li + li {
    border-top: 1px solid rgba(206, 206, 206, 0.7);
    margin-top: 0; }
  .widget-categories .categories-list li a {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 10px; }

* + .tags-list {
  margin-top: 20px; }

.widget-tags .tags-list {
  margin-left: -5px;
  margin-right: -5px; }
  .widget-tags .tags-list li {
    display: inline-block;
    vertical-align: middle;
    margin: 5px; }
  .widget-tags .tags-list a {
    font-size: 14px; }

* + .recent-posts {
  margin-top: 20px; }

.recent-posts li + li {
  margin-top: 20px; }

.recent-posts .post-thumb {
  display: inline-block;
  vertical-align: top;
  width: 70px; }
  .recent-posts .post-thumb img {
    border-radius: 50%; }

.recent-posts .post-date {
  color: #888;
  font-size: 14px;
  margin-top: 14px; }

.recent-posts .post-text {
  display: inline-block;
  width: -webkit-calc(100% - 80px);
  width: calc(100% - 80px);
  padding-left: 15px;
  margin-top: 0; }

* + .search-form {
  margin-top: 20px; }

.search-form {
  position: relative; }
  .search-form .form-control {
    padding-right: 50px;
    height: 40px; }
  .search-form .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0; }
    .search-form .btn-sm {
      padding: 12px 14px; }

/*
// Blog styles
// ================ */
.blog {
  text-align: left; }
  .blog .blog-img {
    max-height: 300px;
    overflow: hidden; }
    .blog .blog-img img {
      object-fit: cover; }
  .blog .post-meta {
    color: #B1B1B1;
    font-weight: 300; }
    .blog .post-meta > * {
      display: inline-block;
      vertical-align: middle; }
      .blog .post-meta > * + * {
        margin-left: 10px; }
  .blog * + .post-meta {
    margin-top: 20px; }
  .blog * + .blog-title {
    margin-top: 12px; }
    .blog * + .blog-title + * {
      margin-top: 10px; }
    .blog * + .blog-title + p {
      font-size: 14px; }
  .blog * + .read-more {
    margin-top: 15px; }
  .blog .read-more {
    display: block;
    text-decoration: underline;
    font-weight: 500; }
    .blog .read-more:hover {
      text-decoration: none; }
  .blog .post-body {
    margin-top: 15px; }
  .blog .post-text {
    font-size: 15px;
    line-height: 24px; }

.blog-list .post-title {
  margin-top: 10px; }

.blog-list .post-main {
  margin-top: 20px; }

.blog-list .blog + .blog {
  margin-top: 60px; }

/*
// Comments
// ================ */
.comments-list {
  margin-top: 50px; }
  .comments-list li + li {
    margin-top: 40px; }
  .comments-list .comment-avatar {
    display: inline-block;
    vertical-align: top;
    width: 70px;
    height: 70px;
    border-radius: 50%; }
  .comments-list .comment-body {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 80px);
    padding-left: 15px; }
    .comments-list .comment-body p {
      margin-top: 12px;
      font-weight: 300; }
  .comments-list .comment-author {
    display: inline-block;
    vertical-align: middle; }
  .comments-list .comment-date {
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    font-size: 14px; }

/*
// Pagination
// ================ */
.pagination-line {
  text-align: left;
  margin-top: 50px; }
  .pagination-line li {
    display: inline-block; }
    .pagination-line li a {
      width: 30px;
      height: 30px;
      font-size: 18px;
      color: #142365;
      display: flex;
      justify-content: center;
      align-items: center; }
      @media (min-width: 480px) {
        .pagination-line li a {
          width: 35px;
          height: 35px; } }
      .pagination-line li a:hover {
        background: #1d1d1d;
        color: #fff; }
      .pagination-line li a.current {
        color: #fff;
        background: #142365;
        border-color: #142365; }

/*
// Form styles
// ================ */
.subscription-form {
  display: flex;
  max-width: 500px;
  margin: 50px auto 0; }
  @media (min-width: 992px) {
    .subscription-form {
      margin-right: 0;
      margin-top: 0; } }
  .subscription-form .btn {
    padding: 14px 14px;
    height: 45px; }
    @media (min-width: 480px) {
      .subscription-form .btn {
        padding: 14px 30px; } }

.form-wrapper {
  background: #fff;
  padding: 30px 20px;
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.2); }
  @media (min-width: 768px) {
    .form-wrapper {
      padding: 50px 70px 30px; } }
  @media (min-width: 992px) {
    .form-wrapper.second {
      padding-bottom: 0; }
      .form-wrapper.second .form-group {
        margin-bottom: 50px; } }

.contact-form .btn {
  color: #333;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 0px;
  text-decoration: underline; }
  .contact-form .btn:hover {
    text-decoration: none; }
  .contact-form .btn:focus {
    outline: none; }

.contact-form .form-control {
  border: none;
  border-bottom: 1px solid #BABABA;
  padding-left: 0;
  padding-right: 0; }

.contact-form .form-group {
  margin-bottom: 30px; }

.form-control {
  /*height: 45px;*/
  border-radius: 0;
  box-shadow: none; }
  .form-control:focus {
    border-color: #0d0d0d;
    box-shadow: none; }

textarea.form-control {
  height: 120px;
  resize: vertical; }

/*
// Sub page elements
// ================ */
.banner-image {
  height: 300px;
  overflow: hidden; }
  .banner-image img {
    object-fit: cover; }

.breadcrumbs-wrap {
  text-align: left;
  background: #1D1D1D;
  padding: 30px 0; }
  .breadcrumbs-wrap .breadcrumbs {
    margin-top: 10px; }
  .breadcrumbs-wrap li {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-weight: 300;
    border-left: 1px solid #ccc;
    margin-left: 20px;
    padding-left: 25px; }
    .breadcrumbs-wrap li:first-child {
      margin-left: 0;
      padding-left: 0;
      border-left: none; }
    .breadcrumbs-wrap li:last-child {
      color: #142365; }

.section-title + .step-wrap {
  margin-top: 40px; }

.work-step {
  background: #1D1D1D;
  color: #fff;
  position: relative;
  text-align: left;
  padding: 14px 70px;
  margin: 30px auto 0; }
  .work-step .step-num {
    background: #142365;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .work-step .step-right {
    background: #2C2C2C;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px; }
  .work-step .step-arrow {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease; }
    .work-step .step-arrow:before {
      content: '';
      position: absolute;
      top: 50%;
      left: calc(50% - 2px);
      background: #fff;
      width: 10px;
      height: 1px;
      transform: rotate(45deg);
      transition: all 0.4s ease; }
    .work-step .step-arrow:after {
      content: '';
      position: absolute;
      top: 50%;
      right: calc(50% - 2px);
      background: #fff;
      width: 10px;
      height: 1px;
      transform: rotate(-45deg);
      transition: all 0.4s ease; }
  .work-step .step-descr {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: #fff;
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.4);
    z-index: 10;
    color: #000;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); }
  .work-step:hover .step-descr {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .work-step:hover .step-arrow {
    transform: rotate(180deg); }
    .work-step:hover .step-arrow:before {
      background: #142365; }
    .work-step:hover .step-arrow:after {
      background: #142365; }

/*
// Video section
// ================ */
.video-section iframe {
  width: 100%;
  height: 400px;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .video-section iframe {
      height: 550px;
      width: 90%; } }

/*
// Popup styles
// ================ */
#popup-content {
  max-width: 1000px;
  margin: 0 auto; }

/*
// Helpers
// ================ */
.z-index-high {
  position: relative;
  z-index: 50; }

.width100 {
  width: 100%; }

.height100 {
  height: 100%; }

.lh-26 {
  line-height: 26px; }

.maxw-970 {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto; }

/*
// Script styles
// ================================= */
/*
* Animate CSS
* ================ */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 1; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

html:not(.lt-ie10) .not-animated {
  opacity: 0; }

/**
* Pulse Keyframes Animation
*/
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8); }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8); }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8); }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8); }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0); } }

/* 
Fly Keyframe Animation 
*/
@-webkit-keyframes fly {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); } }

@keyframes fly {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); } }

/**
* Blink Keyframes Animation
*/
@keyframes blink {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

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

@-moz-keyframes blink {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

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

@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: none;
    transform: none; }
  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: none;
    transform: none; } }

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  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: none;
    transform: none; } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-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-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: none;
    transform: none; } }

@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: none;
    transform: none; } }

.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: none;
    transform: none; } }

@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: none;
    transform: none; } }

.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: none;
    transform: none; } }

@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: none;
    transform: none; } }

.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-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: none;
    transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-40%, 0, 0);
    transform: translate3d(-40%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-40%, 0, 0);
    transform: translate3d(-40%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(40%, 0, 0);
    transform: translate3d(40%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(40%, 0, 0);
    transform: translate3d(40%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 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) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -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-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-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);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@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);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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-name: hinge;
  animation-name: hinge; }

/* 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: none;
    transform: none; } }

@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: none;
    transform: none; } }

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

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

/*
* Magnific Popup
// ====================*/
/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8); }

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0; }

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8; }

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }

/* fade */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8; }

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0; }

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1; }

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0; }

/*
* @subsection   Thumb
*/
.thumb {
  position: relative;
  display: block;
  overflow: hidden; }

.thumb > img {
  width: 100%;
  object-fit: cover; }

.thumb__overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(51, 51, 51, 0.5);
  opacity: 0;
  text-align: center;
  transition: .3s all ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.thumb__overlay > * {
  vertical-align: middle;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  transition: .3s all ease; }

.thumb__overlay:before {
  font-size: 30px;
  color: #fff; }

.thumb:hover .thumb__overlay {
  opacity: 1; }

.thumb:hover .thumb__overlay > * {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  overflow: scroll !important;
  overflow-x: hidden !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-close:hover {
  cursor: pointer;
  color: #ECECEC; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
  display: none; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before,
  .mfp-arrow:after,
  .mfp-arrow .mfp-b,
  .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after,
  .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before,
  .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after,
  .mfp-arrow-left .mfp-a {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before,
  .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after,
  .mfp-arrow-right .mfp-a {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before,
  .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

/* Navigation
// ====================*/
/*992px;*/
.k-nav {
  /*display: none;*/
  /* always fixed and white */
  position: fixed;
  background: #fff;
  border-bottom: 1px solid #eee;
  /**/
  transition: all 0.4s ease;
  z-index: 100;
  position: absolute;
  top: 0;
  width: 100%; }

.k-nav-outside {
  position: relative; }
  .k-nav-outside.show .k-nav-inside {
    transform: translateX(0);
    -webkit-transform: translateX(0); }

.k-nav-inside {
  padding: 20px 0;
  background: #eee;
  /*#333;*/
  width: 250px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  will-change: transform;
  z-index: 500; }
  @media (min-width: 480px) {
    .k-nav-inside {
      width: 300px; } }
  @media (min-width: 768px) {
    .k-nav-inside {
      overflow: auto; } }
  @media (min-width: 768px) {
    .k-nav-inside {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      position: relative;
      padding: 0 15px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%;
      background: transparent;
      overflow: visible; } }
  .k-nav-inside::-webkit-scrollbar {
    width: 0px; }
  .k-nav-inside:after, .k-nav-inside:before {
    content: none; }

.k-nav-logo {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  padding: 10px 0;
  position: relative; }
  .k-nav-logo img {
    width: 100%; }
  @media (min-width: 768px) {
    .k-nav-logo {
      margin: 0; } }

html body .k-nav-links {
  margin-top: 20px;
  text-align: left; }
  @media (min-width: 768px) {
    html body .k-nav-links {
      margin-top: 0; } }
  html body .k-nav-links li {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    @media (min-width: 768px) {
      html body .k-nav-links li {
        display: inline-block; } }
    html body .k-nav-links li:last-child {
      margin-right: -10px; }
    html body .k-nav-links li.active a {
      color: #142365;
      background: #ccc; }
      @media (min-width: 768px) {
        html body .k-nav-links li.active a {
          color: #fff;
          background: transparent; } }
    html body .k-nav-links li + li {
      margin-top: 10px; }
      @media (min-width: 768px) {
        html body .k-nav-links li + li {
          margin-top: 0; } }
    html body .k-nav-links li .icon {
      vertical-align: baseline;
      margin-right: 5px;
      width: 15px; }
      @media (min-width: 768px) {
        html body .k-nav-links li .icon {
          width: auto; } }
  html body .k-nav-links ul + li {
    margin-top: 10px; }
  html body .k-nav-links a {
    font-size: 14px;
    color: #fff;
    padding: 10px 20px;
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    @media (min-width: 768px) {
      html body .k-nav-links a {
        padding: 30px 10px 30px; } }
    html body .k-nav-links a:focus {
      color: #fff; }
    html body .k-nav-links a:hover {
      background: #ccc;
      color: rgba(252, 252, 252, 0.6); }
      @media (min-width: 768px) {
        html body .k-nav-links a:hover {
          background: transparent; } }

.k-nav-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 12px;
  left: 12px;
  width: 35px;
  height: 35px;
  background: rgba(20, 35, 101, 0.8);
  box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.3);
  z-index: 1000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease; }
  @media (min-width: 768px) {
    .k-nav-toggle {
      right: 50px;
      top: 42px; } }
  @media (min-width: 768px) {
    .k-nav-toggle {
      display: none; } }
  .k-nav-toggle span, .k-nav-toggle span:after, .k-nav-toggle span:before {
    position: relative;
    display: block;
    width: 25px;
    height: 4px;
    top: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 15px; }
  .k-nav-toggle span:after, .k-nav-toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -7px; }
  .k-nav-toggle span:after {
    top: 7px; }
  .k-nav-toggle:hover {
    cursor: pointer; }
  .k-nav-toggle.active {
    background: transparent;
    box-shadow: none; }
    .k-nav-toggle.active span {
      background-color: transparent; }
      .k-nav-toggle.active span:before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        top: 0;
        background-color: #222; }
      .k-nav-toggle.active span:after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        top: 0;
        background-color: #222; }

.k-nav.k-nav-fixed, .sub-page .k-nav {
  position: fixed;
  background: #fff;
  border-bottom: 1px solid #eee; }
  .k-nav.k-nav-fixed .k-nav-logo, .sub-page .k-nav .k-nav-logo {
    top: 0; }
  .k-nav.k-nav-fixed .k-nav-links li.active a, .sub-page .k-nav .k-nav-links li.active a {
    color: #142365; }
  @media (min-width: 768px) {
    .k-nav.k-nav-fixed .k-nav-links li a, .sub-page .k-nav .k-nav-links li a {
      color: #888;
      padding: 22px 10px 18px; }
      .k-nav.k-nav-fixed .k-nav-links li a:hover, .sub-page .k-nav .k-nav-links li a:hover {
        color: #142365; } }

.overflow-hid {
  overflow: hidden !important; }

@media (min-width: 768px) {
  .k-nav li.dropdown:hover a + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    pointer-events: all; } }

.k-nav li.dropdown .dropdown-menu {
  background: #222;
  min-width: 100%;
  position: relative;
  float: none;
  width: auto;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  border: none;
  animation: fadeIn 0.5s ease; }
  @media (min-width: 768px) {
    .k-nav li.dropdown .dropdown-menu {
      display: block;
      background: #FCFCFC;
      position: absolute;
      visibility: hidden;
      opacity: 0;
      -webkit-transform: translateY(-20px);
      transform: translateY(-20px);
      transform-origin: 0 0;
      pointer-events: none;
      -webkit-transition: all 0.4s ease;
      transition: all 0.4s ease; } }
  .k-nav li.dropdown .dropdown-menu li {
    display: block;
    margin: 0; }
    .k-nav li.dropdown .dropdown-menu li a {
      color: #fff;
      padding-left: 40px; }
      @media (min-width: 768px) {
        .k-nav li.dropdown .dropdown-menu li a {
          color: #333;
          padding: 10px 20px; } }
      .k-nav li.dropdown .dropdown-menu li a:hover {
        color: #142365; }

/* Owl Carousel
// ====================*/
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

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

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

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

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

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.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;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 35px;
  height: 35px;
  display: inline-block;
  margin: 0 5px; }

.owl-carousel.owl-loaded {
  display: block; }

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

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

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  will-change: transform;
  float: left;
  -webkit-backface-visibility: hidden; }

/*
 * Owl Navigation
 */
.owl-nav {
  width: 95px;
  position: absolute;
  top: -35px;
  right: -5px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-nav [class*='owl-'] {
  padding: 4px;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: 47px/50px "FontAwesome";
  transition: all 0.4s ease; }

.owl-prev {
  left: 0;
  top: 0;
  color: #333;
  border: 1px solid #142365; }
  .owl-prev:hover {
    background: #142365;
    color: #fff; }
  .owl-prev:before {
    content: '\f104';
    font-family: "FontAwesome";
    font-size: 24px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.owl-next {
  right: 0;
  top: 0;
  color: #333;
  border: 1px solid #142365; }
  .owl-next:hover {
    background: #142365;
    color: #fff; }
  .owl-next:before {
    content: '\f105';
    font-family: "FontAwesome";
    font-size: 24px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

/* Owl dots */
.owl-dots {
  text-align: center;
  position: absolute;
  bottom: -30px;
  width: 100%; }

.owl-controls .owl-dot {
  display: inline-block;
  vertical-align: bottom;
  text-align: center;
  position: relative;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
  background-color: #142365;
  transition: 0.3s ease;
  opacity: 0.5; }
  .owl-controls .owl-dot.active {
    opacity: 1; }
  .owl-controls .owl-dot + .owl-dot {
    margin-left: 12px; }

.slider_1 {
  margin-bottom: 30px; }
  .slider_1 .owl-dots {
    bottom: -50px; }

/* ToTop
// ====================*/
.toTopButton {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  font-size: 26px;
  line-height: 46px;
  text-align: center;
  color: #FFF;
  background: #142365;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
  visibility: hidden;
  z-index: 1200;
  transition: 0.4s all ease;
  transform: scale(1.5);
  opacity: 0; }
  .toTopButton:before {
    /*font-family: FontAwesome;
    content: '\f106';*/ }
  .toTopButton:hover, .toTopButton:focus {
    color: #FFF;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    text-decoration: none; }
  .toTopButton--active {
    visibility: visible;
    opacity: 1;
    transform: scale(1); }

@media (min-width: 768px) {
  .toTopButton {
    right: 34px;
    bottom: 34px; } }

.parallax-bg {
  position: relative;
  z-index: 2; }

[data-vide-bg] > div {
  z-index: 0 !important; }

/*
* Js form
// ================ */
.js-form input:required:valid {
  border-color: #1FB51D; }

.js-form input:-webkit-autofill {
  background-color: red !important;
  color: red !important; }

.js-result {
  position: fixed;
  bottom: -100px;
  padding: 8px 20px;
  color: #fff;
  background-color: gray;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  -webkit-box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
  z-index: 1200; }
  .js-result.success,
  .js-result.error {
    bottom: 20px;
    opacity: 1;
    visibility: visible; }
  .js-result.success {
    background-color: #1FB51D; }
  .js-result.error {
    background-color: #EC6F28; }

.form-resault {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -100px;
  padding: 8px 20px;
  background-color: gray;
  color: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 120000000;
  opacity: 0; }
  .form-resault.correct {
    background-color: #1FB51D;
    bottom: 20px;
    opacity: 1; }
  .form-resault.incorrect {
    background-color: #EC6F28;
    bottom: 20px;
    opacity: 1; }

.input-error {
  position: relative; }
  .input-error .form-control {
    border-color: #E22E25; }

/*
* Map
// ================ */
.map {
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 2; }
  @media (min-width: 992px) {
    .map {
      height: 600px; } }
  .map .gm-style-iw {
    color: #000; }

.map-wrapper {
  position: relative; }

.map-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 10; }
  .map-caption-inside {
    background: #fff;
    max-width: 550px;
    padding-top: 50px; }
    .map-caption-inside .btn {
      width: 100%;
      text-transform: uppercase; }
    .map-caption-inside .contact-data-wrap {
      padding: 0 40px; }
    .map-caption-inside .list-inline.long {
      padding-bottom: 50px; }
      .map-caption-inside .list-inline.long li {
        padding: 0 25px; }
    .map-caption-inside .divider {
      width: 100%;
      background: #DDDDDD;
      height: 1px;
      margin: 46px auto; }
    .map-caption-inside .media {
      margin-top: 0; }
      .map-caption-inside .media + .media {
        margin-top: 20px; }
    .map-caption-inside .media .media-left .icon {
      font-size: 24px; }
    .map-caption-inside .media-body {
      margin-top: 0; }
      .map-caption-inside .media-body p + p {
        margin-top: 10px; }

#popup-form {
  max-width: 700px;
  margin: 0 auto;
  min-width: 310px; }
  #popup-form .form-wrapper {
    padding-left: 40px;
    padding-right: 40px; }
    #popup-form .form-wrapper .contact-form {
      margin-top: 20px; }

/*
* Progress Bar
// ============== */
.progress-wrapper {
  position: relative;
  text-align: left;
  margin-top: 30px; }
  @media (min-width: 992px) {
    .progress-wrapper {
      margin-left: auto;
      margin-right: auto; } }
  .progress-wrapper .progress {
    margin-bottom: 0;
    height: 5px;
    background: #edf4f8;
    overflow: visible; }
    .progress-wrapper .progress .progress-bar {
      height: 100%;
      width: 0%;
      -webkit-transition: width 1.4s ease;
      transition: width 1.4s ease;
      background: #142365;
      position: relative; }
    .progress-wrapper .progress .progress-bar-counter {
      text-align: center;
      display: inline-block;
      position: absolute;
      width: 36px;
      right: 0;
      top: -3px;
      z-index: 5;
      padding: 1px 6px; }
      .progress-wrapper .progress .progress-bar-counter:after {
        content: '%'; }

/* Counter
// ====================*/
.count-on {
  position: relative;
  z-index: 1; }
  .count-on .counter-data {
    margin: 20px 0; }
    @media (min-width: 768px) {
      .count-on .counter-data {
        margin: 0; } }
    .count-on .counter-data .icon {
      position: relative;
      z-index: 1;
      display: inline-block;
      font-size: 40px;
      color: #fff;
      margin: 0 auto;
      -webkit-transition: all 0.4s ease;
      transition: all 0.4s ease; }
      .count-on .counter-data .icon + * {
        margin-top: 15px; }
  .count-on .counter {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2; }
    .count-on .counter + * {
      margin-top: 10px; }
    @media (min-width: 768px) {
      .count-on .counter {
        font-size: 44px; } }

/*
// Isotope Styles
// ================ */
.iso + * {
  margin-top: 20px; }

.iso .filters-button-group {
  margin-top: 30px; }
  @media (min-width: 992px) {
    .iso .filters-button-group {
      margin-top: 0; } }

.iso .button {
  position: relative;
  display: block;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .iso .button {
      display: inline-block; } }
  @media (min-width: 992px) {
    .iso .button {
      margin-left: 0; } }
  .iso .button:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 0;
    height: 1px;
    background: #142365; }
  .iso .button:hover:after {
    width: 100%; }
  .iso .button + .button {
    margin-top: 10px; }
    @media (min-width: 768px) {
      .iso .button + .button {
        margin-left: 30px;
        margin-top: 0; } }
    @media (min-width: 1800px) {
      .iso .button + .button {
        margin-left: 60px; } }

.iso .button:active,
.iso .button.is-checked {
  outline: none; }
  .iso .button:active:after,
  .iso .button.is-checked:after {
    width: 100%; }

.iso .grid {
  margin-top: 30px; }
  @media (min-width: 768px) {
    .iso .grid {
      margin-left: -15px;
      margin-right: -15px; } }

.iso .grid article {
  background-color: #FFFFFF;
  display: block;
  width: 100%; }
  @media (min-width: 480px) {
    .iso .grid article {
      width: 50%; } }
  @media (min-width: 768px) {
    .iso .grid article {
      width: 33.3333%; } }

.iso.second article {
  width: 100%; }
  @media (min-width: 768px) {
    .iso.second article {
      margin: 10px 10px;
      width: 48%;
      width: -webkit-calc(50% - 20px);
      width: calc(50% - 20px); } }

.iso .blog-list article {
  width: 100%; }
  @media (min-width: 768px) {
    .iso .blog-list article {
      margin: 10px 10px;
      width: 48%;
      width: -webkit-calc(50% - 20px);
      width: calc(50% - 20px); } }

/*
// Countdown
// ================ */
.countdown__wrapper {
  margin-top: 40px; }

.countdown {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto; }
  @media (min-width: 768px) {
    .countdown {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap; } }
  @media (min-width: 992px) {
    .countdown {
      justify-content: space-between; } }

.countdown__massive .countdown__amount {
  color: #142365;
  position: relative;
  z-index: 1;
  font-size: 80px;
  font-weight: 700;
  width: 206px;
  height: 206px;
  margin: 0 auto;
  border: 1px solid rgba(20, 35, 101, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #142365;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }
  @media (max-width: 767px) {
    .countdown__massive .countdown__amount {
      width: 150px;
      height: 150px;
      font-size: 65px; } }

.countdown__massive .countdown__period {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: #fff;
  padding: 8px 10px;
  min-width: 80px;
  background: #142365;
  margin-top: 0;
  border-radius: 50px;
  transform: translateY(-50%); }

/*
// Tabs
// ================ */
.steps__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center; }

.steps__wrapper-light {
  position: relative;
  z-index: 1;
  margin: 0 5px; }
  @media (min-width: 992px) {
    .steps__wrapper-light {
      margin: 0; } }
  .steps__wrapper-light:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    width: 100%;
    height: 3px;
    background: #f7f7f7;
    box-shadow: inset 0px 1px 15px -8px #000;
    z-index: -1; }
  .steps__wrapper-light li {
    display: inline-block;
    position: relative;
    flex: 1;
    margin-top: -80px; }
    .steps__wrapper-light li > a {
      display: inline-block; }
    .steps__wrapper-light li.complete .steps__dot {
      background: #142365;
      border-color: #142365; }
    .steps__wrapper-light li > a.active .steps__dot {
      border-color: #142365;
      background: #fff; }
  .steps__wrapper-light .steps__title {
    color: #333; }
    .steps__wrapper-light .steps__title .icon {
      display: block;
      font-size: 21px;
      vertical-align: baseline;
      color: #142365;
      padding-right: 5px; }
      @media (min-width: 480px) {
        .steps__wrapper-light .steps__title .icon {
          display: inline-block; } }
  .steps__wrapper-light .steps__progress {
    height: 3px;
    background: #142365;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    left: 0; }

.tabgroup {
  margin-top: 40px; }

.all-light .steps__wrapper-light:before {
  background: #fff;
  opacity: 0.4;
  box-shadow: none; }

.all-light .steps__wrapper-light .steps__title {
  color: #fff; }
  .all-light .steps__wrapper-light .steps__title .icon {
    color: #fff; }

.all-light .steps__wrapper-light .steps__progress {
  background: #fff; }

/*
// Accordion
// ================ */
.accordion-wrap {
  background: #fff;
  padding: 60px 70px; }

.accordion {
  margin-bottom: 10px;
  text-align: left; }
  .accordion-title {
    cursor: pointer;
    position: relative;
    padding: 30px 20px 27px 0;
    overflow: hidden;
    font-size: 20px;
    color: #333;
    text-overflow: ellipsis;
    transition: all 0.4s ease;
    z-index: 2;
    will-change: transform;
    border-bottom: 1px solid #ddd; }
    .accordion-title .icon {
      vertical-align: baseline;
      margin-right: 15px;
      transition: all 0.4s ease; }
    .accordion-title:hover {
      color: #142365; }
      .accordion-title:hover .icon {
        transform: rotate(180deg); }
    .accordion-title.active {
      color: #142365;
      border-bottom-color: transparent; }
      .accordion-title.active .icon {
        transform: rotate(180deg); }
    .accordion-title + .accordion-inner {
      padding: 0 20px 15px 0; }

/*
// Header
// ================ */
.main-header {
  position: relative; }

.first-section {
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (min-width: 992px) {
    .first-section {
      min-height: 600px; } }
  .first-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.4);
    z-index: -2; }
  .first-section.no-overlay:after {
    content: none; }
  .first-section .container {
    width: 100%; }
  .first-section * + .btn-block {
    margin-top: 30px; }
  .first-section .section-title p {
    color: #fff;
    margin-top: 20px; }

/*
// Main
// ================ */
.main-container {
  position: relative; }
  .main-container:after {
    content: '';
    position: fixed;
    top: -100vh;
    bottom: -100vh;
    left: -100vw;
    right: -100vw;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    z-index: 60;
    pointer-events: none; }
    @media (min-width: 768px) {
      .main-container:after {
        content: none; } }
  .main-container.overlay:after {
    opacity: 1;
    pointer-events: all; }

/*
// Footer
// ================ */
.main-footer .footer-block {
  margin: 20px 0; }
  @media (min-width: 992px) {
    .main-footer .footer-block {
      margin: 0; } }

.main-footer .footer-block-title + * {
  margin-top: 20px; }

.main-footer .footer-1 {
  padding: 60px 0;
  border-top: 1px solid #E9E9E9;
  border-bottom: 1px solid #E9E9E9; }
  .main-footer .footer-1 .list-inline li .icon {
    font-size: 20px; }
  .main-footer .footer-1 p {
    color: #7A7A7A; }
  .main-footer .footer-1 .list li {
    color: #7A7A7A; }

.main-footer .footer-2 {
  padding: 20px 0; }
  .main-footer .footer-2 .container:after, .main-footer .footer-2 .container:before {
    content: none; }

img.parallax-slider {
  position: relative !important; }
