.zoom-anim-dialog p {
  margin: 0 0 11px;
  text-align: justify;
  line-height: 1.4em;
}
.zoom-anim-dialog ul {
  list-style: disc;
}
.zoom-anim-dialog ul, ol {
  padding: 0;
  margin: 0 0 11px 25px;
}
.zoom-anim-dialog li {
  line-height: 22px;
  margin: 0 0 .5em 0;
  color: #6b7c93;
}

.mfp-preloader {
  font-size: 13px;
}

.get-code-window {
  position: relative;
  background: #FFF;
  padding: 2em 3em;
  width: auto;
  margin: 20px auto;
  max-width: 600px;
}
#magnific_popup_documentation {
  font-size: 3em;
  margin-bottom: 1em;
  font-weight: bold;
  text-align: center;
}
.white-popup-block  {
  background: #FFF;
  padding: 20px 30px;
  text-align: left;
  max-width: 650px;
  margin: 40px auto;
  position: relative;
}
.zoom-anim-dialog h1{
  color: #212D41;
  text-align: center;
  margin-bottom:0;
  margin-top: 2em;
  font-weight: 900;
  font-size: 1.3em;
}
.zoom-anim-dialog h2 {
  font-weight: 400;
  margin-top: 0.7em;
  margin-bottom: 0;
  border-bottom: 1px solid #DDD;
  padding-bottom: 0.7em;
  font-size: 1.3em;
  text-align: center;
}
.zoom-anim-dialog h3 {
    font-size: 1.5em;
    margin-bottom: 0;
    margin-top: 30px;
    text-align: center;
    color: #3598DC;
    font-weight: 600;
    padding: 0;
}
.zoom-anim-dialog h3 span{
    margin-left: 0;
    color: #17c4bb;
}
.zoom-anim-dialog h4 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #212D41;
}
.zoom-anim-dialog a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}
.zoom-anim-dialog a:hover {
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  opacity: 0.2;
}
/* Styles for dialog window */
#small-3.zoom-anim-dialog {
  padding: 30px 0;
}
.zoom-anim-dialog {
  background: white;
  padding: 20px 30px;
  text-align: left;
  max-width: 980px;
  margin: 120px auto;
  position: relative;
  border-radius: 10px;
}
div.incluye{
  padding-top: 10px;
  padding-bottom: 30px;
  background: #ffffff;
}
.incluye p{
    color: #6b7c93;
    text-align: center;
    font-weight: 200;
    font-size: 16px;
    margin: 0;
    line-height: 1.6em;
}
.incluye p.incluye2{
    color: #17c4bb;
    text-align: center;
    font-weight: 300;
    font-size: 19px;
    margin: 0;
}
.zoom-anim-dialog table{
    width: 100%;
}
.zoom-anim-dialog table tbody tr th{
    width: 100%;
    background: #212D41;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-size: 1.2em;
    line-height: 1em;
    padding: 15px 0;
    border-radius: 10px 10px 0 0;
}
.zoom-anim-dialog table tr td{
    width: 25%;
    border: 0.5px solid rgba(150,150,150,0.5);
    text-align: center;
    font-weight: 300;
    color: #6b7c93;
    padding: 5px 0;
    font-size: 0.9em;
}
.zoom-anim-dialog table tbody tr td.celd-resal1{
    width: 50%;
    background: #17c4bb;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-size: 1.15em;
    line-height: 1em;
    padding: 10px 0;
    border: 0.5px solid rgba(250,250,250,1);
}
.zoom-anim-dialog table tbody tr td.celd-resal{
    font-weight: 300;
    background: #17c4bb;
    color: #ffffff;
    text-align: center;
    font-size: 1.05em;
    line-height: 1em;
    padding: 10px 0;;
    border: 0.5px solid rgba(250,250,250,1);
}
.zoom-anim-dialog table tbody tr td.celd-resal2{
    background: #3598DC;
    color: rgba(255,255,255,0.9);
    border-radius: 0 0 10px 10px;
    border: none;
}
div.notas{
    background: rgba(235, 235, 235, 1);
    padding: 10px 20px;
    margin-top: 20px;
    border-top: 1px solid #dddddd;
  }
/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;

  -webkit-transition: all 0.2s ease-in-out; 
  -moz-transition: all 0.2s ease-in-out; 
  -o-transition: all 0.2s ease-in-out; 
  transition: all 0.2s ease-in-out; 



  -webkit-transform: scale(1.4); 
  -moz-transform: scale(1.4); 
  -ms-transform: scale(1.4); 
  -o-transform: scale(1.4); 
  transform: scale(1.4); 
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;

  -webkit-transform: scale(1); 
  -moz-transform: scale(1); 
  -ms-transform: scale(1); 
  -o-transform: scale(1); 
  transform: scale(1); 
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8); 
  -moz-transform: scale(0.8); 
  -ms-transform: scale(0.8); 
  -o-transform: scale(0.8); 
  transform: scale(0.8); 

  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out; 
  -moz-transition: opacity 0.3s ease-out; 
  -o-transition: opacity 0.3s ease-out; 
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}



/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;

  -webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
  -moz-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
  -ms-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
  -o-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
  transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;

  -webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
  -moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
  -ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
  -o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
  transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;

  -webkit-transition: opacity 0.3s ease-out; 
  -moz-transition: opacity 0.3s ease-out; 
  -o-transition: opacity 0.3s ease-out; 
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}
















/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  /*position: absolute;*/
  position: fixed;
  overflow: scroll;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
    color: #ffffff;
    background: #2b3b55;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    padding: 10px;
    font-size: 30px;
    line-height: 0;
    margin: 10px; }
.mfp-close:hover {
  color: #ffffff!important; }



.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }





/* //Styles home pop DOI */
.incluye .wrapper-items-incluye {
  max-width: 600px;
  text-align: left;
  margin: auto;
}
.incluye .wrapper-items-incluye p {
  text-align: left;
}
.incluye .icon {
  position: relative;
}
.incluye .icon:before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  top: -1px;
  position: absolute;
  left: -29px;
}
.incluye .icon-click:before {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%236B7C93;%7D%0A%3C/style%3E%3Cpath class='st0' d='M42.3,24.9c0-0.3,0-0.7-0.1-1c-0.6-2.5-2.9-3.8-5.4-3.1c-0.2,0.1-0.3,0.1-0.4-0.2c-0.9-2.2-2.9-3.3-5.2-2.6 c-0.3,0.1-0.3,0-0.4-0.2c-0.2-0.6-0.5-1.1-0.9-1.5c-0.3-0.2-0.2-0.4-0.1-0.7c1.2-2.1,1.6-4.4,1.1-6.8c-0.8-4-4-7.1-8-7.8 c-5.6-1-11,3.1-11.5,8.8c-0.4,4,1.7,7.8,5.2,9.7c0.3,0.2,0.4,0.3,0.4,0.6c0,2.4,0,4.8,0,7.1c0,0.1,0.1,0.3-0.2,0.5 c-0.2-0.3-0.5-0.6-0.8-0.9c-1.9-1.7-4.9-1.7-6.7,0.1c-2,1.9-2,5.1,0,7.1c2.5,2.5,5,5,7.6,7.5c0.2,0.2,0.4,0.4,0.5,0.7 c0.8,1.8,1.6,3.6,2.3,5.4c0.2,0.6,0.6,1.1,1.2,1.3c5.9,0,11.7,0,17.6,0c0.6-0.2,0.9-0.6,1.1-1.2c0.2-0.8,0.5-1.6,0.7-2.5 c1-3.5,1.6-7.1,1.9-10.8C42.4,31.4,42.3,28.2,42.3,24.9z M16.9,10.9c0,1.6,0,3.3,0,4.9c0,0.2,0,0.3,0,0.5c-4.2-3-3.6-9.5,1-11.9 c4.7-2.4,10.2,0.9,10.3,6.2c0,1.5-0.4,2.9-1.3,4.1C26.8,15,26.7,15,26.5,15c-0.1,0-0.2,0-0.4,0c-0.3,0-0.6,0.2-0.8,0.1 c-0.2-0.2-0.1-0.5-0.1-0.8c0-1.4,0.1-2.8-0.1-4.1c-0.2-2.4-2.9-4.2-5.2-3.5C18.1,7.3,16.9,8.8,16.9,10.9z M39.3,34.4 c-0.3,3.9-1,7.8-2.2,11.6c-0.1,0.2-0.2,0.3-0.4,0.3c-4.8,0-9.6,0-14.3,0c-0.3,0-0.4-0.1-0.5-0.3c-0.7-1.7-1.4-3.3-2.2-5 c-0.2-0.4-0.4-0.7-0.7-1c-2.6-2.6-5.1-5.1-7.7-7.7c-0.9-0.9-1-2-0.4-2.8c0.8-1.1,2.3-1.2,3.3-0.3c1,1,2,2,3,3 c0.4,0.4,0.8,0.7,1.4,0.5c0.8-0.2,1.1-0.7,1.1-1.7c0-3.3,0-6.7,0-10s0-6.6,0-9.8c0-0.2,0-0.5,0.1-0.7c0.2-0.6,0.8-1,1.4-1 s1.2,0.5,1.3,1.1c0.1,0.2,0.1,0.5,0.1,0.7c0,4.5,0,9,0,13.5c0,0.4,0,0.7,0.2,1c0.3,0.5,0.8,0.7,1.4,0.6s1-0.4,1.2-1 c0.1-0.2,0.1-0.5,0.1-0.7c0-1.8,0-3.6,0-5.4c0-0.7,0.5-1.2,1.1-1.4c0.6-0.1,1.3,0.2,1.5,0.8c0.1,0.3,0.1,0.6,0.1,0.9 c0,1.8,0,3.6,0,5.4c0,0.7,0.5,1.2,1.1,1.4c0.6,0.1,1.3-0.2,1.5-0.8C31,25.2,31,25,31,24.7c0-0.8,0-1.7,0-2.5c0-0.9,0.6-1.5,1.4-1.5 c0.8,0,1.4,0.6,1.4,1.5s0,1.8,0,2.6c0,0.9,0.5,1.5,1.3,1.5c0.8,0.1,1.4-0.5,1.5-1.4s0.7-1.4,1.4-1.4c0.8,0,1.4,0.7,1.4,1.5 C39.5,28.2,39.5,31.3,39.3,34.4z'/%3E%3C/svg%3E%0A");
}
.incluye .icon-personalized:before {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%236B7C93;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M1.4,27.1c0.1,0,0.1,0.1,0.1,0.2c0,0,0,0-0.1,0C1.4,27.3,1.4,27.2,1.4,27.1z'/%3E%3Cpath class='st0' d='M1.4,27.3L1.4,27.3c0.1,0.1,0.1,0.2,0,0.2C1.4,27.4,1.4,27.4,1.4,27.3z'/%3E%3Cpath class='st0' d='M48.6,8.9c0-2.6-1.9-4.5-4.5-4.5c-6.8,0-13.7,0-20.5,0c-0.7,0-1.4,0.1-2,0.4c-1.7,0.9-2.5,2.3-2.5,4.1 c0,4.2,0,8.4,0,12.5c0,0.2,0,0.3,0,0.5c-1.5-0.7-2.8-1.4-4.2-2.1c0.1-0.1,0.2-0.2,0.2-0.3c1.3-1.5,1.7-3.2,1.5-5.1 c-0.4-2.8-2.6-5.1-5.4-5.6s-5.6,0.9-6.9,3.4C3,14.9,3.5,18,5.5,20c0.3,0.3,0.3,0.4-0.1,0.6c-1.8,1.1-2.9,2.7-3.6,4.6 c-0.2,0.5-0.2,1.1-0.5,1.6c0,0.1,0,0.2,0,0.4c0.1,0.1,0,0.1,0,0.2s0,0.1,0,0.2c0,1.9,0,3.8,0,5.6c0.1,0,0.1,0.1,0.1,0.2 c0.4,1.5,1.2,2.5,2.6,3.1c0.3,0.1,0.2,0.3,0.2,0.5c0,2.4,0,4.7,0,7.1c0,1.2,0.5,1.7,1.7,1.7c2.7,0,5.4,0,8.1,0 c1.4,0,1.8-0.5,1.8-1.8c0-4.8,0-9.7,0-14.5c0-0.2,0-0.4,0.1-0.6c0.2,0.1,0.3,0.1,0.4,0.2c1.3,0.6,2.5,1.2,3.8,1.9 c1.8,0.9,4,0.4,5.1-1.3c0.1-0.2,0.3-0.2,0.5-0.2c1.2,0,2.4,0,3.6,0c0.3,0,0.6,0,1,0c-0.1,0.2-0.1,0.3-0.1,0.4 c-1,2.9-2.1,5.8-3.1,8.6c-0.7,1.8-1.3,3.7-2,5.5c-0.2,0.7,0.1,1.4,0.8,1.7c0.7,0.3,1.3,0,1.7-0.6c0.1-0.2,0.2-0.4,0.3-0.6 c1.8-4.9,3.5-9.7,5.3-14.6c0.1-0.3,0.3-0.4,0.6-0.4s0.5,0,0.7,0.4c1.8,4.9,3.6,9.8,5.4,14.6c0.1,0.2,0.2,0.5,0.3,0.7 c0.3,0.4,0.8,0.6,1.4,0.5c0.9-0.2,1.3-1,0.9-2c-1.7-4.6-3.4-9.1-5-13.7c-0.1-0.2-0.2-0.3-0.1-0.5c2.2,0,4.5,0,6.7,0 c2.7,0,4.6-1.9,4.6-4.6C48.6,19.5,48.6,14.2,48.6,8.9z M10.2,11.6c2.1,0,3.8,1.8,3.8,3.9c-0.1,2.1-1.8,3.8-3.8,3.7 c-2.1-0.1-3.8-1.8-3.8-3.9C6.4,13.2,8.2,11.5,10.2,11.6z M22.5,28.5c-0.4,0.2-0.7,0.1-1.1-0.1c-2-1-4-2-6-3c-0.3-0.2-0.6-0.3-1-0.3 c-0.6,0.1-1.1,0.5-1.2,1.2c0,0.5,0,1,0,1.5c0,2.3,0,4.5,0,6.8c0,2.6,0,5.3,0,7.9c0,0.4-0.1,0.5-0.5,0.5c-1.8,0-3.5,0-5.3,0 C7,43,7,42.9,7,42.6c0-2.3,0-4.5,0-6.8c0-1.1-0.4-1.5-1.5-1.7C4.6,34,4,33.4,4,32.5c0-1.5,0-3,0-4.5c0.1-3.2,2.6-5.8,5.8-5.9 c1.8-0.1,3.5,0.2,5.1,1.1c2.4,1.3,5,2.5,7.4,3.7c0.4,0.2,0.7,0.4,0.6,0.9C23.1,28,22.9,28.3,22.5,28.5z M45.8,24.7 c0,1.3-0.6,1.9-1.9,1.9c-5.9,0-11.8,0-17.8,0c-0.1,0-0.2,0-0.5,0c0.7-1.4,1.4-2.8,2.1-4.1c0.5-0.9,0.9-1.8,1.4-2.8 c0.3-0.7,0.1-1.3-0.4-1.7c-0.5-0.4-1.2-0.3-1.7,0c-0.2,0.2-0.4,0.5-0.5,0.7c-0.9,1.7-1.7,3.5-2.6,5.2c-0.1,0.3-0.2,0.4-0.5,0.2 c-0.5-0.3-1.2-0.4-1.4-0.8c-0.3-0.4-0.1-1.1-0.1-1.6c0-4.2,0-8.5,0-12.7c0-1.3,0.6-1.9,1.9-1.9c6.7,0,13.4,0,20.2,0 c1.3,0,1.9,0.6,1.9,1.9C45.8,14.2,45.8,19.5,45.8,24.7z'/%3E%3Cpath class='st0' d='M33.9,13c-2.4,0-4.9,0-7.3,0c-1.1,0-1.8-1.1-1.2-2.1c0.3-0.5,0.8-0.7,1.3-0.7c0.9,0,1.8,0,2.6,0 c3.9,0,7.8,0,11.7,0c0.2,0,0.4,0,0.6,0c0.7,0.1,1.3,0.7,1.2,1.4c0,0.7-0.6,1.3-1.4,1.3c-1.4,0-2.8,0-4.2,0C36,13,34.9,13,33.9,13z' /%3E%3Cpath class='st0' d='M37.6,15.5c1.2,0,2.4,0,3.5,0s1.7,0.8,1.4,1.8c-0.2,0.6-0.5,0.9-1.1,1c-0.1,0-0.2,0-0.4,0c-2.4,0-4.7,0-7.1,0 c-0.8,0-1.3-0.4-1.5-1c-0.3-0.9,0.4-1.7,1.4-1.8C35.2,15.4,36.4,15.5,37.6,15.5L37.6,15.5z'/%3E%3Cpath class='st0' d='M37.6,20.7c1.2,0,2.4,0,3.5,0c0.9,0,1.5,0.5,1.5,1.4c0,0.8-0.6,1.4-1.5,1.4c-2.4,0-4.8,0-7.1,0 c-0.8,0-1.4-0.5-1.5-1.2s0.3-1.3,0.9-1.5c0.2-0.1,0.4-0.1,0.6-0.1C35.3,20.7,36.4,20.7,37.6,20.7z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.incluye .icon-membership:before {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%236B7C93;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M1.4,32.7c0.1,0,0.1,0.1,0.1,0.2c0,0,0,0-0.1,0C1.4,32.8,1.4,32.8,1.4,32.7z'/%3E%3Cpath class='st0' d='M1.4,32.9L1.4,32.9c0.1,0.1,0.1,0.2,0,0.2C1.4,33,1.4,33,1.4,32.9z'/%3E%3Cg%3E%3Cpath class='st0' d='M33.9,20.4c-2.4,0-4.9,0-7.3,0c-1.1,0-1.8-1.1-1.2-2.1c0.3-0.5,0.8-0.7,1.3-0.7c0.9,0,1.8,0,2.6,0 c3.9,0,7.8,0,11.7,0c0.2,0,0.4,0,0.6,0c0.7,0.1,1.3,0.7,1.2,1.4c0,0.7-0.6,1.3-1.4,1.3c-1.4,0-2.8,0-4.2,0 C36,20.4,34.9,20.4,33.9,20.4z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st0' d='M33.9,25.9c-2.4,0-4.9,0-7.3,0c-1.1,0-1.8-1.1-1.2-2.1c0.3-0.5,0.8-0.7,1.3-0.7c0.9,0,1.8,0,2.6,0 c3.9,0,7.8,0,11.7,0c0.2,0,0.4,0,0.6,0c0.7,0.1,1.3,0.7,1.2,1.4c0,0.7-0.6,1.3-1.4,1.3c-1.4,0-2.8,0-4.2,0 C36,25.9,34.9,25.9,33.9,25.9z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st0' d='M29.1,31.4c-2.4,0,3.1,0,0.7,0c-1.1,0-1.8-1.1-1.2-2.1c0.3-0.5,0.8-0.7,1.3-0.7c0.9,0,1.8,0,2.6,0 c3.9,0-0.2,0,3.7,0c0.2,0,0.4,0,0.6,0c0.7,0.1,1.3,0.7,1.2,1.4c0,0.7-0.6,1.3-1.4,1.3c-1.4,0-2.8,0-4.2,0 C31.2,31.4,30.1,31.4,29.1,31.4z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M21.5,35.8c-2-0.1-4-0.1-6.1-0.1H9.2c-0.7,0-1-0.3-1.2-0.5c-0.1-0.2-0.3-0.5-0.2-1c0-0.2,0-0.5,0-0.7 c0-0.9,0-1.8,0.1-2.7c0.6-3,3-5.2,5.9-5.3c1.3-0.1,2.7-0.2,4.3,0.2c2.8,0.7,4.8,3.2,4.8,6.1v2.5C23,35.3,22.5,35.8,21.5,35.8z M9.8,33.7h5.6c1.9,0,3.8,0,5.6,0.1l0-2c0-1.9-1.4-3.6-3.3-4.1c-1.3-0.4-2.4-0.3-3.7-0.2c-2,0.1-3.7,1.6-4.1,3.7 c-0.1,0.7-0.1,1.5-0.1,2.3C9.8,33.5,9.8,33.6,9.8,33.7z'/%3E%3C/g%3E%3Cpath class='st0' d='M15.4,14.9c-2.5,0-4.4,1.9-4.4,4.4s1.9,4.4,4.4,4.4s4.4-1.9,4.4-4.4S17.9,14.9,15.4,14.9z M15.4,21.7 c-1.3,0-2.4-1.1-2.4-2.4c0-1.3,1.1-2.4,2.4-2.4s2.4,1.1,2.4,2.4C17.8,20.6,16.7,21.7,15.4,21.7z'/%3E%3C/g%3E%3Cpath class='st0' d='M40.2,9.4H9.8c-3.9,0-7.1,3.2-7.1,7.1v16.9c0,3.9,3.2,7.1,7.1,7.1h30.4c3.9,0,7.1-3.2,7.1-7.1V16.5 C47.3,12.6,44.1,9.4,40.2,9.4z M44.3,33.4c0,2.3-1.8,4.1-4.1,4.1H9.8c-2.3,0-4.1-1.8-4.1-4.1V16.5c0-2.3,1.8-4.1,4.1-4.1h30.4 c2.3,0,4.1,1.8,4.1,4.1V33.4z'/%3E%3C/svg%3E%0A");
}
.incluye .icon-quantity:before {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%236B7C93;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M28.7,29c-0.8,0.2-1.5,0.2-2.4,0.3c0.5,1.2,0.7,2.4,0.7,3.8c0,2.3-0.8,4.4-2,6c0.5,0.6,1,1.2,1.6,1.7 c1.7-2.1,2.7-4.8,2.7-7.7C29.4,31.6,29.1,30.2,28.7,29z'/%3E%3Cpath class='st0' d='M23.4,25.3c0.5-0.6,1-1.1,1.6-1.6c-2.1-1.8-4.9-2.9-7.9-2.9c-0.1,0-0.1,0-0.2,0c0.4,0.9,0.8,1.6,1.4,2.4 C20.2,23.4,22,24.1,23.4,25.3z'/%3E%3Cpath class='st0' d='M27.7,26.8c-0.3-0.5-0.7-1-1-1.5c-0.6,0.5-1.1,1-1.6,1.6c0.3,0,0.7,0.1,1,0.1C26.6,26.9,27.1,26.9,27.7,26.8z '/%3E%3Cpath class='st0' d='M23.4,40.7c-1.7,1.4-3.9,2.2-6.3,2.2c-5.5,0-10-4.5-10-9.9c0-5,3.6-9.1,8.4-9.8c-0.4-0.7-0.7-1.4-1-2.2 C9,22.2,4.9,27.1,4.9,33c0,6.8,5.5,12.2,12.2,12.2c3,0,5.8-1.1,7.9-2.9C24.4,41.9,23.9,41.3,23.4,40.7z'/%3E%3C/g%3E%3Cpath class='st0' d='M26.6,40.7C26,40.2,25.5,39.6,25,39c-0.5,0.6-1,1.2-1.6,1.7c0.5,0.6,1,1.1,1.6,1.6 C25.6,41.9,26.1,41.3,26.6,40.7z'/%3E%3Cpath class='st0' d='M26.1,4.8c-6.8,0-12.2,5.5-12.2,12.2c0,1.4,0.3,2.8,0.7,4c0.3,0.8,0.6,1.5,1,2.2c1.4,2.3,3.5,4.2,6,5.2 c0.3-0.7,0.7-1.4,1.1-2.1c-1.7-0.6-3.2-1.8-4.4-3.2c-0.6-0.7-1-1.5-1.4-2.4c-0.5-1.2-0.7-2.4-0.7-3.8c0-5.5,4.5-10,9.9-10 s10,4.5,10,10c0,1.4-0.3,2.8-0.8,4c-0.3,0.8-0.8,1.5-1.3,2.1c-1.5,1.9-3.7,3.3-6.3,3.7c-0.5,0.1-1,0.1-1.6,0.1c-0.4,0-0.7,0-1-0.1 c0,0,0,0.1-0.1,0.1c-0.5,0.6-0.9,1.3-1.2,2c0.8,0.1,1.5,0.2,2.3,0.2c0.1,0,0.1,0,0.2,0c0.8,0,1.6-0.1,2.4-0.3 c3.2-0.7,6-2.6,7.7-5.3c0.4-0.6,0.8-1.3,1.1-2.1c0.6-1.4,0.9-3,0.9-4.6C38.4,10.2,32.9,4.8,26.1,4.8z'/%3E%3Cg%3E%3Cpath class='st0' d='M37.4,21.6c-0.3,0.7-0.7,1.4-1.1,2.1c3.8,1.4,6.5,5,6.5,9.3c0,5.5-4.5,9.9-9.9,9.9c-2.4,0-4.6-0.8-6.3-2.2 c-0.5,0.6-1,1.1-1.6,1.6c2.1,1.8,4.9,2.9,7.9,2.9c6.8,0,12.2-5.5,12.2-12.2C45.2,27.8,41.9,23.4,37.4,21.6z'/%3E%3Cpath class='st0' d='M25,27c0,0-0.1-0.1-0.1-0.1C25,26.9,25,26.9,25,27c0.5-0.7,1-1.2,1.6-1.7c1.7-1.4,3.9-2.2,6.3-2.2 c0.4,0,0.7,0,1,0.1c0.5-0.7,0.9-1.4,1.3-2.1c-0.8-0.1-1.5-0.2-2.3-0.2c-3,0-5.8,1.1-7.9,2.9c-0.6,0.5-1.1,1-1.6,1.6 c-0.3,0.3-0.5,0.7-0.7,1c-0.4,0.6-0.8,1.3-1.1,2.1c-0.6,1.4-0.9,3-0.9,4.6c0,2.9,1,5.6,2.7,7.7c0.6-0.5,1.1-1.1,1.6-1.7 c-1.3-1.7-2.1-3.8-2.1-6c0-1.4,0.3-2.8,0.8-4C24.1,28.3,24.5,27.6,25,27z'/%3E%3C/g%3E%3Cpath class='st0' d='M25,27C25,26.9,25,26.9,25,27c0-0.1,0-0.1-0.1-0.1C24.9,26.9,25,26.9,25,27z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st0' d='M28.4,16.4c0-0.5,0-1,0-1.6c0,0,0-0.1,0.1-0.1c0.3,0,0.7,0,1,0l0,0c0,1,0,2.1,0,3.1l0,0c-0.3,0-0.7,0-1,0l0,0 C28.4,17.4,28.4,16.9,28.4,16.4z'/%3E%3Cpath class='st0' d='M28.9,12.9c0.3,0,0.6,0.3,0.6,0.6s-0.2,0.6-0.6,0.6s-0.6-0.3-0.6-0.6S28.6,12.9,28.9,12.9z'/%3E%3Cpath class='st0' d='M24.1,17.6c0-1.6,0-3.1,0-4.7c0-0.1,0-0.1-0.1-0.1c-0.3,0-0.6,0-0.9,0c0,0-0.1,0-0.1,0.1c0,0.7,0,1.4,0,2.1 c0,0,0,0,0,0.1c-0.2-0.2-0.5-0.4-0.8-0.4c-0.2,0-0.4,0-0.5,0c-0.3,0.1-0.5,0.2-0.7,0.3c-0.3,0.2-0.5,0.5-0.6,0.9 c-0.1,0.3-0.1,0.6,0,0.8c0.1,0.4,0.2,0.7,0.5,1c0.4,0.3,0.8,0.4,1.3,0.3c0.3-0.1,0.5-0.2,0.7-0.3l0.1-0.1c0,0.1,0,0.2,0,0.4l0,0 c0.3,0,0.6,0,0.9,0l0,0C24.1,17.8,24.1,17.7,24.1,17.6z M22.4,17.1c-0.2,0-0.4,0-0.5-0.2c-0.2-0.2-0.3-0.4-0.3-0.5 c0-0.4,0.2-0.7,0.5-0.8c0.1-0.1,0.2-0.1,0.4,0c0.2,0.1,0.4,0.1,0.5,0.3C23.3,16.4,23,17.1,22.4,17.1z'/%3E%3Cpath class='st0' d='M28,16.1V16c-0.1-0.7-0.5-1.1-1.2-1.3c-0.4-0.1-0.7-0.1-1.1,0c-0.5,0.1-0.9,0.4-1.2,0.9 c-0.2,0.4-0.2,0.8-0.1,1.2c0.2,0.7,0.6,1.1,1.2,1.3c0.3,0.1,0.7,0.1,1,0c0.3,0,0.5-0.1,0.8-0.3c0.5-0.4,0.7-0.8,0.7-1.4 C28.1,16.3,28.1,16.2,28,16.1z M26.5,17.1c-0.5,0.2-0.9-0.1-1-0.5c-0.1-0.3,0.1-0.7,0.4-0.8c0.5-0.2,0.9,0.1,1,0.5 c0,0.1,0,0.1,0,0.2C26.9,16.7,26.7,17,26.5,17.1z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st0' d='M18.4,33c0-0.5,0-1,0-1.6c0,0,0-0.1,0.1-0.1c0.3,0,0.7,0,1,0l0,0c0,1,0,2.1,0,3.1l0,0c-0.3,0-0.7,0-1,0l0,0 C18.4,34,18.4,33.5,18.4,33z'/%3E%3Cpath class='st0' d='M18.9,29.5c0.3,0,0.6,0.3,0.6,0.6c0,0.3-0.2,0.6-0.6,0.6s-0.6-0.3-0.6-0.6S18.5,29.6,18.9,29.5z'/%3E%3Cpath class='st0' d='M14.1,34.3c0-1.6,0-3.1,0-4.7c0-0.1,0-0.1-0.1-0.1c-0.3,0-0.6,0-0.9,0c0,0-0.1,0-0.1,0.1c0,0.7,0,1.4,0,2.1 c0,0,0,0,0,0.1c-0.2-0.2-0.5-0.4-0.8-0.4c-0.2,0-0.4,0-0.5,0c-0.3,0.1-0.5,0.2-0.7,0.3c-0.3,0.2-0.5,0.5-0.6,0.9 c-0.1,0.3-0.1,0.6,0,0.8c0.1,0.4,0.2,0.7,0.5,1c0.4,0.3,0.8,0.4,1.3,0.3c0.3-0.1,0.5-0.2,0.7-0.3l0.1-0.1c0,0.1,0,0.2,0,0.4l0,0 c0.3,0,0.6,0,0.9,0l0,0C14.1,34.5,14.1,34.4,14.1,34.3z M12.4,33.8c-0.2,0-0.4,0-0.5-0.2c-0.2-0.2-0.3-0.4-0.3-0.5 c0-0.4,0.2-0.7,0.5-0.8c0.1-0.1,0.2-0.1,0.4,0s0.4,0.1,0.5,0.3C13.3,33.1,13,33.7,12.4,33.8z'/%3E%3Cpath class='st0' d='M18,32.8L18,32.8c-0.1-0.8-0.5-1.2-1.2-1.4c-0.4-0.1-0.7-0.1-1.1,0c-0.5,0.1-0.9,0.4-1.2,0.9 c-0.2,0.4-0.2,0.8-0.1,1.2c0.2,0.7,0.6,1.1,1.2,1.3c0.3,0.1,0.7,0.1,1,0c0.3,0,0.5-0.1,0.8-0.3C17.8,34,18,33.6,18,33 C18,32.9,18,32.8,18,32.8z M16.5,33.7c-0.5,0.2-0.9-0.1-1-0.5c-0.1-0.3,0.1-0.7,0.4-0.8c0.5-0.2,0.9,0.1,1,0.5c0,0.1,0,0.1,0,0.2 C16.9,33.3,16.7,33.6,16.5,33.7z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st0' d='M38.4,33c0-0.5,0-1,0-1.6c0,0,0-0.1,0.1-0.1c0.3,0,0.7,0,1,0l0,0c0,1,0,2.1,0,3.1l0,0c-0.3,0-0.7,0-1,0l0,0 C38.4,34,38.4,33.5,38.4,33z'/%3E%3Cpath class='st0' d='M38.9,29.5c0.3,0,0.6,0.3,0.6,0.6c0,0.3-0.2,0.6-0.6,0.6c-0.4,0-0.6-0.3-0.6-0.6 C38.3,29.8,38.6,29.6,38.9,29.5z'/%3E%3Cpath class='st0' d='M34.1,34.3c0-1.6,0-3.1,0-4.7c0-0.1,0-0.1-0.1-0.1c-0.3,0-0.6,0-0.9,0c0,0-0.1,0-0.1,0.1c0,0.7,0,1.4,0,2.1 c0,0,0,0,0,0.1c-0.2-0.2-0.5-0.4-0.8-0.4c-0.2,0-0.4,0-0.5,0c-0.3,0.1-0.5,0.2-0.7,0.3c-0.3,0.2-0.5,0.5-0.6,0.9 c-0.1,0.3-0.1,0.6,0,0.8c0.1,0.4,0.2,0.7,0.5,1c0.4,0.3,0.8,0.4,1.3,0.3c0.3-0.1,0.5-0.2,0.7-0.3l0.1-0.1c0,0.1,0,0.2,0,0.4l0,0 c0.3,0,0.6,0,0.9,0l0,0C34.1,34.5,34.1,34.4,34.1,34.3z M32.4,33.8c-0.2,0-0.4,0-0.5-0.2c-0.2-0.2-0.3-0.4-0.3-0.5 c0-0.4,0.2-0.7,0.5-0.8c0.1-0.1,0.2-0.1,0.4,0s0.4,0.1,0.5,0.3C33.3,33.1,33,33.7,32.4,33.8z'/%3E%3Cpath class='st0' d='M38,32.8L38,32.8c-0.1-0.8-0.5-1.2-1.2-1.4c-0.4-0.1-0.7-0.1-1.1,0c-0.5,0.1-0.9,0.4-1.2,0.9 c-0.2,0.4-0.2,0.8-0.1,1.2c0.2,0.7,0.6,1.1,1.2,1.3c0.3,0.1,0.7,0.1,1,0c0.3,0,0.5-0.1,0.8-0.3c0.5-0.4,0.7-0.8,0.7-1.4 C38.1,32.9,38.1,32.8,38,32.8z M36.5,33.7c-0.5,0.2-0.9-0.1-1-0.5c-0.1-0.3,0.1-0.7,0.4-0.8c0.5-0.2,0.9,0.1,1,0.5 c0,0.1,0,0.1,0,0.2C36.9,33.3,36.7,33.6,36.5,33.7z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.incluye .icon-services:before {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%236B7C93;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M43.7,20.8c-0.4-0.6-1-0.7-1.5-0.8c-0.9-0.2-1.9-0.3-2.9-0.4l-0.2,0c-0.1,0-0.1-0.1-0.1-0.1 c-0.1-0.3-0.2-0.7-0.5-1c0,0-0.1-0.1,0.1-0.2c0.4-0.6,0.8-1.1,1.2-1.6c0.2-0.3,0.5-0.6,0.7-0.9c0.7-1,0.7-1.9,0-3l-3.2-3.2 c-1.3-1.4-2.4-1.4-3.8-0.2c-0.3,0.3-0.7,0.6-1,0.8c-0.4,0.3-0.7,0.6-1,0.8c-0.1,0.1-0.2,0.1-0.1,0.1c-0.4-0.2-0.7-0.4-1.1-0.5 c0,0,0,0,0-0.2c-0.2-0.9-0.3-1.8-0.4-2.8l0-0.3c-0.2-1.1-0.8-1.8-1.9-1.9h-5.7l-0.2,0c-1,0.4-1.5,1-1.6,2c0,0.5-0.1,1.1-0.2,1.6 c-0.1,0.5-0.1,1-0.2,1.5c0,0-0.1,0.1-0.1,0.1c-0.2,0.1-0.4,0.2-0.5,0.2c-0.2,0.1-0.4,0.2-0.6,0.3l-0.1-0.1c-0.5-0.4-0.9-0.7-1.3-1 c-0.4-0.3-0.8-0.6-1.3-1c-0.9-0.7-1.9-0.7-2.8,0.1c-0.3,0.2-0.4,0.4-0.6,0.6c-0.1,0.1-0.2,0.2-0.3,0.4c-0.3,0.5-0.3,1.1,0.1,1.4 c0.4,0.4,0.9,0.4,1.5,0l0.7-0.7c0.1-0.1,0.2-0.2,0.2-0.2c0,0,0.1,0,0.2,0.1c0.4,0.3,0.9,0.7,1.3,1c0.4,0.4,0.9,0.7,1.3,1.1 c0.6,0.5,1.3,0.6,2,0.3c0.2-0.1,0.4-0.2,0.6-0.2c0.2-0.1,0.4-0.2,0.6-0.2c0.7-0.2,1.2-0.8,1.3-1.7c0-0.5,0.1-1.1,0.2-1.6 c0.1-0.5,0.2-1.1,0.2-1.7c0-0.1,0-0.2,0-0.2c0,0,0.1,0,0.2,0h4.6c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0.1,0.6,0.1,1.1,0.2,1.7 c0.1,0.5,0.1,1.1,0.2,1.7c0.1,0.7,0.5,1.2,1.2,1.5c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.7,0.4,1.6,0.3,2.2-0.3 c0.4-0.3,0.9-0.7,1.3-1c0.4-0.3,0.9-0.7,1.2-1c0.2-0.1,0.2-0.1,0.2-0.1c0,0,0,0,0.1,0.1l3.3,3.3c0.1,0.1,0.2,0.2,0.2,0.2 c0,0,0,0.1-0.1,0.2c-0.4,0.6-0.9,1.2-1.3,1.8c-0.2,0.3-0.4,0.5-0.6,0.8c-0.5,0.6-0.6,1.3-0.2,2c0.2,0.4,0.4,0.7,0.5,1.1 c0.3,0.8,0.8,1.2,1.7,1.3c0.5,0,1.1,0.1,1.6,0.2c0.5,0.1,1.1,0.2,1.6,0.2c0.2,0,0.3,0,0.3,0c0,0,0,0.1,0,0.2V27c0,0.1,0,0.1,0,0.2 c0,0-0.1,0-0.1,0c-0.6,0.1-1.1,0.1-1.7,0.2c-0.6,0.1-1.1,0.1-1.7,0.2c-0.7,0.1-1.2,0.5-1.5,1.2c-0.1,0.2-0.2,0.4-0.3,0.6 c-0.1,0.2-0.1,0.4-0.2,0.6c-0.4,0.7-0.3,1.6,0.2,2.2c0.3,0.4,0.6,0.8,0.9,1.2c0.3,0.4,0.7,0.9,1,1.3c0.1,0.1,0.1,0.2,0.2,0.2 c0,0-0.1,0.1-0.1,0.1l-3.3,3.3c-0.1,0.1-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.2-0.2c-0.2-0.2-0.5-0.4-0.7-0.5c-0.6-0.4-1.2-0.9-1.7-1.3 c-0.7-0.5-1.5-0.6-2.2-0.3l-0.3,0.2c-0.3,0.1-0.5,0.2-0.7,0.3c-0.8,0.3-1.2,0.8-1.3,1.7c0,0.5-0.1,0.9-0.2,1.4 c-0.1,0.6-0.2,1.2-0.2,1.7c0,0.1,0,0.2,0,0.2c0,0-0.1,0-0.2,0h-4.7c-0.1,0-0.1,0-0.1,0c0,0,0-0.1-0.1-0.2c-0.1-0.6-0.1-1.1-0.2-1.7 c-0.1-0.6-0.1-1.1-0.2-1.6c0-0.7-0.4-1.2-1.2-1.5c-0.3-0.1-0.8-0.3-1.2-0.5c-0.7-0.4-1.5-0.3-2.1,0.3c-0.5,0.4-0.9,0.7-1.3,1 c-0.4,0.3-0.8,0.6-1.3,1c-0.1,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.1-0.1L11.4,35c0,0-0.1-0.1-0.1-0.1c0,0,0.1-0.1,0.1-0.2 c0.4-0.6,0.9-1.2,1.3-1.8c0.2-0.3,0.4-0.5,0.6-0.8c0.5-0.7,0.6-1.4,0.3-2.1c-0.2-0.4-0.4-0.7-0.5-1.1c-0.2-0.7-0.8-1.2-1.7-1.3 c-0.5,0-1.1-0.1-1.6-0.2c-0.5-0.1-1.1-0.2-1.7-0.2c-0.1,0-0.2,0-0.2,0c0,0,0-0.1,0-0.2v-4.6c0-0.1,0-0.1,0-0.1c0,0,0.1,0,0.2-0.1 c0.6-0.1,1.1-0.1,1.7-0.2c0.6-0.1,1.1-0.1,1.6-0.2c0.7,0,1.2-0.4,1.4-1.1c0.1-0.2,0.2-0.4,0.3-0.6c0.1-0.2,0.1-0.4,0.2-0.5 c0.4-0.5,0.6-1.4-0.2-2.4c-0.6-0.7-1.2-1.5-2-2.5c0,0-0.1-0.1-0.1-0.1c0,0,0.1-0.1,0.1-0.1c0.1-0.1,0.1-0.1,0.2-0.2 c0.2-0.2,0.4-0.3,0.6-0.6c0.3-0.5,0.3-1.1,0-1.4c-0.2-0.3-0.4-0.4-0.7-0.4c-0.2,0-0.5,0-0.9,0.4L9.8,13c-0.8,1-0.9,2-0.1,3.1 c0.3,0.4,0.7,0.8,1,1.2c0.3,0.4,0.7,0.9,1.1,1.3l0,0.1c0,0.2-0.1,0.3-0.2,0.5c-0.1,0.2-0.2,0.4-0.2,0.6c0,0,0,0,0,0.1l-0.1,0 c-0.6,0.1-1.1,0.1-1.6,0.2c-0.5,0.1-1,0.1-1.6,0.2c-1.2,0.1-2,0.9-2,2.2v4.8c0,1.3,0.8,2.2,2.1,2.3c0.5,0,1.1,0.1,1.6,0.2 c0.5,0.1,1,0.1,1.6,0.2c0,0,0,0,0,0c0.1,0.2,0.2,0.4,0.2,0.6c0.1,0.2,0.2,0.4,0.3,0.6l-0.1,0.1c-0.3,0.4-0.7,0.9-1,1.3 c-0.3,0.4-0.7,0.9-1,1.3c-0.8,1-0.8,2.1,0.1,3l3.4,3.4c1,0.8,2,0.9,3.1,0.1c0.4-0.3,0.8-0.7,1.2-1c0.4-0.3,0.9-0.7,1.3-1l0.3,0.1 c0.3,0.1,0.6,0.3,0.9,0.4c0,0,0,0,0.1,0l0,0.1c0,0.5,0.1,1,0.2,1.5c0.1,0.6,0.2,1.1,0.2,1.7c0.1,1.2,0.9,2,2.2,2h4.8 c1.2,0,2.1-0.8,2.2-2.1c0-0.5,0.1-1.1,0.2-1.6c0.1-0.5,0.1-1,0.2-1.6l0.1,0c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.5-0.2 l0.1,0.1c0.2,0.2,0.5,0.4,0.7,0.5c0.6,0.4,1.2,0.9,1.8,1.4C35,41.1,36,41,37,40.1l3.3-3.3c0.9-1,0.9-2,0.1-3 c-0.6-0.8-1.2-1.6-2-2.5c0,0,0,0,0.1-0.2c0-0.2,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.6l0.1,0c0.9-0.1,1.9-0.2,2.9-0.3 c1.1-0.1,1.9-0.7,2.2-1.6l0-6.3C44.1,21.5,44,21.1,43.7,20.8z'/%3E%3Cpath class='st0' d='M34.8,21.7c-0.4-0.9-0.8-1.8-1.4-2.6c-0.2-0.4-0.7-0.6-1.3-0.4c-0.3,0.2-0.7,0.5-0.7,0.9 c0,0.3,0.1,0.5,0.2,0.6l0.1,0.2c1.3,2,1.7,4.4,1.2,6.6c-0.6,2.2-2,4.1-4.1,5.1c-0.1,0-0.2,0.1-0.4,0.2c-0.5,0.3-1.5,0.8-2.4,0.9 c-1.3,0.1-2.7-0.3-3.2-0.4c-0.1,0-0.2,0-0.2-0.1c-3.2-1.1-5.3-3.9-5.5-7.2c-0.2-3.1,1.6-6.3,4.3-7.6c3-1.4,5.9-1.2,8.6,0.6 c0.3,0.3,0.7,0.4,1,0.3c0.2,0,0.4-0.1,0.6-0.4c0.2-0.3,0.2-0.6,0.2-0.8c-0.1-0.3-0.3-0.6-0.6-0.8c-2.3-1.7-5-2.3-7.8-1.8 c-5.4,0.9-9,6-8.3,11.5c0.4,2.6,1.8,5,4,6.6c1.8,1.3,4,2,6.1,2c0.6,0,1.1,0,1.7-0.1c3-0.5,5.6-2.3,7.1-4.8 C35.4,27.6,35.7,24.5,34.8,21.7z'/%3E%3C/g%3E%3Cpolygon class='st0' points='25.7,24 25.7,21.4 24.5,21.4 24.5,24 22,24 22,25.1 24.5,25.1 24.5,27.7 25.7,27.7 25.7,25.1 28.2,25.1 28.2,24 '/%3E%3C/svg%3E%0A");
}


