/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
.pageAbout .banner{margin-top:-30px;height:300px;background-size:cover;position:relative;background-position:center}.pageAbout .banner .x-container{position:relative;top:50%;transform:translateY(-50%)}.pageAbout .banner .x-container h1{font-size:38px;line-height:40px;margin-bottom:10px}.pageAbout .presentation_flex{display:flex;justify-content:space-between}@media(max-width: 970px){.pageAbout .presentation_flex{display:block}}.pageAbout .presentation_flex__clo{width:calc(50% - 10px);flex:none}@media(max-width: 970px){.pageAbout .presentation_flex__clo{width:100%}}.pageAbout .presentation_flex__clo .content_presentation{padding:50px 0px}.pageAbout .presentation_flex__clo .content_presentation h2{font-size:25px;margin-bottom:20px;font-family:"poligon";border-bottom:solid 1px rgba(0,0,0,.1098039216);padding-bottom:10px}.pageAbout .presentation_flex__clo .content_presentation p{font-size:18px;margin-bottom:20px;line-height:26px}.pageAbout .presentation_flex__clo .content_presentation p a{color:#f048a5}.pageAbout .presentation_flex__clo .videoContentPresentation{background:#fff;padding:30px 30px;border-radius:10px;position:relative;top:-40px}.pageAbout .presentation_flex__clo .videoContentPresentation .video_presentation video{width:100%;object-fit:cover;height:300px;display:block}.pageAbout .presentation_flex__clo .videoContentPresentation .video_addlink{text-align:center;border-top:solid 1px rgba(0,0,0,.0901960784);margin-top:30px;padding-top:20px}.pageAbout .presentation_flex__clo .videoContentPresentation .video_addlink p{font-size:18px;margin-bottom:20px}.pageAbout .presentation_flex__clo .videoContentPresentation .video_addlink a{width:200px;margin:auto}.pageAbout .titleAbout p{display:inline-block;background:#9ed94c;color:#fff;padding:5px 15px;border-radius:15px}.pageAbout .titleAbout h2{font-size:28px;font-family:"poligon";margin-top:8px;border-bottom:solid 1px rgba(0,0,0,.1882352941);margin-bottom:10px;padding-bottom:10px}.pageAbout .presentation__prod{display:flex;flex-wrap:wrap;width:calc(100% + 20px)}@media(max-width: 970px){.pageAbout .presentation__prod{width:100%}}.pageAbout .presentation__prod__item{width:calc(33.3% - 20px);background:#fff;margin-right:20px;margin-bottom:20px;border-radius:12px}@media(max-width: 970px){.pageAbout .presentation__prod__item{width:100%}}.pageAbout .presentation__prod__item .contentImg{height:200px;display:flex;align-items:center;justify-content:center;overflow:hidden}.pageAbout .presentation__prod__item .contentImg img{display:block}.pageAbout .presentation__prod__item .contentDev{padding:10px 20px}.pageAbout .presentation__prod__item .contentDev h3{font-size:16px;font-family:"poligon";border-bottom:solid 1px rgba(0,0,0,.0901960784);padding-bottom:10px;margin-bottom:10px;font-weight:700}.pageAbout .presentation__prod__item .contentDev div{font-size:12px;line-height:19px}.pageAbout .presentation__prod__item .contentDev div .contentDev div a{color:#f048a5}.pageAbout .presentation__galeria{display:flex;flex-wrap:wrap;width:100%;border-radius:8px;box-sizing:border-box;overflow:hidden}.pageAbout .presentation__galeria__item{width:calc(20% - 20px);margin-right:20px;margin-bottom:20px}@media(max-width: 970px){.pageAbout .presentation__galeria__item{width:calc(50% - 20px)}}.pageAbout .presentation__galeria__item img{width:100%;display:block}.phoneContentSend{text-align:center;max-width:450px;width:100%;margin:auto;position:relative}.phoneContentSend h1{font-size:22px;margin-bottom:20px;color:#d32485}.phoneContentSend__background{max-width:450px;display:block;margin:auto}.phoneContentSend__background img{width:100%}.phoneContentSend__main{position:absolute;top:153px;width:100%;padding:0px 35px;box-sizing:border-box}.phoneContentSend__main__item h2{color:#fff;font-family:"poligon";margin-bottom:20px;margin-top:20px;text-align:left}.phoneContentSend__main__item .perucontent.active path{fill:#97e85c;cursor:pointer}.phoneContentSend__main__item .uniContent h3{color:#fff;text-align:left;font-size:18px;border-bottom:solid 1px hsla(0,0%,100%,.3215686275);margin-bottom:20px;text-transform:capitalize}.phoneContentSend__main__item .uniContent .distritItems ul{max-height:450px;overflow-x:hidden;overflow-y:scroll}.phoneContentSend__main__item .uniContent .distritItems ul::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.phoneContentSend__main__item .uniContent .distritItems ul li{position:relative;color:#fff;text-align:left;font-size:16px;padding-left:20px;margin-bottom:8px;cursor:pointer}.phoneContentSend__main__item .uniContent .distritItems ul li:before{content:"";position:absolute;width:12px;height:12px;border:solid 1px #fff;left:0;border-radius:50%;top:1px}.phoneContentSend__main__item #pekoAgentesSend{max-height:450px;overflow-x:hidden;overflow-y:scroll}.phoneContentSend__main__item #pekoAgentesSend::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.phoneContentSend__main__item #pekoAgentesSend .itemAgenteContent{margin-bottom:10px;background:#fff;padding:10px;margin-right:5px;border-radius:5px}.phoneContentSend__main__item #pekoAgentesSend .itemAgenteContent .itemAgente.fullImage{display:none}.phoneContentSend__main__item #pekoAgentesSend .itemAgenteContent .itemAgente.nombres{text-align:left;font-size:20px;font-weight:700}.phoneContentSend__main__item #pekoAgentesSend .itemAgenteContent .itemAgente.simpledata{text-align:left;font-size:14px;display:none}.phoneContentSend__main__item #pekoAgentesSend .itemAgenteContent .itemAgente.celularbtn{margin-top:10px}.phoneContentSend__main__item .btn{max-width:200px}@media(max-width: 768px){.phoneContentSend__main__item .desktopPresentation{display:none}}.phoneContentSend__main__item .MobilePresentation{display:none}@media(max-width: 768px){.phoneContentSend__main__item .MobilePresentation{display:block}}.singlebannerDefault{background-size:cover;position:relative;background-position:center}.singlebannerDefault .aboutBanner .homeslide{height:calc(100vh - 215px);background-size:cover;position:relative;background-position:center}@media(max-width: 768px){.singlebannerDefault .aboutBanner .homeslide{height:calc(100vh - 112px)}}.singlebannerDefault .aboutBanner .homeslide .isTitle{position:absolute;top:100px;width:100%;z-index:1}@media(max-width: 768px){.singlebannerDefault .aboutBanner .homeslide .isTitle{top:auto;bottom:0;background:#fff;padding-bottom:60px}.singlebannerDefault .aboutBanner .homeslide .isTitle:before{content:"";background-image:url(assets/background-clouds.c6177e35fe42e48efa7adeb331e88d86.svg);width:100%;position:absolute;height:100px;top:-25px;background-size:cover;background-repeat:no-repeat;background-position:bottom;z-index:-1;transform:rotate(180deg)}}.singlebannerDefault .aboutBanner .homeslide .isTitle span{font-size:36px;display:inline-block;text-align:center;border-radius:5px;margin-bottom:30px}@media(max-width: 768px){.singlebannerDefault .aboutBanner .homeslide .isTitle span{font-size:20px;line-height:22px;margin-bottom:10px}}.singlebannerDefault .aboutBanner .homeslide .isTitle h1,.singlebannerDefault .aboutBanner .homeslide .isTitle h2{color:#155c6b;font-size:42px;margin-bottom:10px;max-width:600px;line-height:44px}@media(max-width: 768px){.singlebannerDefault .aboutBanner .homeslide .isTitle h1,.singlebannerDefault .aboutBanner .homeslide .isTitle h2{color:#155c6b;font-size:25px;line-height:25px;margin-bottom:10px;margin-top:5px}}.singlebannerDefault .aboutBanner .homeslide .isTitle .btn{border:solid 2px #fff;font-size:18px;max-width:200px}.singlebannerDefault .inside_title{position:absolute;top:50%;transform:translateY(-50%);max-width:480px}@media(max-width: 768px){.singlebannerDefault .inside_title{transform:none;top:auto;bottom:0px;background:#fff;left:0px;padding:10px 20px;padding-bottom:20px;width:100%;z-index:100}.singlebannerDefault .inside_title:before{content:"";background:url(assets/background-clouds.c6177e35fe42e48efa7adeb331e88d86.svg);width:100%;height:100px;position:absolute;top:-56px;background-size:cover;background-repeat:repeat-x;background-position:0px -38px;left:0px;transform:rotate(180deg);z-index:-1}}.singlebannerDefault .inside_title h1{font-size:38px;line-height:40px;margin-bottom:10px}@media(max-width: 768px){.singlebannerDefault .inside_title h1{font-family:"poligon";font-size:28px;line-height:30px}}.singlebannerDefault .inside_title p{font-size:29px;line-height:32px}@media(max-width: 768px){.singlebannerDefault .inside_title p{font-size:23px;line-height:24px}}.singlebannerDefault .inside_title a{display:block;max-width:240px;font-size:18px;margin-top:30px}.singleBreadcrumb{position:relative;display:flex;align-items:center;margin-bottom:10px}.singleBreadcrumb:before{content:"";background-image:url(assets/Bullet_de_h2-01.25af2a715064f0de84ca23e4c32ceda8.svg);width:13px;height:20px;display:inline-block;background-size:cover}.singleBreadcrumb ul{display:flex;margin-left:5px}.singleBreadcrumb ul a.homelink{color:#d32485}.singleBreadcrumb ul li.separador{margin:0px 5px}.SingleDescription{position:relative;margin-bottom:30px;border-radius:8px}.SingleDescription p{color:#484c51;font-size:16px;line-height:22px;margin-bottom:10px}.singleItemInformation__item{display:flex;align-items:center;margin-bottom:20px}.singleItemInformation__item img{width:60px !important;height:60px;margin-right:20px}.singleItemInformation__item div p{display:inline}.singleItemInformation__item div a.btnVideo{background:#d21f82;width:16px;height:16px;border-radius:50%;display:inline-block;vertical-align:middle;margin-left:5px;position:relative}.singleItemInformation__item div a.btnVideo i{position:absolute;width:0;height:0;border-style:solid;border-width:4px 0 4px 7px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #fff;top:4px;left:5px}.banner{margin-top:-30px;height:300px;background-size:cover;position:relative;background-position:center}.banner .x-container{position:relative;top:50%;transform:translateY(-50%)}.banner .x-container h1{font-size:38px;line-height:40px;margin-bottom:10px}.pageDefault{padding:30px 0px}.pageDefault h2{font-size:22px;font-family:"poligon";border-bottom:solid 1px rgba(0,0,0,.1803921569);padding-bottom:10px;margin-bottom:10px}.pageDefault h3{font-size:18px;font-family:"poligon";border-bottom:solid 1px rgba(0,0,0,.1803921569);padding-bottom:10px;margin-bottom:10px}.pageDefault a{color:#d32485}.pageDefault p{font-size:16px;line-height:22px;margin-bottom:20px}.pageDefault img{width:100%;display:block;margin-bottom:20px}.pageDefault .btn{color:#fff;max-width:200px}.pageDefault iframe{width:100%;min-height:650px;border-radius:15px}@media(max-width: 970px){.pageDefault iframe{min-height:350px}}.pageDefault .multiForm{background:#fff;padding:20px 30px;border-radius:10px;display:flex;justify-content:space-between;flex-wrap:wrap;margin-bottom:40px}.pageDefault .multiForm__input{width:calc(50% - 10px);justify-content:space-between;margin-bottom:20px}@media(max-width: 768px){.pageDefault .multiForm__input{width:100%}}.pageDefault .multiForm__input.fullMulti{width:100%}.pageDefault .multiForm__input label{display:block;font-size:20px;color:#d32485;font-weight:700;margin-bottom:7px}.pageDefault .multiForm__input input{width:100%;box-sizing:border-box;padding:10px;border:solid 1px #dcdcdc;border-radius:5px;font-size:18px}.pageDefault .multiForm__submit .btn{font-size:18px;min-width:300px}.pageDefault .flexNotMobile{display:flex;width:100%;justify-content:space-between;margin:20px 0px}.pageDefault .flexNotMobile .left,.pageDefault .flexNotMobile .right{width:calc(50% - 40px)}.pageDefault .flexNotMobile .left iframe,.pageDefault .flexNotMobile .right iframe{min-height:350px}.pageDefault .flexNotMobile .left ul,.pageDefault .flexNotMobile .right ul{margin-bottom:20px}.pageDefault .flexNotMobile .left ul.socialInside,.pageDefault .flexNotMobile .right ul.socialInside{display:flex}.pageDefault .flexNotMobile .left ul.socialInside a,.pageDefault .flexNotMobile .right ul.socialInside a{display:block;margin-right:7px}.pageDefault .flexNotMobile .left ul.socialInside a img,.pageDefault .flexNotMobile .right ul.socialInside a img{width:35px}.pageDefault .flexNotMobile .left li,.pageDefault .flexNotMobile .right li{margin-bottom:10px}.pageDefault{padding-top:20px;margin-top:-40px}.pageDefault .banner{width:100%;display:flex;justify-content:center;height:180px;align-items:center;margin-top:5px;position:relative;z-index:1;background:#9ed94c}@media(max-width: 970px){.pageDefault .banner{height:100px;padding-top:10px}}.pageDefault .banner h1{color:#fff;font-size:45px}@media(max-width: 970px){.pageDefault .banner h1{font-size:25px;text-align:center}}.pageDefault .singleContentDefault{display:flex;justify-content:space-between}@media(max-width: 970px){.pageDefault .singleContentDefault{flex-direction:column-reverse}}.pageDefault .singleContentDefault .single-title h1{font-size:25px;margin-bottom:20px;line-height:25px}.pageDefault .singleContentDefault .single-title .single-tag a{background:#97e85c;padding:4px 12px;font-size:15px;color:#fff;border-radius:8px;margin-bottom:10px;display:block;max-width:140px;text-align:center}.pageDefault .singleContentDefault__lateral{width:320px;flex:none;padding-right:40px;margin-right:40px;position:relative}.pageDefault .singleContentDefault__lateral__static{position:sticky;top:30px}.pageDefault .singleContentDefault__lateral .smashTitle{font-weight:700;font-size:20px;border-bottom:solid 1px rgba(98,113,107,.1803921569);padding-bottom:10px;margin-bottom:20px}@media(max-width: 970px){.pageDefault .singleContentDefault__lateral{width:100%;padding:0px;margin:0px}.pageDefault .singleContentDefault__lateral:before{display:none}.pageDefault .singleContentDefault__lateral__static{top:0px;position:relative}}.pageDefault .singleContentDefault__content{width:calc(100% - 400px);flex:none}@media(max-width: 970px){.pageDefault .singleContentDefault__content{width:100%;margin-top:20px}}.pageDefault .singleContentDefault__content .x-swiper-full img{height:380px;object-fit:cover;width:100%;display:block}.pageDefault .singleContentDefault__content .x-products__max_content{margin-bottom:30px}.pageDefault .singleContentDefault__content .x-products__max_content .classTitleH3{margin-bottom:20px;background:#f0ffdb;display:flex;border-radius:15px;padding:20px 40px;position:relative;overflow:hidden;justify-content:space-between;align-items:center}@media(max-width: 970px){.pageDefault .singleContentDefault__content .x-products__max_content .classTitleH3{display:block}}.pageDefault .singleContentDefault__content .x-products__max_content .classTitleH3 h3{font-family:"poligon";font-size:36px;margin-right:20px;color:#9ed94c;border-bottom:none;margin-bottom:0px;padding-bottom:0px}@media(max-width: 970px){.pageDefault .singleContentDefault__content .x-products__max_content .classTitleH3 h3{font-size:22px}}.pageDefault .singleContentDefault__content .x-products__max_content .classTitleH3 h3:before{content:"";position:absolute;width:50px;height:50px;background:#9ed94c;border-radius:50%;left:-25px;top:50%;margin-top:-25px}.pageDefault .singleContentDefault__content .x-products__max_content .classTitleH3 h3:after{content:"";position:absolute;width:50px;height:50px;background:#9ed94c;border-radius:50%;right:-25px;top:50%;margin-top:-25px}.pageDefault .singleContentDefault__content .x-products__max_content .classTitleH3 p{font-size:14px;max-width:600px;margin-bottom:0px}.pageDefault .singleContentDefault__content .x-products__content{display:flex;align-items:center;flex-wrap:wrap;width:calc(100% + 20px)}@media(max-width: 768px){.pageDefault .singleContentDefault__content .x-products__content{width:100%}}.pageDefault .singleContentDefault__content .x-products__content .x-products__item{width:calc(33.33% - 20px);margin-right:20px;overflow:hidden;border-radius:15px;background:#fff;margin-bottom:20px}@media(max-width: 1200px){.pageDefault .singleContentDefault__content .x-products__content .x-products__item{width:calc(50% - 20px)}}@media(max-width: 768px){.pageDefault .singleContentDefault__content .x-products__content .x-products__item{width:100%;margin-right:0px}}.pageDefault .singleContentDefault__content .x-products__content .x-products__item img{display:block;width:100%}.pageDefault .singleContentDefault__content .x-products__content .x-products__item .content{padding:15px 10px}.pageDefault .singleContentDefault__content .x-products__content .x-products__item .content h3{font-family:"poligon";font-size:22px;border-bottom:none;padding-bottom:0px;margin-bottom:0px}.pageDefault .singleContentDefault__content .x-form__thisP{background:#bae3e8;width:calc(100% - 40px);padding:10px 20px;margin-top:40px;left:20px;position:relative;border-radius:10px;min-height:20px;display:none}.pageDefault .singleContentDefault__content .x-form__thisP ul{opacity:0;transition:.3s;transition-delay:.8s;display:flex}.pageDefault .singleContentDefault__content .x-form__thisP ul li{border-right:solid 1px #80bdca;padding-right:20px;margin-right:20px}.pageDefault .singleContentDefault__content .x-form__thisP ul li:last-child{border:none}.pageDefault .singleContentDefault__content .x-form__thisP.active{display:block}.pageDefault .singleContentDefault__content .x-form__thisP.active ul{opacity:1}.pageDefault .singleContentDefault__content .x-form__breadcrumb{position:relative;margin-bottom:20px}.pageDefault .singleContentDefault__content .x-form__breadcrumb ul{display:flex;justify-content:space-between}@media(max-width: 970px){.pageDefault .singleContentDefault__content .x-form__breadcrumb ul{display:block}}.pageDefault .singleContentDefault__content .x-form__breadcrumb ul li{width:33.33%;text-align:center;font-size:14px;font-weight:700;padding:0px 10px}@media(max-width: 970px){.pageDefault .singleContentDefault__content .x-form__breadcrumb ul li{width:100%;box-sizing:border-box;margin:10px 0px;padding:10px}}.pageDefault .singleContentDefault__content .x-form__breadcrumb ul li.active{color:#fff;font-weight:400}@media(max-width: 970px){.pageDefault .singleContentDefault__content .x-form__breadcrumb ul li.active{color:#fff;font-weight:400;background:#d32485;border-radius:8px}}.pageDefault .singleContentDefault__content .x-form__breadcrumb .breadcrumb__ajax{position:absolute;width:calc(33.33% - 20px);height:46px;z-index:-1;top:-15px;transition:.3s;left:10px;border:solid 2px #f382ba;background:#f8bbda;border-radius:12px}.pageDefault .singleContentDefault__content .x-form__breadcrumb .breadcrumb__ajax.step1{transform:translateX(calc(100% + 20px))}.pageDefault .singleContentDefault__content .x-form__breadcrumb .breadcrumb__ajax.step2{transform:translateX(calc(200% + 40px))}@media(max-width: 970px){.pageDefault .singleContentDefault__content .x-form__breadcrumb .breadcrumb__ajax{display:none}}.pageDefault .singleContentDefault__content .x-form__thisform{display:flex;overflow:hidden;margin-top:40px}.pageDefault .singleContentDefault__content .x-form__thisform article{width:100%;flex:none;transition:.3s}.pageDefault .singleContentDefault__content .x-form__thisform article .contentformsteps__flex{display:flex;align-items:center;flex-wrap:wrap}.pageDefault .singleContentDefault__content .x-form__thisform article .contentformsteps__item{width:calc(33.33% - 20px);flex:none;z-index:1;height:100%;font-size:18px;font-family:"picaflor";line-height:32px;color:#d32485;position:relative;display:inline-block;background:#fff;border-radius:8px;margin-right:20px;margin-bottom:20px}@media(max-width: 970px){.pageDefault .singleContentDefault__content .x-form__thisform article .contentformsteps__item{width:100%}}.pageDefault .singleContentDefault__content .x-form__thisform article .contentformsteps__item img{display:block;width:100%}.pageDefault .singleContentDefault__content .x-form__thisform article .contentformsteps__item h3{font-family:"poligon";font-size:20px;font-weight:600;color:#252729;margin-bottom:5px;transition:.3s;padding:10px 15px}.pageDefault .content .woocommerce{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap}@media(max-width: 1200px){.pageDefault .content .woocommerce{display:block}}.pageDefault .content .woocommerce .woocommerce-notices-wrapper{width:100%;flex:none}.pageDefault .content .woocommerce .woocommerce-cart-form{width:calc(70% - 10px)}@media(max-width: 1200px){.pageDefault .content .woocommerce .woocommerce-cart-form{width:100%}}.pageDefault .content .woocommerce .cart-collaterals{width:calc(30% - 10px) !important;flex:none;background:#fff;padding:20px;box-sizing:border-box;border-radius:8px;position:sticky;top:5px}@media(max-width: 1200px){.pageDefault .content .woocommerce .cart-collaterals{width:100% !important}}.pageDefault .content .woocommerce .shop_table{border:none !important;background:#fff;border-radius:8px !important;overflow:hidden}.pageDefault .content .woocommerce .shop_table th{background:#9ed94c;color:#fff}.pageDefault .content .woocommerce .shop_table td.actions{background:#fff !important}.pageDefault .content .woocommerce .shop_table td.actions #coupon_code{margin-right:10px !important;border-radius:5px}.pageDefault .content .woocommerce .shop_table .product-thumbnail{width:300px !important;display:block !important;text-align:center !important}.pageDefault .content .woocommerce .shop_table .product-thumbnail:before{display:none}.pageDefault .content .woocommerce .shop_table .product-thumbnail img{width:300px !important;display:block;margin:auto}.singleDefault{margin-top:0px;padding-top:20px;padding-bottom:20px}.content{padding:50px 0px}@media(max-width: 970px){.content{padding:20px 0px}}.valoration{display:flex;align-items:center;margin:10px 0px}.valoration .valoration_starts{display:flex;margin-right:10px;align-items:center}.valoration .valoration_starts .start{width:20px;height:23px;display:block;color:#ffb700;font-size:18px}.valoration .valoration_starts .start:before{font-family:WooCommerce;content:""}.valoration .valoration_starts .start.active:before{content:""}section.related{background:url(assets/background-related.6d7a6a6133db39394aabfbfbe5978171.png);position:relative;margin-top:20px;margin-bottom:-20px;padding-bottom:50px;padding-top:40px}section.related h2{color:#9ed94c;font-size:48px;font-family:"picaflor";font-weight:600;text-align:center;margin-bottom:10px;margin-top:20px}@media(max-width: 970px){section.related h2{margin-bottom:20px;margin-top:10px;font-size:24px}}section.related .subtitle{text-align:center;font-size:18px;margin-bottom:40px}section.related .relatedProducts .swiper-button-prev{background:none;left:0px;width:40px;height:40px}section.related .relatedProducts .swiper-button-prev svg{width:40px;height:40px}@media(max-width: 1200px){section.related .relatedProducts .swiper-button-prev{display:none}}section.related .relatedProducts .swiper-button-next{background:none;right:0px;width:40px;height:40px}section.related .relatedProducts .swiper-button-next svg{width:40px;height:40px}@media(max-width: 1200px){section.related .relatedProducts .swiper-button-next{display:none}}section.related .relatedProducts .swiper-wrapper{max-width:calc(100% - 100px);margin:auto}@media(max-width: 1200px){section.related .relatedProducts .swiper-wrapper{max-width:100%}}section.related .relatedProducts .swiper-slide{width:calc(25% - 24px);margin-right:24px}@media(max-width: 1200px){section.related .relatedProducts .swiper-slide{width:calc(33.33% - 30px);margin-right:30px}}@media(max-width: 970px){section.related .relatedProducts .swiper-slide{width:calc(50% - 20px);margin-right:20px}}@media(max-width: 550px){section.related .relatedProducts .swiper-slide{width:100%;margin-right:0px}}section.related .background1{position:absolute;left:0px;top:-100px;overflow:hidden;pointer-events:none}@media(max-width: 970px){section.related .background1{display:none}}section.related .background1 svg{width:102px;height:197px}section.related .background2{position:absolute;right:0px;bottom:0px;overflow:hidden;pointer-events:none}section.related .background2 svg{width:138px;height:179px}.woocommerce-cart-form .cart td.product-thumbnail{width:320px}.woocommerce-cart-form .cart td.product-thumbnail img{width:320px}.woocommerce-cart-form .cart td.product-thumbnail .bro img{display:block}.woocommerce-cart-form .cart td.product-thumbnail .bro h3{color:#fff;font-size:12px}.woocommerce-cart-form .cart td.product-thumbnail .bro{background:#1a7689;margin-bottom:5px;padding:10px;border-radius:10px;border-bottom:solid 3px #124c59}.woocommerce-cart-form .cart .product-name{width:200px}.woocommerce-cart-form .cart .product-name .contentHermanos h5{margin:0px;font-size:18px;color:#124c59}.woocommerce-cart-form .cart .product-name .contentHermanos .divisor{width:100%;display:block;height:1px;border-top:dashed 1px rgba(0,0,0,.3019607843);margin:20px 0px}.woocommerce-cart-form .cart .product-name__top a{font-size:18px;position:relative;font-weight:700;color:#252729;display:inline-block;border-bottom:solid 1px #c9eeee;padding-bottom:5px;margin-bottom:15px;font-family:"poligon"}.woocommerce-cart-form .cart .product-name__bot div{display:flex;align-items:center;flex-wrap:wrap}.woocommerce-cart-form .cart .product-name__bot div .label{width:82px;font-size:14px;line-height:16px;font-weight:700;text-align:left}.woocommerce-cart-form .cart .product-name__bot div .data{font-size:14px;text-transform:capitalize}.woocommerce-cart-form .cart .product-price .amount{font-size:22px;font-family:"poligon";font-weight:700}.woocommerce-cart-form .cart .product-quantity .spinner{width:117px}@media(max-width: 970px){.woocommerce-cart-form .cart .product-quantity .spinner{margin-left:auto}}.woocommerce-cart-form .cart .product-quantity .spinner .minus,.woocommerce-cart-form .cart .product-quantity .spinner .plus{width:45px;font-size:30px;line-height:40px}.woocommerce-cart-form .cart .product-quantity .spinner .quantity{display:flex}.woocommerce-cart-form .cart .product-quantity .spinner input[type=number]{width:27px;font-size:17px;-moz-appearance:textfield}.woocommerce-cart-form .cart .product-quantity .spinner input::-webkit-outer-spin-button,.woocommerce-cart-form .cart .product-quantity .spinner input::-webkit-inner-spin-button{-webkit-appearance:none}.woocommerce-cart-form .cart .product-remove a{width:30px;height:30px;background:#ffebf5;margin-right:0px !important;border-radius:8px;display:flex;align-items:center;justify-content:center}.woocommerce-cart-form .cart .product-remove a svg{width:24px;height:24px}.woocommerce-cart-form .cart .product-remove a svg path{fill:#f048a5}.woocommerce-cart-form .cart .product-subtotal .amount{font-size:30px;font-family:"poligon";font-weight:700;color:#f048a5}.woocommerce-cart-form .cart td.product-remove a.remove{width:100%;display:block;margin:auto;color:#000 !important}.woocommerce-cart-form .cart td.actions .coupon{display:flex}.woocommerce-cart-form .cart td.actions .coupon input{width:200px !important;display:block;margin-right:0px !important}@media(max-width: 768px){.woocommerce-cart-form .cart td.actions .coupon input{width:150px !important}}.woocommerce-cart-form .cart td.actions button.btn[type=submit]{float:right !important;display:inline-block !important;width:200px}.cart_totals_full h2{font-size:22px;font-family:"poligon";font-weight:500;margin-bottom:10px}.cart_totals_full .wc-proceed-to-checkout a{max-width:200px;display:inline-block !important;margin-bottom:0px !important}.woocommerce-checkout h3{font-family:"Poppins";font-size:27px;font-weight:500;margin-bottom:8px}.woocommerce-checkout label{font-size:14px;font-weight:400}.woocommerce-checkout input{font-size:16px;border:solid 1px #ddd;padding:15px 5px}.woocommerce-checkout textarea{font-size:16px;border:solid 1px #ddd;padding:15px 5px}.woocommerce-billing-fields__field-wrapper{display:flex;flex-wrap:wrap}.woocommerce-billing-fields__field-wrapper .optional{display:none}.woocommerce-billing-fields__field-wrapper #billing_first_name_field,.woocommerce-billing-fields__field-wrapper #billing_razon_social_field,.woocommerce-billing-fields__field-wrapper #billing_email_field{width:calc(50% - 20px);margin-right:20px}.woocommerce-billing-fields__field-wrapper #billing_last_name_field,.woocommerce-billing-fields__field-wrapper #billing_phone_field,.woocommerce-billing-fields__field-wrapper #billing_dni_field{width:calc(50% - 20px)}.woocommerce-billing-fields__field-wrapper #billing_heading_tipo_field{width:100%;order:6 !important;margin-top:20px}.woocommerce-billing-fields__field-wrapper #billing_heading_description_field{order:7 !important;width:100%;margin-bottom:20px}.woocommerce-billing-fields__field-wrapper #billing_heading_description_field h5{margin:0px;font-size:14px;font-family:"Open Sans";font-weight:400}.woocommerce-billing-fields__field-wrapper #billing_address_2_field,.woocommerce-billing-fields__field-wrapper #billing_who_dep_field,.woocommerce-billing-fields__field-wrapper #billing_country_field{display:none !important}.woocommerce-billing-fields__field-wrapper #billing_tipo_envio_field{order:8 !important;width:100%}.woocommerce-billing-fields__field-wrapper #billing_tipo_envio_field label{display:none}.woocommerce-billing-fields__field-wrapper #billing_tipo_envio_field .woocommerce-input-wrapper{display:flex;position:relative;justify-content:space-between}.woocommerce-billing-fields__field-wrapper #billing_tipo_envio_field .woocommerce-input-wrapper label{display:block;border:solid 1px #ddd;text-align:center;width:calc(50% - 20px);padding:30px;box-sizing:border-box;font-size:12px}.woocommerce-billing-fields__field-wrapper #billing_tipo_envio_field .woocommerce-input-wrapper label svg{display:block;height:22px;width:20px;margin:auto}.woocommerce-billing-fields__field-wrapper #billing_tipo_envio_field .woocommerce-input-wrapper label.checkedInput{border-color:#d32485}.woocommerce-billing-fields__field-wrapper #billing_tipo_envio_field .woocommerce-input-wrapper input{position:absolute;opacity:0}.woocommerce-billing-fields__field-wrapper #billing_heading_title_ingresadatos_field{order:9 !important;width:100%}.woocommerce-billing-fields__field-wrapper #billing_heading_title_ingresadatos_field h3{font-size:14px;margin-bottom:0px}.woocommerce-billing-fields__field-wrapper #billing_departamento_field{order:10 !important;width:calc(50% - 20px);margin-right:20px}.woocommerce-billing-fields__field-wrapper #billing_provincia_field{order:11 !important;width:calc(50% - 20px)}.woocommerce-billing-fields__field-wrapper #billing_distrito_field{order:12 !important;width:calc(50% - 20px)}.woocommerce-billing-fields__field-wrapper #billing_address_1_field{order:13 !important;width:100%}.woocommerce-billing-fields__field-wrapper #billing_numero_address_field,.woocommerce-billing-fields__field-wrapper #billing_interior_address_field,.woocommerce-billing-fields__field-wrapper #billing_recojo_fecha_field,.woocommerce-billing-fields__field-wrapper #billing_who_nombre_field,.woocommerce-billing-fields__field-wrapper #billing_who_razon_field,.woocommerce-billing-fields__field-wrapper #billing_who_telefono_field{width:calc(50% - 20px);margin-right:20px}.woocommerce-billing-fields__field-wrapper #billing_piso_address_field,.woocommerce-billing-fields__field-wrapper #billing_referencia_address_field,.woocommerce-billing-fields__field-wrapper #billing_recojo_hora_field,.woocommerce-billing-fields__field-wrapper #billing_who_apellido_field,.woocommerce-billing-fields__field-wrapper #billing_who_correo_field,.woocommerce-billing-fields__field-wrapper #billing_who_dni_field{width:calc(50% - 20px)}.woocommerce-billing-fields__field-wrapper #billing_recojo_hora_field .woocommerce-input-wrapper{width:100%;display:block}.woocommerce-billing-fields__field-wrapper #billing_recojo_hora_field .woocommerce-input-wrapper .select2-container{width:100% !important}.woocommerce-billing-fields__field-wrapper #billing_recojo_title_field h3{font-size:14px;margin-bottom:0px}.woocommerce-billing-fields__field-wrapper #billing_locales_recojo_field,.woocommerce-billing-fields__field-wrapper #billing_who_title_field{width:100%}.woocommerce-billing-fields__field-wrapper #billing_who_title_field{margin-top:30px}.woocommerce-billing-fields__field-wrapper #billing_boleta_factura_field{width:100%}.woocommerce-billing-fields__field-wrapper #billing_boleta_factura_field .woocommerce-input-wrapper{display:flex;align-items:center}.woocommerce-billing-fields__field-wrapper #billing_boleta_factura_field .woocommerce-input-wrapper input{margin:0px;margin-right:5px}.woocommerce-billing-fields__field-wrapper #billing_boleta_factura_field{text-transform:capitalize}.woocommerce-billing-fields__field-wrapper #billing_who_tipo_field{width:100%}.woocommerce-billing-fields__field-wrapper #billing_who_tipo_field .woocommerce-input-wrapper{display:flex;align-items:center}.woocommerce-billing-fields__field-wrapper #billing_who_tipo_field .woocommerce-input-wrapper input{margin:0px;margin-right:5px}.woocommerce-billing-fields__field-wrapper #billing_locales_recojo_field{display:none !important}.woocommerce-billing-fields__field-wrapper #billing_seleccionar_boleta_factura_field{display:block;width:100%}.woocommerce-billing-fields__field-wrapper .newLocalesPosible{order:23;width:100%;margin:20px 0px}.woocommerce-billing-fields__field-wrapper .newLocalesPosible p{font-weight:400}.woocommerce-billing-fields__field-wrapper .newLocalesPosible .selectDirectionNew{border:solid 1px #000;width:10px;height:10px;display:inline-block;border-radius:50%;position:relative;top:1px;margin-right:5px;cursor:pointer}.woocommerce-billing-fields__field-wrapper .newLocalesPosible .selectDirectionNew.active{background:#d32485}.woocommerce-billing-fields__field-wrapper .newLocalesPosible ul{margin:10px 0px}.woocommerce-billing-fields__field-wrapper .newLocalesPosible ul li{display:flex;margin-bottom:10px;font-weight:400}.woocommerce-billing-fields__field-wrapper .newLocalesPosible ul li span{font-weight:700;margin-right:10px}.woocommerce-billing-fields__field-wrapper .newDirectionPosible{width:100%;order:9;margin:20px 0px}.woocommerce-billing-fields__field-wrapper .newDirectionPosible p{font-weight:400}.woocommerce-billing-fields__field-wrapper .newDirectionPosible .selectDirection{border:solid 1px #000;width:10px;height:10px;display:inline-block;border-radius:50%;position:relative;top:1px;margin-right:5px;cursor:pointer}.woocommerce-billing-fields__field-wrapper .newDirectionPosible .selectDirection.active{background:#d32485}.woocommerce-billing-fields__field-wrapper .newDirectionPosible ul{margin:10px 0px}.woocommerce-billing-fields__field-wrapper .newDirectionPosible ul li{display:flex;justify-content:space-between;margin-bottom:10px}.woocommerce-billing-fields__field-wrapper .newDirectionPosible ul li span{font-weight:400;max-width:calc(100% - 120px)}.woocommerce-billing-fields__field-wrapper .newDirectionPosible ul li div .editDirection{font-size:14px;margin-right:20px}.woocommerce-billing-fields__field-wrapper .newDirectionPosible ul li div .deleteDirection{font-size:14px;color:#d32485}.woocommerce-billing-fields__field-wrapper .newDirectionPosible .btnNewDirection{max-width:200px}.woocommerce-billing-fields__field-wrapper .widthButton{width:100%;order:22;margin-top:15px;margin-left:5px}.woocommerce-billing-fields__field-wrapper .widthButton .btn{width:200px}.woocommerce-checkout #payment{background:rgba(0,0,0,0) !important}.woocommerce-checkout #payment h2,.woocommerce-checkout #payment h3{font-family:"Poppins";font-size:27px;font-weight:500;margin-bottom:8px}.woocommerce-checkout #payment .payment_methods{border-bottom:none !important;padding:15px 0px !important}.woocommerce-checkout #payment .form-row{padding:0px !important}.woocommerce-checkout #payment .form-row .woocommerce-privacy-policy-text{display:none}.woocommerce-checkout #payment .form-row .woocommerce-terms-and-conditions-checkbox-text a{color:#fbb71c}.woocommerce-checkout #payment .form-row button#place_order{max-width:250px;float:left !important;margin-top:20px}.woocommerce-order-flex{display:flex;justify-content:space-between}@media(max-width: 768px){.woocommerce-order-flex{display:block}}.woocommerce-order-flex__left{width:calc(50% - 20px);flex:none}@media(max-width: 768px){.woocommerce-order-flex__left{width:100%}}.woocommerce-order-flex__left .order-content .descriptionPaymenth{padding:25px 0px}.woocommerce-order-flex__left .order-content .descriptionPaymenth h2{font-size:26px;margin-bottom:8px}.woocommerce-order-flex__left .order-content .descriptionPaymenth p{font-size:15px;margin-bottom:40px;font-weight:400}.woocommerce-order-flex__left .order-content .descriptionPaymenth a{max-width:200px;display:block}.woocommerce-order-flex__left .thanksMethod h2{font-size:26px;margin-bottom:8px}.woocommerce-order-flex__left .thanksMethod p{font-weight:400;font-size:15px;line-height:22px;margin-bottom:20px}.woocommerce-order-flex__left .thanksMethod h2.wc-bacs-bank-details-heading{display:none}.woocommerce-order-flex__left .thanksMethod h3.wc-bacs-bank-details-account-name{font-size:20px}.woocommerce-order-flex__right{width:calc(50% - 20px);flex:none}@media(max-width: 768px){.woocommerce-order-flex__right{width:100%}}.woocommerce-order-flex__right .details{border:solid 1px #ddd;padding:25px 35px}.woocommerce-order-flex__right .details h2.woocommerce-order-details__title{font-size:26px;margin-bottom:8px}.woocommerce-order-flex__right .details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details{margin:0px;border:none}.woocommerce-order-flex__right .details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details th{padding:10px 0px}.woocommerce-order-flex__right .details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td{padding:10px 0px}.woocommerce-order-flex__right .details .woocommerce-table--custom-fields{display:none !important}.woocommerce-order-flex__right .details .woocommerce-customer-details{display:none}.woocommerce-order-flex__right .details tbody{font-weight:400}.woocommerce-order-flex__right .details tbody td.woocommerce-table__product-name.product-name img{max-width:120px}.woocommerce-order-flex__right .details tbody td.woocommerce-table__product-total.product-total .product{font-size:20px;font-weight:700;margin-bottom:20px;line-height:24px}@media(max-width: 768px){.woocommerce-order-flex__right .details tbody td.woocommerce-table__product-total.product-total .product{font-size:14px}}.woocommerce-order-flex__right .details tbody td.woocommerce-table__product-total.product-total .price{font-size:20px;font-weight:700}.woocommerce-cart tr.woocommerce-shipping-totals.shipping{display:none !important}.select2-container--default .select2-selection--single{height:auto !important;padding:10px 0px !important;border:1px solid #ddd !important;border-radius:0px !important}.select2-container--default .select2-selection--single .select2-selection__arrow{height:100% !important}.thanksMethod .button-shop-product{margin-top:20px;background:#d32485;color:#fff;border:none;width:200px;font-family:"Open Sans";border-radius:4px}#customer_login{max-width:570px;display:flex;margin:auto;overflow:hidden}#customer_login .col-item{width:100% !important;transition:.3s;flex:none}#customer_login .col-item h2{font-size:27px;margin-bottom:20px;font-family:"Poppins";font-weight:500}#customer_login .col-item form{border:none !important;padding:0px !important;margin:0px !important}#customer_login .col-item .woocommerce-form-row input{width:100%;border:solid 1px #ddd;font-family:"Open Sans";font-size:18px;padding:12px 0px}#customer_login .col-item .woocommerce-form-row label{font-size:14px}#customer_login .col-item .woocommerce-privacy-policy-text{font-size:15px;margin-bottom:10px;margin-top:20px}#customer_login .col-item .woocommerce-button{max-width:250px;margin-bottom:30px}#customer_login .col-item p.aditionalRow a{font-weight:700}#customer_login .col-item p.aditionalRow{font-size:15px}#customer_login .col-item .flexInside{display:flex;justify-content:space-between;margin:15px 0px}#customer_login .col-item .flexInside label{font-size:15px}#customer_login .col-item .flexInside p{font-size:15px;font-weight:700}#customer_login .col-item .mo-openid-app-icons{display:flex;align-items:stretch;justify-content:space-between}#customer_login .col-item .mo-openid-app-icons p{display:none}#customer_login .col-item .mo-openid-app-icons a{margin:0px !important;width:42%;flex:none;text-align:center;display:flex;justify-content:center;height:25px;align-items:center;font-size:14px}#customer_login .col-item .mo-openid-app-icons a:last-child{background-color:#3988f2}.contentContact{position:relative}.contentContact:before{content:"";width:50%;height:100%;position:absolute;background:#f7f7f7;left:0px;top:0px;z-index:-1}@media(max-width: 768px){.contentContact:before{width:100%}}.iframe iframe{display:block}.contactoFlex{display:flex;justify-content:space-between;align-items:center}@media(max-width: 768px){.contactoFlex{display:block}}.contactoFlex__left{width:calc(50% - 30px)}@media(max-width: 768px){.contactoFlex__left{width:100%;margin-bottom:10px}}.contactoFlex__left .contactoItem{display:flex;align-items:center;margin-top:40px;margin-bottom:40px}@media(max-width: 768px){.contactoFlex__left .contactoItem{margin-top:20px;margin-bottom:20px}}.contactoFlex__left .contactoItem__img{width:55px;height:55px;display:flex;align-items:center;background:#d32485;justify-content:center;border-radius:7px;margin-right:25px}.contactoFlex__left .contactoItem__img img{display:block;width:24px}.contactoFlex__left .contactoItem__content h3{font-size:18px;font-family:"Poppins";font-weight:500}.contactoFlex__left .contactoItem__content p{font-size:15px;font-weight:400}.contactoFlex__right{width:calc(50% - 30px)}@media(max-width: 768px){.contactoFlex__right{width:100%;margin-bottom:10px}}.contactoFlex__right h3{font-size:27px;font-family:"Poppins";margin-bottom:20px;font-weight:500}.contactoFlex__right .contact br{display:none}.contactoFlex__right .contact .contact_input{margin-bottom:20px}.contactoFlex__right .contact .contact_input label{font-size:14px;display:block;margin-bottom:5px}.contactoFlex__right .contact .contact_input input,.contactoFlex__right .contact .contact_input textarea{border:solid 1px #ddd;font-size:16px;font-family:"Open Sans";box-sizing:border-box;width:100%;padding:13px 0px}.contactoFlex__right .contact .contact_input textarea{resize:none;height:120px}.contactoFlex__right .contact .contact_input_btn button{max-width:200px;text-transform:uppercase;padding:14px}.contactoFlex__right .contact .contact_flex{display:flex;justify-content:space-between}.contactoFlex__right .contact .contact_flex .contact_input{width:calc(50% - 20px)}.aboutFlex{display:flex;justify-content:space-between;align-items:center}@media(max-width: 768px){.aboutFlex{display:block}}.aboutFlex__left{width:calc(50% - 20px);flex:none}@media(max-width: 768px){.aboutFlex__left{width:100%;margin-bottom:20px}}.aboutFlex__left img{display:block;width:100%}.aboutFlex__right{width:calc(50% - 20px);flex:none}@media(max-width: 768px){.aboutFlex__right{width:100%}}.aboutFlex__right h3{font-size:27px;font-family:"Poppins";margin-bottom:20px;font-weight:500}.aboutFlex__right p{font-size:15px}.aboutFlex__right ul{margin-top:15px}.aboutFlex__right ul li{position:relative;margin-bottom:25px;padding-left:40px}.aboutFlex__right ul li:before{content:"";background-image:url(assets/arrow_red.736d301eae6fe301c6935c53eaaf8016.svg);width:25px;height:25px;position:absolute;top:0px;left:0px}.aboutFlex__right ul li h4{font-family:"Open Sans";font-size:15px}.aboutFlex__right ul li p{font-size:14px}.about_valores{background:#f7f7f7;padding:70px 0px}.about_valores .valoresItems{display:flex;justify-content:space-between}@media(max-width: 1200px){.about_valores .valoresItems{flex-wrap:wrap}}@media(max-width: 768px){.about_valores .valoresItems{display:block}}.about_valores .valoresItems .valoresItem{width:calc(25% - 30px);background:#fff;padding:40px;box-sizing:border-box;text-align:center}@media(max-width: 1200px){.about_valores .valoresItems .valoresItem{width:calc(50% - 20px);margin-bottom:20px}}@media(max-width: 768px){.about_valores .valoresItems .valoresItem{width:100%}}.about_valores .valoresItems .valoresItem__img{width:100px;height:100px;background:#d32485;border-radius:50%;align-items:center;display:flex;margin:auto;margin-bottom:20px}.about_valores .valoresItems .valoresItem__img img{display:block;margin:auto;max-height:60px;max-width:55px}.about_valores .valoresItems .valoresItem__content h3{font-size:15px}.about_valores .valoresItems .valoresItem__content p{font-size:14px}.mantenimiento{padding:70px 0px}.mantenimiento .mantenimientoItems{display:flex;justify-content:space-between}@media(max-width: 1200px){.mantenimiento .mantenimientoItems{display:block}}.mantenimiento .mantenimientoItems .mantenimientoItem{width:calc(33.33% - 30px);background:#fff;padding:40px;box-sizing:border-box;text-align:center}@media(max-width: 1200px){.mantenimiento .mantenimientoItems .mantenimientoItem{width:100%;margin-bottom:40px;padding:0px}}.mantenimiento .mantenimientoItems .mantenimientoItem__img{margin-bottom:20px}.mantenimiento .mantenimientoItems .mantenimientoItem__img img{display:block;margin:auto}.mantenimiento .mantenimientoItems .mantenimientoItem__content h3{font-size:15px}.mantenimiento .mantenimientoItems .mantenimientoItem__content p{font-size:14px}.woocommerce-account.logged-in .content{position:relative;z-index:1}.woocommerce-account.logged-in .content:before{content:"";width:30%;height:100%;z-index:-1;background:#f7f7f7;left:0px;top:0px;position:absolute}@media(max-width: 768px){.woocommerce-account.logged-in .content:before{width:100%;height:240px}}.woocommerce-account.logged-in .woocommerce-MyAccount-navigation{width:300px}.woocommerce-account.logged-in .woocommerce-MyAccount-navigation h2{font-size:27px;margin-bottom:20px;font-family:"Poppins";font-weight:500}.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .woocommerce-nav li{margin-bottom:20px}.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .woocommerce-nav li a{display:flex;align-items:center;font-size:14px;color:gray;font-weight:600}.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .woocommerce-nav li a i{margin-right:10px}.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .woocommerce-nav li a i svg{display:block;width:20px;height:20px}.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .woocommerce-nav li a i svg rect{stroke:gray}.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .woocommerce-nav li a i svg path{stroke:gray}.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .woocommerce-nav li a.active{color:#d32485}.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .woocommerce-nav li a.active i svg rect,.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .woocommerce-nav li a.active i svg path{stroke:#d32485}.woocommerce-account.logged-in .woocommerce-MyAccount-content{width:calc(100% - 350px)}@media(max-width: 768px){.woocommerce-account.logged-in .woocommerce-MyAccount-content{width:100%}}.woocommerce-account.logged-in .woocommerce-MyAccount-content .sectionTitle{font-size:27px;margin-bottom:10px;font-family:"Poppins";font-weight:500}.woocommerce-account.logged-in .woocommerce-MyAccount-content .sectionsubTitle{font-size:14px;margin-bottom:20px}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article{margin-bottom:20px}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .smallTop{margin-bottom:5px;display:block}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle{border:solid 1px #ddd}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__status{font-size:20px}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__flex{display:flex;justify-content:space-between;padding:10px;align-items:center}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__flex .itemFlexBody{display:flex;align-items:center}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__flex .itemFlexBody img{width:60px;margin-right:10px;display:block}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__flex .itemFlexBody span{font-size:14px;font-weight:600}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__middle{border-top:solid 1px #ddd;padding:10px;display:flex;justify-content:space-between;align-items:center}@media(max-width: 768px){.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__middle{display:block}}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__middle__left{font-size:15px;font-weight:600;color:#a0a0a0}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__middle__right{display:flex}@media(max-width: 768px){.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__middle__right{margin-top:10px}}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__middle__right a{margin-left:5px;min-width:100px}@media(max-width: 768px){.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__middle__right a{margin-left:0px;margin-right:5px}}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__middle__right a.view{background:#fbb71c}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__middle__right a.pay{background:#fbb71c}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__bottom{padding:10px}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__bottom .msjBody{border:solid 1px #ddd;border-radius:5px}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__bottom .msjFoot{font-size:16px;margin-top:10px}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__bottom .msjBodyItem{display:flex;justify-content:space-between;border-bottom:solid 1px #ddd;font-size:15px;color:gray;font-weight:500;padding:19px 10px}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__bottom .msjBodyItem .strongItem{font-weight:700;color:#000}.woocommerce-account.logged-in .woocommerce-MyAccount-content .orderSectionBody article .bodyArticle__bottom .msjInfo{background:#fbb71c;color:gray;font-size:16px;padding:14px 10px;border-radius:5px;margin-bottom:10px}.woocommerce-EditAccountForm{max-width:600px}.woocommerce-EditAccountForm h2{font-size:27px;margin-bottom:0px;font-family:"Poppins";font-weight:500}.woocommerce-EditAccountForm p{font-size:14px;margin-bottom:10px}.woocommerce-EditAccountForm label{font-size:14px}.woocommerce-EditAccountForm input{font-size:14px;font-family:"Open Sans";border:solid 1px #d2d2d2;padding:14px 10px}.woocommerce-EditAccountForm .btn{max-width:230px;margin-top:20px}.allAddress h2{font-size:27px;margin-bottom:0px;font-family:"Poppins";font-weight:500}.allAddress p{font-size:14px;margin-bottom:10px}.allAddress .anyDirections{max-width:600px}.allAddress .anyDirections .selectDirection{border:solid 1px #000;width:10px;height:10px;display:inline-block;border-radius:50%;position:relative;top:1px;margin-right:5px;cursor:pointer}.allAddress .anyDirections .selectDirection.active{background:#d32485}.allAddress .anyDirections ul{margin:10px 0px}.allAddress .anyDirections ul li{display:flex;justify-content:space-between;margin-bottom:10px}.allAddress .anyDirections ul li span{font-weight:400;max-width:calc(100% - 120px)}.allAddress .anyDirections ul li div .editDirectionAjax{font-size:14px;margin-right:20px}.allAddress .anyDirections ul li div .deleteDirectionAjax{font-size:14px;color:#d32485}.allAddress .editOrAddDirections h4{margin-top:20px;margin-bottom:15px}.allAddress .editOrAddDirections .ajaxForm{max-width:600px}.allAddress .editOrAddDirections label{display:block;font-size:14px}.allAddress .editOrAddDirections input{font-size:14px;font-family:"Open Sans";border:solid 1px #d2d2d2;padding:14px 10px;width:100%;box-sizing:border-box}.allAddress .editOrAddDirections .inputAjaxRowInput{width:calc(50% - 20px)}.allAddress .editOrAddDirections .inputAjaxRowInputFull{width:100%}.allAddress .editOrAddDirections .inputAjaxRow{display:flex;justify-content:space-between;margin-bottom:20px}.allAddress .editOrAddDirections .inputAjaxRow .select2{width:100% !important}.allAddress .editOrAddDirections .btn{max-width:200px}#form-contact-us{max-width:750px}#form-contact-us .subtitle{font-size:18px;font-weight:700;margin-bottom:10px}#form-contact-us .row{display:flex;margin-bottom:20px}#form-contact-us .row .control,#form-contact-us .row .customSelect{margin-right:20px;width:calc(50% - 10px)}#form-contact-us .row label{font-weight:700;font-size:14px;margin-bottom:5px}#form-contact-us .row .wpcf7-form-control-wrap{display:block;width:100%}#form-contact-us .row input,#form-contact-us .row select,#form-contact-us .row textarea{border-radius:5px;border:solid 1px #000;padding:5px;display:block;width:100%;box-sizing:border-box}#form-contact-us .row textarea{resize:none;height:120px}#form-contact-us .row button{background:#d32485;color:#fff;display:block;text-align:center;padding:10px 15px;border:none;font-family:"Poppins";font-size:14px;width:100%;box-sizing:border-box;max-width:200px}#form-contact-us .row button br{display:none}@media(max-width: 768px){.woocommerce table.shop_table{display:block !important}.woocommerce table.shop_table tbody{width:100%;display:block}}@media(max-width: 768px){.woocommerce table.shop_table_responsive tr td,.woocommerce-page table.shop_table_responsive tr td{box-sizing:border-box}}@media(max-width: 768px){.woocommerce-cart-form .cart td.product-name{box-sizing:border-box;width:100%}}@media(max-width: 768px){.woocommerce-cart-form .cart td.actions button.btn[type=submit]{width:180px;float:none !important}}.swiper-pagination-bullet{background-image:url(assets/bullet.8be431b92ed5126f0bf73ca324f0d951.svg) !important;opacity:1 !important;background-color:rgba(0,0,0,0) !important;width:20px !important;height:20px !important}.swiper-pagination-bullet.swiper-pagination-bullet-active{background:#d32485 !important}