/* Minification failed. Returning unminified contents.
(5147,1): run-time error CSS1019: Unexpected token, found '@import'
(5147,9): run-time error CSS1019: Unexpected token, found 'url('https://fonts.googleapis.com/css?family=Raleway:400,500,700,800i')'
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
@charset "UTF-8";

/*!
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(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.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(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.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(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.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(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.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;
}
/* --------------------------------

Primary style

-------------------------------- */
*, *::after, *::before {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {

    font-size: 1.6rem;
    font-family: "Fira Sans", sans-serif;
    color: #383838;
    background-color: #f8f8f8;
}

a {
    color: #7b9d6f;
    text-decoration: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid #fff !important;
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px #444 inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
}
/* --------------------------------

Main Components

-------------------------------- */
.cd-horizontal-timeline {
    opacity: 0;
    margin: 2em auto;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

    .cd-horizontal-timeline::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'mobile';
        display: none;
    }

    .cd-horizontal-timeline.loaded {
        /* show the timeline after events position has been set (using JavaScript) */
        opacity: 1;
    }

    .cd-horizontal-timeline .timeline {
        position: relative;
        height: 100px;
        width: 100%;
        max-width: 100%;
        border: dotted 1px #003471;
        padding: 15px;
        margin: 0 auto;
    }

    .cd-horizontal-timeline .events-wrapper {
        position: relative;
        height: 100%;
        overflow: hidden;
    }

        .cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
            /* these are used to create a shadow effect at the sides of the timeline */
            content: '';
            position: absolute;
            z-index: 2;
            top: 0;
            height: 100%;
            width: 20px;
        }

    .cd-horizontal-timeline .events {
        /* this is the grey line/timeline */
        position: absolute;
        z-index: 1;
        left: 0;
        top: 60px;
        height: 2px;
        /* width will be set using JavaScript */
        background: #003471;
        -webkit-transition: -webkit-transform 0.4s;
        -moz-transition: -moz-transform 0.4s;
        transition: transform 0.4s;
    }

    .cd-horizontal-timeline .filling-line {
        /* this is used to create the green line filling the timeline */
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: #7b9d6f;
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -ms-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: -webkit-transform 0.3s;
        -moz-transition: -moz-transform 0.3s;
        transition: transform 0.3s;
    }

    .cd-horizontal-timeline .events a {
        position: absolute;
        bottom: 0;
        z-index: 2;
        text-align: center;
        font-size: 13px;
        font-family: 'Raleway-Medium';
        padding-bottom: 15px;
        color: #7b7b7b;
        /* fix bug on Safari - text flickering while timeline translates */
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }

        .cd-horizontal-timeline .events a bold {
            color: #003471;
            font-family: 'Raleway-Bold';
        }

        .cd-horizontal-timeline .events a::after {
            /* this is used to create the event spot */
            content: '';
            position: absolute;
            left: 50%;
            right: auto;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            bottom: -5px;
            height: 12px;
            width: 12px;
            border-radius: 50%;
            border: 2px solid #003471;
            background-color: #003471;
            -webkit-transition: background-color 0.3s, border-color 0.3s;
            -moz-transition: background-color 0.3s, border-color 0.3s;
            transition: background-color 0.3s, border-color 0.3s;
        }

.no-touch .cd-horizontal-timeline .events a:hover::after {
    background-color: #7b9d6f;
    border-color: #7b9d6f;
}

.cd-horizontal-timeline .events a.selected {
    pointer-events: none;
}

    .cd-horizontal-timeline .events a.selected::after {
        background-color: #003471;
        border-color: #003471;
    }

.cd-horizontal-timeline .events a.older-event::after {
    border-color: #7b9d6f;
}

@media only screen and (min-width: 1100px) {
    .cd-horizontal-timeline::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }
}

.cd-timeline-navigation a {
    /* these are the left/right arrows to navigate the timeline */
    position: absolute;
    z-index: 1;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    /* replace text with an icon */
    overflow: hidden;
    color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

    .cd-timeline-navigation a::after {
        /* arrow icon */
        content: '';
        position: absolute;
        height: 16px;
        width: 16px;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        background: url(../img/cd-arrow.svg) no-repeat 0 0;
    }

    .cd-timeline-navigation a.prev {
        left: 0;
        -webkit-transform: translateY(-50%) rotate(180deg);
        -moz-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        -o-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg);
    }

    .cd-timeline-navigation a.next {
        right: 0;
    }

.no-touch .cd-timeline-navigation a:hover {
    border-color: #7b9d6f;
}

.cd-timeline-navigation a.inactive {
    cursor: not-allowed;
}

    .cd-timeline-navigation a.inactive::after {
        background-position: 0 -16px;
    }

.no-touch .cd-timeline-navigation a.inactive:hover {
    border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
    position: relative;
    width: 100%;
    margin: 2em 0;
    overflow: hidden;
    -webkit-transition: height 0.4s;
    -moz-transition: height 0.4s;
    transition: height 0.4s;
}

    .cd-horizontal-timeline .events-content li {
        position: absolute;
        z-index: 1;
        width: 100%;
        left: 0;
        top: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        padding: 0 5%;
        opacity: 0;
        -webkit-animation-duration: 0.4s;
        -moz-animation-duration: 0.4s;
        animation-duration: 0.4s;
        -webkit-animation-timing-function: ease-in-out;
        -moz-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

        .cd-horizontal-timeline .events-content li.selected {
            /* visible event content */
            position: relative;
            z-index: 2;
            opacity: 1;
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
        }

        .cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
            -webkit-animation-name: cd-enter-right;
            -moz-animation-name: cd-enter-right;
            animation-name: cd-enter-right;
        }

        .cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
            -webkit-animation-name: cd-enter-left;
            -moz-animation-name: cd-enter-left;
            animation-name: cd-enter-left;
        }

        .cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
            -webkit-animation-direction: reverse;
            -moz-animation-direction: reverse;
            animation-direction: reverse;
        }

        .cd-horizontal-timeline .events-content li > * {
            max-width: 800px;
            margin: 0 auto;
        }

    .cd-horizontal-timeline .events-content h2 {
        font-weight: bold;
        font-size: 2.6rem;
        font-family: "Playfair Display", serif;
        font-weight: 700;
        line-height: 1.2;
    }

    .cd-horizontal-timeline .events-content em {
        display: block;
        font-style: italic;
        margin: 10px auto;
    }

        .cd-horizontal-timeline .events-content em::before {
            content: '- ';
        }

    .cd-horizontal-timeline .events-content p {
        font-size: 1.4rem;
        color: #959595;
    }

    .cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
        line-height: 1.6;
    }

@media only screen and (min-width: 768px) {
    .cd-horizontal-timeline .events-content h2 {
        font-size: 7rem;
    }

    .cd-horizontal-timeline .events-content em {
        font-size: 2rem;
    }

    .cd-horizontal-timeline .events-content p {
        font-size: 1.8rem;
    }
}

@-webkit-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}

@-moz-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -moz-transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0%);
    }
}

@keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}

@-moz-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0%);
    }
}

@keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}

.form-control {
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fff;
    color: #000;
    box-shadow: none;
}

.form-group {
    text-align: left;
}

.productShortDescr {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}


.serviceButtons {
    margin-top: 50px;
    background-color: #F9C24A;
    color: #003471;
    width: 100%;
    cursor: pointer;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
 
}
.darkTitle {
   color: #363636;
}

.i-circle {
    background: #F9C24A;
    color: #fff;
    padding: 0px 7px;
    border-radius: 84%;
    font-size: 14px;
    cursor: pointer;
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/

.wrap-input {
color:white;
}

body {
    line-height: 26px;
    font-size: 14px;
    background-repeat: repeat;
    background-color: #ebebeb;
    color: #4d4d4d;
    font-weight: 400;
    background: #fff;
}

@font-face {
    font-family: 'Raleway-ExtraLight';
    src: url('../fonts/Raleway-ExtraLight.eot');
    src: url('../fonts/Raleway-ExtraLight.woff2') format('woff2'), url('../fonts/Raleway-ExtraLight.woff') format('woff'), url('../fonts/Raleway-ExtraLight.ttf') format('truetype'), url('../fonts/Raleway-ExtraLight.svg#Raleway-ExtraLight') format('svg'), url('../fonts/Raleway-ExtraLight.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'raleway_regular';
    src: url('../fonts/raleway_regular.eot');
    src: url('../fonts/raleway_regular.eot') format('embedded-opentype'), url('../fonts/raleway_regular.woff2') format('woff2'), url('../fonts/raleway_regular.woff') format('woff'), url('../fonts/raleway_regular.ttf') format('truetype'), url('../fonts/raleway_regular.svg#raleway_regular') format('svg');
}

@font-face {
    font-family: 'Raleway-Medium';
    src: url('../fonts/Raleway-Medium.eot');
    src: url('../fonts/Raleway-Medium.woff2') format('woff2'), url('../fonts/Raleway-Medium.woff') format('woff'), url('../fonts/Raleway-Medium.ttf') format('truetype'), url('../fonts/Raleway-Medium.svg#Raleway-Medium') format('svg'), url('../fonts/Raleway-Medium.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-Bold';
    src: url('../fonts/Raleway-Bold.eot');
    src: url('../fonts/Raleway-Bold.woff2') format('woff2'), url('../fonts/Raleway-Bold.woff') format('woff'), url('../fonts/Raleway-Bold.ttf') format('truetype'), url('../fonts/Raleway-Bold.svg#Raleway-Bold') format('svg'), url('../fonts/Raleway-Bold.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

.no-padding {
    padding: 0px;
}

.row {
    margin: 0px;
}

a {
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    font-family: 'Raleway', sans-serif;
}

    a:hover, a:focus {
        text-decoration: none;
        outline: 0 !important;
    }

h1, h2, h3, h4, h5, h6 {
    color: #363636;
    margin-top: 0px;
}

.top-bar span {
    border-right: solid 1px #fff;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
}

.top-bar .list-inline > li {
    padding-left: 0px;
}

.maincontainer {
    padding: 100px 0px 0px;
}

.border-image:before {
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    z-index: 1;
    content: "";
    border: 1px solid #fff200;
    position: absolute;
}

.border-image:after {
    left: 5%;
    top: 5%;
    z-index: 1;
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-top: 6px solid #fff200;
    border-left: 6px solid #fff200;
    margin-left: -3px;
    margin-top: -3px;
}

.border-image span:after {
    right: 28px;
    bottom: 24px;
    z-index: 1;
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-right: 6px solid #fff200;
    border-bottom: 6px solid #fff200;
    margin-right: -3px;
    margin-bottom: -3px;
}

.top-bar {
    background-color: #060c17;
    color: #fff;
    padding: 5px 0;
}

    .top-bar ul {
        margin: 0px;
        padding: 0px;
    }

        .top-bar ul li a {
            color: #fff;
        }

            .top-bar ul li a:hover {
                color: #999;
            }

.header-transparent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    margin-top: 0px !important;
}

    .header-transparent .top-bar {
        /*background-color: rgba(68, 14, 98, 0.36);*/
        /*background-color: rgba(249, 194, 74, 0.36);*/
        background-color: rgba(0, 52, 113, 0.36);
    }

.navbar-default {
    background-color: #fff;
    border: 0px;
    margin: 0px;
    position: relative;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.4);
}

    .navbar-default .navbar-nav > li > a {
        color: #000;
        font-weight: 700;
        position: relative;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .navbar-default .navbar-nav > li.active > a:after {
        content: "";
        width: 7px;
        height: 30px;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -4px;
        background: url(../images/v1-active.png) no-repeat;
    }

    .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
        color: #000;
        background-color: transparent;
    }

.navbar-brand {
    padding: 20px 15px;
}

.top-search {
    width: 250px;
    padding: 10px 15px;
}

.clients {
    padding: 30px 0;
    margin: 0px;
}

    .clients li {
        vertical-align: middle;
        padding: 10px 20px;
    }

.footer {
    padding: 50px 0;
    background-color: #060c17;
}

    .footer p {
        color: #647188;
    }

    .footer h3 {
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 14px;
        color: #fff;
    }

    .footer ul.f-nav li a {
        display: block;
        color: #fff;
    }

        .footer ul.f-nav li a:before {
            content: "\f101";
            font-family: 'FontAwesome';
            margin-right: 6px;
        }

.news-list li img {
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    float: left;
    margin-right: 15px;
}

.news-list h5 {
    margin: 0px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.news-list p {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 16px;
}

.news-list span {
    font-size: 12px;
    color: #333f55;
}

.news-list li {
    padding-bottom: 20px;
}

.footer-bottom {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
}

    .footer-bottom ul {
        margin: 0;
        padding: 0;
    }

        .footer-bottom ul li a {
            color: #999;
            font-size: 20px;
        }

            .footer-bottom ul li a:hover {
                color: #333f55;
            }

.footer .col-md-3 {
    margin-bottom: 30px;
}

.footer form {
    position: relative;
    margin-bottom: 20px;
}

    .footer form button {
        position: absolute;
        right: 0;
        top: 0;
        border: 0px;
        background-color: #F9C24A;
        height: 40px;
        line-height: 40px;
        padding: 0px 20px;
        color: #000;
        font-size: 14px;
    }

.footer .form-control {
    border-radius: 0px;
    height: 40px;
    box-shadow: none;
    border: 0px;
}

.banner-deal {
    padding-bottom: 100px;
    padding-top: 300px;
    background: url("../images/deals/bg1.jpg") no-repeat top center;
    background-size: cover;
    text-align: center;
}

    .banner-deal h1, .banner-deal h2, .banner-deal p {
        color: #fff;
    }

    .banner-deal p {
        font-size: 18px;
        width: 70%;
        margin: 0 auto;
    }

    .banner-deal h1 {
        font-weight: 900;
        font-size: 50px;
        line-height: 50px;
        /*text-transform: capitalize;*/
    }

    .banner-deal h2 {
        color: #F9C24A;
        text-transform: uppercase;
        font-weight: 900;
        font-size: 70px;
        line-height: 70px;
    }

    .banner-deal form {
        margin-top: 30px;
    }

    .banner-deal .form-group {
        position: relative;
    }

        .banner-deal .form-group i {
            position: absolute;
            left: 10px;
            top: 12px;
            color: #999;
        }

        .banner-deal .form-group .form-control {
            padding-left: 30px;
            border-radius: 0px;
            height: 40px;
            border: 0px;
        }

    .banner-deal .btn {
        height: 40px;
        line-height: 40px;
        padding: 0px 10px;
    }

        .banner-deal .btn i {
            margin-right: 9px;
        }

    .banner-deal h5 {
        color: #fff;
        margin-top: 20px;
        font-size: 18px;
    }

.btn-yellow {
    background: #F9C24A;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.categories {
    background: #fff;
}

    .categories h4 {
        padding: 12px 15px;
        font-weight: 700;
        margin: 0px;
    }

    .categories li a {
        position: relative;
        display: block;
        padding: 0px 15px;
        height: 40px;
        line-height: 40px;
        border-top: 1px solid #f5f5f5;
        padding-left: 60px;
        color: #777;
    }

        .categories li a i {
            position: absolute;
            height: 40px;
            width: 40px;
            display: block;
            text-align: center;
            line-height: 40px;
            background: #f5f5f5;
            color: #777;
            top: 0;
            left: 0;
        }

        .categories li.active a, .categories li a:hover {
            background: #f5f5f5;
        }

            .categories li.active a:before, .categories li.active a:after, .categories li a:hover:before, .categories li a:hover:after {
                left: 40px;
                top: 50%;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
            }

            .categories li.active a:after, .categories li a:hover:after {
                border-left-color: #421c52;
                border-color: rgba(66, 28, 82, 0);
                border-width: 6px;
                margin-top: -6px;
            }

            .categories li.active a :before, .categories li a:hover :before {
                border-left-color: #421c52;
                border-color: rgba(66, 28, 82, 0);
                border-width: 12px;
                margin-top: -12px;
            }

            .categories li.active a i, .categories li a:hover i {
                color: #fff;
                background: #421c52;
            }

.slide-btm {
    padding: 15px 20px;
    background: #fff;
}

    .slide-btm h1, .slide-btm .rating i {
        color: #421c52;
    }

    .slide-btm h1 {
        font-weight: 900;
        margin: 0px;
    }

    .slide-btm h4 {
        font-weight: 700;
        margin-bottom: 6px;
    }

.tag {
    display: inline-block;
    text-decoration: underline;
    font-size: 13px;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
}

.main-heading {
    padding: 15px 0px;
    background: #fff;
    margin-bottom: 60px;
}

    .main-heading h1 {
        margin: 0px;
    }

    .main-heading a {
        color: #000;
        font-size: 20px;
        margin-top: 6px;
    }

.deal-box {
    margin-bottom: 30px;
}

    .deal-box .deal-desc {
        padding: 25px 15px;
        background: #fff;
    }

        .deal-box .deal-desc h4 {
            color: #363636;
        }

        .deal-box .deal-desc span {
            text-transform: uppercase;
            font-size: 12px;
            display: block;
        }

        .deal-box .deal-desc .rating {
            color: #421c52;
            margin-bottom: 15px;
        }

.btn-border {
    text-transform: uppercase;
    padding: 10px 25px;
    border: 1px dashed #ec008c;
    color: #ec008c;
    font-size: 11px;
    border-radius: 0px;
    font-weight: 500;
}

    .btn-border:hover {
        background: #ec008c;
        color: #fff;
    }

.coupon-thumb {
    background: #fff;
    padding: 20px 0;
    margin-bottom: 15px;
}

    .coupon-thumb img {
        display: block;
        margin: 0 auto;
    }

.coupon-text {
    margin-bottom: 30px;
}

    .coupon-text h5 {
        margin-bottom: 10px;
    }

    .coupon-text .rating {
        margin-bottom: 15px;
    }

.space-70 {
    height: 70px;
}

.ms-slide .ms-layer, .ms-fixed-layers .ms-layer {
    position: absolute;
    pointer-events: auto;
}

.text7 {
    color: #fff;
    font-size: 15px;
}

.full-wid {
    width: 100%;
    text-align: center;
}

.text6 {
    color: #fff;
    font-weight: 900;
    font-size: 60px;
}

.text6 {
    color: #fff;
    font-weight: 900;
    font-size: 60px;
}

.btn-blue {
    background-color: #ed1c24;
    color: #fff;
    border-radius: 0px;
}

.btn-yellow {
    background-color: #00a651;
    color: #333;
    border-radius: 0px;
}

/*--index20 css start Here--*/
.features {
    padding-bottom: 40px;
}

.feature-box {
    background: #F9C24A; /*#F9C24A;*/
    position: relative;
    margin-top: -228px;
    overflow: hidden;
    margin-bottom: 50px;
}

.feature-thumb {
    border-top: 10px solid #003471;
    border-left: 10px solid #003471;
    border-right: 10px solid #003471;
    position: relative;
    overflow: hidden;
}

.feature-desc {
    padding: 25px 20px;
    -webkit-transform: skewY(9deg);
    transform: skewY(9deg);
    margin-top: -28px;
    border-top: 10px solid #003471;
    background: #F9C24A;
    padding-top: 35px;
}

    .feature-desc h4 {
        color: #003471;
        position: relative;
        font-weight: bold;
        font-size: 16px;
        padding-bottom: 10px;
        /*text-transform: capitalize;*/
    }

        .feature-desc h4:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 3px;
            background: #F9C24A;
        }

    .feature-desc h4, .feature-desc p, .feature-desc a {
        -webkit-transform: skewY(-9deg);
        transform: skewY(-9deg);
    }

    .feature-desc h6 {
        color: #003471;
        position: relative;
        font-weight: bold;
        font-size: 16px;
        padding-bottom: 10px;
        /*text-transform: capitalize;*/
    }

        .feature-desc h6:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 3px;
            background: #F9C24A;
        }

    .feature-desc a {
        display: inline-block;
        margin-top: 15px;
        text-decoration: underline;
        font-size: 13px;
        color: #363636;
    }

        .feature-desc a:link {
            text-decoration: none;
        }

        .feature-desc a:hover {
            text-decoration: none;
        }

        .feature-desc a:visited {
            text-decoration: none;
        }

        .feature-desc a:active {
            text-decoration: none;
        }

    .feature-desc p, .feature-desc a {
        color: #363636;
        font-size: 13px;
    }

        .feature-desc a:hover {
            text-decoration: underline;
        }

    .feature-desc h4:after {
        position: absolute;
        content: "";
        border-bottom: solid 2px #003471;
        width: 70px;
        height: 4px;
        top: 25px;
        right: 0;
        left: 0;
    }

    .feature-desc h6:after {
        position: absolute;
        content: "";
        border-bottom: solid 2px #003471;
        width: 70px;
        height: 4px;
        top: 25px;
        right: 0;
        left: 0;
    }

.why-choose {
    background: #003471 url(../images/architecture/texture.png) repeat-x;
    padding: 100px 0px;
    background-size: cover;
}

.choose-head {
    padding: 13px;
    border: dashed 1px #fff;
    left: 0px;
    padding-left: 250px;
    right: 500px;
    bottom: auto;
    border-left: none;
}

    .choose-head h3 {
        font-family: 'Raleway-Bold';
        color: #F9C24A;
        font-size: 32px;
    }

    .choose-head p {
        font-family: 'raleway_regular';
        color: #949dae;
        font-size: 13px;
        padding-top: 20px;
    }

.why-choose .feature-box {
    background: none;
    margin-top: 45px;
    margin-bottom: 0px;
    color: #fff;
}

    .why-choose .feature-box i {
        float: left;
        width: 60px;
        height: 60px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        text-align: center;
        background: #fff;
        line-height: 60px;
        font-size: 24px;
        color: #363636;
        margin-right: 20px;
    }

    .why-choose .feature-box h3 {
        font-weight: 700;
        font-size: 16px;
        color: #fff;
    }

    .why-choose .feature-box p {
        font-family: 'Raleway-Medium';
        font-size: 13px;
        color: #949dae;
        line-height: 24px;
    }

.why-choose .overflo-h {
    overflow: hidden;
}

.architecture-service {
    padding: 100px 0px 0px;
    border-bottom: none;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.4);
}

.service-head {
    /*background: url(../images/heading-bg.png) center top no-repeat;*/
}

    .service-head h4 {
        font-family: 'Raleway-Bold';
        color: #363636;
        font-size: 32px;
        padding-top: 25px;
        padding-bottom: 30px;
        text-align: center;
    }

.architecture-service .nav-tabs {
    border-bottom: none;
    margin-top: 50px;
}

    .architecture-service .nav-tabs > li {
        margin-right: 20px; /*30px;*/
        /*border: solid 1px #003471;*/
        border-style: solid;
        border-width: 1px;
        border-color: #003471;
        padding: 5px 10px 5px 10px; /*15px 42px;*/
        transition: all 0.85s;
        width: 15%;
        height: 12em;
    }

.architecture-service .nav > li > a > img {
    padding-bottom: 6px;
    margin: 0 auto;
}

.architecture-service .nav > li > a:focus, .nav > li > a:hover {
    background: none;
    border: none;
}

.architecture-service .nav-tabs > li > a {
    font-family: 'Raleway-Medium';
    font-size: 14px; /*16px;*/
    color: #003471;
    border: none;
}

.architecture-service .tab-content.g-pt-70 {
    margin-top: 60px;
}

.architecture-service .archi-tab {
}

    .architecture-service .archi-tab h2 {
        font-family: 'Raleway-Bold';
        color: #003471;
        font-size: 32px;
        padding-bottom: 0px;
    }

    .architecture-service .archi-tab p {
        color: #7b7b7b;
        font-family: 'Raleway-Medium';
        font-size: 13px;
        padding-top: 20px;
    }

.our-partners.wow.animated.fadeInUp.animated {
    background: #ebebeb;
}

.architecture-service .ui-widget-content {
    background: none;
    height: auto;
}

.architecture-service section {
    padding: 0px;
    border-bottom: none;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    color: inherit;
}

/*our-project*/
section.Architech-project {
    border-bottom: 0px;
}

.Architech-project {
    padding: 0px 0px 0px;
}

.portfolio-box.iso-call.work-col-3 {
}

.work-col-3 .project-post {
    padding: 0px;
    width: 25%;
    float: left;
}

.work-box {
    position: relative;
    display: block;
    overflow: hidden;
}

    .work-box .work-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #F9C24A;
        /* Old browsers */
        background: -moz-linear-gradient(left, #F9C24A 100%, #00c2ff 55%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(left, #F9C24A 100%, #00c2ff 55%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, #F9C24A 100%, #00c2ff 55%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F9C24A', endColorstr='#F9C24A',GradientType=1 );
        /* IE6-9 */
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        opacity: 0;
        font-size: 20px;
        text-align: center;
    }

        .work-box .work-overlay span {
            display: block;
            /*background-image: url(../images/personal/plus.png);*/
            background-repeat: no-repeat;
            width: 216px;
            height: 100px;
            position: absolute;
            left: 33%;
            top: 50%;
            margin-left: -50px;
            margin-top: -54px;
            z-index: 1;
        }

    .work-box:hover .work-overlay {
        opacity: 1;
    }

.Architech-project .service-head {
    margin-bottom: 60px;
}

/*team-members*/

section.arch-member {
    padding: 0px;
    border-bottom: 0px;
}

    section.arch-member .service-head {
        text-align: center;
        margin-bottom: 50px;
        margin-top: 100px;
    }

        section.arch-member .service-head p {
            color: #949dae;
            font-family: 'Raleway-Medium';
            font-size: 13px;
            padding-top: 30px;
        }

.member-overlay {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transition: opacity .25s ease;
    -moz-transition: opacity .25s ease;
    overflow: hidden;
    position: relative;
}

.overlay-content {
    background: #F9C24A;
    border-radius: 20px;
    border: solid 8px #fff;
    text-align: center;
    transform: translateY(-20%);
    -webkit-transform: translateY(-20%);
    width: 100%;
    position: absolute;
    top: 50%;
    opacity: 0;
    left: 0;
    padding: 15px;
    transition: all 0.4s;
    z-index: 1;
}

    .overlay-content:hover {
        opacity: 1;
    }

    .overlay-content h3 {
        font-family: 'Raleway-Bold';
        font-size: 16px;
        color: #363636;
    }

    .overlay-content span {
        color: #363636;
        font-family: 'Raleway-Medium';
        font-size: 13px;
    }

    .overlay-content p {
        color: #363636;
        font-family: 'Raleway-Medium';
        font-size: 13px;
        padding-top: 15px;
        border-top: solid 2px #7a6b00;
    }

    .overlay-content ul {
        padding: 10px 0px 0px;
        text-align: center;
        display: inline-block;
    }

        .overlay-content ul li {
            float: left;
            list-style: none;
        }

            .overlay-content ul li a {
                color: #363636;
            }

                .overlay-content ul li a i {
                    font-size: 20px;
                    margin-right: 15px
                }

.section-circle {
    padding: 90px 0;
    padding-bottom: 60px;
    background: url(../images/architecture/circle.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
}

.circle-box {
    width: 170px;
    height: 170px;
    margin: 0 auto;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
    line-height: 170px;
    font-size: 28px;
    font-weight: 700;
    background: url(../images/architecture/yellow-circle.png) no-repeat;
}

.section-circle span {
    /*text-transform: capitalize;*/
    display: block;
    color: #fff;
    margin-top: 5px;
}

section.Architecture-letest {
    padding: 100px 0px;
    background: #ebebeb;
    border-bottom: none;
}

.news-box.text-center {
    margin-top: 40px;
}

section.Architecture-letest .service-head p {
    color: #949dae;
    font-family: 'Raleway-Medium';
    font-size: 13px;
    text-align: center;
    padding-top: 50px;
}

section.Architecture-letest .news-desc {
    padding: 30px 20px;
}

    section.Architecture-letest .news-desc h4 {
        font-family: 'Raleway-Bold';
        font-size: 16px;
        color: #363636;
    }

    section.Architecture-letest .news-desc p {
        font-family: 'Raleway-Medium';
        font-size: 13px;
        padding-top: 17px;
        margin-bottom: 30px;
        color: #7b7b7b;
    }

    section.Architecture-letest .news-desc h5 {
        font-family: 'Raleway-Bold';
        font-size: 13px;
        color: #363636;
    }

    section.Architecture-letest .news-desc ul li {
        line-height: 16px;
        border-right: 1px solid #9e9e9e;
        padding: 0px 10px;
        color: #7b7b7b;
        font-family: 'Raleway-Regular';
        font-size: 13px;
    }

.testimonials {
    padding: 90px 0 0px
}

    .testimonials .service-head {
        /*background: url(../images/heading-bg.png) no-repeat;*/
        height: 80px;
        margin-bottom: 50px;
    }

        .testimonials .service-head h4 {
            text-align: left;
            padding-left: 23px;
        }

.testi-wrapper {
    background: #003471;
}

.testimonials .flexslider {
    background: none;
    margin: 70px 0 35px;
    border: none;
    color: #fff;
    text-align: center;
}

.testimonials .open-image {
    margin-top: -110px;
}

.testimonials .flexslider small {
    color: #949dae;
}

.testimonials .flexslider h5 {
    color: #fff;
}

/*about-architecture css start Here*/
.about-architecture .header-transparent {
    position: relative;
}

.about-architecture {
    background: url(../images/about.png) no-repeat;
    background-size: cover;
    padding: 100px 0 0px;
}

    .about-architecture h5 {
        color: #F9C24A;
        padding-top: 130px;
        font-size: 72px;
        font-family: 'Raleway-Bold';
        font-weight: 900;
    }

    .about-architecture h3 {
        color: #F9C24A;
        padding-top: 130px;
        font-size: 32px;
        font-family: 'Raleway-Bold';
        font-weight: 900;
    }

    .about-architecture .breadcrumb {
        padding: 10px 0px;
        list-style: none;
        background: none;
    }

        .about-architecture .breadcrumb > li {
            color: #fff;
            padding-left: 0px;
            padding-right: 0px;
            font-family: 'Raleway-Medium';
            font-size: 16px;
        }

        .about-architecture .breadcrumb i {
            color: #fff;
            font-size: 14px;
            padding-left: 10px;
            padding-right: 10px;
        }

/*about-architecture-hetronic css start Here*/
.about-architecture-hetronic .header-transparent {
    position: relative;
}

.about-architecture-hetronic {
    background: url(../images/hetronicabout.jpg) no-repeat;
    background-size: cover;
    padding: 100px 0 0px;
}

    .about-architecture-hetronic h5 {
        color: #F9C24A;
        padding-top: 130px;
        font-size: 72px;
        font-family: 'Raleway-Bold';
        font-weight: 900;
    }

    .about-architecture-hetronic h3 {
        color: #F9C24A;
        padding-top: 130px;
        font-size: 32px;
        font-family: 'Raleway-Bold';
        font-weight: 900;
    }

    .about-architecture-hetronic .breadcrumb {
        padding: 10px 0px;
        list-style: none;
        background: none;
    }

        .about-architecture-hetronic .breadcrumb > li {
            color: #fff;
            padding-left: 0px;
            padding-right: 0px;
            font-family: 'Raleway-Medium';
            font-size: 16px;
        }

        .about-architecture-hetronic .breadcrumb i {
            color: #fff;
            font-size: 14px;
            padding-left: 10px;
            padding-right: 10px;
        }

/*about-architecture-falconiq css start Here*/
.about-architecture-falconiq .header-transparent {
    position: relative;
}

.about-architecture-falconiq {
    background: url(../images/BCSabout.jpg) no-repeat;
    background-size: cover;
    padding: 100px 0 0px;
}

    .about-architecture-falconiq h5 {
        color: #F9C24A;
        padding-top: 130px;
        font-size: 72px;
        font-family: 'Raleway-Bold';
        font-weight: 900;
    }

    .about-architecture-falconiq h3 {
        color: #F9C24A;
        padding-top: 130px;
        font-size: 32px;
        font-family: 'Raleway-Bold';
        font-weight: 900;
    }

    .about-architecture-falconiq .breadcrumb {
        padding: 10px 0px;
        list-style: none;
        background: none;
    }

        .about-architecture-falconiq .breadcrumb > li {
            color: #fff;
            padding-left: 0px;
            padding-right: 0px;
            font-family: 'Raleway-Medium';
            font-size: 16px;
        }

        .about-architecture-falconiq .breadcrumb i {
            color: #fff;
            font-size: 14px;
            padding-left: 10px;
            padding-right: 10px;
        }

section.faq {
    padding: 0px;
    border: 0px;
}

.faq-left {
    padding: 0px;
}

    .faq-left h3 {
        color: #003471;
        font-size: 32px;
        font-family: 'Raleway-Bold';
        margin-bottom: 35px;
    }

    .faq-left p {
        color: #363636;
        font-size: 16px;
        font-family: 'Raleway-Medium';
    }

    .faq-left span {
        color: #7b7b7b;
        font-size: 13px;
        font-family: 'Raleway-Medium';
        margin-bottom: 30px;
    }

section.faq .panel-group {
    margin-bottom: 0px;
    margin-top: 40px;
}

section.faq .pageAccordian .panel-default {
    border: 1px #003471 dotted;
}

section.faq .pageAccordian .panel-heading .panel-title a.accordion-toggle {
    background: none;
    color: #003471;
    font-size: 16px;
    font-family: 'Raleway-Bold';
    padding: 20px;
}

section.faq .pageAccordian .panel-heading .panel-title {
    /*text-transform: capitalize;*/
    background: #ebecf0;
    height: 58px;
}

    section.faq .pageAccordian .panel-heading .panel-title a i {
        right: 10px;
        position: absolute;
        font-size: 13px;
        top: 14px;
        width: 33px;
        background: #F9C24A;
        height: 30px;
        text-align: center;
        line-height: 33px;
    }

section.faq .pageAccordian .panel-default > .panel-heading + .panel-collapse .panel-body {
    border: none;
    color: #7b7b7b;
    font-size: 13px;
    font-family: 'Raleway-Medium';
    padding: 22px;
}

.faq-right {
    padding-top: 54px;
    overflow: hidden;
}

section.faq .feature-box {
    margin-top: 80px;
    margin-bottom: 0px;
}

section.faq .features {
    padding-bottom: 120px;
}
/*service page css start Here*/

.service-group {
    padding: 0px;
}

    .service-group .architecture-service {
        padding: 0px;
        box-shadow: none;
    }

    .service-group .testimonials {
        box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.4);
    }

        .service-group .testimonials .open-image {
            margin-top: -61px;
        }

/*media query*/
@media(max-width:1199px) {
    .features .feature-box {
        margin-bottom: 50px;
    }

    .about-text {
        padding: 25px 0px;
    }

    .menu-item__img {
        height: 100%;
    }

    .architecture-service .nav-tabs > li {
        margin-right: 18px;
        padding: 15px 28px;
    }

    .working-women {
        padding-top: 48px;
    }

    section.Architecture-letest {
        padding: 100px 0px 0;
    }

    .clients li {
        padding: 10px 6px;
    }

    .about-panel img {
        height: 100%;
    }

    .about-panel .border-image span:after {
        right: 24px;
        bottom: 26px;
    }

    .view-dish .special-right h3 {
        font-size: 40px;
    }

    .view-dish a {
        padding: 5px 15px;
    }

    .choose-head {
        padding-left: 140px;
    }

    .faq-right {
        padding-top: 175px;
    }
}

@media(max-width:991px) {
    .navbar-brand > img {
        margin-top: -13px;
    }

    .border-image img {
        width: 100%;
    }

    .border-image span:after {
        margin-right: 4px;
        margin-bottom: 3px;
    }

    .price-tag {
        right: 160px
    }

    .heading-v20__para {
        font-size: 12px;
    }

    .event img {
        width: 100%;
    }

    .letest-event p {
        font-size: 12px;
    }

    .top-bar span {
        padding-right: 3px;
        padding-left: 0px;
        font-size: 12px;
    }

    .about-panel .about-text {
        padding: 30px 0px 0px;
    }

    .view-dish .price-tag {
        top: 0;
    }

    .our-team p {
        font-size: 12px;
    }

    .our-team h3:after {
        top: 48%;
    }

    .our-team {
        padding-bottom: 50px;
    }

    .architecture-service .nav-tabs > li {
        margin-right: 15px;
        padding: 15px 13px;
    }

    .member-overlay img {
        width: 100%;
    }

    .testimonials .open-image {
        margin-top: 0px;
    }

    .working-women {
        padding-top: 181px;
    }

    section.faq .features {
        padding-bottom: 50px;
    }
}

@media(max-width:767px) {
    .about-panel .border-image span:after {
        right: 29px;
        bottom: 26px;
    }

    .about-panel {
        padding-bottom: 40px;
    }

    .our-partners.wow.animated.fadeInUp.animated .list-inline > li {
        padding-left: 25px;
        padding-right: 25px;
    }

    .feature-thumb img {
        width: 100%;
    }

    .feature-box {
        margin-top: 0px;
    }

    .feature-desc p, .feature-desc a {
        padding-top: 22px;
    }

    .choose-head {
        padding-left: 20px;
        right: 0px;
    }

    .feature-desc {
        margin-top: -54px;
        padding-top: 0px;
    }

    .working-women {
        padding-top: 0px;
    }

    .service-head h4 {
        font-size: 25px;
    }

    .work-box .work-overlay span {
        width: 56px;
        height: 56px;
        background-size: cover;
        left: 63%;
        top: 70%;
    }

    .news-box.text-center {
        margin-top: 40px;
    }

    .faq-right img {
        width: 100%;
    }

    .about-architecture h5 {
        font-size: 43px;
    }

    .why-choose .feature-box i {
        float: none;
        margin-bottom: 15px;
    }

    .architecture-service .nav-tabs > li {
        margin-right: 14px;
        padding: 15px 13px;
        width: 33%;
        margin-bottom: 3px;
    }

    .nav > li > a {
        padding: 0px 0px 0;
    }

    .top-bar span.last-child {
        border: none;
    }

    .service-group .testimonials .open-image {
        margin-top: 0px;
    }
}

@media(max-width:480px) {
    .feature-desc p, .feature-desc a {
        padding-top: 0px;
    }

    .feature-desc h4, .feature-desc p, .feature-desc a {
        margin-top: 15px;
    }

    section.faq .feature-box {
        margin-top: 30px;
    }

    .feature-desc h4:after {
        top: 35px;
    }

    .maincontainer {
        padding: 50px 0 0px;
    }

    .architecture-service {
        padding: 50px 0 0px;
    }

    .Architech-project {
        padding-bottom: 0px;
    }

    .service-head h4 {
        font-size: 21px;
    }

    .choose-head h3 {
        font-size: 24px;
    }

    .nav-tabs > li {
        float: none;
    }

    .architecture-service .nav-tabs > li {
        margin-bottom: 20px;
        width: 100%;
    }

    section.Architecture-letest .news-desc ul li {
        border: none;
    }

    .work-box .work-overlay span {
        width: 50px;
        height: 50px;
        background-size: cover;
        left: 71%;
        top: 81%;
    }

    section.faq .pageAccordian .panel-heading .panel-title a.accordion-toggle {
        font-size: 15px;
    }

    .top-bar span.last-child {
        border: none;
    }

    .top-bar span.last-child {
        border: none;
    }

    .top-bar ul.list-inline {
        width: 100%;
    }
}

/*Novika changes CSS*/

.post-content h4 {
    font-size: 15px;
    font-style: italic;
}

.login-form h4 {
    font-size: 19px;
    font-style: italic;
}

.contact-panel {
    padding: 20px 0px;
}

.details {
    padding-bottom: 30px;
}

.project-post {
    border-style: solid;
    border-width: 1px;
    border-color: #F9C24A;
}

.mix-no-border {
    margin-bottom: 40px;
}

.architecture-service h4 {
    color: #F9C24A;
    font-size: 36px;
    font-family: 'Raleway-Bold';
    font-weight: 600;
    margin-bottom: 40px;
}

.nav > li > a {
    padding: 10px;
}

@media (min-width: 400px) {
    .amp-default-skin .vjs-has-started .vjs-control-bar {
        opacity: 0;
    }

        .amp-default-skin .vjs-has-started .vjs-control-bar:hover {
            opacity: 1;
        }

    .vjs-player:hover > .vjs-control-bar {
        opacity: 1;
    }
}

.amp-default-skin .amp-content-title {
    display: none;
}

.falconiq-margin {
    margin-bottom: 70px;
}

.feature-desc a {
    color: #f9c24a;
}

.embed-responsive-morevideos {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive-morevideos .embed-responsive-item,
    .embed-responsive-morevideos iframe,
    .embed-responsive-morevideos embed,
    .embed-responsive-morevideos object,
    .embed-responsive-morevideos video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.embed-responsive-morevideos-16by9 {
    padding-bottom: 25%;
}

.embed-responsive-morevideos-4by3 {
    padding-bottom: 75%;
}

@media (max-width: 480px) {
    .navbar-default .navbar-nav > li > a {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* Mega Menu*/
/**common dropdown of template**/
@import url('https://fonts.googleapis.com/css?family=Raleway:400,500,700,800i');

body {
    font-family: 'Raleway', sans-serif;
}

span, p {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    color: #363636;
    font-weight: bold;
}

.navbar-inverse .navbar-nav > li > a {
    transition: all 0.85s;
}

    .navbar-inverse .navbar-nav > li > a:hover {
        border-bottom: solid 2px #1f2944;
        padding-bottom: 12px;
    }

.no-padding {
    padding: 0px;
}

.row {
    margin: 0px;
}

.page-comes {
    font-weight: 500;
    color: #000;
    padding: 10px 0;
    text-transform: capitalize;
    background: #ebebeb;
}

.section-title > h2 {
    color: #000;
}

.dropdown-menu {
    min-width: 180px;
    border: 0px;
    padding: 0px;
    background: #333;
    border-radius: 0px;
}

    .dropdown-menu > li > a {
        padding: 9px 20px;
        color: #ccc;
        border-bottom: 1px solid #444;
        text-transform: capitalize;
        background: #222;
        color: #fff;
    }

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: 0;
        margin-left: -1px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #fff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

ul.dropdown-menu.top-search {
    padding: 10px;
}

.form-control {
    border-radius: 0px;
    border: 0px;
    background: #444;
    color: #fff !important;
    box-shadow: none;
}

.mega-dropdown {
    position: static !important;
}

.mega-dropdown-menu {
    padding: 0px 0px;
    width: 100%;
    box-shadow: none;
    -webkit-box-shadow: none;
}

    .mega-dropdown-menu form {
        margin: 3px 20px;
    }

    .mega-dropdown-menu .form-group {
        margin-bottom: 3px;
    }

.mega-dropdown-menu {
    background: #333;
}

.mega-dropdown-inner {
    background: #333;
    padding: 10px;
}

.mega-menu-item {
}

.mega-header {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    padding: 15px 10px;
}

/*> li > a {
    padding: 7px 10px;
    color: #ccc;
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    &:hover

{
    background-color: #222;
}
}
}
}
}*/

.mega-dropdown-menu .mega-dropdown-inner {
    background: #333;
    padding: 10px;
}

    .mega-dropdown-menu .mega-dropdown-inner .mega-menu-item .mega-header {
        color: #fff;
        text-transform: uppercase;
        font-size: 15px;
        padding: 15px 10px;
    }

    .mega-dropdown-menu .mega-dropdown-inner .mega-menu-item li > a {
        padding: 7px 10px;
        color: #ccc;
        display: block;
        font-size: 14px;
        text-transform: capitalize;
    }

        .mega-dropdown-menu .mega-dropdown-inner .mega-menu-item li > a:hover {
            background-color: #222;
        }

.header.fixed {
    background: #ed1c24;
    position: fixed;
    border-bottom: rgba(0,0,0,0.08) 1px solid;
    padding: 0px;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1000;
    -webkit-transition: all .800s;
    -moz-transition: all .800s;
    -o-transition: all .800s;
    transition: all .800s;
}

.header-v4.fixed {
    background: #ed1c24;
    position: fixed;
    border-bottom: rgba(0,0,0,0.08) 1px solid;
    padding: 0px;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1000;
    -webkit-transition: all .800s;
    -moz-transition: all .800s;
    -o-transition: all .800s;
    transition: all .800s;
}

.navbar.fixed {
    position: fixed;
    border-bottom: rgba(0,0,0,0.08) 1px solid;
}

.navbar {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1000;
    -webkit-transition: all .800s;
    -moz-transition: all .800s;
    -o-transition: all .800s;
    transition: all .800s;
}

.navbar-default.fixed .navbar-nav > li > a {
    color: #000;
    font-weight: 700;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbar-inverse.fixed .navbar-nav > li > a {
    padding-top: 20px;
    padding-bottom: 20px;
}

.navmenu-header {
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
    padding: 5px 19px;
}

li.navmenu-header {
    color: #000;
    padding: 5px 20px;
}

@media (min-width: 767px) {
    .fixed .navbar-brand {
        padding: 3px 15px;
    }
}

@media (max-width: 991px) {
    #header .navbar-default {
        padding-top: 0px;
        margin-bottom: 0px;
    }

    .nav-second-main {
        display: block;
    }

    .navbar-header {
        float: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }

        .navbar-collapse.collapse {
            display: none !important;
        }

    .navbar-nav {
        float: none !important;
        margin: 7.5px -15px;
    }

        .navbar-nav > li {
            float: none;
        }

            .navbar-nav > li > a {
                padding-top: 10px;
                padding-bottom: 10px;
            }

    .navbar-collapse.collapse.in { /* NEW */
        display: block !important;
    }
}

.col-2 .project-post {
    width: 50%;
    padding: 15px;
}

.page-bread {
    padding: 40px 0;
    background: url(../images/charity/bread.jpg) no-repeat;
}

    .page-bread h1 {
        color: #fff;
        text-transform: uppercase;
        font-size: 40px;
        font-weight: 800;
        margin: 0px;
    }

.page-comes ul {
    margin: 0px;
}

section {
    display: block;
    position: relative;
    padding: 80px 0px;
    border-bottom: rgba(0,0,0,0.1) 1px solid;
    -webkit-transition: all .400s;
    -moz-transition: all .400s;
    -o-transition: all .400s;
    transition: all .400s;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    background-size: cover !important;
    box-sizing: border-box !important;
}

.mix {
    border-bottom: rgba(0,0,0,0.1) 1px solid;
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.mix-no-border {
    margin-bottom: 60px;
}

.over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    opacity: 0;
}

.img-desc p {
    color: #333;
    font-size: 16px;
}

.over p {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    margin-top: -10px;
}

div.img:hover .over {
    opacity: 1;
}

div.img {
    position: relative;
    overflow: hidden;
}

section .filter > li > a, section .filter > li.active > a:hover, section .filter > li.active > a {
    color: #111;
}

    section .filter > li > a:hover, section .filter > li > a:focus, section .filter > li > a.active, section .filter > li.active > a:hover, section .filter > li.active > a:focus {
        background-color: rgba(0,0,0,0.1) !important;
    }

section .filter > li > a {
    padding: 6px 15px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.filter {
    padding-left: 15px;
    margin-bottom: 30px;
    text-align: center;
}

    .filter li:before {
        content: "/";
        padding-right: 10px;
        color: #bbb;
    }

    .filter li:first-child:before {
        content: "";
        display: none;
    }

.sidebar-widget h4 {
    font-weight: 700;
    text-transform: uppercase;
    color: #444;
    font-size: 14px;
    margin-bottom: 20px;
}

search-widget {
    position: relative;
}

.sidebar-widget {
    margin-bottom: 40px;
}

    .sidebar-widget .latest-post-list li {
        line-height: 40px;
        border-bottom: 1px solid #ddd;
    }

sidebar-widget .latest-post-list li a {
    color: #666;
    transition: all 0.3s ease-in;
}

.tags-list a, .base-button-light {
    /* float: left; */
    font-size: 13px !important;
    margin: 0px 4px 4px 0px;
    display: inline-block;
    position: relative;
    text-transform: capitalize;
    background: #f8f8f8;
    border: 1px solid #ddd;
    color: #888;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    padding: 6px 10px;
    width: auto;
}

.list-social li a {
    padding: 3px 8px;
    display: block;
}

    .list-social li a i {
        font-size: 30px;
        display: block;
        color: rgba(0,0,0,0.3);
        transition: all 0.3s ease-in;
    }

.search-widget {
    position: relative;
}

    .search-widget .search-btn {
        border: 0px;
        background-color: transparent;
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 20px;
        color: #777;
    }

        .search-widget .search-btn:hover, .search-widget .search-btn:focus {
            color: #0bc8f1;
            outline: 0;
        }

    .search-widget .form-control {
        box-shadow: none;
        -webkit-box-shadow: none;
        border-top: 0px;
        border-left: 0px;
        border-right: 0px;
        height: 45px;
        border-radius: 0px;
        -webkit-border-radius: 0px;
    }

    .search-widget .search-btn {
        border: 0px;
        background-color: transparent;
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 20px;
        color: #777;
    }

.btn-theme-bg {
    background-color: #e8ca00;
    color: #000;
}

    .btn-theme-bg:hover {
        background-color: #000;
        color: #fff;
    }

.colored-text {
    color: #e8ca00;
}

.project-detail h4 {
    text-transform: uppercase;
    border-bottom: 2px solid #f5f5f5;
    font-size: 18px;
    line-height: 34px;
    margin-top: 30px;
}

.carousel-control span i {
    font-size: 44px;
}

.carousel-control.left, .carousel-control.right {
    background-image: none;
}

.carousel-control {
    top: 50%;
    margin-top: -20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.post-meta {
    text-align: center;
    margin-bottom: 25px;
}

    .post-meta img {
        border-radius: 5px;
        -webkit-border-radius: 5px;
        margin-bottom: 5px;
        width: 70px;
        height: auto;
    }

    .post-meta span {
        display: block;
        padding: 7px 0;
        color: #888;
        border-bottom: 2px solid #f5f5f5;
    }

.post {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.comment-box img {
    float: left;
    width: 90px;
    height: auto;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    margin-right: 20px;
}

.comments-content {
    overflow: hidden;
}

.comments {
    margin-bottom: 50px;
}

    .comments h3 {
        margin-bottom: 30px;
    }

.comments-content ul {
    margin-bottom: 5px;
}

.post-comment h3 {
    margin-bottom: 30px;
}

.post-content .responsive-video {
    margin-bottom: 25px;
}

.responsive-video {
    height: 0;
    padding-top: 1px;
    position: relative;
    padding-bottom: 56.25%;
}

    .responsive-video iframe {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: absolute;
    }

.contact-info-2 i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    float: left;
    background-color: #e8ca00;
    color: #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    margin-right: 25px;
    font-size: 22px;
}

.contact-info-2 li {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.contact i {
    color: #e8ca00;
    font-size: 45px;
    display: block;
    margin-bottom: 10px;
}

.shape-1 {
    border: 1px solid #ddd;
}

    .shape-1 span {
        display: block;
        line-height: 45px;
        padding-left: 15px;
    }

    .shape-1 .form-control {
        border: 0px;
        height: 45px;
        border-left: 1px solid #ddd;
        width: 290px;
        float: right;
        box-shadow: none;
    }

    .shape-1 form {
        float: right;
        position: relative;
    }

        .shape-1 form i {
            position: absolute;
            right: 10px;
            top: 15px;
        }

    .shape-1 a {
        display: block;
        float: right;
        height: 45px;
        line-height: 45px;
        width: 65px;
        text-align: center;
        border-left: 1px solid #ddd;
    }

        .shape-1 a:hover, .shape-1 a.active {
            background: #e8ca00;
            color: #fff;
        }

        .shape-1 a i {
            position: relative;
            font-size: 15px;
        }

.category-col {
    margin-bottom: 30px;
}

    .category-col h4 {
        text-transform: uppercase;
        margin-bottom: 5px;
        margin-top: 15px;
        color: #000;
    }

.billing-col {
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.payment-tabs img {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.payment-tabs li a {
    color: #777;
    padding: 15px 60px;
    display: block;
    text-align: center;
    background: #ddd;
    position: relative;
}

.payment-tabs li.active a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -13px;
    margin-left: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ddd;
}

.product-col {
    margin-bottom: 30px;
}

    .product-col .product-thumb {
        position: relative;
        overflow: hidden
    }

        .product-col .product-thumb img {
            width: 100%;
        }

        .product-col .product-thumb ul {
            width: 100%;
            height: 10%;
            position: absolute;
            left: 0;
            top: 30%;
            margin: 0;
            padding: 0;
            text-align: center;
            margin-top: -20px;
            opacity: 0;
        }

            .product-col .product-thumb ul li a {
                display: block;
                width: 40px;
                height: 40px;
                line-height: 40px;
                text-align: center;
                background: #e8ca00;
                color: #fff;
                border-radius: 5px;
                -webkit-border-radius: 5px;
                box-shadow: 3px 3px 1px rgba(0,0,0,0.7);
            }

.product-desc {
    padding: 20px 15px;
}

    .product-desc h4 {
        color: #000;
        text-transform: capitalize;
        font-size: 20px;
        font-weight: 700;
    }

    .product-desc p {
        font-size: 18px;
        margin: 0;
    }

    .product-desc del {
        color: #f15b40;
        display: inline-block;
        margin-left: 10px;
    }

.rating {
    margin-top: 10px;
}

    .rating i {
        font-size: 20px;
        color: #444;
    }

.product-col:hover {
    background: #e8ca00;
    color: #fff;
}

    .product-col:hover .product-thumb ul {
        top: 50%;
        opacity: 1;
    }

    .product-col:hover .product-desc del {
        color: #000;
    }

    .product-col:hover .product-desc h4, .product-col:hover .rating i {
        color: #fff;
    }

.sidebar-box.border-sidebar {
    padding: 15px;
    border: 1px solid #eee;
}

.categories li a {
    position: relative;
    color: #777;
    text-transform: capitalize;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
    display: block;
}

    .categories li a:before {
        content: "\f101";
        font-family: "FontAwesome";
        margin-right: 5px;
    }

.btn-theme {
    background: #e8ca00;
    color: #fff;
}

    .btn-theme:hover, .btn-theme:focus {
        background-color: #222222;
        color: #fff;
    }

.btn-dark {
    background: #222222;
    color: #fff;
}

    .btn-dark:hover, .btn-dark:focus {
        background-color: #e8ca00;
        color: #fff;
    }

.table-responsive {
    overflow-x: hidden;
}

.cart-final-table span {
    color: #e8ca00;
    font-weight: 700;
}

.sidebar-box h3 {
    color: #333;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 18px;
}

.product-list h2 {
    margin: 0px;
    margin-bottom: 10px;
}

    .product-list h2 a {
        font-size: 22px;
        color: #000;
    }

.sidebar-box.border-sidebar {
    padding: 15px;
    border: 1px solid #eee;
}

.categories li a {
    position: relative;
    color: #777;
    text-transform: capitalize;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
    display: block;
}

    .categories li a:before {
        content: "\f101";
        font-family: "FontAwesome";
        margin-right: 5px;
    }

.ui-widget-content {
    background: none;
    border: 0;
    border-radius: 10px;
    background-color: #E0E0E0;
    height: 18px;
    clear: both;
}

.price-slider input {
    background-color: transparent;
    border: 0;
    width: 50%;
    margin-bottom: 5px;
    font-size: 18px;
    color: #999999;
    margin-bottom: 10px;
}

.ui-widget-content {
    background: none;
    border: 0;
    border-radius: 10px;
    background-color: #E0E0E0;
    height: 18px;
    clear: both;
}

.ui-slider-range {
    background: #d34836;
}

.ui-slider .ui-slider-handle {
    border-radius: 50%;
    background: none;
    border: 2px solid #E87169;
    background-color: #FFFFFF;
    top: 0;
    width: 18px;
    height: 18px;
    outline: none;
}

.sidebar-box .checkbox input {
    margin-top: 7px;
}

.sidebar-box .size-list li {
    padding: 0px;
}

    .sidebar-box .size-list li a {
        display: block;
        line-height: 35px;
        padding: 0px 15px;
        border: 1px solid #ddd;
        margin-bottom: 4px;
    }

        .sidebar-box .size-list li a:hover {
            background: #f15b40;
        }

.sidebar-box .colors li a {
    display: block;
    width: 40px;
    height: 40px;
}

    .sidebar-box .colors li a:hover {
        box-shadow: 2px 2px 1px rgba(0,0,0,0.8);
    }

.sidebar-box .colors li {
    margin: 0px;
    padding: 0px;
}

    .sidebar-box .colors li:nth-child(1) a {
        background-color: #7f5022;
    }

    .sidebar-box .colors li:nth-child(2) a {
        background-color: #9560f6;
    }

    .sidebar-box .colors li:nth-child(3) a {
        background-color: #1cbefe;
    }

    .sidebar-box .colors li:nth-child(4) a {
        background-color: #f9bb04;
    }

    .sidebar-box .colors li:nth-child(5) a {
        background-color: #d1d9ec;
    }

    .sidebar-box .colors li:nth-child(6) a {
        background-color: #fc2230;
    }

    .sidebar-box .colors li:nth-child(7) a {
        background-color: #e50052;
    }

.latest-products li {
    margin-bottom: 20px;
}

.latest-products img {
    float: left;
    margin-right: 20px;
}

.latest-products .content {
    overflow: hidden;
}

.latest-products .rating i {
    color: #666;
}

.latest-products .content h4 a {
    color: #555;
}

    .latest-products .content h4 a:hover {
        color: #f15b40;
    }

.sidebar-box {
    margin-bottom: 30px;
}

.ui-slider-range {
    background: #d34836;
}

.ui-slider .ui-slider-handle {
    border-radius: 50%;
    background: none;
    border: 2px solid #E87169;
    background-color: #FFFFFF;
    top: 0;
    width: 18px;
    height: 18px;
    outline: none;
}

.product-social li a {
    color: #999;
    font-size: 25px;
}

.btn-link {
    color: #777;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px dashed #ddd;
}

.product-social li a {
    color: #999;
    font-size: 25px;
}

    .product-social li a:hover {
        color: #f15b40;
    }

.product-tabs {
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

    .product-tabs li a {
        border-bottom: 4px solid transparent;
        padding: 15px;
        display: block;
        text-transform: uppercase;
        font-weight: 700;
        color: #999;
    }

    .product-tabs li.active a {
        border-bottom-color: #f15b40;
    }
/*--About us page css start here--*/
.banner {
    background: url("../images/about-banner.jpg") no-repeat top center;
    padding: 150px 0px;
}

    .banner h1, .banner p {
        color: #060c17;
        font-weight: 600;
        font-size: 16px;
    }

    .banner h1 {
        font-weight: bold;
        font-weight: 900;
        font-size: 4.5em;
        line-height: 50px;
        color: #161b25;
        padding-top: 64px;
    }

    .banner .page-comes {
        width: 250px;
        float: right;
        border-radius: 22px;
        margin-top: 85px;
        background: #fff;
        padding: 10px 5px;
    }

        .banner .page-comes ul {
            display: inline-block;
            padding-right: 5px;
        }

.page-comes span {
    padding-right: 6px;
    color: #a5a5a5;
}

.banner .page-comes ul li {
    color: #363636;
    padding-right: 0px;
    padding-left: 0px;
}

    .banner .page-comes ul li.active {
        color: #f9084c;
    }

.aside-img-wrapper {
    border: 1px dotted #fff;
}

    .aside-img-wrapper p {
        color: #fff;
        font-family: 'Raleway', sans-serif;
        font-size: 13px;
    }

.left-title h5, h2 {
    color: #fff;
}

.video-inner a {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: 29%;
    margin-top: 64%;
    display: block;
    border-radius: 50%;
    width: 128px;
    height: 128px;
}

.client-block {
    float: left;
    width: 100%;
}

.teamcol {
    padding: 0px;
    text-align: center;
}

.team-box {
    padding: 0px;
}

.teamdesc {
    padding: 25px 0px;
}

    .teamdesc h2 {
        color: #060c17;
        font-size: 1.2em;
        font-family: 'Raleway';
        font-weight: 900;
    }

    .teamdesc span {
        color: #7b7b7b;
        font-family: 'Raleway';
        font-size: 1em;
    }

    .teamdesc ul.social {
        padding: 20px 55px;
    }

        .teamdesc ul.social li {
            list-style: none;
            float: left;
            padding-left: 15px;
        }

            .teamdesc ul.social li a {
                color: #7b7b7b;
            }

                .teamdesc ul.social li a:hover {
                    opacity: 0.6;
                }

                .teamdesc ul.social li a:focus {
                    outline: none;
                }

.welcome {
    padding: 80px 0 50px;
    text-align: center;
}

.heading_title {
    padding: 0px;
}

    .heading_title h1 {
        font-size: 4.5em;
        font-family: 'Raleway';
        color: #001946;
    }

    .heading_title p {
        color: #001946;
        font-size: 1em;
        line-height: 22px;
        font-family: 'Raleway';
    }

/*--our Service--*/

.service-block {
    margin-right: 30px;
}

.our-service {
    padding: 65px 0px;
}

    .our-service h2 {
        color: #001946;
        font-size: 4.3em;
        font-family: 'Roboto', sans-serif;
        padding-bottom: 15px;
    }

    .our-service p {
        line-height: 24px;
        font-family: 'Raleway', sans-serif;
        font-weight: 400;
    }

.service-icon {
    padding: 40px 0px;
}

    .service-icon i {
        font-size: 30px;
        color: #363636;
    }

    .service-icon h4 {
        font-size: 1.5em;
        color: #363636;
        padding-top: 15px;
    }

    .service-icon p {
        color: #7b7b7b;
        padding-top: 10px;
    }

    .service-icon a {
        text-decoration: underline;
        color: #7b7b7b;
        font-weight: normal;
    }

        .service-icon a i {
            color: #7b7b7b;
            font-size: 15px;
        }

.service-right {
    float: right;
    padding-top: 200px;
    padding-bottom: 186px;
}

/*--contact us css start Here--*/

.aboutcontact {
    padding: 110px 0px;
}

    .aboutcontact h3 {
        color: #001946;
        font-size: 4.3em;
        padding-bottom: 20px;
    }

    .aboutcontact p {
        line-height: 24px;
        font-weight: 400;
        font-size: 13px;
        font-family: 'Raleway', sans-serif;
    }

    .aboutcontact .form-control {
        color: #363636;
        border: none;
        border-radius: 0px;
        font-family: 'Raleway', sans-serif;
        height: 50px;
        box-shadow: none;
        margin-bottom: 25px;
        background: #ebebeb;
    }

    .aboutcontact .form-group {
        margin-bottom: 0px;
        padding-left: 0px;
        padding-right: 15px;
    }

    .aboutcontact textarea.form-control {
        height: 200px;
        resize: none;
    }

    .aboutcontact a {
        background: #f9084c;
        color: #fff;
        font-size: 13px;
        padding: 15px 27px;
        font-weight: bold;
        line-height: 50px;
        text-transform: uppercase;
    }

.rad-btn {
    background: #fe5656 none repeat scroll 0 0;
    border-radius: 22px;
    color: #ffffff !important;
    display: inline-block;
    line-height: 35px;
    padding: 0 20px 0 20px;
    position: relative;
    transition: all 500ms ease 0s;
    font-family: 'Open sans', sans-serif;
    border: medium none;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
}

.slide p {
    line-height: 2.2em;
    margin-bottom: 20px;
}

.submit {
    background: #f9084c;
    border: none;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
}

.rotate-icon {
    width: 60px;
    height: 60px;
    line-height: 16px;
    text-align: center;
    background-color: #f9084c;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    border-radius: 5px;
    margin-top: 20px;
    float: left;
}

    .rotate-icon i {
        color: #fff;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        font-size: 30px;
    }

.contact-right {
    padding-left: 95px;
}

    .contact-right h2 {
        color: #363636;
        font-size: 20px;
    }

    .contact-right span {
        color: #7b7b7b;
        font-family: 'Raleway', sans-serif;
    }

.map {
    margin-bottom: -5px;
    width: 100%;
}

/*-------index5 About-Us Css Start Here----------*/
.booster {
    background: url(../images/booster-banner.jpg) no-repeat;
    padding: 135px 0px;
    padding-left: 220px;
}

    .booster .breadcrumb {
        background: none;
        text-align: center;
    }

        .booster .breadcrumb > li {
            padding-left: 0px;
            padding-right: 0px;
        }

    .booster h1 {
        text-transform: uppercase;
        font-weight: 900;
        font-size: 4.5em;
        line-height: 50px;
        color: #fff;
        text-align: center;
        font-family: 'Raleway-BoldItalic', sans-serif;
    }

    .booster .breadcrumb > li + li:before {
        color: #fff;
    }

    .booster .breadcrumb > li {
        display: inline-block;
        color: #fff;
        font-size: 14px;
    }

        .booster .breadcrumb > li a {
            color: #fff;
            font-family: 'Raleway', sans-serif;
            font-weight: bold;
        }

.faqSection {
    width: 100%;
    padding-bottom: 0px;
}

.pageAccordian {
    float: left;
    width: 100%;
}

    .pageAccordian .panel-default {
        border: none;
        background: none;
        border-radius: 0px;
        box-shadow: none;
    }

        .pageAccordian .panel-default > .panel-heading {
            background: none;
            border-radius: 0px;
            border: none;
            padding: 0px;
        }

    .pageAccordian .panel-heading .panel-title {
        /*text-transform: capitalize;*/
    }

        .pageAccordian .panel-heading .panel-title a {
            padding: 10px 30px 10px 20px;
            background-color: #fe5858;
            display: block;
            position: relative;
            color: #fff;
        }

            .pageAccordian .panel-heading .panel-title a i {
                right: 15px;
                position: absolute;
                font-size: 14px;
                top: 13px;
            }

    .pageAccordian .panel-default > .panel-heading + .panel-collapse .panel-body {
        border: none;
        color: #7b7b7b;
        border: solid 2px #000;
    }

    .pageAccordian .panel-heading .panel-title a.accordion-toggle.collapsed {
        color: #fff;
        border: none;
    }

    .pageAccordian .panel-heading .panel-title a.accordion-toggle {
        background: #060c17;
        background: #000;
        color: #fff;
    }

        .pageAccordian .panel-heading .panel-title a.accordion-toggle.collapsed {
            color: #fff;
            border: none;
        }

    .pageAccordian.panel-group .panel + .panel {
        margin-top: 15px;
    }

.panel-group {
    margin-bottom: 0px;
}

.left-menu .navbar-default .navbar-nav > .active > a, .left-menu .navbar-default .navbar-nav > .active > a:focus, .left-menu .navbar-default .navbar-nav > .active > a:hover {
    background: #81ebee;
    background: -moz-linear-gradient(left, #81ebee 0%, #adc5f4 48%, #bdb7f6 71%, #e991fc 100%);
    background: -webkit-linear-gradient(left, #81ebee 0%, #adc5f4 48%, #bdb7f6 71%, #e991fc 100%);
    background: linear-gradient(to right, #81ebee 0%, #adc5f4 48%, #bdb7f6 71%, #e991fc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#81ebee', endColorstr='#e991fc',GradientType=1 );
    color: #fff;
}

/*--booster-service page css Start Here--*/
.main-content {
    padding-bottom: 0px;
}

.booster-service {
    padding: 50px 0px;
}

    .booster-service .center-title h1 {
        font-size: 48px;
        font-weight: normal;
        text-transform: uppercase;
        color: #060c17;
    }

    .booster-service .center-title p {
        font-size: 16px;
        margin-bottom: 20px;
        font-family: 'Raleway', sans-serif;
    }

.center-title.gray-bg .center-border span {
    background-color: #ebebeb;
    color: #060c17;
}

.get-in-touch .center-title h1 {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 45px;
    font-weight: normal;
    text-transform: uppercase;
}

.get-in-touch .center-title p {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.booster-service .center-title.gray-bg .center-border span {
    background-color: none;
}

.service-box {
    margin-top: 10px;
    margin-bottom: 30px;
}

    .service-box h4 {
        font-size: 1.5em;
        color: #363636;
        padding-top: 25px;
        font-weight: 600;
    }

    .service-box p {
        color: #7b7b7b;
        padding-top: 15px;
        font-size: 13px;
        font-family: 'Raleway', sans-serif;
    }

    .service-box a {
        color: #fff;
        font-weight: 700;
        font-size: 12px;
    }

        .service-box a i {
            font-size: 9px;
            padding-right: 5px;
        }

.bottom-line {
    background: #fc00ff;
    width: 70px;
    height: 2px;
    display: block;
    margin-top: 15px;
}

.about-Aside {
    background: #00dbde;
    width: 100%;
    margin-top: 180px;
    margin-bottom: 110px;
}

.left-aside {
    padding-left: 0px;
}

    .left-aside img {
        margin: -143px 0px 0px;
        padding-left: 67px;
    }

.right-aside {
    margin: -112px 0px 0px;
}

    .right-aside h3 {
        color: #060c17;
        text-transform: uppercase;
        font-size: 48px;
        font-weight: normal;
        font-family: 'Raleway', sans-serif;
    }

    .right-aside span {
        color: #060c17;
        font-size: 16px;
    }

    .right-aside p {
        color: #025354;
        font-size: 13px;
        padding-top: 45px;
    }

/*--booster contact us page css Start Here--*/
.booster-contact {
    padding: 40px 0px 70px;
}

    .booster-contact .center-title h1 {
        text-transform: uppercase;
        font-size: 45px;
        font-weight: normal;
        font-family: 'Raleway', sans-serif;
    }

.contact-box {
    text-align: center;
    padding-top: 25px;
}

    .contact-box i {
        font-size: 40px;
        line-height: 80px;
        color: #363636;
        background: #ebebeb;
        width: 100px;
        margin-bottom: 30px;
    }

    .contact-box h4 {
        font-size: 16px;
    }

    .contact-box p {
        color: #7b7b7b;
        font-family: 'Raleway', sans-serif;
        font-size: 13px;
    }

    .contact-box .bottom-line {
        background: #fc00ff;
        width: 70px;
        height: 2px;
        display: block;
        margin: 0 auto;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .contact-box p span {
        font-weight: 600;
    }

.team-box img {
    width: 100%;
}
/*---Booster index6 about us css start Here--*/

.Aboutbanner {
    background: url(../images/home-v6-aboutbanner.jpg) center top no-repeat;
    width: 100%;
    padding: 100px 0px;
    background-size: cover;
}

    .Aboutbanner h1 {
        font-size: 4.5em;
        line-height: 50px;
        color: #fff;
        font-weight: bold;
        font-style: italic;
        text-align: center;
        font-family: 'Raleway', sans-serif;
    }

    .Aboutbanner .breadcrumb {
        background: none;
        text-align: center;
        font-family: 'Raleway', sans-serif;
    }

.breadcrumb > li {
    padding-right: 19px;
    padding-left: 19px;
    color: #fff;
}

.page-breadcrumb .breadcrumb > li {
    color: #000;
    padding-left: 0px;
    padding-right: 0px;
}

.Aboutbanner .breadcrumb i {
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.1em;
}

.breadcrumb > li a {
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

.welcomepanel {
    padding: 100px 0px;
}

.left-panel {
    padding: 0px;
}

    .left-panel h3 {
        color: #000;
        font-size: 2.3em;
        font-weight: bold;
        padding-bottom: 10px;
    }

.left-bottom {
    background: url(../images/border.png) no-repeat;
    padding-bottom: 32px;
}

.left-panel p {
    color: #363636;
    font-size: 13px;
    font-family: 'Raleway', sans-serif;
}

.welcome-sec {
    padding: 110px 0px;
    background: #e8ca00;
}

.section-block {
    padding: 0px;
}

.iconbar {
    background: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: solid 1px #000;
}

    .iconbar i {
        color: #000;
        font-size: 28px;
        text-align: center;
        padding: 18px 17px;
    }

.section-block h2 {
    color: #000;
    font-size: 1.2em;
    padding-top: 16px;
    font-weight: 600;
}

.section-block p {
    color: #363636;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
}

.client-logo {
    padding: 0px;
    background: #ebebeb;
}
/*--contact us--*/

.contact-panel {
    padding: 0px;
}

.contact-panel {
    padding: 110px 0px;
}

    .contact-panel h3 {
        color: #000;
        font-size: 4.3em;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
    }

    .contact-panel p {
        line-height: 24px;
        font-family: 'Raleway-Bold';
        font-weight: 600;
    }

    .contact-panel .form-control {
        color: #363636;
        border: none;
        border-radius: 0px;
        height: 40px;
        box-shadow: none;
        margin-bottom: 25px;
        background: #ebebeb;
    }

    .contact-panel .form-group {
        margin-bottom: 0px;
        padding-left: 0px;
        padding-right: 15px;
    }

    .contact-panel textarea.form-control {
        height: 200px;
        resize: none;
    }

.submit {
    background: #f9084c;
    border: none;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
}

.right-contact {
    padding-left: 75px;
}

.icon-left {
    padding: 0px;
    border-bottom: solid 1px #ebebeb;
    padding-bottom: 30px;
}

    .icon-left i {
        color: #363636;
        font-size: 65px;
        float: left;
    }

.right-contact span {
    color: #363636;
}

.details {
    padding-bottom: 50px;
}

.contact-form {
    padding: 0px;
}

    .contact-form h3 {
        color: #001946;
        font-size: 4.3em;
        padding-bottom: 25px;
    }

    .contact-form p {
        line-height: 24px;
        font-family: 'Raleway-Bold';
        font-weight: 600;
    }

    .contact-form .form-control {
        color: #363636;
        border: solid 1px #999999;
        border-radius: 0px;
        height: 40px;
        box-shadow: none;
        margin-bottom: 25px;
        background: none;
    }

    .contact-form .form-group {
        margin-bottom: 0px;
        padding-left: 0px;
        padding-right: 15px;
    }

    .contact-form textarea.form-control {
        height: 200px;
        resize: none;
    }

.contactform {
    background: #ebebeb;
    border: solid 1px #8d8d8d;
    color: #363636;
    padding: 15px 30px;
    font-size: 1.1em;
}

.contact-form a {
    background: #ebebeb;
    color: #363636;
    font-size: 13px;
    padding: 15px 27px;
    font-weight: bold;
    line-height: 50px;
    text-transform: uppercase;
    border: solid 1px #8d8d8d;
    transition: all 0.65s;
}

.contact-bottom {
    background: url(../images/border.png) no-repeat;
    padding-bottom: 30px;
}

.contact-form a:hover {
    background: #363636;
    color: #fff;
}

.center-borders {
    background: url(../images/center-border.png) no-repeat;
    padding-bottom: 20px;
    background-position: center;
    margin-bottom: 40px;
}

.container.wow.animated.fadeInUp {
    background: #ebebeb;
    width: 100%;
}
/*-------------hosting contact Us page css start Here-----------*/

.hosting-contact {
    padding: 90px 0px;
}

    .hosting-contact .breadcrumb > li {
        color: #b5b5b5;
        padding-left: 0px;
    }

.feature-box:hover {
    border: none;
}

.feature-box {
    border: none;
}

    .feature-box p {
        font-family: 'Raleway', sans-serif;
        font-size: 13px;
    }

.hosting-contact .center-title h1 {
    text-align: center;
    font-size: 48px;
}

.hosting-contact .form-control {
    color: #7b7b7b;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    margin-bottom: 20px;
    background: #ebebeb;
    padding: 23px 20px;
    font-size: 13px;
}

.hosting-contact .breadcrumb {
    color: #000;
}

.textarea-host {
    padding: 0px;
}

    .textarea-host .form-control {
        height: 178px;
        font-size: 13px;
        resize: none;
        color: #7b7b7b;
        box-shadow: none;
        border: none;
        background: #ebebeb;
    }

    .textarea-host a {
        background: #00a651;
        width: 100%;
        padding: 10px 20px;
        color: #FFF;
        FONT-SIZE: 13PX;
        width: 100%;
        text-transform: uppercase;
        display: block;
        text-align: center;
    }

        .textarea-host a:hover {
            background: #e8ca00;
        }
/*--index12 charity contact us page css start here--*/

.charitycontact {
    padding: 50px 0px;
}

.charity-title {
    padding-bottom: 30px;
}

    .charity-title h3 {
        color: #001946;
        font-size: 4.3em;
        padding-bottom: 15px;
        text-align: center;
        font-weight: bold;
        font-family: 'Raleway', sans-serif;
    }

    .charity-title p {
        line-height: 24px;
        text-align: center;
        font-size: 13px;
    }

.charity-icon {
    padding: 0px;
}

    .charity-icon h2 {
        font-size: 16px;
        color: #363636;
        padding-left: 32px;
        padding-top: 5px;
    }

    .charity-icon i {
        color: #363636;
        font-size: 22px;
        padding-bottom: 10px;
        float: left;
    }

.charity-right span {
    color: #7b7b7b;
    font-size: 13px;
}

.charity-details {
    padding-bottom: 50px;
}

.charity-form {
    padding: 0px;
}

    .charity-form h3 {
        color: #001946;
        font-size: 4.3em;
        padding-bottom: 25px;
    }

    .charity-form p {
        line-height: 24px;
        font-family: 'Raleway-Bold';
        font-weight: 600;
    }

    .charity-form .form-control {
        color: #363636;
        border-radius: 0px;
        height: 40px;
        box-shadow: none;
        border: none;
        margin-bottom: 25px;
        -moz-box-shadow: 0px 0px 23px #eeeeee;
        -webkit-box-shadow: 0px 0px 23px #eeeeee;
        box-shadow: 0px 0px 23px #eeeeee;
        font-size: 13px;
    }

    .charity-form .form-group {
        margin-bottom: 0px;
        padding-left: 0px;
        padding-right: 10px;
    }

.massage-form {
    padding: 0px;
}

    .massage-form textarea.form-control {
        height: 233px;
        font-size: 13px;
        -moz-box-shadow: 0px 0px 23px #eeeeee;
        -webkit-box-shadow: 0px 0px 23px #eeeeee;
        box-shadow: 0px 0px 23px #eeeeee;
        border: none;
        background: none;
        resize: none;
        padding: 15px 17px;
    }

.contactform {
    background: #ebebeb;
    border: solid 1px #8d8d8d;
    color: #363636;
    padding: 15px 30px;
    font-size: 1.1em;
}

.contact-bottom {
    background: url(../images/border.png) no-repeat;
    padding-bottom: 30px;
}

button.contactform:hover {
    background: #247be6 none repeat scroll 0 0;
    color: #fff;
}

.charitybutton {
    background: #00a651;
    border: none;
    color: #fff;
    padding: 10px 22px;
    font-size: 1.1em;
    text-transform: uppercase;
    margin-top: 25px;
}

.form-group {
    text-align: center;
}

/*-----index 15 css start Here--------*/
.banner-deal {
    background: none;
    background-size: cover;
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
}

    .banner-deal * {
        box-sizing: inherit;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: border-box;
    }

.btn-yellow {
    background: #e8ca00;
}

button.btn.btn-block.btn-yellow:hover {
    opacity: .8;
}

/*-----index 8 css start Here--------*/

.banner-travel {
    padding-top: 120px;
    background: none;
    position: absolute;
    background-size: cover;
    left: 0;
    right: 0;
    border: none;
    top: 45px;
}

section.banner-travel * {
    box-sizing: inherit;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: border-box;
}

.btn-blue-light:hover {
    color: #000;
    opacity: .7;
}

section.travel-input {
    position: absolute;
    left: 0;
    right: 0;
    top: 424px;
}

.banner-travel .buttons {
    margin-top: 25px;
}

/*-----index 17 css start Here------*/
.hero-content {
    top: 251px;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    right: 0;
}

section.hero-content * {
    box-sizing: inherit;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: border-box;
}

/*--media query--*/

@media(max-width:1199px) {
    .banner .breadcrumb > li {
        font-size: 14px;
    }

    .team-desc ul.social li {
        list-style: none;
        float: left;
        padding-left: 3px;
    }

    .banner .breadcrumb {
        border-radius: 0px;
        background: #fff;
        width: 155px;
    }

    .aboutcontact h3 {
        color: #001946;
        font-size: 3.8em;
        padding-bottom: 25px;
    }

    .btn-lg {
        padding: 10px 26px;
    }

    .cta h1 {
        font-size: 31px;
    }

    .cta h1 {
        font-size: 24px;
    }

    .client-logo .clients li {
        vertical-align: middle;
        padding: 20px 30px;
    }

    .features {
        padding-bottom: 0px;
    }

    .mockup-wrap {
        padding: 40px 0;
    }

    .nav > li > a {
        display: block;
        padding: 10px 14px;
    }

    .teamdesc ul.social li {
        padding-left: 7px;
    }

    .video-inner a {
        position: absolute;
        left: 38%;
        top: 38%;
        margin-left: 29%;
        margin-top: 95%;
        display: block;
        border-radius: 50%;
        width: 128px;
        height: 128px;
    }

    .service-right {
        padding-bottom: 363px;
    }

    .faqSection-right {
        padding: 47px 0px 0px;
    }

    .booster-contact {
        padding: 70px 0px;
    }

    .get-in-touch .btn-submit {
        margin-top: 20px;
    }

    .get-in-touch {
        padding: 40px 0;
    }

    .center-title {
        padding-bottom: 30px;
    }

    .feature-box {
        margin-bottom: 0px;
    }
}

@media(max-width:991px) {
    .nav > li > a {
        display: block;
        padding: 10px 8px;
        position: relative;
    }

    .navbar-brand > img {
        width: 200px;
    }

    .nav > li > a {
        display: block;
        padding: 10px 7px;
        position: relative;
    }

    .banner h1 {
        text-transform: uppercase;
        font-weight: 900;
        font-size: 4.5em;
        line-height: 50px;
        position: absolute;
        padding-top: 64px;
    }

    .banner .breadcrumb {
        border-radius: 0px;
        background: #fff;
    }

    .teamdesc ul.social li {
        margin: auto !important;
        float: none;
        display: inline;
    }

    .service-right {
        float: right;
        padding-top: 45px;
        padding-bottom: 0px;
    }

    .cta h1 {
        margin-top: 10px;
        color: #fff;
        position: absolute;
        left: 0;
        font-size: 21px;
    }

    .faqSection {
        margin-bottom: 0px;
    }

    .form-control {
        margin-bottom: 15px;
    }

    .conact-title h2::after {
        background: rgba(0, 0, 0, 0) url(../images/homev6/contact-title-border.png) no-repeat scroll 0 0;
        left: 20%;
    }

    .row.form-row {
        margin-bottom: 0px;
    }

    .form-button {
        text-align: center;
    }

    .feature-box {
        margin-bottom: 0px;
    }

    .about-hosting img {
        margin-top: 7px;
    }

    .footer-bottom span {
        text-align: center;
        display: block;
    }

    .footer-bottom ul {
        text-align: center;
    }

    .aside-video {
        position: relative;
        margin-top: 40px;
        width: 100%;
        margin-bottom: 40px;
        height: 400px;
    }

    .video-inner a {
        position: absolute;
        left: 38%;
        top: 38%;
        margin-left: 6%;
        margin-top: 17%;
        display: block;
        border-radius: 50%;
        width: 128px;
        height: 128px;
    }

    .aside-img-wrapper {
        padding-top: 30px;
    }

    .aboutcontact h3 {
        font-size: 3.2em;
    }

    .social li {
        margin: 0px;
    }

    .contact-panel {
        padding: 55px 0px;
    }

    .center-title {
        padding-top: 40px;
    }

    .banner-deal h1 {
        font-size: 40px;
        line-height: 40px;
    }

    .banner-deal h2 {
        font-size: 55px;
        line-height: 55px;
    }

    .banner-deal p {
        font-size: 14px;
    }

    .banner-deal {
        top: -100px;
    }

    .form-control {
        font-size: 13px;
    }

    .banner-deal h5 {
        font-size: 15px;
    }
}

@media(max-width:767px) {
    .top-bar span {
        text-align: center;
        display: block;
    }

    .top-bar ul {
        text-align: center;
    }

    .text-right {
        text-align: center;
        padding-top: 5px;
    }

    .navbar-brand > img {
        margin-top: -10px;
        width: 150px;
    }

    .about-hosting img {
        width: 100%;
    }

    .page-comes span {
        text-align: center;
        display: block;
    }

    .header-v2 {
        position: absolute;
        left: 0;
        top: 20px;
        width: 100%;
    }

    .Wel-right img {
        width: 100%;
    }

    .icon-left {
        border-bottom: solid 1px #ccc;
        padding-bottom: 30px;
        text-align: center;
    }

        .icon-left i {
            color: #363636;
            font-size: 65px;
            float: none;
            padding-bottom: 10px;
        }

    .right-contact {
        padding-left: 10px;
    }

    .center-title {
        padding-bottom: 30px;
    }

    .hosting-contact .center-title h1 {
        padding-bottom: 30px;
    }

    .hosting-contact {
        padding-bottom: 45px;
    }

    .page-breadcrumb h1 {
        text-align: center;
        margin-bottom: 15px;
    }

    .volunteer h1 {
        font-size: 30px;
    }

    .about-us h1 {
        font-size: 30px;
        line-height: 30px;
        margin-top: 0px;
    }

    .cta h1 {
        text-align: center;
        position: relative;
        font-size: 21px;
    }

    .banner h1 {
        position: relative;
        text-align: center;
    }

    .banner .breadcrumb {
        float: none;
        text-align: center;
        margin-top: 10px;
        display: inline-block;
    }

    .heading_title h1 {
        font-size: 3em;
    }

    .banner h1 {
        font-size: 4em;
    }

    .our-service {
        padding: 0px 0px;
    }

    .banner {
        padding: 130px 0px;
    }

    .service-right img {
        width: 175px;
        margin-top: -33px;
    }

    .booster h1 {
        font-size: 3.5em;
    }

    .contact-right span {
        font-size: 11px;
        color: #363636;
    }

    .service-box img {
        width: 100%;
    }

    .welcome-sec {
        padding: 50px 0px;
    }

    .section-block {
        padding-bottom: 22px;
    }

    .atorny-tabs {
        padding-bottom: 0px;
    }

    .review-text img {
        width: 250px;
    }

    .Aboutbanner h1 {
        font-size: 3.1em;
    }

    .clients li {
        padding: 20px 30px;
    }

    .clients li {
        padding: 20px 42px;
    }

    .list-inline > li {
        display: inline-block;
        padding-left: 1px;
        padding-right: 0px;
        padding-top: 4px;
    }

    .music-team img {
        width: 100%;
    }
}
/*Novika changes CSS*/

.post-content h4 {
    font-size: 15px;
    font-style: italic;
}

.login-form h4 {
    font-size: 19px;
    font-style: italic;
}

.contact-panel {
    padding: 20px 0px;
}

.details {
    padding-bottom: 30px;
}

.project-post {
    border-style: solid;
    border-width: 1px;
    border-color: #F9C24A;
}

.mix-no-border {
    margin-bottom: 40px;
}

.architecture-service h4 {
    color: #F9C24A;
    font-size: 36px;
    font-family: 'Raleway-Bold';
    font-weight: 600;
    margin-bottom: 40px;
}

.nav > li > a {
    padding: 10px;
}

@media (min-width: 400px) {
    .amp-default-skin .vjs-has-started .vjs-control-bar {
        opacity: 0;
    }

        .amp-default-skin .vjs-has-started .vjs-control-bar:hover {
            opacity: 1;
        }

    .vjs-player:hover > .vjs-control-bar {
        opacity: 1;
    }
}

.amp-default-skin .amp-content-title {
    display: none;
}

.falconiq-margin {
    margin-bottom: 70px;
}

.feature-desc a {
    color: #f9c24a;
}

.embed-responsive-morevideos {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive-morevideos .embed-responsive-item,
    .embed-responsive-morevideos iframe,
    .embed-responsive-morevideos embed,
    .embed-responsive-morevideos object,
    .embed-responsive-morevideos video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.embed-responsive-morevideos-16by9 {
    padding-bottom: 25%;
}

.embed-responsive-morevideos-4by3 {
    padding-bottom: 75%;
}

@media (max-width: 480px) {
    .navbar-default .navbar-nav > li > a {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

.btn-theme {
    background: #F9C24A;
    color: #fff;
}

    .btn-theme:hover, .btn-theme:focus {
        background-color: #222222;
        color: #fff;
    }

.productdetail_title {
    font-size: 22px;
    color: #003471;
    margin-bottom: 30px;
}

.productdetail_subtitle {
    font-size: 18px;
    color: #F9C24A;
    margin-bottom: 15px;
}

.strikethrough {
    position: relative;
}

    .strikethrough:before {
        position: absolute;
        content: "";
        left: 0;
        top: 50%;
        right: 0;
        border-top: 1px solid;
        border-color: inherit;
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

li.active {
    border-width: 3px !important;
}

.title1 {
}

.title2 {
}

.title3 {
    color: #003471;
    font-size: 32px;
    font-family: 'Raleway-Bold';
    margin-bottom: 35px;
}

.title4 {
    color: #F9C24A;
    font-size: 36px;
    font-family: 'Raleway-Bold';
    font-weight: 600;
    margin-bottom: 40px;
}

.title5 {
    color: #F9C24A;
    padding-top: 130px;
    font-size: 72px;
    font-family: 'Raleway-Bold';
    font-weight: 900;
}
.eta-button {
    background: rgb(0, 52, 113);
    color: rgb(255, 255, 255);
    font-size: 15px;
    border: 1px solid rgb(0, 52, 113);
    margin: 0px;
    padding: 10px 16px;
    line-height: 20px;
    display: inline-block;
}
.eta-button-H4 {
    background: rgb(0, 52, 113);
    border: 1px solid rgb(0, 52, 113);
    margin: 0px;
    padding: 10px 16px;
    color: #F9C24A;
    font-size: 36px;
    font-family: 'Raleway-Bold';
    font-weight: 600;
    margin-bottom: 40px;
    display: inline-block;
    line-height: 36px;
}
.eta-button-H5 {
    background: rgb(0, 52, 113);
    border: 1px solid rgb(0, 52, 113);
    margin: 0px;
    padding: 22px 22px;
    color: #F9C24A;
    font-size: 72px;
    font-family: 'Raleway-Bold';
    font-weight: 900;
    margin-bottom: 40px;
    display: inline-block;
    line-height: 71px;
}

a, a:visited, a:hover, a:active {
    color: inherit;
}

.p {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-family: 'Roboto', sans-serif;
}

.top-bar span {
    border-right: solid 0px;
}

.btn-blue {
    background-color: #003471;
}

