@import url(../plugins/fancybox/jquery.fancybox.css);
@import url(../plugins/Swiper-4.0.3/css/swiper.css);
@import url(../plugins/OwlCarousel2-2.2.1/owl.carousel.css);
@import url(../plugins/OwlCarousel2-2.2.1/owl.theme.default.css);
@import url(../plugins/slick/slick.css);
@import url(../fonts/font-awesome-4.7.0/css/font-awesome.css);
.fancybox-overlay {
  background: white; }

.fancybox-outer .fancybox-inner {
  overflow: visible !important; }

.fancybox-wrap.fancybox-opened .fancybox-skin {
  box-shadow: none; }
.fancybox-wrap .fancybox-close {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 70px;
  height: 70px;
  background: url("../images/close.png") center center no-repeat; }
.fancybox-wrap .fancybox-nav {
  position: fixed; }
  .fancybox-wrap .fancybox-nav span {
    width: 70px;
    height: 70px;
    margin-top: -40px; }
  .fancybox-wrap .fancybox-nav.fancybox-next span {
    background: url("../images/right.png") center center no-repeat; }
  .fancybox-wrap .fancybox-nav.fancybox-prev span {
    background: url("../images/left.png") center center no-repeat; }

.swiper-pagination-bullets {
  bottom: 0px;
  margin: auto;
  right: 0;
  left: 0;
  padding: 10px; }
  .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.8;
    margin: 3px;
    background: #444;
    border: none; }
    .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: color("main");
      opacity: 1; }

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); } }
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

/****/
@-webkit-keyframes goUp {
  0% {
    opacity: 0;
    height: 0; }
  100% {
    opacity: 1;
    height: 100%; } }
@keyframes goUp {
  0% {
    opacity: 0;
    height: 0; }
  100% {
    opacity: 1;
    height: 100%; } }
.goUp {
  -webkit-animation-name: goUp;
  animation-name: goUp; }

/****/
@-webkit-keyframes goLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes goLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.goLeft {
  -webkit-animation-name: goLeft;
  animation-name: goLeft; }

/****/
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(300px);
    transform: translateY(300px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(300px);
    -ms-transform: translateY(300px);
    transform: translateY(300px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); } }
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); } }
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); } }
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); } }
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) 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 {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-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: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

h1, h2, h3, h4, h5, p, a, div, span, body, html, section, ul, li {
  margin: 0px;
  padding: 0px; }

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

h1, h2, h3, h4 {
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 1.3; }

html {
  font-size: 10px;
  font-size: 62.5%; }

body {
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  body.no-scroll {
    overflow: hidden; }
  body.blur #main, body.blur #header, body.blur #footer {
    filter: blur(4px);
    -webkit-filter: blur(4px); }

html, body {
  height: 100%; }

.fa {
  line-height: inherit; }

h1 {
  font-weight: 800;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.3333333333;
  letter-spacing: 0.5px; }
  @media only screen and (max-width: 720px) {
    h1 {
      font-size: 28px;
      font-size: 2.8rem;
      line-height: 1.1428571429; } }

h2 {
  font-weight: 500;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.3333333333;
  letter-spacing: 0.3px; }
  @media only screen and (max-width: 720px) {
    h2 {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 1.3333333333; } }

h3 {
  font-weight: 500;
  letter-spacing: 0.3px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.3333333333; }

.hr {
  border: 0;
  height: 1px;
  background: #000;
  background-image: linear-gradient(to right, #333, #000, #333);
  margin-bottom: 20px; }

.label {
  display: block;
  margin-bottom: 10px; }

.input {
  display: block;
  margin: 0;
  width: 100%;
  height: 40px;
  padding: 0px 10px;
  background: white;
  color: #424242;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  font-family: 'open-sans', sans-serif;
  appearance: none;
  box-shadow: none;
  outline: none;
  border: none;
  box-sizing: border-box;
  margin-bottom: 0px;
  border-radius: 0;
  color: #424242;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  resize: none; }
  .input::-webkit-input-placeholder {
    font-weight: 400;
    color: #949494; }
  .input:-moz-placeholder {
    /* Firefox 18- */
    font-weight: 400;
    color: #949494; }
  .input::-moz-placeholder {
    /* Firefox 19+ */
    font-weight: 400;
    color: #949494; }
  .input:-ms-input-placeholder {
    font-weight: 400;
    color: #949494; }

textarea.input {
  height: 100px; }

.after-clear::after, .row::after, .inner-row::after {
  clear: both;
  content: " ";
  display: table; }

.btn {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.25;
  color: #ffffff;
  line-height: 36px;
  background: #0177c1;
  height: 40px;
  width: 100%;
  border: none;
  border-radius: 0px;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
  box-sizing: border-box;
  font-family: 'open-sans', sans-serif;
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  text-align: center;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms; }
  .btn:hover, .btn:focus, .btn:active, .btn.active, .btn.current-menu-item {
    opacity: 0.85; }

img {
  max-width: 100%; }

.section {
  overflow: hidden;
  width: 100%;
  position: relative; }
  .section.section-padding {
    padding: 100px 0px; }
    @media only screen and (max-width: 1040px) {
      .section.section-padding {
        padding: 80px 0px; } }
    @media only screen and (max-width: 720px) {
      .section.section-padding {
        padding: 50px 0px; } }

.container {
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative; }
  .container::after {
    clear: both;
    content: " ";
    display: table; }

label.error {
  text-align: right;
  color: red;
  position: relative; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.landing-page-01 .media img {
  width: 100%; }
.landing-page-01 .btn.submit {
  background: #cc2429; }
@media only screen and (max-width: 720px) {
  .landing-page-01 h1 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.1666666667;
    margin-bottom: 10px; } }
@media only screen and (max-width: 720px) {
  .landing-page-01 h2 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.0666666667; } }
@media only screen and (max-width: 720px) {
  .landing-page-01 .click2call {
    background: #cc2429; } }

.btn.submit {
  background: #519bc8; }

.text-style {
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.2307692308; }
  @media only screen and (max-width: 720px) {
    .text-style {
      font-size: 20px;
      font-size: 2rem;
      line-height: 1.4; } }
  .text-style h2 {
    font-weight: 900; }
  .text-style h3 {
    font-weight: 900;
    color: #519bc8; }
  .text-style ul {
    padding-right: 30px; }
    .text-style ul li {
      margin-bottom: 10px; }

.section-header:after {
  background: #ababab; }

.landing-page-02 {
  color: white; }
  .landing-page-02 .section-headline {
    font-weight: 900;
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1.0833333333; }
    @media only screen and (max-width: 720px) {
      .landing-page-02 .section-headline {
        font-size: 32px;
        font-size: 3.2rem;
        line-height: 1.1875; } }
  .landing-page-02 .content-area {
    padding: 50px 20px; }
    @media only screen and (max-width: 720px) {
      .landing-page-02 .content-area {
        padding: 20px 10px; } }
    .landing-page-02 .content-area .section-header:after {
      display: none; }
    .landing-page-02 .content-area .logo {
      max-width: 65%;
      margin-bottom: 20px; }
  .landing-page-02 .media:after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: " ";
    width: 50vw;
    position: absolute;
    right: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.5); }
    @media only screen and (max-width: 1040px) {
      .landing-page-02 .media:after {
        width: 100%; } }
  .landing-page-02 .form {
    width: 420px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 6px;
    margin: 0 auto 80px; }
    .landing-page-02 .form .label {
      margin-bottom: 20px; }
    .landing-page-02 .form .input {
      border-radius: 6px;
      height: 50px; }
      @media only screen and (max-width: 720px) {
        .landing-page-02 .form .input {
          height: 40px; } }
    .landing-page-02 .form .submit {
      border-radius: 6px;
      margin-bottom: 10px;
      height: 50px; }
      @media only screen and (max-width: 720px) {
        .landing-page-02 .form .submit {
          height: 40px; } }
    @media only screen and (max-width: 1040px) {
      .landing-page-02 .form {
        background: none; } }
    @media only screen and (max-width: 720px) {
      .landing-page-02 .form {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin: 0px;
        border-radius: 0px; } }
  .landing-page-02 .click2call span {
    display: block; }
  .landing-page-02 .click2call .c2c-text {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.1818181818; }
  .landing-page-02 .click2call .c2c-num {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.1428571429;
    font-weight: 900; }
    @media only screen and (max-width: 720px) {
      .landing-page-02 .click2call .c2c-num {
        display: none; } }
  @media only screen and (max-width: 720px) {
    .landing-page-02 .click2call {
      position: fixed;
      bottom: 0px;
      width: 100%;
      left: 0px;
      right: 0px;
      background: #519bc8;
      padding: 15px 0px;
      z-index: 3; } }
  .landing-page-02 .credit {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #519bc8;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.2222222222;
    width: 100%;
    padding: 20px 0px; }
    @media only screen and (max-width: 1040px) {
      .landing-page-02 .credit {
        position: relative; } }

.landing-page-01 .bg-img {
  display: block; }
  @media only screen and (max-width: 720px) {
    .landing-page-01 .bg-img.mobile-hide {
      display: none; } }
.landing-page-01 .form {
  position: absolute;
  left: 70px;
  top: 50px;
  width: 340px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 6px; }
  .landing-page-01 .form .input {
    border-radius: 6px; }
  .landing-page-01 .form .submit {
    border-radius: 6px; }
  @media only screen and (max-width: 720px) {
    .landing-page-01 .form {
      background: rgba(0, 0, 0, 0.9);
      position: relative;
      top: auto;
      left: auto;
      width: 100%;
      margin: 0px;
      border-radius: 0px; } }
.landing-page-01 .section-header {
  margin-bottom: 10px; }
  .landing-page-01 .section-header:after {
    display: none; }
.landing-page-01 .headline {
  font-weight: 400; }
.landing-page-01 .click2call span {
  display: block; }
.landing-page-01 .click2call .c2c-text {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.35; }
.landing-page-01 .click2call .c2c-num {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.35;
  font-weight: 900; }
  @media only screen and (max-width: 720px) {
    .landing-page-01 .click2call .c2c-num {
      display: none; } }
@media only screen and (max-width: 720px) {
  .landing-page-01 .click2call {
    position: fixed;
    bottom: 0px;
    width: 100%;
    left: 0px;
    right: 0px;
    background: black;
    padding: 10px 0px; } }

.box {
  box-sizing: border-box; }

.row .box {
  padding-left: 10px;
  padding-right: 10px; }

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

/* inner-row */
.inner-row .box {
  padding-left: 0px;
  padding-right: 0px; }

.inner-row {
  margin-left: 0px;
  margin-right: 0px; }

/* Small-row */
.small-row .box {
  padding-left: 2.5px;
  padding-right: 2.5px;
  margin-bottom: 5px; }

.small-row {
  margin-left: -2.5px;
  margin-right: -2.5px; }

.table-row .box {
  padding-left: 7px;
  padding-right: 7px;
  margin-bottom: 14px;
  width: 20%; }

.table-row {
  margin-left: -7px;
  margin-right: -7px; }

.box-1 {
  width: 8.3333333333%; }

.box-2 {
  width: 16.6666666667%; }

.box-3 {
  width: 25%; }

.box-4 {
  width: 33.3333333333%; }

.box-5 {
  width: 41.6666666667%; }

.box-6 {
  width: 50%; }

.box-7 {
  width: 58.3333333333%; }

.box-8 {
  width: 66.6666666667%; }

.box-9 {
  width: 75%; }

.box-10 {
  width: 83.3333333333%; }

.box-11 {
  width: 91.6666666667%; }

.box-12 {
  width: 100%; }

.box-20 {
  width: 20%; }

@media (max-width: 1480px) {
  .laptop-box-1 {
    width: 8.3333333333%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-2 {
    width: 16.6666666667%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-3 {
    width: 25%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-4 {
    width: 33.3333333333%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-5 {
    width: 41.6666666667%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-6 {
    width: 50%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-7 {
    width: 58.3333333333%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-8 {
    width: 66.6666666667%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-9 {
    width: 75%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-10 {
    width: 83.3333333333%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-11 {
    width: 91.6666666667%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-box-12 {
    width: 100%; }

  .laptop-box-20 {
    width: 20%; }

  .laptop-hide {
    display: none; }

  .hide.laptop-show {
    display: block !important; } }
@media (max-width: 1240px) {
  .laptop_small-box-1 {
    width: 8.3333333333%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-2 {
    width: 16.6666666667%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-3 {
    width: 25%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-4 {
    width: 33.3333333333%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-5 {
    width: 41.6666666667%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-6 {
    width: 50%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-7 {
    width: 58.3333333333%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-8 {
    width: 66.6666666667%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-9 {
    width: 75%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-10 {
    width: 83.3333333333%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-11 {
    width: 91.6666666667%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-box-12 {
    width: 100%; }

  .laptop_small-box-20 {
    width: 20%; }

  .laptop_small-hide {
    display: none; }

  .hide.laptop_small-show {
    display: block !important; } }
@media (max-width: 1040px) {
  .tablet-box-1 {
    width: 8.3333333333%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-2 {
    width: 16.6666666667%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-3 {
    width: 25%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-4 {
    width: 33.3333333333%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-5 {
    width: 41.6666666667%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-6 {
    width: 50%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-7 {
    width: 58.3333333333%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-8 {
    width: 66.6666666667%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-9 {
    width: 75%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-10 {
    width: 83.3333333333%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-11 {
    width: 91.6666666667%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-box-12 {
    width: 100%; }

  .tablet-box-20 {
    width: 20%; }

  .tablet-hide {
    display: none; }

  .hide.tablet-show {
    display: block !important; } }
@media (max-width: 720px) {
  .mobile-box-1 {
    width: 8.3333333333%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-2 {
    width: 16.6666666667%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-3 {
    width: 25%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-4 {
    width: 33.3333333333%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-5 {
    width: 41.6666666667%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-6 {
    width: 50%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-7 {
    width: 58.3333333333%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-8 {
    width: 66.6666666667%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-9 {
    width: 75%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-10 {
    width: 83.3333333333%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-11 {
    width: 91.6666666667%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-box-12 {
    width: 100%; }

  .mobile-box-20 {
    width: 20%; }

  .mobile-hide {
    display: none; }

  .hide.mobile-show {
    display: block !important; } }
@media (max-width: 340px) {
  .small_mobile-box-1 {
    width: 8.3333333333%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-2 {
    width: 16.6666666667%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-3 {
    width: 25%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-4 {
    width: 33.3333333333%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-5 {
    width: 41.6666666667%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-6 {
    width: 50%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-7 {
    width: 58.3333333333%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-8 {
    width: 66.6666666667%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-9 {
    width: 75%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-10 {
    width: 83.3333333333%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-11 {
    width: 91.6666666667%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-box-12 {
    width: 100%; }

  .small_mobile-box-20 {
    width: 20%; }

  .small_mobile-hide {
    display: none; }

  .hide.small_mobile-show {
    display: block !important; } }
.flexrow {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-align-content: center;
  align-content: center; }
  .flexrow.flexrow-space {
    margin-right: -20px;
    margin-left: -20px; }
    @media only screen and (max-width: 720px) {
      .flexrow.flexrow-space {
        margin-left: 10px;
        margin-right: 10px; } }
    .flexrow.flexrow-space .box {
      padding: 20px; }
      @media only screen and (max-width: 720px) {
        .flexrow.flexrow-space .box {
          padding: 10px; } }

.container {
  width: 92%;
  max-width: 1280px; }

#main {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  margin: 0 auto; }

.relative.holder {
  max-width: 1920px;
  margin: 0 auto; }

.section {
  position: relative;
  background-size: cover;
  background-position: center;
  box-sizing: border-box; }
  .section#section-5, .section#section-17, .section#section-11 {
    -webkit-clip-path: polygon(0 0%, 100% 10%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0%, 100% 10%, 100% 100%, 0% 100%); }
    @media only screen and (max-width: 720px) {
      .section#section-5, .section#section-17, .section#section-11 {
        -webkit-clip-path: polygon(0 0%, 100% 3%, 100% 100%, 0% 100%);
        clip-path: polygon(0 0%, 100% 3%, 100% 100%, 0% 100%); } }
  .section#section-7 {
    -webkit-clip-path: polygon(0 0%, 100% 0, 100% 90%, 0% 100%);
    clip-path: polygon(0 0%, 100% 0, 100% 90%, 0% 100%); }
    @media only screen and (max-width: 720px) {
      .section#section-7 {
        -webkit-clip-path: polygon(0 0%, 100% 0, 100% 97%, 0% 100%);
        clip-path: polygon(0 0%, 100% 0, 100% 97%, 0% 100%); } }
  .section.section-cover, .section.section-video-simple {
    -webkit-clip-path: polygon(0 0%, 100% 0, 100% 90%, 0% 100%);
    clip-path: polygon(0 0%, 100% 0, 100% 90%, 0% 100%); }
    @media only screen and (max-width: 720px) {
      .section.section-cover, .section.section-video-simple {
        -webkit-clip-path: polygon(0 0%, 100% 0, 100% 97%, 0% 100%);
        clip-path: polygon(0 0%, 100% 0, 100% 97%, 0% 100%); } }
  .section.section-padding {
    padding: 80px 0px; }
    @media only screen and (max-width: 720px) {
      .section.section-padding {
        padding: 40px 0px; } }
  .section.section-padding-top {
    padding-top: 80px; }
    @media only screen and (max-width: 720px) {
      .section.section-padding-top {
        padding-top: 40px; } }
  .section.section-padding-bottom {
    padding-bottom: 80px; }
    @media only screen and (max-width: 720px) {
      .section.section-padding-bottom {
        padding-bottom: 40px; } }
  .section.section-white-theme {
    background: #ffffff;
    color: #222222; }
    .section.section-white-theme .section-headline {
      color: #222222; }
      .section.section-white-theme .section-headline:after {
        background: #222222; }
    .section.section-white-theme .nav-wrp {
      background: #ffffff;
      border-color: #222222; }
      .section.section-white-theme .nav-wrp ul li a:after {
        background: #222222; }
    .section.section-white-theme .nav-handle {
      color: #222222; }
  .section.section-black-theme {
    background: #000000;
    color: #ffffff; }
    .section.section-black-theme .section-headline {
      color: #ffffff; }
      .section.section-black-theme .section-headline:after {
        background: #ffffff; }
    .section.section-black-theme .nav-wrp {
      background: #000000;
      border-color: #ffffff; }
      .section.section-black-theme .nav-wrp ul li a:after {
        background: #ffffff; }
    .section.section-black-theme .nav-handle {
      color: #ffffff; }
  .section.section-dark-theme {
    background: #424242;
    color: #e8e8e8; }
    .section.section-dark-theme .section-headline {
      color: #e8e8e8; }
      .section.section-dark-theme .section-headline:after {
        background: #e8e8e8; }
    .section.section-dark-theme .nav-wrp {
      background: #424242;
      border-color: #e8e8e8; }
      .section.section-dark-theme .nav-wrp ul li a:after {
        background: #e8e8e8; }
    .section.section-dark-theme .nav-handle {
      color: #e8e8e8; }
  .section.section-gray-theme {
    background: #a1a1a1;
    color: #000000; }
    .section.section-gray-theme .section-headline {
      color: #000000; }
      .section.section-gray-theme .section-headline:after {
        background: #000000; }
    .section.section-gray-theme .nav-wrp {
      background: #a1a1a1;
      border-color: #000000; }
      .section.section-gray-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-gray-theme .nav-handle {
      color: #000000; }
  .section.section-light-theme {
    background: #f0eeee;
    color: #000000; }
    .section.section-light-theme .section-headline {
      color: #000000; }
      .section.section-light-theme .section-headline:after {
        background: #000000; }
    .section.section-light-theme .nav-wrp {
      background: #f0eeee;
      border-color: #000000; }
      .section.section-light-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-light-theme .nav-handle {
      color: #000000; }
  .section.section-muted-theme {
    background: #adadad;
    color: #000000; }
    .section.section-muted-theme .section-headline {
      color: #000000; }
      .section.section-muted-theme .section-headline:after {
        background: #000000; }
    .section.section-muted-theme .nav-wrp {
      background: #adadad;
      border-color: #000000; }
      .section.section-muted-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-muted-theme .nav-handle {
      color: #000000; }
  .section.section-main-theme {
    background: #0177c1;
    color: #ffffff; }
    .section.section-main-theme .section-headline {
      color: #ffffff; }
      .section.section-main-theme .section-headline:after {
        background: #ffffff; }
    .section.section-main-theme .nav-wrp {
      background: #0177c1;
      border-color: #ffffff; }
      .section.section-main-theme .nav-wrp ul li a:after {
        background: #ffffff; }
    .section.section-main-theme .nav-handle {
      color: #ffffff; }
  .section.section-error-theme {
    background: #FF0707;
    color: #000000; }
    .section.section-error-theme .section-headline {
      color: #000000; }
      .section.section-error-theme .section-headline:after {
        background: #000000; }
    .section.section-error-theme .nav-wrp {
      background: #FF0707;
      border-color: #000000; }
      .section.section-error-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-error-theme .nav-handle {
      color: #000000; }
  .section.section-orange-theme {
    background: #f37020;
    color: #000000; }
    .section.section-orange-theme .section-headline {
      color: #000000; }
      .section.section-orange-theme .section-headline:after {
        background: #000000; }
    .section.section-orange-theme .nav-wrp {
      background: #f37020;
      border-color: #000000; }
      .section.section-orange-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-orange-theme .nav-handle {
      color: #000000; }
  .section.section-pink-theme {
    background: #de2b86;
    color: #000000; }
    .section.section-pink-theme .section-headline {
      color: #000000; }
      .section.section-pink-theme .section-headline:after {
        background: #000000; }
    .section.section-pink-theme .nav-wrp {
      background: #de2b86;
      border-color: #000000; }
      .section.section-pink-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-pink-theme .nav-handle {
      color: #000000; }
  .section.section-green-theme {
    background: #2a9f47;
    color: #000000; }
    .section.section-green-theme .section-headline {
      color: #000000; }
      .section.section-green-theme .section-headline:after {
        background: #000000; }
    .section.section-green-theme .nav-wrp {
      background: #2a9f47;
      border-color: #000000; }
      .section.section-green-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-green-theme .nav-handle {
      color: #000000; }
  .section.section-red-theme {
    background: #ed1b24;
    color: #000000; }
    .section.section-red-theme .section-headline {
      color: #000000; }
      .section.section-red-theme .section-headline:after {
        background: #000000; }
    .section.section-red-theme .nav-wrp {
      background: #ed1b24;
      border-color: #000000; }
      .section.section-red-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-red-theme .nav-handle {
      color: #000000; }
  .section.section-blue-theme {
    background: #0177c1;
    color: #000000; }
    .section.section-blue-theme .section-headline {
      color: #000000; }
      .section.section-blue-theme .section-headline:after {
        background: #000000; }
    .section.section-blue-theme .nav-wrp {
      background: #0177c1;
      border-color: #000000; }
      .section.section-blue-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-blue-theme .nav-handle {
      color: #000000; }
  .section.section-blue_dark-theme {
    background: #25408f;
    color: #000000; }
    .section.section-blue_dark-theme .section-headline {
      color: #000000; }
      .section.section-blue_dark-theme .section-headline:after {
        background: #000000; }
    .section.section-blue_dark-theme .nav-wrp {
      background: #25408f;
      border-color: #000000; }
      .section.section-blue_dark-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-blue_dark-theme .nav-handle {
      color: #000000; }

.box-padding {
  padding: 80px 0px; }
  @media only screen and (max-width: 720px) {
    .box-padding {
      padding: 40px 0px; } }

.Aligner, .flex-box, .flexbox {
  display: flex;
  align-items: center;
  justify-content: center; }

.media {
  background-size: cover;
  background-position: center center; }
  .media.parallex {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; }
  .media.img-cover {
    overflow: hidden; }
    .media.img-cover img {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: 0;
      transform: translateX(-50%) translateY(-50%); }
  .media.fixed-bg {
    background-attachment: fixed; }
    @media only screen and (max-width: 1040px) {
      .media.fixed-bg {
        background-attachment: scroll; } }
  .media.overlay-black:after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: " ";
    background: black;
    opacity: 0.5; }
  .media.media-background {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px; }
  .media.flexbox {
    display: flex; }

.square {
  position: relative;
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center; }
  .square:after {
    content: "";
    display: block;
    padding-bottom: 100%; }
  .square.square-16X9:after {
    padding-bottom: 56.25%; }
  .square.square-9X16:after {
    padding-bottom: 140%; }

.relative {
  position: relative; }

.fixed {
  position: fixed; }

.absolute {
  position: absolute; }

.ofh {
  overflow: hidden; }

.OFH {
  overflow: hidden; }

.left {
  float: left; }

.right {
  float: right; }

.float {
  float: left; }

.float-reverse {
  float: right; }

.float-off {
  float: right; }

.top {
  z-index: 99999; }

.clear {
  clear: both;
  display: table; }

.hide {
  display: none !important; }

.block {
  display: block; }

.show {
  display: block !important; }

.opacity0 {
  opacity: 0; }

.center {
  margin: 0 auto; }

.full-width {
  width: 100% !important; }

.full-height {
  height: 100%; }

.max-width {
  max-width: 100%; }

.max-height {
  max-height: 100%; }

.pointer {
  cursor: pointer; }

.cursor {
  cursor: pointer; }

.LTR {
  direction: rtl; }

.DL {
  direction: rtl; }

.DR {
  direction: ltr; }

.RTL {
  direction: ltr; }

.AL {
  text-align: left; }

.AR {
  text-align: right; }

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

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

.AC {
  text-align: center; }

.AJ {
  text-align: justify; }

.justify {
  text-align: justify; }

.TDN {
  text-decoration: none; }

.TDO {
  text-decoration: underline !important; }

.TDU {
  text-decoration: underline !important; }

.TDL {
  text-decoration: line-through !important; }

.LSN {
  list-style-type: none !important; }

.bold {
  font-weight: bold; }

.italic {
  font-style: italic; }

.tbl, .TBL {
  display: table; }

.table {
  display: table-cell;
  vertical-align: middle; }

.tableCenter {
  display: table-cell;
  vertical-align: middle; }

.sizing {
  box-sizing: border-box; }

.white-text {
  color: #ffffff; }

.white-bg {
  background: #ffffff; }

.black-text {
  color: #000000; }

.black-bg {
  background: #000000; }

.dark-text {
  color: #424242; }

.dark-bg {
  background: #424242; }

.gray-text {
  color: #a1a1a1; }

.gray-bg {
  background: #a1a1a1; }

.light-text {
  color: #f0eeee; }

.light-bg {
  background: #f0eeee; }

.muted-text {
  color: #adadad; }

.muted-bg {
  background: #adadad; }

.main-text {
  color: #0177c1; }

.main-bg {
  background: #0177c1; }

.error-text {
  color: #FF0707; }

.error-bg {
  background: #FF0707; }

.orange-text {
  color: #f37020; }

.orange-bg {
  background: #f37020; }

.pink-text {
  color: #de2b86; }

.pink-bg {
  background: #de2b86; }

.green-text {
  color: #2a9f47; }

.green-bg {
  background: #2a9f47; }

.red-text {
  color: #ed1b24; }

.red-bg {
  background: #ed1b24; }

.blue-text {
  color: #0177c1; }

.blue-bg {
  background: #0177c1; }

.blue_dark-text {
  color: #25408f; }

.blue_dark-bg {
  background: #25408f; }

#credit {
  background: black;
  color: white;
  text-align: center;
  font-weight: normal;
  padding: 10px 0px; }
  #credit a {
    font-weight: bold; }

.next-section-cycle {
  font-size: 42px;
  display: block;
  width: 50px;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  -moz-animation: bounceINF 5s infinite;
  -webkit-animation: bounceINF 5s infinite;
  animation: bounceINF 5s infinite;
  padding: 30px 0px; }
  .next-section-cycle.next-section-bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px; }
  @media only screen and (max-width: 1040px) {
    .next-section-cycle {
      font-size: 30px; } }
  @media only screen and (max-width: 720px) {
    .next-section-cycle {
      display: none; } }

.arrow {
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: 100px;
  width: 50px;
  text-align: center;
  font-size: 70px;
  font-size: 7rem;
  line-height: 1.4285714286;
  line-height: 100px;
  z-index: 999; }
  @media only screen and (max-width: 1040px) {
    .arrow {
      font-size: 50px;
      font-size: 5rem;
      line-height: 2;
      line-height: 100px; } }
  .arrow.swiper-button-disabled {
    opacity: 0.3; }
  .arrow.arrow-next {
    left: 50px; }
    @media only screen and (max-width: 1480px) {
      .arrow.arrow-next {
        left: 20px; } }
    @media only screen and (max-width: 720px) {
      .arrow.arrow-next {
        left: 0px; } }
  .arrow.arrow-prev {
    right: 50px; }
    @media only screen and (max-width: 1480px) {
      .arrow.arrow-prev {
        right: 20px; } }
    @media only screen and (max-width: 720px) {
      .arrow.arrow-prev {
        right: 0px; } }

.swiper-slide {
  overflow: hidden; }

.fancybox-inner {
  overflow: scroll !important;
  -webkit-overflow-scrolling: touch !important;
  /* Lets it scroll lazy */ }

.swiper-nav .arrows button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: 0 0;
  border: none;
  cursor: pointer; }

.section-header-collapse {
  position: fixed;
  z-index: 9;
  color: white;
  padding: 10px 0px;
  overflow: visible; }
  .section-header-collapse .before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: " ";
    height: 110%;
    background: black;
    opacity: 0;
    -webkit-clip-path: polygon(0 0%, 100% 0, 100% 90%, 0% 100%);
    clip-path: polygon(0 0%, 100% 0, 100% 90%, 0% 100%); }
  .section-header-collapse .container {
    z-index: 9;
    max-width: 98vw; }
  .section-header-collapse .logo img {
    margin-left: 0px;
    height: 60px;
    display: block; }
  .section-header-collapse .nav-handle {
    position: absolute;
    z-index: 999;
    top: 0px;
    right: 0px;
    font-size: 36px;
    line-height: 60px; }
  .section-header-collapse .nav-wrp {
    position: fixed;
    top: -100vh;
    opacity: 0;
    pointer-events: none;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background: black;
    text-align: center;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.3333333333;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms; }
    .section-header-collapse .nav-wrp.active {
      pointer-events: auto;
      top: 0px;
      opacity: 1; }
    .section-header-collapse .nav-wrp .container {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh; }
    .section-header-collapse .nav-wrp ul {
      list-style-type: none;
      display: flex;
      flex-direction: column;
      height: 100vh;
      justify-content: space-evenly;
      max-height: 530px; }

.section-credit {
  background: black;
  padding: 20px 0px;
  color: white;
  text-align: center;
  direction: ltr; }
  @media only screen and (max-width: 720px) {
    .section-credit .mobile-show {
      display: block; } }

#footer {
  background: #ffffff; }
  #footer .social {
    margin-bottom: 20px; }
  #footer .text {
    color: #000000; }
    #footer .text a {
      -webkit-transition: all 200ms;
      -moz-transition: all 200ms;
      -o-transition: all 200ms;
      transition: all 200ms; }
      #footer .text a:hover, #footer .text a:focus, #footer .text a:active, #footer .text a.active, #footer .text a.current-menu-item {
        text-decoration: underline; }
  #footer .fa-stack {
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms; }
    #footer .fa-stack .fa {
      color: #ffffff;
      border-radius: 100%; }
      #footer .fa-stack .fa.fa-circle {
        color: #000000; }
      #footer .fa-stack .fa.fa-stack-1x {
        font-size: 0.8em; }
    #footer .fa-stack:hover .fa, #footer .fa-stack:focus .fa, #footer .fa-stack:active .fa, #footer .fa-stack.active .fa, #footer .fa-stack.current-menu-item .fa {
      color: #ffffff; }
      #footer .fa-stack:hover .fa.fa-circle, #footer .fa-stack:focus .fa.fa-circle, #footer .fa-stack:active .fa.fa-circle, #footer .fa-stack.active .fa.fa-circle, #footer .fa-stack.current-menu-item .fa.fa-circle {
        color: #424242; }
  #footer.footer-type-01 .text span {
    display: inline-block;
    margin: 0px;
    padding: 0px 10px;
    border-left: 1px solid #000000; }
    #footer.footer-type-01 .text span:last-child {
      border-left: none; }
    @media only screen and (max-width: 720px) {
      #footer.footer-type-01 .text span {
        border-left: 0px;
        display: block; } }

body {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  color: #424242;
  font-family: 'open-sans', sans-serif;
  font-family: 'Abel', sans-serif; }

input, select, button {
  font-family: 'Abel', 'sans-serif' !important; }

.section-header {
  position: relative;
  margin-top: 0px;
  padding-bottom: 20px;
  margin-bottom: 50px; }
  @media only screen and (max-width: 720px) {
    .section-header {
      margin-bottom: 30px; } }
  .section-header:after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 100px;
    height: 3px;
    border-radius: 5px;
    content: "";
    display: block;
    background: #424242;
    background-size: contain; }
  .section-header.side-line:after {
    margin: 0; }
  .section-header.section-header-type-02 {
    text-align: center;
    margin-bottom: 20px; }
    .section-header.section-header-type-02:after {
      display: none; }

.section-headline {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.35;
  font-weight: normal;
  font-weight: 400;
  position: relative;
  margin: 0; }
  @media only screen and (max-width: 720px) {
    .section-headline {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 1.35; } }

.section-subline {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.35;
  font-weight: 400; }
  @media only screen and (max-width: 720px) {
    .section-subline {
      font-size: 20px;
      font-size: 2rem;
      line-height: 1.35; } }

.more-links {
  position: absolute;
  top: 12px;
  left: 5px; }
  @media only screen and (max-width: 720px) {
    .more-links {
      position: relative; } }

.text-style {
  margin: 0 auto 10px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400; }
  .text-style.text-full-width {
    max-width: none; }
  @media only screen and (max-width: 720px) {
    .text-style {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.5; } }

.heading-underline {
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 7px; }
  .heading-underline:after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100px;
    height: 2px;
    border-radius: 5px;
    content: "";
    display: block;
    background: #424242;
    background-size: contain; }

.section-cover {
  padding: 0px;
  color: white;
  text-align: center; }
  .section-cover .holder {
    min-height: 450px; }
    @media only screen and (max-width: 1480px) {
      .section-cover .holder {
        min-height: 250px; } }
  .section-cover .form {
    position: absolute;
    width: 100%;
    bottom: 0px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0px; }
    .section-cover .form .subline {
      text-align: center;
      margin-bottom: 15px;
      font-size: 28px;
      font-size: 2.8rem;
      line-height: 1.35; }
    @media only screen and (max-width: 1040px) {
      .section-cover .form {
        position: relative; }
        .section-cover .form .subline {
          font-size: 22px;
          font-size: 2.2rem;
          line-height: 1.35; } }
    @media only screen and (max-width: 720px) {
      .section-cover .form .subline {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.35; } }
  .section-cover .media:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: " ";
    background: rgba(0, 0, 0, 0.3); }
  .section-cover .headline {
    text-align: center;
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1.35; }
    .section-cover .headline span {
      font-weight: 400; }
    .section-cover .headline span,
    .section-cover .headline strong {
      display: block; }
    @media only screen and (max-width: 1040px) {
      .section-cover .headline {
        font-size: 36px;
        font-size: 3.6rem;
        line-height: 1.35; } }
    @media only screen and (max-width: 720px) {
      .section-cover .headline {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 1.35; } }

.section-cover-simple {
  background: black; }
  .section-cover-simple img {
    -webkit-animation: zoomin 5s forwards;
    animation: zoomin 5s forwards;
    opacity: 0;
    width: 100%;
    height: auto; }
    .section-cover-simple img.cover-desktop {
      display: block; }
    .section-cover-simple img.cover-mobile {
      display: none; }
    @media only screen and (max-width: 720px) {
      .section-cover-simple img {
        -webkit-animation: none;
        animation: none;
        opacity: 1; } }
    @media only screen and (max-width: 720px) {
      .section-cover-simple img.cover-desktop {
        display: none; }
      .section-cover-simple img.cover-mobile {
        display: block; } }
@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.1);
    opacity: 1; } }
.section-cover-carusel {
  color: white;
  text-align: center; }
  .section-cover-carusel .swiper-container {
    position: relative; }
  .section-cover-carusel .logo {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    right: 0px;
    left: 0px;
    display: block;
    margin: auto;
    width: auto; }
  .section-cover-carusel img {
    width: 100%; }
    .section-cover-carusel img.desktop-media {
      display: block; }
      @media only screen and (max-width: 720px) {
        .section-cover-carusel img.desktop-media {
          display: none; } }
    .section-cover-carusel img.mobile-media {
      display: none; }
      @media only screen and (max-width: 720px) {
        .section-cover-carusel img.mobile-media {
          display: block; } }
  .section-cover-carusel .read-more {
    border: 1px solid white;
    border-radius: 20px;
    height: 40px;
    width: 150px;
    display: block;
    margin: 30px auto;
    line-height: 40px;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms; }
    .section-cover-carusel .read-more:hover, .section-cover-carusel .read-more:focus, .section-cover-carusel .read-more:active, .section-cover-carusel .read-more.active, .section-cover-carusel .read-more.current-menu-item {
      background: white;
      color: black; }
  .section-cover-carusel .holder {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: " ";
    background: rgba(0, 0, 0, 0.3); }
  .section-cover-carusel .content {
    padding-bottom: 100px;
    max-width: 80%;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 10%;
    margin: auto;
    max-width: none;
    text-align: right;
    z-index: 1000; }
    @media only screen and (max-width: 1040px) {
      .section-cover-carusel .content {
        bottom: 0; } }
    @media only screen and (max-width: 1040px) {
      .section-cover-carusel .content {
        padding-bottom: 50px; } }
    .section-cover-carusel .content h2 {
      font-weight: 600;
      font-size: 40px;
      font-size: 4rem;
      line-height: 1.35; }
      @media only screen and (max-width: 1040px) {
        .section-cover-carusel .content h2 {
          font-size: 30px;
          font-size: 3rem;
          line-height: 1.35; } }
      @media only screen and (max-width: 720px) {
        .section-cover-carusel .content h2 {
          font-size: 30px;
          font-size: 3rem;
          line-height: 1.35; } }
    .section-cover-carusel .content button {
      display: table;
      width: auto;
      padding: 0 40px;
      white-space: normal; }
  .section-cover-carusel .section-headline {
    text-align: center;
    font-size: 62px;
    font-size: 6.2rem;
    line-height: 1.35;
    font-weight: 700; }
    @media only screen and (max-width: 720px) {
      .section-cover-carusel .section-headline {
        font-size: 36px;
        font-size: 3.6rem;
        line-height: 1.35; } }
  .section-cover-carusel .holder {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px; }

.section-multy-02 {
  color: white; }
  .section-multy-02 .section-header {
    text-align: center; }
    .section-multy-02 .section-header:after {
      margin: auto; }
  .section-multy-02 .text-style {
    max-width: 1100px; }
  .section-multy-02 .row {
    margin-top: 80px; }
  .section-multy-02 .overlay:after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: " ";
    background: rgba(255, 255, 255, 0.5); }
  .section-multy-02 .holder {
    text-align: center;
    position: relative;
    padding-top: 40px; }
  .section-multy-02 .item {
    display: inline-block;
    vertical-align: top;
    width: 30%; }
    @media only screen and (max-width: 1040px) {
      .section-multy-02 .item {
        width: 45%; } }
    .section-multy-02 .item .media {
      height: 130px; }
      .section-multy-02 .item .media img {
        max-width: 100%;
        max-height: 100%;
        display: block; }
    .section-multy-02 .item .headline {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.4444444444;
      height: 52px;
      overflow: hidden;
      font-weight: 700;
      max-width: 200px;
      margin: 0 auto 30px; }
  .section-multy-02 .section-header {
    color: "white"; }
    .section-multy-02 .section-header:after {
      background: "white"; }
  .section-multy-02 .overlay:after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: " ";
    background: rgba(0, 0, 0, 0.5); }

.section-contact-form-01 {
  color: white; }
  .section-contact-form-01 .section-header {
    color: "white"; }
    .section-contact-form-01 .section-header:after {
      background: "white"; }
  .section-contact-form-01 .section-header {
    text-align: center; }
  .section-contact-form-01 .section-headline {
    color: white; }
    .section-contact-form-01 .section-headline:after {
      background: white; }
  .section-contact-form-01 .container {
    max-width: 820px; }
  .section-contact-form-01 .label {
    margin-bottom: 30px; }
  .section-contact-form-01 .input {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.35; }
  .section-contact-form-01 .submit {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.35; }
  .section-contact-form-01 .text-style {
    margin-top: 20px; }

.section-contact-form-02 {
  color: white; }
  .section-contact-form-02 .section-header {
    color: "white"; }
    .section-contact-form-02 .section-header:after {
      background: "white"; }
  .section-contact-form-02 .media:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: " ";
    background: black;
    opacity: 0.6; }
  .section-contact-form-02 .section-header {
    text-align: center; }
  .section-contact-form-02 .section-headline {
    color: white;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.35; }
    @media only screen and (max-width: 720px) {
      .section-contact-form-02 .section-headline {
        font-size: 22px;
        font-size: 2.2rem;
        line-height: 1.35; } }
    .section-contact-form-02 .section-headline:after {
      background: white; }
  .section-contact-form-02 .section-subline {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.35; }
    @media only screen and (max-width: 720px) {
      .section-contact-form-02 .section-subline {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.35; } }
  .section-contact-form-02 .container {
    max-width: 640px; }
  .section-contact-form-02 .label {
    margin-bottom: 30px; }
  .section-contact-form-02 .input {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.35; }
  .section-contact-form-02 .submit {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.35; }
  .section-contact-form-02 .text-style {
    margin-top: 20px; }

.section-contact-form-03 {
  color: white; }
  .section-contact-form-03 .section-header {
    color: "white"; }
    .section-contact-form-03 .section-header:after {
      background: "white"; }
  .section-contact-form-03 .media:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: " ";
    display: none; }
  .section-contact-form-03 .section-headline {
    color: white;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.35; }
    @media only screen and (max-width: 720px) {
      .section-contact-form-03 .section-headline {
        font-size: 22px;
        font-size: 2.2rem;
        line-height: 1.35; } }
    .section-contact-form-03 .section-headline:after {
      background: white; }
  .section-contact-form-03 .section-subline {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.35; }
    @media only screen and (max-width: 720px) {
      .section-contact-form-03 .section-subline {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.35; } }
  .section-contact-form-03 .container {
    max-width: 820px; }
  .section-contact-form-03 .label {
    margin-bottom: 30px; }
  .section-contact-form-03 .input {
    height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.35; }
  .section-contact-form-03 .submit {
    height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.35; }
  .section-contact-form-03 .text-style {
    margin-top: 20px; }
  .section-contact-form-03 .logo {
    position: absolute;
    bottom: 50px;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 2;
    max-height: calc(100% - 100px); }
  @media only screen and (max-width: 1040px) {
    .section-contact-form-03 .flexbox {
      display: block;
      padding-top: 50px; } }
  .section-contact-form-03 .social {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    padding: 40px 0px;
    background: rgba(0, 0, 0, 0.5); }
    .section-contact-form-03 .social .fa-stack {
      margin: 0px 10px;
      border: 1px solid white;
      border-radius: 100%;
      -webkit-transition: all 200ms;
      -moz-transition: all 200ms;
      -o-transition: all 200ms;
      transition: all 200ms; }
      .section-contact-form-03 .social .fa-stack .fa {
        color: #ffffff;
        border-radius: 100%; }
        .section-contact-form-03 .social .fa-stack .fa.fa-circle {
          color: #000000; }
        .section-contact-form-03 .social .fa-stack .fa.fa-stack-1x {
          font-size: 0.8em; }
      .section-contact-form-03 .social .fa-stack:hover, .section-contact-form-03 .social .fa-stack:focus, .section-contact-form-03 .social .fa-stack:active, .section-contact-form-03 .social .fa-stack.active, .section-contact-form-03 .social .fa-stack.current-menu-item {
        background: white; }
        .section-contact-form-03 .social .fa-stack:hover .fa, .section-contact-form-03 .social .fa-stack:focus .fa, .section-contact-form-03 .social .fa-stack:active .fa, .section-contact-form-03 .social .fa-stack.active .fa, .section-contact-form-03 .social .fa-stack.current-menu-item .fa {
          color: #000000; }
    @media only screen and (max-width: 1040px) {
      .section-contact-form-03 .social {
        position: relative;
        margin-top: 20px; } }

.section-contact-form-04 .box {
  margin-bottom: 0; }
.section-contact-form-04 .section-header {
  padding-right: 30px;
  padding-left: 30px;
  margin-bottom: 30px;
  text-align: center; }
.section-contact-form-04 .input {
  border-bottom: 1px solid black; }
.section-contact-form-04 .submit {
  margin: 30px 0px;
  background: black;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms; }
  .section-contact-form-04 .submit:hover, .section-contact-form-04 .submit:focus, .section-contact-form-04 .submit:active, .section-contact-form-04 .submit.active, .section-contact-form-04 .submit.current-menu-item {
    background: white;
    color: black;
    border: 1px solid black; }
.section-contact-form-04 .media:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: " ";
  background: black;
  opacity: 0.4; }
.section-contact-form-04 .media .holder {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }
  @media only screen and (max-width: 720px) {
    .section-contact-form-04 .media .holder {
      max-width: 70%;
      margin: 0 auto; } }

#floating-form {
  position: fixed;
  top: 147px;
  right: -353px;
  width: 353px;
  overflow: visible;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  z-index: 999;
  padding: 15px 10px;
  box-sizing: border-box;
  border-radius: 4px 0px 0px 4px;
  box-shadow: 2px 3px 10px 2px rgba(101, 101, 101, 0); }
  @media only screen and (max-width: 720px) {
    #floating-form {
      display: none; } }
  #floating-form .toggle-btn {
    position: absolute;
    top: calc(50% - 30px);
    right: 100%;
    width: 60px;
    height: 60px;
    background: black;
    color: white;
    border-radius: 4px 0px 0px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer; }
  #floating-form .open {
    display: inline;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333; }
  #floating-form .close {
    display: none;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    position: relative;
    top: 1px; }
  #floating-form.active {
    right: 0px; }
    #floating-form.active .open {
      display: none; }
    #floating-form.active .close {
      display: inline; }
  #floating-form .title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5; }
  #floating-form .checkbox {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1666666667; }
  #floating-form .holder .label {
    position: relative;
    padding-top: 10px; }
    #floating-form .holder .label .placeholder {
      position: absolute;
      top: 20px;
      -webkit-transition: all 300ms;
      -moz-transition: all 300ms;
      -o-transition: all 300ms;
      transition: all 300ms;
      -ms-transform-origin: top right;
      /* IE 9 */
      -webkit-transform-origin: top right;
      /* Chrome, Safari, Opera */
      transform-origin: top right; }
    #floating-form .holder .label.hasValue .placeholder, #floating-form .holder .label.active .placeholder {
      top: -5px;
      right: 0px;
      opacity: 0.7;
      transform: scale(0.8); }
  #floating-form .social {
    margin: 10px 0px;
    text-align: center; }
  #floating-form .text {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1; }
    #floating-form .text span,
    #floating-form .text a,
    #floating-form .text div {
      margin: 7px 0px;
      display: block; }
    #floating-form .text a {
      -webkit-transition: all 200ms;
      -moz-transition: all 200ms;
      -o-transition: all 200ms;
      transition: all 200ms; }
      #floating-form .text a:hover, #floating-form .text a:focus, #floating-form .text a:active, #floating-form .text a.active, #floating-form .text a.current-menu-item {
        text-decoration: underline; }
  #floating-form .fa-stack {
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms; }
    #floating-form .fa-stack .fa {
      color: #ffffff;
      border-radius: 100%; }
      #floating-form .fa-stack .fa.fa-circle {
        color: #000000; }
      #floating-form .fa-stack .fa.fa-stack-1x {
        font-size: 0.8em; }
    #floating-form .fa-stack:hover .fa, #floating-form .fa-stack:focus .fa, #floating-form .fa-stack:active .fa, #floating-form .fa-stack.active .fa, #floating-form .fa-stack.current-menu-item .fa {
      color: #ffffff; }
      #floating-form .fa-stack:hover .fa.fa-circle, #floating-form .fa-stack:focus .fa.fa-circle, #floating-form .fa-stack:active .fa.fa-circle, #floating-form .fa-stack.active .fa.fa-circle, #floating-form .fa-stack.current-menu-item .fa.fa-circle {
        color: #424242; }

.section-split-full-width .text-style {
  margin: 0px; }
.section-split-full-width .box-padding {
  padding: 60px 0px; }
.section-split-full-width .section-content {
  position: relative; }
  .section-split-full-width .section-content:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: " ";
    background: rgba(255, 255, 255, 0.7); }
.section-split-full-width.section-black-theme .section-header {
  color: "white"; }
  .section-split-full-width.section-black-theme .section-header:after {
    background: "white"; }
.section-split-full-width.section-black-theme .section-content:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: " ";
  background: rgba(0, 0, 0, 0.7); }

.section-multy-03 {
  padding: 30px 0; }
  .section-multy-03 .section-header {
    text-align: center; }
    .section-multy-03 .section-header:after {
      margin: auto; }
  .section-multy-03 .text-style {
    margin-bottom: 50px;
    text-align: center; }
  .section-multy-03 .item {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding: 0px 20px; }
    .section-multy-03 .item .text-style {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.35; }
      @media only screen and (max-width: 720px) {
        .section-multy-03 .item .text-style {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.35; } }
    @media only screen and (max-width: 720px) {
      .section-multy-03 .item img {
        max-width: 60%; } }
    .section-multy-03 .item .headline {
      text-align: center;
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.35;
      font-weight: 700;
      margin-top: 10px;
      margin-bottom: 20px; }
      @media only screen and (max-width: 720px) {
        .section-multy-03 .item .headline {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.35;
          width: 125px;
          margin: 20px auto;
          height: 42px; } }

.section-multy-04 .item {
  padding: 0px 20px; }
  .section-multy-04 .item .headline {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.35;
    font-weight: 700;
    margin: 15px 0px; }
  .section-multy-04 .item .media img {
    max-width: 20vw;
    border-radius: 100%; }
    @media only screen and (max-width: 720px) {
      .section-multy-04 .item .media img {
        max-width: 40vw; } }

@media only screen and (max-width: 1040px) {
  .section-video-simple {
    height: auto; } }
@media only screen and (max-width: 720px) {
  .section-video-simple {
    height: auto; } }
.section-video-simple video {
  width: 100%; }
.section-video-simple.full-height {
  height: 100vh; }
  .section-video-simple.full-height video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
    opacity: 1; }
@media only screen and (max-width: 720px) {
  .section-video-simple .vid-desktop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: black; }
  .section-video-simple video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; } }
.section-video-simple .play-vid {
  position: relative;
  display: block; }
  .section-video-simple .play-vid .fa {
    height: 120px;
    width: 120px;
    font-size: 80px;
    font-size: 8rem;
    line-height: 1.35;
    line-height: 120px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    color: white; }
.section-video-simple .vid-mobile {
  display: none; }
  @media only screen and (max-width: 720px) {
    .section-video-simple .vid-mobile {
      display: block; } }
.section-video-simple .vid-desktop {
  display: block; }
  @media only screen and (max-width: 720px) {
    .section-video-simple .vid-desktop {
      display: none; } }

.section-gall-center-loop {
  height: 100vh;
  overflow: hidden; }
  .section-gall-center-loop .section-header {
    text-align: center; }
  .section-gall-center-loop .slick-item {
    position: relative;
    width: 60vw;
    outline: none;
    overflow: hidden; }
    .section-gall-center-loop .slick-item .media {
      position: relative; }
    @media only screen and (max-width: 720px) {
      .section-gall-center-loop .slick-item {
        width: 90vw; } }
    .section-gall-center-loop .slick-item:after {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      content: " ";
      background: black;
      opacity: 0.7;
      -webkit-transition: all 700ms;
      -moz-transition: all 700ms;
      -o-transition: all 700ms;
      transition: all 700ms; }
    .section-gall-center-loop .slick-item.slick-current .content, .section-gall-center-loop .slick-item.slick-active .content, .section-gall-center-loop .slick-item.slick-center .content {
      opacity: 1;
      top: 50%; }
    .section-gall-center-loop .slick-item.slick-current:after, .section-gall-center-loop .slick-item.slick-active:after, .section-gall-center-loop .slick-item.slick-center:after {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      content: " ";
      opacity: 0; }
    .section-gall-center-loop .slick-item .content {
      opacity: 0;
      position: absolute;
      top: -50%;
      right: 20px;
      background: rgba(0, 0, 0, 0.5);
      padding: 20px;
      color: white;
      width: 50%;
      -webkit-transition: all 300ms;
      -moz-transition: all 300ms;
      -o-transition: all 300ms;
      transition: all 300ms; }
      .section-gall-center-loop .slick-item .content .text {
        margin-bottom: 20px; }
  .section-gall-center-loop.section-gall-center-loop-straight .slick-item {
    width: 60vw;
    transform: skew(0deg) !important;
    -webkit-transform: skew(0deg) !important; }
    @media only screen and (max-width: 720px) {
      .section-gall-center-loop.section-gall-center-loop-straight .slick-item {
        width: 100vw; } }
    .section-gall-center-loop.section-gall-center-loop-straight .slick-item .media {
      width: 100%;
      left: 0%;
      transform: skew(0deg) !important;
      -webkit-transform: skew(0deg) !important; }

.section-gall-center-loop.section-gall-center-loop-straight .slick-item {
  width: auto;
  max-width: 100vw;
  height: 100vh;
  background: black; }
  .section-gall-center-loop.section-gall-center-loop-straight .slick-item img {
    width: auto;
    margin: 0 auto; }
@media only screen and (max-width: 1040px) {
  .section-gall-center-loop.section-gall-center-loop-straight {
    height: auto; }
    .section-gall-center-loop.section-gall-center-loop-straight .slick-item {
      height: auto; } }
@media only screen and (max-width: 720px) {
  .section-gall-center-loop.section-gall-center-loop-straight .slick-item {
    width: 100vw; } }

.section-testimonials {
  color: white;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.35;
  font-style: italic;
  text-align: center; }
  .section-testimonials .btn {
    width: auto;
    height: unset;
    padding: 8px 16px; }
  .section-testimonials .item {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .section-testimonials .item .holder {
      max-width: 600px; }
    .section-testimonials .item blockqoute {
      max-width: 600px; }
    .section-testimonials .item .author {
      padding: 30px 0px; }
      .section-testimonials .item .author .headline {
        font-weight: 700; }
      .section-testimonials .item .author .job {
        font-size: 18px; }

@media only screen and (max-width: 1040px) {
  .section-press-split .section-header {
    text-align: center !important; }
  .section-press-split .flexbox {
    width: 100%; } }
.section-press-split .holder {
  pointer-events: auto;
  display: block;
  width: 100%;
  position: relative; }
  .section-press-split .holder .container {
    background: white;
    width: 80%; }
    @media only screen and (max-width: 720px) {
      .section-press-split .holder .container {
        max-width: 320px;
        width: 90%; } }
  @media only screen and (max-width: 1040px) {
    .section-press-split .holder {
      width: 80%; } }
  @media only screen and (max-width: 720px) {
    .section-press-split .holder {
      width: 90vw; } }
.section-press-split .content {
  width: 75%;
  margin: 0 auto;
  background: white;
  border-radius: 4px;
  padding: 10px 20px 40px;
  box-sizing: border-box;
  color: #424242; }
  .section-press-split .content .logo {
    height: 71px; }
  @media only screen and (max-width: 720px) {
    .section-press-split .content {
      padding: 5px;
      width: 95%; } }
.section-press-split .btn {
  margin: 30px 0px;
  width: auto;
  background: white;
  border: 1px solid #424242;
  border-radius: 6px;
  display: block;
  width: 100px;
  color: #424242;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms; }
  .section-press-split .btn:hover, .section-press-split .btn:focus, .section-press-split .btn:active, .section-press-split .btn.active, .section-press-split .btn.current-menu-item {
    background: #424242;
    color: white; }
.section-press-split .arrow {
  color: #424242;
  cursor: pointer; }
  .section-press-split .arrow.arrow-prev {
    right: 20px; }
  .section-press-split .arrow.arrow-next {
    left: 20px; }
  @media only screen and (max-width: 720px) {
    .section-press-split .arrow {
      display: none; } }

.section-testimonial-split .section-header {
  color: "white"; }
  .section-testimonial-split .section-header:after {
    background: "white"; }

.section-gall-01 .item {
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms; }
  .section-gall-01 .item img {
    width: 100%; }
  .section-gall-01 .item:hover .headline, .section-gall-01 .item:focus .headline, .section-gall-01 .item:active .headline, .section-gall-01 .item.active .headline, .section-gall-01 .item.current-menu-item .headline {
    bottom: 0px; }
.section-gall-01 .headline {
  position: absolute;
  bottom: -60px;
  right: 0px;
  left: 0px;
  width: 100%;
  height: 60px;
  overflow: hidden;
  padding: 20px;
  margin: 0px;
  box-sizing: border-box;
  text-align: left;
  color: #000000;
  background: white;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms; }
  @media only screen and (max-width: 1040px) {
    .section-gall-01 .headline {
      bottom: 0px;
      position: relative; } }
  .section-gall-01 .headline:after {
    position: absolute;
    bottom: 10px;
    left: 20px;
    height: 2px;
    background: #000000;
    content: "";
    display: block;
    width: 30px; }

.section-cta-01 .info {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 500px;
  width: 360px;
  max-width: 100%;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  box-sizing: border-box; }
  .section-cta-01 .info .holder {
    width: 100%; }
  .section-cta-01 .info .btn {
    background: #519bc8;
    color: white;
    margin-bottom: 30px; }
  .section-cta-01 .info .headline {
    font-weight: bold;
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 1.1428571429;
    color: #519bc8; }
  .section-cta-01 .info .subline {
    font-weight: bold;
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 1.1428571429; }
  .section-cta-01 .info .price {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.35;
    margin-bottom: 30px; }
  .section-cta-01 .info .headings {
    text-align: center;
    margin-bottom: 30px; }
.section-cta-01 .media {
  height: 500px; }

.btn {
  background: #a28984; }

.main-color {
  color: #a28984; }

.bg-main-color {
  background-color: #a28984; }

.color-black {
  color: #111; }

.color-white {
  color: #fff; }

.section-c2a .container {
  z-index: 999; }
.section-c2a .content {
  text-align: center; }
  .section-c2a .content h2 {
    font-weight: bold; }
  .section-c2a .content .text-style {
    padding: 20px 0; }
  .section-c2a .content .btn {
    width: auto;
    padding: 0px 40px;
    white-space: normal; }

.section-half-half .content {
  position: absolute;
  z-index: 9;
  bottom: 30px;
  right: 30px; }
  .section-half-half .content h2 {
    font-weight: bold; }
.section-half-half .float-reverse .content {
  right: auto;
  left: 30px;
  text-align: left; }

.section-icons-half .holder {
  align-items: flex-end; }
  .section-icons-half .holder .container {
    padding-bottom: 30px; }
    @media only screen and (max-width: 720px) {
      .section-icons-half .holder .container {
        padding-top: 30px; } }
    .section-icons-half .holder .container .section-headline {
      color: #a28984;
      font-weight: bold; }
    .section-icons-half .holder .container .section-subline {
      font-weight: bold; }
    .section-icons-half .holder .container .text-style {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.35; }
.section-icons-half .icons-grid {
  text-align: center; }
  .section-icons-half .icons-grid .holder {
    margin-bottom: 40px; }
    .section-icons-half .icons-grid .holder .headline {
      font-weight: bold;
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.35;
      margin-bottom: 30px; }
    .section-icons-half .icons-grid .holder .text-style {
      margin: 0 auto;
      max-width: 300px;
      color: #a1a1a1;
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.35; }

.section-multy-02-new .flexbox {
  flex-direction: column; }
.section-multy-02-new .item {
  margin-bottom: 20px; }
.section-multy-02-new .holder {
  text-align: right; }
  .section-multy-02-new .holder .media {
    width: 40px;
    height: 40px;
    float: right; }
  .section-multy-02-new .holder .headline {
    width: calc(100% - 50px);
    max-width: none;
    float: left;
    height: auto;
    margin-bottom: 15px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.35; }
  .section-multy-02-new .holder .text-style {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35; }
.section-multy-02-new .link {
  margin-top: 20px;
  text-align: center; }
  .section-multy-02-new .link .btn {
    padding: 0 40px;
    line-height: 2.5;
    width: auto; }

.contact-form-04 .wrap {
  background-color: #ffffff;
  padding: 80px; }
  .contact-form-04 .wrap .text-style {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35;
    color: #a1a1a1;
    font-weight: normal;
    margin: 0; }
.contact-form-04 form {
  margin-top: 40px; }
  .contact-form-04 form input[type=text].input,
  .contact-form-04 form input[type=email].input {
    background-color: #f0eeee;
    border: 1px solid #f0eeee; }
  .contact-form-04 form textarea.input {
    border: 1px solid #f0eeee;
    background-color: rgba(240, 238, 238, 0.6); }
.contact-form-04 .link {
  text-align: center; }
  .contact-form-04 .link .btn {
    width: auto;
    padding: 0 40px; }

.section-blog {
  background: #f0eeee; }
  .section-blog .section-header-center {
    text-align: center; }
  .section-blog .item {
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
    display: block;
    background: #ffffff;
    position: relative; }
    .section-blog .item img {
      display: block;
      width: 100%; }
    .section-blog .item:after {
      display: block;
      width: 100%;
      height: 2px;
      position: absolute;
      bottom: -15px;
      background: #d8d3d3;
      content: "";
      opacity: 0.5;
      -webkit-transition: all 400ms;
      -moz-transition: all 400ms;
      -o-transition: all 400ms;
      transition: all 400ms; }
    .section-blog .item:hover:after, .section-blog .item:focus:after, .section-blog .item:active:after, .section-blog .item.active:after, .section-blog .item.current-menu-item:after {
      background: #0177c1; }
    .section-blog .item .content {
      position: relative;
      padding: 10px; }
    .section-blog .item .headline {
      color: #000000;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.35;
      line-height: 20px;
      height: 20px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
    .section-blog .item .text-style {
      color: #a1a1a1;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.35;
      height: 20px;
      line-height: 20px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
  .section-blog .more-btn {
    border-color: #424242;
    color: #424242;
    margin: 50px auto 0px;
    display: table;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms; }
    .section-blog .more-btn:hover, .section-blog .more-btn:focus, .section-blog .more-btn:active, .section-blog .more-btn.active, .section-blog .more-btn.current-menu-item {
      background: #0177c1;
      color: #ffffff;
      border-color: #ffffff; }
  .section-blog .btn {
    width: auto;
    padding: 8px 16px; }

.section-blog-inner {
  background: #f0eeee; }
  .section-blog-inner .white-warpper {
    padding: 30px;
    border: 1px solid #dfdbdb;
    background: white;
    border-radius: 3px; }
  .section-blog-inner .comments {
    padding: 30px 0px; }

.no-form #form {
  display: none; }

.basic-form .section-cover-carusel {
  overflow: visible; }

.full-form .section-cover-carusel {
  overflow: visible; }

.logo-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.no-logo .logo-center {
  display: none; }

.section-gall-slider .fixed-heading {
  position: absolute;
  z-index: 9;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: 0px;
  padding: 20px;
  z-index: 9;
  text-align: center;
  color: white; }
  @media only screen and (max-width: 720px) {
    .section-gall-slider .fixed-heading {
      padding: 0px; } }
.section-gall-slider .fixed-heading {
  position: relative;
  background: black;
  display: none; }
  @media only screen and (max-width: 720px) {
    .section-gall-slider .fixed-heading {
      display: block; } }
.section-gall-slider img {
  display: block; }
@media only screen and (max-width: 1040px) {
  .section-gall-slider .media {
    height: 70vw; }
    .section-gall-slider .media:before {
      display: none; } }

.section-text-bg {
  color: white;
  background: #0c0d12; }
  .section-text-bg .headline {
    color: #a28984;
    margin-bottom: 30px;
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 1.1428571429; }
    @media only screen and (max-width: 1040px) {
      .section-text-bg .headline {
        font-size: 36px;
        font-size: 3.6rem;
        line-height: 1.1111111111; } }
    @media only screen and (max-width: 720px) {
      .section-text-bg .headline {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 1.1428571429;
        margin-bottom: 20px; } }
  .section-text-bg .holder {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 3; }
    @media only screen and (max-width: 1240px) {
      .section-text-bg .holder {
        position: relative; } }
  .section-text-bg .content {
    max-width: 40vw;
    width: 540px; }
    @media only screen and (max-width: 1240px) {
      .section-text-bg .content {
        width: 100%;
        max-width: none;
        padding: 30px 0px; } }

/*# sourceMappingURL=style-ltr.css.map */
