@charset "UTF-8";
/*
*
* [Table of contents]
* > Normalize
* > Main Wrapper
* > Bootstrap grid upgrade
* > Global styles
* > Type styles
* > Offsets
* > Preloader
* > Text align
* > Text style
* > Blocks visibility
* > Media
* > Color
* > Backgrounds
* > Font Awesome
* > Buttons
* > Icons
* > Lists
* > Thumbnail
* > Script styles
* > Header
* > Main
* > Footer
*
*/
/*
* 1. Normalize
// ====================*/
time, mark, audio, video, button, input, textarea,
ul {
  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, textarea, select {
  display: inline-block;
  outline: none;
  color: inherit;
  overflow: visible;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  border-radius: 0;
}

textarea {
  resize: none;
}

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

/*
* @bugfix input text-overflow padding ignore
* @affected lt IE11
*/
.lt-ie11 input {
  border-left: 1px solid rgba(0, 0, 0, 0);
  border-right: 1px solid rgba(0, 0, 0, 0);
}

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

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

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

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

/*
* Layouts
// ====================*/
.main-wrapper {
  overflow: hidden;
}

/*
* Global styles
// ====================*/
body {
  font-family: "Oxygen", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
  background: #fff;
}
body .default-font {
  font-family: "Oxygen", sans-serif;
}
body .second-font {
  font-family: "Roboto", 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: #8f1e2b;
  text-decoration: none;
}

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

/*
* Type styles
// ===========*/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  vertical-align: baseline;
  display: block;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  margin-top: 0;
  margin-bottom: 0;
}
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: #8f1e2b;
  text-decoration: none;
}

h1, .h1 {
  font-size: 50px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.05em;
}

h2, .h2 {
  font-size: 35px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.05em;
}

h3, .h3 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.05em;
}

h4, .h4 {
  font-size: 20px;
  line-height: 1.3;
}

h5, .h5 {
  font-size: 18px;
  line-height: 30px;
}

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

@media (min-width: 768px) {
  .counter-wrapper .h1 {
    font-size: 100px;
    line-height: 1;
  }
  .counter-wrapper .h2 {
    font-size: 50px;
  }
  .counter-wrapper .h5 {
    font-size: 20px;
  }
}

/*
* Offsets
// ===========*/
.p-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.p-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.p-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (min-width: 480px) {
  .p-xs-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-xs-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .p-xs-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .p-xs-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .p-xs-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .p-xs-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .p-sm-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-sm-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .p-sm-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .p-sm-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .p-sm-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .p-sm-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 992px) {
  .p-md-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-md-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .p-md-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .p-md-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .p-md-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .p-md-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1070px) {
  .p-lg-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-lg-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .p-lg-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .p-lg-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .p-lg-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .p-lg-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1400px) {
  .p-xl-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-xl-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .p-xl-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .p-xl-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .p-xl-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .p-xl-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.pt-0 {
  padding-top: 0;
}

.pt-5 {
  padding-top: 5px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-120 {
  padding-top: 120px;
}

@media (min-width: 480px) {
  .pt-xs-0 {
    padding-top: 0;
  }

  .pt-xs-5 {
    padding-top: 5px;
  }

  .pt-xs-40 {
    padding-top: 40px;
  }

  .pt-xs-60 {
    padding-top: 60px;
  }

  .pt-xs-80 {
    padding-top: 80px;
  }

  .pt-xs-120 {
    padding-top: 120px;
  }
}
@media (min-width: 768px) {
  .pt-sm-0 {
    padding-top: 0;
  }

  .pt-sm-5 {
    padding-top: 5px;
  }

  .pt-sm-40 {
    padding-top: 40px;
  }

  .pt-sm-60 {
    padding-top: 60px;
  }

  .pt-sm-80 {
    padding-top: 80px;
  }

  .pt-sm-120 {
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .pt-md-0 {
    padding-top: 0;
  }

  .pt-md-5 {
    padding-top: 5px;
  }

  .pt-md-40 {
    padding-top: 40px;
  }

  .pt-md-60 {
    padding-top: 60px;
  }

  .pt-md-80 {
    padding-top: 80px;
  }

  .pt-md-120 {
    padding-top: 120px;
  }
}
@media (min-width: 1070px) {
  .pt-lg-0 {
    padding-top: 0;
  }

  .pt-lg-5 {
    padding-top: 5px;
  }

  .pt-lg-40 {
    padding-top: 40px;
  }

  .pt-lg-60 {
    padding-top: 60px;
  }

  .pt-lg-80 {
    padding-top: 80px;
  }

  .pt-lg-120 {
    padding-top: 120px;
  }
}
@media (min-width: 1400px) {
  .pt-xl-0 {
    padding-top: 0;
  }

  .pt-xl-5 {
    padding-top: 5px;
  }

  .pt-xl-40 {
    padding-top: 40px;
  }

  .pt-xl-60 {
    padding-top: 60px;
  }

  .pt-xl-80 {
    padding-top: 80px;
  }

  .pt-xl-120 {
    padding-top: 120px;
  }
}
.pb-0 {
  padding-bottom: 0;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-120 {
  padding-bottom: 120px;
}

@media (min-width: 480px) {
  .pb-xs-0 {
    padding-bottom: 0;
  }

  .pb-xs-5 {
    padding-bottom: 5px;
  }

  .pb-xs-40 {
    padding-bottom: 40px;
  }

  .pb-xs-60 {
    padding-bottom: 60px;
  }

  .pb-xs-80 {
    padding-bottom: 80px;
  }

  .pb-xs-120 {
    padding-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .pb-sm-0 {
    padding-bottom: 0;
  }

  .pb-sm-5 {
    padding-bottom: 5px;
  }

  .pb-sm-40 {
    padding-bottom: 40px;
  }

  .pb-sm-60 {
    padding-bottom: 60px;
  }

  .pb-sm-80 {
    padding-bottom: 80px;
  }

  .pb-sm-120 {
    padding-bottom: 120px;
  }
}
@media (min-width: 992px) {
  .pb-md-0 {
    padding-bottom: 0;
  }

  .pb-md-5 {
    padding-bottom: 5px;
  }

  .pb-md-40 {
    padding-bottom: 40px;
  }

  .pb-md-60 {
    padding-bottom: 60px;
  }

  .pb-md-80 {
    padding-bottom: 80px;
  }

  .pb-md-120 {
    padding-bottom: 120px;
  }
}
@media (min-width: 1070px) {
  .pb-lg-0 {
    padding-bottom: 0;
  }

  .pb-lg-5 {
    padding-bottom: 5px;
  }

  .pb-lg-40 {
    padding-bottom: 40px;
  }

  .pb-lg-60 {
    padding-bottom: 60px;
  }

  .pb-lg-80 {
    padding-bottom: 80px;
  }

  .pb-lg-120 {
    padding-bottom: 120px;
  }
}
@media (min-width: 1400px) {
  .pb-xl-0 {
    padding-bottom: 0;
  }

  .pb-xl-5 {
    padding-bottom: 5px;
  }

  .pb-xl-40 {
    padding-bottom: 40px;
  }

  .pb-xl-60 {
    padding-bottom: 60px;
  }

  .pb-xl-80 {
    padding-bottom: 80px;
  }

  .pb-xl-120 {
    padding-bottom: 120px;
  }
}
.pl-0 {
  padding-left: 0;
}

.pl-5 {
  padding-left: 5px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-120 {
  padding-left: 120px;
}

@media (min-width: 480px) {
  .pl-xs-0 {
    padding-left: 0;
  }

  .pl-xs-5 {
    padding-left: 5px;
  }

  .pl-xs-40 {
    padding-left: 40px;
  }

  .pl-xs-60 {
    padding-left: 60px;
  }

  .pl-xs-80 {
    padding-left: 80px;
  }

  .pl-xs-120 {
    padding-left: 120px;
  }
}
@media (min-width: 768px) {
  .pl-sm-0 {
    padding-left: 0;
  }

  .pl-sm-5 {
    padding-left: 5px;
  }

  .pl-sm-40 {
    padding-left: 40px;
  }

  .pl-sm-60 {
    padding-left: 60px;
  }

  .pl-sm-80 {
    padding-left: 80px;
  }

  .pl-sm-120 {
    padding-left: 120px;
  }
}
@media (min-width: 992px) {
  .pl-md-0 {
    padding-left: 0;
  }

  .pl-md-5 {
    padding-left: 5px;
  }

  .pl-md-40 {
    padding-left: 40px;
  }

  .pl-md-60 {
    padding-left: 60px;
  }

  .pl-md-80 {
    padding-left: 80px;
  }

  .pl-md-120 {
    padding-left: 120px;
  }
}
@media (min-width: 1070px) {
  .pl-lg-0 {
    padding-left: 0;
  }

  .pl-lg-5 {
    padding-left: 5px;
  }

  .pl-lg-40 {
    padding-left: 40px;
  }

  .pl-lg-60 {
    padding-left: 60px;
  }

  .pl-lg-80 {
    padding-left: 80px;
  }

  .pl-lg-120 {
    padding-left: 120px;
  }
}
@media (min-width: 1400px) {
  .pl-xl-0 {
    padding-left: 0;
  }

  .pl-xl-5 {
    padding-left: 5px;
  }

  .pl-xl-40 {
    padding-left: 40px;
  }

  .pl-xl-60 {
    padding-left: 60px;
  }

  .pl-xl-80 {
    padding-left: 80px;
  }

  .pl-xl-120 {
    padding-left: 120px;
  }
}
.pr-0 {
  padding-right: 0;
}

.pr-5 {
  padding-right: 5px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-120 {
  padding-right: 120px;
}

@media (min-width: 480px) {
  .pr-xs-0 {
    padding-right: 0;
  }

  .pr-xs-5 {
    padding-right: 5px;
  }

  .pr-xs-40 {
    padding-right: 40px;
  }

  .pr-xs-60 {
    padding-right: 60px;
  }

  .pr-xs-80 {
    padding-right: 80px;
  }

  .pr-xs-120 {
    padding-right: 120px;
  }
}
@media (min-width: 768px) {
  .pr-sm-0 {
    padding-right: 0;
  }

  .pr-sm-5 {
    padding-right: 5px;
  }

  .pr-sm-40 {
    padding-right: 40px;
  }

  .pr-sm-60 {
    padding-right: 60px;
  }

  .pr-sm-80 {
    padding-right: 80px;
  }

  .pr-sm-120 {
    padding-right: 120px;
  }
}
@media (min-width: 992px) {
  .pr-md-0 {
    padding-right: 0;
  }

  .pr-md-5 {
    padding-right: 5px;
  }

  .pr-md-40 {
    padding-right: 40px;
  }

  .pr-md-60 {
    padding-right: 60px;
  }

  .pr-md-80 {
    padding-right: 80px;
  }

  .pr-md-120 {
    padding-right: 120px;
  }
}
@media (min-width: 1070px) {
  .pr-lg-0 {
    padding-right: 0;
  }

  .pr-lg-5 {
    padding-right: 5px;
  }

  .pr-lg-40 {
    padding-right: 40px;
  }

  .pr-lg-60 {
    padding-right: 60px;
  }

  .pr-lg-80 {
    padding-right: 80px;
  }

  .pr-lg-120 {
    padding-right: 120px;
  }
}
@media (min-width: 1400px) {
  .pr-xl-0 {
    padding-right: 0;
  }

  .pr-xl-5 {
    padding-right: 5px;
  }

  .pr-xl-40 {
    padding-right: 40px;
  }

  .pr-xl-60 {
    padding-right: 60px;
  }

  .pr-xl-80 {
    padding-right: 80px;
  }

  .pr-xl-120 {
    padding-right: 120px;
  }
}
h4 + p {
  margin-top: 20px;
}

html body .main-wrapper .m-0 {
  margin-top: 0;
  margin-bottom: 0;
}
html body .main-wrapper .m-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
html body .main-wrapper .m-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}
html body .main-wrapper .m-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
html body .main-wrapper .m-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}
html body .main-wrapper .m-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}
html body .main-wrapper .m-70 {
  margin-top: 70px;
  margin-bottom: 70px;
}
html body .main-wrapper .m-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}
html body .main-wrapper .m-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (min-width: 480px) {
  html body .main-wrapper .m-xs-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  html body .main-wrapper .m-xs-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  html body .main-wrapper .m-xs-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  html body .main-wrapper .m-xs-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  html body .main-wrapper .m-xs-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  html body .main-wrapper .m-xs-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  html body .main-wrapper .m-xs-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  html body .main-wrapper .m-xs-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  html body .main-wrapper .m-xs-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  html body .main-wrapper .m-sm-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  html body .main-wrapper .m-sm-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  html body .main-wrapper .m-sm-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  html body .main-wrapper .m-sm-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  html body .main-wrapper .m-sm-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  html body .main-wrapper .m-sm-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  html body .main-wrapper .m-sm-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  html body .main-wrapper .m-sm-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  html body .main-wrapper .m-sm-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  html body .main-wrapper .m-md-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  html body .main-wrapper .m-md-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  html body .main-wrapper .m-md-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  html body .main-wrapper .m-md-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  html body .main-wrapper .m-md-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  html body .main-wrapper .m-md-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  html body .main-wrapper .m-md-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  html body .main-wrapper .m-md-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  html body .main-wrapper .m-md-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1070px) {
  html body .main-wrapper .m-lg-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  html body .main-wrapper .m-lg-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  html body .main-wrapper .m-lg-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  html body .main-wrapper .m-lg-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  html body .main-wrapper .m-lg-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  html body .main-wrapper .m-lg-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  html body .main-wrapper .m-lg-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  html body .main-wrapper .m-lg-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  html body .main-wrapper .m-lg-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  html body .main-wrapper .m-xl-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  html body .main-wrapper .m-xl-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  html body .main-wrapper .m-xl-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  html body .main-wrapper .m-xl-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  html body .main-wrapper .m-xl-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  html body .main-wrapper .m-xl-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  html body .main-wrapper .m-xl-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  html body .main-wrapper .m-xl-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  html body .main-wrapper .m-xl-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
html body .main-wrapper .mt-0 {
  margin-top: 0;
}
html body .main-wrapper .mt-10 {
  margin-top: 10px;
}
html body .main-wrapper .mt-15 {
  margin-top: 15px;
}
html body .main-wrapper .mt-20 {
  margin-top: 20px;
}
html body .main-wrapper .mt-30 {
  margin-top: 30px;
}
html body .main-wrapper .mt-50 {
  margin-top: 50px;
}
html body .main-wrapper .mt-70 {
  margin-top: 70px;
}
html body .main-wrapper .mt-80 {
  margin-top: 80px;
}
html body .main-wrapper .mt-100 {
  margin-top: 100px;
}
@media (min-width: 480px) {
  html body .main-wrapper .mt-xs-0 {
    margin-top: 0;
  }
  html body .main-wrapper .mt-xs-10 {
    margin-top: 10px;
  }
  html body .main-wrapper .mt-xs-15 {
    margin-top: 15px;
  }
  html body .main-wrapper .mt-xs-20 {
    margin-top: 20px;
  }
  html body .main-wrapper .mt-xs-30 {
    margin-top: 30px;
  }
  html body .main-wrapper .mt-xs-50 {
    margin-top: 50px;
  }
  html body .main-wrapper .mt-xs-70 {
    margin-top: 70px;
  }
  html body .main-wrapper .mt-xs-80 {
    margin-top: 80px;
  }
  html body .main-wrapper .mt-xs-100 {
    margin-top: 100px;
  }
}
@media (min-width: 768px) {
  html body .main-wrapper .mt-sm-0 {
    margin-top: 0;
  }
  html body .main-wrapper .mt-sm-10 {
    margin-top: 10px;
  }
  html body .main-wrapper .mt-sm-15 {
    margin-top: 15px;
  }
  html body .main-wrapper .mt-sm-20 {
    margin-top: 20px;
  }
  html body .main-wrapper .mt-sm-30 {
    margin-top: 30px;
  }
  html body .main-wrapper .mt-sm-50 {
    margin-top: 50px;
  }
  html body .main-wrapper .mt-sm-70 {
    margin-top: 70px;
  }
  html body .main-wrapper .mt-sm-80 {
    margin-top: 80px;
  }
  html body .main-wrapper .mt-sm-100 {
    margin-top: 100px;
  }
}
@media (min-width: 992px) {
  html body .main-wrapper .mt-md-0 {
    margin-top: 0;
  }
  html body .main-wrapper .mt-md-10 {
    margin-top: 10px;
  }
  html body .main-wrapper .mt-md-15 {
    margin-top: 15px;
  }
  html body .main-wrapper .mt-md-20 {
    margin-top: 20px;
  }
  html body .main-wrapper .mt-md-30 {
    margin-top: 30px;
  }
  html body .main-wrapper .mt-md-50 {
    margin-top: 50px;
  }
  html body .main-wrapper .mt-md-70 {
    margin-top: 70px;
  }
  html body .main-wrapper .mt-md-80 {
    margin-top: 80px;
  }
  html body .main-wrapper .mt-md-100 {
    margin-top: 100px;
  }
}
@media (min-width: 1070px) {
  html body .main-wrapper .mt-lg-0 {
    margin-top: 0;
  }
  html body .main-wrapper .mt-lg-10 {
    margin-top: 10px;
  }
  html body .main-wrapper .mt-lg-15 {
    margin-top: 15px;
  }
  html body .main-wrapper .mt-lg-20 {
    margin-top: 20px;
  }
  html body .main-wrapper .mt-lg-30 {
    margin-top: 30px;
  }
  html body .main-wrapper .mt-lg-50 {
    margin-top: 50px;
  }
  html body .main-wrapper .mt-lg-70 {
    margin-top: 70px;
  }
  html body .main-wrapper .mt-lg-80 {
    margin-top: 80px;
  }
  html body .main-wrapper .mt-lg-100 {
    margin-top: 100px;
  }
}
@media (min-width: 1400px) {
  html body .main-wrapper .mt-xl-0 {
    margin-top: 0;
  }
  html body .main-wrapper .mt-xl-10 {
    margin-top: 10px;
  }
  html body .main-wrapper .mt-xl-15 {
    margin-top: 15px;
  }
  html body .main-wrapper .mt-xl-20 {
    margin-top: 20px;
  }
  html body .main-wrapper .mt-xl-30 {
    margin-top: 30px;
  }
  html body .main-wrapper .mt-xl-50 {
    margin-top: 50px;
  }
  html body .main-wrapper .mt-xl-70 {
    margin-top: 70px;
  }
  html body .main-wrapper .mt-xl-80 {
    margin-top: 80px;
  }
  html body .main-wrapper .mt-xl-100 {
    margin-top: 100px;
  }
}
html body .main-wrapper .ml-0 {
  margin-left: 0;
}
html body .main-wrapper .ml-10 {
  margin-left: 10px;
}
html body .main-wrapper .ml-15 {
  margin-left: 15px;
}
html body .main-wrapper .ml-20 {
  margin-left: 20px;
}
html body .main-wrapper .ml-30 {
  margin-left: 30px;
}
html body .main-wrapper .ml-50 {
  margin-left: 50px;
}
html body .main-wrapper .ml-70 {
  margin-left: 70px;
}
html body .main-wrapper .ml-80 {
  margin-left: 80px;
}
html body .main-wrapper .ml-100 {
  margin-left: 100px;
}
@media (min-width: 480px) {
  html body .main-wrapper .ml-xs-0 {
    margin-left: 0;
  }
  html body .main-wrapper .ml-xs-10 {
    margin-left: 10px;
  }
  html body .main-wrapper .ml-xs-15 {
    margin-left: 15px;
  }
  html body .main-wrapper .ml-xs-20 {
    margin-left: 20px;
  }
  html body .main-wrapper .ml-xs-30 {
    margin-left: 30px;
  }
  html body .main-wrapper .ml-xs-50 {
    margin-left: 50px;
  }
  html body .main-wrapper .ml-xs-70 {
    margin-left: 70px;
  }
  html body .main-wrapper .ml-xs-80 {
    margin-left: 80px;
  }
  html body .main-wrapper .ml-xs-100 {
    margin-left: 100px;
  }
}
@media (min-width: 768px) {
  html body .main-wrapper .ml-sm-0 {
    margin-left: 0;
  }
  html body .main-wrapper .ml-sm-10 {
    margin-left: 10px;
  }
  html body .main-wrapper .ml-sm-15 {
    margin-left: 15px;
  }
  html body .main-wrapper .ml-sm-20 {
    margin-left: 20px;
  }
  html body .main-wrapper .ml-sm-30 {
    margin-left: 30px;
  }
  html body .main-wrapper .ml-sm-50 {
    margin-left: 50px;
  }
  html body .main-wrapper .ml-sm-70 {
    margin-left: 70px;
  }
  html body .main-wrapper .ml-sm-80 {
    margin-left: 80px;
  }
  html body .main-wrapper .ml-sm-100 {
    margin-left: 100px;
  }
}
@media (min-width: 992px) {
  html body .main-wrapper .ml-md-0 {
    margin-left: 0;
  }
  html body .main-wrapper .ml-md-10 {
    margin-left: 10px;
  }
  html body .main-wrapper .ml-md-15 {
    margin-left: 15px;
  }
  html body .main-wrapper .ml-md-20 {
    margin-left: 20px;
  }
  html body .main-wrapper .ml-md-30 {
    margin-left: 30px;
  }
  html body .main-wrapper .ml-md-50 {
    margin-left: 50px;
  }
  html body .main-wrapper .ml-md-70 {
    margin-left: 70px;
  }
  html body .main-wrapper .ml-md-80 {
    margin-left: 80px;
  }
  html body .main-wrapper .ml-md-100 {
    margin-left: 100px;
  }
}
@media (min-width: 1070px) {
  html body .main-wrapper .ml-lg-0 {
    margin-left: 0;
  }
  html body .main-wrapper .ml-lg-10 {
    margin-left: 10px;
  }
  html body .main-wrapper .ml-lg-15 {
    margin-left: 15px;
  }
  html body .main-wrapper .ml-lg-20 {
    margin-left: 20px;
  }
  html body .main-wrapper .ml-lg-30 {
    margin-left: 30px;
  }
  html body .main-wrapper .ml-lg-50 {
    margin-left: 50px;
  }
  html body .main-wrapper .ml-lg-70 {
    margin-left: 70px;
  }
  html body .main-wrapper .ml-lg-80 {
    margin-left: 80px;
  }
  html body .main-wrapper .ml-lg-100 {
    margin-left: 100px;
  }
}
@media (min-width: 1400px) {
  html body .main-wrapper .ml-xl-0 {
    margin-left: 0;
  }
  html body .main-wrapper .ml-xl-10 {
    margin-left: 10px;
  }
  html body .main-wrapper .ml-xl-15 {
    margin-left: 15px;
  }
  html body .main-wrapper .ml-xl-20 {
    margin-left: 20px;
  }
  html body .main-wrapper .ml-xl-30 {
    margin-left: 30px;
  }
  html body .main-wrapper .ml-xl-50 {
    margin-left: 50px;
  }
  html body .main-wrapper .ml-xl-70 {
    margin-left: 70px;
  }
  html body .main-wrapper .ml-xl-80 {
    margin-left: 80px;
  }
  html body .main-wrapper .ml-xl-100 {
    margin-left: 100px;
  }
}

/*
* Preloader styles
// ===========*/
#page-preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff url("../../img/ari-preload.jpg") no-repeat fixed center;
  z-index: 3000;
}

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

@keyframes loader {
  0%, 10%, 100% {
    width: 60px;
    height: 60px;
  }
  65% {
    width: 120px;
    height: 120px;
  }
}
@keyframes loaderBlock {
  0%, 30% {
    transform: rotate(0);
  }
  55% {
    background-color: rgba(238, 238, 238, 0.8);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes loaderBlockInverse {
  0%, 20% {
    transform: rotate(0);
  }
  55% {
    background-color: rgba(238, 238, 238, 0.8);
  }
  100% {
    transform: rotate(-90deg);
  }
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
  animation: loader 1.2s infinite ease-in-out;
}
.loader span {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #8f1e2b;
  animation: loaderBlock 1.2s infinite ease-in-out both;
}
.loader span:nth-child(1) {
  top: 0;
  left: 0;
}
.loader span:nth-child(2) {
  top: 0;
  right: 0;
  animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}
.loader span:nth-child(3) {
  bottom: 0;
  left: 0;
  animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}
.loader span:nth-child(4) {
  bottom: 0;
  right: 0;
}

/*
* 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: 1070px) {
  .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 .small {
  font-size: 14px;
}

html body .big {
  font-size: 18px;
}

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

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

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

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

.text-medium {
  font-weight: 500;
}

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

.text-ubold {
  font-weight: 900;
}

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

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

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

.letter-spacing-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: 1070px) {
  .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: 1400px) {
  .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;
  }
}
/*
* Media
// ===========*/
.media-right {
  padding-top: 60px;
}

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

.media-ltr {
  direction: ltr;
}

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

.media {
  overflow: visible;
}
.media + .media {
  margin-top: 50px;
}
@media (min-width: 1200px) {
  .media + .media {
    margin-top: 90px;
  }
}
.media > .media-left img, .media > .media-right img {
  max-width: none;
}
.media > .media-left,
.media > .media-right,
.media > .media-body {
  padding: 0;
  direction: ltr;
  display: inherit;
  vertical-align: top;
}
.media > .media-left .icon-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 105px;
  height: 105px;
  background: #8f1e2b;
  border-radius: 7px;
  box-shadow: 0 -3px 15px 0 rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}
@media (min-width: 992px) {
  .media > .media-left .icon-wrapper {
    margin: 0;
  }
}
.media .media-body {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .media .media-body {
    text-align: left;
    margin-top: 0;
  }
}

.media-xxs {
  display: flex;
}
.media-xxs > .media-left img, .media-xxs > .media-right img {
  max-width: none;
}
.media-xxs > .media-left,
.media-xxs > .media-right,
.media-xxs > .media-body {
  display: flex;
  flex-direction: column;
}
.media-xxs > .media-right {
  padding-left: 60px;
  padding-top: 0;
}
.media-xxs > .media-left {
  padding-right: 60px;
  padding-bottom: 0;
}

.media-xxs-base > .media-left img, .media-xxs-base > .media-right img {
  max-width: 100%;
}
.media-xxs-base > .media-left,
.media-xxs-base > .media-right,
.media-xxs-base .media-body {
  padding: 0;
  display: block;
  vert-align: top;
}
.media-xxs-base > .media-right {
  padding-top: 60px;
}
.media-xxs-base > .media-left {
  padding-bottom: 60px;
}

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

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

@media (min-width: 480px) {
  .media-xs {
    display: flex;
  }
  .media-xs > .media-left img, .media-xs > .media-right img {
    max-width: none;
  }
  .media-xs > .media-left,
.media-xs > .media-right,
.media-xs > .media-body {
    display: flex;
    flex-direction: column;
  }
  .media-xs > .media-right {
    padding-left: 60px;
    padding-top: 0;
  }
  .media-xs > .media-left {
    padding-right: 60px;
    padding-bottom: 0;
  }

  .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: 60px;
  }
  .media-xs-base > .media-left {
    padding-bottom: 60px;
  }

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

  .media-xs-ltr {
    direction: ltr;
  }
  .media-xs-ltr > .media-left {
    padding-right: 60px;
    padding-left: 0;
  }
  .media-xs-ltr > .media-right {
    padding-right: 0;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .media-sm {
    display: flex;
  }
  .media-sm > .media-left img, .media-sm > .media-right img {
    max-width: none;
  }
  .media-sm > .media-left,
.media-sm > .media-right,
.media-sm > .media-body {
    display: flex;
    flex-direction: column;
  }
  .media-sm > .media-right {
    padding-left: 60px;
    padding-top: 0;
  }
  .media-sm > .media-left {
    padding-right: 60px;
    padding-bottom: 0;
  }

  .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: 60px;
  }
  .media-sm-base > .media-left {
    padding-bottom: 60px;
  }

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

  .media-sm-ltr {
    direction: ltr;
  }
  .media-sm-ltr > .media-left {
    padding-right: 60px;
    padding-left: 0;
  }
  .media-sm-ltr > .media-right {
    padding-right: 0;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .media-md {
    display: flex;
  }
  .media-md > .media-left img, .media-md > .media-right img {
    max-width: none;
  }
  .media-md > .media-left,
.media-md > .media-right,
.media-md > .media-body {
    display: flex;
    flex-direction: column;
  }
  .media-md > .media-right {
    padding-left: 60px;
    padding-top: 0;
  }
  .media-md > .media-left {
    padding-right: 60px;
    padding-bottom: 0;
  }

  .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: 60px;
  }
  .media-md-base > .media-left {
    padding-bottom: 60px;
  }

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

  .media-md-ltr {
    direction: ltr;
  }
  .media-md-ltr > .media-left {
    padding-right: 60px;
    padding-left: 0;
  }
  .media-md-ltr > .media-right {
    padding-right: 0;
    padding-left: 60px;
  }
}
@media (min-width: 1070px) {
  .media-lg {
    display: flex;
  }
  .media-lg > .media-left img, .media-lg > .media-right img {
    max-width: none;
  }
  .media-lg > .media-left,
.media-lg > .media-right,
.media-lg > .media-body {
    display: flex;
    flex-direction: column;
  }
  .media-lg > .media-right {
    padding-left: 60px;
    padding-top: 0;
  }
  .media-lg > .media-left {
    padding-right: 60px;
    padding-bottom: 0;
  }

  .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: 60px;
  }
  .media-lg-base > .media-left {
    padding-bottom: 60px;
  }

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

  .media-lg-ltr {
    direction: ltr;
  }
  .media-lg-ltr > .media-left {
    padding-right: 60px;
    padding-left: 0;
  }
  .media-lg-ltr > .media-right {
    padding-right: 0;
    padding-left: 60px;
  }
}
.media .media-middle, .media-xs .media-middle, .media-sm .media-middle, .media-md .media-middle, .media-lg .media-middle {
  vertical-align: middle;
}
.media .media-bottom, .media-xs .media-bottom, .media-sm .media-bottom, .media-md .media-bottom, .media-lg .media-bottom {
  vertical-align: bottom;
}

.ari-projects .project-item .entry-header {
  color: #8f1e2b;
}
.ari-projects .project-item .entry-header .anchor {
  opacity: 0.2;
}
.ari-projects .project-item:hover .entry-header .anchor {
  opacity: 1;
  transform: scale(1.2);
}

.ari-home-slides .project-location {
  display: none;
  position: absolute;
  bottom: 50px;
  min-width: 200px;
  padding: 20px 40px;
  background-color: rgba(143, 30, 43, 0.5);
  border-radius: 0 50px 50px 0;
}
.ari-home-slides .project-location p {
  font-size: 1.5em;
  line-height: 1;
  color: #ccc;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .ari-home-slides .project-location {
    display: block;
  }
}

/*
* Color
// ====================*/
.text-white {
  color: #fff;
}

.text-gray {
  color: #CCCCCC;
}

html body .text-primary {
  color: #8f1e2b;
}

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

.bg-white {
  background: #fff;
}

.bg-light {
  background: #F9F9F9;
}

.bg-special {
  position: relative;
  z-index: 5;
}
.bg-special h1 {
  background: #fff;
  padding: 10px;
  margin: 10px;
  letter-spacing: 0;
  mix-blend-mode: screen;
}
.bg-special:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -100%;
  background: url(../img/index-20.jpg) top center repeat;
  background-size: cover;
  -webkit-animation: bg-move 120s infinite linear;
  animation: bg-move 120s infinite linear;
  z-index: -2;
}
.bg-special:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 140px;
  bottom: 10px;
  right: -100vw;
  background: #fff;
  z-index: -1;
}

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

/*
* Components
// ================================*/
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

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

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

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

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

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

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

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

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

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

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

.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}

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

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

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

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

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

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

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

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

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

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

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

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

.fa-inverse {
  color: #fff;
}

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

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

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

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

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

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

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

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

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

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

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

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

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

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

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

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

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

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

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

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

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

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

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

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

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

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

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

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

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

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

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

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

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

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

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

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

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

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

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

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

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

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

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

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

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

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

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

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

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

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

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

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

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

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

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

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

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

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

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

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

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

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

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

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

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

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

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

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

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

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

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

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

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

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

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

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

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

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

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

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

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

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

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

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

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

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

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

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

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

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

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

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

.fa-clone:before {
  content: "";
}

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

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

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

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

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

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

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

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

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

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

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

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

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

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

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

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

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

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*
* Buttons
// ===========*/
.btn {
  display: inline-block;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
  letter-spacing: 0.04em;
  border-style: solid;
  text-overflow: ellipsis;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  text-decoration: none;
  font-size: 16px;
  box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.2);
}
.btn:hover {
  color: inherit;
  text-decoration: none;
}
.btn .icon {
  float: right;
  vertical-align: middle;
  padding-left: 10px;
}

.light-section .btn {
  color: #fff;
}

.btn-sm {
  padding: 16px 33px;
}

.btn-md {
  padding: 16px 24px;
}

.btn-lg {
  padding: 15px 50px;
}

.btn-xl {
  padding: 15px 25px;
}

.btn-default {
  color: #333;
  background: transparent;
  border: 3px solid #8f1e2b;
  border-radius: 0;
  font-family: "Roboto", sans-serif;
  box-shadow: 0px 3px 26px -4px rgba(0, 0, 0, 0.25);
}
.btn-default:hover {
  color: #fff;
  background: #8f1e2b;
  border-color: #8f1e2b;
  box-shadow: none;
}
.btn-default:focus {
  color: #fff;
  outline: none;
  background: #8f1e2b;
  border-color: #8f1e2b;
}
.btn-default:focus:active {
  border-color: #8f1e2b;
}
.btn-default:active {
  color: #fff;
  background: #8f1e2b;
  border-color: #8f1e2b;
  box-shadow: none;
}
.btn-default:active:focus {
  background: #8f1e2b;
  outline: none;
}

.btn-primary {
  color: #fff;
  background: #8f1e2b;
  border: none;
  border-radius: 0;
  font-family: "Roboto", sans-serif;
}
.btn-primary:hover {
  color: #fff;
  background: #a42231;
  box-shadow: none;
}
.btn-primary:focus {
  color: #fff;
  outline: none;
}
.btn-primary:active {
  color: #fff;
  background: #8f1e2b;
  box-shadow: none;
}
.btn-primary:active:focus {
  background: #8f1e2b;
  outline: none;
}

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

.icon-circle {
  border-radius: 50%;
}

.icon-bordered {
  border: 2px solid;
}

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

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

.icon-primary {
  color: #FFF;
  background: #8f1e2b;
}

/*
*  Lists
// ===========*/
.index-list {
  margin-top: 40px;
  counter-reset: article;
  z-index: 3;
}
@media (min-width: 1200px) {
  .index-list {
    margin-top: 90px;
  }
}
.index-list article {
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .index-list article {
    padding: 0 80px;
  }
}
@media (min-width: 1800px) {
  .index-list article {
    padding: 0 50px 0 115px;
  }
}
.index-list article:hover .index-list-counter {
  border-color: #8f1e2b;
}
.index-list article:hover .index-list-counter:after {
  bottom: -3px;
}
.index-list article .index-list-counter {
  position: relative;
  display: none;
  width: 70px;
  height: 70px;
  border: 3px solid #EEEEEE;
  margin: 15px auto 0;
  transition: all 0.4s ease;
}
@media (min-width: 992px) {
  .index-list article .index-list-counter {
    margin: 0;
    display: block;
  }
}
@media (min-width: 1200px) {
  .index-list article .index-list-counter {
    width: 90px;
    height: 90px;
  }
}
.index-list article .index-list-counter + * {
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .index-list article .index-list-counter + * {
    margin-top: 30px;
  }
}
.index-list article .index-list-counter:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 10px;
  width: 30px;
  height: 3px;
  background: #8f1e2b;
  transition: all 0.2s ease;
}
.index-list article .index-list-counter:before {
  content: counter(article);
  counter-increment: article;
  color: #8f1e2b;
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 1;
  z-index: 2;
}
.index-list article .index-list-counter--white:before {
  color: #fff;
}

.list-inline {
  margin-top: 20px;
}
.list-inline a {
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-inline a .icon {
  font-size: 16px;
  color: #8f1e2b;
}
.list-inline a:hover {
  border-color: #8f1e2b;
}
.list-inline a:hover .icon {
  color: #fff;
}

.marked-list {
  margin-top: 15px;
}
.marked-list li + li {
  margin-top: 10px;
}
.marked-list li a {
  position: relative;
  padding-left: 20px;
}
.marked-list li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8f1e2b;
}
.marked-list li a:hover:before {
  background: #fff;
}

/*
* Thumbnails
// ===========*/
.img-container {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  will-change: transform;
  transition: all 0.3s ease;
  width: 270px;
  margin: 0 auto;
  box-shadow: 0 3px 30px -2px rgba(0, 0, 0, 0.2);
}
@media (min-width: 480px) {
  .img-container {
    width: auto;
  }
}
@media (min-width: 992px) {
  .img-container {
    box-shadow: none;
  }
}
.img-container > img {
  min-width: 100%;
}
.img-container .img-panel {
  position: relative;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  will-change: transform;
  transform: translateY(-50px);
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .img-container .img-panel {
    transform: translateY(0px);
  }
}
.img-container .img-panel * + p {
  margin-top: 10px;
}
.img-container .img-panel .img-bar {
  position: absolute;
  bottom: -25px;
  margin-top: 10px;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .img-container .img-panel .img-bar {
    opacity: 0;
    visibility: hidden;
  }
}
.img-container .img-panel .img-bar a {
  display: inline-block;
}
.img-container .img-panel .img-bar a + a {
  margin-left: 20px;
}
.img-container .img-panel .img-bar a .icon {
  width: 42px;
  height: 42px;
  border: 2px solid #CACACA;
  border-radius: 50%;
  color: #CACACA;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.img-container .img-panel .img-bar a:hover .icon {
  color: #8f1e2b;
  border-color: #8f1e2b;
}
.img-container:hover {
  box-shadow: 0 3px 30px -2px rgba(0, 0, 0, 0.2);
}
.img-container:hover .img-panel {
  transform: translateY(-50px);
}
.img-container:hover .img-panel .img-bar {
  opacity: 1;
  visibility: visible;
}

html body .main-wrapper .img-container-1 {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  will-change: transform;
  transition: all 0.3s ease;
  height: 100%;
  max-height: 240px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  html body .main-wrapper .img-container-1 {
    max-height: 420px;
  }
}
@media (min-width: 1800px) {
  html body .main-wrapper .img-container-1 {
    max-height: 635px;
  }
}
html body .main-wrapper .img-container-1__small {
  max-height: 290px;
}
@media (min-width: 1200px) {
  html body .main-wrapper .img-container-1__small {
    max-height: 365px;
  }
}
@media (min-width: 1800px) {
  html body .main-wrapper .img-container-1__small {
    max-height: 555px;
  }
  html body .main-wrapper .img-container-1__small img {
    height: 100%;
  }
}
html body .main-wrapper .img-container-1 > img {
  min-width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  html body .main-wrapper .img-container-1 > img {
    height: 100%;
  }
}
html body .main-wrapper .img-container-1 .img-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  background: rgba(143, 30, 43, 0.6);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
html body .main-wrapper .img-container-1 .img-bar .icon {
  font-size: 40px;
  font-weight: 700;
  width: 58px;
  height: 58px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.6);
  transition: all 0.3s cubic-bezier(0.41, 0.22, 0.18, 1.71);
}
html body .main-wrapper .img-container-1 .img-bar .icon:before {
  padding-left: 2px;
}
html body .main-wrapper .img-container-1 .img-bar .icon:hover {
  transform: scale(1.2);
}
html body .main-wrapper .img-container-1:hover .img-bar {
  opacity: 1;
  visibility: visible;
}
html body .main-wrapper .img-container-1:hover .img-bar .icon {
  transform: scale(1);
}

/*
* Shadow
// ===========*/
.shadow {
  box-shadow: 0 2px 30px -3px rgba(0, 0, 0, 0.3);
}

/*
* Border
// ===========*/
.border {
  border: 10px solid #8f1e2b;
}

/*
* Hover effect
// ===========*/
.hover-effect > img {
  width: 100%;
}
.hover-effect * {
  transition: all 0.4s ease;
}
.hover-effect:hover * {
  color: #8f1e2b;
}
.hover-effect:hover img {
  box-shadow: 0 2px 30px -3px rgba(0, 0, 0, 0.3);
}

/*
* Big underline
// ===========*/
.prime-underline {
  position: relative;
}
.prime-underline:after {
  content: none;
  position: absolute;
  width: 370px;
  height: 7px;
  background: #8f1e2b;
  bottom: -6px;
  left: -47px;
}
@media (min-width: 992px) {
  .prime-underline:after {
    content: "";
  }
}

/*
* Figure
// ===========*/
.figure {
  position: relative;
  z-index: 1;
}
.figure:after {
  content: none;
  position: absolute;
  top: -50px;
  bottom: -80px;
  left: -100vw;
  right: calc(100% - 95px);
  border: 22px solid #EFA602;
  box-shadow: 0 2px 30px -3px rgba(0, 0, 0, 0.5), inset 0 0 10px 3px rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .figure:after {
    content: "";
  }
}
@media (min-width: 1800px) {
  .figure:after {
    top: -80px;
    bottom: -140px;
  }
}

/*
* Vertical line
// ===========*/
.vert-line {
  position: relative;
}
.vert-line:before {
  content: none;
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 3px;
  background: #8f1e2b;
}
@media (min-width: 992px) {
  .vert-line:before {
    content: "";
  }
}

/*
* Image block
// ===========*/
.img-block {
  position: relative;
}
.img-block img {
  width: 270px;
  box-shadow: 0 2px 20px 0px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .img-block img {
    width: auto;
  }
}
.img-block .abs-img {
  position: absolute;
  bottom: 40px;
  right: -80px;
}
@media (min-width: 1200px) {
  .img-block .abs-img {
    right: -180px;
  }
}
@media (min-width: 1800px) {
  .img-block .abs-img {
    right: -300px;
  }
}
.img-block .moved-img {
  margin-top: -130px;
  margin-left: 170px;
}

/*
* Form styles
// ===========*/
.form-control {
  display: inline-block;
  color: #8f1e2b;
  padding: 13px 15px;
  max-width: 540px;
  height: 50px;
  border: none;
  border-bottom: 1px solid #8f1e2b;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
.form-control:focus {
  box-shadow: none;
  border-bottom: 1px solid #8f1e2b;
}
.form-control::-webkit-input-placeholder {
  color: #8f1e2b;
}
.form-control + .btn {
  margin: 20px auto 0;
  display: block;
}
@media (min-width: 992px) {
  .form-control + .btn {
    margin-left: 25px;
    margin-top: 0;
    display: inline-block;
  }
}

textarea.form-control {
  height: 100px;
}
@media (min-width: 992px) {
  textarea.form-control {
    height: 160px;
  }
}

.subscription-form {
  margin-top: 20px;
}

.contact-form .form-control {
  max-width: none;
  border-color: #fff;
}
.contact-form .form-control::-webkit-input-placeholder {
  color: #fff;
}
.contact-form .form-control:focus {
  border-color: #8f1e2b;
}
.contact-form.second .form-control {
  border: 2px solid #ddd;
}
.contact-form.second .form-control::-webkit-input-placeholder {
  color: #333;
}
.contact-form.second .form-control:focus {
  border-color: #8f1e2b;
}

/*
* Dash
// ===========*/
.dash {
  padding: 0 5px;
}
@media (min-width: 768px) {
  .dash {
    padding: 0 25px;
  }
}

/*
* Contact Data
// ===========*/
.contact-data {
  margin-top: 40px;
}
.contact-data .media + .media {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .contact-data .media + .media {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .contact-data .media .media-left {
    padding-right: 20px;
  }
}
.contact-data .media .media-body {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .contact-data .media .media-body {
    margin-top: 0;
  }
}
.contact-data-box {
  display: inline-block;
  border: 4px solid #fff;
  padding: 32px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
}
.contact-data-box .icon {
  font-size: 30px;
  padding-right: 10px;
}
@media (min-width: 992px) {
  .contact-data-box .icon {
    padding-right: 24px;
  }
}
.contact-data-box * + * {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .contact-data-box * + * {
    margin-top: 30px;
  }
}

/*
* Rectangle
// ===========*/
.rectangle-after {
  position: relative;
  z-index: 5;
}
.rectangle-after:after {
  content: none;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -20px;
  right: -100px;
  border: 10px solid #8f1e2b;
  box-shadow: 0 2px 30px -3px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 768px) {
  .rectangle-after:after {
    content: "";
  }
}

/*
* Breadcrumbs
// ===========*/
.breadcrumbs {
  text-align: left;
  background: #8f1e2b;
  padding: 13px 0;
}
@media (min-width: 768px) {
  .breadcrumbs {
    padding-left: 40px;
  }
}
.breadcrumbs li {
  display: inline-block;
  position: relative;
  font-size: 20px;
  font-weight: 700;
}
.breadcrumbs li a:focus,
.breadcrumbs li a:active {
  color: #fff;
}
.breadcrumbs li a:hover {
  color: inherit;
}
.breadcrumbs li:after {
  content: "";
  position: absolute;
  top: 4px;
  right: -10px;
  width: 2px;
  height: 18px;
  background: #fff;
}
.breadcrumbs li:last-child:after {
  content: none;
}
.breadcrumbs li + li {
  margin-left: 15px;
}

/*
* Video section
// ===========*/
.video-section {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.video-section-play:after {
  opacity: 0;
}
.video-section-play .video-caption {
  opacity: 0;
  visibility: hidden;
}
.video-section .video-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.25s;
  z-index: 55;
}
.video-section:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  transition: all 0.4s ease;
}
.video-section .video {
  position: relative;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1000;
  background: transparent url(../img/video-preview.jpg) 0 0 no-repeat;
  background-size: cover;
}
.video-section .video-section__button {
  width: 70px;
  height: 70px;
  background: #8f1e2b;
  border-radius: 50%;
  transition: 0.4s all ease;
}
@media (min-width: 992px) {
  .video-section .video-section__button {
    width: 110px;
    height: 110px;
  }
}
.video-section .video-section__button .icon {
  font-size: 35px;
  color: #fff;
}
.video-section .video-section__button .icon:before {
  margin-left: 5px;
}
.video-section .video-section__button:hover {
  transform: scale(1.2);
}

/*
* Popover section
// ===========*/
.popover-section-wrapper {
  display: none;
  background: url(../img/about-04.jpg) 50% bottom no-repeat;
  background-size: cover;
  position: relative;
  height: 500px;
  padding: 80px 0;
}
@media (min-width: 992px) {
  .popover-section-wrapper {
    display: block;
  }
}
@media (min-width: 1200px) {
  .popover-section-wrapper {
    height: 600px;
  }
}
@media (min-width: 1800px) {
  .popover-section-wrapper {
    height: 50em;
  }
}
.popover-section-wrapper .popover-wrapper {
  max-width: 250px;
  position: absolute;
}
.popover-section-wrapper .popover-wrapper__first {
  top: 270px;
  left: 20%;
}
@media (min-width: 1800px) {
  .popover-section-wrapper .popover-wrapper__first {
    top: 320px;
    left: 440px;
  }
}
.popover-section-wrapper .popover-wrapper__second {
  top: 250px;
  left: 45%;
}
@media (min-width: 1800px) {
  .popover-section-wrapper .popover-wrapper__second {
    top: 480px;
    left: 910px;
  }
}
.popover-section-wrapper .popover-wrapper__third {
  top: 250px;
  left: 60%;
}
@media (min-width: 1800px) {
  .popover-section-wrapper .popover-wrapper__third {
    top: 250px;
    left: auto;
    right: 560px;
  }
}
.popover-section-wrapper .popover-wrapper__fourth {
  display: none;
  top: 200px;
  left: 1150px;
}
@media (min-width: 1800px) {
  .popover-section-wrapper .popover-wrapper__fourth {
    display: block;
    top: 240px;
    left: auto;
    right: 70px;
  }
}
.popover-section-wrapper .popover {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease;
}
.popover-section-wrapper .popover:hover {
  cursor: pointer;
}
.popover-section-wrapper .popover:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  border-radius: 50%;
  background-color: transparent;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  display: block;
}
.popover-section-wrapper .popover:after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.popover-section-wrapper .popover span {
  position: relative;
}
.popover-section-wrapper .popover span:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 2px;
  height: 0px;
  width: 3px;
  background: #fff;
  transition: all 0.4s ease 0.4s;
}
.popover-section-wrapper .popover span:after {
  content: "";
  position: absolute;
  top: 107px;
  left: 2px;
  width: 0px;
  height: 3px;
  background: #fff;
  transition: all 0.4s ease 0s;
}
.popover-section-wrapper .popover.open:before {
  content: none;
}
.popover-section-wrapper .popover.open:after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.popover-section-wrapper .popover.open span:before {
  height: 100px;
  transition: all 0.4s ease 0s;
}
.popover-section-wrapper .popover.open span:after {
  width: 245px;
  transition: all 0.4s ease 0.4s;
}
.popover-section-wrapper .popover.open + .popover-caption {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.popover-section-wrapper .popover-caption {
  position: relative;
  top: 47px;
  left: 55px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}
.popover-section-wrapper .popover-caption .popover-icons {
  position: absolute;
  left: -52px;
  top: 64px;
}
.popover-section-wrapper .popover-caption .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.popover-section-wrapper .popover-caption .icon + .icon {
  margin-top: 10px;
}
.popover-section-wrapper .popover-caption .icon:hover {
  background: #8f1e2b;
  color: #fff;
}
.popover-section-wrapper .popover-caption * + p {
  margin-top: 25px;
}

/*
* Helpers
// ===========*/
.lh-custom {
  line-height: 1.2;
}

.z-index-high {
  position: relative;
  z-index: 55;
}

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

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

.width100 {
  width: 100%;
}

.w-110 {
  width: 110px;
}

@media (min-width: 992px) {
  html body .main-wrapper .w-md-40 {
    width: 40%;
  }
}

@media (min-width: 992px) {
  html body .main-wrapper .w-md-30 {
    width: 30%;
  }
}

@media (min-width: 992px) {
  html body .main-wrapper .w-md-25 {
    width: calc(25% - 0.1px);
  }
}

@media (min-width: 992px) {
  html body .main-wrapper .w-md-20 {
    width: 20%;
  }
}

@media (min-width: 992px) {
  html body .main-wrapper .h-md-360 {
    height: 360px;
  }
}

@media (min-width: 992px) {
  html body .main-wrapper .h-md-180 {
    height: 180px;
  }
}

@media (min-width: 1800px) {
  html body .main-wrapper .minh-xl-380 {
    min-height: 380px;
  }
}

/*
* Script styles
// =================================*/
/*
* 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;
}

/**
* BG move Keyframes Animation
*/
@-webkit-keyframes bg-move {
  from {
    background-position: 0 0px;
  }
  to {
    background-position: -1920px 0px;
  }
}
@keyframes bg-move {
  from {
    background-position: 0 0px;
  }
  to {
    background-position: -1920px 0px;
  }
}
/**
* Pulse Keyframes Animation
*/
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0.8);
  }
  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0.8);
  }
  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0);
  }
}
@-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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: 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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes 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(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 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(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 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;
  backface-visibility: visible;
  -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;
  backface-visibility: visible;
  -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;
  backface-visibility: visible;
}

@-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;
  backface-visibility: visible;
  -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;
}

/*
* Counter
// ===========*/
.count-on .counter-item {
  font-family: "Oxygen", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #8f1e2b;
}
.count-on .counter-item + .h5 {
  margin-top: 20px;
}

/*
* Navigation
// ===========*/
.nav {
  display: none;
}
.nav-outside {
  position: absolute;
  width: 100%;
}
.nav-mobile {
  position: fixed;
  z-index: 100;
  left: 0;
  width: 100%;
}
.nav-mobile .nav-inside {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s cubic-bezier(0.47, 0, 0.75, 0.72);
  visibility: hidden;
  overflow-y: scroll;
}
.nav-mobile.active .nav-inside {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.9);
}
.nav-mobile.active .nav-links,
.nav-mobile.active .nav-logotype {
  visibility: visible;
  opacity: 1;
}
.nav-mobile.active .nav-links > li {
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile.active .nav-links > li:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-mobile.active .nav-links > li:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-mobile.active .nav-links > li:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-mobile.active .nav-links > li:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-mobile.active .nav-links > li:nth-child(5) {
  transition-delay: 0.5s;
}
.nav-mobile.active .nav-links > li:nth-child(6) {
  transition-delay: 0.6s;
}
.nav-mobile.active .nav-links > li:nth-child(7) {
  transition-delay: 0.7s;
}
.nav-mobile.active .nav-toggle {
  background: transparent;
}
.nav-mobile .nav-logotype {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  max-width: 160px;
}
.nav-mobile .nav-links {
  text-align: center;
  visibility: hidden;
  opacity: 0;
  padding-top: 60px;
}
.nav-mobile .nav-links > li {
  opacity: 0;
  will-change: transform;
  transform: translateY(-100%);
  transition: 0.3s;
}
.nav-mobile .nav-links > li + li {
  margin-top: 8px;
}
.nav-mobile .nav-links > li.active > a {
  background-color: rgba(255, 255, 255, 0.2);
}
.nav-mobile .nav-links > li > a {
  padding: 4px 20px;
  color: #fff;
  display: inline-block;
}
.nav-mobile .nav-links > li > a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.nav-mobile .nav-toggle {
  position: relative;
  transform: rotate(0deg);
  margin: 2px 9px;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  top: 15px;
  height: 48px;
  text-align: center;
  background: #8f1e2b;
  z-index: 3000;
  border: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  padding-right: 60px;
}
.nav-mobile .nav-logo {
  font-weight: bold;
  line-height: 48px;
  padding-left: 15px;
  vertical-align: middle;
  margin: auto;
}
.nav-mobile .nav-logo img {
  max-height: 36px;
  width: auto;
}
.nav-mobile .nav-button {
  display: block;
  position: absolute;
  right: 0px;
  top: 5px;
  width: 30px;
  height: 40px;
  margin: 0 10px;
}
.nav-mobile .nav-button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.nav-mobile .nav-button span:nth-child(1) {
  top: 7px;
}
.nav-mobile .nav-button span:nth-child(2),
.nav-mobile .nav-button span:nth-child(3) {
  top: 17px;
}
.nav-mobile .nav-button span:nth-child(4) {
  top: 27px;
}
.nav-mobile .nav-button.active span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.nav-mobile .nav-button.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-mobile .nav-button.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-mobile .nav-button.active span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.nav-desktop {
  padding: 0px 3% 0 3%;
  z-index: 1500;
  position: relative;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background-color: rgba(25, 25, 25, 0);
}
.nav-desktop .nav-inside {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-desktop.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #333;
  padding-top: 0px;
  padding-bottom: 0px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.nav-desktop.nav-fixed .nav-logotype {
  max-width: 150px;
  top: 0;
}
.nav-desktop.nav-fixed .nav-links {
  transition: 0.4s all ease;
  padding-top: 0px;
}
.nav-desktop.nav-fixed .nav-links li:last-child a {
  margin-right: -12px;
}
@media (min-width: 1800px) {
  .nav-desktop.nav-fixed .nav-links li:last-child a {
    margin-right: -19px;
  }
}
.nav-desktop.nav-fixed .nav-links li + li {
  margin-left: 0;
}
@media (min-width: 1400px) {
  .nav-desktop.nav-fixed .nav-links li + li {
    margin-left: 20px;
  }
}
.nav-desktop.nav-fixed .nav-links > li.active a {
  background: #8f1e2b;
  color: #fff;
}
.nav-desktop.nav-fixed .nav-links a {
  padding: 20px 12px;
  color: #fff;
}
.nav-desktop.nav-fixed .nav-links a:hover {
  background: rgba(143, 30, 43, 0.7);
  color: #fff;
}
@media (min-width: 1400px) {
  .nav-desktop.nav-fixed .nav-links a {
    padding: 25px 20px;
  }
}
.nav-desktop:before, .nav-desktop:after {
  content: none;
}
.nav-desktop:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.nav-desktop .nav-toggle {
  display: none;
}
.nav-desktop .nav-logotype {
  display: none;
  transition: 0.3s;
  max-width: 240px;
  position: relative;
  top: 5px;
  left: 15px;
}
@media (min-width: 992px) {
  .nav-desktop .nav-logotype {
    display: inline-block;
  }
}
.nav-desktop .nav-links {
  transition: 0.4s all ease;
}
@media (min-width: 1200px) {
  .nav-desktop .nav-links {
    padding-top: 0;
  }
}
.nav-desktop .nav-links > li {
  display: inline-block;
  transition: 0.5s all ease;
}
.nav-desktop .nav-links > li + li {
  margin-left: 24px;
}
.nav-desktop .nav-links > li:last-child {
  margin-right: 6px;
}
.nav-desktop .nav-links > li.active a:after {
  opacity: 1;
}
.nav-desktop .nav-links > li.active a {
  color: #8f1e2b;
  background-color: #fff;
}
.nav-desktop .nav-links > li a {
  font-family: "Roboto", sans-serif;
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #fff;
  transition: 0.5s all ease;
  padding: 6px 6px;
}
@media (min-width: 992px) {
  .nav-desktop .nav-links > li a {
    padding: 35px 10px 20px;
  }
}
.nav-desktop .nav-links > li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #8f1e2b;
  opacity: 0;
  transition: all 0.4s ease;
}
.nav-desktop .nav-links li {
  position: relative;
}
.nav-desktop .nav-links li::before {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 0;
  left: 0;
  border-top: 4px solid #8f1e2b;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.nav-desktop .nav-links li:hover::before {
  width: 100%;
}

/*
* 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;
  }
}
/**
* FadeIn Keyframes Animation
*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* 
 * 	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: 60px;
  height: 60px;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
}

.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-controls {
  width: 100%;
  position: absolute;
  top: -45px;
}
@media (min-width: 992px) {
  .owl-controls {
    top: 50%;
  }
}

.owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

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

.owl-prev {
  left: 20%;
  top: 0;
}
.owl-prev:before {
  content: "";
  padding-right: 4px;
}
@media (min-width: 992px) {
  .owl-prev {
    left: 0;
  }
}

.owl-next {
  right: 20%;
  top: 0;
}
.owl-next:before {
  content: "";
  padding-left: 4px;
}
@media (min-width: 992px) {
  .owl-next {
    right: 0;
  }
}

/* Owl dots */
.owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-controls .owl-dot {
  display: inline-block;
  text-align: center;
  position: relative;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
  border: 2px solid #8f1e2b;
  border-radius: 50%;
  background-color: transparent;
  transition: 0.3s ease;
}
.owl-controls .owl-dot.active {
  background: #8f1e2b;
}
.owl-controls .owl-dot + .owl-dot {
  margin-left: 10px;
}

.owl-1 {
  margin-top: 50px;
}
@media (min-width: 1200px) {
  .owl-1 {
    margin-top: 80px;
  }
}
.owl-1 .owl-item {
  padding: 10px 0;
}
.owl-1 a {
  width: 170px;
  height: 145px;
  border: 2px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.owl-1 a:hover {
  border-color: transparent;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.3);
}

/*
* ToTop
// ===========*/
.toTopButton {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  font-size: 26px;
  line-height: 46px;
  text-align: center;
  color: #FFF;
  background: #8f1e2b;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  visibility: hidden;
  z-index: 1200;
  transition: 0.4s all cubic-bezier(0.41, 0.22, 0.18, 1.71);
  transform: scale(0.5);
  opacity: 0;
}
.toTopButton:before {
  font-family: FontAwesome;
  content: "";
}
.toTopButton:hover, .toTopButton:focus {
  color: #FFF;
  background: #7a1a25;
  text-decoration: none;
}
.toTopButton--active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 768px) {
  .toTopButton {
    right: 34px;
    bottom: 34px;
  }
}
/*
* Tabs
// ===========*/
aside ul + .btn {
  margin-top: 20px;
}
@media (min-width: 992px) {
  aside ul + .btn {
    margin-top: 80px;
  }
}
aside ul li {
  font-size: 20px;
}
aside ul li + li {
  margin-top: 20px;
}

.responsive-tabs .resp-tabs-list {
  display: none;
  padding: 0;
  margin-bottom: 0;
  position: absolute;
  bottom: -50px;
  transform: translateX(50%);
  right: 50%;
}
@media (min-width: 992px) {
  .responsive-tabs .resp-tabs-list {
    bottom: auto;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
  }
}
@media (min-width: 1200px) {
  .responsive-tabs .resp-tabs-list {
    right: 90px;
  }
}
.responsive-tabs .resp-tabs-list li {
  display: inline-block;
  position: relative;
  transition: all 0.4s ease;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .responsive-tabs .resp-tabs-list li {
    display: block;
  }
}
.responsive-tabs .resp-tabs-list li:after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #8f1e2b;
}
@media (min-width: 992px) {
  .responsive-tabs .resp-tabs-list li:last-child:after {
    content: none;
  }
}
.responsive-tabs .resp-tabs-list li + li {
  margin-left: 15px;
}
@media (min-width: 992px) {
  .responsive-tabs .resp-tabs-list li + li {
    margin-top: 15px;
    margin-left: 0;
  }
}
.responsive-tabs .resp-tabs-list li:hover {
  color: #8f1e2b;
}

.responsive-tabs .resp-tab-content {
  display: none;
}

.responsive-tabs[data-type=horizontal] .resp-accordion, .responsive-tabs[data-type=vertical] .resp-accordion {
  display: none;
}

.responsive-tabs[data-type=horizontal] .resp-tabs-list, .responsive-tabs[data-type=vertical] .resp-tabs-list {
  display: block;
}

.responsive-tabs-classic {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .responsive-tabs-classic {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .responsive-tabs-classic {
    margin-top: 80px;
    margin-bottom: 0;
  }
}
.responsive-tabs-classic .quote-icon {
  max-width: 50px;
}
@media (min-width: 768px) {
  .responsive-tabs-classic .quote-icon {
    max-width: 100%;
  }
}
.responsive-tabs-classic .resp-tabs-container {
  width: 100%;
}
.responsive-tabs-classic .resp-accordion {
  position: relative;
  padding: 15px 20px 15px 2px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  color: #9b9b9b;
  text-align: left;
  border-bottom: 1px solid #d9d9d9;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition: color 0.2s ease-in;
}
.responsive-tabs-classic .resp-accordion .resp-arrow {
  position: absolute;
  top: calc(50% + 5px);
  right: 0;
  bottom: 0;
  width: 20px;
  transform: translateY(-50%);
}
.responsive-tabs-classic .resp-accordion .resp-arrow:before {
  content: "";
  color: #999;
  font-family: "FontAwesome";
  font-size: 21px;
  font-weight: 400;
  text-align: center;
  transition: 0.2s;
}
.responsive-tabs-classic .resp-accordion:hover {
  cursor: pointer;
  color: #333;
}
.responsive-tabs-classic .resp-accordion:hover .resp-arrow:before {
  color: #333;
}
.responsive-tabs-classic .resp-accordion.resp-tab-active {
  color: #333;
}
.responsive-tabs-classic .resp-accordion.resp-tab-active .resp-arrow:before {
  content: "";
}
.responsive-tabs-classic .resp-tab-content {
  padding: 0 15px;
}
@media (min-width: 992px) {
  .responsive-tabs-classic .resp-tab-content {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .responsive-tabs-classic .resp-tab-content p {
    padding-right: 40px;
  }
}
.responsive-tabs-classic .resp-tab-active {
  color: #8f1e2b;
}

html body .tabs-1.responsive-tabs .resp-tabs-list {
  text-align: center;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  transform: translateY(0);
}
@media (min-width: 992px) {
  html body .tabs-1.responsive-tabs .resp-tabs-list {
    text-align: left;
  }
}
html body .tabs-1.responsive-tabs .resp-tabs-list li {
  display: block;
  margin: 0;
  padding-bottom: 5px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  html body .tabs-1.responsive-tabs .resp-tabs-list li {
    display: inline-block;
    margin-top: 0;
    margin-left: 20px;
  }
}
@media (min-width: 992px) {
  html body .tabs-1.responsive-tabs .resp-tabs-list li {
    display: block;
    margin-left: 0;
    margin-top: 15px;
    padding-bottom: 0;
  }
}
html body .tabs-1.responsive-tabs .resp-tabs-list li:after {
  content: none;
  bottom: 0;
  top: 0;
  left: -20px;
  width: 2px;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  html body .tabs-1.responsive-tabs .resp-tabs-list li:after {
    content: "";
  }
}
@media (min-width: 992px) {
  html body .tabs-1.responsive-tabs .resp-tabs-list li:last-child:after {
    content: "";
  }
}
html body .tabs-1.responsive-tabs .resp-tabs-list li.resp-tab-active:after {
  opacity: 1;
  left: -14px;
}

/*
* Js form
// ===========*/
html body .main-wrapper .js-form input:required:valid {
  border-color: #1FB51D;
}
html body .main-wrapper .js-form input:-webkit-autofill {
  background-color: red;
  color: red;
}

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

/*
* Map
// ===========*/
.map {
  width: 100%;
  height: 300px;
  position: relative;
}
@media (min-width: 992px) {
  .map {
    height: 430px;
  }
}
.map .marker-popup {
  color: #000;
}

/*
* Isotope Styles
// ===========*/
.iso {
  margin-top: 30px;
}
.iso .button {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
  padding: 16px 24px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}
.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;
  border-color: #8f1e2b;
  box-shadow: 0px 3px 26px -4px rgba(0, 0, 0, 0.25);
}
.iso .button-group {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .iso .button-group {
    display: block;
  }
}
@media (min-width: 992px) {
  .iso .button-group {
    text-align: left;
  }
}
@media (min-width: 1800px) {
  .iso .button-group {
    margin-left: 16.66667%;
  }
}
.iso .button-group:after {
  content: "";
  display: block;
  clear: both;
}
.iso .grid {
  margin-top: 40px;
}
.iso .grid article {
  display: inline-block;
  float: left;
  overflow: hidden;
  /* margin: 2% 0;
  width: 100%;
  @media(min-width: 480px){ width: 48%; margin: 1%; }
  @media(min-width: 768px){ width: 31.3%; }
  @media(min-width: 1800px){ width: 23%; } */
}
@media (min-width: 480px) {
  .iso .grid article {
    width: calc(50% - 1px);
  }
}

.owl-home {
  max-height: 640px;
  overflow: hidden;
}

/*
* Header
// ===========*/
.main-header {
  position: relative;
}
.main-header .highlighted {
  position: relative;
  letter-spacing: 0;
  vertical-align: middle;
  z-index: 1;
}
@media (min-width: 768px) {
  .main-header .highlighted {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .main-header .highlighted {
    display: inline-block;
    margin-top: 0;
    margin-left: 30px;
  }
}
.main-header .highlighted:after {
  content: none;
  position: absolute;
  width: 150px;
  height: 130px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #8f1e2b;
  z-index: -1;
}
@media (min-width: 768px) {
  .main-header .highlighted:after {
    content: "";
  }
}
@media (min-width: 992px) {
  .main-header .highlighted:after {
    width: 180px;
    height: 180px;
  }
}

.page-header-01 {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.page-header-01 .container {
  width: 100%;
}
@media (min-width: 1200px) {
  .page-header-01 .moved {
    margin-left: -100px;
  }
}
.page-header-01 * + .btn {
  margin-top: 25px;
}

.sub-page-header {
  display: flex;
  align-items: center;
  height: 280px;
}
@media (min-width: 992px) {
  .sub-page-header {
    padding-top: 55px;
  }
}
.sub-page-header .figure:after {
  content: "";
  border-width: 18px;
  width: 300px;
  left: 50%;
  transform: translateX(-50%);
  top: -100vh;
  bottom: -30px;
}
@media (min-width: 992px) {
  .sub-page-header .figure:after {
    left: 0;
    transform: translateX(0);
  }
}
@media only screen and (min-width: 765px) {
  .sub-page-header:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 160px;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 100%);
  }
}

/*
* Main
// ===========*/
/*
* Footer
// ===========*/
.main-footer .footer-1 {
  padding: 50px 0;
  background: #171000;
}
.main-footer .footer-1 .subscription-form {
  position: relative;
}
.main-footer .footer-1 .subscription-form .form-control {
  border-color: #fff;
  height: 40px;
}
.main-footer .footer-1 .subscription-form .btn-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.main-footer .footer-1 .subscription-form .btn-submit .icon {
  font-size: 20px;
  color: #8f1e2b;
}
.main-footer .footer-1 p span {
  display: inline-block;
  margin-top: 5px;
}
.main-footer .footer-1 img + * {
  margin-top: 15px;
}
.main-footer .footer-2 {
  background: #0D0900;
  padding: 25px 0;
}

/* Postal Address */
.postal .dis-ib {
  display: inline-block;
}
.postal .vat {
  vertical-align: top;
}
.postal p {
  font-size: 1.25rem;
}
.postal i {
  color: #8f1e2b;
  margin-right: 14px;
  margin-right: 1rem;
  width: 14px;
  width: 1rem;
}
.postal h5 {
  text-transform: uppercase;
  color: #8f1e2b;
  font-weight: 600;
  font-size: 2rem;
}
.postal .email .dis-ib {
  letter-spacing: 0.05em;
}

.box {
  border-radius: 5px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}
.box.widget .title {
  padding: 14px 28px;
  border-bottom: 2px solid #eee;
  padding: 1rem 2rem;
  font-size: 2rem;
}
.box.widget .title span {
  position: relative;
  border-radius: 50%;
  border: 1px solid #333;
  padding: 4px;
  width: 1.3em;
  height: 1.3em;
}
.box.widget .title + * {
  padding: 1rem 2rem 2rem;
}

/*  Devis Form */
.gform {
  /*  

  &_heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3
  }
   .gf_progressbar {
      background: #f3f3f3;
      border-top: 1px solid rgba(0, 0, 0, .05);

      &_wrapper {
        background: #fff;
        border-radius: 0 0 6px 6px;
        box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
        border-top: 2px solid #ddd;
        margin: 2.5rem 0
      }

      &_title {
        margin: 0 !important;
        padding: 1rem 1.5rem;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 900
      }


      &_percentage {
        padding: .25rem 1.5rem;
        background: #88c737;
        color: #fff;
        font-weight: 900;
        font-size: 14px
      }

    }
     */
}
.gform .form-label + .form-data {
  margin-top: 1.5rem;
}
.gform label {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.entry-content .gform .form-field:not(.display),
.gform legend {
  padding: 1.5rem;
  margin: 0 0 2rem;
  background: #fff;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  border-top: 2px solid #8f1e2b;
}
.entry-content .gform .form-field:not(.display)::before,
.gform legend::before {
  content: none;
}
.entry-content .gform .form-field {
  line-height: 26px;
}
.gform .radio,
.gform .checkbox {
  display: list-item;
  list-style: none;
  margin: 0;
  padding: 0 0 0 2rem;
}
.gform .radio > input + *::before,
.gform .checkbox > input + *::before {
  border: 2px solid;
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  left: 0rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
}
.gform .radio > input:checked + *::before,
.gform .checkbox > input:checked + *::before {
  background: #8f1e2b;
  border-color: #8f1e2b;
  box-shadow: 0 0 0 2px #fff inset;
}
.gform .radio > input:first-of-type,
.gform .checkbox > input:first-of-type {
  width: 15px;
  height: 15px;
  opacity: 0;
  position: absolute;
}
.gform .checkbox > input + ::before {
  border-radius: 4px;
}
.gform .radio > input + ::before {
  border-radius: 50%;
}
.gform .form-label {
  display: inline-block;
}
.gform .form-label label {
  font-weight: 600;
}
.gform .form-label .required {
  color: #8f1e2b;
}
.gform legend {
  padding: 1.5rem 1rem;
  text-align: center;
  background-color: #8f1e2b;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.gform fieldset::before,
.gform fieldset::after {
  content: none;
}
.gform input,
.gform select,
.gform textarea {
  padding: 21px 28px;
  padding: 1.5rem 2rem;
}
.gform input,
.gform textarea,
.gform select {
  background: #f6f6f6;
  border: medium none;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.025) inset;
  font-size: 16px;
  line-height: 1.5;
  margin: 0.25rem 0;
  max-width: 100%;
}
.gform textarea {
  display: block;
  resize: none;
  width: 100%;
}
.gform .btn,
.gform button,
.gform input[type=submit] {
  text-decoration: none;
  opacity: 1;
  background: #8f1e2b;
  border: 1px solid #8f1e2b;
  border-radius: 2px;
  color: #fff;
  font-size: 16px;
  font-size: 1.142857rem;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  padding: 14px 28px;
  padding: 1rem 2rem;
  box-shadow: 0 3px 0 #8f1e2b;
}
.gform .btn:hover,
.gform button:hover,
.gform input[type=submit]:hover {
  box-shadow: 0 4px 0 #8f1e2b, 0 3px 6px #8f1e2b;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  padding-top: 16px;
  padding-top: 1.142857rem;
  color: #fff;
  border-color: transparent;
  padding-bottom: 12px;
  padding-bottom: 0.857142rem;
}
@media screen and (min-width: 960px) {
  .gform .form-data .radio {
    width: 45%;
    vertical-align: top;
  }
  .gform .form-data .radio,
.gform .form-data .checkbox {
    display: inline-block;
    padding: 0.75rem 0.5rem 0.75rem 2rem;
  }
  .gform .form-data .radio > input + ::before,
.gform .form-data .checkbox > input + ::before {
    top: 1.2rem;
  }
  .gform .half .form-data {
    float: right;
    margin: -1.75rem -1.5rem 0;
    line-height: 1.5;
  }
  .gform .half input {
    line-height: 1.99;
    border-radius: 0;
  }
  .gform .half input {
    min-width: 416px;
  }
}
.formarea .gform button[type=submit] {
  float: right;
  width: auto;
}

.entry-content h2 {
  font-size: 2rem;
  font-weight: 700;
}

/*
#page .gfield_radio li #page .gfield_radio li .gfield_radio {
  margin-right: -1.5rem;
  margin-left: -1.5rem
}

.gfield_radio>li {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #eee;
  padding-left: 4rem
}

.entry-content .gform_body .gform_fields>li.gfield_html {
  padding: 3rem 1.5rem;
  border-top: none;
  border-bottom: 2px solid $brand-primary;
  border-radius: 6px 6px 0 0;
  margin-top: 4rem
}

.entry-content .gfield_html h2,
.entry-content .gfield_html h3 {
  margin: 0
}

.gform_page_footer {
  text-align: center
}

.gfield_description {
  font-size: 1.25rem;
  padding: 1rem 0;
  line-height: 1.4;
  margin-bottom: .5rem
}

.gform_next_button,
.gform_previous_button {
  background: $brand-primary;
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin: 0 .5rem
}

.gform_previous_button {
  background: transparent;
  color: $brand-primary;
  border: 1px solid $brand-primary;
  padding: 1rem;
  font-size: 1rem
}

.gform_previous_button:hover {
  color: #fff;
  border-color: transparent
}

.gform_save_link {
  display: block;
  clear: both;
  text-align: center;
  margin: 2rem 0 0;
  padding: 1px
}

.ginput_container_radio input+input {
  padding: 1rem;
  margin: 1rem 0;
  line-height: 1.5;
  min-width: 40%
}
 */
.langswitcher {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 1rem !important;
  display: inline-block;
}
.langswitcher li {
  display: inline-block;
  margin-left: 0.5rem;
  line-height: 1rem;
}
.langswitcher .active {
  font-weight: bold;
  text-decoration: underline;
}
.langswitcher .icon, .langswitcher a {
  color: #ffffff;
  font-size: 14px;
}

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