#slider {
  height: 700px;
  margin-top: 10px;
  margin-bottom: 0;
}

#slider .controls {
  padding: 0;
  margin-top: 40px;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}

#slider .controls .pseudo {
  border-bottom: 1px dashed #B2CCF0;
  color: #008ACE;
  cursor: pointer;
  position: relative;
  margin: 0 11px;
  z-index: 1;
}

#slider .controls .pseudo:first-child {
  margin-left: 0;
}

#slider .controls .pseudo:after {
  content: '→';
  color: #000;
  position: absolute;
  right: -20px;
}

#slider .controls .pseudo:hover {
  color: #CC0000;
  border-color: #F0B2B2;
}

#slider .controls .pseudo.selected {
  border: 0;
  color: #000;
  cursor: default;
}

#slider .controls .pseudo.selected:before {
  content: '';
  background: #EBEBCF;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  z-index: -1;
}

#slider .controls .pseudo:last-child {
  margin-right: 0;
}

#slider .controls .pseudo:last-child:after {
  display: none;
}

#slider .containers {
  background: #F7F7F5;
  position: relative;
  height: 100%;
  overflow: hidden;
}

#slider .containers .container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#slider .containers .container.selected {
  z-index: 4;
}

#slider .containers .container.follow,
#slider .containers .container.previous {
  z-index: 3;
}

#slider .containers .container.selected,
#slider .containers .container.follow,
#slider .containers .container.previous {
  display: block;
}

#slider .containers .container img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1318px;
  margin-top: -557px;
}

#slider .containers .container.follow img {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);

  -webkit-animation: zoom-animate-follow 1s infinite;
  -moz-animation: zoom-animate-follow 1s infinite;
  -o-animation: zoom-animate-follow 1s infinite;
  animation: zoom-animate-follow 1s infinite;
}

#slider .containers .container.previous img {
  opacity: 0;

  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);

  -webkit-animation: zoom-animate-previous 1s infinite;
  -moz-animation: zoom-animate-previous 1s infinite;
  -o-animation: zoom-animate-previous 1s infinite;
  animation: zoom-animate-previous 1s infinite;
}

#slider .containers .container.zoom img {
  -webkit-animation: zoom-animate 1s infinite;
  -moz-animation: zoom-animate 1s infinite;
  -o-animation: zoom-animate 1s infinite;
  animation: zoom-animate 1s infinite;

  -webkit-filter: blur(0.6px);
  -moz-filter: blur(0.6px);
  -o-filter: blur(0.6px);
  -ms-filter: blur(0.6px);
  filter: blur(0.6px);
}

#slider .containers .container.out img {
  -webkit-animation: out-animate 1s infinite;
  -moz-animation: out-animate 1s infinite;
  -o-animation: out-animate 1s infinite;
  animation: out-animate 1s infinite;
}

.v-cont {
  position: relative;
  max-width: 1344px;
}

#v1 {
  position: absolute;
  top: 7.9%;
  left: 2.5%;
  width: 95.2%;
  height: auto;
}

#v2 {
  position: absolute;
  top: 8.5%;
  left: 2.4%;
  width: 95.3%;
  height: auto;
}

#v3 {
  position: absolute;
  top: 8.5%;
  left: 2.4%;
  width: 95.2%;
  height: auto;
}

#v5 {
  position: absolute;
  top: 8.5%;
  left: 2.4%;
  width: 95.3%;
  height: auto;
}




@-webkit-keyframes zoom-animate {
  0% {
    -webkit-transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    opacity: 0;
  }
}

@-moz-keyframes zoom-animate {
  0%  {
    -moz-transform: scale(1);
  }
  30%  {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2);
    opacity: 0;
  }
}

@-o-keyframes zoom-animate {
  0% {
    -o-transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  100% {
    -o-transform: scale(2);
    opacity: 0;
  }
}

@keyframes zoom-animate {
  0% {
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes out-animate {
  0% {
    -webkit-transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.6);
    opacity: 0;
  }
}

@-moz-keyframes out-animate {
  0%  {
    -moz-transform: scale(1);
  }
  30%  {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(0.6);
    opacity: 0;
  }
}

@-o-keyframes out-animate {
  0% {
    -o-transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  100% {
    -o-transform: scale(0.6);
    opacity: 0;
  }
}

@keyframes out-animate {
  0% {
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scale(0.6);
    opacity: 0;
  }
}

@-webkit-keyframes zoom-animate-follow {
  0% {
    -webkit-transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes zoom-animate-follow {
  0%  {
    -moz-transform: scale(0.8);
  }
  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes zoom-animate-follow {
  0% {
    -o-transform: scale(0.8);
  }
  100% {
    -o-transform: scale(1);
  }
}

@keyframes zoom-animate-follow {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes zoom-animate-previous {
  0% {
    -webkit-transform: scale(2);
  }
  50% {
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@-moz-keyframes zoom-animate-previous {
  0%  {
    -moz-transform: scale(2);
  }
  50% {
    opacity: 0;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}

@-o-keyframes zoom-animate-previous {
  0% {
    -o-transform: scale(2);
  }
  50% {
    opacity: 0;
  }
  100% {
    -o-transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoom-animate-previous {
  0% {
    transform: scale(2);
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}