@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);
@import url(../fonts/Open-Sans/style.css);
.fancybox-overlay {
  background: white; }

.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 {
  position: relative; }
  .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 3px;
    background: white; }
    .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: white; }

/*!
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: rtl;
  -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: 0px; }
  @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: 0px; }
  @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: 0px;
  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: #4d4e4e;
  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: #4d4e4e;
  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: none;
  height: 40px;
  padding: 0px 40px;
  border: none;
  border: 1px solid white;
  border-radius: 6px;
  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 {
    background: white;
    color: black; }

img {
  max-width: 100%; }

.section {
  overflow: hidden;
  width: 100%;
  position: relative; }
  .section.section-padding {
    padding: 100px 0px; }
    @media only screen and (max-width: 980px) {
      .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; }

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

.row .box {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 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: 980px) {
  .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 .box {
    padding: 20px; }
    @media only screen and (max-width: 720px) {
      .flexrow .box {
        padding: 10px; } }

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

#main {
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100vw;
  margin: 0 auto; }

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

.section, #header {
  position: relative;
  background-size: cover;
  background-position: center;
  box-sizing: border-box; }
  .section.section-padding, #header.section-padding {
    padding: 80px 0px; }
    @media only screen and (max-width: 720px) {
      .section.section-padding, #header.section-padding {
        padding: 40px 0px; } }
  .section.section-padding-top, #header.section-padding-top {
    padding-top: 80px; }
    @media only screen and (max-width: 720px) {
      .section.section-padding-top, #header.section-padding-top {
        padding-top: 40px; } }
  .section.section-padding-bottom, #header.section-padding-bottom {
    padding-bottom: 80px; }
    @media only screen and (max-width: 720px) {
      .section.section-padding-bottom, #header.section-padding-bottom {
        padding-bottom: 40px; } }
  .section.section-white-theme, #header.section-white-theme {
    background: #ffffff;
    color: #222222; }
    .section.section-white-theme .section-headline, #header.section-white-theme .section-headline {
      color: #222222; }
      .section.section-white-theme .section-headline:after, #header.section-white-theme .section-headline:after {
        background: #222222; }
    .section.section-white-theme .nav-wrp, #header.section-white-theme .nav-wrp {
      background: #ffffff;
      border-color: #222222; }
      .section.section-white-theme .nav-wrp ul li a:after, #header.section-white-theme .nav-wrp ul li a:after {
        background: #222222; }
    .section.section-white-theme .nav-handle, #header.section-white-theme .nav-handle {
      color: #222222; }
  .section.section-black-theme, #header.section-black-theme {
    background: #000000;
    color: #ffffff; }
    .section.section-black-theme .section-headline, #header.section-black-theme .section-headline {
      color: #ffffff; }
      .section.section-black-theme .section-headline:after, #header.section-black-theme .section-headline:after {
        background: #ffffff; }
    .section.section-black-theme .nav-wrp, #header.section-black-theme .nav-wrp {
      background: #000000;
      border-color: #ffffff; }
      .section.section-black-theme .nav-wrp ul li a:after, #header.section-black-theme .nav-wrp ul li a:after {
        background: #ffffff; }
    .section.section-black-theme .nav-handle, #header.section-black-theme .nav-handle {
      color: #ffffff; }
  .section.section-dark-theme, #header.section-dark-theme {
    background: #4d4e4e;
    color: #e8e8e8; }
    .section.section-dark-theme .section-headline, #header.section-dark-theme .section-headline {
      color: #e8e8e8; }
      .section.section-dark-theme .section-headline:after, #header.section-dark-theme .section-headline:after {
        background: #e8e8e8; }
    .section.section-dark-theme .nav-wrp, #header.section-dark-theme .nav-wrp {
      background: #4d4e4e;
      border-color: #e8e8e8; }
      .section.section-dark-theme .nav-wrp ul li a:after, #header.section-dark-theme .nav-wrp ul li a:after {
        background: #e8e8e8; }
    .section.section-dark-theme .nav-handle, #header.section-dark-theme .nav-handle {
      color: #e8e8e8; }
  .section.section-gray-theme, #header.section-gray-theme {
    background: #808285;
    color: #000000; }
    .section.section-gray-theme .section-headline, #header.section-gray-theme .section-headline {
      color: #000000; }
      .section.section-gray-theme .section-headline:after, #header.section-gray-theme .section-headline:after {
        background: #000000; }
    .section.section-gray-theme .nav-wrp, #header.section-gray-theme .nav-wrp {
      background: #808285;
      border-color: #000000; }
      .section.section-gray-theme .nav-wrp ul li a:after, #header.section-gray-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-gray-theme .nav-handle, #header.section-gray-theme .nav-handle {
      color: #000000; }
  .section.section-light-theme, #header.section-light-theme {
    background: #f8f8f8;
    color: #000000; }
    .section.section-light-theme .section-headline, #header.section-light-theme .section-headline {
      color: #000000; }
      .section.section-light-theme .section-headline:after, #header.section-light-theme .section-headline:after {
        background: #000000; }
    .section.section-light-theme .nav-wrp, #header.section-light-theme .nav-wrp {
      background: #f8f8f8;
      border-color: #000000; }
      .section.section-light-theme .nav-wrp ul li a:after, #header.section-light-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-light-theme .nav-handle, #header.section-light-theme .nav-handle {
      color: #000000; }
  .section.section-muted-theme, #header.section-muted-theme {
    background: #d1d3d4;
    color: #000000; }
    .section.section-muted-theme .section-headline, #header.section-muted-theme .section-headline {
      color: #000000; }
      .section.section-muted-theme .section-headline:after, #header.section-muted-theme .section-headline:after {
        background: #000000; }
    .section.section-muted-theme .nav-wrp, #header.section-muted-theme .nav-wrp {
      background: #d1d3d4;
      border-color: #000000; }
      .section.section-muted-theme .nav-wrp ul li a:after, #header.section-muted-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-muted-theme .nav-handle, #header.section-muted-theme .nav-handle {
      color: #000000; }
  .section.section-main-theme, #header.section-main-theme {
    background: #555555;
    color: #ffffff; }
    .section.section-main-theme .section-headline, #header.section-main-theme .section-headline {
      color: #ffffff; }
      .section.section-main-theme .section-headline:after, #header.section-main-theme .section-headline:after {
        background: #ffffff; }
    .section.section-main-theme .nav-wrp, #header.section-main-theme .nav-wrp {
      background: #555555;
      border-color: #ffffff; }
      .section.section-main-theme .nav-wrp ul li a:after, #header.section-main-theme .nav-wrp ul li a:after {
        background: #ffffff; }
    .section.section-main-theme .nav-handle, #header.section-main-theme .nav-handle {
      color: #ffffff; }
  .section.section-error-theme, #header.section-error-theme {
    background: #FF0707;
    color: #000000; }
    .section.section-error-theme .section-headline, #header.section-error-theme .section-headline {
      color: #000000; }
      .section.section-error-theme .section-headline:after, #header.section-error-theme .section-headline:after {
        background: #000000; }
    .section.section-error-theme .nav-wrp, #header.section-error-theme .nav-wrp {
      background: #FF0707;
      border-color: #000000; }
      .section.section-error-theme .nav-wrp ul li a:after, #header.section-error-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-error-theme .nav-handle, #header.section-error-theme .nav-handle {
      color: #000000; }
  .section.section-orange-theme, #header.section-orange-theme {
    background: #f37020;
    color: #000000; }
    .section.section-orange-theme .section-headline, #header.section-orange-theme .section-headline {
      color: #000000; }
      .section.section-orange-theme .section-headline:after, #header.section-orange-theme .section-headline:after {
        background: #000000; }
    .section.section-orange-theme .nav-wrp, #header.section-orange-theme .nav-wrp {
      background: #f37020;
      border-color: #000000; }
      .section.section-orange-theme .nav-wrp ul li a:after, #header.section-orange-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-orange-theme .nav-handle, #header.section-orange-theme .nav-handle {
      color: #000000; }
  .section.section-pink-theme, #header.section-pink-theme {
    background: #de2b86;
    color: #000000; }
    .section.section-pink-theme .section-headline, #header.section-pink-theme .section-headline {
      color: #000000; }
      .section.section-pink-theme .section-headline:after, #header.section-pink-theme .section-headline:after {
        background: #000000; }
    .section.section-pink-theme .nav-wrp, #header.section-pink-theme .nav-wrp {
      background: #de2b86;
      border-color: #000000; }
      .section.section-pink-theme .nav-wrp ul li a:after, #header.section-pink-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-pink-theme .nav-handle, #header.section-pink-theme .nav-handle {
      color: #000000; }
  .section.section-green-theme, #header.section-green-theme {
    background: #2a9f47;
    color: #000000; }
    .section.section-green-theme .section-headline, #header.section-green-theme .section-headline {
      color: #000000; }
      .section.section-green-theme .section-headline:after, #header.section-green-theme .section-headline:after {
        background: #000000; }
    .section.section-green-theme .nav-wrp, #header.section-green-theme .nav-wrp {
      background: #2a9f47;
      border-color: #000000; }
      .section.section-green-theme .nav-wrp ul li a:after, #header.section-green-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-green-theme .nav-handle, #header.section-green-theme .nav-handle {
      color: #000000; }
  .section.section-red-theme, #header.section-red-theme {
    background: #ed1b24;
    color: #000000; }
    .section.section-red-theme .section-headline, #header.section-red-theme .section-headline {
      color: #000000; }
      .section.section-red-theme .section-headline:after, #header.section-red-theme .section-headline:after {
        background: #000000; }
    .section.section-red-theme .nav-wrp, #header.section-red-theme .nav-wrp {
      background: #ed1b24;
      border-color: #000000; }
      .section.section-red-theme .nav-wrp ul li a:after, #header.section-red-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-red-theme .nav-handle, #header.section-red-theme .nav-handle {
      color: #000000; }
  .section.section-blue-theme, #header.section-blue-theme {
    background: #0177c1;
    color: #000000; }
    .section.section-blue-theme .section-headline, #header.section-blue-theme .section-headline {
      color: #000000; }
      .section.section-blue-theme .section-headline:after, #header.section-blue-theme .section-headline:after {
        background: #000000; }
    .section.section-blue-theme .nav-wrp, #header.section-blue-theme .nav-wrp {
      background: #0177c1;
      border-color: #000000; }
      .section.section-blue-theme .nav-wrp ul li a:after, #header.section-blue-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-blue-theme .nav-handle, #header.section-blue-theme .nav-handle {
      color: #000000; }
  .section.section-blue_dark-theme, #header.section-blue_dark-theme {
    background: #25408f;
    color: #000000; }
    .section.section-blue_dark-theme .section-headline, #header.section-blue_dark-theme .section-headline {
      color: #000000; }
      .section.section-blue_dark-theme .section-headline:after, #header.section-blue_dark-theme .section-headline:after {
        background: #000000; }
    .section.section-blue_dark-theme .nav-wrp, #header.section-blue_dark-theme .nav-wrp {
      background: #25408f;
      border-color: #000000; }
      .section.section-blue_dark-theme .nav-wrp ul li a:after, #header.section-blue_dark-theme .nav-wrp ul li a:after {
        background: #000000; }
    .section.section-blue_dark-theme .nav-handle, #header.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.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; }

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

.float-reverse {
  float: left; }

.float-off {
  float: left; }

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

.DL {
  direction: ltr; }

.DR {
  direction: rtl; }

.RTL {
  direction: rtl; }

.AL {
  text-align: left; }

.AR {
  text-align: right; }

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

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

.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: #4d4e4e; }

.dark-bg {
  background: #4d4e4e; }

.gray-text {
  color: #808285; }

.gray-bg {
  background: #808285; }

.light-text {
  color: #f8f8f8; }

.light-bg {
  background: #f8f8f8; }

.muted-text {
  color: #d1d3d4; }

.muted-bg {
  background: #d1d3d4; }

.main-text {
  color: #555555; }

.main-bg {
  background: #555555; }

.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: 980px) {
    .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;
  cursor: pointer; }
  @media only screen and (max-width: 980px) {
    .arrow {
      font-size: 50px;
      font-size: 5rem;
      line-height: 2;
      line-height: 100px; } }
  .arrow.swiper-button-disabled {
    opacity: 0.3; }
  .arrow.arrow-next {
    left: 0px; }
    @media only screen and (max-width: 1480px) {
      .arrow.arrow-next {
        left: 0px; } }
    @media only screen and (max-width: 720px) {
      .arrow.arrow-next {
        left: 0px; } }
  .arrow.arrow-prev {
    right: 0px; }
    @media only screen and (max-width: 1480px) {
      .arrow.arrow-prev {
        right: 0px; } }
    @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 */ }

#header {
  background: white;
  position: fixed;
  overflow: visible;
  top: 0px;
  right: 0px;
  left: 0px;
  width: 100%;
  height: 105px;
  color: #000000;
  z-index: 9;
  box-shadow: 0 1px 0 rgba(77, 78, 78, 0.1), 0 1px 6px rgba(128, 130, 133, 0.1); }
  #header .container {
    height: 100%;
    width: 96%;
    max-width: 1180px; }
  #header .logo {
    float: right;
    width: 150px;
    height: 100%;
    display: block;
    display: flex;
    align-items: center; }
    #header .logo img {
      max-height: 90%;
      display: block; }
    @media only screen and (max-width: 720px) {
      #header .logo {
        margin-right: 10px; } }
  #header .nav-wrp {
    float: left;
    height: 100%; }
    #header .nav-wrp ul {
      list-style-type: none;
      display: block;
      width: 100%; }
      #header .nav-wrp ul li {
        display: block;
        height: 100%;
        float: right;
        position: relative; }
        #header .nav-wrp ul li a {
          display: block;
          text-align: center;
          padding: 0px 20px;
          height: 105px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.25;
          position: relative;
          z-index: 3; }
        @media only screen and (min-width: 980px) {
          #header .nav-wrp ul li:after {
            position: absolute;
            content: "";
            display: block;
            height: 4px;
            width: 0%;
            right: 0px;
            left: 0px;
            bottom: 0px;
            background: #000000;
            border: none;
            border-radius: 4px;
            margin: auto;
            -webkit-transition: all 400ms;
            transition: all 400ms;
            z-index: 2;
            border-radius: 0 0 5px 5px;
            width: calc(100% - 20px);
            top: 0px;
            bottom: 35%;
            height: auto;
            opacity: 0; } }
  @media only screen and (min-width: 980px) and (max-width: 980px) {
    #header .nav-wrp ul li:after {
      display: none; } }
        @media only screen and (min-width: 980px) {
          #header .nav-wrp ul li.current-menu-item a, #header .nav-wrp ul li.current_page_item a {
            color: #ffffff; }
          #header .nav-wrp ul li.current-menu-item:after, #header .nav-wrp ul li.current_page_item:after {
            opacity: 1; }
          #header .nav-wrp ul li:hover:after {
            opacity: 0.1; } }
  #header .nav-handle {
    display: none;
    float: left;
    width: 70px;
    height: 70px;
    color: #000000;
    font-size: 26px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center; }
    @media only screen and (max-width: 980px) {
      #header .nav-handle {
        display: flex; } }
  @media only screen and (max-width: 980px) {
    #header {
      height: 70px; }
      #header .logo {
        width: auto;
        max-width: calc(100% - 70px); }
      #header .nav-wrp ul li a {
        height: 70px;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.25;
        padding: 0px 10px; } }
  @media only screen and (max-width: 980px) {
    #header .nav-wrp {
      overflow: scroll;
      overflow-scrolling: touch;
      /* lets it scroll lazy */
      -webkit-overflow-scrolling: touch;
      /* lets it scroll lazy */
      text-align: center;
      position: fixed;
      top: 70px;
      height: calc(100vh - 70px);
      padding: 20px 20px 100px;
      box-sizing: border-box;
      background: #ffffff;
      width: 100vw;
      left: -100vw;
      width: 100%;
      z-index: 99999;
      -webkit-transition: all 400ms;
      -moz-transition: all 400ms;
      -o-transition: all 400ms;
      transition: all 400ms; }
      #header .nav-wrp.active {
        left: 0px; }
      #header .nav-wrp ul li {
        float: none;
        width: auto; }
        #header .nav-wrp ul li a:after {
          width: 100%;
          height: 2px; } }

.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: #4d4e4e; }
  #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: #000000;
  font-family: 'open-sans', sans-serif; }

.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.section-header-right-line .section-headline:after {
    position: absolute;
    left: calc(100% + 20px);
    height: 2px;
    width: 100vw;
    top: 22px;
    display: block;
    content: "";
    background: black; }
  .section-header.section-header-center {
    text-align: center; }
    .section-header.section-header-center .section-headline {
      display: table;
      margin: 0 auto; }

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

.section-subline {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  font-weight: 400; }
  @media only screen and (max-width: 720px) {
    .section-subline {
      font-size: 16px;
      font-size: 1.6rem;
      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 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400; }
  .text-style a {
    text-decoration: underline;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms; }
    .text-style a:hover, .text-style a:focus, .text-style a:active, .text-style a.active, .text-style a.current-menu-item {
      text-decoration: none;
      color: #0177c1; }

.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: #4d4e4e;
    background-size: contain; }

.section-home-gall {
  margin-bottom: -75px; }
  .section-home-gall::after {
    clear: both;
    content: " ";
    display: table; }
  @media only screen and (max-width: 720px) {
    .section-home-gall {
      margin-bottom: 20px; } }
  .section-home-gall .nav {
    position: absolute;
    bottom: 75px;
    padding: 20px 0px;
    right: 0;
    left: 0;
    z-index: 10; }
    @media only screen and (max-width: 720px) {
      .section-home-gall .nav {
        bottom: 0px;
        padding: 0px; } }
    .section-home-gall .nav .arrows {
      position: absolute;
      left: 0px;
      top: 0px;
      bottom: 0px;
      z-index: 20; }
      @media only screen and (max-width: 720px) {
        .section-home-gall .nav .arrows {
          display: none; } }
      .section-home-gall .nav .arrows button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: none;
        border: none;
        cursor: pointer; }
  .section-home-gall .content-holder {
    position: absolute;
    top: 0;
    bottom: 75px;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 90;
    color: white;
    text-align: center; }
    @media only screen and (max-width: 720px) {
      .section-home-gall .content-holder {
        bottom: 30px; } }
    .section-home-gall .content-holder .headline {
      pointer-events: auto;
      font-size: 40px;
      font-size: 4rem;
      line-height: 1.35;
      font-weight: 400;
      text-shadow: 0px 0px 15.48px rgba(0, 0, 0, 0.5); }
      @media only screen and (max-width: 720px) {
        .section-home-gall .content-holder .headline {
          pointer-events: none;
          font-size: 26px;
          font-size: 2.6rem;
          line-height: 1.35; } }
    .section-home-gall .content-holder .subline {
      pointer-events: auto;
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 1.35;
      font-weight: 400;
      color: #d1d3d4;
      text-shadow: 0px 0px 15.48px rgba(0, 0, 0, 0.5); }
      @media only screen and (max-width: 720px) {
        .section-home-gall .content-holder .subline {
          pointer-events: none;
          font-size: 20px;
          font-size: 2rem;
          line-height: 1.35; } }
  .section-home-gall + .section {
    z-index: 9; }
    .section-home-gall + .section .container {
      background: white; }
  .section-home-gall.section-home-gall-no-margin {
    margin-bottom: 0px; }
    .section-home-gall.section-home-gall-no-margin + .section {
      z-index: 9; }
      .section-home-gall.section-home-gall-no-margin + .section .container {
        background: none; }

.section-masonery-ltr {
  background: #f0f0f0; }
  .section-masonery-ltr .gall {
    background: white; }

.section-masonery, .section-masonery-ltr {
  padding-bottom: 30px; }
  .section-masonery .container, .section-masonery-ltr .container {
    max-width: 1390px; }
  .section-masonery .gall, .section-masonery-ltr .gall {
    padding: 20px 20px 0px; }
    @media only screen and (max-width: 720px) {
      .section-masonery .gall, .section-masonery-ltr .gall {
        padding: 0px; } }
    .section-masonery .gall .media, .section-masonery-ltr .gall .media {
      display: block;
      position: relative; }
    .section-masonery .gall .height-4 .media, .section-masonery-ltr .gall .height-4 .media {
      height: 276px; }
      @media only screen and (max-width: 720px) {
        .section-masonery .gall .height-4 .media, .section-masonery-ltr .gall .height-4 .media {
          height: 200px; } }
    .section-masonery .gall .height-8 .media, .section-masonery-ltr .gall .height-8 .media {
      height: 568px; }
      @media only screen and (max-width: 720px) {
        .section-masonery .gall .height-8 .media, .section-masonery-ltr .gall .height-8 .media {
          height: 416px; } }
    .section-masonery .gall .text-box-small, .section-masonery-ltr .gall .text-box-small {
      position: absolute;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      bottom: 40px;
      right: 0px;
      padding: 5px 5px 5px 20px; }
      .section-masonery .gall .text-box-small .headline, .section-masonery-ltr .gall .text-box-small .headline {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.35; }
      .section-masonery .gall .text-box-small .text, .section-masonery-ltr .gall .text-box-small .text {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.35;
        color: #d1d3d4; }
    .section-masonery .gall .text-box-full, .section-masonery-ltr .gall .text-box-full {
      position: absolute;
      background: rgba(0, 0, 0, 0.8);
      color: white;
      top: 0px;
      bottom: 0px;
      right: 0px;
      left: 0px;
      padding: 5px 5px 5px 20px; }
      .section-masonery .gall .text-box-full .relative, .section-masonery-ltr .gall .text-box-full .relative {
        max-width: 66%; }
      .section-masonery .gall .text-box-full .headline, .section-masonery-ltr .gall .text-box-full .headline {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.35; }
      .section-masonery .gall .text-box-full .text, .section-masonery-ltr .gall .text-box-full .text {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.35;
        color: #d1d3d4;
        text-align: justify; }
    .section-masonery .gall .box, .section-masonery-ltr .gall .box {
      box-sizing: border-box; }
    .section-masonery .gall .row .box, .section-masonery-ltr .gall .row .box {
      padding-left: 8px;
      padding-right: 8px;
      margin-bottom: 16px; }
    .section-masonery .gall .row, .section-masonery-ltr .gall .row {
      margin-left: -8px;
      margin-right: -8px; }

.section-benefits .flexrow {
  margin-top: 0px; }
.section-benefits .item {
  padding: 50px 10px; }
  @media only screen and (max-width: 720px) {
    .section-benefits .item {
      padding: 10px; } }
  .section-benefits .item .headline {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    color: #000000;
    margin-top: 0px; }
  .section-benefits .item .text-style {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.35;
    color: #4d4e4e; }

.section-since {
  background-color: #f8f8f8;
  background-position: left center;
  background-size: auto 100%;
  background-repeat: no-repeat; }
  @media only screen and (max-width: 980px) {
    .section-since .container {
      width: 100%; } }
  .section-since .section-headline {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1.35;
    margin-bottom: 50px; }
  .section-since .content {
    position: relative;
    padding: 50px 10px;
    background: #f8f8f8; }
    .section-since .content .item {
      margin-bottom: 40px; }
      .section-since .content .item .headline {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.35; }
      .section-since .content .item .line {
        position: relative;
        height: 4px;
        border-radius: 4px;
        background: black;
        max-width: 100%; }
        .section-since .content .item .line .number {
          position: absolute;
          left: 0px;
          bottom: 10px;
          background: #cccccc;
          color: white;
          font-size: 12px;
          padding: 1px 5px;
          border-radius: 5px; }
          .section-since .content .item .line .number:after {
            -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
            clip-path: polygon(50% 100%, 0 0, 100% 0);
            background: #cccccc;
            position: absolute;
            top: 100%;
            right: 0px;
            left: 0px;
            margin: auto;
            width: 7px;
            height: 5px;
            content: "";
            display: block; }
    .section-since .content:after {
      -webkit-clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0% 100%);
      clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0% 100%);
      background: #f8f8f8;
      position: absolute;
      top: 0%;
      bottom: 0px;
      right: calc(100% - 1px);
      width: 100px;
      height: 100%;
      content: "";
      display: block; }

.section-team .item {
  text-align: center; }
  .section-team .item img {
    margin-bottom: 20px; }
  .section-team .item .headline {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.35;
    color: #000000;
    font-weight: 400; }
  .section-team .item .job {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35;
    color: #808285;
    font-weight: 400;
    margin-bottom: 20px; }

.section-news {
  background: #f8f8f8; }
  .section-news .news-holder {
    padding: 0px 50px; }
    @media only screen and (max-width: 720px) {
      .section-news .news-holder {
        padding: 0px; }
        .section-news .news-holder .swiper-button-next, .section-news .news-holder .swiper-button-prev {
          display: none; } }
  .section-news .item {
    background: white; }
    .section-news .item::after {
      clear: both;
      content: " ";
      display: table; }
    .section-news .item .media {
      float: left;
      width: 50%;
      height: 285px; }
      @media only screen and (max-width: 720px) {
        .section-news .item .media {
          width: 100%; } }
    .section-news .item .content {
      float: right;
      width: 50%;
      height: 285px;
      box-sizing: border-box;
      padding: 20px; }
      .section-news .item .content .readmore {
        padding: 10px 0px; }
      @media only screen and (max-width: 720px) {
        .section-news .item .content {
          width: 100%;
          height: auto; } }

.section-contact {
  background: black;
  color: white; }
  .section-contact .section-header {
    margin-bottom: 20px; }
    .section-contact .section-header.section-header-right-line .section-headline:after {
      position: absolute;
      left: calc(100% + 20px);
      height: 2px;
      width: 100vw;
      top: 22px;
      display: block;
      content: "";
      background: white; }
  .section-contact .content .info {
    margin-bottom: 20px; }
    .section-contact .content .info .item {
      margin-bottom: 10px; }
  .section-contact .content .text-style {
    max-width: 350px; }
  .section-contact form .input {
    color: #dfdfdf;
    background: none;
    border: 1px solid #323232; }
    .section-contact form .input.textarea {
      height: 250px; }
  .section-contact form .submit {
    border: 1px solid #323232; }

.section-logo {
  text-align: center;
  padding: 50px 0px 40px; }

.section-text .holder {
  padding: 20px 20px 70px;
  max-width: 960px;
  margin: 0 auto; }

.section-parallex-scroll {
  height: 530px;
  max-height: 70vh;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; }
  @media only screen and (max-width: 980px) {
    .section-parallex-scroll {
      background-attachment: scroll; } }

.section-projects {
  background: #f0f0f0; }
  .section-projects .item {
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
    display: block;
    background: #ffffff;
    position: relative;
    margin-bottom: 20px; }
    .section-projects .item img {
      display: block;
      width: 100%; }
    .section-projects .item:after {
      display: block;
      width: 100%;
      height: 2px;
      position: absolute;
      bottom: -15px;
      background: #dfdfdf;
      content: "";
      opacity: 0.5;
      -webkit-transition: all 400ms;
      -moz-transition: all 400ms;
      -o-transition: all 400ms;
      transition: all 400ms; }
    .section-projects .item:hover:after, .section-projects .item:focus:after, .section-projects .item:active:after, .section-projects .item.active:after, .section-projects .item.current-menu-item:after {
      background: #000000; }
    .section-projects .item .content {
      position: relative;
      padding: 10px; }
      .section-projects .item .content .fa {
        position: absolute;
        bottom: 0px;
        left: 0px;
        height: 50px;
        width: 50px;
        text-align: center;
        line-height: 50px; }
    .section-projects .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-projects .item .text-style {
      color: #808285;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.35;
      height: 20px;
      line-height: 20px;
      width: calc(100% - 50px);
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }

.portfolio_filters {
  margin-top: 30px;
  list-style-type: none; }
  .portfolio_filters li {
    display: inline-block;
    margin-left: 8px; }
    .portfolio_filters li a {
      cursor: pointer;
      display: block;
      line-height: 40px;
      padding: 0 18px;
      border: 1px solid #e7e7e7;
      background: #fff;
      color: #797979;
      text-decoration: none;
      -webkit-transition: all 200ms;
      -moz-transition: all 200ms;
      -o-transition: all 200ms;
      transition: all 200ms; }
      .portfolio_filters li a:hover, .portfolio_filters li a:focus, .portfolio_filters li a:active, .portfolio_filters li a.active, .portfolio_filters li a.current-menu-item {
        border-color: #797979;
        background: #797979;
        color: #fff; }

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

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