@charset "UTF-8";
/* ------------------ DESIGN TOKENS ------------------ */
/* Single source of truth for colors, typography, spacing, radius, shadows.
   Reference these via var(--…) in all other partials. */
:root {
  /* Colors */
  --color-primary: #00aeef;
  --color-primary-hover: #0099d6;
  --color-primary-deep: #0088cc;
  --color-bg: #fff;
  --color-bg-alt: #fafafa;
  --color-bg-alt-2: #f5f5f5;
  --color-dark: #1a1a2e;
  --color-dark-mid: #16213e;
  --color-dark-deep: #0f3460;
  --color-text: #555;
  --color-text-muted: #777;
  --color-text-tertiary: #999;
  --color-heading: #646464;
  --color-border: #eee;
  /* Typography */
  --font-body: "Space Grotesk", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  /* Spacing scale */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 20px;
  --space-4: 30px;
  --space-5: 50px;
  --space-6: 80px;
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-pill: 30px;
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  /* Motion */
  --ease: 0.3s ease;
}

/* ------------------ BASE STYLES ------------------ */
html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-muted);
  background-color: #fff !important;
  line-height: 1.6;
}
body.fullscreen-image-background {
  background-image: url("../img/sliders/slider3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 1025px) {
  body.fullscreen-image-background {
    background-attachment: fixed;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  color: var(--color-heading);
  margin-top: 0;
}

/* ------------------ GENERAL STYLES ------------------ */
/* --------------------- */
/* NAVIGATION BAR
/* --------------------- */
.navbar-brand {
  padding: 10px 15px;
}
.navbar-brand img {
  width: 74px;
  height: auto;
}

.navbar,
.navbar.navbar-light {
  transition: all 0.2s linear;
  -webkit-transform: translateZ(0);
}

.nav > li > a:focus {
  background-color: transparent;
  outline: none;
}

.navbar-nav {
  padding: 10px 0;
}
.navbar-nav > li {
  margin: 0 10px;
}
.navbar-nav > li > a {
  transition: all 0.1s ease-out;
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  font-size: 12px;
  color: var(--color-heading);
  font-weight: 700;
}
.navbar-nav > li > a:hover {
  border-bottom: 2px solid var(--color-heading);
  padding-bottom: 0;
  background-color: transparent;
}
.navbar-nav > li.active > a {
  border-bottom: 2px solid var(--color-heading);
  padding-bottom: 0;
  background-color: transparent;
  outline: none;
}
.navbar-nav.nav-text-light > li > a {
  color: #fff;
}
.navbar-nav.nav-text-light > li > a:hover {
  border-bottom-color: #fff;
}
.navbar-nav.nav-text-light > li.active > a {
  border-bottom-color: #fff;
}

.navbar {
  border-radius: 0;
}
.navbar.navbar-light {
  background-color: #f7f7f7;
  border-bottom: 1px solid #eee;
}
.navbar.navbar-light .navbar-nav.nav-text-light > li > a {
  color: var(--color-heading);
}
@media (max-width: 767px) {
  .navbar.navbar-light .navbar-nav.nav-text-light > li > a {
    color: rgb(229.5, 229.5, 229.5);
    border-bottom: none;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar.navbar-light .navbar-nav.nav-text-light > li > a:hover {
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    text-decoration: underline;
  }
}
.navbar.navbar-light .navbar-nav.nav-text-light > li > a:hover {
  border-bottom-color: var(--color-heading);
}
.navbar.navbar-light .navbar-nav.nav-text-light > li.active > a {
  border-bottom-color: var(--color-heading);
}

.navbar-toggle {
  background-color: var(--color-heading);
}
.navbar-toggle .icon-bar {
  background-color: #fff;
}

@media (max-width: 767px) {
  .navbar-collapse {
    background-color: #646464;
  }
  .navbar-collapse .navbar-nav > li > a {
    color: rgb(229.5, 229.5, 229.5);
    border-bottom: none;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-collapse .navbar-nav > li > a:hover {
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    text-decoration: underline;
  }
}
/* --------------------- */
/* BUTTONS
/* --------------------- */
.btn {
  border-radius: 0;
  transition: border-color 0.2s linear;
}
.btn:active, .btn.active {
  box-shadow: none;
}

.btn-lg {
  border-width: 6px;
}

.btn-sm {
  border-width: 3px;
}

.btn-xs {
  border-width: 2px;
}

.btn-info {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
  background-color: var(--color-primary);
  border-color: rgb(0, 155.4351464435, 213.5);
}
.btn-info:active:focus, .btn-info.active:focus {
  background-color: rgb(0, 155.4351464435, 213.5);
  border-color: rgb(0, 118.3054393305, 162.5);
}

.btn-outline {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active {
  color: #fff;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  background-color: var(--color-primary);
  border-color: rgb(0, 155.4351464435, 213.5);
}
.btn-primary:active:focus, .btn-primary.active:focus {
  background-color: rgb(0, 155.4351464435, 213.5);
  border-color: rgb(0, 118.3054393305, 162.5);
}

.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: rgb(35, 195.1673640167, 255);
  border-color: var(--color-primary);
}
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active,
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:active,
.btn-primary[disabled].active {
  background-color: rgb(35, 195.1673640167, 255);
  border-color: var(--color-primary);
}

/* --------------------- */
/* LINKS
/* --------------------- */
a {
  color: var(--color-primary);
}
a:hover, a:focus {
  color: rgb(35, 195.1673640167, 255);
  text-decoration: none;
}

/* --------------------- */
/* SECTION
/* --------------------- */
.section {
  background-color: var(--color-bg-alt);
  padding: 70px 0;
}
.section.darker {
  background-color: var(--color-bg-alt-2);
}
.section.most-dark {
  background-color: #4d4d4d;
  color: #fafafa;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h2, .section-heading p {
  font-family: "Space Grotesk", sans-serif;
}
.section-heading h2 {
  font-size: 3em;
  color: var(--color-primary);
}
.section-heading p {
  font-size: 1.5em;
  color: #c2c2c2;
}
.section-heading hr {
  display: inline-block;
  width: 100px;
  border-top: 1px solid #acacac;
}

.section-content h3 {
  color: #c2c2c2;
}

/* --------------------- */
/* TOOLTIP
/* --------------------- */
.tooltip-inner {
  opacity: 0.5;
}

.tooltip.top .tooltip-arrow, .tooltip.top-left .tooltip-arrow, .tooltip.top-right .tooltip-arrow, .tooltip.right .tooltip-arrow, .tooltip.left .tooltip-arrow, .tooltip.bottom .tooltip-arrow, .tooltip.bottom-left .tooltip-arrow, .tooltip.bottom-right .tooltip-arrow {
  opacity: 0.5;
}

/* --------------------- */
/* 3rd PARTY STYLES
/* --------------------- */
.parallax {
  background-attachment: fixed !important;
  background-size: cover;
}
@media (max-width: 1024px) {
  .parallax {
    background-attachment: scroll !important;
    background-position: initial !important;
    background-repeat: no-repeat !important;
  }
}

.wow {
  visibility: hidden;
}

/*

	Supersized - Fullscreen Slideshow jQuery Plugin
	Version : 3.2.7
	Site	: www.buildinternet.com/project/supersized

	Author	: Sam Dunn
	Company : One Mighty Roar (www.onemightyroar.com)
	License : MIT License / GPL License

*/
* {
  margin: 0;
  padding: 0;
}

body {
  background: #111;
  height: 100%;
}

img {
  border: none;
}

#supersized-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  text-indent: -999em;
  background: url(../img/progress.gif) no-repeat center center;
}

#supersized {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: -999;
  height: 100%;
  width: 100%;
}

#supersized img {
  width: auto;
  height: auto;
  position: relative;
  display: none;
  outline: none;
  border: none;
}

#supersized.speed img {
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -moz-crisp-edges;
} /*Speed*/
#supersized.quality img {
  -ms-interpolation-mode: bicubic;
  image-rendering: optimizeQuality;
} /*Quality*/
#supersized li {
  display: block;
  list-style: none;
  z-index: -30;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
}

#supersized a {
  width: 100%;
  height: 100%;
  display: block;
}

#supersized li.prevslide {
  z-index: -20;
}

#supersized li.activeslide {
  z-index: -10;
}

#supersized li.image-loading {
  background: #111 url(../img/progress.gif) no-repeat center center;
  width: 100%;
  height: 100%;
}

#supersized li.image-loading img {
  visibility: hidden;
}

#supersized li.prevslide img, #supersized li.activeslide img {
  display: inline;
}

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: "flexslider-icon";
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  zoom: 1;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.flex-direction-nav .flex-prev {
  left: -50px;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: 10px;
}

.flexslider:hover .flex-next {
  opacity: 0.7;
  right: 10px;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
}

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: "\f001";
}

.flex-direction-nav a.flex-next:before {
  content: "\f002";
}

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: "\f004";
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: "\f003";
}

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: 0.7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

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

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

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

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

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

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

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

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

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

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

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

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

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

/* ------------------ HERO UNIT ------------------ */
.hero-unit {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero-unit.has-overlay {
  background: rgba(93, 184, 212, 0.84);
}
.hero-unit.has-overlay .hero-content .hero-text p {
  background-color: #4398B1;
}
.hero-unit.hero-light .hero-content .hero-text .hero-heading,
.hero-unit.hero-light .hero-content .hero-text p {
  color: #fff;
}
.hero-unit .hero-bg-pattern {
  opacity: 0.2;
  width: 100%;
  height: 100%;
  background-image: url("../img/noise_lines_@2X.png");
  background-repeat: repeat;
}
.hero-unit .hero-content {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -10em;
  z-index: 2;
}
@media (min-width: 320px) and (max-width: 480px) {
  .hero-unit .hero-content {
    margin-top: -40px;
  }
}
@media (max-width: 320px) {
  .hero-unit .hero-content {
    margin-top: -80px;
  }
}
.hero-unit .hero-content .hero-text .hero-heading,
.hero-unit .hero-content .hero-text p {
  font-family: "Space Grotesk", sans-serif;
  color: var(--color-heading);
  font-weight: 300;
}
.hero-unit .hero-content .hero-text .hero-heading {
  font-size: 6em;
}
@media (max-width: 768px) {
  .hero-unit .hero-content .hero-text .hero-heading {
    font-size: 4em;
  }
}
@media (max-width: 480px) {
  .hero-unit .hero-content .hero-text .hero-heading {
    font-size: 2em;
  }
}
.hero-unit .hero-content .hero-text p {
  display: inline-block;
  font-size: 2em;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .hero-unit .hero-content .hero-text p {
    font-size: 1.5em;
  }
}
@media (max-width: 480px) {
  .hero-unit .hero-content .hero-text p {
    font-size: 1.3em;
  }
}
.hero-unit .hero-content .hero-buttons {
  z-index: 2;
}
.hero-unit .hero-content .hero-buttons .btn {
  margin: 0 5px;
  font-weight: 400;
}
@media (max-width: 480px) {
  .hero-unit .hero-content .hero-buttons .btn {
    margin-bottom: 10px;
  }
}
.hero-unit .hero-content .hero-buttons #btn-about {
  padding: 15px 41px;
}
.hero-unit .hero-content .hero-buttons #btn-contact {
  padding: 15px 30px;
}
@media (max-width: 480px) {
  .hero-unit .hero-content .hero-buttons #btn-about, .hero-unit .hero-content .hero-buttons #btn-contact {
    padding: 10px 16px;
  }
}
.hero-unit .slide-caption {
  padding-bottom: 50px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .hero-unit .slide-caption {
    padding-bottom: 0;
  }
}
.hero-unit .slideshow .slide-navigation #prevslide,
.hero-unit .slideshow .slide-navigation #nextslide {
  border-radius: 2px;
  transition: background 0.1s linear;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 3em;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 9;
}
.hero-unit .slideshow .slide-navigation #nextslide {
  right: 0;
}
.hero-unit .slideshow ul#slide-list {
  position: absolute;
  left: 50%;
  bottom: 40px;
}
@media (max-width: 480px) {
  .hero-unit .slideshow ul#slide-list {
    display: none;
  }
}
.hero-unit .slideshow ul#slide-list li a {
  border-radius: 15px;
  transition: background-color 0.2s linear, border-color 0.2s linear;
  display: block;
  width: 15px;
  height: 15px;
  text-indent: -9999px;
  border: 2px solid #fff;
  cursor: pointer;
}
.hero-unit .slideshow ul#slide-list li a:hover {
  background-color: #e6e6e6;
}
.hero-unit .slideshow ul#slide-list li.current-slide a {
  background-color: #e6e6e6;
}
.hero-unit #controls #pauseplay {
  position: absolute;
  left: 50%;
  bottom: 30px;
  cursor: pointer;
  color: #fff;
}
.hero-unit #controls #pauseplay:hover {
  text-decoration: none;
  color: #e6e6e6;
}
.hero-unit #controls #pauseplay i {
  display: block;
  width: 10px;
  margin-left: -8px;
}
@media (max-width: 480px) {
  .hero-unit #controls {
    display: none;
  }
}

#supersized-loader {
  background-image: url("../img/bx_loader.gif");
  background-repeat: no-repeat;
  background-position: center center;
}

/* ------------------ ABOUT ------------------ */
.about {
  position: relative;
}
.about .img-left {
  position: absolute;
  bottom: -60px;
  left: -66px;
}
@media (max-width: 1370px) {
  .about .img-left {
    left: -140px;
  }
}
@media (max-width: 1200px) {
  .about .img-left {
    display: none;
  }
}

/* ------------------ SERVICES ------------------ */
.service-item {
  margin-bottom: 60px;
}
.service-item .service-icon {
  position: absolute;
  top: 0;
  font-size: 5em;
  color: var(--color-primary);
}
.service-item .service-text {
  margin-left: 100px;
  overflow: hidden;
}
.service-item .service-text h3 {
  margin-top: 6px;
  color: var(--color-heading);
}
.service-item .service-text p {
  margin-bottom: 0;
}
.service-item .service-text a.read-more {
  color: var(--color-primary);
}
.service-item .service-text a.read-more span {
  transition: all 0.2s linear;
  opacity: 0;
  font-size: 0.8em;
  margin-left: -80px;
}
@media (max-width: 1200px) {
  .service-item .service-text a.read-more span {
    opacity: 1;
    margin-left: 0;
  }
}
.service-item .service-text a.read-more i {
  position: relative;
  top: 3px;
  font-size: 1em;
}
.service-item .service-text a.read-more:hover {
  text-decoration: none;
}
.service-item .service-text a.read-more:hover span {
  opacity: 1;
  margin-left: 0;
}

@media (max-width: 480px) {
  .services {
    padding-bottom: 0;
  }
}
/* ------------------ WORKS ------------------ */
/* ----------------------------- */
/* RECOMMENDED ISOTOPE STYLES
/* Has been ported into SASS
/* ---------------------------- */
/* Isotope Filtering */
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/* Isotope CSS3 transitions */
.isotope, .isotope .isotope-item {
  transition-property: height, width;
}

.isotope, .isotope .isotope-item {
  transition-duration: 0.4s;
}
.isotope .isotope-item {
  transition-property: transform, opacity;
}

/* disabling Isotope CSS3 transitions */
.isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .no-transition.isotope-item .isotope-item,
.isotope .isotope-item.no-transition {
  transition-duration: 0s;
}

/* --------------------- */
/* WORKS GRID
/* --------------------- */
#works {
  padding-bottom: 0;
}

.work-item-filters {
  text-align: center;
  margin-bottom: 0;
  background-color: #e2e2e2;
}
.work-item-filters li {
  padding: 0;
  margin-left: -2px;
  margin-right: -2px;
}
.work-item-filters li:first-child {
  margin-left: 0;
}
.work-item-filters li a {
  display: block;
  padding: 15px;
  color: #9a9a9a;
}
.work-item-filters li a:hover, .work-item-filters li a.active {
  text-decoration: none;
  outline: none;
  background-color: var(--color-primary);
  color: #fff;
}

.work-item-wrapper {
  overflow: hidden;
}

.work-item-list {
  margin-bottom: 0;
  width: 101%;
}
.work-item-list li {
  padding: 0;
  float: left;
  overflow: hidden;
  position: relative;
}
.work-item-list li img {
  transition: all 0.2s linear;
  max-width: 100%;
  width: 100%;
}
.work-item-list li:hover img {
  transform: scale(1.3);
}
.work-item-list.list-col-5 li {
  width: 19.95%;
}
.work-item-list.list-col-4 li {
  width: 24.9%;
}
.work-item-list.list-col-3 li {
  width: 33.32%;
}
.work-item-list.list-col-2 li {
  width: 49.9%;
}
@media (max-width: 548px) {
  .work-item-list.list-col-2 li, .work-item-list.list-col-3 li, .work-item-list.list-col-4 li, .work-item-list.list-col-5 li {
    width: 100%;
  }
}
@media (min-width: 548px) and (max-width: 1024px) {
  .work-item-list.list-col-2 li, .work-item-list.list-col-3 li, .work-item-list.list-col-4 li, .work-item-list.list-col-5 li {
    width: 49.9%;
  }
}
.work-item-list .media-popup > i {
  position: absolute;
  top: 25%;
  color: #fff;
  font-size: 48px;
  left: 50%;
  margin-left: -20px;
}
.work-item-list .image-overlay {
  opacity: 0;
  transition: opacity 0.2s linear;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 174, 239, 0.9);
}
.work-item-list .image-overlay:hover {
  opacity: 1;
}
@media (max-width: 1024px) {
  .work-item-list .image-overlay {
    opacity: 1;
    top: initial;
    bottom: 0;
    height: 30%;
  }
}
.work-item-list .image-overlay a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .work-item-list .image-overlay a:not(.mfp-iframe) {
    pointer-events: none;
    cursor: default;
  }
}
.work-item-list .work-item-info {
  position: absolute;
  left: 0;
  bottom: 50%;
  margin-bottom: -2.5em;
  width: 100%;
  text-align: center;
  color: #fff;
}
.work-item-list .work-item-info i {
  opacity: 0.2;
  font-size: 96px;
  position: absolute;
  left: 50%;
  margin-left: -48px;
  top: 50%;
  margin-top: -48px;
}
@media (max-width: 1024px) {
  .work-item-list .work-item-info i {
    display: none;
  }
}
.work-item-list .work-item-info h3 {
  color: #fff;
}
@media (min-width: 548px) and (max-width: 1024px) {
  .work-item-list .work-item-info h3 {
    font-size: 1.3em;
    line-height: 8px;
  }
  .work-item-list .work-item-info p {
    font-size: 0.8em;
  }
}

/* --------------------- */
/* POPUP
/* --------------------- */
button.mfp-close,
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close,
.mfp-close {
  font-size: 23px;
  width: 36px;
  background: rgba(0, 0, 0, 0.5);
  height: 36px;
  top: 0;
  right: 0;
  text-align: center;
  padding-right: 0;
  display: inline;
  font-family: inherit;
  line-height: 1;
}

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

.mfp-bottom-bar {
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  top: 90%;
  height: 100%;
}
.mfp-bottom-bar h3 {
  color: #fff;
}
.mfp-bottom-bar p {
  font-size: 0.9em;
}

img.mfp-img {
  padding: 0;
}

.mfp-figure {
  position: relative;
  margin: 0 40px 0 40px;
  overflow: hidden;
}

/* fade animation */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
  /* overlay animate in */
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg {
  /* overlay animate out */
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade {
  /* content at start */
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap {
  /* content animate it */
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap {
  /* content animate out */
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* ------------------ CALL TO ACTION ------------------ */
.call-to-action {
  font-size: 3em;
  text-align: center;
  padding: 40px 0;
  overflow: hidden;
}
.call-to-action a {
  color: #fafafa; /* will be rendered as phone link on safari iOS*/
}
@media (max-width: 480px) {
  .call-to-action {
    padding: 0 15px;
    font-size: 2em;
  }
}

/* ------------------ TEAM ------------------ */
.team-member {
  margin-bottom: 60px;
}
.team-member.media > .pull-left {
  margin-right: 30px;
}
.team-member .team-name {
  display: inline-block;
  padding: 0 5px;
  line-height: 1.6;
  color: #fff;
  background-color: var(--color-primary);
}
.team-member strong {
  display: block;
  font-size: 0.9em;
  color: var(--color-heading);
}
.team-member hr {
  width: 50px;
  border-top: 1px solid #acacac;
  margin-top: 10px;
}
.team-member p {
  font-size: 14px;
}
@media (max-width: 480px) {
  .team-member {
    text-align: center;
  }
  .team-member.media > .pull-left {
    display: inline;
    float: none !important;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .team-member hr {
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .team {
    padding-bottom: 0;
  }
}
/* ------------------ TESTIMONIAL ------------------ */
.testimonial {
  background-image: url("../img/sky.jpg");
  text-align: center;
  color: #fff;
}
.testimonial .testimonial-text {
  margin-bottom: 30px;
  font-size: 3em;
  font-family: "Space Grotesk", sans-serif;
}
@media (max-width: 480px) {
  .testimonial .testimonial-text {
    font-size: 2em;
  }
}
.testimonial .testimonial-text .quote-left,
.testimonial .testimonial-text .quote-right {
  position: relative;
}
.testimonial .testimonial-text .quote-left {
  margin-right: 10px;
  top: -10px;
}
.testimonial .testimonial-text .quote-right {
  margin-left: 10px;
  bottom: -10px;
}
.testimonial .testimonial-author .author-name {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 0;
}
.testimonial .testimonial-author .author-title {
  font-size: 0.9em;
}
.testimonial .flexslider {
  box-shadow: none;
  margin-bottom: 35px;
  background: transparent;
  border: none;
}
.testimonial .flex-control-paging li a {
  transition: background 0.2s ease-in;
  background: rgba(255, 255, 255, 0.5);
}
.testimonial .flex-control-paging li a:hover, .testimonial .flex-control-paging li a.flex-active {
  background: rgba(255, 255, 255, 0.9);
}

/* ------------------ CONTACT ------------------ */
.google-map {
  margin-bottom: 60px;
}
.google-map #map-canvas {
  height: 300px;
}

.contact-info {
  text-align: center;
}
.contact-info h3, .contact-info i {
  color: var(--color-heading);
}
.contact-info h3 {
  margin-top: 10px;
  margin-bottom: 20px;
}
.contact-info i {
  font-size: 40px;
}
@media (max-width: 768px) {
  .contact-info .row > div {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding-bottom: 0;
  }
}
/* ------------------ FOOTER ------------------ */
#footer {
  padding-top: 20px;
  padding-bottom: 10px;
}

.back-to-top {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 9999;
}
@media (max-width: 992px) {
  .back-to-top {
    display: none !important;
  }
}
.back-to-top a {
  border-radius: 2px;
  transition: background-color 0.2s linear;
  display: block;
  padding: 10px 15px;
  font-size: 28px;
  line-height: 28px;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}
.back-to-top a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.copyright {
  font-size: 0.8em;
  line-height: 36px;
}
@media (max-width: 480px) {
  .copyright {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .social-icon {
    width: 100%;
    text-align: center;
  }
}
.social-icon li {
  margin: 0 5px;
}
.social-icon li a {
  border-radius: 50%;
  transition: background-color 0.2s linear;
  display: block;
  width: 36px;
  height: 36px;
  font-size: 14px;
  line-height: 33px;
  text-align: center;
  color: #8a8a8a;
  border: 2px solid #8a8a8a;
}
.social-icon li a:hover {
  background-color: #8a8a8a;
  color: #fafafa;
}

/* ------------------ HOMEPAGE ------------------ */
/* Extracted from <style> blocks in index.html (lines 79-797, 1554-1626).
   Hex literals matching tokens have been replaced with var(--…) references.
   Untouched values: rgba() colors, gradient stops where var() would be ambiguous,
   text-color #fff (no token yet — A.2 plan introduces text-color tokens). */
/* Disable preloader - show page immediately */
body {
  display: block !important;
}

/* Prevent horizontal scroll on main content only */
#main-content {
  overflow-x: hidden;
}

.navbar:not(.navbar-light) .navbar-nav > li > a {
  color: #fff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar:not(.navbar-light) .navbar-nav > li > a:hover {
  color: var(--color-primary) !important;
}

/* ============================================
   DESKTOP ANIMATIONS
   ============================================ */
/* Hover Effects - Service Cards (Services section only) */
#services .service-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .service-item:hover {
  transform: translateY(-5px);
}

#services .service-item i, #services .service-item svg {
  transition: transform 0.3s ease, color 0.3s ease;
}

#services .service-item:hover i, #services .service-item:hover svg {
  transform: scale(1.15);
  color: var(--color-primary);
}

/* Service Item Links */
.service-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-item-link:hover,
.service-item-link:focus {
  text-decoration: none;
  color: inherit;
}

#services .service-item-link .service-item {
  cursor: pointer;
}

/* Service Taglines */
.service-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-style: italic;
}

/* How I Help Section - Enhanced Cards */
#services {
  padding: 120px 0 !important;
  background: var(--color-primary) !important;
}

#services .section-heading h2 {
  color: #fff;
}

#services .row {
  display: flex;
  flex-wrap: wrap;
}

#services .col-md-6 {
  display: flex;
}

#services .service-item-link {
  display: flex;
  width: 100%;
}

#services .service-item {
  background: var(--color-bg);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: none;
  width: 100%;
  text-align: center;
}

#services .service-item h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
}

#services .service-item h3 i {
  font-size: 24px;
  color: var(--color-primary);
  margin-right: 10px;
  transition: transform 0.3s ease;
}

#services .service-item-link:hover .service-item h3 i {
  transform: scale(1.15);
}

#services .service-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: center;
}

#services .service-text {
  text-align: center !important;
  margin-left: 0 !important;
}

#services .service-text h3 {
  text-align: center !important;
  justify-content: center !important;
}

#services .service-text p {
  text-align: center !important;
}

/* Thesis statement styling */
.services-thesis {
  font-size: 22px !important;
  color: #fff !important;
  font-weight: 400;
  max-width: 650px !important;
  line-height: 1.6 !important;
}

/* Closing statement */
.services-closing {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-top: 50px;
  text-align: center;
}

/* Hover Effects - Buttons */
.btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 174, 239, 0.4);
}

/* Hover Effects - Nav Links */
.navbar-nav > li > a {
  transition: all 0.3s ease;
}

.navbar-nav > li > a:hover {
  transform: translateY(-2px);
}

/* ============================================
   SPLIT-SCREEN PARALLAX SECTIONS
   ============================================ */
.split-section {
  display: flex;
  min-height: 600px;
  position: relative;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

/* Image Side */
.split-image {
  width: 55%;
  position: relative;
  overflow: hidden;
}

.split-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

/* Fade overlay on image - fades toward content side */
.split-image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 40%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.85) 80%, #fff 100%);
  pointer-events: none;
}

/* Reverse section: fade on left side */
.split-section.reverse .split-image::after {
  right: auto;
  left: 0;
  background: linear-gradient(to left, transparent 0%, rgba(26, 26, 46, 0.1) 20%, rgba(26, 26, 46, 0.3) 40%, rgba(26, 26, 46, 0.6) 60%, rgba(26, 26, 46, 0.85) 80%, var(--color-dark) 100%);
}

/* Content Side */
.split-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  background: var(--color-bg);
}

.split-content.dark {
  background: var(--color-dark);
}

.split-content .label {
  font-size: 24px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 15px;
}

.split-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.split-content.dark h2 {
  color: #fff;
}

.split-content h3 {
  font-size: 20px;
  font-weight: 400;
  color: #888;
  margin-bottom: 25px;
}

.split-content.dark h3 {
  color: #aaa;
}

.split-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.split-content.dark p {
  color: rgba(255, 255, 255, 0.8);
}

/* Smooth section transitions */
section {
  position: relative;
}

/* Text reveal animation helper */
.text-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children animations */
[data-aos=fade-up] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Portfolio filter buttons hover */
.filters .filter {
  transition: all 0.3s ease;
}

.filters .filter:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Portfolio hover text centering fix */
.work-item-list .work-item-info {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  width: 90% !important;
  padding: 20px;
  text-align: center;
}

.work-item-list .work-item-info h3 {
  margin-bottom: 10px;
  text-align: center;
}

.work-item-list .work-item-info p {
  text-align: center;
  line-height: 1.5;
}

/* Section heading underline animation */
.section-heading h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  margin: 15px auto 0;
  transition: width 0.6s ease;
}

.section-heading h2.animated::after {
  width: 80px;
}

/* ============================================
   MOBILE STYLES
   ============================================ */
/* Mobile Category Pills */
.mobile-category-pills {
  display: none;
  overflow-x: auto;
  white-space: nowrap;
  padding: 15px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-category-pills::-webkit-scrollbar {
  display: none;
}

.mobile-category-pills .pill {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 8px;
  background: #f0f0f0;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-category-pills .pill.active,
.mobile-category-pills .pill:active {
  background: var(--color-primary);
  color: #fff;
}

/* Mobile Portfolio Carousel */
.mobile-portfolio-carousel {
  display: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px;
}

.mobile-portfolio-carousel::-webkit-scrollbar {
  display: none;
}

.mobile-portfolio-carousel .carousel-item {
  flex: 0 0 85%;
  scroll-snap-align: center;
  margin-right: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: var(--color-bg);
}

.mobile-portfolio-carousel .carousel-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mobile-portfolio-carousel .carousel-item .info {
  padding: 15px;
}

.mobile-portfolio-carousel .carousel-item .info h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #333;
}

.mobile-portfolio-carousel .carousel-item .info p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.mobile-portfolio-carousel .carousel-item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
}

.mobile-portfolio-carousel .carousel-item .play-btn i {
  color: var(--color-primary);
  font-size: 24px;
  margin-left: 4px;
}

.carousel-item-wrapper {
  position: relative;
}

/* Split-screen responsive - medium screens */
@media (max-width: 1200px) and (min-width: 1101px) {
  .split-section {
    min-height: 500px;
  }
  .split-image {
    width: 50%;
  }
  .split-content {
    width: 50%;
    padding: 40px 50px;
  }
  .split-content h2 {
    font-size: 36px;
  }
}
/* Split-screen responsive - small screens (stacked layout) */
@media (max-width: 1100px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column !important;
  }
  .split-image,
  .split-content {
    width: 100%;
  }
  .split-image {
    height: 450px;
  }
  .split-image::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.7) 60%, #fff 100%);
  }
  .split-section.reverse .split-image::after {
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 46, 0.3) 30%, rgba(26, 26, 46, 0.7) 60%, var(--color-dark) 100%);
  }
  .split-content {
    padding: 50px 30px;
  }
  .split-content h2 {
    font-size: 32px;
  }
}
/* Mobile About Section */
@media (max-width: 768px) {
  /* Show mobile elements, hide desktop */
  .mobile-category-pills {
    display: flex !important;
  }
  .mobile-portfolio-carousel {
    display: flex !important;
  }
  .work-item-filters {
    display: none !important;
  }
  .work-item-list {
    display: none !important;
  }
  /* Services mobile */
  #services .row {
    display: block !important;
  }
  #services .col-md-6 {
    width: 100% !important;
    float: none !important;
    padding: 0 20px !important;
  }
  #services .service-item {
    margin-bottom: 25px !important;
    text-align: center !important;
  }
  #services .service-text {
    text-align: center !important;
    margin-left: 0 !important;
  }
  #services .service-text h3 {
    font-size: 17px !important;
    text-align: center !important;
    display: block !important;
  }
  #services .service-text h3 i,
  #services .service-text h3 svg {
    display: block !important;
    margin: 0 auto 10px auto !important;
  }
  #services .service-text p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: center !important;
  }
  /* Why Prizm mobile */
  #why-prizm .row {
    display: block !important;
  }
  #why-prizm .col-md-6 {
    width: 100% !important;
    float: none !important;
    padding: 0 20px !important;
  }
  #challenges .service-item {
    margin-bottom: 25px !important;
    text-align: center !important;
  }
  #challenges .service-text {
    text-align: center !important;
    margin-left: 0 !important;
  }
  #challenges .service-text h3 {
    font-size: 20px !important;
    text-align: center !important;
  }
  #challenges .service-text p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: center !important;
  }
  #challenges p {
    font-size: 14px;
    line-height: 1.5;
  }
  #challenges .col-md-6 {
    width: 100% !important;
    padding: 0 15px !important;
  }
  /* Section headings mobile */
  .section-heading h2 {
    font-size: 28px;
  }
  .section-heading p {
    font-size: 14px;
    padding: 0 15px;
  }
  /* Hero section mobile fix - CRITICAL: Centers content vertically */
  #hero-unit {
    min-height: 100vh !important;
    min-height: 100dvh !important; /* Dynamic viewport height for mobile browsers */
    height: 100vh !important;
    height: 100dvh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  #hero-unit .hero-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    padding: 100px 20px 60px !important; /* Extra top padding for navbar */
    box-sizing: border-box !important;
    margin: 0 !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }
  #hero-unit .slide-caption,
  #hero-unit #slidecaption {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #hero-unit .hero-text {
    width: 100% !important;
    text-align: center !important;
  }
  #hero-unit .hero-text h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    padding: 0 10px !important;
  }
  #hero-unit .hero-text p {
    font-size: 16px !important;
    margin-bottom: 25px !important;
    padding: 0 10px !important;
  }
  #hero-unit .hero-text > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  #hero-unit .hero-text .btn,
  #hero-unit .hero-text a.btn {
    display: block !important;
    margin: 5px auto !important;
    width: 85% !important;
    max-width: 280px !important;
    padding: 14px 25px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
  }
}
/* Additional mobile overrides for main.css specificity */
@media screen and (min-width: 320px) and (max-width: 480px) {
  #hero-unit .hero-content {
    position: relative !important;
    top: auto !important;
    margin-top: 0 !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 320px) {
  #hero-unit .hero-content {
    position: relative !important;
    top: auto !important;
    margin-top: 0 !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    width: 100% !important;
  }
}
/* ============================================
   MOBILE HERO OVERRIDES (was index.html block 2, lines 1554-1626)
   ============================================ */
@media screen and (max-width: 768px) {
  #hero-unit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    height: auto !important;
  }
  #hero-unit .hero-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
    margin: 0 !important;
    margin-top: 0 !important;
    transform: none !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 80px 15px 40px !important;
  }
  #hero-unit .slide-caption,
  #hero-unit #slidecaption {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  #hero-unit .hero-text {
    text-align: center !important;
    width: 100% !important;
  }
  #hero-unit .hero-text h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
    padding: 0 5px !important;
    margin-bottom: 15px !important;
  }
  #hero-unit .hero-text p {
    font-size: 15px !important;
    padding: 0 10px !important;
    margin-bottom: 20px !important;
    background: none !important;
  }
  #hero-unit .hero-text > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
  }
  #hero-unit .hero-text .btn,
  #hero-unit .hero-text a.btn,
  #hero-unit .hero-text > div a {
    display: block !important;
    width: 90% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}
/* ------------------ SERVICES INDEX (services.html) ------------------ */
/* Extracted from <style> block in services.html (lines 22-226).
   Hex literals matching tokens replaced with var(--…) references where unambiguous.
   Gradients keep literal hex (var() in gradient stops can be ambiguous in older browsers). */
/* Override preloader hide */
body {
  display: block !important;
}

/* Hero Section - Full Width Parallax */
.services-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  bottom: -50px;
  background: url("assets/RAW/IMG_7857-optimized.jpg") no-repeat center center;
  background-size: cover;
  z-index: 0;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(15, 52, 96, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content h1 .accent {
  color: var(--color-primary);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Service Section */
.service-section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

.service-section:nth-child(even) {
  background: #f8f9fa;
}

.service-section .container {
  max-width: 1100px;
}

.service-section h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 25px;
}

.service-section h2 .icon {
  color: var(--color-primary);
  margin-right: 15px;
}

.service-section .lead {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.7;
}

.service-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 40px 0 20px;
}

.service-section p {
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}

.service-section ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.service-section ul li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 17px;
  color: #555;
  border-bottom: 1px solid #eee;
}

.service-section ul li:last-child {
  border-bottom: none;
}

.service-section ul li::before {
  content: "\f26e";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* Service Visual */
.service-visual {
  background: linear-gradient(135deg, #00aeef 0%, #0088cc 100%);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual i {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.2);
}

.service-visual.dark {
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.service-visual.red {
  background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
}

.service-visual.purple {
  background: linear-gradient(135deg, #9b59b6 0%, #0f3460 100%);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #00aeef 0%, #0088cc 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-cta {
  background: #fff;
  color: var(--color-primary);
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-section .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Navbar override (services-index page only — was unscoped before extraction
   and bled to the homepage; scope it to body.page-services to fix). */
body.page-services .navbar {
  background: rgba(26, 26, 46, 0.95) !important;
}
body.page-services .navbar-nav > li > a {
  color: #fff !important;
}
body.page-services .navbar-nav > li > a:hover {
  color: var(--color-primary) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero {
    padding: 140px 0 60px;
  }
  .services-hero h1 {
    font-size: 36px;
  }
  .services-hero p {
    font-size: 16px;
    padding: 0 20px;
  }
  .service-section {
    padding: 60px 0;
  }
  .service-section h2 {
    font-size: 28px;
  }
  .service-visual {
    height: 250px;
    margin-bottom: 40px;
  }
  .service-visual i {
    font-size: 80px;
  }
}
/* ------------------ SERVICE DETAIL PAGES ------------------ */
/* Extracted from <style> blocks across 7 service pages.
   Pages: brand, corp, corp-mkt, drone, internal, motion, realestate.
   Five distinct content variants found by sha256:
     V1 (brand, corp)    — has .process-steps + .examples-grid + .faq-item
     V2 (internal, motion) — like V1 minus .process-steps; smaller h1 (44px)
     V3 (corp-mkt)       — has .section-cta + 2-col examples-grid (no auto-fit)
     V4 (drone)          — has .credentials-grid + .examples-grid (V4-style with display:block)
     V5 (realestate)     — has .subheader + tighter typography
   Strategy: base section is the union of selectors using most-common values;
   per-page deltas scoped under body.page-{slug}. */
/* ============================================
   BASE — applies to all service detail pages
   ============================================ */
body {
  display: block !important;
}

/* Hero */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 160px 0 80px;
  text-align: center;
}

.page-hero h1 {
  text-wrap: balance;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-hero .accent {
  color: var(--color-primary);
}

.page-hero .subheader {
  /* V5-only markup, but harmless rule on other pages */
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
}

.page-hero .intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Content Sections */
.content-section {
  padding: 80px 0;
}

.content-section:nth-child(even) {
  background: #f8f9fa;
}

.content-section .container {
  max-width: 900px;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 25px;
}

.content-section h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 30px 0 15px;
}

.content-section p {
  color: #555;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-section ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.content-section ul li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 17px;
  color: #555;
  border-bottom: 1px solid #eee;
}

.content-section ul li:last-child {
  border-bottom: none;
}

.content-section ul li::before {
  content: "\f26e";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* Examples Grid (V1, V2, V4, V5 — V3 overrides below) */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.example-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.example-item:hover {
  transform: translateY(-5px);
}

.example-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.example-item .caption {
  padding: 15px;
  background: var(--color-bg);
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

/* Credentials Grid (V4 / drone only — markup specific to that page) */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.credential-item {
  background: var(--color-bg);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.credential-item i {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.credential-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
}

/* Related Services (V3, V4, V5 — but harmless if not used) */
.related-services {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.related-services a {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.related-services a:hover {
  background: #0099d6;
  transform: translateY(-2px);
}

/* FAQ (V1, V5 — but harmless if not used) */
.faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.faq-item p {
  margin-bottom: 0;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #00aeef 0%, #0088cc 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background: #fff;
  color: var(--color-primary);
  padding: 15px 40px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin: 5px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: var(--color-primary);
}

.btn-cta.outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-cta.outline:hover {
  color: #fff;
}

/* Navbar (service-detail pages only — was unscoped before extraction and bled
   to the homepage; scope to all service-detail page-* body classes). */
body.page-brand .navbar,
body.page-corp .navbar,
body.page-corp-mkt .navbar,
body.page-drone .navbar,
body.page-internal .navbar,
body.page-motion .navbar,
body.page-realestate .navbar {
  background: rgba(26, 26, 46, 0.95) !important;
}
body.page-brand .navbar-nav > li > a,
body.page-corp .navbar-nav > li > a,
body.page-corp-mkt .navbar-nav > li > a,
body.page-drone .navbar-nav > li > a,
body.page-internal .navbar-nav > li > a,
body.page-motion .navbar-nav > li > a,
body.page-realestate .navbar-nav > li > a {
  color: #fff !important;
}
body.page-brand .navbar-nav > li > a:hover,
body.page-corp .navbar-nav > li > a:hover,
body.page-corp-mkt .navbar-nav > li > a:hover,
body.page-drone .navbar-nav > li > a:hover,
body.page-internal .navbar-nav > li > a:hover,
body.page-motion .navbar-nav > li > a:hover,
body.page-realestate .navbar-nav > li > a:hover {
  color: var(--color-primary) !important;
}

/* Responsive (base) */
@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 60px;
  }
  .page-hero h1 {
    text-wrap: balance;
    font-size: 32px;
  }
  .page-hero .intro {
    font-size: 17px;
    padding: 0 20px;
  }
  .content-section {
    padding: 50px 0;
  }
  .content-section h2 {
    font-size: 26px;
  }
}
/* ============================================
   PER-PAGE OVERRIDES
   ============================================ */
/* V1 pages: brand-storytelling, corporate-video
   - smaller intro max-width (700px instead of base 750px)
   - process-steps section (V1-only markup) */
body.page-brand .page-hero .intro,
body.page-corp .page-hero .intro {
  max-width: 700px;
}
body.page-brand .process-steps,
body.page-corp .process-steps {
  counter-reset: step;
}
body.page-brand .process-step,
body.page-corp .process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
body.page-brand .process-step:last-child,
body.page-corp .process-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
body.page-brand .process-step::before,
body.page-corp .process-step::before {
  counter-increment: step;
  content: counter(step);
  background: var(--color-primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  margin-right: 20px;
}
body.page-brand .process-step-content h3,
body.page-corp .process-step-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
body.page-brand .process-step-content p,
body.page-corp .process-step-content p {
  margin-bottom: 0;
}

/* V2 pages: internal-communications, motion-graphics
   - smaller h1 (44px instead of 48px)
   - smaller intro max-width (700px)
   - smaller mobile h1 (30px instead of 32px) */
body.page-internal .page-hero h1,
body.page-motion .page-hero h1 {
  font-size: 44px;
}
body.page-internal .page-hero .intro,
body.page-motion .page-hero .intro {
  max-width: 700px;
}
@media (max-width: 768px) {
  body.page-internal .page-hero h1,
  body.page-motion .page-hero h1 {
    font-size: 30px;
  }
}

/* V3 page: corporate-marketing
   - section-cta button (V3-only markup)
   - 2-column examples-grid (overrides base auto-fit)
   - example-item with dark caption + 16:9 aspect ratio */
body.page-corp-mkt .section-cta {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  margin-top: 15px;
  transition: all 0.3s ease;
}
body.page-corp-mkt .section-cta:hover {
  background: #0099d6;
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
body.page-corp-mkt .examples-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 0;
}
body.page-corp-mkt .example-item {
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.page-corp-mkt .example-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
body.page-corp-mkt .example-item img {
  aspect-ratio: 16/9;
  height: auto;
  display: block;
}
body.page-corp-mkt .example-item .caption {
  background: var(--color-dark);
  color: #fff;
}
@media (max-width: 768px) {
  body.page-corp-mkt .examples-grid {
    grid-template-columns: 1fr;
  }
}

/* V4 page: drone — no extra overrides; base already matches */
/* V5 page: real-estate
   - smaller intro typography (18px / 1.8 line-height)
   - tighter content-section h3 (20px, smaller margin)
   - smaller mobile intro (16px) and subheader sizing */
body.page-realestate .page-hero .intro {
  font-size: 18px;
  line-height: 1.8;
}
body.page-realestate .content-section h3 {
  font-size: 20px;
  margin: 25px 0 12px;
}
@media (max-width: 768px) {
  body.page-realestate .page-hero .subheader {
    font-size: 18px;
  }
  body.page-realestate .page-hero .intro {
    font-size: 16px;
  }
}

/* ------------------ UTILITIES ------------------ */
/* Single-property classes for high-frequency inline-style replacements.
   Compose freely (e.g. class="text-accent fw-500"). */
/* Text colors */
.text-accent {
  color: var(--color-primary);
}

.text-tertiary {
  color: var(--color-text-tertiary);
}

/* Font weights */
.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

/* Margin */
.m-0 {
  margin: 0;
}

.mt-25 {
  margin-top: 25px;
}

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

/* Display + media */
.media-block {
  width: 100%;
  height: auto;
  display: block;
}

.logo-img {
  height: 38px;
  width: auto;
}

.flex-center-wrap {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* (.text-center is provided by Bootstrap 3 — reuse, don't duplicate.) */
/* ------------------ COMPONENTS ------------------ */
/* Reusable component classes for repeated multi-property inline-style patterns.
   For single-property repeats see _utilities.scss. */
/* "Explore →" service-card link on homepage (5 occurrences) */
.service-card-cta {
  background: var(--color-bg);
  padding: 15px 25px;
  border-radius: 8px;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.service-card-cta:hover, .service-card-cta:focus {
  text-decoration: none;
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Footer-link row + nav-row pattern (9 occurrences) */
.flex-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Inline link list pattern (9 occurrences) */
.flex-inline-gap {
  display: flex;
  gap: 25px;
  font-size: 14px;
}

/* Centered play-button circle overlay on video thumbs (4 occurrences) */
.video-overlay-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rounded video thumbnail wrapper (4 occurrences) */
.video-thumb-rounded {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
