@-webkit-keyframes $animation-name {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-ms-keyframes $animation-name {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-moz-keyframes $animation-name {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes $animation-name {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  -ms-animation-fill-mode: backwards;
  -o-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-iteration-count: none;
  animation-iteration-count: none; }

@-webkit-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-ms-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  -ms-animation-fill-mode: backwards;
  -o-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-iteration-count: none;
  animation-iteration-count: none; }

@-webkit-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-ms-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  -ms-animation-fill-mode: backwards;
  -o-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-iteration-count: none;
  animation-iteration-count: none; }

@-webkit-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-ms-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  -ms-animation-fill-mode: backwards;
  -o-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-iteration-count: none;
  animation-iteration-count: none; }

@-webkit-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-ms-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-moz-keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes $animation-name {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  -ms-animation-fill-mode: backwards;
  -o-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-iteration-count: none;
  animation-iteration-count: none; }

@-webkit-keyframes $animation-name {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-ms-keyframes $animation-name {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes $animation-name {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes $animation-name {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fade, .nivo-caption .caption_1 h3, .nivo-caption .caption_1 p, .nivo-caption .caption_1 a, .nivo-caption .caption_1 .text_first, .nivo-caption .caption_2 h3, .nivo-caption .caption_2 p, .nivo-caption .caption_2 a, .nivo-caption .caption_2 .text_first, .nivo-caption .caption_3 h3, .nivo-caption .caption_3 p, .nivo-caption .caption_3 a, .nivo-caption .caption_3 .text_first, .nivo-caption .caption_4 h3, .nivo-caption .caption_4 p, .nivo-caption .caption_4 a, .nivo-caption .caption_4 .text_first, .nivo-caption .caption_5 h3, .nivo-caption .caption_5 p, .nivo-caption .caption_5 a, .nivo-caption .caption_5 .text_first, .nivo-caption .caption_6 h3, .nivo-caption .caption_6 p, .nivo-caption .caption_6 a, .nivo-caption .caption_6 .text_first {
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  -ms-animation-fill-mode: backwards;
  -o-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-iteration-count: none;
  animation-iteration-count: none; }

#slideshow .slider-container {
  overflow: hidden;
  background-color: #ffffff;
  max-height: 1280; }

.slider-container {
  margin: 0px;
  background-color: transparent;
  position: relative;
  width: 100%; }

.apollo_slides {
  position: relative;
  background: url(/tp/T0221/img/tmp/loading.gif) no-repeat center center;
  width: 100%;
  height: auto;
  overflow: hidden; }
  .apollo_slides img {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: none; }
  .apollo_slides a.nivo-imageLink {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    z-index: 6;
    display: none;
    background: white;
    filter: alpha(opacity=0);
    opacity: 0; }

.apollo-html-caption {
  display: none; }

.nivo-main-image {
  display: block !important;
  position: relative !important;
  width: 100% !important; }

.nivo-slice {
  display: block;
  position: absolute;
  z-index: 5;
  height: 100%;
  top: 0; }

.nivo-box {
  display: block;
  position: absolute;
  z-index: 5;
  overflow: hidden; }

.nivo-box img {
  display: block; }

.nivo-caption {
  position: absolute;
  left: 75px;
  top: 0px;
  width: 100%;
  z-index: 8;
  display: none;
  top: 30%; }

.slide-caption {
  position: absolute;
  margin: 0px auto;
  width: 600px;
  left: 0px;
  right: 0px;
  z-index: 9; }
  .slide-caption .text_first {
    font-family: Open Sans;
    font-size: 19px;
    color: #ffffff;
    text-shadow: none;
    margin: 0px 40px;
    padding: 0px;
    line-height: 25px;
    padding-bottom: 25px; }
  .slide-caption h3 {
    position: relative;
    font-family: Open Sans;
    font-weight: bold;
    font-size: 50px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0px 40px;
    padding: 0px;
    line-height: 25px;
    padding-bottom: 35px; }
    .slide-caption h3:before {
      position: absolute;
      content: "";
      width: 60px;
      height: 2px;
      background-color: #000000;
      left: 0;
      bottom: -2px; }
  .slide-caption p {
    color: #ffffff;
    font-family: Open Sans;
    font-size: 14px;
    margin: 20px 40px 6px;
    padding: 10px 0px;
    line-height: 25px; }
    @media screen and (max-width: 1100px) {
      .slide-caption p {
        margin: 0px 40px; } }
  .slide-caption .btn-slide {
    font-family: Open Sans;
    font-size: 14px;
    background: #333333;
    border: 1px solid #333333;
    color: #ffffff;
    margin: 10px 40px;
    padding: 9px 28px 9px 28px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    line-height: 25px; }
    .slide-caption .btn-slide:hover, .slide-caption .btn-slide:focus {
      background: #33c9db;
      border-color: #ba0000;
      color: #ffffff; }
  @media (max-width: 991px) {
    .slide-caption .text_first {
      font-size: 1vw;
      padding-bottom: 0px; }
    .slide-caption h3 {
      font-size: 2.6vw;
      padding-bottom: 10px; }
    .slide-caption p {
      padding: 0;
      margin: 5px 40px;
      font-size: 0.75vw;
      max-width: 50%;
      line-height: 18px; }
    .slide-caption .btn-slide {
      line-height: normal;
      font-size: 0.75vw; } }
  @media (max-width: 500px) {
    .slide-caption .text_first {
      padding-bottom: 5px;
      line-height: normal; }
    .slide-caption h3 {
      padding-bottom: 5px;
      line-height: normal; }
      .slide-caption h3:before {
        width: 5%;
        height: 1px; }
    .slide-caption p {
      line-height: normal;
      max-width: 25%; }
    .slide-caption .btn-slide {
      padding: 5px 12px; } }

.caption_1 {
  top: 0px;
  left: 0px;
  right: auto; }

.nivo-caption .caption_1 h3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.nivo-caption .caption_1 p {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s; }

.nivo-caption .caption_1 a {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.nivo-caption .caption_1 .text_first {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.caption_2 {
  top: 0px;
  left: 0px;
  right: auto; }

.nivo-caption .caption_2 h3 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_2 p {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_2 a {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_2 .text_first {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.caption_3 {
  top: 0px;
  left: 0px;
  right: auto; }

.nivo-caption .caption_3 h3 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_3 p {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_3 a {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_3 .text_first {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.caption_4 {
  top: 0px;
  left: 0px;
  right: auto; }

.nivo-caption .caption_4 h3 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_4 p {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_4 a {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_4 .text_first {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.caption_5 {
  top: 0px;
  text-align: center; }

.nivo-caption .caption_5 h3 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_5 p {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_5 a {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_5 .text_first {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.caption_6 {
  top: 0px;
  text-align: center; }

.nivo-caption .caption_6 h3 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_6 p {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_6 a {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-caption .caption_6 .text_first {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.nivo-controlNav {
  width: 100%;
  position: absolute;
  bottom: 10px;
  text-align: center;
  z-index: 10; }
  .nivo-controlNav .nivo-control {
    position: relative;
    background-color: #000000;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    width: 14px;
    height: 14px;
    cursor: pointer;
    margin: 0px 6px; }
    .nivo-controlNav .nivo-control.active {
      border-color: #000000;
      background-color: #FFFFFF; }

.nivo-directionNav a {
  position: absolute;
  top: 50%;
  margin: 0px 0px 0px 0px;
  display: block;
  cursor: pointer;
  font-size: 0px;
  z-index: 10; }
  .nivo-directionNav a.nivo-prevNav {
    left: -40px;
    right: auto;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease; }
    .slider-container:hover .nivo-directionNav a.nivo-prevNav {
      left: 0px; }
    .nivo-directionNav a.nivo-prevNav:before {
      content: "\f104";
      font-family: "FontAwesome";
      font-size: 14px;
      position: absolute;
      top: -23px;
      left: 0px;
      height: 36px;
      width: 36px;
      line-height: 36px;
      text-align: center;
      -webkit-transition: all 0.35s ease;
      transition: all 0.35s ease;
      color: #ffffff;
      background-color: #666666; }
    .nivo-directionNav a.nivo-prevNav:hover {
      border-left-color: #000000;
      -webkit-transition: all 0.35s ease;
      transition: all 0.35s ease; }
      .nivo-directionNav a.nivo-prevNav:hover:before {
        background: #000000;
        color: #ffffff;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease; }
  .nivo-directionNav a.nivo-nextNav {
    right: -40px;
    left: auto;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease; }
    .slider-container:hover .nivo-directionNav a.nivo-nextNav {
      right: 0px; }
    .nivo-directionNav a.nivo-nextNav:before {
      content: "\f105";
      font-family: "FontAwesome";
      font-size: 14px;
      position: absolute;
      top: -23px;
      right: 0px;
      height: 36px;
      width: 36px;
      line-height: 36px;
      text-align: center;
      -webkit-transition: all 0.35s ease;
      transition: all 0.35s ease;
      color: #ffffff;
      background-color: #666666; }
    .nivo-directionNav a.nivo-nextNav:hover {
      border-right-color: #000000;
      -webkit-transition: all 0.35s ease;
      transition: all 0.35s ease; }
      .nivo-directionNav a.nivo-nextNav:hover:before {
        background: #000000;
        color: #ffffff;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease; }

.caption-fullwidth.container {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  z-index: 9; }

.slideNew .nivo-caption {
  left: auto;
  top: auto;
  bottom: 15%;
  right: 10%;
  width: 300px; }

.slideNew .nivo-caption .slide-caption {
  position: relative;
  width: 100%; }

.slideNew .nivo-caption .slide-caption .btn-slide {
  width: 250px;
  font-size: 20px;
  height: 50px; }
