/*----------------------------------------
[Table of contents]

  Animate
  Owl-carousel
  Magnific-Popup
1.  Content
  1.1 Info-Club
  1.2 Block-Teams
  1.3 Schedule Block
  1.4 Coaches Block
  1.5 Recent News Block
  1.6 Club Gallery Block
  1.7 Partners Block
  1.8 Subscribe Block
2.  Footer
3.  Other pages
  3.1 About
  3.2 Coaches Block
  3.3 Statistic Block
  3.4 Gallery Block
  3.5 Schedule
  3.6 Partners-page-block
  3.7 Contacts Page
  3.8 Block Blog-Posts
  3.9 Block Blog-Post
4.  Media
-----------------------------------------*/

/* Animate */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }
  .animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; }
  .animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s; }

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -o-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -o-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom; }

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

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

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

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

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

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

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

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

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

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

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

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

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

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

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

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; } }

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

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

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

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

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

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; } }

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

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

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

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

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

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

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

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

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

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

@keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    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: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    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: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    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: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    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: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  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: rotate3d(0, 0, 1, 80deg);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 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%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 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;
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    -ms-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; } }

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

@-webkit-keyframes rollOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

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

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }

@keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center; } }

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center; } }

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

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

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

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

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

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

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

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

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%); } }

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%); } }

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%); } }

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); } }

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); } }

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

/* Owl-carousel */
.owl-carousel {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden; }
    .owl-carousel .owl-stage:after {
      content: ".";
      display: block;
      clear: both;
      visibility: hidden;
      line-height: 0;
      height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
    .owl-carousel .owl-item img {
      display: block;
      width: 100%; }
  .owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
    .owl-carousel.owl-rtl .owl-item {
      float: right; }

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

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

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

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

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

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

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

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }
  .owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3); }

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

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

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

/* Magnific-Popup */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

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

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

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

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

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

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

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

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

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

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

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

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

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

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

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

.mfp-ready .mfp-figure {
  opacity: 0; }

.mfp-zoom-in .mfp-figure, .mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95); }

.mfp-zoom-in.mfp-bg, .mfp-zoom-in .mfp-preloader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.mfp-zoom-in.mfp-image-loaded .mfp-figure {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.mfp-zoom-in.mfp-ready.mfp-bg, .mfp-zoom-in.mfp-ready .mfp-preloader {
  opacity: 0.8; }

.mfp-zoom-in.mfp-removing .mfp-figure, .mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  opacity: 0; }

.mfp-zoom-in.mfp-removing.mfp-bg, .mfp-zoom-in.mfp-removing .mfp-preloader {
  opacity: 0; }

.mfp-iframe-scaler {
  overflow: visible; }

.mfp-zoom-out-cur {
  cursor: auto; }
  .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer; }

.mfp-preloader {
  width: 30px !important;
  height: 30px !important;
  background-color: #ff9e16;
  opacity: 1;
  margin: 0 auto;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out; }

@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px); }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); } }

@keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }

/* 1. Content
================================================== */
  /* 1.1 Info-Club
  ================================================== */
.Pages .infoCommittee-wrap {
  margin-top: 122px; }
  .Pages .infoCommittee-wrap .inner-text {
    width: 100%; }

.t-black {
  position: relative; }
  .t-black .wrap-block-player img {
    height: 753px;
    top: 70px;
    right: 0; }

.infoClub-wrap {
  margin-top: 125px;
  margin-left: -19px;
  margin-bottom: 140px; }
  .infoClub-wrap h2 {
    line-height: 1.1;
    color: #21201f;
    letter-spacing: 1.05px; }
  .infoClub-wrap h4 {
    margin-top: -5px;
    margin-left: 3px;
    letter-spacing: 1.1px;
    font-size: 1.75em;
    font-family: "RobotoCondensedLight",sans-serif; }
  .infoClub-wrap .inner-text {
    margin-top: 44px;
    margin-left: 3px; }
    .infoClub-wrap .inner-text p {
      line-height: 1.5; }
    .infoClub-wrap .inner-text > p:first-child {
      font-family: "KanitLightItalic",sans-serif;
      margin-bottom: 25px; }
  .infoClub-wrap .btn-wrap {
    margin-top: 40px;
    margin-left: 15px;
    display: inline-block; }
    .infoClub-wrap .btn-wrap .btn {
      width: 200px; }
      .infoClub-wrap .btn-wrap .btn > span {
        margin-top: 9px;
        margin-left: 45px; }

.wrap-block-player img {
  position: absolute;
  top: 0;
  right: 0; }

.infoCommittee-wrap {
  position: relative; }
  .infoCommittee-wrap .player-wrap .player-img {
    height: 807px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s; }
  .infoCommittee-wrap h2 {
    margin-top: 122px;
    margin-left: -17px;
    line-height: 1.1;
    letter-spacing: 1.6px; }
  .infoCommittee-wrap .inner-text {
    margin-top: 25px;
    margin-left: -18px;
    margin-bottom: 130px;
    width: 49%; }
    .infoCommittee-wrap .inner-text .line-block {
      border-bottom: 3px solid #f3f3f3; }
      .infoCommittee-wrap .inner-text .line-block:last-child {
        border-bottom: none; }
      .infoCommittee-wrap .inner-text .line-block p {
        display: inline-block;
        margin: 15px 0 15px 5px;
        font-size: 1.0625em;
        font-weight: 500;
        color: #21201f;
        letter-spacing: 0.4px; }
        .infoCommittee-wrap .inner-text .line-block p:first-child {
          font-family: "KanitLightItalic",sans-serif;
          font-weight: 200;
          width: 51.5%;
          color: #000; }
        .infoCommittee-wrap .inner-text .line-block p:last-child {
          width: 45%;
          font-family: "KanitRegular",sans-serif; }

/* /info-Club
================================================== */
/* 1.2 Block-Teams
================================================== */
.block-Teams {
  background-color: #2b2b2b; }
  .block-Teams .col-sm-4 {
    padding: 0; }
  .block-Teams .col-md-12 {
    padding: 0; }
  .block-Teams .t-wrap {
    text-align: center;
    line-height: 1; }
    .block-Teams .t-wrap h2 {
      margin-top: 46px; }
    .block-Teams .t-wrap h4 {
      margin: 10px 0 60px 0;
      font-family: "RobotoCondensedLight",sans-serif; }
  .block-Teams .carousel-item-teams.index-z1 {
    z-index: 10; }
  .block-Teams .b-hover-team:hover .oblique-block {
    background-color: #FFF;
    width: 175px; }
    .block-Teams .b-hover-team:hover .oblique-block i {
      color: #ff9e16; }
  .block-Teams .b-hover-team:hover h3 {
    color: #ff9e16; }
  .block-Teams .teams-content .oblin-block-img {
    display: block;
    float: left;
    position: relative; }
    .block-Teams .teams-content .oblin-block-img img {
      width: 140px;
      height: 120px; }
    .block-Teams .teams-content .oblin-block-img i {
      position: absolute;
      top: 25px;
      left: 25px;
      display: block;
      font-size: 64px; }
  .block-Teams .teams-content .b-inner-content-wrap {
    display: block;
    margin-top: 77%; }
  .block-Teams .teams-content .oblique-block {
    display: block;
    float: left;
    height: 120px;
    width: 140px;
    background-image: url("../img/block-team.png");
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .block-Teams .teams-content .oblique-block > span {
      display: inline-block;
      -webkit-transform: skew(23deg);
      -ms-transform: skew(23deg);
      transform: skew(23deg); }
      .block-Teams .teams-content .oblique-block > span i {
        position: relative;
        display: block;
        margin: 24px 0 0 59px;
        font-size: 64px;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
  .block-Teams .teams-content .b-inner-text {
    display: block;
    float: left;
    margin-left: 25px; }
    .block-Teams .teams-content .b-inner-text h3 {
      font-weight: 100;
      line-height: 1.1;
      margin-top: 4px;
      margin-bottom: 10px;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .block-Teams .teams-content .b-inner-text p {
      font-family: "KanitRegular",sans-serif;
      font-size: 1.125em;
      margin-top: 8px;
      margin-left: 1px;
      display: inline-block;
      line-height: 1.3; }

.b-wrap1 {
  background-image: url("../img/Teams/Teams1.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  min-height: 660px;
  position: relative;
  z-index: 10; }

.b-wrap2 {
  background-image: url("../img/Teams/Teams2.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  min-height: 660px;
  position: relative;
  z-index: 9;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.b-wrap3 {
  background-image: url("../img/Teams/Teams3.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  min-height: 660px;
  position: relative;
  z-index: 8;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

/* /Block-Teams
================================================== */
/* 1.3 Schedule Block
================================================== */
.block-Schedule {
  position: relative;
  margin-top: 105px;
  margin-bottom: 17px; }
  .block-Schedule .video-block .wrap-video {
    height: 330px;
    margin-top: 30px; }
    .block-Schedule .video-block .wrap-video iframe {
      border: none; }
  .block-Schedule .video-block p {
    margin-top: 33px;
    font-size: 1.125em; }
  .block-Schedule .content-Schedule {
    margin-bottom: 123px;
    height: 316px; }
  .block-Schedule .btn {
    display: block;
    width: 170px;
    height: 65px;
    -webkit-transform: skew(20deg);
    -ms-transform: skew(20deg);
    transform: skew(20deg);
    margin: 0 auto;
    border: 2px solid #f4f4f4;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-right: 11px; }
    .block-Schedule .btn > span {
      display: inline-block;
      -webkit-transform: skew(-20deg);
      -ms-transform: skew(-20deg);
      transform: skew(-20deg);
      font-family: "RobotoCondensedRegular",sans-serif;
      font-size: 1.5em;
      margin-top: 10px;
      margin-left: -3px;
      width: 178px;
      text-align: center;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .block-Schedule .btn.btn-link-g {
      background-color: #f4f4f4;
      color: #000; }
      .block-Schedule .btn.btn-link-g:hover {
        border: 2px solid #ff9e16; }
      .block-Schedule .btn.btn-link-g:active {
        -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
        transform: translateY(2px);
        background-color: #e5e5e5; }
        .block-Schedule .btn.btn-link-g:active > span {
          -webkit-transform: skew(0deg);
          -ms-transform: skew(0deg);
          transform: skew(0deg); }
    .block-Schedule .btn.on {
      border: 2px solid #ff9e16;
      background-color: #FFF; }
  .block-Schedule a {
    color: #000; }
  .block-Schedule h2 {
    color: #21201f; }
  .block-Schedule .link-wrap {
    margin: 30px 0; }
    .block-Schedule .link-wrap > a {
      float: left; }

.wrap-inner-s-1 {
  display: block; }

.wrap-inner-s-2 {
  display: none; }

.wrap-inner-s-3 {
  display: none; }

.table-Schedule {
  font-family: "KanitLight",sans-serif;
  font-size: 1.125em;
  font-weight: 100;
  color: #3b3a39;
  text-align: left;
  width: 100%; }
  .table-Schedule .pad-table th {
    padding-top: 12px;
    padding-bottom: 20px;
    font-family: "KanitMedium",sans-serif;
    font-weight: 100; }
  .table-Schedule tr, .table-Schedule th {
    padding: 8px 8px 8px 17px;
    font-family: "KanitLight",sans-serif;
    font-weight: 200; }

.p-gray {
  background-color: #f4f4f4; }
  .p-gray > th {
    padding: 14px 8px 14px 17px; }

/* /Schedule Block
================================================== */
/* 1.4 Coaches Block
================================================== */
.b-wrap-Coaches {
  background-image: url("../img/services/bg-img-coaches.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  padding-bottom: 99px; }
  .b-wrap-Coaches .text-wrap {
    margin-top: 88px;
    line-height: 1; }
    .b-wrap-Coaches .text-wrap p {
      font-family: "RobotoCondensedLight",sans-serif;
      font-size: 1.75em;
      margin-top: 10px;
      letter-spacing: 0.9px;
      font-weight: 100; }
  .b-wrap-Coaches .car-img-wrap {
    width: 255px;
    height: 255px;
    margin: 35px auto 0 auto;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .b-wrap-Coaches .car-text-wrap {
    line-height: 1;
    width: 90%;
    margin: auto; }
    .b-wrap-Coaches .car-text-wrap h4 {
      text-transform: uppercase;
      margin-top: 52px;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .b-wrap-Coaches .car-text-wrap h5 {
      font-family: "KanitLightItalic",sans-serif;
      font-size: 1.5em;
      margin-top: 7px;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .b-wrap-Coaches .car-text-wrap p {
      font-family: "KanitRegular",sans-serif;
      font-size: 1.125em;
      margin-top: 30px;
      line-height: 1.3;
      font-weight: 200; }
  .b-wrap-Coaches .car-btn-wrap {
    margin-top: 60px; }
    .b-wrap-Coaches .car-btn-wrap .btn {
      width: 180px; }
  .b-wrap-Coaches .carousel-wrap-coaches {
    position: relative; }
    .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
      .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div {
        position: absolute;
        top: 210px;
        left: -167px;
        font-size: 50px;
        color: #fff;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
        .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div:hover {
          color: #ff9e16; }
        .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div.owl-next {
          right: -167px;
          left: auto; }

.carousel-item-coaches:hover .car-text-wrap h4 {
  color: #ff9e16; }

.carousel-item-coaches:hover .car-text-wrap h5 {
  color: #fff; }

.coaches-animated1, .coaches-animated3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

/* /Coaches Block
================================================== */
/* 1.5 Recent News Block
================================================== */
.block-News .text-wrap {
  margin-top: 100px;
  margin-bottom: 30px; }

.block-News .news-animated2 {
  margin-left: 10px; }

.block-News .news-animated3 {
  margin-left: 20px; }

.block-News .carousel-item-news {
  height: 520px;
  width: 370px; }
  .block-News .carousel-item-news .car-img-wrap {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .block-News .carousel-item-news .car-date-wrap {
    display: block;
    position: relative;
    top: -50px;
    background-image: url("../img/block-o.png");
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 60px;
    width: 80px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .block-News .carousel-item-news .car-date-wrap p {
      font-family: "RobotoCondensedRegular",sans-serif;
      margin-left: 15px;
      padding-top: 5px;
      line-height: 1.5;
      color: #fff; }
  .block-News .carousel-item-news .car-text-wrap {
    position: relative;
    top: -45px; }
    .block-News .carousel-item-news .car-text-wrap p {
      font-family: "RobotoCondensedRegular",sans-serif;
      color: #000;
      font-size: 1.3125em;
      line-height: 1.4;
      letter-spacing: 0.5px;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }

.block-News .carousel-wrap-news {
  position: relative; }
  .block-News .carousel-wrap-news .owl-nav.disabled {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }
    .block-News .carousel-wrap-news .owl-nav.disabled > div {
      position: absolute;
      top: 231px;
      left: -150px;
      font-size: 48px;
      color: #000;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .block-News .carousel-wrap-news .owl-nav.disabled > div:hover {
        color: #ff9e16; }
      .block-News .carousel-wrap-news .owl-nav.disabled > div.owl-next {
        right: -150px;
        left: auto; }

.carousel-item-news:hover .car-img-wrap {
  opacity: 0.8; }

.carousel-item-news:hover .car-date-wrap {
  top: -100px; }

.carousel-item-news:hover .car-text-wrap p {
  color: #ff9e16; }

.news-animated2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.news-animated3 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

/* /Recent News Block
================================================== */
/* 1.6 Club Gallery Block
================================================== */
.block-Club-Gallery {
  padding: 0; }
  .block-Club-Gallery .gallery-m {
    padding: 0; }
  .block-Club-Gallery .text-wrap {
    line-height: 1.1; }
    .block-Club-Gallery .text-wrap p {
      margin-top: 0px;
      font-family: "RobotoCondensedRegular",sans-serif;
      font-size: 1.75em;
      letter-spacing: 0.9px; }
  .block-Club-Gallery .filters-by-category {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s; }
    .block-Club-Gallery .filters-by-category ul {
      margin: 25px 0 55px;
      padding: 0;
      list-style: none; }
      .block-Club-Gallery .filters-by-category ul li {
        display: inline-block; }
  .block-Club-Gallery .filters-by-category .btn {
    display: block;
    width: 205px;
    height: 65px;
    -webkit-transform: skew(20deg);
    -ms-transform: skew(20deg);
    transform: skew(20deg);
    margin: 5px auto;
    border: 2px solid #f4f4f4;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-right: 11px; }
    .block-Club-Gallery .filters-by-category .btn > span {
      display: inline-block;
      -webkit-transform: skew(-20deg);
      -ms-transform: skew(-20deg);
      transform: skew(-20deg);
      font-family: "RobotoCondensedRegular",sans-serif;
      font-size: 1.375em;
      margin-top: 10px;
      width: 178px;
      text-align: center;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .block-Club-Gallery .filters-by-category .btn.btn-link-g {
      background-color: #f4f4f4;
      color: #000; }
      .block-Club-Gallery .filters-by-category .btn.btn-link-g:hover {
        border: 2px solid #ff9e16; }
      .block-Club-Gallery .filters-by-category .btn.btn-link-g:active {
        -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
        transform: translateY(2px);
        background-color: #e5e5e5; }
        .block-Club-Gallery .filters-by-category .btn.btn-link-g:active > span {
          -webkit-transform: skew(0deg);
          -ms-transform: skew(0deg);
          transform: skew(0deg); }
    .block-Club-Gallery .filters-by-category .btn.btn-link-g.selected {
      border: 2px solid #ff9e16;
      background-color: #fff; }
  .block-Club-Gallery .gallery__item {
    position: relative;
    float: left;
    width: 24.99%;
    overflow: hidden;
    background: #071638; }
    .block-Club-Gallery .gallery__item .gallery__item__img {
      background-color: #303030;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .block-Club-Gallery .gallery__item .gallery__item__img img {
        width: 100%;
        opacity: 0.5;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
      .block-Club-Gallery .gallery__item .gallery__item__img .hover-link-g {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        color: #fff; }
        .block-Club-Gallery .gallery__item .gallery__item__img .hover-link-g .inside {
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          height: 100%; }
          .block-Club-Gallery .gallery__item .gallery__item__img .hover-link-g .inside i {
            font-size: 70px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
          .block-Club-Gallery .gallery__item .gallery__item__img .hover-link-g .inside p {
            font-size: 1.1875em;
            font-family: "KanitRegular",sans-serif;
            margin: 0 20px;
            position: absolute;
            bottom: 20px; }
      .block-Club-Gallery .gallery__item .gallery__item__img .block-play-wrap {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 1;
        color: #fff; }
        .block-Club-Gallery .gallery__item .gallery__item__img .block-play-wrap .b-play {
          position: relative;
          top: 50%;
          margin: 0 auto;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          width: 100px;
          height: 60px;
          -webkit-border-radius: 10px;
          border-radius: 10px;
          background-color: #141e1e;
          opacity: 0.8; }
          .block-Club-Gallery .gallery__item .gallery__item__img .block-play-wrap .b-play i {
            font-size: 30px;
            position: relative;
            top: 25%;
            -webkit-transform: translateY(-25%);
            -ms-transform: translateY(-25%);
            transform: translateY(-25%); }
  .block-Club-Gallery .btn-wrap-gallery .btn.btn-link-w {
    width: 235px;
    margin-top: 60px; }
    .block-Club-Gallery .btn-wrap-gallery .btn.btn-link-w span {
      margin-left: 0; }

.block-Club-Gallery .text-wrap p {
  font-family: "RobotoCondensedLight",sans-serif; }

.block-Club-Gallery .gallery__item:hover .gallery__item__img {
  background-color: #FFF; }
  .block-Club-Gallery .gallery__item:hover .gallery__item__img img {
    opacity: 1; }

.block-Club-Gallery .gallery__item:hover .hover-link-g {
  opacity: 1; }

.block-Club-Gallery .gallery__item:hover .block-play-wrap {
  display: none; }

.block-Club-Gallery .gallery-m {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

/* /Club Gallery Block
================================================== */
/* 1.7 Partners Block
================================================== */
.block-Partners {
  margin-bottom: 140px; }
  .block-Partners .text-wrap {
    margin-top: 130px;
    line-height: 1; }
    .block-Partners .text-wrap p {
      margin-top: 7px;
      font-family: "RobotoCondensedLight",sans-serif;
      font-size: 1.75em;
      letter-spacing: 0.9px; }
  .block-Partners .carousel-wrap-partners {
    margin-top: 20px;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s; }
    .block-Partners .carousel-wrap-partners .carousel-item-partners {
      margin: 15px; }
      .block-Partners .carousel-wrap-partners .carousel-item-partners a {
        display: block; }
        .block-Partners .carousel-wrap-partners .carousel-item-partners a img {
          max-width: 80%;
          margin-top: 20px;
          margin-left: auto;
          margin-right: auto;
          -webkit-filter: none;
          filter: none;
          -webkit-transition: all 0.4s ease;
          -o-transition: all 0.4s ease;
          transition: all 0.4s ease; }
          .block-Partners .carousel-wrap-partners .carousel-item-partners a img:hover {
            -webkit-filter: grayscale(100%);
            filter: grayscale(100%); }
        .block-Partners .carousel-wrap-partners .carousel-item-partners a .min-img1 {
          margin-top: -5px; }
        .block-Partners .carousel-wrap-partners .carousel-item-partners a .min-img2 {
          margin-top: -5px;
          width: 50%; }
  .block-Partners .carousel-wrap-partners {
    position: relative; }
    .block-Partners .carousel-wrap-partners .owl-nav.disabled {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
      .block-Partners .carousel-wrap-partners .owl-nav.disabled > div {
        position: absolute;
        top: 12px;
        left: -166px;
        font-size: 48px;
        color: #000;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
        .block-Partners .carousel-wrap-partners .owl-nav.disabled > div:hover {
          color: #ff9e16; }
        .block-Partners .carousel-wrap-partners .owl-nav.disabled > div.owl-next {
          right: -166px;
          left: auto; }
  .block-Partners .block-wrap-sponsor {
    background-image: url("../img/bg-img-sponsor.jpg");
    -webkit-background-size: cover center;
    background-size: cover center;
    background-repeat: no-repeat;
    margin: 127px 0px 0 0px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s; }
    .block-Partners .block-wrap-sponsor a {
      display: block;
      font-family: "RobotoCondensedRegular", sans-serif;
      font-weight: normal;
      font-size: 4.875em;
      letter-spacing: 1.3px;
      padding: 38px 40px;
      background-color: rgba(0, 0, 0, 0.4);
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .block-Partners .block-wrap-sponsor a:hover {
        color: #ff9e16;
        background-color: rgba(0, 0, 0, 0.1); }

/* /Partners Block
================================================== */
/* 1.8 Subscribe Block
================================================== */
.block-Subscribe .bg-subscribe1 {
  display: block;
  position: relative;
  background-image: url("../img/bg-img-subscribe1.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 100%; }
  .block-Subscribe .bg-subscribe1 .bg-dark1 {
    background-color: rgba(35, 35, 35, 0.9); }
  .block-Subscribe .bg-subscribe1 .text-wrap {
    padding-top: 55px;
    line-height: 1.2;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s; }
    .block-Subscribe .bg-subscribe1 .text-wrap p {
      display: block;
      width: 50%;
      margin: 20px auto 0 auto;
      line-height: 1.3;
      font-family: "KanitRegular",sans-serif;
      font-size: 1.125em; }
  .block-Subscribe .bg-subscribe1 .form-wrap {
    margin-top: 35px;
    padding-bottom: 10px;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s; }
    .block-Subscribe .bg-subscribe1 .form-wrap .form-control {
      display: block;
      width: 30%;
      height: 60px;
      -webkit-transform: skew(20deg);
      -ms-transform: skew(20deg);
      transform: skew(20deg);
      margin-left: 32.2%;
      border: 2px solid #fff;
      -webkit-border-radius: 10px;
      border-radius: 10px;
      color: #ff9e16;
      padding-left: 20px;
      -webkit-transition: all 0.5 ease;
      -o-transition: all 0.5 ease;
      transition: all 0.5 ease; }
      .block-Subscribe .bg-subscribe1 .form-wrap .form-control::-webkit-input-placeholder {
        display: inline-block;
        -webkit-transform: skew(-20deg);
        transform: skew(-20deg);
        outline: 0;
        opacity: 1; }
      .block-Subscribe .bg-subscribe1 .form-wrap .form-control::-ms-input-placeholder {
        display: inline-block;
        -ms-transform: skew(-20deg);
        transform: skew(-20deg);
        outline: 0;
        opacity: 1; }
      .block-Subscribe .bg-subscribe1 .form-wrap .form-control:-moz-placeholder {
        display: inline-block;
        transform: skew(-20deg);
        outline: 0;
        opacity: 1; }
      .block-Subscribe .bg-subscribe1 .form-wrap .form-control::-moz-placeholder {
        display: inline-block;
        transform: skew(-20deg);
        outline: 0;
        opacity: 1; }
      .block-Subscribe .bg-subscribe1 .form-wrap .form-control:focus {
        background-color: #FFF;
        border: 2px solid #ff9e16;
        padding-left: 20px; }
        .block-Subscribe .bg-subscribe1 .form-wrap .form-control:focus::-webkit-input-placeholder {
          display: inline-block;
          -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
          outline: 0;
          opacity: 0;
          padding-left: 20px; }
        .block-Subscribe .bg-subscribe1 .form-wrap .form-control:focus::-ms-input-placeholder {
          display: inline-block;
          -ms-transform: skew(-20deg);
          transform: skew(-20deg);
          outline: 0;
          opacity: 0;
          padding-left: 20px; }
    .block-Subscribe .bg-subscribe1 .form-wrap button {
      position: relative;
      top: -60px;
      left: 12.8%;
      width: 180px;
      height: 60px; }
      .block-Subscribe .bg-subscribe1 .form-wrap button span {
        margin: 0; }

.block-Subscribe .bg-subscribe2 {
  display: block;
  position: relative;
  background-image: url("../img/bg-img-subscribe2.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  max-width: 100%; }
  .block-Subscribe .bg-subscribe2 .bg-dark2 {
    background-color: rgba(89, 89, 89, 0.9);
    padding-top: 15px;
    padding-bottom: 15px; }
    .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network {
      margin: 55px 0 45px 0; }
      .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .icon-wrap a:hover i, .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .icon-wrap a:hover p {
        color: #fff; }
      .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .icon-wrap a i {
        font-size: 36px;
        color: #ff9e16;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
      .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .icon-wrap a p {
        font-family: "KanitRegular",sans-serif;
        font-size: 1.125em;
        letter-spacing: 0.3px;
        margin: 18px 0 25px 0;
        color: #ff9e16;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
      .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .facebook-if iframe {
        display: block;
        margin: 0 auto; }
      .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap {
        text-align: left;
        line-height: 1;
        margin-top: 33px; }
        .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .img-fb {
          margin-left: -15px; }
        .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .bbc {
          display: block;
          background-color: #323232;
          -webkit-border-radius: 2px;
          border-radius: 2px;
          padding-top: 20px; }
          .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .bbc .bef {
            display: block;
            position: relative; }
            .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .bbc .bef::before {
              content: '';
              position: absolute;
              bottom: -121px;
              left: 20px;
              height: 0;
              width: 0;
              border-bottom: 20px solid transparent;
              border-left: 20px solid #323232;
              border-top: 20px solid transparent; }
          .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .bbc .img-wrap {
            float: left;
            width: 14%;
            margin-left: 20px; }
          .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .bbc .content-text-wrap {
            float: left;
            width: 75%;
            padding-right: 10px; }
            .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .bbc .content-text-wrap:hover h6 {
              color: #ff9e16; }
            .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .bbc .content-text-wrap h6 {
              font-family: "KanitRegular",sans-serif;
              font-size: 0.875em;
              color: #949494;
              -webkit-transition: all 0.5s ease;
              -o-transition: all 0.5s ease;
              transition: all 0.5s ease; }
            .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .bbc .content-text-wrap p {
              margin: 10px 0 20px 0;
              line-height: 1.2;
              -webkit-transition: all 0.5s ease;
              -o-transition: all 0.5s ease;
              transition: all 0.5s ease; }
      .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .instafeed-wrap .instafeed {
        margin-top: 7px;
        margin-left: 19px; }
        .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .instafeed-wrap .instafeed a {
          display: block;
          position: relative;
          float: left;
          width: 117px;
          height: 117px;
          margin: 0 10px 10px 0; }
          .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .instafeed-wrap .instafeed a::after {
            content: "";
            display: block;
            position: absolute;
            z-index: 1;
            left: 0;
            top: 0;
            background-color: #ff9e16;
            height: 100%;
            width: 100%;
            opacity: 0;
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            transition: all 0.5s ease; }
          .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .instafeed-wrap .instafeed a:hover::after {
            opacity: 0.8; }
          .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .instafeed-wrap .instafeed a img {
            display: block;
            width: 100%;
            height: 100%; }

.subscribe-animated1 {
  margin-left: -10px !important; }

.subscribe-animated2 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.subscribe-animated3 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  margin-right: -10px !important; }

/* /Subscribe Block
================================================== */
/*******************************************************************
* 2. Footer
*******************************************************************/
footer .map-wrap {
  height: 420px; }
  footer .map-wrap #map {
    width: 100%;
    height: 100%;
    background-image: url("../img/map.jpg");
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    position: relative; }
    footer .map-wrap #map:hover i {
      color: #000; }
    footer .map-wrap #map i {
      color: #ff9e16;
      font-size: 50px;
      position: absolute;
      left: 40%;
      top: 33%;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }

footer .content-wrap-footer {
  height: 420px;
  background-color: #242424; }
  footer .content-wrap-footer::before {
    content: '';
    display: none;
    position: absolute;
    bottom: 0px;
    left: -85px;
    background-color: #242424;
    height: 420px;
    width: 220px;
    -webkit-transform: skew(-22deg);
    -ms-transform: skew(-22deg);
    transform: skew(-22deg); }
  footer .content-wrap-footer .content-footer {
    position: relative;
    top: 0;
    right: 0;
    padding-left: 30px; }
    footer .content-wrap-footer .content-footer .logo-footer a {
      display: block;
      width: 333px;
      padding-top: 55px; }
    footer .content-wrap-footer .content-footer .b-contacts-wrap {
      margin-top: 45px;
      line-height: 1.3; }
      footer .content-wrap-footer .content-footer .b-contacts-wrap p {
        margin: 0;
        font-family: "KanitRegular",sans-serif;
        font-size: 1.1875em; }
      footer .content-wrap-footer .content-footer .b-contacts-wrap .b-inner1 {
        float: left;
        width: 32%; }
        footer .content-wrap-footer .content-footer .b-contacts-wrap .b-inner1 a {
          font-family: "KanitRegular",sans-serif;
          text-decoration: underline;
          font-size: 1.1875em;
          -webkit-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
          transition: all 0.5s ease; }
          footer .content-wrap-footer .content-footer .b-contacts-wrap .b-inner1 a:hover .b-contacts-wrap .b-inner1 > a, footer .content-wrap-footer .content-footer .b-contacts-wrap .b-inner1 a :focus .b-contacts-wrap .b-inner1 > a {
            text-decoration: none;
            color: #ff9e16; }
      footer .content-wrap-footer .content-footer .b-contacts-wrap .b-inner2 {
        float: left;
        width: 49%; }
        footer .content-wrap-footer .content-footer .b-contacts-wrap .b-inner2 .number {
          font-family: "RobotoCondensedRegular",sans-serif;
          font-size: 2.5em;
          line-height: 1.2;
          letter-spacing: 2px; }
    footer .content-wrap-footer .content-footer .copyright {
      margin-top: 70px; }
      footer .content-wrap-footer .content-footer .copyright p {
        font-family: "KanitRegular",sans-serif; }

.email-link:hover {
  text-decoration: none;
  color: #ff9e16; }

/* end Footer
================================================== */
/*******************************************************************
* 3. Other pages
*******************************************************************/
/* 3.1 About
================================================== */
.about-content-block .car-item-bg1 {
  background-image: url("../img/about/bg-img-about-carousel.jpg");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top center; }

.about-content-block .car-item-bg2 {
  background-image: url("../img/carousel/Carousel1.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center; }

.about-content-block .car-item-bg3 {
  background-image: url("../img/carousel/Carousel3.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center; }

.about-content-block .carousel-item-about-players {
  width: 100%;
  height: 768px; }
  .about-content-block .carousel-item-about-players .car-content {
    position: relative;
    top: 263px; }
    .about-content-block .carousel-item-about-players .car-content h4 {
      color: #fff;
      line-height: 35px;
      letter-spacing: 0.6px;
      position: relative;
      top: -300px;
      opacity: 0;
      -webkit-transition: all 0.9s ease;
      -o-transition: all 0.9s ease;
      transition: all 0.9s ease;
      -webkit-transition-delay: 0.45s;
      -o-transition-delay: 0.45s;
      transition-delay: 0.45s; }
    .about-content-block .carousel-item-about-players .car-content h2 {
      line-height: 65px;
      position: relative;
      margin-top: 10px;
      bottom: -300px;
      opacity: 0;
      -webkit-transition: all 0.9s ease;
      -o-transition: all 0.9s ease;
      transition: all 0.9s ease; }
    .about-content-block .carousel-item-about-players .car-content p {
      color: #fff;
      font-size: 1.3125em;
      font-family: "RobotoCondensedRegular",sans-serif;
      width: 42%;
      margin: 50px auto 65px auto;
      line-height: 1.34;
      letter-spacing: 0.6px;
      position: relative;
      bottom: -300px;
      opacity: 0;
      -webkit-transition: all 0.9s ease;
      -o-transition: all 0.9s ease;
      transition: all 0.9s ease;
      -webkit-transition-delay: 0.25s;
      -o-transition-delay: 0.25s;
      transition-delay: 0.25s; }
    .about-content-block .carousel-item-about-players .car-content a {
      position: relative;
      width: 200px;
      -webkit-transform: skew(23deg);
      -ms-transform: skew(23deg);
      transform: skew(23deg);
      opacity: 0; }
      .about-content-block .carousel-item-about-players .car-content a > span {
        -webkit-transform: skew(-23deg);
        -ms-transform: skew(-23deg);
        transform: skew(-23deg);
        margin-left: 0px; }

.about-content-block .owl-item.active .carousel-item-about-players .car-content h4 {
  top: 0;
  opacity: 1; }

.about-content-block .owl-item.active .carousel-item-about-players .car-content h2 {
  bottom: 0;
  opacity: 1; }

.about-content-block .owl-item.active .carousel-item-about-players .car-content p {
  bottom: 0;
  opacity: 1; }

.about-content-block .owl-item.active .carousel-item-about-players .car-content a {
  opacity: 1; }

.about-content-block .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block; }
  .about-content-block .owl-nav > div {
    position: absolute;
    top: 350px;
    left: 50px;
    font-size: 47px;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .about-content-block .owl-nav > div:hover {
      color: #ff9e16; }
    .about-content-block .owl-nav > div.owl-next {
      right: 50px;
      left: auto; }

.about-content-block .carousel-item-about-sections.section1 {
  background-image: url("../img/about/bg-img-section1.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 658px;
  width: 100%; }

.about-content-block .carousel-item-about-sections.section2 {
  background-image: url("../img/about/bg-img-section2.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 658px;
  width: 100%; }

.about-content-block .carousel-item-about-sections.section3 {
  background-image: url("../img/about/bg-img-section3.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 658px;
  width: 100%; }

.about-content-block .carousel-item-about-sections a {
  display: block;
  height: 100%;
  width: 100%; }
  .about-content-block .carousel-item-about-sections a h3 {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    line-height: 40px;
    height: 60px;
    z-index: 2;
    color: #000;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .about-content-block .carousel-item-about-sections a h3 span {
      font-size: 0.4375em;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
  .about-content-block .carousel-item-about-sections a::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #FFF;
    height: 100%;
    width: 100%;
    opacity: 0.7;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }

.about-content-block .carousel-item-about-sections:hover a {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }
  .about-content-block .carousel-item-about-sections:hover a h3 {
    color: #ff9e16; }
    .about-content-block .carousel-item-about-sections:hover a h3 span {
      color: #fff; }
  .about-content-block .carousel-item-about-sections:hover a::after {
    opacity: 0; }

.about-info-block {
  margin-bottom: 115px; }
  .about-info-block .history-block {
    margin-top: 110px;
    height: 500px; }
    .about-info-block .history-block h2 {
      line-height: 1.4;
      letter-spacing: 0.9px;
      margin-left: -15px;
      margin-bottom: 40px; }
    .about-info-block .history-block .btn {
      width: 93%;
      margin: 0 -20px 15px 0;
      border: 2px solid #f4f4f4;
      background-color: #f4f4f4; }
      .about-info-block .history-block .btn > span {
        font-size: 1.75em;
        margin-top: 10px;
        margin-left: 40px;
        letter-spacing: 1px;
        color: #000; }
      .about-info-block .history-block .btn.on {
        border: 2px solid #ff9e16;
        background-color: #fff; }
    .about-info-block .history-block .info-spoiler2, .about-info-block .history-block .info-spoiler3 {
      display: none;
      margin-right: 35px;
      margin-left: 16px;
      text-align: justify; }
    .about-info-block .history-block .info-spoiler1 {
      margin-left: 16px;
      margin-right: 35px;
      text-align: justify; }
      .about-info-block .history-block .info-spoiler1 p {
        line-height: 1.5; }
  .about-info-block .infoCommittee-wrap {
    margin-left: 0; }

/* /About
================================================== */
/* 3.2 Coaches Block
================================================== */
body.Pages .block-Coaches {
  margin-bottom: 133px; }

/* /Coaches Block
================================================== */
/* 3.3 Statistic Block
================================================== */
.statistic-block {
  margin-bottom: 95px; }
  .statistic-block .text-wrap h2 {
    line-height: 65px;
    letter-spacing: 1px; }
  .statistic-block .text-wrap h4 {
    line-height: 40px;
    margin-top: 9px; }
  .statistic-block .statistic-wrap-content {
    border-right: 1px solid #f3f3f3;
    margin-top: 65px;
    height: 280px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .statistic-block .statistic-wrap-content .icon {
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      font-size: 100px;
      color: #ff9e16; }
    .statistic-block .statistic-wrap-content h3 {
      line-height: 33px;
      font-size: 3.125em;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .statistic-block .statistic-wrap-content h4 {
      line-height: 35px;
      letter-spacing: 1px;
      font-size: 1.75em;
      margin-top: 15px;
      padding-bottom: 25px; }
    .statistic-block .statistic-wrap-content:hover {
      background-color: #48494a; }
      .statistic-block .statistic-wrap-content:hover .icon {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg); }
        .statistic-block .statistic-wrap-content:hover .icon i {
          color: #fff; }
      .statistic-block .statistic-wrap-content:hover h3 {
        color: #ff9e16;
        margin-top: 15px; }
      .statistic-block .statistic-wrap-content:hover h4 {
        color: #fff; }

/* /Statistic Block
================================================== */
/* 3.4 Gallery Block
================================================== */
body.Pages .block-Club-Gallery {
  margin-bottom: 140px; }
  body.Pages .block-Club-Gallery .text-wrap h2 {
    line-height: 65px;
    letter-spacing: 1px; }
  body.Pages .block-Club-Gallery .text-wrap p {
    line-height: 40px;
    margin-top: 9px !important; }
  body.Pages .block-Club-Gallery .filters-by-category ul {
    margin-top: 20px; }

/* /Gallery Block
================================================== */
/* 3.5 Schedule
================================================== */
.schedule-block {
  margin-bottom: 139px;
  /* Partners-page-block */ }
  .schedule-block .text-wrap h2 {
    line-height: 65px;
    letter-spacing: 1px; }
  .schedule-block .text-wrap h4 {
    line-height: 40px;
    margin-top: 9px; }
  .schedule-block .links-wrap {
    margin-top: 60px;
    margin-bottom: 40px; }
    .schedule-block .links-wrap ul {
      list-style: none;
      text-align: center; }
      .schedule-block .links-wrap ul li {
        display: inline-block; }
        .schedule-block .links-wrap ul li .btn-link-g {
          background-color: #f4f4f4;
          border: 2px solid #f4f4f4;
          width: 190px;
          margin-right: 10px; }
          .schedule-block .links-wrap ul li .btn-link-g > span {
            color: #000;
            width: 180px;
            width: 175px; }
          .schedule-block .links-wrap ul li .btn-link-g.on {
            border: 2px solid #ff9e16;
            background-color: #fff; }
          .schedule-block .links-wrap ul li .btn-link-g:hover {
            border: 2px solid #ff9e16; }
  .schedule-block table {
    width: 100%;
    text-align: left;
    font-family: "KanitLight",sans-serif; }
    .schedule-block table tr th {
      font-weight: 200;
      padding: 9px 8px 5px 5px; }
      .schedule-block table tr th:first-child {
        padding-left: 30px !important;
        width: 20%; }
      .schedule-block table tr th:nth-child(2) {
        width: 19%; }
      .schedule-block table tr th:nth-child(3) {
        width: 34%; }
      .schedule-block table tr th:nth-child(4) {
        width: 16%; }
      .schedule-block table tr th:nth-child(5) {
        width: 11%; }
      .schedule-block table tr th img {
        height: 31px;
        width: 31px;
        margin-right: 20px; }
    .schedule-block table tr.p-gray th {
      padding: 12px 8px 12px 5px; }
    .schedule-block table tr.orange-text th {
      padding-bottom: 15px;
      font-family: "KanitMedium",sans-serif; }
  .schedule-block .btn-view {
    margin-top: 60px;
    background-color: #fff;
    border: 2px solid #ff9e16; }
    .schedule-block .btn-view > span {
      color: #000;
      margin-left: 35px;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .schedule-block .btn-view:hover {
      background-color: #ff9e16; }
      .schedule-block .btn-view:hover > span {
        color: #fff; }
  .schedule-block .table-2, .schedule-block .table-3 {
    display: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }

/* /Schedule
================================================== */
/* 3.6 Partners-page-block
================================================== */
.partners-page-block .text-wrap h2 {
  line-height: 65px;
  letter-spacing: 1px; }

.partners-page-block .text-wrap h4 {
  line-height: 40px;
  margin-top: 9px; }

.partners-page-block .sponsors-block {
  margin-top: 80px;
  margin-bottom: 130px; }
  .partners-page-block .sponsors-block .carousel-item-sponsor {
    margin: 0 10px; }
    .partners-page-block .sponsors-block .carousel-item-sponsor .car-img-wrap {
      height: 170px; }
      .partners-page-block .sponsors-block .carousel-item-sponsor .car-img-wrap .img-sponsor1 {
        height: 95%;
        width: 80%;
        position: relative;
        left: 15px; }
      .partners-page-block .sponsors-block .carousel-item-sponsor .car-img-wrap .img-sponsor2 {
        height: 73%;
        width: 72%;
        position: relative;
        top: 20px;
        left: 55px; }
      .partners-page-block .sponsors-block .carousel-item-sponsor .car-img-wrap .img-sponsor3 {
        width: 90%;
        position: relative;
        top: 15px;
        left: 20px; }
    .partners-page-block .sponsors-block .carousel-item-sponsor .car-text-wrap p {
      line-height: 1.45; }
    .partners-page-block .sponsors-block .carousel-item-sponsor .car-btn-wrap {
      margin: 40px auto 0 auto; }
      .partners-page-block .sponsors-block .carousel-item-sponsor .car-btn-wrap .btn {
        width: 225px !important; }
        .partners-page-block .sponsors-block .carousel-item-sponsor .car-btn-wrap .btn > span {
          margin-left: 10px; }
  .partners-page-block .sponsors-block .block-wrap-sponsor {
    background-image: url("../img/bg-img-sponsor.jpg");
    -webkit-background-size: cover center;
    background-size: cover center;
    background-repeat: no-repeat;
    margin: 143px 0px 0 0px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s; }
    .partners-page-block .sponsors-block .block-wrap-sponsor a {
      display: block;
      font-family: "RobotoCondensedRegular", sans-serif;
      font-weight: normal;
      font-size: 4.875em;
      letter-spacing: 1.3px;
      padding: 38px 40px;
      background-color: rgba(0, 0, 0, 0.4);
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .partners-page-block .sponsors-block .block-wrap-sponsor a:hover {
        color: #ff9e16;
        background-color: rgba(0, 0, 0, 0.1); }

.partners-page-block .meet-partners-block {
  margin-bottom: 140px; }
  .partners-page-block .meet-partners-block .all-partners-block-wrap {
    margin-top: 40px; }
    .partners-page-block .meet-partners-block .all-partners-block-wrap .img-wrap-partner {
      height: 225px;
      width: 100%;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .partners-page-block .meet-partners-block .all-partners-block-wrap .img-wrap-partner img {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-filter: none;
        filter: none;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
      .partners-page-block .meet-partners-block .all-partners-block-wrap .img-wrap-partner:hover img {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%); }
      .partners-page-block .meet-partners-block .all-partners-block-wrap .img-wrap-partner .img-hover-part {
        width: 170px;
        height: 58px; }
      .partners-page-block .meet-partners-block .all-partners-block-wrap .img-wrap-partner .img-hover-part2 {
        width: 220px; }

/* /Partners-page-block
================================================== */
/* 3.7  Contacts Page
================================================== */
#success, #error {
  display: none;
  height: 70px; }

#success {
  color: #2990d6; }

#error {
  color: #c0392b; }

.page-contacts-block {
  margin-bottom: 145px; }
  .page-contacts-block .text-wrap h2 {
    line-height: 65px;
    letter-spacing: 1px;
    margin-bottom: 45px; }
  .page-contacts-block .contact-info-wrap p {
    font-family: "KanitRegular",sans-serif !important;
    font-size: 1.125em;
    line-height: 1.4;
    margin-bottom: 22px; }
  .page-contacts-block .contact-info-wrap a {
    color: #ff9e16;
    font-family: "KanitRegular",sans-serif !important;
    text-decoration: underline; }
    .page-contacts-block .contact-info-wrap a:hover {
      color: #000; }
  .page-contacts-block .contact-info-wrap h3 {
    margin-bottom: 32px; }
  .page-contacts-block .contact-info-wrap .number-block {
    margin-top: 72px;
    margin-bottom: 50px; }
    .page-contacts-block .contact-info-wrap .number-block p {
      margin: 0; }
    .page-contacts-block .contact-info-wrap .number-block .number {
      font-family: "RobotoCondensedRegular",sans-serif !important;
      font-size: 2.75em;
      margin-top: 0;
      line-height: 45px; }
  .page-contacts-block .contact-info-wrap .icon-wrap p {
    margin: 0; }
  .page-contacts-block .contact-info-wrap .icon-wrap a {
    text-decoration: none; }
  .page-contacts-block .contact-info-wrap .icon-wrap .circle-border {
    display: inline-block;
    border: 2px solid #ff9e16;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    height: 54px;
    width: 54px;
    margin-top: 13px;
    margin-right: 10px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .page-contacts-block .contact-info-wrap .icon-wrap .circle-border:hover {
      border-color: #21201f;
      background-color: #21201f; }
      .page-contacts-block .contact-info-wrap .icon-wrap .circle-border:hover i {
        color: #fff; }
    .page-contacts-block .contact-info-wrap .icon-wrap .circle-border i {
      position: relative;
      top: 14px;
      left: 15px;
      color: #21201f;
      font-size: 20px;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
  .page-contacts-block .message-wrap {
    margin-left: -5px; }
    .page-contacts-block .message-wrap h3 {
      margin-bottom: 30px;
      width: 98%;
      text-align: center; }

.boxed-form .form-group {
  margin-bottom: 13px; }
  .boxed-form .form-group .form-control {
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000;
    padding: 15px;
    display: block;
    width: 98%;
    font-family: "RobotoCondensedLight",sans-serif;
    font-size: 1.25em;
    line-height: 25px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .boxed-form .form-group .form-control::-webkit-input-placeholder {
      color: #dbdbdb;
      opacity: 1; }
    .boxed-form .form-group .form-control:-moz-placeholder {
      color: #dbdbdb;
      opacity: 1; }
    .boxed-form .form-group .form-control::-moz-placeholder {
      color: #dbdbdb;
      opacity: 1; }
    .boxed-form .form-group .form-control:-ms-input-placeholder {
      color: #dbdbdb;
      opacity: 1; }
    .boxed-form .form-group .form-control:focus {
      border: 1px solid #ff9e16;
      outline: 0;
      -webkit-box-shadow: 0px 0px 8px 0px rgba(255, 126, 0, 0.56);
      box-shadow: 0px 0px 8px 0px rgba(255, 126, 0, 0.56); }
  .boxed-form .form-group textarea.form-control {
    width: 98%;
    height: 338px;
    margin-bottom: 40px; }

.boxed-form .btn {
  width: 250px;
  -webkit-transform: skew(23deg);
  -ms-transform: skew(23deg);
  transform: skew(23deg);
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-color: #FFF;
  margin-left: 8px; }
  .boxed-form .btn > span {
    -webkit-transform: skew(-23deg);
    -ms-transform: skew(-23deg);
    transform: skew(-23deg);
    margin-left: 0;
    margin-top: 0px; }
  .boxed-form .btn:hover {
    color: #fff;
    background-color: #ff9e16; }

/* /Contacts Page
================================================== */
/* 3.8  Blog-Posts
================================================== */
.block-posts .text-wrap h2 {
  line-height: 65px;
  letter-spacing: 1px; }

.block-posts .blog-post {
  margin-left: -15px;
  margin-right: -5px;
  margin-top: 73px; }
  .block-posts .blog-post .post-image {
    position: relative;
    margin-bottom: 20px; }
    .block-posts .blog-post .post-image a img {
      width: 100%;
      /*
	  height: 483px; 
	  */
	  }
    .block-posts .blog-post .post-image .post-video {
      height: 510px;
      padding-top: 30px; }
      .block-posts .blog-post .post-image .post-video iframe {
        border: none; }
    .block-posts .blog-post .post-image .post-img-carousel-wrap {
      padding-top: 27px; }
      .block-posts .blog-post .post-image .post-img-carousel-wrap .owl-nav.disabled {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: block; }
        .block-posts .blog-post .post-image .post-img-carousel-wrap .owl-nav.disabled > div {
          position: absolute;
          top: 235px;
          left: 23px;
          font-size: 47px;
          color: #fff;
          -webkit-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
          transition: all 0.5s ease; }
          .block-posts .blog-post .post-image .post-img-carousel-wrap .owl-nav.disabled > div:hover {
            color: #ff9e16; }
          .block-posts .blog-post .post-image .post-img-carousel-wrap .owl-nav.disabled > div.owl-next {
            right: 23px;
            left: auto; }
    .block-posts .blog-post .post-image .post-music {
      padding-top: 70px; }
      .block-posts .blog-post .post-image .post-music iframe {
        height: 159px;
        width: 100%;
        border: 0; }
    .block-posts .blog-post .post-image .blog-post .post-music object, .block-posts .blog-post .post-image .blog-post .post-music embed {
      width: 100%;
      height: auto;
      border: 0; }
  .block-posts .blog-post .post-meta {
    list-style: none;
    position: relative;
    padding: 0;
    font-family: "RobotoCondensedRegular",sans-serif;
    font-size: 1.375em;
    margin-top: 42px;
    letter-spacing: 1px;
    margin-bottom: 10px; }
    .block-posts .blog-post .post-meta li {
      display: inline-block;
      padding-right: 42px; }
    .block-posts .blog-post .post-meta .post-date {
      display: block;
      background-image: url("../img/block-o.png");
      background-repeat: no-repeat;
      background-position: cover;
      height: 60px;
      width: 80px;
      position: absolute;
      bottom: 50px;
      font-size: 0.75em;
      z-index: 2;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .block-posts .blog-post .post-meta .post-date span {
        margin-left: 10px;
        margin-top: 5px;
        line-height: 24px;
        display: block;
        letter-spacing: 0.4px;
        width: 100%;
        color: #fff; }
    .block-posts .blog-post .post-meta .post-message i {
      color: #ff9e16;
      position: relative;
      top: 5px;
      left: -4px; }
  .block-posts .blog-post .post-title {
    font-size: 3em;
    letter-spacing: 1px; }
    .block-posts .blog-post .post-title a {
      color: #000;
      font-family: "RobotoCondensedRegular", sans-serif; }
      .block-posts .blog-post .post-title a:hover {
        color: #ff9e16; }
  .block-posts .blog-post .post-teaser p {
    margin-top: 8px; }
  .block-posts .blog-post .post-teaser .inside {
    padding-left: 120px;
    position: relative; }
    .block-posts .blog-post .post-teaser .inside p {
      font-family: "KanitLightItalic",sans-serif; }
    .block-posts .blog-post .post-teaser .inside i {
      font-size: 69px;
      position: absolute;
      top: 0;
      left: 20px;
      color: #ff9e16; }
  .block-posts .blog-post .btn {
    margin-top: 35px;
    margin-left: 10px;
    width: 200px; }
  .block-posts .blog-post .post-meta.meta-bottom {
    margin-top: 23px; }
    .block-posts .blog-post .post-meta.meta-bottom .date-bottom {
      position: relative;
      bottom: 0;
      display: inline-block;
      margin-right: 17px; }

.block-posts .side-block {
  margin-top: 73px;
  margin-bottom: 90px;
  margin-left: 5px;
  font-family: "RobotoCondensedRegular", sans-serif; }
  .block-posts .side-block h3 {
    font-size: 1.75em;
    line-height: 20px;
    letter-spacing: 1px;
    margin-bottom: 35px; }
  .block-posts .side-block .calendar .calendar__header {
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-left: 3px;
    padding-bottom: 20px; }
  .block-posts .side-block .calendar .calendar__footer {
    padding: 14px 0 0 5px; }
    .block-posts .side-block .calendar .calendar__footer a {
      color: #000;
      font-family: "RobotoCondensedRegular",sans-serif;
      font-size: 0.9375em; }
  .block-posts .side-block .calendar table {
    background: #fff;
    border-collapse: collapse;
    color: #000;
    font-size: 1.125em;
    width: 100%;
    max-width: 350px; }
    .block-posts .side-block .calendar table tr th {
      padding: 3px 11px;
      margin: 1px;
      border-bottom: 2px solid #f3f3f3; }
    .block-posts .side-block .calendar table tr td {
      cursor: pointer;
      padding: 5px 11px;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .block-posts .side-block .calendar table tr td.selected {
        background-color: #000;
        color: #fff; }
      .block-posts .side-block .calendar table tr td:hover {
        background-color: #eee;
        color: #ff9e16; }

.block-posts .category-list {
  padding: 0;
  list-style: none; }
  .block-posts .category-list li {
    position: relative;
    padding: 9px 0 10px 35px;
    line-height: 20px; }
    .block-posts .category-list li a {
      color: #000;
      font-family: "RobotoCondensedRegular",sans-serif;
      font-size: 1.125em;
      letter-spacing: 0.4px;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .block-posts .category-list li a::after {
        content: "\e910";
        position: absolute;
        top: 11px;
        left: 2px;
        display: block;
        font-family: "Football";
        font-size: 15px;
        color: #ff9e16; }
      .block-posts .category-list li a:hover {
        color: #ff9e16; }

.block-posts .tags-list {
  list-style: none;
  margin-top: 30px;
  padding: 0; }
  .block-posts .tags-list li {
    display: inline-block;
    padding: 0;
    margin-bottom: 8px;
    margin-right: 5px; }
    .block-posts .tags-list li a {
      display: block;
      background-color: #f0f0f0;
      color: #000;
      line-height: 35px;
      padding: 0px 15px;
      font-family: "RobotoCondensedRegular",sans-serif;
      font-size: 1.125em;
      -webkit-border-radius: 2px;
      border-radius: 2px;
      -webkit-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      transition: all 0.4s ease; }
      .block-posts .tags-list li a:hover {
        color: #fff;
        background-color: #ff9e16; }

.side-block.pad-minus {
  margin-top: 30px;
  margin-bottom: 40px; }
  .side-block.pad-minus h3 {
    margin-bottom: 0; }
  .side-block.pad-minus .blog-post.post-preview {
    margin-left: 0;
    margin-top: 20px; }
    .side-block.pad-minus .blog-post.post-preview .post-image a img {
      height: 190px; }
    .side-block.pad-minus .blog-post.post-preview .post-meta {
      margin-bottom: 0; }
      .side-block.pad-minus .blog-post.post-preview .post-meta .post-date {
        bottom: 30px; }
    .side-block.pad-minus .blog-post.post-preview .post-title {
      font-size: 1.375em; }

.blog-post.no-post-img {
  margin-top: 100px; }
  .blog-post.no-post-img .post-meta {
    margin-bottom: 5px; }
  .blog-post.no-post-img .btn {
    margin-top: 50px; }

.blog-post.pad-top .post-image {
  padding-top: 28px; }

.btns-page-posts-wrap {
  margin: 100px 0 140px 10px; }
  .btns-page-posts-wrap .btn {
    width: 60px;
    height: 57px;
    display: inline-block;
    margin-right: 5px; }
    .btns-page-posts-wrap .btn > span {
      margin: 5px 24px; }
    .btns-page-posts-wrap .btn.active {
      background-color: #ff9e16; }
      .btns-page-posts-wrap .btn.active > span {
        color: #fff; }
  .btns-page-posts-wrap .side-block {
    margin-top: 73px; }

/* /Blog-Posts
================================================== */
/* 3.9 Block Blog-Post
================================================== */
.blog-post.page-post-home .border-bot-post {
  border-bottom: 3px solid #f3f3f3;
  padding-bottom: 95px;
  margin-top: 50px; }

.blog-post.page-post-home .post-teaser .inside {
  margin: 50px 0; }

.comments-block {
  margin-left: -15px;
  margin-top: 75px; }
  .comments-block .comment {
    margin: 45px 0 35px 0; }
    .comments-block .comment .userpic {
      width: 70px;
      height: 120px;
      float: left;
      margin-right: 30px;
      font-size: 70px;
      text-align: center;
      position: relative; }
      .comments-block .comment .userpic span {
        position: absolute;
        top: 0;
        left: 0;
        color: #ff9e16; }
    .comments-block .comment .text .meta {
      font-size: 1.375em;
      line-height: 27px; }
    .comments-block .comment .text p {
      line-height: 23px;
      margin-bottom: 0; }
  .comments-block .comment.replay {
    margin: 20px 0 30px 100px; }

.btns-page-posts-wrap.list-btns-page {
  margin: 95px 0 75px -5px; }

.form-comments {
  margin-bottom: 142px;
  margin-left: -15px; }
  .form-comments .boxed-form {
    margin-top: 30px; }
    .form-comments .boxed-form textarea.form-control {
      height: 257px; }

/* /Block Blog-Post
================================================== */

/*******************************************************************
* 4. Media
*******************************************************************/

/*==========  Desktop First Method  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1680px) {
  .t-black .wrap-block-player img {
    height: 723px;
    width: 740px;
    top: 100px;
    right: 0; }
  .block-Teams .b-hover-team:hover .oblique-block {
    background-color: #FFF;
    width: 175px; }
    .block-Teams .b-hover-team:hover .oblique-block i {
      color: #ff9e16; }
  .block-Teams .b-hover-team:hover h3 {
    color: #ff9e16; }
  .block-Teams .teams-content .b-inner-text {
    display: block;
    float: left;
    margin-left: 35px; }
    .block-Teams .teams-content .b-inner-text h3 {
      font-weight: 100;
      font-size: 2.5625em; }
    .block-Teams .teams-content .b-inner-text p {
      font-family: "KanitRegular",sans-serif;
      font-size: 0.90625em; }
  .block-Schedule {
    position: relative; }
    .block-Schedule .content-Schedule {
      margin-bottom: 60px; }
    .block-Schedule .player-wrap .player-img {
      height: 667px;
      -moz-height: 575px;
      position: absolute;
      top: 0;
      right: 0; }
  .infoCommittee-wrap h2 {
    margin-top: 60px; }
  .infoCommittee-wrap .inner-text {
    margin-bottom: 72px; }
  .infoCommittee-wrap .player-wrap .player-img {
    height: 687px; }
  .block-Subscribe .bg-subscribe1 .text-wrap p {
    width: 70%; } }

@media only screen and (max-width: 1460px) {
  .t-black .wrap-block-player img {
    height: 698px;
    width: 700px;
    top: 70px;
    right: -20px; }
  .infoClub-wrap {
    margin-top: 100px;
    margin-left: -19px;
    margin-bottom: 110px; } }

@media only screen and (max-width: 1440px) {
  .b-wrap1, .b-wrap2, .b-wrap3 {
    min-height: 460px; }
  .block-Teams .b-hover-team:hover .oblique-block {
    background-color: #FFF;
    width: 150px; }
  .block-Teams .teams-content .b-inner-content-wrap {
    display: block;
    margin-top: 60%; }
  .block-Teams .teams-content .oblin-block-img img {
    height: 100px;
    width: 117px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .block-Teams .teams-content .oblin-block-img i {
    top: 20px;
    left: 20px;
    font-size: 55px; }
  .block-Teams .teams-content .b-inner-text {
    margin-left: 10px; }
    .block-Teams .teams-content .b-inner-text h3 {
      font-weight: 100;
      line-height: 1.1;
      margin-top: 4px;
      margin-bottom: 0px;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .block-Teams .teams-content .b-inner-text p {
      font-family: "KanitRegular",sans-serif;
      font-size: 0.8125em;
      margin-top: 8px;
      margin-left: 1px;
      display: inline-block;
      line-height: 1.3; }
  .infoCommittee-wrap h2 {
    margin-top: 40px; }
  .infoCommittee-wrap .inner-text {
    margin-bottom: 42px; }
  .infoCommittee-wrap .player-wrap .player-img {
    height: 637px; }
  .block-Schedule {
    position: relative; }
    .block-Schedule .content-Schedule {
      margin-bottom: 140px; }
    .block-Schedule .player-wrap .player-img {
      height: 567px;
      -moz-height: 575px;
      position: absolute;
      top: 0;
      right: 0; }
    .block-Schedule h2 {
      color: #21201f; }
    .block-Schedule .link-wrap {
      margin: 10px 0; }
  .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div {
    position: absolute;
    top: 210px;
    left: -57px;
    font-size: 50px;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div:hover {
      color: #ff9e16; }
    .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div.owl-next {
      right: -57px;
      left: auto; }
  .block-News .carousel-wrap-news .owl-nav.disabled > div {
    position: absolute;
    top: 180px;
    left: -57px;
    font-size: 48px;
    color: #000;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .block-News .carousel-wrap-news .owl-nav.disabled > div:hover {
      color: #ff9e16; }
    .block-News .carousel-wrap-news .owl-nav.disabled > div.owl-next {
      right: -57px;
      left: auto; }
  .block-Club-Gallery .gallery__item .gallery__item__img .hover-link-g .inside p {
    font-size: 1em; }
  .block-Partners .carousel-wrap-partners {
    position: relative; }
    .block-Partners .carousel-wrap-partners .owl-nav.disabled {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
      .block-Partners .carousel-wrap-partners .owl-nav.disabled > div {
        position: absolute;
        top: 12px;
        left: -57px;
        font-size: 48px;
        color: #000;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
        .block-Partners .carousel-wrap-partners .owl-nav.disabled > div:hover {
          color: #ff9e16; }
        .block-Partners .carousel-wrap-partners .owl-nav.disabled > div.owl-next {
          right: -57px;
          left: auto; } }

/* About-Page */
.about-content-block .carousel-item-about-sections.section1, .about-content-block .carousel-item-about-sections.section2, .about-content-block .carousel-item-about-sections.section3 {
  height: 500px; }

@media only screen and (max-width: 1360px) {
  .t-black .wrap-block-player img {
    height: 698px;
    width: 700px;
    top: 70px;
    right: -70px; }
  .infoCommittee-wrap h2 {
    text-align: center; }
  .infoCommittee-wrap .inner-text {
    width: 100%; }
  .infoCommittee-wrap .player-wrap .player-img {
    display: none; }
  .block-Schedule {
    text-align: center; }
    .block-Schedule .player-wrap .player-img {
      display: none !important; }
    .block-Schedule .link-wrap {
      display: inline-block; }
    .block-Schedule .content-Schedule .table-Schedule {
      margin: 0 auto 0 auto;
      width: 80%; } }

@media only screen and (max-width: 1280px) {
  .t-black .wrap-block-player img {
    height: 698px;
    width: 700px;
    top: 70px;
    right: -100px; }
  .block-Teams .b-hover-team:hover .oblique-block {
    background-color: #FFF;
    width: 150px; }
  .block-Teams .teams-content .b-inner-content-wrap {
    display: block;
    margin-top: 60%; }
  .block-Teams .teams-content .oblique-block {
    height: 100px;
    width: 142px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .block-Teams .teams-content .oblique-block > span {
      display: inline-block;
      -webkit-transform: skew(23deg);
      -ms-transform: skew(23deg);
      transform: skew(23deg); }
      .block-Teams .teams-content .oblique-block > span i {
        position: relative;
        display: block;
        margin: 20px 0 0 54px;
        font-size: 55px;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
  .block-Teams .teams-content .b-inner-text {
    margin-left: 65px;
    width: 70%; }
    .block-Teams .teams-content .b-inner-text h3 {
      font-weight: 100;
      line-height: 1.1;
      margin-top: 4px;
      margin-bottom: 0px;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .block-Teams .teams-content .b-inner-text p {
      font-family: "KanitRegular",sans-serif;
      font-size: 0.875em;
      margin-top: 8px;
      margin-left: 1px;
      display: inline-block;
      line-height: 1.3; }
  .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div {
    position: absolute;
    top: 210px;
    left: -37px;
    font-size: 50px;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div:hover {
      color: #ff9e16; }
    .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div.owl-next {
      right: -37px;
      left: auto; }
  .block-News .text-wrap {
    margin-top: 100px;
    margin-bottom: 25px; }
  .block-News .carousel-item-news {
    height: auto;
    width: auto;
    padding-left: 5px; }
  .block-News .carousel-wrap-news .owl-nav.disabled > div {
    position: absolute;
    top: 180px;
    left: -37px;
    font-size: 48px;
    color: #000;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .block-News .carousel-wrap-news .owl-nav.disabled > div:hover {
      color: #ff9e16; }
    .block-News .carousel-wrap-news .owl-nav.disabled > div.owl-next {
      right: -37px;
      left: auto; }
  .block-Partners .carousel-wrap-partners {
    position: relative; }
    .block-Partners .carousel-wrap-partners .owl-nav.disabled {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
      .block-Partners .carousel-wrap-partners .owl-nav.disabled > div {
        position: absolute;
        top: 12px;
        left: -37px;
        font-size: 48px;
        color: #000;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
        .block-Partners .carousel-wrap-partners .owl-nav.disabled > div:hover {
          color: #ff9e16; }
        .block-Partners .carousel-wrap-partners .owl-nav.disabled > div.owl-next {
          right: -37px;
          left: auto; } }

/* About-Page */
.about-content-block .carousel-item-about-players {
  height: 600px; }
  .about-content-block .carousel-item-about-players .car-content {
    top: 120px; }

.about-content-block .owl-nav > div {
  top: 250px;
  font-size: 37px; }

.about-content-block .carousel-item-about-sections.section1, .about-content-block .carousel-item-about-sections.section2, .about-content-block .carousel-item-about-sections.section3 {
  height: 400px; }

@media only screen and (max-width: 1200px) {
  .infoClub-wrap h2, .infoClub-wrap h4 {
    text-align: center; }
  .infoClub-wrap .btn-wrap {
    margin: 40px auto; }
  .nav-line > ul > li > a {
    padding: 20px 9px !important; }
  .carousel-content .text-wrap {
    position: relative;
    top: 40%; }
    .carousel-content .text-wrap h2 {
      margin-top: 30px;
      font-size: 5em; }
    .carousel-content .text-wrap .btn-wrap {
      position: relative;
      top: 30%; }
  .bg-subscribe2 .b-wrap-soc-network .facebook-if, .bg-subscribe2 .b-wrap-soc-network .instafeed {
    display: inline-block;
    margin: 0 auto; }
  .subscribe-animated1 {
    margin-left: 0 !important; }
  .bef::before {
    opacity: 0; }
  .sponsors-block .carousel-wrap-sponsors .owl-dots {
    display: block;
    margin-top: 20px; }
    .sponsors-block .carousel-wrap-sponsors .owl-dots .owl-dot {
      width: 8px;
      height: 8px;
      background-color: gray;
      -webkit-border-radius: 50px;
      border-radius: 50px;
      display: inline-block;
      margin: 4px; }
      .sponsors-block .carousel-wrap-sponsors .owl-dots .owl-dot.active {
        background-color: #ff9e16; }
  .block-posts .side-block .calendar table tr td {
    padding: 5px 0; } }

@media only screen and (max-width: 1025px) {
  .block {
    margin-bottom: 70px; }
  .infoCommittee-wrap h2 {
    margin-top: 0; }
  .infoCommittee-wrap .inner-text {
    margin-left: 0; }
  .block-Schedule {
    margin-top: 40px; }
    .block-Schedule .content-Schedule {
      margin-bottom: 40px; }
  .infoClub-wrap {
    margin-top: 40px; }
    .infoClub-wrap h2, .infoClub-wrap h4 {
      text-align: center; }
    .infoClub-wrap .btn-wrap {
      margin: 40px auto 0 auto;
      display: block; }
  .b-wrap-Coaches {
    padding-bottom: 70px; }
    .b-wrap-Coaches .text-wrap {
      margin-top: 40px; }
  .infoCommittee-wrap {
    margin-top: 45px; }
  .block.block-News {
    margin-bottom: 10px; }
  .block-News .text-wrap {
    margin-top: 40px; }
  .block-News .carousel-item-news {
    height: auto;
    width: auto;
    padding-left: 5px;
    margin: 0 25px; }
  .block-News .carousel-wrap-news .owl-nav.disabled > div {
    position: absolute;
    top: 180px;
    left: -20px;
    font-size: 48px;
    color: #000;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .block-News .carousel-wrap-news .owl-nav.disabled > div:hover {
      color: #ff9e16; }
    .block-News .carousel-wrap-news .owl-nav.disabled > div.owl-next {
      right: -20px;
      left: auto; }
  .block-Partners .text-wrap {
    margin-top: 60px; }
  footer .content-wrap-footer .content-footer .b-contacts-wrap .b-inner1 {
    float: left;
    width: 40%; }
  footer .content-wrap-footer .content-footer .b-contacts-wrap .b-inner2 {
    float: left;
    width: 49%; }
    footer .content-wrap-footer .content-footer .b-contacts-wrap .b-inner2 .number {
      font-family: "RobotoCondensedRegular",sans-serif;
      font-size: 2em;
      line-height: 1.2;
      letter-spacing: 2px; }
  .block-Teams .b-hover-team:hover .oblique-block {
    background-color: #FFF;
    width: 150px; }
  .block-Teams .teams-content .b-inner-content-wrap {
    display: block;
    margin-top: 65%; }
  /* About-Page */
  body.Pages .nav-line > ul > li > a {
    padding: 20px 9px !important; }
  body.Pages .carousel-wrap-about-sections .owl-dots {
    display: block;
    margin-top: 10px; }
    body.Pages .carousel-wrap-about-sections .owl-dots .owl-dot {
      width: 8px;
      height: 8px;
      background-color: gray;
      -webkit-border-radius: 50px;
      border-radius: 50px;
      display: inline-block;
      margin: 4px; }
      body.Pages .carousel-wrap-about-sections .owl-dots .owl-dot.active {
        background-color: #ff9e16; } }

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  .Pages .infoCommittee-wrap {
    margin-top: 60px; }
  .logo {
    margin: 0 auto; }
  .carousel-content .text-wrap {
    position: relative;
    top: 32%; }
    .carousel-content .text-wrap h2 {
      margin-top: 10px;
      font-size: 3.625em; }
    .carousel-content .text-wrap p {
      font-size: 1.125em; }
  .carousel-content .btn-wrap {
    position: relative;
    top: 34%; }
  .block-wrap-sponsor a {
    font-size: 3.125em !important; }
  .block-Subscribe .bg-subscribe1 .text-wrap p {
    width: 80%; }
  .form-wrap {
    padding-bottom: 30px !important; }
    .form-wrap .form-control {
      width: 50% !important;
      margin-left: 25% !important; }
    .form-wrap button {
      position: relative;
      top: 10px !important;
      left: 1% !important; }
  .bg-subscribe2 .b-wrap-soc-network .instafeed {
    margin-left: 0 !important; }
    .bg-subscribe2 .b-wrap-soc-network .instafeed a {
      width: 110px !important;
      height: 110px !important; }
  footer .map-wrap #map i {
    left: 43%;
    top: 33%; }
  footer .logo-footer a {
    margin: 0 auto; }
  footer .b-contacts-wrap, footer .copyright {
    text-align: center; }
  footer .b-contacts-wrap .b-inner1 {
    float: left;
    width: 49% !important; }
  footer .b-contacts-wrap .b-inner2 {
    float: left;
    width: 49% !important; }
  .bgc-header {
    height: 155px; }
  .breadcrumbs .breadcrumb {
    margin-bottom: 30px; }
  .welcome .text-welcome {
    margin-bottom: 20px; }
    .welcome .text-welcome p {
      padding: 0 !important; }
  .about-info-block {
    margin-bottom: 40px; }
    .about-info-block .history-block {
      margin-top: 40px; }
      .about-info-block .history-block h2 {
        text-align: center; }
  /* Page Teams-stats */
  .teams-stats-block .info-teams-stats-item .header-text {
    margin: 0 auto 40px auto;
    text-align: center; }
  .teams-stats-block .players-list-item a {
    display: block !important;
    width: 100px;
    margin: 0 auto !important; }
  .teams-stats-block .info-teams-stats-item .players-list-item table tr th:first-child {
    padding-left: 10px; }
  body.Pages .block-Coaches {
    margin-bottom: 50px; }
  .statistic-block {
    margin-bottom: 40px; }
    .statistic-block .statistic-wrap-content {
      border-right: none; }
  body.Pages .block-Club-Gallery {
    margin-bottom: 40px; }
  .block-posts .blog-post .post-image .post-music {
    padding-top: 0; }
  .btns-page-posts-wrap {
    text-align: center;
    display: block;
    margin: 60px auto; }
  .block-posts .blog-post .btn {
    display: block;
    margin: 35px auto 0 auto; }
  .block-posts .side-block {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 50px; }
    .block-posts .side-block .calendar table {
      margin: 0 auto; }
    .block-posts .side-block .category-list {
      display: inline-block; }
  .blog-post.page-post-home .border-bot-post {
    padding-bottom: 30px; }
  .comments-block {
    margin-top: 30px; }
  .partners-page-block .sponsors-block {
    margin-top: 30px;
    margin-bottom: 45px; }
    .partners-page-block .sponsors-block .block-wrap-sponsor {
      margin-top: 50px; }
  .partners-page-block .meet-partners-block {
    margin-bottom: 40px; }
  /* Contacts-Page */
  .page-contacts-block {
    margin-bottom: 60px; }
    .page-contacts-block .message-wrap {
      text-align: center !important; }
      .page-contacts-block .message-wrap .form-group .form-control {
        width: 100%; }
      .page-contacts-block .message-wrap .form-group textarea.form-control {
        width: 100%;
        height: 250px; }
      .page-contacts-block .message-wrap .btn {
        margin: 0 auto; }
    .page-contacts-block .contact-info-wrap {
      text-align: center; }
      .page-contacts-block .contact-info-wrap h3 {
        margin-top: 40px; }
      .page-contacts-block .contact-info-wrap .icon-wrap a {
        text-align: left; }
  /* Blog */
  .block-posts .blog-post {
    margin-left: 0;
    margin-right: 0; }
  .side-block.pad-minus .blog-post.post-preview .post-image a img {
    height: 483px; }
  .comments-block {
    margin-left: 0; }
    .comments-block .comment .userpic {
      height: 160px; }
  .btns-page-posts-wrap.list-btns-page {
    margin: 85px auto 50px auto; }
  .boxed-form .form-group {
    margin-bottom: 13px; }
    .boxed-form .form-group .form-control {
      width: 100%; }
    .boxed-form .form-group textarea.form-control {
      width: 100%;
      height: 200px; }
  .boxed-form .btn {
    width: 250px;
    -webkit-transform: skew(23deg);
    -ms-transform: skew(23deg);
    transform: skew(23deg);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-color: #FFF;
    margin-left: 8px; }
    .boxed-form .btn > span {
      -webkit-transform: skew(-23deg);
      -ms-transform: skew(-23deg);
      transform: skew(-23deg);
      margin-left: 0;
      margin-top: 0px; }
  .form-comments {
    margin-bottom: 60px;
    margin-left: 0; } }

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .Pages .schedule-block .table-wrap {
    overflow-y: hidden;
    overflow-x: auto;
    border: 1px solid #ddd;
    margin: 0 10px; }
    .Pages .schedule-block .table-wrap table {
      width: 730px; }
  .carousel-wrap-teams .owl-nav.disabled {
    display: block; }
    .carousel-wrap-teams .owl-nav.disabled > div {
      position: absolute;
      top: 240px;
      left: 20px;
      font-size: 48px;
      color: #fff;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .carousel-wrap-teams .owl-nav.disabled > div:hover {
        color: #ff9e16; }
      .carousel-wrap-teams .owl-nav.disabled > div.owl-next {
        right: 20px;
        left: auto; }
  .block-Teams .teams-content .b-inner-text {
    width: 50%; }
  .carousel-content .text-wrap {
    position: relative;
    top: 27%; }
    .carousel-content .text-wrap h2 {
      margin-top: 10px;
      font-size: 3em; }
    .carousel-content .text-wrap p {
      font-size: 1em; }
  .carousel-content .btn-wrap {
    position: relative;
    top: 32%; }
  .logo {
    margin: 0 auto;
    width: 250px; }
  .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div {
    position: absolute;
    top: 220px;
    left: 40px;
    font-size: 34px; }
    .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div.owl-next {
      right: 40px;
      left: auto; }
  .block-News .carousel-wrap-news .owl-nav.disabled > div {
    position: absolute;
    top: 130px;
    left: 20px;
    font-size: 48px;
    color: #000;
    background-color: #FFF;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .block-News .carousel-wrap-news .owl-nav.disabled > div:hover {
      color: #ff9e16; }
    .block-News .carousel-wrap-news .owl-nav.disabled > div.owl-next {
      right: 20px;
      left: auto; }
  .block-Partners .carousel-wrap-partners .owl-nav.disabled > div {
    top: 37px;
    left: 10px;
    font-size: 38px; }
    .block-Partners .carousel-wrap-partners .owl-nav.disabled > div.owl-next {
      right: 10px; }
  .infoClub-wrap {
    margin-top: 65px;
    margin-left: 0px; }
  .carousel-content .text-wrap {
    position: relative;
    top: 41%; }
    .carousel-content .text-wrap h2 {
      line-height: 0.9;
      position: relative;
      bottom: 0px;
      opacity: 1; }
    .carousel-content .text-wrap p {
      font-size: 1.5em;
      margin: 14px 0;
      position: relative;
      bottom: 0px;
      opacity: 1; }
  .carousel-content .btn-wrap {
    position: relative;
    top: 46%;
    text-align: center;
    left: 15%;
    width: 70%;
    opacity: 1; }
  .bg-subscribe2 .b-wrap-soc-network .instafeed {
    display: block;
    width: 360px !important;
    margin: 0 auto !important; }
  /* About-Page */
  .bgc-header {
    height: 135px; }
  .about-content-block .carousel-item-about-players {
    height: 500px; }
    .about-content-block .carousel-item-about-players .car-content {
      top: 80px; }
      .about-content-block .carousel-item-about-players .car-content h4 {
        top: 0 !important;
        opacity: 1 !important;
        font-size: 1.5625em; }
      .about-content-block .carousel-item-about-players .car-content h2 {
        bottom: 0 !important;
        opacity: 1 !important;
        font-size: 4.0625em; }
      .about-content-block .carousel-item-about-players .car-content p {
        bottom: 0 !important;
        opacity: 1 !important;
        font-size: 1em;
        width: 55%; }
      .about-content-block .carousel-item-about-players .car-content a {
        opacity: 1 !important;
        width: 170px;
        height: 55px; }
        .about-content-block .carousel-item-about-players .car-content a > span {
          font-size: 1em; }
  .about-info-block .history-block, .infoCommittee-wrap {
    margin-top: 60px; }
  /* Teams-stats */
  body.Pages .carousel-wrap-coaches .owl-nav.disabled > div {
    position: absolute;
    top: 220px;
    left: 8px;
    font-size: 34px; }
    body.Pages .carousel-wrap-coaches .owl-nav.disabled > div.owl-next {
      right: 8px;
      left: auto; }
  /* Schedule Block */
  .schedule-block table {
    width: 95%;
    margin: 0 auto; }
    .schedule-block table tr th {
      padding: 9px 8px 5px 5px; }
      .schedule-block table tr th:first-child {
        padding-left: 30px !important;
        width: 25%; }
      .schedule-block table tr th:nth-child(2) {
        width: 15%; }
      .schedule-block table tr th:nth-child(3) {
        width: 35%; }
      .schedule-block table tr th:nth-child(4) {
        width: 10%; }
      .schedule-block table tr th:nth-child(5) {
        width: 0%; }
  /* blog */
  .block-posts .blog-post .post-image a img {
    height: 340px; }
  .block-posts .blog-post .post-image .post-video {
    height: 380px; }
  .side-block.pad-minus .blog-post.post-preview .post-image a img {
    height: 340px; }
  .block-posts .blog-post .post-img-carousel-wrap .owl-nav.disabled > div {
    top: 155px !important; }
  /*Disable Animation on Mobile Devices*/
  .animated {
    /*CSS transitions*/
    -o-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
    /*CSS transforms*/
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    /*CSS animations*/
    -webkit-animation: none !important;
    animation: none !important; } }

@media only screen and (max-width: 531px) {
  .carousel-wrap-teams .owl-nav.disabled {
    display: block; }
    .carousel-wrap-teams .owl-nav.disabled > div {
      position: absolute;
      top: 180px;
      left: 20px;
      font-size: 48px;
      color: #fff;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .carousel-wrap-teams .owl-nav.disabled > div:hover {
        color: #ff9e16; }
      .carousel-wrap-teams .owl-nav.disabled > div.owl-next {
        right: 20px;
        left: auto; }
  .block-Schedule .content-Schedule {
    margin-bottom: 123px;
    height: 454px; }
  /* Schedule Block */
  .schedule-block .links-wrap ul {
    padding-left: 7px; }
    .schedule-block .links-wrap ul li {
      margin-bottom: 10px; }
      .schedule-block .links-wrap ul li .btn {
        width: 130px;
        height: 45px; }
        .schedule-block .links-wrap ul li .btn > span {
          width: 120px;
          font-size: 1em;
          margin-left: 2px;
          margin-top: 8px; }
  .schedule-block table {
    font-size: 0.875em; }
    .schedule-block table tr th {
      padding: 9px 8px 5px 5px; }
      .schedule-block table tr th:first-child {
        padding-left: 10px !important; }
  .btn-view {
    width: 130px;
    height: 45px; }
    .btn-view > span {
      width: 120px;
      font-size: 1em;
      margin-left: 20px !important;
      margin-top: 8px; }
  .partners-page-block .sponsors-block {
    margin-bottom: 50px; }
    .partners-page-block .sponsors-block .block-wrap-sponsor {
      margin-top: 50px; }
      .partners-page-block .sponsors-block .block-wrap-sponsor a {
        font-size: 1.75em !important;
        letter-spacing: 0.9px;
        line-height: 1.3;
        padding: 21px 0; }
  footer .map-wrap #map i {
    left: 35% !important; } }

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  .block-Schedule .video-block .wrap-video {
    height: 240px; }
  h2 {
    font-size: 3.125em; }
  h4 {
    font-size: 1.25em !important; }
  .mini-menu {
    top: 30px;
    left: 15px; }
  .logo {
    width: 235px !important;
    margin-top: 23px; }
  .mob-view h1 {
    font-size: 2.375em !important;
    position: absolute;
    top: -40px;
    left: -5px; }
  .mob-view p {
    font-size: 0.875em;
    position: absolute;
    top: -35px;
    right: 10px;
    width: 50%;
    line-height: 1; }
  #mainCarouselWrapper {
    background-color: #2a2a2a; }
    #mainCarouselWrapper .carousel-item {
      margin-top: 135px;
      height: 155px;
      width: 100%; }
      #mainCarouselWrapper .carousel-item .img-holder1, #mainCarouselWrapper .carousel-item .img-holder2, #mainCarouselWrapper .carousel-item .img-holder3 {
        height: 100%; }
      #mainCarouselWrapper .carousel-item .carousel-content .text-wrap {
        position: relative;
        top: 50%; }
        #mainCarouselWrapper .carousel-item .carousel-content .text-wrap h2 {
          margin-top: 10px;
          font-size: 1.5em;
          line-height: 1.1; }
        #mainCarouselWrapper .carousel-item .carousel-content .text-wrap p {
          font-size: 0.875em;
          letter-spacing: 1.2px;
          line-height: 1.3;
          margin: 0 0 14px 0; }
      #mainCarouselWrapper .carousel-item .carousel-content .btn-wrap {
        position: relative;
        top: 47% !important; }
        #mainCarouselWrapper .carousel-item .carousel-content .btn-wrap .btn {
          display: block;
          width: 75px !important;
          height: 25px !important;
          -webkit-border-radius: 5px !important;
          border-radius: 5px !important; }
          #mainCarouselWrapper .carousel-item .carousel-content .btn-wrap .btn > span {
            font-size: 0.625em;
            margin: 0 !important;
            position: relative;
            top: -5px; }
    #mainCarouselWrapper .carousel-eq {
      position: relative; }
      #mainCarouselWrapper .carousel-eq .owl-nav > div {
        position: absolute;
        top: 200px;
        left: 15px;
        font-size: 20px; }
        #mainCarouselWrapper .carousel-eq .owl-nav > div.owl-next {
          right: 15px;
          left: auto; }
  .block.t-black {
    margin-bottom: 30px; }
  .infoClub-wrap {
    margin-top: 50px; }
    .infoClub-wrap h2 {
      font-size: 2.375em;
      line-height: 1;
      letter-spacing: 1.05px; }
    .infoClub-wrap h4 {
      margin-top: 5px;
      margin-left: -3px;
      letter-spacing: 0.2px;
      font-size: 1.75em; }
    .infoClub-wrap .inner-text {
      margin-top: -5px;
      margin-left: 0; }
      .infoClub-wrap .inner-text p {
        line-height: 1.46;
        font-size: 0.875em; }
      .infoClub-wrap .inner-text > p:first-child {
        font-family: "KanitLightItalic",sans-serif;
        margin-bottom: 20px;
        line-height: 1.4; }
    .infoClub-wrap .btn-wrap {
      margin: 10px auto 0 auto;
      display: block; }
      .infoClub-wrap .btn-wrap .btn {
        width: 140px;
        height: 50px; }
        .infoClub-wrap .btn-wrap .btn > span {
          margin-top: 5px;
          margin-left: 25px;
          font-size: 1.25em; }
  .infoCommittee-wrap {
    margin-top: 60px;
    margin-left: -3px; }
    .infoCommittee-wrap h2 {
      font-size: 2.375em;
      line-height: 1;
      letter-spacing: 1.05px; }
    .infoCommittee-wrap .inner-text {
      margin-top: 10px; }
      .infoCommittee-wrap .inner-text .line-block {
        border-bottom: 3px solid #f3f3f3; }
        .infoCommittee-wrap .inner-text .line-block:last-child {
          border-bottom: none; }
        .infoCommittee-wrap .inner-text .line-block p {
          display: inline-block;
          margin: 12px 0 15px 2px;
          font-size: 0.8125em;
          font-weight: 600;
          color: #21201f;
          letter-spacing: 0.4px; }
          .infoCommittee-wrap .inner-text .line-block p:first-child {
            font-family: "KanitLightItalic",sans-serif;
            font-weight: 200;
            width: 49%; }
          .infoCommittee-wrap .inner-text .line-block p:last-child {
            width: 45.5%; }
  .b-hover-team:hover .oblique-block {
    background-color: #FFF;
    width: 130px !important; }
  .block-Teams .t-wrap {
    text-align: center;
    line-height: 1; }
    .block-Teams .t-wrap h2 {
      font-size: 2.375em;
      line-height: 1;
      letter-spacing: 1.05px; }
    .block-Teams .t-wrap h4 {
      margin: 10px 0 40px 0;
      letter-spacing: 0.2px;
      font-size: 1.75em; }
  .block-Teams .teams-content .b-inner-content-wrap {
    margin-top: 64.5%; }
  .block-Teams .teams-content .oblin-block-img img {
    height: 82px;
    width: 95px; }
  .block-Teams .teams-content .oblin-block-img i {
    font-size: 47px;
    top: 15px;
    left: 15px; }
  .block-Teams .teams-content .b-inner-text {
    display: block;
    float: left;
    width: 200px;
    margin-left: 15px; }
    .block-Teams .teams-content .b-inner-text h3 {
      font-weight: 100;
      line-height: 0.84;
      margin-top: 0;
      font-size: 1.875em;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .block-Teams .teams-content .b-inner-text p {
      font-family: "KanitRegular",sans-serif;
      font-size: 1em;
      margin-top: 3px;
      margin-left: 1px;
      margin-bottom: 13px;
      display: inline-block;
      line-height: 1.3;
      min-height: 80px; }
  .b-wrap1, .b-wrap2, .b-wrap3 {
    min-height: 310px !important; }
  .carousel-wrap-teams .owl-nav.disabled {
    display: block; }
    .carousel-wrap-teams .owl-nav.disabled > div {
      position: absolute;
      top: 150px;
      left: 20px;
      font-size: 30px;
      color: #fff;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .carousel-wrap-teams .owl-nav.disabled > div:hover {
        color: #ff9e16; }
      .carousel-wrap-teams .owl-nav.disabled > div.owl-next {
        right: 20px;
        left: auto; }
  .carousel-wrap-teams .owl-dots {
    display: block;
    margin: 5px 0;
    text-align: center; }
    .carousel-wrap-teams .owl-dots .owl-dot {
      width: 8px;
      height: 8px;
      background-color: #FFF;
      -webkit-border-radius: 50px;
      border-radius: 50px;
      display: inline-block;
      margin: 4px; }
      .carousel-wrap-teams .owl-dots .owl-dot.active {
        background-color: #ff9e16; }
  .block-Schedule {
    position: relative;
    text-align: left; }
    .block-Schedule .content-Schedule {
      margin-bottom: 43px;
      height: 316px; }
    .block-Schedule .btn {
      display: block;
      width: 130px;
      height: 45px;
      border: 2px solid #f4f4f4;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      margin-right: 11px;
      margin-top: 7px !important; }
      .block-Schedule .btn > span {
        display: inline-block;
        font-size: 1.25em;
        margin-top: 5px;
        margin-left: 2px;
        width: 120px; }
    .block-Schedule h2 {
      text-align: center;
      font-size: 2.375em; }
    .block-Schedule .table-Schedule {
      font-family: "KanitLight",sans-serif;
      font-size: 0.8125em;
      font-weight: 100;
      color: #3b3a39;
      text-align: left;
      width: 100% !important; }
      .block-Schedule .table-Schedule .pad-table th {
        padding-top: 25px;
        padding-bottom: 24px; }
      .block-Schedule .table-Schedule tr, .block-Schedule .table-Schedule th {
        padding: 14px 1px 15px 1px; }
    .block-Schedule .p-gray {
      background-color: #f4f4f4; }
  .b-wrap-Coaches {
    padding-bottom: 32px; }
    .b-wrap-Coaches .text-wrap {
      margin-top: 45px;
      line-height: 1; }
      .b-wrap-Coaches .text-wrap h2 {
        font-size: 2.375em; }
      .b-wrap-Coaches .text-wrap p {
        font-family: "RobotoCondensedRegular",sans-serif;
        font-size: 1.1875em;
        margin-top: 10px;
        letter-spacing: 0.25px; }
    .b-wrap-Coaches .car-img-wrap {
      margin: 30px auto 0 auto; }
    .b-wrap-Coaches .car-text-wrap {
      line-height: 1;
      width: 100%; }
      .b-wrap-Coaches .car-text-wrap h4 {
        text-transform: uppercase;
        margin-top: 38px; }
      .b-wrap-Coaches .car-text-wrap h5 {
        font-size: 1.125em;
        margin-top: 7px; }
      .b-wrap-Coaches .car-text-wrap p {
        font-size: 1em;
        margin-top: 30px;
        line-height: 1.2; }
    .b-wrap-Coaches .car-btn-wrap {
      margin-top: 35px; }
      .b-wrap-Coaches .car-btn-wrap .btn {
        width: 140px;
        height: 50px;
        -webkit-border-radius: 5px;
        border-radius: 5px; }
        .b-wrap-Coaches .car-btn-wrap .btn > span {
          display: inline-block;
          font-size: 1.25em;
          margin-top: 5px;
          margin-left: 2px;
          width: 120px; }
    .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div {
      position: absolute;
      top: 130px;
      left: -8px;
      font-size: 30px; }
      .b-wrap-Coaches .carousel-wrap-coaches .owl-nav.disabled > div.owl-next {
        right: -8px;
        left: auto; }
    .b-wrap-Coaches .carousel-wrap-coaches .owl-dots {
      display: block;
      margin-top: 45px; }
      .b-wrap-Coaches .carousel-wrap-coaches .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
        background-color: #FFF;
        -webkit-border-radius: 50px;
        border-radius: 50px;
        display: inline-block;
        margin: 4px; }
        .b-wrap-Coaches .carousel-wrap-coaches .owl-dots .owl-dot.active {
          background-color: #ff9e16; }
    .b-wrap-Coaches .carousel-wrap-coaches .carousel-wrap-news .owl-nav.disabled {
      display: none; }
  .block-Club-Gallery .gallery__item .gallery__item__img .hover-link-g .inside p {
    font-size: 0.875em; }
  .block-News {
    margin-bottom: 40px; }
    .block-News .text-wrap {
      margin-top: 42px;
      margin-bottom: 25px; }
      .block-News .text-wrap h2 {
        font-size: 2.375em; }
    .block-News .carousel-wrap-news .owl-nav.disabled {
      display: none; }
    .block-News .carousel-wrap-news .owl-dots {
      display: block;
      margin: -50px auto 0 auto;
      width: 50px; }
      .block-News .carousel-wrap-news .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
        background-color: gray;
        -webkit-border-radius: 50px;
        border-radius: 50px;
        display: inline-block;
        margin: 4px; }
        .block-News .carousel-wrap-news .owl-dots .owl-dot.active {
          background-color: #ff9e16; }
    .block-News .carousel-wrap-news .carousel-item-news {
      margin: 0 60px !important; }
      .block-News .carousel-wrap-news .carousel-item-news .car-img-wrap {
        height: 300px; }
        .block-News .carousel-wrap-news .carousel-item-news .car-img-wrap img {
          height: 100%; }
      .block-News .carousel-wrap-news .carousel-item-news .car-text-wrap p {
        margin-top: 15px; }
  .block-Club-Gallery .text-wrap {
    line-height: 1.1; }
    .block-Club-Gallery .text-wrap h2 {
      font-size: 2.375em;
      margin-top: 3px; }
    .block-Club-Gallery .text-wrap p {
      margin-top: 7px;
      font-family: "RobotoCondensedRegular",sans-serif;
      font-size: 1.125em;
      letter-spacing: 0.9px; }
  .block-Club-Gallery .filters-by-category ul {
    margin-bottom: 32px; }
    .block-Club-Gallery .filters-by-category ul .btn {
      width: 130px;
      height: 45px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      margin-right: 11px; }
      .block-Club-Gallery .filters-by-category ul .btn > span {
        font-size: 0.875em;
        margin-top: 10px;
        width: 70px; }
  .block-Club-Gallery .btn-wrap-gallery .btn.btn-link-w {
    width: 165px;
    height: 50px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    margin-top: 20px; }
    .block-Club-Gallery .btn-wrap-gallery .btn.btn-link-w > span {
      font-size: 1.1875em;
      margin-top: 7px;
      letter-spacing: 0.3px; }
  .block-Partners {
    margin-bottom: 60px; }
    .block-Partners .text-wrap {
      margin-top: 57px;
      line-height: 1; }
      .block-Partners .text-wrap h2 {
        font-size: 2.375em; }
      .block-Partners .text-wrap p {
        margin-top: 7px;
        font-family: "RobotoCondensedRegular",sans-serif;
        font-size: 1.125em;
        letter-spacing: 0.9px; }
    .block-Partners .carousel-wrap-partners .owl-nav.disabled {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
      .block-Partners .carousel-wrap-partners .owl-nav.disabled > div {
        position: absolute;
        top: 37px;
        left: -10px;
        font-size: 30px;
        color: #000;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
        .block-Partners .carousel-wrap-partners .owl-nav.disabled > div:hover {
          color: #ff9e16; }
        .block-Partners .carousel-wrap-partners .owl-nav.disabled > div.owl-next {
          right: -10px;
          left: auto; }
    .block-Partners .carousel-wrap-partners .owl-dots {
      display: block;
      margin-top: -8px; }
      .block-Partners .carousel-wrap-partners .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
        background-color: gray;
        -webkit-border-radius: 50px;
        border-radius: 50px;
        display: inline-block;
        margin: 4px; }
        .block-Partners .carousel-wrap-partners .owl-dots .owl-dot.active {
          background-color: #ff9e16; }
    .block-Partners .carousel-wrap-partners .carousel-item-partners a .min-img2 {
      width: 40%; }
    .block-Partners .carousel-wrap-partners .carousel-item-partners a img {
      max-width: 55%;
      margin-top: 30px; }
    .block-Partners .block-wrap-sponsor {
      margin-top: 25px; }
      .block-Partners .block-wrap-sponsor a {
        font-size: 1.75em !important;
        letter-spacing: 0.9px;
        line-height: 1.3;
        padding: 21px 0; }
  .block-Subscribe .text-wrap {
    padding-top: 30px !important; }
    .block-Subscribe .text-wrap .orange-text {
      display: block;
      margin-bottom: 2px; }
    .block-Subscribe .text-wrap h2 {
      font-size: 2.375em; }
    .block-Subscribe .text-wrap p {
      margin-top: 15px !important;
      font-size: 1em !important;
      letter-spacing: 0.9px;
      width: 96% !important;
      line-height: 1.2 !important; }
  .block-Subscribe .form-wrap .form-control {
    width: 70% !important;
    height: 43px !important;
    -webkit-border-radius: 7px !important;
    border-radius: 7px !important;
    margin-left: 15% !important; }
  .block-Subscribe .form-wrap button {
    position: relative;
    top: -5px !important;
    left: 0%;
    width: 130px !important;
    height: 45px !important;
    -webkit-border-radius: 7px;
    border-radius: 7px; }
    .block-Subscribe .form-wrap button span {
      font-size: 1.125em; }
  .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .icon-wrap a p {
    margin-bottom: 17px; }
  .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .bbc .img-wrap {
    display: none; }
  .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .content-wrap .bbc .content-text-wrap {
    width: 90% !important;
    margin-left: 8% !important; }
  .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .instafeed-wrap .instafeed {
    width: 300px !important; }
    .block-Subscribe .bg-subscribe2 .bg-dark2 .b-wrap-soc-network .instafeed-wrap .instafeed a {
      width: 90px !important;
      height: 90px !important; }
  footer .content-wrap-footer .content-footer {
    padding-left: 0; }
    footer .content-wrap-footer .content-footer .b-inner1, footer .content-wrap-footer .content-footer .b-inner2 {
      width: 80% !important;
      float: none !important;
      margin: 0 auto; }
  .logo-footer {
    margin: 0 auto;
    width: 200px !important; }
    .logo-footer a {
      width: 220px !important; }
    .logo-footer img {
      margin: 0 auto;
      width: 200px !important; }
  /* About-Page */
  .about-content-block .carousel-item-about-players {
    height: 400px; }
    .about-content-block .carousel-item-about-players .car-content {
      top: 60px; }
      .about-content-block .carousel-item-about-players .car-content h4 {
        top: 0 !important;
        opacity: 1 !important;
        font-size: 1.25em; }
      .about-content-block .carousel-item-about-players .car-content h2 {
        bottom: 0 !important;
        opacity: 1 !important;
        font-size: 2.8125em; }
      .about-content-block .carousel-item-about-players .car-content p {
        bottom: 0 !important;
        opacity: 1 !important;
        font-size: 0.875em;
        width: 70%;
        margin: 20px auto 20px auto; }
      .about-content-block .carousel-item-about-players .car-content a {
        opacity: 1 !important;
        width: 150px;
        height: 45px; }
        .about-content-block .carousel-item-about-players .car-content a > span {
          font-size: 0.875em; }
  .about-content-block .owl-nav > div {
    top: 200px;
    font-size: 27px;
    left: 10px; }
    .about-content-block .owl-nav > div.owl-next {
      right: 10px;
      left: auto; }
  .about-info-block .history-block {
    height: 380px; }
    .about-info-block .history-block h2 {
      margin-left: 0;
      font-size: 2.375em; }
    .about-info-block .history-block p {
      font-size: 0.8125em;
      text-align: center; }
    .about-info-block .history-block .info-spoiler1, .about-info-block .history-block .info-spoiler2, .about-info-block .history-block .info-spoiler3 {
      margin: 0; }
    .about-info-block .history-block .btn {
      width: 80%;
      margin: 0 auto 10px auto;
      height: 60px; }
      .about-info-block .history-block .btn > span {
        font-size: 1.25em;
        margin-left: 38%; }
  /* Teams-stats */
  body.Pages h2 {
    font-size: 2.5em; }
  body.Pages h3 {
    font-size: 2.25em; }
  body.Pages .statistic-block .padding-null {
    padding-left: 15px;
    padding-right: 15px; }
  body.Pages .statistic-block .statistic-wrap-content {
    margin-top: 0; }
  body.Pages .teams-stats-block table {
    font-size: 1.125em; }
  /* Partners-page-block */
  .partners-page-block .sponsors-block .carousel-item-sponsor .car-img-wrap .img-sponsor3 {
    left: 10px; }
  .partners-page-block .meet-partners-block .all-partners-block-wrap .img-wrap-partner {
    height: 140px; }
  /* Contacts-Page */
  .page-contacts-block .message-wrap .form-group textarea.form-control {
    height: 200px; }
  .page-contacts-block .message-wrap .btn {
    width: 170px;
    height: 50px; }
    .page-contacts-block .message-wrap .btn > span {
      font-size: 1.25em; }
  /* blog */
  .block-posts .blog-post {
    margin-top: 53px; }
    .block-posts .blog-post .post-image a img {
      height: 250px !important; }
    .block-posts .blog-post .post-image .post-video {
      height: 250px; }
    .block-posts .blog-post .post-image .post-img-carousel-wrap .owl-nav.disabled > div {
      top: 135px !important;
      font-size: 27px; }
    .block-posts .blog-post .post-title {
      font-size: 2em; }
    .block-posts .blog-post .post-meta .post-date {
      bottom: 70px;
      width: 90px; }
    .block-posts .blog-post .post-teaser .inside {
      padding-left: 60px; }
      .block-posts .blog-post .post-teaser .inside i {
        font-size: 29px;
        position: absolute;
        top: 0;
        left: 20px;
        color: #ff9e16; }
    .block-posts .blog-post .btn {
      margin: 35px auto 0 auto;
      width: 170px;
      height: 55px; }
      .block-posts .blog-post .btn > span {
        margin-left: 35px;
        margin-top: 5px; }
  .comments-block {
    margin-left: 0; }
    .comments-block .comment .userpic {
      height: 80px; }
  .comments-block .comment.replay {
    margin-left: 30px; }
  .form-comments {
    margin-bottom: 60px;
    margin-left: 0; }
    .form-comments .btn {
      margin: 0 auto; }
  .header-top .mob-view {
    display: block !important; } }

@media only screen and (max-width: 320px) {
  .logo {
    margin-left: 55px;
    width: 235px !important; }
  .mob-view h1 {
    font-size: 2.125em !important;
    position: absolute;
    top: -40px;
    left: -5px; }
  .mob-view p {
    font-size: 0.75em;
    position: absolute;
    top: -35px;
    right: -10px;
    width: 55%;
    line-height: 1; }
  .about-info-block .history-block h2 {
    margin-left: 0; }
  .about-info-block .history-block .btn {
    width: 80%;
    margin: 0 auto 10px auto;
    height: 60px; }
    .about-info-block .history-block .btn > span {
      font-size: 1.25em;
      margin-left: 30%; }
  .block-News .carousel-wrap-news .carousel-item-news {
    margin: 0 20px !important; }
  .block-Subscribe .form-wrap button {
    left: 10px !important; } }

@media only screen and (max-height: 1024px) {
  .copyright {
    margin-top: 40px !important; } }

@media only screen and (max-height: 800px) {
  .carousel-eq .owl-nav > div {
    position: absolute;
    top: 360px;
    left: 25px;
    font-size: 54px;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .carousel-eq .owl-nav > div:hover {
      color: #ff9e16; }
    .carousel-eq .owl-nav > div.owl-next {
      right: 25px;
      left: auto; } }

@media only screen and (max-height: 770px) {
  .carousel-eq .owl-nav > div {
    position: absolute;
    top: 320px;
    left: 25px;
    font-size: 54px;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .carousel-eq .owl-nav > div:hover {
      color: #ff9e16; }
    .carousel-eq .owl-nav > div.owl-next {
      right: 25px;
      left: auto; } }

@media only screen and (max-height: 660px) {
  .carousel-eq .owl-nav > div {
    position: absolute;
    top: 280px;
    left: 20px;
    font-size: 44px;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .carousel-eq .owl-nav > div:hover {
      color: #ff9e16; }
    .carousel-eq .owl-nav > div.owl-next {
      right: 20px;
      left: auto; } }

/* @media only screen and (max-height : 480px)
	.carousel-eq
		.owl-nav
			> div
				position: absolute
				top: 220px
				left: 20px
				font-size: 34px
				color: #fff
				@include mt(.5s)
				&:hover
					color: $accent
				&.owl-next
					right: 20px
					left: auto */
/*==========  Mobile First Method  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/ }

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  /**/ }

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /**/ }

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  /**/ }

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  /**/ }

@media only screen and (min-width: 2000px) {
  .nav-line {
    text-align: center;
    -webkit-transform: skew(20deg);
    -ms-transform: skew(20deg);
    transform: skew(20deg);
    min-width: 1500px;
    margin-left: -200px; }
    .nav-line > ul {
      -webkit-transform: skew(-20deg);
      -ms-transform: skew(-20deg);
      transform: skew(-20deg); }
      .nav-line > ul > li > a {
        display: block;
        padding: 29px 20px;
        text-transform: uppercase;
        font-size: 1.75em; }
  .carousel-content .btn {
    width: 300px;
    height: 105px; }
    .carousel-content .btn > span {
      display: inline-block;
      -webkit-transform: skew(-20deg);
      -ms-transform: skew(-20deg);
      transform: skew(-20deg);
      font-family: "RobotoCondensedRegular",sans-serif;
      font-size: 2.625em;
      margin-top: 10px;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
  .carousel-content .text-wrap {
    position: relative;
    top: 30%; }
    .carousel-content .text-wrap h2 {
      margin-top: 60px;
      font-size: 9.5em; }
    .carousel-content .text-wrap p {
      font-size: 3.75em;
      margin: 5px 0; }
  .carousel-eq .owl-nav > div {
    position: absolute;
    top: 760px;
    left: 25px;
    font-size: 94px; } }
