@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
.s-lightbox-container {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.s-lightbox-container, .s-lightbox-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.s-lightbox-hidden-scroll {
  overflow: hidden;
}

.s-lightbox-overlay, .s-lightbox-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.s-lightbox-overlay {
  background-color: rgba(30, 30, 30, 0.8);
}

.s-lightbox-navigation-prev {
  left: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.s-lightbox-navigation-next {
  right: 0;
}

.s-lightbox-navigation-prev, .s-lightbox-navigation-next {
  position: absolute;
  width: 56px;
  height: 100px;
  top: 50%;
  background-color: transparent;
  margin-top: -50px;
  border: 0;
  cursor: pointer;
  outline: none;
}

.s-lightbox-navigation-prev:after {
  content: "";
  position: absolute;
  top: 27px;
  width: 46px;
  height: 46px;
  left: 0;
  background-color: rgba(30, 30, 30, 0.6);
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px 24px;
}

.s-lightbox-navigation-next:after {
  content: "";
  position: absolute;
  top: 27px;
  width: 46px;
  height: 46px;
  left: 0;
  background-color: rgba(30, 30, 30, 0.6);
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px 24px;
}

.s-lightbox-viewer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.s-lightbox-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.s-lightbox-item {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  -webkit-transition-duration: 0;
          transition-duration: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.s-lightbox-item-first {
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

.s-lightbox-item-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.s-lightbox-item-last {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.s-lightbox-close-overlay .s-lightbox-item-active {
  cursor: pointer;
}

.s-lightbox-item-container {
  left: 60px;
  top: 60px;
  right: 60px;
  bottom: 60px;
  position: absolute;
  display: block;
}

.s-lightbox-item-box {
  position: absolute;
  cursor: default;
  opacity: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-property: -webkit-transform opacity;
  transition-property: -webkit-transform opacity;
  transition-property: transform opacity;
  transition-property: transform opacity, -webkit-transform opacity;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.s-lightbox-draggable-content {
  cursor: -webkit-grab;
  cursor: grab;
  -khtml-user-drag: element;
  -webkit-user-drag: element;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

.s-lightbox-zoomable {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.s-zoom-active {
  cursor: -webkit-grab;
  cursor: grab;
}

.s-lightbox-content-box {
  opacity: 0;
  position: absolute;
  cursor: default;
  overflow-y: auto;
  text-align: left;
}

.s-lightbox-view-html {
  padding: 30px;
  background-color: #FFF;
  text-align: left;
}

.s-lightbox-item-image {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  left: 0;
  top: 0;
  max-width: none;
  max-height: none;
}

.s-lightbox-viewer-border .s-lightbox-item-box {
  border: solid 7px #FFF;
  border-radius: 2px;
}

.s-lightbox-youtube-iframe, .s-lightbox-vimeo-iframe, .s-lightbox-content-iframe, .s-lightbox-dailymotion-iframe, .s-lightbox-googlemap-iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.s-lightbox-content-iframe {
  background-color: #FFF;
}

.s-lightbox-caption {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  padding: 30px 20px 20px;
  color: #FFF;
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.8)));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=0);
}

.s-lightbox-closer {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 0;
  background-color: rgba(30, 30, 30, 0.6);
  right: 10px;
  top: 10px;
  cursor: pointer;
  outline: none;
}

.s-lightbox-closer:before, .s-lightbox-closer:after {
  position: absolute;
  left: 22px;
  top: 10px;
  content: "";
  height: 26px;
  width: 2px;
  background-color: #FFF;
}

.s-lightbox-closer:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.s-lightbox-closer:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.s-lightbox-closer:hover, .s-lightbox-navigation-prev:hover:after, .s-lightbox-navigation-next:hover:after, .s-lightbox-fullscreen:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.s-lightbox-fullscreen {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 0;
  background-color: rgba(30, 30, 30, 0.4);
  right: 10px;
  top: 66px;
  cursor: pointer;
  outline: none;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container {
  position: absolute;
  width: 24px;
  height: 20px;
  top: 13px;
  left: 11px;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span {
  position: absolute;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:before, .s-lightbox-fullscreen .s-lightbox-fullscreen-container span:after {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  content: "";
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(1) {
  left: 0;
  top: 0;
  width: 6px;
  height: 6px;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(1):before {
  width: 6px;
  height: 2px;
  left: 0;
  top: 0;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(1):after {
  width: 2px;
  height: 4px;
  left: 0;
  top: 2px;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(2) {
  top: 0;
  right: 0;
  width: 6px;
  height: 6px;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(2):before {
  width: 6px;
  height: 2px;
  right: 0;
  top: 0;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(2):after {
  width: 2px;
  height: 4px;
  right: 0;
  top: 2px;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(3):before {
  width: 6px;
  height: 2px;
  bottom: 0;
  left: 0;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(3):after {
  width: 2px;
  height: 4px;
  bottom: 2px;
  left: 0;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(4) {
  bottom: 0;
  right: 0;
  width: 6px;
  height: 6px;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(4):before {
  width: 6px;
  height: 2px;
  bottom: 0;
  right: 0;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(4):after {
  width: 2px;
  height: 4px;
  bottom: 2px;
  right: 0;
}

.s-lightbox-fullscreen .s-lightbox-fullscreen-container span:nth-child(5) {
  left: 6px;
  top: 6px;
  width: 12px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.4);
}

.s-lightbox-page-info {
  position: absolute;
  width: 70px;
  height: 30px;
  border: 0;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: default;
  outline: none;
  left: 50%;
  margin-left: -35px;
  bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 30px;
  text-align: center;
  font-size: 12px;
}

.s-lightbox-page-info > span {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 768px) {
  .s-lightbox-item-container {
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
  }
  .s-lightbox-closer, .s-lightbox-navigation-prev:after, .s-lightbox-navigation-next:after {
    background-color: rgba(30, 30, 30, 0.8);
  }
  .s-lightbox-fullscreen {
    right: 66px;
    top: 10px;
  }
}
.s-lightbox-loader-type1 {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: 50%;
  margin-top: -20px;
  -webkit-animation: loader-type1 1.2s infinite ease-in-out;
  animation: loader-type1 1.2s infinite ease-in-out;
}

@-webkit-keyframes loader-type1 {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes loader-type1 {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.s-lightbox-loader-type2, .s-lightbox-loader-type2:after {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.s-lightbox-loader-type2 {
  left: 50%;
  margin-left: -20px;
  top: 50%;
  margin-top: -20px;
  position: absolute;
  text-indent: -9999em;
  border-top: 5px solid rgba(255, 255, 255, 0.4);
  border-right: 5px solid rgba(255, 255, 255, 0.4);
  border-bottom: 5px solid rgba(255, 255, 255, 0.4);
  border-left: 5px solid rgba(255, 255, 255, 0.9);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loader-type2 1.1s infinite linear;
  animation: loader-type2 1.1s infinite linear;
}

@-webkit-keyframes loader-type2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-type2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes lb-closeDownEffect {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 400px, 0);
    transform: translate3d(0, 400px, 0);
  }
}
@keyframes lb-closeDownEffect {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 400px, 0);
    transform: translate3d(0, 400px, 0);
  }
}
@-webkit-keyframes lb-fadeOutEffect {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes lb-fadeOutEffect {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.s-lightbox-closeEffect .s-lightbox-item-active .s-lightbox-item-container {
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: lb-closeDownEffect;
  animation-name: lb-closeDownEffect;
}

.s-lightbox-closeEffect .s-lightbox-overlay {
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: lb-fadeOutEffect;
  animation-name: lb-fadeOutEffect;
}

.s-lightbox-closeEffect .s-lightbox-navigation, .s-lightbox-closeEffect .s-lightbox-closer, .s-lightbox-closeEffect .s-lightbox-fullscreen, .s-lightbox-closeEffect .s-lightbox-page-info {
  display: none;
}

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

p {
  color: #777777;
  font-size: 16px;
  margin: 0 0 20px 0;
}

a:hover, a:active, a:focus, a:link, a:visited {
  outline: 0 !important;
  outline-style: none;
  border: 0;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

button:focus, input:focus {
  outline: 0 !important;
  outline-style: none;
  border: 0;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1em;
  font-weight: normal;
}

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

img {
  height: auto;
  width: 100%;
}

.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
}

.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.wrap_general {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
  max-width: 1260px;
  margin: auto;
  width: 100%;
  position: relative;
}

.header .wrap_header {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
  max-width: 1260px;
  margin: auto;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 120px;
  position: relative;
}
.header .wrap_header .col_uno, .header .wrap_header .col_dos, .header .wrap_header .col_tres {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .wrap_header .col_uno .item, .header .wrap_header .col_dos .item, .header .wrap_header .col_tres .item {
  -ms-flex-line-pack: center;
      align-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .wrap_header .col_uno .item .icono, .header .wrap_header .col_dos .item .icono, .header .wrap_header .col_tres .item .icono {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0033f0;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: white;
  font-size: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  margin-right: 10px;
}
.header .wrap_header .col_uno .item .info p.tag, .header .wrap_header .col_dos .item .info p.tag, .header .wrap_header .col_tres .item .info p.tag {
  font-size: 13px;
  line-height: 1em;
  margin: 0;
}
.header .wrap_header .col_uno .item .info a, .header .wrap_header .col_dos .item .info a, .header .wrap_header .col_tres .item .info a {
  color: #303030;
  font-size: 20px;
  font-weight: bold;
  line-height: 1em;
  margin: 0;
}
.header .wrap_header .col_uno .item .info a:hover, .header .wrap_header .col_dos .item .info a:hover, .header .wrap_header .col_tres .item .info a:hover {
  color: #777777;
}
.header .wrap_header .col_uno, .header .wrap_header .col_tres {
  width: 30%;
}
.header .wrap_header .col_tres {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header .wrap_header .col_naranja {
  background: #f15701;
  border-radius: 10px;
  bottom: -35px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 50px;
  width: 80%;
  z-index: 2;
}

.contenido .slider {
  font-size: 0;
  position: relative;
}
.contenido .slider .texto_flotante {
  position: absolute;
  width: 50%;
  z-index: 2;
  right: 40px;
  top: 30%;
}
.contenido .slider .texto_flotante p {
  color: white;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1em;
}
.contenido .slider .texto_flotante h1 {
  color: white;
  font-size: 18px;
  line-height: 1.2em;
}
.contenido .presentacion {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 0;
}
.contenido .presentacion .wrap_general .wrap_presentacion {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contenido .presentacion .wrap_general .wrap_presentacion .col_uno, .contenido .presentacion .wrap_general .wrap_presentacion .col_dos {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
}
.contenido .presentacion .wrap_general .wrap_presentacion .col_uno .area_texto p.tag, .contenido .presentacion .wrap_general .wrap_presentacion .col_dos .area_texto p.tag {
  color: #f15701;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.contenido .presentacion .wrap_general .wrap_presentacion .col_uno .area_texto h2, .contenido .presentacion .wrap_general .wrap_presentacion .col_dos .area_texto h2 {
  color: #303030;
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 10px;
}
.contenido .presentacion .wrap_general .wrap_presentacion .col_uno .area_texto .detalle, .contenido .presentacion .wrap_general .wrap_presentacion .col_dos .area_texto .detalle {
  background: url(img/detalle.png);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 12px;
  width: 80px;
  margin-bottom: 40px;
}
.contenido .presentacion .wrap_general .wrap_presentacion .col_uno {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.contenido .presentacion .wrap_general .wrap_presentacion .col_uno .imagen2 {
  margin-top: 50px;
}
.contenido .presentacion .wrap_general .wrap_presentacion .col_uno .imagen3 {
  margin: -60px 50px 0 0;
}
.contenido .presentacion .wrap_general .wrap_presentacion .col_dos {
  padding-left: 60px;
}
.contenido .servicios {
  background: url(img/bg_servicios.jpg);
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 100px;
  position: relative;
  margin-bottom: 100px;
}
.contenido .servicios .wrap_general .area_titulo {
  width: 100%;
}
.contenido .servicios .wrap_general .area_titulo p.tag {
  color: #f15701;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.contenido .servicios .wrap_general .area_titulo h2 {
  color: white;
  font-size: 45px;
  font-weight: bold;
  margin: auto auto 40px auto;
  max-width: 950px;
  text-align: center;
}
.contenido .servicios .wrap_general .area_titulo .detalle_dos {
  background: url(img/detalle_dos.png);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 12px;
  width: 135px;
  margin: auto auto 80px auto;
}
.contenido .servicios .wrap_general .wrap_listado {
  -webkit-box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.15);
  background: white;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 60px 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (min-width: 640px) {
  .contenido .servicios .wrap_general .wrap_listado {
    -webkit-box-shadow: 5px 9px 30px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 5px 9px 30px 0px rgba(0, 0, 0, 0.15);
  }
}
@media (min-width: 1280px) {
  .contenido .servicios .wrap_general .wrap_listado {
    -webkit-box-shadow: 10px 17px 60px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 10px 17px 60px 0px rgba(0, 0, 0, 0.15);
  }
}
.contenido .servicios .wrap_general .wrap_listado .ico_obrero_bg {
  background: url(img/ico_obrero_bg.png);
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 382px;
  width: 270px;
  opacity: 0.3;
}
.contenido .servicios .wrap_general .wrap_listado .item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 46%;
  margin-bottom: 20px;
}
.contenido .servicios .wrap_general .wrap_listado .item p.numero {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  display: inline-block;
  vertical-align: top;
  font-size: 120px;
  font-weight: bold;
  text-shadow: -1px -1px 0 #f15701, 1px -1px 0 #f15701, -1px 1px 0 #f15701, 1px 1px 0 #f15701;
  line-height: 1em;
  margin-right: 20px;
}
.contenido .servicios .wrap_general .wrap_listado .item .descripcion {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contenido .servicios .wrap_general .wrap_listado .item .descripcion h3 {
  color: #303030;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
}
.contenido .servicios .wrap_general .wrap_listado .item .descripcion p {
  margin-bottom: 10px;
}
.contenido .servicios .wrap_general .wrap_listado .item .descripcion a {
  display: block;
  color: #f15701;
  font-weight: bold;
  text-align: right;
}
.contenido .galeria {
  border-bottom: solid 20px #f15701;
}
.contenido .galeria .wrap_galeria {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contenido .galeria .wrap_galeria .box_imagen {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  width: 25%;
}
.contenido .contacto {
  background: url(img/bg_contacto.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 0;
}
.contenido .contacto .wrap_general .wrap_contacto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
.contenido .contacto .wrap_general .wrap_contacto .col_uno {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.contenido .contacto .wrap_general .wrap_contacto .col_uno .area_texto p.tag {
  color: #f15701;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.contenido .contacto .wrap_general .wrap_contacto .col_uno .area_texto h2 {
  color: #303030;
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 10px;
}
.contenido .contacto .wrap_general .wrap_contacto .col_uno .area_texto .detalle {
  background: url(img/detalle.png);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 12px;
  width: 80px;
  margin-bottom: 40px;
}
.contenido .contacto .wrap_general .wrap_contacto .col_uno .area_texto .canales .item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
.contenido .contacto .wrap_general .wrap_contacto .col_uno .area_texto .canales .item .icono {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #f15701;
  font-size: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80px;
  width: 80px;
  margin-right: 10px;
}
.contenido .contacto .wrap_general .wrap_contacto .col_uno .area_texto .canales .item .info p.tag {
  font-size: 25px;
  line-height: 1em;
  margin: 0;
}
.contenido .contacto .wrap_general .wrap_contacto .col_uno .area_texto .canales .item .info a {
  color: #303030;
  font-size: 25px;
  font-weight: bold;
  line-height: 1em;
  margin: 0;
}
.contenido .contacto .wrap_general .wrap_contacto .col_uno .area_texto .canales .item .info a:hover {
  color: #777777;
}
.contenido .contacto .wrap_general .wrap_contacto .col_uno .area_texto .canales .item .info p.calle {
  color: #303030;
  font-size: 25px;
  font-weight: bold;
  line-height: 1em;
  margin: 0;
}

.footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: black;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 90px;
}
.footer p {
  color: white;
  margin: 0;
}

.descripcion_completa h3 {
  color: #303030;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
}
.descripcion_completa p {
  line-height: 1.2em;
}