@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;700&display=swap");
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #00317E;
}

.hamburger-box {
  width: 2.5rem;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 2.5rem;
  height: 4px;
  background-color: #00317E;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 5rem;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 5rem;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 5rem;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 5rem;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 5rem;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 5rem;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-0.5rem, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-0.5rem, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(0.5rem, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(0.5rem, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-0.5rem, -0.625rem, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-0.5rem, 0.625rem, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(0.5rem, -0.625rem, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(0.5rem, 0.625rem, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -5rem;
  top: -5rem;
  transform: translate3d(5rem, 5rem, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -5rem;
  top: -5rem;
  transform: translate3d(-5rem, 5rem, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -5rem;
  top: 5rem;
  transform: translate3d(5rem, -5rem, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -5rem;
  top: 5rem;
  transform: translate3d(-5rem, -5rem, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-0.3571428571rem, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(0.3571428571rem, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

body, html {
  position: relative;
  margin: 0 !important;
  padding: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  body, html {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  body, html {
    font-size: 12px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover, a:visited {
  color: inherit;
}
a.link {
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.55rem 2.5rem;
  border: 1.5px solid white;
  border-radius: 2rem;
  line-height: 1;
  transition: background 1s cubic-bezier(0, 0.59, 0.18, 1.01), color 1s cubic-bezier(0, 0.59, 0.18, 1.01);
  text-decoration: none !important;
}
a.link:hover {
  color: white !important;
  background: #00317E !important;
}
a.link.azul {
  color: #26BDE2 !important;
  background: white !important;
  border-color: #26BDE2 !important;
}
a.link.azul:hover {
  color: white !important;
  background: #26BDE2 !important;
}
a.link.mostaza {
  color: #DDA63A !important;
  background: white !important;
  border-color: #DDA63A !important;
}
a.link.mostaza:hover {
  color: white !important;
  background: #DDA63A !important;
}
a.link.white {
  color: white !important;
  background: transparent !important;
  border-color: white !important;
}
a.link.white:hover {
  color: #00317E !important;
  border-color: #00317E !important;
}
a.link.block {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

ul {
  list-style: none;
  padding-left: 0;
}

h1, h2, h3, h4, h5, p, ul {
  margin: 0 0 1rem;
}

input {
  border: 0px solid transparent !important;
  outline: 0;
  box-shadow: none;
  background: transparent;
  color: #00317E !important;
}
input::-moz-placeholder {
  color: #00317E !important;
}
input::placeholder {
  color: #00317E !important;
}

* {
  box-sizing: border-box;
}

.center {
  text-align: center;
}

.container {
  position: relative;
  width: 90%;
  max-width: 1075px;
  margin-left: auto;
  margin-right: auto;
}

.subrayado {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
.subrayado:after {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 105%;
  height: 1.5rem;
  display: block;
  transform: translate(-50%, -50%);
  background-image: url("../images/subrayado.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.subrayado2 {
  background-image: url("../images/subrayado2.svg") !important;
  background-size: 100% 100% !important;
  background-position: center center !important;
}

.d-desktop {
  display: block !important;
}
@media (max-width: 1075px) {
  .d-desktop {
    display: none !important;
  }
}

.d-mobile {
  display: none !important;
}
@media (max-width: 1075px) {
  .d-mobile {
    display: block !important;
  }
}

.gallery {
  grid-gap: 1rem;
}

@media (max-width: 768px) {
  .gallery-columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

ul.objetivos li {
  display: inline-block;
}
ul.objetivos li img {
  width: 12rem;
}
ul.objetivos.all {
  display: flex;
  flex-wrap: wrap;
}
ul.objetivos.all li {
  display: inherit;
  width: calc((100% - 5rem) / 6);
  margin-bottom: 1rem;
  margin-right: 1rem;
  transform: scale(1);
  transition: transform 0.33s cubic-bezier(0, 0.59, 0.18, 1.01);
}
ul.objetivos.all li:hover {
  transform: scale(0.9);
}
ul.objetivos.all li:nth-of-type(6n) {
  margin-right: 0rem;
}
@media (max-width: 1075px) {
  ul.objetivos.all li {
    width: calc((100% - 4rem) / 5);
  }
  ul.objetivos.all li:nth-of-type(6n) {
    margin-right: 1rem;
  }
  ul.objetivos.all li:nth-of-type(5n) {
    margin-right: 0rem;
  }
}
@media (max-width: 768px) {
  ul.objetivos.all li {
    width: calc((100% - 3rem) / 4);
  }
  ul.objetivos.all li:nth-of-type(5n) {
    margin-right: 1rem;
  }
  ul.objetivos.all li:nth-of-type(4n) {
    margin-right: 0rem;
  }
}
@media (max-width: 480px) {
  ul.objetivos.all li {
    width: calc((100% - 2rem) / 3);
  }
  ul.objetivos.all li:nth-of-type(4n) {
    margin-right: 1rem;
  }
  ul.objetivos.all li:nth-of-type(3n) {
    margin-right: 0rem;
  }
}
ul.objetivos.all li img {
  display: block;
}

section.foto-expand {
  display: flex;
  padding-left: calc(( 100vw - 1075px ) / 2);
}
@media (max-width: calc( 1075px + ( 1075px * 0.1 ) )) {
  section.foto-expand {
    padding-left: 5%;
  }
}
@media (max-width: 1075px) {
  section.foto-expand {
    padding-left: 0;
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
section.foto-expand .texto {
  position: relative;
  width: 60%;
  padding-right: 3rem;
}
@media (max-width: 1075px) {
  section.foto-expand .texto {
    order: 2;
    width: 100%;
    padding: 0rem;
  }
}
section.foto-expand .imagen {
  position: relative;
  width: 40%;
}
@media (max-width: 1075px) {
  section.foto-expand .imagen {
    width: 100%;
    height: 30rem;
    order: 1;
    margin-bottom: 2rem;
  }
}
section.foto-expand .imagen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 1075px) {
  section.foto-expand .imagen.no-adjust-height {
    height: auto;
    text-align: center;
  }
}
section.foto-expand .imagen.no-adjust-height img {
  position: relative;
  height: auto;
}
@media (max-width: 1075px) {
  section.foto-expand .imagen.no-adjust-height img {
    width: auto;
  }
}
section.foto-expand.foto-izq {
  padding-left: 0;
  padding-right: calc(( 100vw - 1075px ) / 2);
}
@media (max-width: calc( 1075px + ( 1075px * 0.1 ) )) {
  section.foto-expand.foto-izq {
    padding-right: 5%;
  }
}
@media (max-width: 1075px) {
  section.foto-expand.foto-izq {
    padding-right: 0;
  }
}
section.foto-expand.foto-izq .texto {
  padding-right: 0rem;
  padding-left: 3rem;
  order: 2;
}
@media (max-width: 1075px) {
  section.foto-expand.foto-izq .texto {
    padding-left: 0;
  }
}
section.foto-expand.foto-izq .imagen {
  order: 1;
}

section.columns {
  display: flex;
}
@media (max-width: 1075px) {
  section.columns {
    padding-left: 0;
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
section.columns .texto {
  position: relative;
  width: 60%;
  padding-right: 3rem;
}
@media (max-width: 1075px) {
  section.columns .texto {
    width: 100%;
    padding: 0;
  }
}
section.columns .imagen {
  position: relative;
  width: 40%;
}
@media (max-width: 1075px) {
  section.columns .imagen {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
  }
}
section.columns.foto-izq .texto {
  padding-right: 0rem;
  padding-left: 3rem;
}
@media (max-width: 1075px) {
  section.columns.foto-izq .texto {
    width: 100%;
    padding: 0;
  }
}

section.cabecera {
  background: #E4EFF4;
  min-height: 9rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
section.cabecera p.tit {
  font-weight: 700;
  font-size: 3.57rem;
  color: #00317E;
  padding: 0.85rem 0 0;
  line-height: 1.1;
}
section.cabecera p.tit span {
  display: inline-block;
}
section.cabecera p.tit-sub {
  font-weight: 500;
  font-size: 2.5rem;
  color: #00317E;
  margin-top: -0.5rem;
  padding: 0;
  line-height: 1.1;
}
section.cabecera p.sub {
  font-weight: 400;
  font-size: 1.42rem;
  max-width: 42rem;
  line-height: 1.1;
}

section.cabecera-foto {
  background: rgba(0, 0, 0, 0.45);
  position: relative;
}
section.cabecera-foto > div {
  color: white;
  padding: 5rem 0;
}
section.cabecera-foto > div p {
  font-size: 1.28rem;
  max-width: 55rem;
  line-height: 1.1;
}
section.cabecera-foto > div p.pre {
  font-size: 1.07rem;
  text-transform: uppercase;
}
section.cabecera-foto > div p.tit {
  font-size: 3.57rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}
@media (max-width: 768px) {
  section.cabecera-foto > div p.tit {
    margin-bottom: 0.75rem;
  }
}
section.cabecera-foto > div p.subtit {
  font-size: 1.78rem;
}
section.cabecera-foto img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

section.subcabecera {
  background: #E4EFF4;
  margin-bottom: 3.5rem;
  font-weight: 700;
  font-size: 2.71rem;
  color: #00317E;
  padding: 3rem 0 2rem;
  line-height: 1.15;
}

.texto {
  font-size: 1.28rem;
  font-weight: 400;
}
.texto > p:last-child {
  margin-bottom: 0;
}
.texto p.destacado1 {
  font-size: 1.78rem;
  line-height: 1.1;
}
.texto p.destacado2 {
  font-weight: 700;
  font-size: 2.14rem;
  color: #00317E;
  line-height: 1.1;
}
.texto p.destacado3 {
  font-size: 2.14rem;
  line-height: 1.1;
}
.texto a {
  text-decoration: underline;
}
.texto a:hover {
  color: #00317E;
}
.texto li {
  position: relative;
  margin-bottom: 1rem;
}

main:not(.single) .texto li {
  padding-left: 2.75rem;
}
main:not(.single) .texto li::after {
  background-image: url(../images/arrow1.svg);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  width: 3.5rem;
  height: 5rem;
  background-color: transparent;
  top: -1.7rem;
  left: -1.5rem;
}
main:not(.single) .texto li:nth-of-type(even):after {
  background-image: url("../images/arrow2.svg");
  height: 1.8rem;
  top: 0rem;
}

ul.slide-noticias {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1075px) {
  ul.slide-noticias {
    flex-direction: column;
  }
}
ul.slide-noticias li {
  width: calc(33% - 1rem);
  color: white;
}
@media (max-width: 1075px) {
  ul.slide-noticias li {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 2rem;
  }
}
ul.slide-noticias li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
ul.slide-noticias li a div.aside:first-child {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
ul.slide-noticias li a div.aside:first-child img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
ul.slide-noticias li a div.aside:last-child {
  position: relative;
  color: #00317E;
}
ul.slide-noticias li a div.aside:last-child p.tit {
  font-size: 2.51rem;
  line-height: 1.1;
  font-weight: 700;
  padding: 1rem 0 0 2.5rem;
}
ul.slide-noticias li a div.aside:last-child p.fecha {
  font-size: 1.07rem;
  color: #00317E;
  background: white;
  text-align: right;
}

.aside {
  overflow: hidden;
  height: 50%;
}
.aside p.aside-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 100%;
  line-height: 2;
  padding: 1.75rem 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  background: #00317E;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
}

.bck-gris {
  background: #F7F7F7 !important;
}

.paginado {
  text-align: center;
  padding: 1rem 0 3rem;
}
.paginado .wp-pagenavi {
  padding: 1rem 0 4rem;
  font-size: 1.14rem;
}
.paginado .wp-pagenavi .pages {
  background: #E4EFF4;
  padding: 0.25rem 0.75rem;
  margin-right: 0.5rem;
}
.paginado .wp-pagenavi a, .paginado .wp-pagenavi .current, .paginado .wp-pagenavi .pages {
  border: 0px solid transparent !important;
}

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 0;
  z-index: 100;
}
@media (max-width: 1075px) {
  header {
    padding: 2rem 0;
  }
}
header a.logo {
  position: relative;
  z-index: 10;
}
header div.submenu {
  display: flex;
  justify-content: center;
  align-items: center;
}
header div.submenu a {
  display: block;
  margin: 0 0.2rem;
}
header div.submenu a:hover {
  transform: scale(0.95);
}
header div.submenu a.area_privada {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: #DDA63A;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.1rem 0.7rem 0.1rem 0.66rem;
  border-radius: 1rem;
  margin-bottom: 0.33rem;
}
header div.submenu a.area_privada img {
  margin-right: 0.5rem;
}
@media (max-width: 1075px) {
  header div.submenu {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(calc(-50% + 100vw));
    transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01);
    z-index: 100;
  }
}
header div.submenu.is-active {
  transform: translateX(-50%);
}
header ul#menu-principal {
  position: relative;
  display: flex;
  justify-content: space-around;
  margin-bottom: 0;
  width: 100%;
  background: #F7F7F7;
  padding: 1rem 0;
  margin-top: 1rem;
}
@media (max-width: 1075px) {
  header ul#menu-principal {
    background: white;
  }
}
header ul#menu-principal::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #F7F7F7;
  top: 0;
  z-index: -1;
}
@media (max-width: 1075px) {
  header ul#menu-principal::after {
    display: none;
  }
}
header ul#menu-principal .subrayado::after {
  display: none;
}
header ul#menu-principal li {
  position: relative;
  color: #00317E;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 1075px) {
  header ul#menu-principal li {
    font-size: 1.3rem;
  }
}
header ul#menu-principal li:nth-of-type(1):before {
  background: #E5243B;
}
header ul#menu-principal li:nth-of-type(2):before {
  background: #DDA63A;
}
header ul#menu-principal li:nth-of-type(3):before {
  background: #4C9F38;
}
header ul#menu-principal li:nth-of-type(4):before {
  background: #26BDE2;
}
header ul#menu-principal li:nth-of-type(5):before {
  background: #A21942;
}
header ul#menu-principal li:nth-of-type(6):before {
  background: #FD6925;
}
header ul#menu-principal li:nth-of-type(7):before {
  background: #26BDE2;
}
header ul#menu-principal li:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 0%;
  height: 3px;
  background: #00317E;
  transition: width 0.33s cubic-bezier(0.03, 0.47, 0.4, 1.39);
}
header ul#menu-principal li:hover:before, header ul#menu-principal li.current_page_item:before, header ul#menu-principal li.current-menu-parent:before {
  width: 100%;
}
header ul#menu-principal li.menu-item-has-children {
  display: inline-block;
}
header ul#menu-principal li.menu-item-has-children::after {
  position: relative;
  content: "";
  display: inline-block;
  top: 0.25rem;
  right: -0.1rem;
  width: 0;
  height: 0;
  border-right: 0.25rem solid transparent;
  border-top: 0.4rem solid #00317E;
  border-left: 0.25rem solid transparent;
  border-bottom: 0.4rem solid transparent;
}
header ul#menu-principal li ul.sub-menu {
  position: absolute;
  top: -10000px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0.5rem 0;
  margin: 0;
}
header ul#menu-principal li ul.sub-menu li {
  white-space: nowrap;
  color: white;
  padding: 0.25rem 3rem;
  margin: 0.2rem 0;
  background: #00317E;
  opacity: 0;
  transform: translateY(50%);
  transition: transform 0.35s cubic-bezier(0.03, 0.47, 0.4, 1.39), opacity 0.35s cubic-bezier(0, 0.59, 0.18, 1.01);
}
header ul#menu-principal li ul.sub-menu li::before {
  display: none;
}
header ul#menu-principal li ul.sub-menu li:hover {
  background: #E4EFF4;
  color: #00317E;
}
header ul#menu-principal li ul.sub-menu li:nth-of-type(1) {
  transition: transform 0.35s cubic-bezier(0.03, 0.47, 0.4, 1.39) 0s, opacity 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0s, background 1s cubic-bezier(0, 0.59, 0.18, 1.01), color 1s cubic-bezier(0, 0.59, 0.18, 1.01);
}
header ul#menu-principal li ul.sub-menu li:nth-of-type(2) {
  transition: transform 0.35s cubic-bezier(0.03, 0.47, 0.4, 1.39) 0.1s, opacity 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.1s, background 1s cubic-bezier(0, 0.59, 0.18, 1.01), color 1s cubic-bezier(0, 0.59, 0.18, 1.01);
}
header ul#menu-principal li ul.sub-menu li:nth-of-type(3) {
  transition: transform 0.35s cubic-bezier(0.03, 0.47, 0.4, 1.39) 0.2s, opacity 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.2s, background 1s cubic-bezier(0, 0.59, 0.18, 1.01), color 1s cubic-bezier(0, 0.59, 0.18, 1.01);
}
header ul#menu-principal li:hover ul.sub-menu {
  top: auto;
}
header ul#menu-principal li:hover ul.sub-menu li {
  opacity: 1;
  transform: translateY(0%);
}
@media (max-height: 768px) {
  header ul#menu-principal {
    margin-top: 3rem;
  }
}
@media (max-width: 1075px) {
  header ul#menu-principal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    min-height: 100vh;
    background: white;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01);
  }
  header ul#menu-principal.is-active {
    transform: translateX(0%);
  }
  header ul#menu-principal > li {
    width: 80%;
    max-width: 20rem;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #00317E;
  }
  header ul#menu-principal > li.menu-item-has-children::after {
    display: none;
  }
  header ul#menu-principal > li ul.sub-menu {
    position: relative;
    top: 0;
  }
  header ul#menu-principal > li ul.sub-menu li {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    transform: translateY(0%);
  }
}
@media (max-width: 1075px) and (max-width: 480px) {
  header ul#menu-principal > li ul.sub-menu li {
    width: 100%;
    padding: 0.5rem 0;
  }
}
header .hamburger {
  display: none;
}
@media (max-width: 1075px) {
  header .hamburger {
    display: block;
  }
}

main {
  overflow-x: hidden;
}
main section {
  margin-bottom: 5rem;
}
main section.mb0 {
  margin-bottom: 0;
}
main section.header-home {
  position: relative;
  width: 100%;
}
main section.header-home .texto {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  z-index: 2;
  padding: 3rem 1.5rem;
}
main section.header-home .texto p {
  width: 75%;
  max-width: 480px;
}
@media (max-width: 768px) {
  main section.header-home .texto p {
    width: 65%;
  }
}
@media (max-width: calc( 768px - 100px )) {
  main section.header-home .texto p {
    width: 90%;
  }
}
@media (max-width: 480px) {
  main section.header-home .texto p {
    width: 100%;
  }
}
main section.header-home .texto p.tit {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}
main section.header-home .texto p:nth-of-type(2) {
  margin-bottom: 2rem;
  line-height: 1.2;
}
main section.header-home .swiper-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
main section.header-home .swiper-container .swiper-pagination-bullet {
  opacity: 1;
  background: #26BDE2;
}
main section.header-home .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white;
}
main section.header-home iframe, main section.header-home .image-header {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
main section.header-home p.img-footer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 10;
  color: white;
}
main section.header-home .image-header {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  opacity: 1;
}
main section.header-home .swiper-slide {
  height: auto;
  min-height: 26rem;
}
@media (max-width: 1075px) {
  main section.header-home .swiper-slide {
    min-height: 40rem;
  }
}
@media (max-width: 768px) {
  main section.header-home .swiper-slide {
    min-height: 45rem;
  }
}
main section.header-home .with-video {
  position: relative;
}
main section.header-home .with-video video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
main section.header-home .with-video .countdown {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -5%);
  z-index: 10;
  font-family: "Barlow", sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  font-size: 1.05vw;
  padding: 10%;
  display: none;
}
@media (max-width: 1075px) {
  main section.header-home .with-video .countdown {
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
    font-size: 2.05vw;
  }
}
@media (max-width: 768px) {
  main section.header-home .with-video .countdown {
    font-size: 2.5vw;
  }
}
main section.header-home .with-video .countdown p {
  text-align: center;
  white-space: nowrap;
  margin-bottom: 0.7em;
  line-height: 1;
}
main section.header-home .with-video .countdown p:nth-of-type(1) {
  font-size: 2.2em;
}
main section.header-home .with-video .countdown p:nth-of-type(1) span {
  font-weight: 500;
  font-size: 2em;
}
main section.header-home .with-video .countdown p:nth-of-type(2) {
  width: 100%;
  font-size: 2.15em;
  font-weight: 500;
}
main section.header-home .with-video .countdown p:nth-of-type(2) span {
  position: relative;
}
main section.header-home .with-video .countdown p:nth-of-type(2) span:after {
  content: "H";
  display: block;
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  transform: translate(-50%, 100%);
  font-size: 0.5em;
}
main section.header-home .with-video .countdown p:nth-of-type(2) span:nth-of-type(2):after {
  content: "M";
}
main section.header-home .with-video .countdown p:nth-of-type(2) span:nth-of-type(3):after {
  content: "S";
}
main section.header-home .with-video a.link_countdown {
  font-size: 1.2vw;
  position: absolute;
  bottom: 7%;
  right: 21vw;
  padding: 0.5vw 2vw;
  z-index: 20;
  white-space: nowrap;
}
@media (max-width: 1075px) {
  main section.header-home .with-video a.link_countdown {
    right: auto;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.75vw;
    padding: 1vw 4vw;
  }
}
@media (max-width: 768px) {
  main section.header-home .with-video a.link_countdown {
    font-size: 4vw;
  }
}
@media (max-width: 480px) {
  main section.header-home .with-video a.link_countdown {
    font-size: 4.5vw;
  }
}
main section.noticias-home {
  margin-bottom: 7rem;
}
main section.noticias-home > p.tit {
  color: #00317E;
  font-size: 3.57rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 0rem 1.33rem;
  margin-left: -1.33rem;
}
main section.noticias-home div.sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  main section.noticias-home div.sub {
    flex-direction: column;
    align-items: flex-start;
  }
}
main section.noticias-home div.sub p {
  font-size: 1.42rem;
  margin-bottom: 0;
  max-width: 40rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  main section.noticias-home div.sub p {
    margin-bottom: 1.5rem;
  }
}
main section.noticias-home div.sub a.link {
  color: #00317E;
  border-color: #00317E;
}
@media (max-width: 1075px) {
  main section.agenda-bloque1 .imagen {
    padding-top: 4rem;
  }
}
main section.agenda-bloque3 .imagen {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
main section.lared-home .texto {
  padding-right: 4rem;
}
@media (max-width: 1075px) {
  main section.lared-home .texto {
    padding: 2.5rem 2.5rem 0;
  }
}
main section.lared-home .texto::after {
  content: "";
  display: block;
  position: absolute;
  width: 200%;
  height: 100%;
  background-color: #E4EFF4;
  top: 0;
  right: 1rem;
  z-index: -1;
}
@media (max-width: 1075px) {
  main section.lared-home .texto::after {
    width: 100%;
    right: 0rem;
  }
}
main section.lared-home .texto p {
  font-size: 1.28rem;
}
main section.lared-home .texto p.tit {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #00317E;
  font-size: 3.57rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 0rem 1.33rem;
  margin-left: -1.33rem;
  top: -2rem;
}
@media (max-width: 1075px) {
  main section.lared-home .texto p.tit {
    top: 0;
  }
}
main section.lared-home .texto a.link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.28rem;
  color: #26BDE2;
  border-color: #26BDE2;
  margin: 3rem 0 3.5rem;
}
main section.lared-home .texto a.link:hover {
  background: #26BDE2 !important;
}
main section.objetivos-home {
  margin-bottom: 7rem;
}
main section.objetivos-home > p.tit {
  color: #00317E;
  font-size: 3.57rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 0rem 1.33rem;
  margin-left: -1.33rem;
  line-height: 0.9;
}
main section.objetivos-home div.sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  main section.objetivos-home div.sub {
    flex-direction: column;
    align-items: flex-start;
  }
}
main section.objetivos-home div.sub p {
  font-size: 1.42rem;
  margin-bottom: 0;
  max-width: 40rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  main section.objetivos-home div.sub p {
    margin-bottom: 1.5rem;
  }
}
main section.objetivos-home div.sub a.link {
  color: #DDA63A;
  border-color: #DDA63A;
}
main section.objetivos-home div.sub a.link:hover {
  background: #DDA63A !important;
}
main section.objetivos-agenda {
  background: #E4EFF4;
  padding: 4rem 0 3rem;
}
main section.objetivos-agenda p {
  font-size: 2.14rem;
}
main section.consejo-gobierno ul {
  font-weight: 400;
  font-size: 1.42rem;
}
main section.consejo-gobierno ul.cargos-destacados {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.5rem 0 2.5rem;
}
@media (max-width: 1075px) {
  main section.consejo-gobierno ul.cargos-destacados {
    flex-direction: column;
  }
}
main section.consejo-gobierno ul.cargos-destacados li {
  width: 33.33%;
  padding-bottom: 3rem;
}
@media (max-width: 1075px) {
  main section.consejo-gobierno ul.cargos-destacados li {
    margin: 0 auto 2rem;
    width: 100%;
  }
}
main section.consejo-gobierno ul.cargos-destacados li img {
  position: relative;
  display: block;
  width: 70%;
  max-width: 18rem;
  border-radius: 100%;
  border: 4px solid #00317E;
  margin: 0 auto 2rem;
}
main section.consejo-gobierno ul.cargos-destacados li p {
  line-height: 1.2;
  text-align: center;
}
main section.consejo-gobierno ul.cargos-destacados li p.nombre {
  order: 2;
}
main section.consejo-gobierno ul.cargos-destacados li p.nombre span {
  font-weight: 500;
  color: #00317E;
  display: block;
}
main section.consejo-gobierno ul.cargos-destacados li p.cargo {
  order: 1;
  color: #00317E;
}
main section.consejo-gobierno ul.cargos-all li {
  display: flex;
  margin-bottom: 2rem;
}
main section.consejo-gobierno ul.cargos-all li p {
  line-height: 1.2;
  margin-bottom: 0;
}
main section.consejo-gobierno ul.cargos-all li p.nombre {
  order: 2;
  width: 70%;
}
main section.consejo-gobierno ul.cargos-all li p.nombre span {
  font-weight: 500;
  color: #00317E;
  display: block;
}
main section.consejo-gobierno ul.cargos-all li p.cargo {
  order: 1;
  width: 30%;
  text-align: right;
  padding-right: 3rem;
  color: #00317E;
}
@media (max-width: 1075px) {
  main section.consejo-gobierno ul.cargos-all li p.cargo {
    width: 35%;
  }
}
main section.miembros-lared {
  text-align: center;
  margin-bottom: 6rem;
}
main section.miembros-lared > a {
  margin: 0 0.5rem;
  font-size: 1.28rem;
}
@media (max-width: 1075px) {
  main section.miembros-lared > a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1.5rem;
  }
}
main section.miembros-lared ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 1075px) {
  main section.miembros-lared ul {
    flex-direction: column;
    align-items: center;
  }
}
main section.miembros-lared ul li {
  width: 25%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #00317E;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 3rem;
}
main section.miembros-lared ul li .imagen {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main section.miembros-lared ul li p.numero {
  flex: 0;
  font-size: 3rem;
}
main section.miembros-lared ul li p.dato {
  flex: 0;
  font-size: 1.78rem;
}
@media (max-width: 1075px) {
  main section.miembros-lared ul li {
    margin-left: -2rem;
    width: 90%;
    max-width: 25.5rem;
  }
}
@media (max-width: 480px) {
  main section.miembros-lared ul li {
    margin-left: 0rem;
  }
}
main section.miembros-lared ul li a, main section.miembros-lared ul li p.like-a {
  text-decoration: underline;
  position: relative;
  top: -0.5rem;
}
main section.logos-lared {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
main section.logos-lared div {
  position: relative;
  width: calc(25% - 1rem);
  height: 12rem;
  margin: 0.5rem;
  background: #F7F7F7;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: calc( 768px + 250px )) {
  main section.logos-lared div {
    width: calc(33.333% - 1rem);
  }
}
@media (max-width: calc( 480px + 250px )) {
  main section.logos-lared div {
    width: calc(50% - 1rem);
  }
}
@media (max-width: calc( 320px + 150px )) {
  main section.logos-lared div {
    width: calc(100% - 1rem);
  }
}
main section.logos-lared div img {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px;
  mix-blend-mode: multiply;
}
main section.listado-noticias {
  background: #E4EFF4;
}
main section.listado-noticias article {
  display: flex;
}
@media (max-width: 768px) {
  main section.listado-noticias article {
    flex-direction: column;
  }
}
main section.listado-noticias article:not(:last-child) {
  margin-bottom: 4rem;
}
main section.listado-noticias article .imagen {
  position: relative;
  display: block;
  width: 40%;
}
@media (max-width: 768px) {
  main section.listado-noticias article .imagen {
    width: 100%;
    margin-bottom: 2rem;
  }
}
main section.listado-noticias article .imagen img {
  display: block;
  width: 100%;
  min-height: 27rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
main section.listado-noticias article .imagen p.aside-text {
  left: auto;
  right: 0;
}
main section.listado-noticias article .texto {
  width: 60%;
  padding-left: 3rem;
}
@media (max-width: 768px) {
  main section.listado-noticias article .texto {
    width: 100%;
    padding-left: 0rem;
  }
}
main section.listado-noticias article .texto p.fecha {
  line-height: 1.1;
}
main section.listado-noticias article .texto p.tit {
  font-weight: 700;
  font-size: 3rem;
  color: #00317E;
  line-height: 1.1;
}
main section.listado-noticias article .texto p.tit a {
  font-weight: 700;
}
main section.listado-noticias article .texto p.tit:hover {
  text-decoration: none;
}
main section.listado-noticias article .texto a {
  display: block;
  margin-top: 1.5rem;
  font-weight: 500;
  text-decoration: none;
}
main section.listado-noticias article .texto a:hover {
  color: #00317E;
}
main section.single-noticia, main section.single-multimedia {
  background: #F7F7F7;
}
main section.single-noticia > div.container, main section.single-multimedia > div.container {
  padding: 3rem 5rem 5rem;
}
@media (max-width: 768px) {
  main section.single-noticia > div.container, main section.single-multimedia > div.container {
    padding: 3rem 2rem 5rem;
  }
}
@media (max-width: 480px) {
  main section.single-noticia > div.container, main section.single-multimedia > div.container {
    padding: 3rem 0rem 5rem;
  }
}
main section.single-noticia > div.container p.fecha, main section.single-multimedia > div.container p.fecha {
  font-size: 1.28rem;
  line-height: 1.1;
}
main section.single-noticia > div.container p.tit, main section.single-multimedia > div.container p.tit {
  font-weight: 700;
  font-size: 3rem;
  color: #00317E;
  line-height: 1.1;
  padding-bottom: 1rem;
}
main section.single-noticia > div.container img, main section.single-multimedia > div.container img {
  width: 100%;
  margin-bottom: 3rem;
  max-height: 45rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
main section.single-noticia > div.container div.texto, main section.single-multimedia > div.container div.texto {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main section.single-noticia > div.container div.texto, main section.single-multimedia > div.container div.texto {
    width: 100%;
  }
}
main section.noticia-rrss {
  background: #E4EFF4;
  padding: 5rem 0;
}
main section.noticia-rrss br {
  display: none;
}
main section.noticia-rrss .ssba-share-text {
  display: block;
  margin-bottom: 0.5rem;
}
main section.noticias-relacionadas {
  margin-bottom: 7rem;
}
main section.noticias-relacionadas > p.tit {
  font-weight: 700;
  font-size: 3rem;
  color: #00317E;
  line-height: 1.1;
  padding-bottom: 1rem;
  text-align: center;
}
main section.listado-documentos > ul {
  display: flex;
  flex-wrap: wrap;
}
main section.listado-documentos > ul > li {
  position: relative;
  border-radius: 0 0 0.6rem 0.6rem;
  overflow: hidden;
  width: calc((100% - 6rem) / 4);
  margin-bottom: 2rem;
  margin-right: 2rem;
  transform: scale(1);
  transition: transform 0.2s cubic-bezier(0, 0.59, 0.18, 1.01);
}
main section.listado-documentos > ul > li:hover {
  transform: scale(0.95);
}
main section.listado-documentos > ul > li:nth-of-type(4n) {
  margin-right: 0rem;
}
@media (max-width: 1075px) {
  main section.listado-documentos > ul > li {
    width: calc((100% - 4rem) / 3);
  }
  main section.listado-documentos > ul > li:nth-of-type(4n) {
    margin-right: 2rem;
  }
  main section.listado-documentos > ul > li:nth-of-type(3n) {
    margin-right: 0rem;
  }
}
@media (max-width: 1075px) and (max-width: 768px) {
  main section.listado-documentos > ul > li {
    width: calc((100% - 2rem) / 2);
  }
  main section.listado-documentos > ul > li:nth-of-type(3n) {
    margin-right: 2rem;
  }
  main section.listado-documentos > ul > li:nth-of-type(2n) {
    margin-right: 0rem;
  }
}
@media (max-width: 1075px) and (max-width: 480px) {
  main section.listado-documentos > ul > li {
    width: 100%;
    margin-right: 0rem;
  }
  main section.listado-documentos > ul > li:nth-of-type(3n) {
    margin-right: 0rem;
  }
}
main section.listado-documentos > ul > li > a {
  display: block;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #E4EFF4;
}
main section.listado-documentos > ul > li > a.out > img {
  filter: grayscale(100%);
}
main section.listado-documentos > ul > li > a > img {
  flex: 0;
  position: relative;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  mix-blend-mode: darken;
}
main section.listado-documentos > ul > li > a > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #E4EFF4;
  padding: 1rem 1.5rem 1.5rem;
}
main section.listado-documentos > ul > li > a > div::after {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: 3px;
  background-color: #00317E;
  top: -3px;
  left: 0;
}
main section.listado-documentos > ul > li > a > div p.tit {
  flex: 1;
  font-weight: 700;
  font-size: 1.42rem;
  color: #00317E;
  line-height: 1.2;
}
main section.listado-documentos > ul > li > a > div div.tipo {
  flex: 0;
  position: relative;
  display: block;
  font-size: 1.28rem;
  color: #00317E;
  line-height: 3rem;
  padding-left: 3.5rem;
  text-transform: uppercase;
}
main section.listado-documentos > ul > li > a > div div.tipo::after {
  background-image: url(../images/icon-download.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  top: 0;
  left: 0;
}
main section.listado-documentos > ul > li > a > div ul.tags {
  flex: 0;
}
main section.listado-documentos > ul > li > a > div ul.tags li {
  display: inline-block;
  font-weight: 500;
  font-size: 1.07rem;
  color: #00317E;
  border: 1px solid #00317E;
  padding: 0rem 0.75rem;
  border-radius: 1rem;
  margin-right: 0.4rem;
  margin-top: 0.6rem;
}
main section.listado-documentos.multimedia ul {
  display: flex;
  flex-wrap: wrap;
}
main section.listado-documentos.multimedia ul li {
  position: relative;
  border-radius: 0 0 0.6rem 0.6rem;
  overflow: hidden;
  width: calc((100% - 4rem) / 3);
  margin-bottom: 2rem;
  margin-right: 2rem;
}
main section.listado-documentos.multimedia ul li:nth-of-type(3n) {
  margin-right: 0rem;
}
main section.listado-documentos.multimedia ul li div.tipo {
  text-align: right;
}
main section.listado-documentos.multimedia ul li div.tipo::before {
  content: "";
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  background-color: transparent;
  content: "Link";
  top: 49%;
  left: 3.5rem;
  transform: translateY(-50%);
  line-height: 1;
  text-transform: none;
}
main section.listado-documentos.multimedia ul li div.tipo.link::after {
  background-image: url("../images/icon-enlace.svg");
}
main section.listado-documentos.multimedia ul li div.tipo.video::before {
  content: "Video";
}
main section.listado-documentos.multimedia ul li div.tipo.video::after {
  background-image: url("../images/icon-video.svg");
}
main section.listado-documentos.multimedia ul li div.tipo.galeria::before {
  content: "Galería";
}
main section.listado-documentos.multimedia ul li div.tipo.galeria::after {
  background-image: url("../images/icon-galeria.svg");
}
main section.single-multimedia div.texto {
  width: 100% !important;
}
main section.single-multimedia a {
  color: #00317E;
  font-weight: 700;
}
main section.single-multimedia div.gallery .gallery-item {
  margin: 0;
}
main section.single-multimedia div.gallery img {
  height: 100%;
  display: block;
  margin-bottom: 0;
  max-height: auto;
}
main section.single-multimedia div.wp-video {
  width: 100% !important;
}
main section.listado-practicas p.tit {
  font-weight: 700;
  font-size: 3rem;
  color: #00317E;
  padding: 0.85rem 0 0;
  line-height: 1.1;
  margin-bottom: 3rem;
}
main section.listado-practicas ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  main section.listado-practicas ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
main section.listado-practicas ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0.6rem;
  overflow: hidden;
  width: calc((100% - 3rem) / 2);
  margin-bottom: 3rem;
  margin-right: 3rem;
  background: #E4EFF4;
}
main section.listado-practicas ul li:nth-of-type(2n) {
  margin-right: 0rem;
}
@media (max-width: 768px) {
  main section.listado-practicas ul li {
    width: 100%;
    max-width: 480px;
  }
  main section.listado-practicas ul li:nth-of-type(1n) {
    margin-right: 0rem;
  }
}
main section.listado-practicas ul li > a > img {
  position: relative;
  display: block;
  width: 100%;
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
main section.listado-practicas ul li > div {
  position: relative;
  padding: 2rem 3rem;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main section.listado-practicas ul li > div p.tit {
  font-weight: 700;
  font-size: 3rem;
  color: #00317E;
  line-height: 1.1;
}
main section.listado-practicas ul li > div p.tit a {
  text-decoration: none;
}
main section.listado-practicas ul li > div p.sub {
  font-weight: 500;
  font-size: 1.42rem;
}
main section.listado-practicas ul li > div p:nth-of-type(3) {
  flex: 1 1;
}
main section.listado-practicas ul li > div a.link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #00317E;
  border-color: #00317E;
  font-size: 1.14rem;
  padding: 0.75rem 3.33rem;
  margin: 2rem 0 1rem;
}
main section.contenido-practica {
  display: flex;
}
main section.contenido-practica li {
  list-style: disc;
}
@media (max-width: 768px) {
  main section.contenido-practica {
    flex-direction: column;
  }
}
main section.contenido-practica div.texto {
  width: 75%;
  padding-right: 3rem;
}
@media (max-width: 1075px) {
  main section.contenido-practica div.texto {
    width: 65%;
  }
}
@media (max-width: 768px) {
  main section.contenido-practica div.texto {
    width: 100%;
    padding-right: 0rem;
    margin-bottom: 3rem;
  }
}
main section.contenido-practica div.texto p.tit {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
  margin-top: 3rem;
}
main section.contenido-practica div.texto p.tit:first-child {
  margin-top: 0;
}
main section.contenido-practica div.texto p.bullet {
  font-weight: 700;
}
main section.contenido-practica div.texto p.bullet::before {
  content: "-";
  display: inline-block;
  margin-right: 2rem;
}
main section.contenido-practica div.texto a.link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #00317E;
  border-color: #00317E;
  font-size: 1.14rem;
  padding: 0.55rem 3.33rem;
  margin-top: 3rem;
}
main section.contenido-practica div.aside {
  width: 25%;
  background: #E4EFF4;
  border-radius: 1rem;
  padding: 1.8rem;
  font-size: 1.28rem;
  color: #00317E;
  align-self: flex-start;
}
@media (max-width: 1075px) {
  main section.contenido-practica div.aside {
    width: 35%;
  }
}
@media (max-width: 768px) {
  main section.contenido-practica div.aside {
    width: 100%;
  }
}
main section.contenido-practica div.aside p {
  line-height: 1.25;
}
main section.contenido-practica div.aside p strong {
  display: block;
  margin-bottom: 0.1rem;
  font-weight: 700;
}
main section.contenido-practica div.aside ul.objetivos {
  display: flex;
  flex-wrap: wrap;
}
main section.contenido-practica div.aside ul.objetivos li {
  display: inherit;
  width: calc((100% - 0.75rem) / 2);
  margin-bottom: 0.75rem;
  margin-right: 0.75rem;
}
main section.contenido-practica div.aside ul.objetivos li:nth-of-type(2n) {
  margin-right: 0rem;
}
@media (max-width: 768px) {
  main section.contenido-practica div.aside ul.objetivos li {
    width: calc((100% - 4rem) / 5);
    margin-bottom: 1rem;
    margin-right: 1rem;
  }
  main section.contenido-practica div.aside ul.objetivos li:nth-of-type(2n) {
    margin-right: 1rem;
  }
  main section.contenido-practica div.aside ul.objetivos li:nth-of-type(5n) {
    margin-right: 0rem;
  }
}
@media (max-width: 480px) {
  main section.contenido-practica div.aside ul.objetivos li {
    width: calc((100% - 3rem) / 4);
  }
  main section.contenido-practica div.aside ul.objetivos li:nth-of-type(5n) {
    margin-right: 1rem;
  }
  main section.contenido-practica div.aside ul.objetivos li:nth-of-type(4n) {
    margin-right: 0rem;
  }
}
@media (max-width: 320px) {
  main section.contenido-practica div.aside ul.objetivos li {
    width: calc((100% - 2rem) / 3);
  }
  main section.contenido-practica div.aside ul.objetivos li:nth-of-type(4n) {
    margin-right: 1rem;
  }
  main section.contenido-practica div.aside ul.objetivos li:nth-of-type(3n) {
    margin-right: 0rem;
  }
}
main section.descarga {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem;
}
main section.descarga p.tit {
  font-size: 2.71rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
  margin-bottom: 1.5rem;
}
main section.descarga p {
  text-align: center;
  line-height: 1.2;
}
main section.descarga a {
  font-size: 1.28rem;
  color: #00317E;
  background: #E4EFF4;
  padding: 0.5rem 1rem;
}
main section.bienvenida-asamblea p.tit {
  font-size: 2.71rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
}
main section.bienvenida-asamblea p:last-of-type {
  margin-bottom: 3rem;
}
main section.bienvenida-asamblea a.link {
  color: #26BDE2;
  border-color: #26BDE2;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  main section.bienvenida-asamblea a.link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1rem;
  }
}
main section.secretaria-asamblea {
  background: #E4EFF4;
  padding: 4rem 0;
}
main section.secretaria-asamblea p {
  font-size: 1.57rem;
  font-weight: 700;
  line-height: 1.3;
  color: #00317E;
  text-align: center;
  margin-bottom: 0rem;
}
main section.secretaria-asamblea p.tit {
  font-size: 2.14rem;
  margin-bottom: 1rem;
}
main section.programa-asamblea {
  margin-bottom: 7rem;
  text-align: center;
}
main section.programa-asamblea p.tit {
  font-size: 2.14rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
  text-align: center;
  margin-bottom: 2rem;
}
main section.programa-asamblea p.dia {
  font-size: 1.78rem;
  font-weight: 700;
  line-height: 1.1;
  color: #DDA63A;
  text-align: center;
  max-width: calc( 1075px - 200px );
  margin: 0 auto 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #DDA63A;
}
main section.programa-asamblea ul.horas {
  max-width: calc( 1075px - 200px );
  margin: 0 auto 1.5rem;
  text-align: left;
}
main section.programa-asamblea ul.horas li {
  display: flex;
}
@media (max-width: 768px) {
  main section.programa-asamblea ul.horas li {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    max-width: 480px;
  }
}
main section.programa-asamblea ul.horas li p.hora {
  width: 25%;
  text-align: center;
  color: #00317E;
  font-weight: 400;
  font-size: 1.28rem;
}
@media (max-width: 768px) {
  main section.programa-asamblea ul.horas li p.hora {
    text-align: left;
    margin-bottom: 0;
    width: 100%;
  }
}
main section.programa-asamblea ul.horas li div.texto {
  width: 75%;
  font-size: 1.28rem;
}
@media (max-width: 768px) {
  main section.programa-asamblea ul.horas li div.texto {
    width: 100%;
  }
}
main section.programa-asamblea ul.horas li div.texto strong {
  color: #00317E;
}
main section.programa-asamblea ul.horas:last-of-type {
  margin-bottom: 3rem;
}
main section.programa-asamblea > a {
  background: transparent !important;
  font-size: 1.57rem;
  margin: 0 0.5rem;
}
@media (max-width: 1075px) {
  main section.programa-asamblea > a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1rem;
  }
}
main section.localizacion-asamblea {
  text-align: center;
  background: #E4EFF4;
}
main section.localizacion-asamblea p.tit {
  font-size: 2.71rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 4rem;
}
main section.localizacion-asamblea div.map {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-left: 3.95rem;
  color: #00317E;
  font-size: 1.42rem;
  line-height: 1.1;
}
main section.localizacion-asamblea div.map strong {
  display: block;
  font-weight: 700 !important;
  font-size: 1.78rem;
  font-weight: normal;
  padding-bottom: 0.5rem;
}
main section.localizacion-asamblea div.map::after {
  background-image: url(../images/icon-map.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  width: 4.25rem;
  height: 100%;
  background-color: transparent;
  top: 0;
  left: -1.5rem;
}
main section.localizacion-asamblea div.map p:last-child {
  margin-bottom: 3rem;
}
main section.localizacion-asamblea .container {
  margin-bottom: 5rem;
}
main section.localizacion-asamblea .container > a {
  background: transparent !important;
  font-size: 1.28rem;
  margin: 0 0.5rem;
}
@media (max-width: 1075px) {
  main section.localizacion-asamblea .container > a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1rem;
  }
}
main section.localizacion-asamblea > .content-map {
  width: 100%;
  display: block;
  min-height: 20rem;
}
main section.colaboradores-asamblea {
  margin-bottom: 7rem;
}
main section.colaboradores-asamblea p.tit {
  font-size: 2.71rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
  text-align: center;
  margin-bottom: 2rem;
}
main section.colaboradores-asamblea ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 1075px) {
  main section.colaboradores-asamblea ul {
    flex-direction: column;
    align-items: center;
  }
}
main section.colaboradores-asamblea ul li {
  width: 33%;
}
@media (max-width: 1075px) {
  main section.colaboradores-asamblea ul li {
    margin-left: -2rem;
    width: 90%;
    max-width: 25.5rem;
  }
}
@media (max-width: 480px) {
  main section.colaboradores-asamblea ul li {
    margin-left: 0rem;
  }
}
main section.colaboradores-asamblea ul li img {
  width: 90%;
  margin: 0 auto;
  display: block;
}
main section.mapa {
  margin-bottom: 0;
}
main section.mapa div#store_locator {
  padding: 0;
}
@media (max-width: 1075px) {
  main section.mapa div#store_locator div#store_locator_sidebar {
    order: 2;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-bottom: 2rem !important;
    margin-bottom: 3rem !important;
  }
  main section.mapa div#store_locator div#store_locator_main {
    order: 1;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    height: 65vh !important;
  }
  main section.mapa div#store_locator div#store_locator_main #store_locator_map {
    height: 65vh !important;
  }
}
main section.mapa div#store_locator div#store_locator_sidebar {
  background: #E4EFF4;
  padding: 1rem 4rem;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
main section.mapa div#store_locator div#store_locator_sidebar hr.grey {
  display: none;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_search_box {
  margin-bottom: 2rem;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_search_box h2.store_modal_title {
  font-size: 2.14rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
  font-weight: normal;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_search_box .store_locator_filter_active_filter_box {
  display: none;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_search_box h5.wordpress-store-locator-address-title {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
  font-weight: normal;
  padding: 0 0 0.25rem 1rem;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_search_box input#store_locator_address_field {
  font-weight: 400;
  font-size: 1.14rem;
  color: #000;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  margin-bottom: 0.25rem;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_search_box a#store_locator_get_my_position {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
  font-weight: normal;
  padding-left: 1rem;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_search_box a#store_locator_get_my_position i {
  font-style: normal;
}
main section.mapa div#store_locator div#store_locator_sidebar div#store_locator_result_list {
  padding: 0rem 1rem;
}
main section.mapa div#store_locator div#store_locator_sidebar h3.store_locator_result_list_title {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
  font-weight: normal;
  margin-bottom: 0.5rem;
  padding: 0 0 0.25rem 1rem;
  border-color: transparent;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_result_list_item {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_result_list_item div.store_locator_details {
  display: flex;
  flex-direction: column;
  background: white;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  color: #000;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_result_list_item div.store_locator_details h3.store_locator_name {
  order: 1;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.1;
  color: #00317E;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 0.5rem;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_result_list_item div.store_locator_details h3.store_locator_name i {
  display: none;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_result_list_item div.store_locator_details p.store_locator_address {
  order: 2;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_result_list_item div.store_locator_details p.store_locator_contact {
  order: 4;
  margin-bottom: 0.5rem;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_result_list_item div.store_locator_details div.store_locator_custom_fields {
  order: 3;
  margin-bottom: 0.5rem;
}
main section.mapa div#store_locator div#store_locator_sidebar div.store_locator_result_list_item div.store_locator_details p.store_locator_actions {
  display: none;
}
main section.mapa div#store_locator div#store_locator_sidebar div.download {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 0.25rem 1rem 0.1rem;
  font-size: 1rem;
  color: #00317E;
  margin-bottom: -2em;
  z-index: 10;
}
main section.mapa div#store_locator div#store_locator_sidebar div.download a {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.1;
}
main section.mapa div#store_locator div#store_locator_sidebar div.download a:hover {
  text-decoration: underline;
}
main section.mapa div#store_locator div#store_locator_sidebar div.download a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  background-color: transparent;
  background-image: url(../images/download.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0.1rem;
  left: -1.1rem;
}
main section.mapa div#store_locator div#store_locator_main {
  padding: 0;
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
}
main section.inscribete-form input {
  border: 1px solid #ccc !important;
}
main section.inscribete-form input[type=submit] {
  font-weight: 700;
  font-size: 1.14rem;
  color: #DDA63A !important;
  text-transform: uppercase;
  padding: 0.55rem 2.5rem;
  border: 1.5px solid #DDA63A !important;
  border-radius: 2rem;
  line-height: 1;
  transition: background 1s cubic-bezier(0, 0.59, 0.18, 1.01), color 1s cubic-bezier(0, 0.59, 0.18, 1.01);
  text-decoration: none !important;
  background: transparent;
  cursor: pointer;
  display: block;
  margin: 1.5rem auto;
}
main section.inscribete-form input[type=submit]:hover {
  color: white !important;
  background: #DDA63A !important;
}
main section.suscribete {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-image: url("../images/fondo-suscribete.jpg");
  background-position: center center;
  background-size: cover;
  height: 27.8vw;
  min-height: 28rem;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  main section.suscribete {
    min-height: 30rem;
  }
}
main section.suscribete > div {
  display: flex;
  align-items: flex-end;
  top: 5rem;
  color: #00317E;
}
@media (max-width: 768px) {
  main section.suscribete > div {
    flex-direction: column;
    align-items: flex-start;
    top: 3.5rem;
  }
}
main section.suscribete > div p {
  white-space: no-wrap;
  margin: 0;
  font-weight: 700;
  font-size: 2.14rem;
  line-height: 1;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  main section.suscribete > div p br {
    display: none;
  }
}
main section.suscribete > div form {
  position: relative;
  top: 0.5rem;
  flex: 1 1;
}
@media (max-width: 768px) {
  main section.suscribete > div form {
    width: 100%;
  }
}
main section.suscribete > div form input[type=email] {
  position: relative;
  width: 100%;
  font-size: 2.14rem;
  border-bottom: 2px solid #00317E !important;
  margin: 0;
  padding: 0;
}
main section.suscribete > div form .mce_inline_error, main section.suscribete > div form #mce-responses {
  position: absolute;
}
main section.suscribete > div form input[type=submit] {
  position: absolute;
  right: 0;
  top: 52%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 2.14rem;
  margin: 0 !important;
  padding: 1rem 1rem 0.5rem;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 480px) {
  main section.suscribete > div form input[type=submit] {
    position: relative;
    top: 2rem;
    float: right;
  }
}

footer {
  background: #00317E;
  color: white;
  padding: 6rem 0 5rem;
  font-size: 1.14rem;
}
footer a:hover {
  text-decoration: underline;
}
footer .subrayado::after {
  display: none;
}
footer li.menu-item-has-children > a {
  display: none;
}
footer li.menu-item-has-children ul.sub-menu {
  padding: 0;
  margin: 0;
}
footer::after {
  background-image: url(../images/colors.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1rem;
  background-color: #00317E;
  bottom: -1rem;
  left: 0;
}
footer > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem !important;
}
@media (max-width: 1075px) {
  footer > div {
    flex-wrap: wrap;
    margin-bottom: 2rem !important;
  }
  footer > div > * {
    width: 50%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  footer > div {
    flex-direction: column;
  }
  footer > div > * {
    width: 100%;
    text-align: center;
    padding: 0 2rem;
  }
  footer > div > * br {
    display: none;
  }
}
footer > div .rrss {
  font-size: 2.14rem;
  line-height: 1;
  font-weight: 700;
}
footer > div .rrss a {
  position: relative;
  display: inline-block;
  padding: 0.5rem;
  height: 3rem;
}
footer > p {
  text-align: center;
}

.gform_wrapper.gravity-theme .gfield-choice-input {
  margin-top: 10px !important;
  vertical-align: top !important;
}/*# sourceMappingURL=estilos.css.map */