#main {
  position: relative;
}

#main:after {
  content: "";
  background-position: top;
  background-size: auto;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000000000000000;
  position: absolute;
  opacity: .6;
  pointer-events: none;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes wobble {
  0% {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

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

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

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

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

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

  100% {
    opacity: 0;
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

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

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

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

  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }

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

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

  50% {
    opacity: 1;
  }
}

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

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

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

.animated.bounceIn {
  animation-duration: .75s;
}

.animated.bounceOut {
  animation-duration: .75s;
}

.animated.flipOutX {
  animation-duration: .75s;
}

.animated.flipOutY {
  animation-duration: .75s;
}

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

.flash {
  animation-name: flash;
}

.pulse {
  animation-name: pulse;
}

.rubberBand {
  animation-name: rubberBand;
}

.shake {
  animation-name: shake;
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

.tada {
  animation-name: tada;
}

.wobble {
  animation-name: wobble;
}

.bounceIn {
  animation-name: bounceIn;
}

.bounceInDown {
  animation-name: bounceInDown;
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

.bounceInRight {
  animation-name: bounceInRight;
}

.bounceInUp {
  animation-name: bounceInUp;
}

.bounceOut {
  animation-name: bounceOut;
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

.fadeInRight {
  animation-name: fadeInRight;
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

.fadeOut {
  animation-name: fadeOut;
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

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

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

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

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

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

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

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

.rotateIn {
  animation-name: rotateIn;
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

.rotateOut {
  animation-name: rotateOut;
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

.hinge {
  animation-name: hinge;
}

.rollIn {
  animation-name: rollIn;
}

.rollOut {
  animation-name: rollOut;
}

.zoomIn {
  animation-name: zoomIn;
}

.zoomInDown {
  animation-name: zoomInDown;
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

.zoomInRight {
  animation-name: zoomInRight;
}

.zoomInUp {
  animation-name: zoomInUp;
}

.zoomOut {
  animation-name: zoomOut;
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

.slideInDown {
  animation-name: slideInDown;
}

.slideInLeft {
  animation-name: slideInLeft;
}

.slideInRight {
  animation-name: slideInRight;
}

.slideInUp {
  animation-name: slideInUp;
}

.slideOutDown {
  animation-name: slideOutDown;
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

.slideOutRight {
  animation-name: slideOutRight;
}

.slideOutUp {
  animation-name: slideOutUp;
}

@font-face {
  font-family: "ACaslonProBold";
  src: url("/_src/fonts/ACaslonPro-Bold.otf");
}

* {
  outline: none !important;
}

html {
  height: 100%;
}

body {
  font-size: 14px;
  color: #616161;
  min-width: 320px;
  margin: auto;
  background: #fff;
  line-height: 19px;
  overflow-x: hidden;
}

body p {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: normal;
}

.container {
  margin: auto;
  line-height: 23px;
  text-align: justify;
  position: relative;
  color: #757575;
  max-width: 1230px;
}

.container:before {
  display: block;
  content: "";
  clear: both;
}

.container:after {
  display: block;
  content: "";
  clear: both;
}

.animar {
  transition: all .3s ease-in-out 0s;
  -moz-transition: all .3s ease-in-out 0s;
  -webkit-transition: all .3s ease-in-out 0s;
}

#header {
  width: 100%;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
}

#logoMovil {
  display: none;
}

#topMenu {
  width: 100%;
  position: relative;
}

#menu ul {
  margin: 0;
  position: relative;
}

#menu ul>li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu ul>li>a {
  display: block;
  color: #26333e;
  position: relative;
  background: rgba(0,0,0,0);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 400;
  line-height: 35px;
  height: 35px;
  padding: 0 12px;
}

#menu ul>li>a:hover {
  color: #26333e;
}

#menu ul>li>a:focus {
  color: #26333e;
}

#menu ul>li:last-child {
  background: rgba(0,0,0,0);
  padding-right: 0;
}

#menu ul>li.active>a {
  color: #26333e;
}

#menu ul>li.open .submenu {
  display: block;
}

#menu ul li ul>li {
  width: 100%;
  margin: 0;
  height: 45px;
  padding: 0;
}

#menu li ul>li a {
  height: 30px;
  width: 100%;
  color: #26333e;
  text-transform: uppercase;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 400;
  text-align: left;
  position: relative;
}

#menu li ul>li a:hover {
  border-bottom: 0;
  background-color: rgba(0,0,0,0);
  color: #26333e;
  text-decoration: none;
}

#menu li ul>li a:focus {
  border-bottom: 0;
  background-color: rgba(0,0,0,0);
  color: #26333e;
  text-decoration: none;
}

#menu li ul>li>a:hover:before {
  content: "";
  position: absolute;
  background: #6a6a6a;
  height: 53px;
  width: 2px;
  left: auto;
  right: 10px;
  top: calc(50% - 26.5px);
}

#menu li ul li a .icon {
  position: absolute;
  top: 11.5px;
  right: 17px;
}

#menu li ul li:last-child a {
  border-bottom: 0;
}

#menu li ul>li.open>a {
  border-bottom: 0;
  background-color: rgba(0,0,0,0);
  color: #26333e;
  text-decoration: none;
}

#menu li ul>li.open>a:before {
  content: "";
  position: absolute;
  background: #6a6a6a;
  height: 53px;
  width: 2px;
  left: auto;
  right: 10px;
  top: calc(50% - 26.5px);
}

.idiomasMenu {
  position: absolute;
  top: 22.5px;
  right: 15px;
  height: 71px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-left: solid 1px #26333e;
}

.idiomasMenu a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 24px;
  font-weight: 400;
  display: block;
  cursor: pointer;
}

.idiomasMenu a:first-child {
  margin-bottom: 4px;
}

.toggle-bar .idiomasMenu {
  display: none;
}

.submenu {
  background-color: rgba(255,255,255,.9);
  border-radius: 0;
  width: 258px;
  position: absolute !important;
  z-index: 9999;
  display: none;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 35px;
}

.submenu:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 28px;
  width: 8px;
  height: 160px;
  background: #293039;
}

#datFooter .contentDatFooter {
  padding-left: 50%;
  position: relative;
}

#datFooter .contentDatFooter .img1Logo {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 400px;
}

#datFooter .textDatFoot {
  padding-right: 57px;
  text-align: right;
  color: #3b3b3b;
  font-family: "Open Sans",sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  letter-spacing: .25px;
}

#datFooter .textDatFoot a {
  color: #3b3b3b;
}

#datFooter .textDatFoot span {
  display: block;
}

#datFooter .titleDatFoot {
  color: #91c747;
  font-family: "Open Sans",sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  padding-bottom: 5px;
}

#datFooter .titleDatFoot2 {
  margin-top: 35px;
}

#datFooter .textCertDat {
  font-family: "Open Sans",sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #2f3c47;
  margin-right: 22px;
  padding-right: 11px;
  padding-top: 17.5px;
  padding-bottom: 17.5px;
  border-right: solid 2px #1c2a36;
}

#datFooter .empresaCertDat {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 45px;
}

#datFooter .textDirDat {
  background: url(/_src/images/banner/icoLugar.png) right center no-repeat;
  background-position: right 6px;
  margin-right: 5px;
  padding-right: 52px;
}

.cntDatFooter {
  padding-top: 107px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

a.toTop {
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 37px;
  color: #fff;
  border-radius: 50%;
  position: fixed;
  background: #000;
  border: solid 1px #fff;
  left: 21px;
  bottom: 65px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 20;
  opacity: .75;
}

a.toTop:hover {
  color: #000;
  text-decoration: none;
  opacity: 1;
  background: #fff;
}

a.toTop:hover:after {
  transform: scale(1.3);
  opacity: 0;
}

a.toTop:active {
  color: #000;
  text-decoration: none;
  opacity: 1;
  background: #fff;
}

a#toTop a#toTop .fa {
  color: #fff !important;
}

.mobile .toTop {
  display: none !important;
}

.tablet .toTop {
  display: none !important;
}

.flex-direction-nav a {
  width: 34px;
  height: 35px;
}

.flex-direction-nav .flex-prev {
  margin-left: -360px;
  opacity: 1;
  background: url(/_src/images/slider/prev.png);
}

.flex-direction-nav .flex-next {
  margin-left: -320px;
  opacity: 1;
  background: url(/_src/images/slider/next.png);
}

#main {
  overflow: hidden;
}

.desktop .wow {
  visibility: hidden;
}

#formTop {
  position: relative;
  padding-bottom: 40px;
  padding-top: 50px;
  padding-right: 26px;
  background: url(/_src/images/bgc.png);
  padding-left: 26px;
}

#formTop .textContacto {
  font-family: "Open Sans",sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

.titleContacto1 {
  color: #91c747;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  position: relative;
}

.titleContacto1:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background: #fff;
  top: 18px;
  left: -17px;
}

.titleContacto2 {
  padding-left: 0px;
  padding-top: 30px;
  padding-bottom: 30px;
}

#frmContacto {
  overflow: hidden;
}

#frmContacto .row {
  margin: 0 -13.5px;
}

#frmContacto div[class*=col-] {
  padding: 0 13.5px;
}

#frmContacto .form-group {
  margin-bottom: 31px;
}

#frmContacto .form-control {
  display: block;
  height: 41px;
  border-radius: 11px;
  font-family: "Open Sans",sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #616161;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0) !important;
  border: 0;
}

#frmContacto .textarea {
  height: 168px;
  padding-top: 12px;
}

#frmContacto input[type=submit] {
  display: inline-block;
  height: 41px;
  background: #6e7a81;
  color: #fff;
  text-transform: normal;
  font-family: "Open Sans",sans-serif;
  font-size: 18px;
  width: 174px;
  text-align: center;
  font-weight: 400;
  border-radius: 10px;
  margin-top: -10px;
}

#frmContacto input[type=submit]:hover {
  opacity: .8;
}

#frmContacto .text-right {
  text-align: center;
}

#frmContacto input[type=reset]:hover {
  opacity: .8;
}

#frmContacto .error input {
  border: solid 1px #000;
  background: #ffd8d9;
  color: #000;
}

#frmContacto .error textarea {
  border: solid 1px #000;
  background: #ffd8d9;
  color: #000;
}

#frmContacto .has-error .form-control-feedback {
  line-height: 36px;
  height: 100%;
}

#frmContacto .has-error input {
  border-color: #a94442;
  box-shadow: 0 1px 1px rgba(0,0,0,.075) inset;
}

.frmContacto input::-webkit-input-placeholder {
  color: #616161;
  opacity: 1;
}

.frmContacto input:-moz-placeholder {
  color: #616161;
  opacity: 1;
}

.frmContacto input::-moz-placeholder {
  color: #616161;
  opacity: 1;
}

.frmContacto input:-ms-input-placeholder {
  color: #616161;
  opacity: 1;
}

.frmContacto input:focus::-webkit-input-placeholder {
  opacity: .5;
}

.frmContacto input:focus:-moz-placeholder {
  opacity: .5;
}

.frmContacto input:focus::-moz-placeholder {
  opacity: .5;
}

.frmContacto input:focus:-ms-input-placeholder {
  opacity: .5;
}

.frmContacto textarea::-webkit-input-placeholder {
  color: #616161;
  opacity: 1;
}

.frmContacto textarea:-moz-placeholder {
  color: #616161;
  opacity: 1;
}

.frmContacto textarea::-moz-placeholder {
  color: #616161;
  opacity: 1;
}

.frmContacto textarea:-ms-input-placeholder {
  color: #616161;
  opacity: 1;
}

.frmContacto textarea:focus::-webkit-input-placeholder {
  opacity: .5;
}

.frmContacto textarea:focus:-moz-placeholder {
  opacity: .5;
}

.frmContacto textarea:focus::-moz-placeholder {
  opacity: .5;
}

.frmContacto textarea:focus:-ms-input-placeholder {
  opacity: .5;
}

#textHome1 {
  background: url(/__src/images/banner/slider1.jpg) center no-repeat;
  background-size: cover;
  height: 445px;
  height: auto;
  position: relative;
}

#textHome1 img {
  position: relative;
  top: 0px;
  z-index: 2;
}

#textHome2 {
  background: url(/_src/images/inicio/bg1.png);
  padding: 60px 30px;
}

.contentSupHome2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.itemSupHome2 {
  text-align: center;
  font-family: "Open Sans",sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: .25px;
  color: #fff;
  position: relative;
}

.itemSupHome2:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 94px;
  background: #91c747;
  bottom: -100px;
  left: calc(50% - 1px);
}

.line1home2:before {
  left: auto;
  right: -30px;
  transform: rotate(-30deg);
}

.line3home2:before {
  left: -35px;
  bottom: -60px;
  transform: rotate(45deg);
}

.line4home2:before {
  left: auto;
  right: -10px;
  bottom: auto;
  top: -94px;
  transform: rotate(45deg);
}

.item2Home2 {
  margin-right: 35px;
  margin-left: 35px;
}

.titleHome2 {
  color: #91c747;
  font-family: "Open Sans",sans-serif;
  font-weight: 700;
  font-size: 22.52px;
  line-height: 23px;
  padding-bottom: 10px;
}

.tituloHome2 {
  color: #fff;
  font-family: "Open Sans",sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 112px;
}

.contentInfHome2 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  flex-wrap: wrap;
}

.textFinalHome2 {
  color: #91c747;
  font-family: "Open Sans",sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: right;
  line-height: normal;
  padding-left: 25px;
  position: absolute;
  top: -7px;
  right: 0;
}

.textFinalHome2:before {
  content: "";
  position: absolute;
  width: 3.75px;
  height: 74px;
  background: #fff;
  top: 10px;
  left: 0;
}

.d-xs-none {
  display: none;
}

.d-xs-none2 {
  display: block;
}

#textHome3 {
  padding-top: 11px;
  padding-bottom: 13px;
}

#textHome3 .row {
  margin: 0 -4px;
}

#textHome3 div[class*=col-] {
  padding: 0 4px;
}

#textApli1 {
  padding-top: 54px;
  padding-left: 27px;
  padding-right: 30px;
}

#textApli1 div[class*=col-]:last-child img {
  margin-left: auto;
}

#textBot1 {
  color: #fff;
  background: url(/_src/images/botellas/bg.png);
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 70px;
}

.contentBot1 {
  position: relative;
  z-index: 2;
  font-family: "Open Sans",sans-serif;
  font-weight: 400;
  font-size: 18.92px;
  line-height: 28.38px;
}

.contentBot1 .text1Bot1 {
  margin-top: 72px;
  margin-bottom: 62px;
}

.contentBot1 .text2Bot1 {
  line-height: normal;
  margin-bottom: 30px;
}

.contentBot1 ul {
  margin-left: 34px;
}

.contentBot1 ul li {
  line-height: 34.06px;
  list-style: none;
}

.imgBot1 {
  position: absolute;
  bottom: 0;
  left: 246px;
  width: 450px;
}

.imgBot2 {
  position: absolute;
  right: 40px;
  top: 52px;
  width: 200px;
}

.titleBot1 {
  color: #91c747;
  font-weight: 700;
  font-size: 28.38px;
  line-height: normal;
  position: relative;
  padding-left: 22px;
}

.titleBot1:before {
  content: "";
  position: absolute;
  width: 4.71px;
  height: 74.71px;
  background: #fff;
  left: 0;
  top: 20px;
}

#textOtros1 {
  margin-top: 33px;
  padding-top: 55px;
  margin-bottom: 30px;
  position: relative;
}

.titleOtros1 {
  margin-left: 10px;
  font-family: "Open Sans",sans-serif;
  font-weight: 400;
  font-size: 16.79px;
  line-height: normal;
  padding-left: 19px;
  position: relative;
  margin-bottom: 160px;
}

.titleOtros1:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 51px;
  background: #91c747;
  left: 0;
  top: 12px;
}

.titleOtros1 span {
  position: relative;
  z-index: 2;
}

.titleOtros1 img {
  position: absolute;
  left: 158px;
  bottom: -165px;
  width: 250px;
  z-index: 1;
}

.title2Otros1 {
  margin-left: 68px;
  font-family: "Open Sans",sans-serif;
  font-weight: 400;
  font-size: 16.79px;
  line-height: normal;
  padding-left: 19px;
  position: relative;
  margin-bottom: 55px;
}

.title2Otros1:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 51px;
  background: #91c747;
  left: 0;
  top: 5px;
}

.img1Otros {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
}

.img3Otros {
  width: 300px;
}

.img4Otros {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
}

.title3Otros {
  position: absolute;
  right: 170px;
  bottom: 69px;
  z-index: 3;
}

.title3Otros .title4Otros {
  color: #91c747;
  font-family: "Open Sans",sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  padding-left: 20px;
  margin-bottom: 20px;
  position: relative;
}

.title3Otros .title4Otros:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 52px;
  background: #224469;
  top: 10px;
  left: 0;
}

.textOtros2 {
  color: #616161;
  font-family: "Open Sans",sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  padding-left: 20px;
  letter-spacing: .5px;
}

.rd-mobilemenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 999999;
  text-align: left;
  transition: .3s all ease;
}

.rd-mobilemenu.active {
  right: 0;
}

.rd-mobilemenu.active .rd-mobilemenu_ul {
  transform: translateX(0);
}

.rd-mobilemenu_ul {
  position: fixed;
  top: -56px;
  left: 0;
  bottom: -56px;
  width: 240px;
  padding: 132px 0 76px;
  color: #fff;
  background: #2594bf;
  font-size: 14px;
  line-height: 20px;
  padding-left: 0 !important;
  overflow: auto;
  box-shadow: 5px 0 5px 0 rgba(0,0,0,.1);
  transform: translateX(-240px);
  transition: .3s ease;
  transition: .3s cubic-bezier(0.55, 0, 0.1, 1);
}

.rd-mobilemenu_ul li:first-of-type {
  display: none;
}

.rd-mobilemenu_ul a {
  display: block;
  padding: 14px 25px 16px;
  color: #fff;
  font-family: "Open Sans",sans-serif;
}

.rd-mobilemenu_ul a:hover {
  background: rgba(255,255,255,.45);
  text-decoration: none;
}

.rd-mobilemenu_ul a .rd-submenu-toggle {
  position: absolute;
  top: 50%;
  right: 11px;
  margin-top: -17.5px;
  width: 32px;
  height: 32px;
  font: 400 10px "FontAwesome";
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  transition: .5s all ease;
  z-index: 1;
  background: rgba(0,0,0,.1);
}

.rd-mobilemenu_ul a .rd-submenu-toggle:after {
  content: "";
}

.rd-mobilemenu_ul a .rd-submenu-toggle:hover {
  background: #fff;
  color: #666;
}

.rd-mobilemenu_ul ul a {
  padding: 8px 25px 8px;
  padding-left: 40px;
}

.rd-mobilemenu_ul ul ul a {
  padding-left: 60px;
}

.rd-mobilemenu_ul li.active a {
  background: rgba(255,255,255,.45);
  text-decoration: none;
}

.rd-mobilemenu_ul a.rd-with-ul {
  position: relative;
}

.rd-mobilemenu_ul a.rd-with-ul.active .rd-submenu-toggle {
  transform: rotate(180deg);
}

.rd-mobilemenu_ul:after {
  content: "";
  display: block;
  height: 20px;
}

.rd-mobilepanel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  color: #000;
  box-shadow: 0 3px 3px 0 rgba(0,0,0,.1);
  z-index: 99999991;
  background: #fff;
  border-bottom: solid 3px #2594bf;
}

.rd-mobilepanel #logoMovil {
  top: 8px;
  margin: auto;
  left: auto;
  display: block;
  position: relative;
  width: 120px;
}

.rd-mobilepanel #logoMovil img {
  display: block;
  width: 100%;
  height: 100%;
}

.rd-mobilepanel_title {
  position: absolute;
  padding-top: 0;
  margin-top: 0;
  text-align: center;
  left: 56px;
  right: 56px;
  color: #000;
  font-size: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
}

.rd-mobilepanel_toggle {
  position: absolute;
  border: none;
  background: none;
  top: 4px;
  left: 8px;
  width: 48px;
  height: 48px;
}

.rd-mobilepanel_toggle span {
  position: relative;
  display: block;
  margin: auto;
  transition: all .3s ease;
  width: 24px;
  height: 4px;
  background-color: #2594bf;
  backface-visibility: hidden;
  border-radius: 2px;
}

.rd-mobilepanel_toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  transition: all .3s ease;
  top: 8px;
  width: 24px;
  height: 4px;
  background-color: #2594bf;
  backface-visibility: hidden;
  border-radius: 2px;
  transition-duration: .3s,.3s;
  transition-delay: .3s,0s;
  transition-property: top,transform;
}

.rd-mobilepanel_toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  transition: all .3s ease;
  width: 24px;
  height: 4px;
  background-color: #2594bf;
  backface-visibility: hidden;
  border-radius: 2px;
  transition-duration: .3s,.3s;
  transition-delay: .3s,0s;
  transition-property: top,transform;
}

.rd-mobilepanel_toggle.active span {
  transition: background .3s 0s ease;
  background: rgba(0,0,0,0);
}

.rd-mobilepanel_toggle.active span:before {
  top: 0;
  transition-delay: 0s,.3s;
  transform: rotate(45deg);
}

.rd-mobilepanel_toggle.active span:after {
  top: 0;
  transition-delay: 0s,.3s;
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .rd-mobilemenu {
    display: block;
  }

  .rd-mobilepanel {
    display: block;
  }

  body {
    padding: 56px 0 0;
  }

  #header {
    display: none;
    margin-top: 0px;
    height: auto;
  }

  #header #topMenu {
    height: auto;
  }

  #frmContacto {
    position: static;
    margin: auto;
  }

  a.toTop {
    left: auto;
    right: 21px;
  }

  #datFooter .contentDatFooter {
    padding-left: 0;
  }

  #datFooter .contentDatFooter .img1Logo {
    position: relative;
    bottom: auto;
    left: auto;
    width: 400px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -2px;
  }

  #datFooter .textDatFoot {
    padding-right: 0px;
    text-align: center;
  }

  #datFooter .empresaCertDat {
    justify-content: center;
  }

  #datFooter .textDirDat {
    background-position: center 10px;
    margin-right: 0;
    padding-right: 0;
    padding-top: 55px;
  }

  .cntDatFooter {
    justify-content: center;
    text-align: center;
    padding-top: 60px;
  }

  #sliderTopM {
    margin-top: 0px;
  }

  .idiomasMenu {
    top: 0;
    right: 25px;
    height: 56px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-left: 0;
  }

  .idiomasMenu div {
    display: flex;
    align-items: center;
  }

  .idiomasMenu a:first-child {
    margin-bottom: 0px;
    margin-right: 0px;
  }

  .d-xs-none {
    display: block;
  }

  .d-xs-none2 {
    display: none;
  }

  .tituloHome2 {
    padding-top: 20px;
    padding-bottom: 55px;
    font-size: 26px;
  }

  .itemSupHome2:before {
    width: 0;
    height: 0;
  }

  .item2Home2 {
    margin-right: 0px;
    margin-left: 35px;
  }

  .line3home2 {
    width: 100%;
    text-align: center;
    padding: 45px 0;
  }

  #textApli1 {
    padding-left: 0;
    padding-right: 0;
  }

  #textApli1 div[class*=col-] {
    width: 100%;
  }

  #textApli1 div[class*=col-] img {
    margin-left: auto;
    margin-right: auto;
  }

  #textApli1 div[class*=col-]:last-child img {
    margin-top: 45px;
  }

  .imgBot1 {
    width: 350px;
    left: auto;
    right: 20px;
  }

  .imgBot2 {
    width: 200px;
  }

  #logoMovil {
    height: 100%;
    padding: 2px;
    top: 0;
    margin: auto;
    left: auto;
    display: block;
    position: relative;
    width: 70px;
    transform: translateX(-32px);
  }

  #logoMovil img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .rd-mobilemenu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 7997;
    text-align: left;
    transition: .3s all ease;
  }

  .rd-mobilemenu.active {
    right: 0;
  }

  .rd-mobilemenu.active .hide-t {
    position: fixed;
    display: block;
    width: 100%;
    left: 240px;
    height: 100%;
    background: none;
  }

  .rd-mobilemenu.active .rd-mobilemenu_ul {
    transform: translateX(0);
  }

  .rd-mobilemenu_ul {
    font-family: "Open Sans",sans-serif;
    position: fixed;
    top: -56px;
    left: 0;
    bottom: -56px;
    width: 240px;
    padding: 112px 0 76px;
    color: #fff;
    background: #333;
    font-size: 14px;
    line-height: 20px;
    padding-left: 0 !important;
    overflow: auto;
    box-shadow: 5px 0 5px 0 rgba(0,0,0,.1);
    transform: translateX(-240px);
    transition: .3s ease;
    transition: .3s cubic-bezier(0.55, 0, 0.1, 1);
    text-transform: capitalize;
    max-height: 100%;
    margin-top: 60px;
    padding-top: 56px;
  }

  .rd-mobilemenu_ul a {
    display: block;
    padding: 14px 25px 16px;
    color: #fff;
    font-weight: 400;
    text-decoration: none !important;
  }

  .rd-mobilemenu_ul a:hover {
    background: #fff;
    color: #202123;
  }

  .rd-mobilemenu_ul a .rd-submenu-toggle {
    position: absolute;
    top: 50%;
    right: 11px;
    margin-top: -17.5px;
    width: 32px;
    height: 32px;
    font: 400 10px FontAwesome;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    transition: .5s all ease;
    z-index: 1;
    background: rgba(0,0,0,.1);
  }

  .rd-mobilemenu_ul a .rd-submenu-toggle:after {
    content: "";
  }

  .rd-mobilemenu_ul a .rd-submenu-toggle:hover {
    background: #fff;
    color: #666;
  }

  .rd-mobilemenu_ul ul {
    display: none;
  }

  .rd-mobilemenu_ul ul a {
    padding: 8px 25px;
    padding-left: 0px;
    padding-left: 30px;
  }

  .rd-mobilemenu_ul ul ul a {
    padding-left: 40px;
    padding-left: 40px;
  }

  .rd-mobilemenu_ul ul li {
    list-style: none;
  }

  .rd-mobilemenu_ul .fa {
    padding-right: 5px;
  }

  .rd-mobilemenu_ul li a.active {
    background: #fff;
    color: #202123;
  }

  .rd-mobilemenu_ul a.subM {
    position: relative;
  }

  .rd-mobilemenu_ul a.subM i {
    transition: ease all .2s;
  }

  .rd-mobilemenu_ul a.subM.act i {
    transform: rotate(-180deg);
    padding-right: 0px;
    padding-left: 5px;
  }

  .rd-mobilemenu_ul a.rd-with-ul.active .rd-submenu-toggle {
    transform: rotate(180deg);
  }

  .rd-mobilemenu_ul:after {
    content: "";
    display: block;
    height: 20px;
  }

  .rd-submenu-toggle li i {
    display: block;
    content: "";
    width: 16px;
    height: 18px;
    float: left;
    background: url(/images/ico-submenu.png) no-repeat;
    margin-right: 5px;
  }

  .a-subm.open .fa-angle-down {
    transform: rotateZ(-180deg);
  }

  .toggle-bar {
    display: block;
    height: 56px;
    background: #000;
    box-shadow: 0 3px 3px 0 rgba(0,0,0,.1);
    position: fixed;
    top: 0;
    text-align: center;
    left: 0;
    padding: 0 0px 0 64px;
    width: 100%;
    min-width: 300px;
    z-index: 99999;
  }

  .toggle-bar .idiomasMenu {
    display: flex;
  }

  #btn-menu {
    display: block;
    position: absolute;
    left: 20px;
    top: 15px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    transition: ease all .3s;
  }

  #btn-menu span {
    display: block;
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    margin-bottom: 4px;
    transition: ease all .3s;
  }

  #btn-menu.activo {
    transform: rotate(-90deg);
  }

  #btn-menu.activo span {
    position: absolute;
    top: 12px;
    left: 0;
  }

  #btn-menu.activo span:nth-child(2) {
    display: none;
  }

  #btn-menu.activo span:nth-child(1) {
    transform: rotate(-45deg);
  }

  #btn-menu.activo span:nth-child(3) {
    transform: rotate(45deg);
  }

  .dark-content {
    display: block;
    position: fixed;
    height: 100vh;
    background: rgba(0,0,0,.8);
    width: 100%;
    right: -100%;
    top: 40px;
    z-index: 99999;
    transition: ease all .4s;
  }

  .dark-content.fixed {
    right: 0;
  }

  #footer .contentFooter .container #powered,
  #footer .contentFooter .container #powered a {
    display: flex;
    align-items: center;
  }

  .home-fist-text .container .rw.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .contactenos .container .rw .text .links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .flex-direction-nav .flex-prev {
    display: none;
  }

  .flex-direction-nav .flex-next {
    display: none;
  }

  section.quienes-somos .container .image img {
    width: 100%;
  }

  .testimonios .container .lista-testimonios {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  #textOtros1 {
    padding-bottom: 235px;
  }
}

@media (max-width: 680px) {
  #textHome3 div[class*=col-] {
    width: 50%;
    margin-bottom: 10px;
  }

  #textHome3 div[class*=col-]:last-child {
    margin-left: 25%;
  }

  #textBot1 {
    padding-left: 15px;
  }

  .img1Otros {
    display: none;
  }
}

@media (max-width: 600px) {
  #frmContacto .tit strong {
    display: block;
  }

  #frmContacto .tit span {
    position: static;
    display: block;
    line-height: 24px;
    padding-bottom: 10px;
  }

  .imgBot1 {
    width: 270px;
  }

  .imgBot2 {
    width: 150px;
  }
}

@media (max-width: 540px) {
  .tituloHome2 {
    font-size: 22px;
  }

  .textFinalHome2 {
    font-size: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 500px) {
  #frmContacto div[class*=col-] {
    width: 100%;
  }

  #frmContacto .row .lbl {
    padding-bottom: 8px;
  }

  #frmContacto .row .text-right {
    text-align: center;
  }

  .itemSupHome2 {
    width: 100%;
  }

  .item2Home2 {
    margin-right: 0px;
    margin-left: 0px;
  }

  .line1home2 {
    padding-bottom: 45px;
  }

  .textFinalHome2 {
    font-size: 18px;
    padding-left: 0px;
    position: relative;
    width: 100%;
    padding-top: 60px;
    text-align: center;
  }

  .textFinalHome2:before {
    left: calc(50% - 100px);
    top: 35px;
    width: 200px;
    height: 2px;
  }
}

@media (max-width: 480px) {
  .tituloHome2 {
    font-size: 20px;
  }

  #textHome2 {
    padding: 60px 15px;
  }

  .imgBot1 {
    width: 270px;
  }

  .imgBot2 {
    width: 150px;
    right: auto;
    left: calc(50% - 75px);
    top: 145px;
  }

  .contentBot1 {
    text-align: center;
  }

  .contentBot1 .text1Bot1 {
    margin-top: 210px;
  }

  .contentBot1 ul {
    margin-left: 0;
    margin-bottom: 160px;
  }

  .titleBot1 {
    padding-left: 0;
  }

  .titleBot1:before {
    width: 0;
    height: 0;
  }

  .titleOtros1 {
    margin-bottom: 185px;
  }

  .titleOtros1 img {
    left: 100px;
    bottom: -165px;
    width: 200px;
  }

  .title3Otros {
    position: relative;
    right: auto;
    bottom: auto;
    padding-top: 45px;
  }

  #textOtros1 {
    padding-bottom: 0;
  }

  .img4Otros {
    width: 140px;
  }
}

@media (max-width: 420px) {
  #datFooter .textDatFoot {
    font-size: 18px;
  }

  #textHome3 div[class*=col-] {
    width: 100%;
  }

  #textHome3 div[class*=col-] img {
    width: 290px;
    margin: auto;
  }

  #textHome3 div[class*=col-]:last-child {
    margin-left: 0;
  }

  .titleContacto1 {
    font-size: 24px;
    line-height: 30px;
  }

  #formTop .textContacto {
    font-size: 16px;
    line-height: 24px;
  }

  #textOtros1 {
    padding-bottom: 30px;
  }
}

@media (max-width: 400px) {
  .img4Otros {
    width: 130px;
    opacity: .8;
  }
}

@media (max-width: 365px) {
  #datFooter .textDatFoot span {
    display: inline;
  }

  .titleOtros1 img {
    left: 80px;
  }
}

.extra-bold {
  font-weight: 800;
}

.bold {
  font-weight: 700;
}

.light {
  font-weight: 300;
}

#datFooter {
  background-color: #0b0b0b;
  padding: 26px 0;
}

#datFooter .container .footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: space-between;
  gap: 25px 0;
}

#datFooter .container .footer-grid .footer-column {
  list-style: none;
  max-width: -moz-max-content;
  max-width: max-content;
}

#datFooter .container .footer-grid .footer-column:nth-of-type(2) .content,
#datFooter .container .footer-grid .footer-column:nth-of-type(3) .content,
#datFooter .container .footer-grid .footer-column:nth-of-type(4) .content {
  margin-top: 40px;
}

#datFooter .container .footer-grid .footer-column:last-of-type .content {
  display: flex;
}

#datFooter .container .footer-grid .footer-column .title {
  font-family: "Baskervville",serif;
  font-size: 24px;
  line-height: normal;
  color: #bbb4a2;
  margin-bottom: 10px;
  text-transform: uppercase;
}

#datFooter .container .footer-grid .footer-column .content li {
  list-style: none;
}

#datFooter .container .footer-grid .footer-column .content li a {
  font-family: "Lato",sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: #fff;
}

#datFooter .container .footer-grid .footer-column .content li a img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  padding-right: 10px;
}

#footer {
  background-color: #beb4a2;
  padding: 20px 0 63px 0;
}

#footer .contentFooter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

#footer .contentFooter .container:before,
#footer .contentFooter .container:after {
  display: none;
}

#footer .contentFooter .container .tfooter,
#footer .contentFooter .container #powered,
#footer .contentFooter .container #powered a {
  font-family: Arial,sans-serif;
  font-size: 11px;
  color: #fff;
}

#footer .contentFooter .container .logo-tecweb {
  padding: 0 5px;
}

#header #topMenu .container .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header #topMenu .container .menu .link {
  font-family: "ACaslonProBold",sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  padding-top: 17px;
  padding-bottom: 17px;
  text-transform: uppercase;
  z-index: 5;
  position: relative;
}

#header #topMenu .container .menu .link:hover {
  text-decoration: none;
}

#header #topMenu .container .menu #logo {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: center;
}

#header #topMenu .container .menu #logo a {
  position: relative;
  padding: 0 75px;
}

#header #topMenu .container .menu #logo a:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #7b7b7b;
  right: 100%;
  top: 22px;
}

#header #topMenu .container .menu #logo a:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #7b7b7b;
  left: 100%;
  top: 22px;
}

#header #topMenu .container .menu .r-nav {
  padding-top: 17px;
  padding-bottom: 17px;
  position: relative;
  gap: 100px;
}

#header #topMenu .container .menu .r-nav .select-lang {
  position: relative;
}

#header #topMenu .container .menu .r-nav .select-lang button {
  text-transform: unset;
  font-family: Arial,sans-serif;
  font-size: 13px;
}

#header #topMenu .container .menu .r-nav .select-lang button .flag {
  padding-right: 5px;
  transform: rotate(0);
}

#header #topMenu .container .menu .r-nav .select-lang .nav {
  top: 33px;
}

#header #topMenu .container .menu .r-nav .select-lang .nav a {
  font-family: Arial,sans-serif;
  font-size: 13px;
  text-transform: unset;
}

#header #topMenu .container .menu .r-nav .select-lang:hover .nav {
  opacity: 1;
  visibility: visible;
  transition: .6s;
  pointer-events: auto;
}

#header #topMenu .container .menu .r-nav .select-menu:hover .nav {
  opacity: 1;
  visibility: visible;
  transition: .6s;
  pointer-events: auto;
}

#header #topMenu .container .menu .r-nav button {
  font-family: "ACaslonProBold",sans-serif;
  font-size: 16px;
  line-height: 30px;
  background: rgba(0,0,0,0);
  border: none;
  color: #beb4a2;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  z-index: 5;
  position: relative;
}

#header #topMenu .container .menu .r-nav button img {
  padding-right: 10px;
  transform: rotate(180deg);
}

#header #topMenu .container .menu .r-nav .nav {
  position: absolute;
  top: 50px;
  right: 0;
  background-color: #000;
  width: -moz-max-content;
  width: max-content;
  padding: 18px 5px;
  transition: .6s;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
}

#header #topMenu .container .menu .r-nav .nav li {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-bottom: 5px;
}

#header #topMenu .container .menu .r-nav .nav li:nth-of-type(4) {
  padding-bottom: 0;
}

#header #topMenu .container .menu .r-nav .nav li a {
  font-family: "ACaslonProBold",sans-serif;
  color: #beb4a2;
  font-size: 15px;
  height: -moz-max-content;
  height: max-content;
  line-height: normal;
}

.splide {
  position: relative;
}

.splide .splide__track {
  overflow: unset;
}

.splide .splide-arrows {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  justify-content: center;
}

.splide .splide-arrows button {
  background-color: rgba(0,0,0,0);
  border: none;
  padding: 5px;
}

.splide .splide-arrows button img {
  width: 30px;
}

.splide .splide__pagination {
  justify-content: center;
  padding-left: 12px;
  padding-right: 12px;
  bottom: 50px;
}

.splide .splide__pagination .splide__pagination__page {
  margin: 3.5px;
  width: 13.23px;
  height: 13.23px;
  position: relative;
  background: #beb4a2;
  opacity: 1;
}

.splide .splide__pagination .splide__pagination__page.is-active {
  transform: scale(1);
  background-color: #dc2020;
}

.splide .splide__pagination .splide__pagination__page.is-active:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  border-radius: 50%;
}

.splide-style {
  height: 300px;
}

.splide-style .splide__slide {
  height: 100%;
  position: relative;
}

.splide-style .splide__slide .img-responsive {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  z-index: 2;
  position: relative;
}

.splide-style .splide__slide .shadow-slider {
  position: absolute;
  bottom: -15px;
  height: 23px;
  z-index: 1;
}

.slider-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider-content .text-slider-content h1 {
  z-index: 2;
  position: absolute;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,.4);
  font-family: "Baskervville",serif;
  color: #fff;
  line-height: normal;
  text-align: center;
  font-size: 32px;
}

.redes-movil {
  background-color: #333;
  padding: 20px 0;
}

.redes-movil .container .list-contact-redes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  grid-row-gap: 10px;
}

.redes-movil .container .list-contact-redes .contact-redes-item:nth-of-type(3) {
  grid-column: 1/3;
}

.redes-movil .container .list-contact-redes .contact-redes-item a {
  text-align: center;
  color: #fff;
  font-size: 15px;
}

.redes-movil-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.redes-movil-footer .redes-movil-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.redes-movil-footer .redes-movil-list li {
  width: 100%;
}

.redes-movil-footer .redes-movil-list li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.redes-movil-footer .redes-movil-list li a.facebook-footer-nav {
  background-color: #3b5998;
}

.redes-movil-footer .redes-movil-list li a.twitter-footer-nav {
  background-color: #00acee;
}

.redes-movil-footer .redes-movil-list li a.instagram-footer-nav {
  background-color: #8a3ab9;
}

.redes-movil-footer .redes-movil-list li img {
  display: block;
}

.wedjs-title {
  background-color: #161616;
  padding: 20px 0;
}

.wedjs-title .container h1 {
  text-align: center;
  font-family: "Baskervville",serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
}

.open-whatsapp {
  position: fixed;
  display: none;
  background-color: #209343;
  border-radius: 50px;
  bottom: 120px;
  right: 10px;
  display: flex;
  -moz-column-gap: 4px;
  column-gap: 4px;
  padding: 3px 23px;
}

.open-whatsapp:hover,
.open-whatsapp:focus {
  text-decoration: none;
}

.open-whatsapp .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.open-whatsapp .text {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.open-whatsapp .text .text1 {
  font-size: 13px;
  line-height: normal;
  color: #fff;
  text-transform: uppercase;
}

.open-whatsapp .text .text2 {
  font-size: 12px;
  line-height: normal;
  color: #fff;
  transform: translateY(-5px);
}

.home-fist-text {
  background-color: #bbb4a2;
  padding: 30px 0;
}

.home-fist-text .container .rw {
  display: flex;
  flex-direction: column;
}

.home-fist-text .container .rw:last-of-type {
  margin-bottom: 0;
}

.home-fist-text .container .rw.reverse .image {
  justify-content: center;
}

.home-fist-text .container .rw .image {
  position: relative;
  display: flex;
  justify-content: center;
}

.home-fist-text .container .rw .image img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 600px;
}

.home-fist-text .container .rw .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 15px;
}

.home-fist-text .container .rw .text .title {
  color: #3e3e3e;
  font-family: "Baskervville",serif;
  font-size: 25px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 5px;
}

.home-fist-text .container .rw .text .text-content {
  font-family: "Open Sans",sans-serif;
  font-size: 16px;
  line-height: 35px;
  color: #3e3e3e;
  text-align: center;
}

.home-gallery {
  padding: 28px 0;
}

.home-gallery .home-footer-images-list-1 {
  display: flex;
  gap: 10px;
  padding: 0 16px;
}

.home-gallery .home-footer-images-list-1 li {
  list-style: none;
}

.home-gallery .home-footer-images-list-1 li img {
  width: 100%;
  display: block;
}

.home-gallery #splideimages {
  margin-top: 10px;
}

.home-gallery #splideimages .home-footer-images-list-2 {
  padding: 0;
  gap: 10px;
}

.home-gallery #splideimages .home-footer-images-list-2 li {
  list-style: none;
}

.home-gallery #splideimages .home-footer-images-list-2 li img {
  width: 100%;
}

.contactenos {
  background-color: #bbb4a2;
  padding: 34px 0;
}

.contactenos .container .rw {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.contactenos .container .rw .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contactenos .container .rw .text .title {
  font-family: "Baskervville",serif;
  font-size: 25px;
  line-height: 32px;
  color: #3e3e3e;
  margin-bottom: 25px;
  text-align: center;
  margin-top: 15px;
}

.contactenos .container .rw .text .text-c,
.contactenos .container .rw .text .links {
  transform: translateY(-8px);
}

.contactenos .container .rw .text .text-c {
  font-family: "Open Sans",sans-serif;
  color: #3e3e3e;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
}

.contactenos .container .rw .text .links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

.contactenos .container .rw .text .links a {
  border-radius: 25px;
  background-color: #e6e7e9;
  width: 260px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Lato",sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #3e3e3e;
  padding: 8px;
}

.contactenos .container .rw .text .links a:nth-of-type(2) {
  font-family: "Open Sans",sans-serif;
}

.contactenos .container .rw .text .links a img {
  -o-object-fit: contain;
  object-fit: contain;
  padding-right: 10px;
}

.contactenos .container .rw .image {
  padding-left: 0;
}

.contactenos .container .rw .image img {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
}

section.quienes-somos {
  padding: 30px 0;
}

section.quienes-somos .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.quienes-somos .container:before,
section.quienes-somos .container:after {
  display: none;
}

section.quienes-somos .container .text p {
  font-family: "Open Sans",sans-serif;
  font-size: 16px;
  color: #3e3e3e;
  font-weight: 400;
  text-align: center;
  line-height: 30px;
}

section.quienes-somos .container .text p .bold {
  font-weight: 700;
}

section.quienes-somos .container .image {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

section.quienes-somos .container .image img {
  display: block;
}

section.quienes-somos .container .image img:nth-of-type(2) {
  margin-top: 15px;
}

section.audio {
  background-image: url("/_src/images/quienes/servicioaudio.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 77px 0;
}

section.audio .container p {
  font-family: "Open Sans",sans-serif;
  font-size: 16px;
  line-height: 35px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  background-color: rgba(0,0,0,.8);
  padding: 20px 40px;
}

section.audio .container p .bold {
  font-weight: 700;
}

section.coordinacion {
  position: relative;
  padding: 20px 0;
  background-color: #bbb4a2;
}

section.coordinacion .image-big {
  display: none;
}

section.coordinacion .container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

section.coordinacion .container .image-small {
  display: block;
}

section.coordinacion .container .image-small img {
  display: block;
  width: 90%;
  margin: 0 auto;
}

section.coordinacion .container .text-content {
  padding: 10px 0;
}

section.coordinacion .container .text-content .text {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

section.coordinacion .container .text-content .text p {
  position: relative;
  z-index: 3;
  font-family: "Open Sans",sans-serif;
  font-weight: 400;
  color: #3e3e3e;
  line-height: 32px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 16px;
}

section.coordinacion .container .text-content .text p:last-of-type {
  padding-bottom: 0;
}

section.coordinacion .container .text-content .text p .bold {
  font-weight: 700;
}

section.wedjs .container {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

section.wedjs .container:before,
section.wedjs .container:after {
  display: none;
}

section.wedjs .container .image,
section.wedjs .container .text {
  padding: 50px 0;
}

section.wedjs .container .image {
  justify-self: center;
  position: relative;
}

@media (max-width: 599px) {
  section.wedjs .container .image {
    padding-top: 0 !important;
  }

  section.wedjs .container .image img {
    min-width: 300px;
  }

  section.wedjs .container .text {
    padding-bottom: 25px !important;
  }
}

section.wedjs .container .image img {
  padding: 0px 100px 25px 100px;
  display: block;
  z-index: 2;
  position: relative;
  width: 70%;
  max-width: 290px;
  margin: 0 auto;
}

section.wedjs .container .text {
  z-index: 3;
}

@media (max-width: 1023px) {
  section.wedjs .container .text {
    padding: 60px 0 !important;
  }
}

section.wedjs .container .text p {
  font-family: "Open Sans",sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #3e3e3e;
  text-align: center;
  padding: 0 20px;
}

.wedjs-gallery {
  padding: 25px 0;
}

.wedjs-gallery .container .gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.wedjs-gallery .container .gallery .item {
  list-style: none;
  position: relative;
}

.wedjs-gallery .container .gallery .item img {
  position: relative;
  display: block;
}

@media (max-width: 1599px) {
  .wedjs-gallery .container .gallery .item img {
    width: 100%;
  }
}

.wedjs-gallery .container .gallery .item p {
  padding: 15px;
  background-color: rgba(0,0,0,.4);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #beb4a2;
  font-family: "Lato",sans-serif;
  font-weight: 900;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
}

.section-contact .form-message h2 {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  padding: 20px 0;
}

.section-contact #frmContacto {
  margin-bottom: 30px;
  overflow: unset;
}

.section-contact #frmContacto div[class*=col-] {
  padding: 0 5px;
}

.section-contact #frmContacto .form-group {
  margin-bottom: 10px;
}

.section-contact #frmContacto .form-group .form-control {
  border: 1px solid #dedede;
  border-radius: 0;
  height: 72px;
  font-size: 13px;
}

.section-contact #frmContacto .form-group .form-control.textarea {
  height: 150px;
  padding-top: 20px;
}

.section-contact #frmContacto .center-captcha {
  display: flex;
  justify-content: center;
}

.section-contact #frmContacto .center-captcha #html_element {
  padding: 15px 5px;
}

.section-contact #frmContacto .form-buttons {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin-top: 5px;
}

.section-contact #frmContacto .form-buttons .btnReset,
.section-contact #frmContacto .form-buttons .btnEnviar {
  text-transform: uppercase;
  font-family: Arial,sans-serif;
  font-size: 11px;
  line-height: 26px;
  height: 42px;
  width: 82px;
  border-radius: 5px;
  background-color: #786b54;
  color: #fff;
  margin-top: 0;
}

.contact-map .map-title {
  background-color: #2b2b2b;
  padding: 20px 0;
}

.contact-map .map-title .container h3 {
  text-align: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}

.contact-map .map-title .container h3 img {
  transform: translateY(2px);
  margin-right: 2px;
}

.contact-map .map {
  border: 0;
  height: 300px;
}

.testimonios {
  background-image: url("/_src/images/testimonios/testimoniobg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 27px 0;
}

.testimonios .container .lista-testimonios .testimonio {
  background-color: rgba(190,180,162,.9);
  list-style: none;
  padding: 25px 35px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 3px 4px 5px 0px rgba(0,0,0,.35);
  -webkit-box-shadow: 3px 4px 5px 0px rgba(0,0,0,.35);
  -moz-box-shadow: 3px 4px 5px 0px rgba(0,0,0,.35);
}

.testimonios .container .lista-testimonios .testimonio:last-of-type {
  margin-bottom: 0;
}

.testimonios .container .lista-testimonios .testimonio .image-start {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonios .container .lista-testimonios .testimonio .image-start .profile {
  border-radius: 5px;
  max-width: -moz-max-content;
  max-width: max-content;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.testimonios .container .lista-testimonios .testimonio .image-start .starts {
  margin-top: 13px;
  display: flex;
  gap: 10px;
}

.testimonios .container .lista-testimonios .testimonio .image-start .starts .start {
  list-style: none;
}

.testimonios .container .lista-testimonios .testimonio .testimonio-text h4,
.testimonios .container .lista-testimonios .testimonio .testimonio-text p {
  font-family: Arial,sans-serif;
}

.testimonios .container .lista-testimonios .testimonio .testimonio-text h2 {
  font-family: "Baskervville",serif;
  color: #fff;
  margin-top: -5px;
  font-size: 25px;
}

.testimonios .container .lista-testimonios .testimonio .testimonio-text h4 {
  font-size: 14px;
  line-height: normal;
  color: #fff;
  text-align: left;
  padding-bottom: 8px;
}

.testimonios .container .lista-testimonios .testimonio .testimonio-text p {
  font-size: 13px;
  line-height: 22px;
  color: #fff;
  background-color: #a09685;
  padding: 8px 25px;
}
/*# sourceMappingURL=web.css.map*/