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

Copyright (c) 2013 Daniel Eden

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

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

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation-name: bounce;
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

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

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

section {
  width: 100%;
  max-width: 100vw;
}

html {
  margin: 0px !important;
}

.modal {
  max-width: 767px !important;
  padding: 10px !important;
  z-index: 9999 !important;
}

.jquery-modal {
  z-index: 9999 !important;
} 
iframe {
  width: 100%;
  border-right: solid 13px white !important;
  border-left: solid 13px white !important;
}

main {
  display: flex;
  flex-wrap: wrap;
}

.fondazo {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.fondazo img {
  width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 200px;
}

a {
  text-decoration: none;
}

section {
  max-width: 100vw !important;
  overflow: hidden !important;
}

body {
  padding: 0px;
  margin: 0px;
  position: relative;
  font-family: "Lato", sans-serif;
}

#root {
  width: 100%;
}

.row {
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1198px;
  margin: auto;
}

.elementor-container {
  width: 100% !important;
  max-width: 100% !important;
}

.elementor-widget-wrap {
  padding: 0px !important;
}

.elementor-widget {
  margin: 0px !important;
}

.elementor {
  width: 100% !important;
}

.elementor img {
  height: auto;
}

.contenidoServicio {
  padding: 15px;
}
.contenidoServicio li {
  margin-bottom: 10px;
}
.contenidoServicio ul {
  margin-bottom: 15px;
}

#principal {
  background-size: cover;
  min-height: 120vh;
  z-index: 2;
  opacity: 1;
  border-left: solid 13px white;
  border-right: solid 13px white;
  border-top: solid 13px white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  #principal {
    min-height: 80vh;
  }
}
#principal .container .texto {
  width: 90%;
  max-width: 590px;
  color: white;
  font-size: 2.6em;
  line-height: 1.15em;
  margin: auto;
  text-align: center;
  margin-top: 3.9em;
  font-family: "Lato";
  font-style: italic;
}
@media (max-width: 767px) {
  #principal .container .texto {
    font-size: 1.7em;
  }
}
#principal .container .imagen img {
  display: block;
  max-height: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;
}
@media (max-width: 767px) {
  #principal .container .imagen img {
    max-height: 100px;
    margin-bottom: 22px;
  }
}

.admin-bar header {
  top: 56px;
}
.admin-bar header.scroll {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar header.scroll {
    top: 42px;
  }
}

@media (max-width: 782px) {
  html #wpadminbar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
  }
}

header {
  transition: background-color 0.4s, top 0.4s, left 0.4s, width 0.4s;
  position: fixed;
  top: 34px;
  left: 13px;
  width: calc(100% - 26px);
  opacity: 1;
  padding: 10px 0px;
  z-index: 999;
  /*
       * But let's hide the middle one.
       */
  /*
       * Ohyeah and the last one should go the other direction
       */
}
header.scroll {
  background-color: #264462;
  top: 0px;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.17);
  width: 100%;
  left: 0px;
}
@media (max-width: 1059px) {
  header {
    top: 18px;
  }
}
header .logo, header .custom-logo-link {
  order: 1;
  display: flex;
}
header .logo img, header .custom-logo-link img {
  width: auto !important;
  height: 72px;
}
@media (max-width: 1059px) {
  header .logo img, header .custom-logo-link img {
    height: 60px;
  }
}
@media (max-width: 767px) {
  header .logo img, header .custom-logo-link img {
    height: 50px;
  }
}
header nav {
  order: 2;
  margin: auto;
}
@media (max-width: 1059px) {
  header nav {
    display: block;
    position: absolute;
    top: 100%;
    right: -100vw;
    flex-direction: column;
    background-color: #264462;
    border: solid 2px white;
    transition: right 0.4s;
  }
  header nav .menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em;
  }
  header nav.activo {
    right: 1em;
  }
}
header #menuToggle {
  order: 3;
  margin-left: 15px;
  margin-right: 15px;
}
@media (min-width: 1060px) {
  header #menuToggle {
    display: none;
  }
}
header #menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: white;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 24px -2px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
header #menuToggle span:first-child {
  transform-origin: 0% 0%;
}
header #menuToggle span:nth-last-child(2) {
  transform-origin: 50% 100%;
}
header #menuToggle.activo span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: white;
}
header #menuToggle.activo span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
header #menuToggle.activo span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
header .container {
  width: 92%;
  max-width: 1210px;
}
header .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .menu {
  display: flex;
  padding-left: 30px;
  padding-right: 30px;
  gap: 1.5em;
  margin: auto;
}
header .menu li {
  list-style-type: none;
}
header .menu li a {
  font-size: 17px;
  color: white;
  position: relative;
  text-decoration: none;
}
header .menu li a::before {
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0px;
  content: "";
  background-color: white;
  opacity: 0;
  transition: width 0.3s, opacity 0.3s;
}
header .menu li a:hover::before {
  width: 100%;
  opacity: 1;
}
header .sociales {
  order: 3;
  margin-left: auto;
}
header .sociales a {
  width: 35px;
  height: 35px;
}
@media (max-width: 767px) {
  header .sociales a {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 1060px) {
  header .sociales {
    order: 2 !important;
    margin-left: auto;
  }
}
header .token {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
}
@media (max-width: 1060px) {
  header .token {
    order: 2 !important;
  }
}
header .token img {
  transition: filter 0.4s;
  height: 75px;
  margin-left: 20px;
}
header .token img:hover {
  filter: brightness(1.1);
}
@media (max-width: 1059px) {
  header .token img {
    height: 60px;
    margin-left: 0px;
  }
}
@media (max-width: 500px) {
  header .token img {
    height: 40px;
  }
}

#servicios .servicios {
  margin: 7.2em 0em;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-areas: ". . ." ". Logo ." ". Logo ." ". Logo ." ". . ." "boton boton boton";
  gap: 2.1em 0px;
  position: relative;
}
#servicios .servicios .divisor {
  display: none;
}
@media (max-width: 1005px) {
  #servicios .servicios {
    gap: 1em;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "Logo Logo" ". ." ". ." ". ." ". ." ". ." "boton boton";
    grid-template-rows: auto 1fr 1fr 1fr 1fr 1fr;
  }
  #servicios .servicios .divisor {
    display: block;
    grid-area: divisor;
    background-color: #264462;
    position: absolute;
    top: 0px;
    left: 50%;
    width: 2px;
    height: 100%;
  }
}
#servicios .servicios .boton {
  grid-area: boton;
  display: flex;
  z-index: 2;
}
#servicios .servicios .boton a {
  width: 100%;
  color: white;
  background-color: #264462;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  text-align: center;
  margin: 0.5rem 0px 0px 0px;
  border-radius: 2.5rem;
  padding: 0.7rem 2rem;
  align-items: center;
  justify-content: center;
  opacity: 1;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: background-color 0.4s;
}
@media (max-width: 992px) {
  #servicios .servicios .boton a {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  #servicios .servicios .boton a {
    font-size: 0.9rem;
  }
}
#servicios .servicios .boton a:hover {
  background-color: #3a5a7a;
}
@media (max-width: 768px) {
  #servicios .servicios {
    margin: 4.2em 0em;
  }
}
#servicios .servicios span {
  width: 100%;
  position: relative;
}
#servicios .servicios span::after {
  width: 100%;
  height: 2px;
  background-color: #264462;
  position: absolute;
  top: 50%;
  left: 0px;
  content: "";
  display: block;
}
@media (max-width: 1005px) {
  #servicios .servicios span {
    display: none;
  }
  #servicios .servicios span.logo {
    display: flex !important;
    height: 100px;
  }
  #servicios .servicios span.logo .circulo {
    border-radius: 2.5rem;
  }
  #servicios .servicios span.logo .circulo img {
    height: calc(100% - 25px);
  }
}
#servicios .servicios span.abajo::before {
  width: 2px;
  height: calc(50% + 2.1em);
  background-color: #264462;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  z-index: 1;
}
#servicios .servicios span.logo {
  grid-area: Logo;
}
#servicios .servicios span .circulo {
  background-color: #264462;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}
#servicios .servicios span .circulo img {
  width: auto;
  height: 60%;
}
#servicios .servicios span.arriba::before {
  width: 2px;
  height: 150%;
  background-color: #264462;
  position: absolute;
  top: -100%;
  left: 50%;
  content: "";
  display: block;
}
#servicios .servicios .servicio {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1005px) {
  #servicios .servicios .servicio {
    align-items: stretch;
  }
}
#servicios .servicios .servicio::before {
  width: 120%;
  height: 2px;
  background-color: #264462;
  position: absolute;
  top: 50%;
  left: 0px;
  content: "";
  display: block;
}
#servicios .servicios .servicio.left::before {
  left: auto;
  right: 0px;
}
#servicios .servicios .servicio.left .borde {
  margin-left: auto;
}
#servicios .servicios .servicio.right .borde {
  margin-right: auto;
}
#servicios .servicios .servicio .borde {
  z-index: 2;
  background-color: white;
  text-align: center;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  border: solid 2px #264462;
  color: #264462;
  transition: background-color 0.4s, color 0.4s;
}
@media (max-width: 1240px) {
  #servicios .servicios .servicio .borde {
    font-size: 0.8rem;
  }
}
@media (max-width: 1005px) {
  #servicios .servicios .servicio .borde {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 467px) {
  #servicios .servicios .servicio .borde {
    font-size: 11px;
    padding: 0.5rem 0.3rem;
  }
}
#servicios .servicios .servicio .borde:hover {
  background-color: #264462;
  color: white;
}

#servicios2 .servicios {
  margin: 7.2em 0em;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-areas: ". . ." ". . ." ". Logo ." ". Logo ." ". Logo ." ". . ." "boton boton boton";
  gap: 2.1em 0px;
  position: relative;
}
#servicios2 .servicios .divisor {
  display: none;
}
@media (max-width: 1005px) {
  #servicios2 .servicios {
    gap: 1em;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "Logo Logo" ". ." ". ." ". ." ". ." ". ." ". ." "boton boton";
    grid-template-rows: auto 1fr 1fr 1fr 1fr 1fr;
  }
  #servicios2 .servicios .divisor {
    display: block;
    grid-area: divisor;
    background-color: #264462;
    position: absolute;
    top: 0px;
    left: 50%;
    width: 2px;
    height: 100%;
  }
}
#servicios2 .servicios .boton {
  grid-area: boton;
  display: flex;
  z-index: 2;
}
#servicios2 .servicios .boton a {
  width: 100%;
  color: white;
  background-color: #264462;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  text-align: center;
  margin: 0.5rem 0px 0px 0px;
  border-radius: 2.5rem;
  padding: 0.7rem 2rem;
  align-items: center;
  justify-content: center;
  opacity: 1;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: background-color 0.4s;
}
@media (max-width: 992px) {
  #servicios2 .servicios .boton a {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  #servicios2 .servicios .boton a {
    font-size: 0.9rem;
  }
}
#servicios2 .servicios .boton a:hover {
  background-color: #3a5a7a;
}
@media (max-width: 768px) {
  #servicios2 .servicios {
    margin: 4.2em 0em;
  }
}
#servicios2 .servicios span {
  width: 100%;
  position: relative;
}
#servicios2 .servicios span::after {
  width: 100%;
  height: 2px;
  background-color: #264462;
  position: absolute;
  top: 50%;
  left: 0px;
  content: "";
  display: block;
}
@media (max-width: 1005px) {
  #servicios2 .servicios span {
    display: none;
  }
  #servicios2 .servicios span.logo {
    display: flex !important;
    height: 100px;
  }
  #servicios2 .servicios span.logo .circulo {
    border-radius: 2.5rem;
  }
  #servicios2 .servicios span.logo .circulo img {
    height: calc(100% - 25px);
  }
}
#servicios2 .servicios span.abajo::before {
  width: 2px;
  height: calc(50% + 2.1em);
  background-color: #264462;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  z-index: 1;
}
#servicios2 .servicios span.nada::before {
  opacity: 0 !important;
  height: 0px !important;
  width: 0px !important;
}
#servicios2 .servicios span.nada::after {
  opacity: 0 !important;
  height: 0px !important;
  width: 0px !important;
}
#servicios2 .servicios span.logo {
  grid-area: Logo;
}
#servicios2 .servicios span .circulo {
  background-color: #264462;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}
#servicios2 .servicios span .circulo img {
  width: auto;
  height: 60%;
}
#servicios2 .servicios span.arriba::before {
  width: 2px;
  height: 160%;
  background-color: #264462;
  position: absolute;
  top: -110%;
  left: 50%;
  content: "";
  display: block;
}
#servicios2 .servicios .servicio {
  display: flex;
  align-items: center;
  position: relative;
}
#servicios2 .servicios .servicio:hover {
  cursor: pointer;
}
@media (max-width: 1005px) {
  #servicios2 .servicios .servicio {
    align-items: stretch;
  }
}
#servicios2 .servicios .servicio .oculto {
  display: none;
}
#servicios2 .servicios .servicio::before {
  width: 120%;
  height: 2px;
  background-color: #264462;
  position: absolute;
  top: 50%;
  left: 0px;
  content: "";
  display: block;
}
#servicios2 .servicios .servicio.solo {
  width: 200%;
  margin-left: -50%;
}
@media (max-width: 1005px) {
  #servicios2 .servicios .servicio.solo {
    width: 100%;
    margin-left: 0px;
    grid-column: 1/3;
  }
}
#servicios2 .servicios .servicio.solo .borde {
  width: 100%;
}
#servicios2 .servicios .servicio.solo::before {
  left: auto;
  right: 0px;
  width: 2px;
  height: 220%;
  left: 50%;
  top: 0%;
}
#servicios2 .servicios .servicio.left::before {
  left: auto;
  right: 0px;
}
#servicios2 .servicios .servicio.left .borde {
  margin-left: auto;
}
#servicios2 .servicios .servicio.right .borde {
  margin-right: auto;
}
#servicios2 .servicios .servicio .borde {
  z-index: 2;
  background-color: white;
  text-align: center;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  border: solid 2px #264462;
  color: #264462;
  transition: background-color 0.4s, color 0.4s;
}
@media (max-width: 1240px) {
  #servicios2 .servicios .servicio .borde {
    font-size: 0.8rem;
  }
}
@media (max-width: 1005px) {
  #servicios2 .servicios .servicio .borde {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 467px) {
  #servicios2 .servicios .servicio .borde {
    font-size: 11px;
    padding: 0.5rem 0.3rem;
  }
}
#servicios2 .servicios .servicio .borde:hover {
  background-color: #264462;
  color: white;
}

#trayectoria {
  overflow: hidden;
}
#trayectoria .container {
  border: solid 2px #264462;
}
#trayectoria .titulo {
  font-size: 2em;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-weight: 900;
  padding: 0.8rem 0px;
  letter-spacing: 1.9px;
  color: #264462;
  border-bottom: solid 2px #264462;
  background-color: #d9d9d9;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  #trayectoria .titulo {
    font-size: 1.2em;
  }
}
#trayectoria .contenido {
  display: grid;
  grid-template-columns: 375px auto;
}
@media (max-width: 767px) {
  #trayectoria .contenido {
    grid-template-columns: 1fr;
  }
}
#trayectoria .contenido .img {
  border-right: 2px solid #264462;
}
@media (max-width: 767px) {
  #trayectoria .contenido .img {
    height: 300px;
    border-right: 0px solid transparent;
    border-bottom: solid 2px #264462;
  }
}
#trayectoria .contenido .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
#trayectoria .contenido .texto {
  padding: 2rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  #trayectoria .contenido .texto {
    font-size: 1em;
  }
}
#trayectoria .contenido .texto .txt {
  max-width: 600px;
  width: 100%;
}
#trayectoria .contenido .texto .txt p {
  margin-bottom: 3.8rem;
}
@media (max-width: 767px) {
  #trayectoria .contenido .texto .txt p {
    margin-bottom: 1.2rem;
  }
}

#equipo {
  margin: 3.8rem 0px 2em 0px;
}
#equipo .container {
  background-image: url("../imgs/bg-equipo.jpg");
  background-size: cover;
  background-position: top center;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  #equipo .container {
    padding-bottom: 0px !important;
  }
}
#equipo .sociales {
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5em;
}
#equipo .sociales a {
  width: 30px;
  height: 30px;
}
#equipo .sociales .infoOculta {
  display: none;
}
#equipo .titulo {
  color: white;
  font-size: 2em;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-weight: 900;
  padding: 0.5rem 0px;
  letter-spacing: 1.9px;
  font-family: "Montserrat", sans-serif;
  margin: 1.2em 0px 1.15em 0px;
}
@media (max-width: 767px) {
  #equipo .titulo {
    font-size: 1.2em;
  }
}
#equipo .equipos {
  width: 100%;
  margin: 0px 2.8em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1.5em;
}
@media (max-width: 1005px) {
  #equipo .equipos {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  #equipo .equipos {
    display: inline-flex;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    margin: 0px !important;
    padding: 0px 2em;
  }
}
#equipo .equipos .equipo {
  padding: 0px 5px;
  display: flex;
  flex-wrap: wrap;
}
#equipo .equipos .equipo .foto {
  width: 100%;
  height: 300px;
  border: solid 2px white;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
#equipo .equipos .equipo .nombre {
  color: white;
  width: 100%;
  font-size: 1.1rem;
  text-align: center;
  margin: 1em 1.75em 0.3em 1.75em;
  font-weight: 700;
  font-style: italic;
}

#equipo2 .altEquipos {
  display: grid;
  margin-bottom: 2em;
  /*
      &.triplete{
          grid-template-columns: 1fr 1fr 1fr;
          @media (max-width:1005px) {

              grid-template-columns: 1fr 1fr;
          }
          .equipo{
              grid-template-columns: 150px auto;

              @media (max-width:1005px) {
                  grid-template-columns: 150px auto;

              }
              @media (max-width:767px) {
                  grid-template-columns: 100px auto;
              }

              min-height: 140px;
              .texto{
                  .descripcion{
                      font-size: 0.9em;
                  }
              }                
          }
      }
      */
  gap: 1.5em;
}
#equipo2 .altEquipos .owl-prev, #equipo2 .altEquipos .owl-next {
  color: #264462 !important;
}
@media (min-width: 992px) {
  #equipo2 .altEquipos {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 992px) {
  #equipo2 .altEquipos {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  #equipo2 .altEquipos {
    display: inline-flex;
    flex-wrap: wrap;
  }
}
#equipo2 .altEquipos .equipo {
  grid-template-columns: 120px auto !important;
  min-height: 140px !important;
}
#equipo2 .altEquipos .equipo .texto .descripcion {
  font-size: 0.9em !important;
}
#equipo2 .altEquipos .equipo {
  display: grid;
  grid-template-columns: 250px auto;
  min-height: 240px;
  border: solid 2px #264462;
}
@media (max-width: 1005px) {
  #equipo2 .altEquipos .equipo {
    grid-template-columns: 150px auto;
    min-height: 140px;
  }
}
@media (max-width: 767px) {
  #equipo2 .altEquipos .equipo {
    grid-template-columns: 100px auto;
  }
}
#equipo2 .altEquipos .equipo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
#equipo2 .altEquipos .equipo .texto {
  border-left: solid 2px #264462;
  color: #264462;
  background-color: white;
  position: relative;
}
#equipo2 .altEquipos .equipo .texto .nombre {
  font-size: 0.8em;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-style: italic;
  padding: 0.7rem 2.2em;
  letter-spacing: 1.9px;
  border-bottom: solid 2px #264462;
  background-color: #d9d9d9;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  #equipo2 .altEquipos .equipo .texto .nombre {
    font-size: 0.7em;
  }
}
#equipo2 .altEquipos .equipo .texto .divisor {
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -2px;
  right: -2px;
  background-color: white;
  z-index: 2;
  display: block;
  overflow: hidden;
}
#equipo2 .altEquipos .equipo .texto .divisor::after {
  width: 2px;
  height: 200%;
  background-color: #264462;
  position: absolute;
  top: -14px;
  left: 13px;
  content: "";
  transform: rotate(45deg);
}
#equipo2 .altEquipos .equipo .texto .descripcion {
  font-size: 1.2em;
  padding: 1.2em 1.5em;
  font-style: italic;
  font-family: "Lato", sans-serif;
}
@media (max-width: 1005px) {
  #equipo2 .altEquipos .equipo .texto .descripcion {
    font-size: 0.9em;
  }
}

.owl-nav {
  margin: 0px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  width: 100%;
}
.owl-nav .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
}
.owl-nav .owl-next:hover {
  background-color: transparent !important;
}
.owl-nav .owl-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
}
.owl-nav .owl-prev:hover {
  background-color: transparent !important;
}

#membresias {
  overflow: hidden;
}
#membresias .container {
  border: solid 2px #264462;
  padding-bottom: 2em;
}
#membresias .titulo {
  display: flex;
  font-size: 2em;
  font-family: "Montserrat", sans-serif;
  color: #264462;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1.2em;
  margin: 2.3em 0px 1.1em 0px;
}
@media (max-width: 767px) {
  #membresias .titulo {
    font-size: 1.8em;
  }
}
#membresias .titulo small {
  width: 100%;
  font-size: 0.5em;
  font-size: 400;
  font-style: italic;
}
#membresias .membresias {
  /*
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  @media(max-width:850px){
  grid-template-columns: 1fr 1fr;
  }
  */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 3em;
  padding: 0px 2em;
}
#membresias .membresias a {
  max-width: 300px !important;
  margin: auto;
  width: 100%;
}
#membresias .membresias img {
  width: 100%;
}
#membresias .owl-stage {
  display: flex;
}
#membresias .owl-stage .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
#membresias .owl-prev, #membresias .owl-next {
  color: #264462 !important;
}

#contacto {
  margin-top: 6em;
}
#contacto .container {
  background-image: url("../imgs/bg-contacto.jpg");
  background-size: cover;
  background-position: center center;
  padding-bottom: 4em;
}
#contacto .titulo {
  color: white;
  font-size: 2em;
  text-transform: uppercase;
  padding: 1.7em 0px 0.6em 0px;
  width: 100%;
  display: block;
  text-align: center;
  font-weight: bolder;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  #contacto .titulo {
    font-size: 1.8em;
  }
}
#contacto label {
  display: none;
}
#contacto form {
  display: flex;
  flex-wrap: wrap;
  max-width: 460px;
  width: 90%;
  margin: auto;
  gap: 0.5em;
}
#contacto form .campo, #contacto form .wpforms-field {
  width: 100%;
  display: flex;
}
#contacto form .campo input,
#contacto form .campo textarea, #contacto form .wpforms-field input,
#contacto form .wpforms-field textarea {
  width: 100%;
  background-color: transparent;
  padding: 1.3em 2em;
  font-size: 1rem;
  color: white;
  border: solid 2px white;
  font-family: "Lato", sans-serif !important;
}
#contacto form .campo input::-moz-placeholder, #contacto form .campo textarea::-moz-placeholder, #contacto form .wpforms-field input::-moz-placeholder, #contacto form .wpforms-field textarea::-moz-placeholder {
  color: white;
  font-family: "Lato", sans-serif !important;
}
#contacto form .campo input::placeholder,
#contacto form .campo textarea::placeholder, #contacto form .wpforms-field input::placeholder,
#contacto form .wpforms-field textarea::placeholder {
  color: white;
  font-family: "Lato", sans-serif !important;
}
#contacto form .campo textarea, #contacto form .wpforms-field textarea {
  min-height: 140px;
}
#contacto .wpforms-submit-container {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
#contacto .boton, #contacto .wpforms-submit {
  margin-left: auto !important;
  background-color: white !important;
  font-weight: bold !important;
  width: 135px !important;
  height: 48px !important;
  font-size: 1.3rem !important;
  margin-top: 0px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #264462 !important;
  font-family: "Lato", sans-serif !important;
  border-radius: 0px !important;
}
#contacto .wpforms-field-container {
  width: 100%;
}
#contacto textarea {
  resize: vertical;
}
#contacto .mailcheck-error {
  display: none !important;
}
#contacto .wpforms-error {
  background-color: #d03536;
}
#contacto em.wpforms-error {
  background-color: #d03536;
  color: white;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mapa {
  margin: 6em 0px 0px 0px;
}
#mapa .mapa {
  width: 100%;
  height: 300px;
  background-color: red;
}

footer {
  width: 100%;
  background-color: #d9d9d9;
  border-left: solid 13px white;
  border-right: solid 13px white;
  border-bottom: solid 13px white;
}
footer .sociales a {
  width: 30px;
  height: 30px;
}
footer .container {
  max-width: 1300px;
  width: 95%;
}
@media (max-width: 767px) {
  footer .container {
    width: 80%;
  }
}
footer .suscribir {
  color: #264462;
}
@media (max-width: 767px) {
  footer .suscribir {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
footer .suscribir form {
  display: flex;
  align-items: stretch;
  margin: 2em 0px;
}
footer .suscribir input {
  background-color: #D9D9D9;
  border: solid 2px #264462;
  width: 100%;
  padding: 0.5em 1em;
}
footer .suscribir button {
  background-color: #264462;
  color: white;
  border-radius: 0px;
  font-size: 1.1rem;
  padding: 0.4em 1em;
  font-family: "Lato";
  border: none;
  transition: background-color 0.4s, color 0.4s;
}
footer .suscribir button:hover {
  background-color: white;
  color: #264462;
}
footer .grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 1em;
  padding: 2em 0px;
}
@media (max-width: 767px) {
  footer .grid {
    grid-template-columns: 280px auto;
  }
}
@media (max-width: 690px) {
  footer .grid {
    grid-template-columns: 230px auto;
  }
}
@media (max-width: 580px) {
  footer .grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .grid .logo2 {
    padding: 2em 0px 2em 0px !important;
    border-bottom: solid 2px #264462;
  }
  footer .grid .info {
    padding: 2em 0px 2em 0px !important;
    border-bottom: solid 2px #264462;
  }
  footer .grid .suscribir {
    padding-top: 1em;
  }
}
footer .logo2 {
  border-right: 2px solid #264462;
  padding: 0px 1em 0px 0px;
}
@media (max-width: 580px) {
  footer .logo2 {
    border-right: 0px solid transparent;
    text-align: center;
  }
  footer .logo2 .sociales {
    align-items: center;
    justify-content: center;
  }
}
footer .logo2 img {
  max-width: 100%;
}
@media (max-width: 767px) {
  footer .logo2 img {
    max-height: 70px;
  }
}
footer .logo2 .sociales {
  margin-top: 5em;
  width: 100%;
}
@media (max-width: 767px) {
  footer .logo2 .sociales {
    margin-top: 1em;
  }
}
footer .info {
  border-right: 2px solid #264462;
  display: flex;
  align-items: center;
  color: #264462;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  flex-wrap: wrap;
  gap: 1em;
  padding: 0px 25px;
}
@media (max-width: 767px) {
  footer .info {
    border-right: 0px transparent;
  }
}
footer .info a {
  color: #264462;
  border-bottom: solid 1px rgba(0, 0, 0, 0);
  font-weight: bold;
}
footer .info a:hover {
  border-bottom: solid 1px #264462;
}
@media (max-width: 767px) {
  footer .info {
    padding: 0px;
  }
}
footer .info .dato {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
  font-size: 1em;
}
@media (max-width: 767px) {
  footer .info .dato {
    flex-wrap: wrap;
  }
}
@media (max-width: 1040px) {
  footer .info .dato {
    font-size: 1em;
  }
}
footer .info .dato img {
  height: 25px;
}
@media (max-width: 767px) {
  footer .info .dato img {
    height: 20px;
  }
}
footer .info .dato .icono {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sociales {
  display: inline-flex;
  gap: 1em;
}
.sociales a {
  width: 40px;
  height: 40px;
  padding: 5px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0px 12px 15px -3px rgba(0, 0, 0, 0.3);
  z-index: 3;
  position: relative;
}
@media (max-width: 690px) {
  .sociales a {
    width: 30px;
    height: 30px;
  }
}
.sociales a img {
  width: 80%;
  height: auto;
}
.sociales a:hover::before {
  opacity: 1;
}
.sociales a:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.sociales a.fb {
  align-items: center;
  justify-content: center;
  background-color: #4676ed;
}
.sociales a.fb img {
  width: auto;
  height: calc(80% + 6px);
  margin-bottom: -9px;
}
.sociales a.ig {
  background: #f09433;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f09433", endColorstr="#bc1888",GradientType=1 );
}
.sociales a.ig img {
  width: auto;
  height: calc(70% + 6px);
}
.sociales a.wp {
  background: rgb(39, 206, 68);
  background: linear-gradient(0deg, rgb(39, 206, 68) 0%, rgb(96, 251, 123) 100%);
}
.sociales a.tw {
  background-color: #1DA1F2;
}
.sociales a.tw img {
  width: auto;
  height: calc(60% + 6px);
}
.sociales a.lk {
  background-color: #0e76a8;
}
.sociales a.lk img {
  width: auto;
  height: calc(60% + 6px);
}
.sociales a.aden {
  background-color: #B31D15;
}
.sociales a.aden img {
  width: auto;
  height: calc(60% + 6px);
}/*# sourceMappingURL=estilos.css.map */