@charset "UTF-8";
/**
***  codigo por generar SASS desde /assets/scss
***  iMac-de-Usuario:assets usuario$ sass --watch ./scss:./css
**/
/**
 * _colors
 */
/* azul */
/* azul + clarito */
/* azul + clarito + clarito */
/* blanco */
/* negro/gris */
/* negro/gris + claro */
/* gris */
/* gris + clarito */
/* orange */
.text-primary {
  color: #36699c !important;
}

.text-orange {
  color: #e19c5b !important;
}

.text-grey {
  color: #cccccc !important;
}

.text-dark-light {
  color: #999999 !important;
}

.bg-primary {
  background-color: #36699c !important;
}

.bg-secundary {
  background-color: #4978aa !important;
}

.bg-tertiary {
  background-color: #69a3e1 !important;
}

.bg-grey {
  background-color: #fafafa !important;
}

/**
 * _mixins 
 */
/**
***  codigo por generar SASS desde /assets/scss
***  iMac-de-Usuario:assets usuario$ sass --watch ./scss:./css
**/
html {
  margin: 0;
  padding: 0;
}

body {
  /* font-size: 16px; */
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  background-color: #ffffff;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  line-height: 1.7;
}

body.page {
  margin-bottom: 0;
}

.hide {
  display: none !important;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #e19c5b;
}
a:hover {
  cursor: pointer;
  text-decoration: none;
}
a:focus {
  outline-color: white;
}

ul {
  margin: 0;
  padding: 0;
  margin-left: 10px;
}

h1, h2, h3.h6 {
  position: relative;
  text-transform: uppercase;
  padding-bottom: 10px;
  color: #333333;
  font-weight: 300;
  width: 100%;
  font-family: "Nunito", sans-serif;
}
h1 strong, h2 strong, h3.h6 strong {
  font-weight: 700;
}
h1:before, h2:before, h3.h6:before {
  content: "";
  position: absolute;
  bottom: 0px;
  /* width: 8%; */
  height: 4px;
  left: 0;
  right: auto;
  border-radius: 0.3rem;
  background-color: #36699c;
}
h1:after, h2:after, h3.h6:after {
  content: "";
  position: absolute;
  bottom: 0px;
  /* width: 2%; */
  height: 4px;
  left: 0;
  right: auto;
  border-radius: 0.3rem;
  background-color: #36699c;
  /* margin-left: 9%; */
}

.cabecera h2 {
  text-transform: none;
  font-size: 1.2rem !important;
}

h5, .h5 {
  font-size: 1rem;
}

h5 strong,
.h5 strong {
  font-size: 1em;
}

.text-md-right h1:before, .text-md-right h2:before, .text-md-right h3.h6:before,
.text-lg-right h1:before,
.text-lg-right h2:before,
.text-lg-right h3.h6:before {
  left: auto;
  right: 0;
  bottom: -5px;
  /* width: 2%; */
}
.text-md-right h1:after, .text-md-right h2:after, .text-md-right h3.h6:after,
.text-lg-right h1:after,
.text-lg-right h2:after,
.text-lg-right h3.h6:after {
  left: auto;
  right: 0;
  /* width: 8%; */
  bottom: -5px;
  margin-left: auto;
  /* margin-right: 3%; */
}

/*  */
h2.text-white:before, h2.text-white:after,
h3.h6.text-white:before,
h3.h6.text-white:after {
  background-color: white;
}

h3, h4 {
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  color: #36699c;
}

.btn {
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 5px;
  border: 0;
  padding: 3px 10px;
  background-color: #333333;
  color: #ffffff;
  border-radius: 0.5rem;
}
.btn:hover {
  background-color: #cccccc;
  color: #333333;
}

.btn-large {
  text-transform: uppercase;
  padding: 10px 25px;
}

/* LINEA ROTTA */
.line-bottom {
  position: relative;
  height: 7px;
  width: 100%;
}
.line-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  width: 10%;
  background-color: #36699c;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.line-bottom:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 7px;
  width: 85%;
  background-color: #36699c;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.line-top {
  position: relative;
  height: 7px;
  width: 100%;
}
.line-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  width: 85%;
  background-color: #36699c;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.line-top:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 7px;
  width: 10%;
  background-color: #36699c;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

/* Homepage 100vh    height */
header {
  /* height:80px; */
  width: 100%;
}
header .btn-azul {
  margin-top: 20px;
}

.language a img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.language a:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.flex {
  /*
  display: flex;
  height: 100vh;
  flex-direction: column;
  */
}
.flex .contenido-restante {
  background-color: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /* height: 100px; */
  width: 100%;
}

.flex.open {
  height: auto !important;
}

.more-content {
  opacity: 0;
}

.more-content.visible {
  opacity: 1 !important;
  height: 100% !important;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

#accordion .card-header {
  padding: 0;
}
#accordion .card-header button {
  padding: 0.75rem 1.25rem;
  width: 100%;
  text-align: left;
}

.btn-azul {
  display: inline-block;
  font-size: 1em !important;
  text-transform: uppercase !important;
  padding: 0 15px !important;
  line-height: 40px !important;
  border-radius: 0.2rem !important;
  background-color: #36699c !important;
  color: #ffffff !important;
  height: 40px !important;
  margin-top: 20px !important;
  z-index: 1 !important;
  position: relative !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-azul:hover {
  background-color: #e19c5b !important;
}

.btn-grey {
  display: inline-block;
  font-size: 1em !important;
  text-transform: uppercase !important;
  padding: 0 15px !important;
  line-height: 40px !important;
  border-radius: 0.2rem !important;
  background-color: #cccccc;
  color: #333333 !important;
  height: 40px !important;
  margin-top: 20px !important;
  z-index: 1 !important;
  position: relative !important;
}
.btn-grey:hover {
  background-color: #ffffff;
}

.btn-flecha {
  position: relative;
  padding-left: 40px !important;
}
.btn-flecha:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f104";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #69a3e1;
  border-right: 1px solid #fafafa;
  border-top-left-radius: 0.2rem !important;
  border-bottom-left-radius: 0.2rem !important;
}

.btn-show {
  position: relative;
  padding-left: 40px !important;
}
.btn-show:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 100;
  content: "\f06e";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #e19c5b;
  border-right: 1px solid #fafafa;
  border-top-left-radius: 0.2rem !important;
  border-bottom-left-radius: 0.2rem !important;
}
.btn-show:hover:before {
  background-color: white;
  border-right: 1px solid #36699c;
}

#select_tipo_recursos {
  width: 200px;
}

.pop-evento {
  width: 430px;
  height: 290px;
  background-color: #ffffff;
  position: fixed;
  top: 35%;
  right: -385px;
  /* -385px */
  z-index: 9999999;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  overflow: hidden;
  line-height: 35px;
  -webkit-box-shadow: 0 0px 30px #666;
          box-shadow: 0 0px 30px #666;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pop-evento a.title.closed {
  position: absolute;
  top: 125px;
  left: -125px;
  width: 300px;
  height: 50px;
  background-color: #e19c5b;
  display: block;
  padding-left: 25px;
  z-index: 999;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  /* Legacy vendor prefixes that you probably don't need... */
  /* Safari */
}
.pop-evento a.title.closed span {
  color: #fff;
  display: block;
  padding-top: 5px;
}
.pop-evento .img {
  width: 180px;
  height: 100%;
  background-color: #36699c;
  position: absolute;
  top: 0;
  left: 0px;
}
.pop-evento .texto {
  width: 250px;
  height: 100%;
  background-color: #fff;
  position: relative;
  top: 0;
  left: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pop-evento .texto .titulo {
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 140%;
  padding-bottom: 20px;
}
.pop-evento .texto .contenido {
  color: #666;
  line-height: 160%;
  font-size: 0.8rem;
}
.pop-evento .texto .contenido p {
  margin-bottom: 0;
}
.pop-evento .texto .link {
  padding-top: 20px;
  color: #36699c;
}
.pop-evento .texto .link i,
.pop-evento .texto .link svg {
  font-size: 0.7rem;
  margin: 5px;
}
.pop-evento .texto .link:hover {
  color: #e19c5b;
}
.pop-evento .opened {
  float: right;
  width: 25px;
  text-align: center;
  position: absolute;
  right: 0px;
  top: 10px;
  height: 25px;
  color: #36699c;
}
.pop-evento .opened:visited {
  color: #36699c;
}
.pop-evento .arrow.closed {
  position: absolute;
  top: 10px;
  left: 0px;
  width: 45px;
  text-align: center;
  color: #ffffff;
  z-index: 999;
}
.pop-evento.opened {
  right: 0px;
}

/*
.btn-azul {
  display: inline-block;
  font-size: 1em !important;
  text-transform: uppercase !important;
  padding: 0 15px !important;
  line-height: 40px !important;
  border-radius: .2rem !important;
  background-color: $col_primary !important;
  color: $col_light !important;
  height: 40px !important;
  margin-top: 20px !important;

  background: rgba(54,105,156,1) !important;
  background: -moz-linear-gradient(-45deg, rgba(54,105,156,1) 0%, rgba(139,181,224,1) 77%, rgba(139,181,224,1) 100%) !important;
  background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(54,105,156,1)), color-stop(77%, rgba(139,181,224,1)), color-stop(100%, rgba(139,181,224,1))) !important;
  background: -webkit-linear-gradient(-45deg, rgba(54,105,156,1) 0%, rgba(139,181,224,1) 77%, rgba(139,181,224,1) 100%) !important;
  background: -o-linear-gradient(-45deg, rgba(54,105,156,1) 0%, rgba(139,181,224,1) 77%, rgba(139,181,224,1) 100%) !important;
  background: -ms-linear-gradient(-45deg, rgba(54,105,156,1) 0%, rgba(139,181,224,1) 77%, rgba(139,181,224,1) 100%) !important;
  background: linear-gradient(135deg, rgba(54,105,156,1) 0%, rgba(139,181,224,1) 77%, rgba(139,181,224,1) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36699c', endColorstr='#8bb5e0', GradientType=1 ) !important;

  z-index: 1 !important;
  position: relative !important;

  &:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity:0;
    z-index: 2;
    border-radius: .2rem;

    background: rgba(54,105,156,1);
    background: -moz-linear-gradient(-155deg, rgba(54,105,156,1) 0%, rgba(139,181,224,1) 77%, rgba(139,181,224,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(54,105,156,1)), color-stop(77%, rgba(139,181,224,1)), color-stop(100%, rgba(139,181,224,1)));
    background: -webkit-linear-gradient(-155deg, rgba(54,105,156,1) 0%, rgba(139,181,224,1) 77%, rgba(139,181,224,1) 100%);
    background: -o-linear-gradient(-155deg, rgba(54,105,156,1) 0%, rgba(139,181,224,1) 77%, rgba(139,181,224,1) 100%);
    background: -ms-linear-gradient(-155deg, rgba(54,105,156,1) 0%, rgba(139,181,224,1) 77%, rgba(139,181,224,1) 100%);
    background: linear-gradient(-155deg, rgba(54,105,156,1) 0%, rgba(139,181,224,1) 77%, rgba(139,181,224,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36699c', endColorstr='#8bb5e0', GradientType=1 );

    transition: opacity 0.5s ease-out;
  }


  &:hover {
    &:after {
      color: $col_dark;
      opacity:1;
    }

    span {
      color:$col_dark;
    }
  }

  span {
    @include transition(1s);
    position: relative;
    z-index: 3;
    color:$col_light;
  }

}
*/
.btn-naranja {
  display: inline-block;
  font-size: 1em !important;
  text-transform: uppercase;
  padding: 0 15px !important;
  line-height: 40px !important;
  border-radius: 0.2rem !important;
  background-color: #e19c5b !important;
  border: 1px solid #e19c5b !important;
  color: #ffffff !important;
  height: 40px;
  margin-top: 20px;
  border-color: transparent !important;
}
.btn-naranja:visited {
  color: #ffffff;
}
.btn-naranja:hover {
  background-color: #ffffff;
  color: #36699c;
  border: 1px solid #36699c !important;
}

.btn-naranja-outline {
  display: inline-block;
  font-size: 1em !important;
  text-transform: uppercase;
  padding: 0 15px !important;
  line-height: 40px !important;
  border-radius: 0.2rem !important;
  background-color: transparent;
  border: 1px solid #e19c5b;
  color: #e19c5b;
  height: 40px;
  margin-top: 20px;
}
.btn-naranja-outline span {
  color: #e19c5b;
}
.btn-naranja-outline:hover {
  background-color: #e19c5b;
  border-color: #e19c5b;
}
.btn-naranja-outline:hover span {
  color: #ffffff;
}

/*
.btn-naranja {
  display: inline-block;
  font-size: 1em !important;
  text-transform: uppercase;
  padding: 0 15px !important;
  line-height: 40px !important;
  border-radius: .2rem !important;
  color: $col_light;
  height: 40px;
  margin-top: 20px;
  border-color: transparent !important;

  background-image: rgba(225,156,91,1) !important;
  background-image: -moz-linear-gradient(-45deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%) !important;
  background-image: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(225,156,91,1)), color-stop(98%, rgba(235,194,155,1)), color-stop(100%, rgba(235,194,155,1))) !important;
  background-image: -webkit-linear-gradient(-45deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%) !important;
  background-image: -o-linear-gradient(-45deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%) !important;
  background-image: -ms-linear-gradient(-45deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%) !important;
  background-image: linear-gradient(135deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e19c5b', endColorstr='#ebc29b', GradientType=1 ) !important;

  z-index: 1;
  position: relative;
  color: $col_light !important;

  &:hover {
    background-image: rgba(225,156,91,1);
    background-image: -moz-linear-gradient(-145deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%) !important;
    background-image: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(225,156,91,1)), color-stop(98%, rgba(235,194,155,1)), color-stop(100%, rgba(235,194,155,1))) !important;
    background-image: -webkit-linear-gradient(-145deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%) !important;
    background-image: -o-linear-gradient(-145deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%) !important;
    background-image: -ms-linear-gradient(-145deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%) !important;
    background-image: linear-gradient(-145deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e19c5b', endColorstr='#ebc29b', GradientType=1 ) !important;

    color: $col_dark !important;
  }

  &:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity:0;
    z-index: 2;
    border-radius: .2rem;

    background-image: rgba(225,156,91,1);
    background-image: -moz-linear-gradient(-145deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%);
    background-image: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(225,156,91,1)), color-stop(98%, rgba(235,194,155,1)), color-stop(100%, rgba(235,194,155,1)));
    background-image: -webkit-linear-gradient(-145deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%);
    background-image: -o-linear-gradient(-145deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%);
    background-image: -ms-linear-gradient(-145deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%);
    background-image: linear-gradient(-145deg, rgba(225,156,91,1) 0%, rgba(235,194,155,1) 98%, rgba(235,194,155,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e19c5b', endColorstr='#ebc29b', GradientType=1 );

    transition: opacity 0.5s ease-out;
  }


  &:hover {
    &:after {
      color: $col_dark;
      opacity:1;
    }

    span {
      color:$col_dark;
    }
  }

  span {
    @include transition(1s);
    position: relative;
    z-index: 3;
    color:$col_light;
  }



}
*/
.btn-gris {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0 15px;
  line-height: 40px;
  border-radius: 0.2rem;
  background-color: #cccccc;
  color: #333333;
  height: 40px;
  margin-top: 20px;
}
.btn-gris:visited {
  color: #333333;
}

.btn-play-small {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0 15px;
  line-height: 40px;
  border-radius: 0.2rem;
  background-color: #e19c5b;
  color: #333333;
  height: 40px;
  margin-top: 20px;
}
.btn-play-small:visited {
  color: #36699c;
}

section {
  background-color: #ffffff;
}

section.cabecera {
  min-height: 200px;
}

.wpcf7-textarea {
  height: 100px;
}

/* CAROUSEL */
.slick-dots {
  bottom: -50px;
}
.slick-dots li {
  margin: 0 2px;
}
.slick-dots li button:before {
  font-size: 15px;
}
.slick-dots li.slick-active button:before {
  color: #36699c;
}

/* CABECERA */
section.cabecera {
  background-color: #36699c;
  position: relative;
  border: 0px solid green;
}
section.cabecera .row.bread {
  position: absolute;
  bottom: -22px;
  left: 0;
  height: 40px;
  width: 100%;
  text-align: center;
  margin: 0;
}
section.cabecera h2 {
  color: #cccccc;
}
section.cabecera .breadcrumbs {
  display: inline-block;
  list-style: none;
  height: 40px;
  line-height: 36px;
}
section.cabecera .breadcrumbs li {
  padding: 0 10px;
  background-color: #ffffff;
  display: inline-block;
  border: 1px solid #cccccc;
  border-left: 0;
}
section.cabecera .breadcrumbs li a {
  color: #333333;
}
section.cabecera .breadcrumbs li:hover {
  background-color: #36699c;
  color: #ffffff;
}
section.cabecera .breadcrumbs li:hover a {
  color: #ffffff;
}
section.cabecera .breadcrumbs li:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-left: 1px solid #cccccc;
}
section.cabecera .breadcrumbs li:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background-color: #36699c;
  color: #ffffff;
}

#breadcrumbs a:visited {
  color: #e19c5b;
}
#breadcrumbs a:hover {
  color: #36699c;
}

.price {
  font-size: 1.6rem;
  font-weight: lighter;
}
.price span {
  padding-left: 5px;
  padding-right: 5px;
  font-size: 3rem;
  font-weight: 700;
}

.plan {
  font-size: 2rem;
}

/* CONTENIDO */
.intro {
  /*
  background-image: url('../img/bg-cover.png');
  background-position: 0px -110px; */
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.intro h1 {
  color: #ffffff;
  font-weight: 300;
}
.intro h1:before, .intro h1:after {
  height: 0;
}
.intro h1 strong {
  font-weight: 700;
}
.intro h2 {
  color: #333333;
}
.intro h2.subtitle {
  color: #cccccc;
}
.intro h2.no-line {
  text-transform: none;
  color: #cccccc;
}
.intro h2.no-line:before, .intro h2.no-line:after {
  height: 0;
}

/* SUBTITULO INICIO HOMEPAGE */
.contenido-intro h2 {
  font-size: 1.1rem !important;
}

#accordion .card {
  margin-bottom: 10px;
}
#accordion .card button {
  border: 0;
  background-color: transparent;
}

/* PILARES */
section.pilares {
  position: relative;
  z-index: 999;
}

section.pilares,
section.list-items {
  min-height: 400px;
  /*
  background-color: $col_grey_light;
  border-top:1px solid $col_grey;
  border-bottom:1px solid $col_grey;
  */
  /*
  background-image: url('../img/circle.png');
  background-position: -150px 70px;
  background-repeat: no-repeat;
  */
}
section.pilares h3 a,
section.list-items h3 a {
  color: #333333;
  font-weight: 700;
}
section.pilares h3 a:hover,
section.list-items h3 a:hover {
  color: #e19c5b;
}
section.pilares h3 a.active,
section.list-items h3 a.active {
  color: #e19c5b;
}
section.pilares .content-img-mobile img,
section.list-items .content-img-mobile img {
  /*border:7px solid $col_orange;
  border-radius: .5rem;*/
  display: none;
}
section.pilares .content-img-mobile.active img,
section.list-items .content-img-mobile.active img {
  display: block;
}
section.pilares .card,
section.list-items .card {
  min-height: 400px;
}
section.pilares .card .card-body,
section.list-items .card .card-body {
  padding: 0 !important;
}
section.pilares .card .card-body .card-text,
section.list-items .card .card-body .card-text {
  padding: 1.25rem;
  min-height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.pilares .card .card-body .card-text p,
section.list-items .card .card-body .card-text p {
  margin-bottom: 0;
}
section.pilares .card-small,
section.list-items .card-small {
  min-height: 200px;
}
section.pilares h5,
section.list-items h5 {
  font-size: 1.1rem;
}
section.pilares h5 a:visited,
section.list-items h5 a:visited {
  color: #e19c5b;
}
section.pilares h5 a:hover,
section.list-items h5 a:hover {
  color: #ffffff;
}
section.pilares .card-header,
section.list-items .card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.pilares .card-header h5,
section.list-items .card-header h5 {
  margin: auto !important;
}
section.pilares .card-header h5 img,
section.list-items .card-header h5 img {
  float: left;
  margin-top: 5px;
}
section.pilares .card-header h5 span,
section.list-items .card-header h5 span {
  float: left;
  display: block;
  color: #e19c5b;
}
section.pilares .bloque-pilar .icono,
section.list-items .bloque-pilar .icono {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
section.pilares .bloque-pilar .icono.active,
section.list-items .bloque-pilar .icono.active {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

section.list-items .card {
  min-height: 350px;
}
section.list-items .card-small {
  min-height: 200px !important;
}

/* todas las cards */
.card-body a h5 {
  color: #36699c;
}
.card-body a h5:hover {
  color: #e19c5b;
}
.card-body a .card-text {
  color: #999999;
}
.card-body .card-text {
  min-height: 70px;
}

.fecha-articulo {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  color: white;
  background-color: #e19c5b;
  font-size: 0.9em;
}

.tipo {
  position: absolute;
  top: 5px;
  left: 10px;
}

/* CONOCES ANJANA */
section.anjana {
  min-height: 200px;
  background-color: #ffffff;
}
section.anjana h4 {
  padding-bottom: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
}
section.anjana img {
  /* border:7px solid $col_tertiary; */
  border-radius: 0.5rem;
}
section.recursos {
  /* min-height: 800px; */
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  /*
  background-image: url('../img/bg-recursos.png');
  background-position: center;
  */
  background-size: 100% auto;
  background-repeat: no-repeat;
}
section.recursos .content-thumb {
  color: #cccccc;
  font-size: 0.8rem;
}
section.recursos .contenido-obliquo {
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #36699c;
  z-index: 0;
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.cat-recursos .card .btn-naranja {
  font-size: 0.9em !important;
}

.bloque-contenido-recursos {
  padding-top: 0%;
}

body.single-los_recursos .container .contenido {
  overflow: hidden;
}
body.single-los_recursos .container .contenido h6 {
  font-size: 0.7rem;
  margin-top: 0px;
  text-transform: none;
  color: inherit;
}

.cat-videos .card a {
  color: #e19c5b;
}
.cat-videos .card a .play_icon {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  z-index: 9;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -30px;
  background-image: url("../img/icon_play.png");
  background-size: 50px;
  opacity: 0.9;
  /*
  &:after {
    content: '\f144';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size:2.8rem;
  }
  */
}
.cat-videos .card a .play_icon:hover {
  opacity: 0.8;
  cursor: pointer;
}
.cat-videos .card a:visited {
  color: #e19c5b;
}
.cat-videos .card a:hover {
  color: #36699c;
}

/**/
section.escaparate {
  background-color: #ffffff;
}
section.escaparate .card {
  position: relative;
}
section.escaparate .card .footer-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background-color: #fafafa;
  line-height: 32px;
  border-top: 1px solid #eee;
  color: #888;
  overflow: hidden;
}
section.escaparate .card .footer-card .fecha {
  font-size: 12px;
  width: 49%;
  float: left;
}
section.escaparate .card .footer-card .fecha i {
  padding-right: 5px;
  font-size: 16px;
}
section.escaparate .card .footer-card .tipo {
  font-size: 12px;
  width: 49%;
  float: right;
  text-align: right;
  text-transform: uppercase;
}
section.escaparate .card .footer-card .tipo i {
  padding-left: 5px;
  font-size: 16px;
}
section.escaparate .card .card-title {
  font-family: "Nunito", sans-serif;
}
section.escaparate .card .card-title a {
  color: #36699c;
}
section.escaparate .card .card-title a:hover {
  color: #333333;
}
section.escaparate .card .card-text {
  line-height: 1.2;
  height: 53px;
  display: block;
  overflow: hidden;
}

.card-title.h40 {
  height: 42px;
}

/* LLAMADA A LA ACCION */
section.llamada-accion .card {
  -webkit-box-shadow: 0 0 10px #666;
          box-shadow: 0 0 10px #666;
  min-height: 200px;
  padding: 20px;
}

section.list-items .card {
  -webkit-transition: all 1s;
  transition: all 1s;
}
section.list-items .card .card-header h5 span {
  -webkit-transition: all 1s;
  transition: all 1s;
}
section.list-items .card:hover {
  -webkit-box-shadow: 0 0 20px #666;
          box-shadow: 0 0 20px #666;
  /*
  background-color: $col_tertiary;
  color: $col_light;

  .card-header {

    background-color: #f7f7f7;
    h5 {
      span { color: $col_primary; }
    }

  }*/
}

section.steps .card {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
section.steps .card h5 {
  font-weight: bold;
}
section.steps .card img {
  width: 80px;
  margin: 0 auto;
}
section.steps .card span {
  font-size: 0.8rem;
}
section.steps .card:hover {
  -webkit-box-shadow: 0 0 20px #333;
          box-shadow: 0 0 20px #333;
  /* transform: scale(1.02); */
}
section.steps ul {
  margin-left: 0;
}

section.new-steps .card {
  min-height: 200px;
}

.articulo a:visited {
  color: #e19c5b;
}
.articulo a:hover {
  color: #36699c;
}
.articulo h1.h4 {
  text-transform: none;
  font-size: 1.7rem;
}
.articulo h2.title {
  color: #36699c;
  font-size: 1.8rem;
  font-weight: 500;
}

.love {
  margin: 0 !important;
}
.love .dashicons,
.love .LoveCount {
  margin-top: -4px;
}
.love .LoveCheck:checked + .LoveLabel {
  color: #e19c5b;
}

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

/*
  UL
*/
.navbar {
  padding: 0;
  width: 100%;
}

.navbar-collapse {
  width: 100%;
}

ul.navbar-nav {
  width: 100%;
}
ul.navbar-nav li.menu-item-type-post_type .dropdown-menu,
ul.navbar-nav li.menu-item-type-post_type ul.sub-menu,
ul.navbar-nav li.menu-item-type-custom .dropdown-menu,
ul.navbar-nav li.menu-item-type-custom ul.sub-menu {
  border-radius: 0;
  margin: 0;
  padding: 0;
  left: -13px !important;
  /* padding-bottom: 20px; */
}
ul.navbar-nav li.menu-item-type-post_type .dropdown-menu li.menu-item,
ul.navbar-nav li.menu-item-type-post_type ul.sub-menu li.menu-item,
ul.navbar-nav li.menu-item-type-custom .dropdown-menu li.menu-item,
ul.navbar-nav li.menu-item-type-custom ul.sub-menu li.menu-item {
  line-height: 35px;
}
ul.navbar-nav li.menu-item-type-post_type .dropdown-menu li.menu-item a,
ul.navbar-nav li.menu-item-type-post_type ul.sub-menu li.menu-item a,
ul.navbar-nav li.menu-item-type-custom .dropdown-menu li.menu-item a,
ul.navbar-nav li.menu-item-type-custom ul.sub-menu li.menu-item a {
  color: #36699c;
  /*padding: 0rem 1.5rem 1rem 1.5rem !important;*/
  padding: 0.3rem 1.5rem;
  text-transform: capitalize;
}
ul.navbar-nav li.menu-item-type-post_type .dropdown-menu li.menu-item a:hover,
ul.navbar-nav li.menu-item-type-post_type ul.sub-menu li.menu-item a:hover,
ul.navbar-nav li.menu-item-type-custom .dropdown-menu li.menu-item a:hover,
ul.navbar-nav li.menu-item-type-custom ul.sub-menu li.menu-item a:hover {
  color: #e19c5b !important;
}
ul.navbar-nav li.menu-item-type-post_type .dropdown-menu small,
ul.navbar-nav li.menu-item-type-post_type ul.sub-menu small,
ul.navbar-nav li.menu-item-type-custom .dropdown-menu small,
ul.navbar-nav li.menu-item-type-custom ul.sub-menu small {
  display: block;
  clear: both;
  padding: 0;
  margin-top: -10px;
  line-height: 15px;
  font-style: italic;
  color: #ccc;
}
ul.navbar-nav .dropdown-menu {
  position: absolute;
}

/*
menu-item-type-post_type menu-item-object-page menu-item-home  page_item
menu-item-type-custom menu-item-object-custom
*/
li.menu-item.show ul {
  display: block;
}

.dropdown-menu.show {
  position: absolute;
  -webkit-transform: translate3d(15px, 80px, 0px);
          transform: translate3d(15px, 80px, 0px);
  top: 0px;
  left: 0px;
  will-change: transform;
}

ul.listado,
.contenido ul {
  list-style: none !important;
  /* Remove default bullets */
  margin-left: 15px;
}
ul.listado li a,
.contenido ul li a {
  display: inline-block;
}
ul.listado li a:visited,
.contenido ul li a:visited {
  color: #e19c5b;
}
ul.listado li a:hover,
.contenido ul li a:hover {
  color: #36699c;
}

ul.listado li::before,
.contenido ul li::before {
  content: "•";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #36699c;
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
  margin-top: 2px;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  float: left;
}

.text-white ul.listado {
  margin-left: 15px;
}
.text-white ul.listado li:before {
  color: #cccccc;
  margin-top: 2px;
}

.list-architecture {
  /*
    ul.listado {
      margin-right: 15px;
      margin-left: auto;

      li:before {
        content: "\f104" !important;
        margin-right: -1em !important;
        margin-left: auto !important;
        float: right !important;
      }
    }
    */
}
.list-architecture ul {
  list-style: none;
  /*
    li {
      padding:10px;

      &:hover {
        box-shadow: 0 0px 10px #999;
      }
    }
  */
}
.list-architecture ul li h4 {
  color: #ffffff;
  padding-bottom: 0;
}

/* CAROUSEL FUNCIONALIDADES */
.funcionalidades .slick-dots {
  width: 38%;
  right: 0;
}

.funcionalidades .row {
  position: relative;
  /*height: 300px;*/
}
.funcionalidades .row .slick-funcionalidades {
  /*position: relative; */
  /*position: absolute; */
  /*width: 100%;*/
}
.funcionalidades .row .slick-funcionalidades .imagen img {
  border: 1px solid #ccc;
  float: right;
  padding: 5px;
}

.slider-nav {
  /* position: absolute; */
  width: 100%;
}
.slider-nav .slick-slide {
  text-align: center;
  border: 1px solid #ccc;
  margin-left: 5px;
  margin-right: 5px;
}
.slider-nav .slick-slide img {
  width: 100%;
  height: auto;
  opacity: 0.4;
  margin: auto;
}
.slider-nav .slick-slide.slick-current {
  border-color: #e19c5b;
}
.slider-nav .slick-slide.slick-current img {
  opacity: 1;
}

/* GLIDE */
/*
.glide { border:0px solid red; padding-bottom: 150px; }*/
.glide__slides {
  padding: 50px 0 0 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.glide__arrow {
  top: auto;
  padding: 0;
  color: #666;
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 2.3rem;
}

/* font-size: 1.7rem */
/*.glide__arrow--left { left: 4em; }
.glide__arrow--right { right: 4em; }*/
.glide_info {
  /*position: absolute; */
  width: 100%;
  text-align: center;
  text-align: center;
  border: 0px solid;
  margin-top: 10px;
}
.glide_info h5 {
  text-transform: uppercase;
  color: #e19c5b;
  font-size: 1.4em;
}
.glide_info h6 {
  line-height: 140%;
  display: block;
  width: 60%;
  margin: auto;
  color: #999999;
}

.glide__slide {
  position: relative;
  overflow: hidden;
  display: inline-block;
  /* min-height: 275px; transform: scale(.5); */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /* Disabled HREF */
  pointer-events: none;
  cursor: default;
}

.glide__slide.glide__slide--active {
  /* ACTIVE HREF */
  pointer-events: auto;
  cursor: pointer;
}

.glide__slide img {
  opacity: 0.5;
  /* border:4px solid $col_primary; */
  position: absolute;
  top: 0;
  left: 1px;
  width: 99%;
  height: auto;
  padding-bottom: 0px;
  /*outline: 5px solid $col_primary;
  outline-offset: -5px;*/
}

.glide__slide.glide__slide--active img {
  opacity: 1;
  /* border:2px solid $col_orange; */
  /* outline: 3px solid $col_orange; outline-offset: -3px; */
}

.partners .socio {
  border: 0px solid #ccc;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.partners .socio .info {
  background-color: #fafafa;
  border-top: 1px solid #ccc;
  max-height: 100px;
  height: 100px;
}
.partners .socio .info h3 {
  padding: 0;
  margin: 0;
  color: #333333;
}
.partners .socio .info span {
  font-size: 0.8rem;
  color: #999999;
}
.partners .socio:hover {
  border: 0px solid #e19c5b;
  opacity: 0.7;
}
.partners .logos .tapa {
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.partners .logos .tapa img {
  padding: 0 10px;
  height: auto;
  width: auto;
  opacity: 0.8;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: auto;
  max-height: 90px;
}
.partners .logos .tapa img:hover {
  opacity: 1;
}
.partners .logos .tapa img {
  opacity: 1;
}

.content-logo {
  border-bottom: 1px solid #ccc;
  margin: 0 15px;
  height: 200px;
}

.item-list {
  font-size: 1rem;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0;
}
.item-list:last-child {
  border-bottom: 0px;
}

.item-list a,
.item-list a:visited {
  color: #36699c;
}

.item-list a:hover {
  color: #e19c5b;
}

.lines-effect {
  display: inline-block;
  position: relative;
  color: #36699c;
  text-transform: uppercase;
  width: 100%;
  overflow: hidden;
}
.lines-effect span {
  background-color: white;
  display: inline;
  display: inline-block;
  position: relative;
}
.lines-effect span:before, .lines-effect span:after {
  content: "";
  position: absolute;
  width: 680px;
  height: 2px;
  background-color: currentColor;
  top: 0.6rem;
}
.lines-effect span:before {
  left: -700px;
}
.lines-effect span:after {
  right: -700px;
}

svg {
  font-size: 1.2rem !important;
  padding-top: 4px;
}

.box-posts {
  min-height: 200px;
  -webkit-box-shadow: 0 0 10px #999999;
          box-shadow: 0 0 10px #999999;
}
.box-posts .content-logo {
  border-bottom: 1px solid #ccc;
  margin: 0 15px;
  height: 200px;
}

ul.list-entradas-socio li {
  border-bottom: 1px solid #cccccc;
}
ul.list-entradas-socio li a {
  font-size: 0.8rem;
}
ul.list-entradas-socio li i, ul.list-entradas-socio li svg {
  color: #36699c;
}
ul.list-entradas-socio li:last-child {
  border: 0;
}

.subtitulo_contenido ul {
  font-size: 1.2rem;
  padding: 0;
  margin: 40px 0 0 0px;
}
.subtitulo_contenido ul li {
  color: #333333;
  list-style-type: none;
  position: relative;
  padding-left: 30px;
}
.subtitulo_contenido ul li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  position: absolute;
  top: 4px;
  left: 0;
  color: #36699c;
  padding-right: 20px;
}

i.fa-quote-left,
svg.fa-quote-left {
  color: #36699c;
  font-size: 3.5rem;
}

.quote, quote {
  font-style: italic;
  font-size: 2rem;
  line-height: 2.7rem;
  font-weight: lighter;
  color: #65665C;
}

.quote-author {
  font-weight: 900;
}

.author-title {
  font-weight: 500;
}

/* Sobre Anjana */
/*
.page-iconos {
  img {
    border: 7px solid #69a3e1;
    border-radius: .5rem;
  }
}
*/
section.iconos ul li a:hover {
  opacity: 0.7;
}

/* FORM */
form label span.obl {
  color: red;
  padding-left: 5px;
}

.form-socios .label {
  width: 100%;
}
.form-socios .label input {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid #ccc;
  margin-top: 5px;
}
.form-socios #label-5 {
  border: 0px solid #ccc;
  width: 100%;
}
.form-socios #label-5 textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 5px;
  margin-top: 5px;
  border-radius: 0.25rem;
}
.form-socios .wpcf7-submit {
  border: 0;
}
.form-socios .wpcf7-submit.btn-azul.disabled {
  opacity: 0.5;
}

/* Form Portal del Clinete */
.form .input-group input.form-control {
  text-indent: 10px;
}

.card-text a.collapsed {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.card-text a {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  top: 10px;
  right: 15px;
}
.card-text a:hover {
  color: white;
}

.form-certificacion {
  padding-left: 0;
}
.form-certificacion .wpcf7-list-item {
  margin-left: 0;
}
.form-certificacion .wpcf7-list-item .form-check-input {
  position: relative;
  margin: auto;
  margin-right: 10px;
}

#form-certificacion .wpcf7-submit {
  margin-bottom: 0;
  margin-top: 30px;
}

#texto_email {
  display: none;
}

/* Contacto */
ul.info-contacto li.mapa a {
  color: #36699c;
}
ul.info-contacto li.mapa a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3c5";
  padding-right: 15px;
  font-size: 1.2rem;
}
ul.info-contacto li.email a {
  color: #36699c;
}
ul.info-contacto li.email a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f658";
  padding-right: 15px;
  font-size: 1.2rem;
}
ul.info-contacto li {
  list-style: none;
  padding-top: 10px;
}
ul.info-contacto li a:hover {
  color: #e19c5b;
}

.slick-prev::before,
.slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  color: #cccccc;
}

.slick-next::before {
  content: "\f054";
}

/* SECTION:  ARCHIVOS (Portal del Cliente) */
.container .logo-archivos .logo-archivo {
  text-align: center;
  border: 0px solid #ccc;
  padding: 10px;
  margin: 0 15px;
}
.container .logo-archivos .logo-archivo a img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-top: 20px;
}
.container .logo-archivos .logo-archivo a h3 {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-top: 20px;
}
.container .logo-archivos .logo-archivo a:hover img {
  opacity: 0.7;
}
.container .logo-archivos .logo-archivo a:hover h3 {
  color: #e19c5b;
}

/* IMPORTANT: Página interna ARCHVOS */
.download-template-default #archivos-detalle .content-list-categories,
.files-template-default #archivos-detalle .content-list-categories {
  border-right: 2px dotted #ccc;
  padding: 20px 40px 0 0;
}
.download-template-default #archivos-detalle .content-list-categories .category-files a .thumb,
.files-template-default #archivos-detalle .content-list-categories .category-files a .thumb {
  width: 15%;
  float: left;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.download-template-default #archivos-detalle .content-list-categories .category-files a .thumb img,
.files-template-default #archivos-detalle .content-list-categories .category-files a .thumb img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.download-template-default #archivos-detalle .content-list-categories .category-files a .title,
.files-template-default #archivos-detalle .content-list-categories .category-files a .title {
  width: 85%;
  float: left;
  color: #36699c;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.download-template-default #archivos-detalle .content-list-categories .category-files a:hover .title,
.files-template-default #archivos-detalle .content-list-categories .category-files a:hover .title {
  color: #e19c5b;
}
.download-template-default #archivos-detalle .content-list-categories .category-files a:hover .thumb,
.files-template-default #archivos-detalle .content-list-categories .category-files a:hover .thumb {
  opacity: 1;
}
.download-template-default #archivos-detalle .content-list-categories .category-files.active,
.files-template-default #archivos-detalle .content-list-categories .category-files.active {
  background-color: #fafafa;
}
.download-template-default #archivos-detalle .content-list-categories .category-files.active .title,
.files-template-default #archivos-detalle .content-list-categories .category-files.active .title {
  color: #e19c5b;
}
.download-template-default #archivos-detalle .content-list-categories .category-files:not(.active) img,
.files-template-default #archivos-detalle .content-list-categories .category-files:not(.active) img {
  opacity: 0.5;
}
.download-template-default #archivos-detalle .content-list-categories .category-files:not(.active):hover img,
.files-template-default #archivos-detalle .content-list-categories .category-files:not(.active):hover img {
  opacity: 1 !important;
}
.download-template-default #archivos-detalle .list-archivos,
.files-template-default #archivos-detalle .list-archivos {
  border-right: 0px solid #cccccc;
}
.download-template-default #archivos-detalle .list-archivos a img,
.files-template-default #archivos-detalle .list-archivos a img {
  max-height: 40px;
  width: auto;
}
.download-template-default #archivos-detalle .list-archivos a h3,
.files-template-default #archivos-detalle .list-archivos a h3 {
  display: inline-block;
  padding-left: 10px;
  text-transform: uppercase;
  color: #36699c;
}
.download-template-default #archivos-detalle .folder-line:before,
.files-template-default #archivos-detalle .folder-line:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 20px;
  border: 1px dotted #333;
  height: 80%;
}
.download-template-default #archivos-detalle .folder-line i.fa-folder-open,
.files-template-default #archivos-detalle .folder-line i.fa-folder-open {
  font-size: 1.5rem;
  color: #36699c;
}
.download-template-default #archivos-detalle .files i.far,
.files-template-default #archivos-detalle .files i.far {
  color: #ae1518;
}
.download-template-default #archivos-detalle .files a,
.files-template-default #archivos-detalle .files a {
  color: #36699c;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.download-template-default #archivos-detalle .files a:hover,
.files-template-default #archivos-detalle .files a:hover {
  color: #e19c5b;
}

.esconder {
  display: none;
}

.mostrar {
  display: block;
  -webkit-animation: fade_in_show 0.9s;
          animation: fade_in_show 0.9s;
}

@-webkit-keyframes fade_in_show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade_in_show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.subcategorias i.fa-folder {
  color: #36699c;
}
.subcategorias i.fa-folder-open {
  color: #e19c5b;
}
.subcategorias a {
  color: #36699c;
}
.subcategorias a.active {
  color: #e19c5b;
}

/*
  *  in EVENTOS
  */
.multiple-items .card a h5 {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contenido-evento.contenido h5 {
  margin: 0;
  display: inline-block;
}

.eventos-pasados .card .card-body .card-text {
  height: 45px;
  min-height: auto;
  border: 0px solid red;
  overflow: hidden;
}
.eventos-pasados .card .big {
  font-size: 1.8rem;
}
.eventos-pasados .card .small {
  font-size: 1.1rem;
}
.eventos-pasados .card .categorias {
  color: #e19c5b;
  font-size: 0.9rem;
}
.eventos-pasados .card .horas {
  margin-bottom: 3px;
}
.eventos-pasados .card .horas:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f017";
  color: #e19c5b;
  font-size: 0.8rem;
  margin-right: 8px;
}
.eventos-pasados .card .donde:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f124";
  color: #e19c5b;
  font-size: 0.8rem;
  margin-right: 8px;
}

.eventos-pasados a h5 {
  min-height: 40px;
  color: #36699c;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.eventos-pasados a .fecha-grande {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  color: #36699c;
}
.eventos-pasados a:visited {
  color: #e19c5b;
}
.eventos-pasados a:hover h5, .eventos-pasados a:hover .fecha-grande {
  color: #e19c5b;
}

.eventos-en-programas a:visited {
  color: #36699c;
}
.eventos-en-programas a:hover {
  color: #e19c5b;
}

/**
 * in RECURSOS
 */
.filtros ul li {
  border: 1px solid #e19c5b;
  /*padding: 0 !important;*/
}
.filtros ul li a {
  color: #e19c5b;
  /*
  display: inline-block;
  width: 100%;
  padding: .5rem 1.5rem;
  */
}
.filtros ul li:hover {
  border: 1px solid #36699c;
  cursor: pointer;
}
.filtros ul li:hover a {
  color: #36699c;
}
.filtros ul li.active {
  border: 1px solid #36699c;
}
.filtros ul li.active a {
  color: #36699c;
}

/* Slider 3 recursos destacados */
#carouselRecursosIndicators {
  position: relative;
}
#carouselRecursosIndicators .carousel-indicators {
  padding: 0;
  margin: 0 auto;
  position: absolute;
  bottom: 50px;
  top: auto;
  width: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#carouselRecursosIndicators .carousel-indicators li {
  border-radius: 50%;
  display: inline-block;
  height: 15px;
  width: 15px;
  background-color: #cccccc;
  margin-left: 5px;
  margin-right: 5px;
}
#carouselRecursosIndicators .carousel-indicators li.active {
  background-color: #36699c;
}
#carouselRecursosIndicators .carousel-inner {
  min-height: 400px;
}
#carouselRecursosIndicators .carousel-inner .tipo-recurso {
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 0px;
  display: block;
}
#carouselRecursosIndicators .carousel-inner img {
  border-radius: 0.5rem;
  border: 1px solid #cccccc;
}
#carouselRecursosIndicators .carousel-control-next {
  right: -5%;
  width: 5%;
}
#carouselRecursosIndicators .carousel-control-next .carousel-control-next-icon {
  background: none;
}
#carouselRecursosIndicators .carousel-control-next .carousel-control-next-icon:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  font-size: 1.5rem;
  width: 20px;
  height: 20px;
  color: #36699c;
}
#carouselRecursosIndicators .carousel-control-prev {
  left: -5%;
  width: 5%;
}
#carouselRecursosIndicators .carousel-control-prev .carousel-control-prev-icon {
  background: none;
}
#carouselRecursosIndicators .carousel-control-prev .carousel-control-prev-icon:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  font-size: 1.5rem;
  width: 20px;
  height: 20px;
  color: #36699c;
}

ul.subcategory li {
  border: 1px solid #ccc;
  padding: 2px 5px;
  text-align: center;
  margin-right: 5px;
  border-radius: 0.2rem;
  background-color: #f7f7f7;
}
ul.subcategory li.font-italic,
ul.subcategory li#familia_all {
  border: 0px;
  background-color: #fff;
}
ul.subcategory li.selected {
  border: 1px solid #e19c5b;
  background-color: #e19c5b;
  color: white;
}

/**
 * BLOG
 */
.list-categories .bg-grey {
  height: 80px;
}
.list-categories a {
  border: 0px solid #ccc;
  padding-bottom: 5px;
  margin-right: 20px;
}
.list-categories a.active {
  color: #36699c !important;
}
.list-categories a:visited {
  color: #e19c5b;
}
.list-categories a:hover {
  color: #36699c;
}

form.searchform {
  position: relative;
}
form.searchform .input-group-append {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.input-search {
  width: auto;
}
.input-search .btn {
  display: inline-block;
  margin: 0 auto;
  border: 0;
  background-color: #36699c;
  color: #ffffff;
  border-radius: 0;
}
.input-search .form-control {
  font-size: 0.8rem;
  min-width: auto;
  text-indent: 5px;
}

.input-escondido {
  border: 0px solid red;
  width: 100%;
  height: 45px;
}
.input-escondido .searchform {
  border: 0px solid green;
  height: 45px;
}
.input-escondido .searchform #search {
  border: 1px solid;
  position: absolute;
  top: 0;
  background-color: white;
}
.input-escondido .searchform .input-group-append {
  height: 50px;
}
.input-escondido .searchform .input-group-append .btn {
  margin-top: 0;
  border-radius: 0;
  background-color: #36699c;
  height: 37px;
}

.contenido iframe {
  display: block;
  margin: 0 auto;
}
.contenido h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  text-transform: none;
  font-weight: bold;
}
.contenido h2:before, .contenido h2:after {
  height: 0;
}
.contenido h3 {
  font-size: 1.3rem;
  margin-top: 40px;
  text-transform: none;
  color: #333;
}
.contenido h4 {
  font-size: 1.1rem;
  margin-top: 40px;
  text-transform: none;
  color: #333;
}
.contenido h5 {
  font-size: 1.1rem;
  margin-top: 40px;
  text-transform: none;
  color: #36699c;
  font-weight: bold;
}
.contenido h6 {
  font-size: 1.1rem;
  margin-top: 40px;
  text-transform: none;
  color: #36699c;
}
.contenido ul li {
  padding-bottom: 5px;
}

.info-post {
  font-size: 0.8rem;
}
.info-post a {
  color: #36699c;
}
.info-post a:hover {
  color: #e19c5b;
}

.article h2 a {
  color: #36699c;
  text-transform: initial;
}
.article h2 a:visited {
  color: #36699c;
}
.article h2 a:hover {
  color: #e19c5b;
}
.article .descripcion p {
  padding: 0;
  margin: 0;
}

/* PRODUCTO */
.jumbotron {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.carousel-thumbnails .carousel-indicators img {
  max-width: 100px;
  /* height: 50px; */
  overflow: hidden;
  display: block;
}

.carousel-thumbnails .carousel-indicators li {
  height: auto;
  max-width: 100px;
  width: 100px;
  border: none;
  -webkit-box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.75);
          box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.75);
}
.carousel-thumbnails .carousel-indicators li.active {
  border-bottom: 4px solid #fff;
  border: 1px solid red;
}

.carousel-thumbnails .carousel-indicators li.active {
  /* box-shadow: 0 0 10px #999 !important; */
  border: 1px solid #e19c5b !important;
}

.carousel-item .imagen {
  float: right;
  width: 45%;
}

.carousel-item .imagen img {
  width: 100%;
  height: auto;
}

.carousel-item .content-images {
  float: left;
  width: 55%;
}

ol.carousel-indicators {
  position: relative;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

ol.carousel-indicators li {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ccc;
}

ol.carousel-indicators li img {
  width: 100%;
  height: auto;
}

/* RRHH */
.ofertas .card-body .card-text {
  min-height: auto;
}
.ofertas .card-body .card-text a {
  outline: none;
}
.ofertas .card-body .card-text a:visited {
  color: #e19c5b;
}
.ofertas .card-body .card-text a:focus {
  color: white;
}

/**
 *  PAGINACION
 */
.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 11px;
  line-height: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination span, .pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #fff;
  background: #555;
}

.pagination a:hover {
  color: #fff;
  background: #3279BB;
}

.pagination .current {
  padding: 6px 9px 5px 9px;
  background: #3279BB;
  color: #fff;
}

.pagination .b {
  background-color: #2f5c89;
}
.pagination .bb {
  background-color: #69a3e1;
}

/* Mensaje de email enviada */
div.wpcf7-response-output {
  margin-top: 0 !important;
}

.slick-cate {
  float: left;
  margin-left: 0px;
  height: 36px;
  line-height: 22px;
  padding-top: 0px;
  margin-top: 0px;
}
.slick-cate a {
  border: 0px solid red;
  display: inline-block;
  margin-right: 10px;
  margin-left: 15px;
  text-align: center;
}

.search-desktop {
  float: right;
}
.search-desktop .input-search {
  float: right;
}

.search-mobile {
  float: right;
}

/* SOLUCION MERCADO */
.solucion-mercado h2, .solucion-mercado h3 {
  text-transform: none;
}
.solucion-mercado h2:before, .solucion-mercado h3:before {
  background-color: transparent;
}
.solucion-mercado h2:after, .solucion-mercado h3:after {
  background-color: transparent;
}
.solucion-mercado h2 span, .solucion-mercado h3 span {
  color: #e19c5b;
}
.solucion-mercado .col-12 {
  text-align: center;
}
.solucion-mercado .col-12 img {
  border: 0;
  border-radius: 50%;
}
.solucion-mercado .col-12 a {
  color: #333333;
  border-bottom: 2px solid #e19c5b;
}
.solucion-mercado .col-12 a:hover {
  color: #e19c5b;
}

.container .col-12 h3 {
  font-size: 1.1rem;
  font-weight: normal;
  color: #999999;
}

/* Integracion page */
.integracion h4 {
  font-size: 1.2rem;
}

/* certificaciones */
.insignia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 110px;
  border-bottom: 2px solid #36699c;
}
.insignia h3 {
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 1.4rem;
  color: #36699c !important;
}
.insignia .insignia_icon {
  width: 110px;
  height: 100%;
  border-bottom-right-radius: 1.4rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.insignia .insignia_icon .fl {
  width: 110px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #ccc;
}
.insignia .insignia_icon .fl img {
  width: 110px;
  height: auto;
}

.insignia.closed .insignia_icon {
  border-bottom-right-radius: 0;
}

.content-insignia h3 {
  margin: 0;
  padding: 0 0 0 20px;
  font-weight: bold;
  color: #333;
}

.accordion h2 {
  padding-bottom: 0;
}
.accordion h2:after, .accordion h2:before {
  display: none;
}
.accordion h2 .btn {
  background-color: transparent;
  padding: 0;
  color: #333333;
  font-weight: bold;
}
.accordion h2 .btn:before {
  content: "-";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #36699c;
  border: 1px solid #36699c;
  color: white;
  border-radius: 0.2rem;
  line-height: 18px;
  text-align: center;
  font-weight: bold;
}
.accordion h2 .collapsed:before {
  content: "+";
  background-color: transparent;
  color: #36699c;
  border-color: #36699c;
}
.accordion .collapse {
  padding-bottom: 15px;
}

.txt-intro h4 {
  font-size: 1.5rem;
  color: #333333;
  line-height: 140%;
}
.txt-intro h4 a {
  color: #e19c5b;
}

.clientes-partners .carousel-clientes .slick-track,
.clientes-partners .carousel-partners .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.clientes-partners .carousel-clientes .slick-track .slick-slide a img,
.clientes-partners .carousel-partners .slick-track .slick-slide a img {
  padding-left: 5px;
  padding-right: 5px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.clientes-partners .carousel-clientes .slick-track .slick-slide a:hover img,
.clientes-partners .carousel-partners .slick-track .slick-slide a:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
}

.tres-bloques .border h3 {
  color: #1a1a1a;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  width: 100%;
}
.tres-bloques .border h3:after {
  content: "";
  text-align: center;
  border-bottom: 2px solid #36699c;
  -webkit-transition: border 1s ease-in-out;
  transition: border 1s ease-in-out;
}
.tres-bloques .border .info-visible {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tres-bloques .border .info-visible img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
}
.tres-bloques .border .info-texto {
  position: absolute;
  top: 0;
  left: -100%;
  background: #36699c;
  color: white;
  line-height: 145%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.tresbloque_solucion .border,
.tres-bloques .border {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-image: url("../img/bg-items.png");
  height: 100%;
}
.tresbloque_solucion .border h3,
.tres-bloques .border h3 {
  text-transform: uppercase;
  color: #36699c;
  font-size: 1.4rem;
  position: absolute;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tresbloque_solucion .border .content-hidden,
.tres-bloques .border .content-hidden {
  background-color: #36699c;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  margin-left: -200%;
  z-index: 9;
}
.tresbloque_solucion .border .content-hidden .contenido,
.tres-bloques .border .content-hidden .contenido {
  line-height: 150%;
}
.tresbloque_solucion .border .content-hidden .contenido ul,
.tres-bloques .border .content-hidden .contenido ul {
  margin-left: 20px;
}
.tresbloque_solucion .border .content-hidden .contenido ul li ul,
.tres-bloques .border .content-hidden .contenido ul li ul {
  margin-left: 20px;
  margin-top: 5px;
}
.tresbloque_solucion .border .content-hidden .contenido ul li ul li,
.tres-bloques .border .content-hidden .contenido ul li ul li {
  padding-bottom: 3px;
}
.tresbloque_solucion .border:hover h3, .tresbloque_solucion .border:hover img,
.tres-bloques .border:hover h3,
.tres-bloques .border:hover img {
  opacity: 0;
}
.tresbloque_solucion .border:hover .info-visible h3,
.tres-bloques .border:hover .info-visible h3 {
  opacity: 1;
  z-index: 99;
  color: white;
  position: relative;
}
.tresbloque_solucion .border:hover .content-hidden,
.tres-bloques .border:hover .content-hidden {
  margin-left: 0;
}

.tres-bloques .border {
  background-image: none;
}
.tres-bloques .border h3 {
  font-size: 1.2rem;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: none;
}
.tres-bloques .border h3:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 50%;
  margin-left: -25%;
  text-align: center;
  border-bottom: 2px solid #36699c;
  -webkit-transition: border 1s ease-in-out;
  transition: border 1s ease-in-out;
}
.tres-bloques .border .content-hidden .contenido ul {
  margin-left: 20px !important;
}
.tres-bloques .border .content-hidden .contenido ul li ul li {
  margin-bottom: 5px;
}
.tres-bloques .border .content-hidden .contenido ul li ul li:before {
  color: white;
}

.content-hidden .contenido ul li:before {
  color: white;
}

/* SECTION:  CASOS DE USO */
.cuadricula .item {
  min-height: 300px;
  background-color: #e19c5b;
  background-size: cover;
  background-position: center;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cuadricula .item .opacity {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cuadricula .item h2 {
  color: white;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  opacity: 1;
}
.cuadricula .item h2:before, .cuadricula .item h2:after {
  content: "";
  background-color: transparent;
}
.cuadricula .item p {
  color: white;
  position: relative;
  z-index: 9;
  opacity: 1;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.cuadricula .item:hover h2, .cuadricula .item:hover p {
  opacity: 0;
}
.cuadricula .item:hover .opacity {
  opacity: 0;
}

/**
 * _header
 */
/*
 .logo { margin: 30px 0 0 30px; }
 .menu-hambuerger { margin: 30px 30px 0 0; }
*/
/***  MENU  ***/
.banner-info {
  width: 100%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e19c5b;
  color: #ffffff;
  font-weight: bold;
}
.banner-info p {
  margin: 0 auto;
  text-align: center;
}
.banner-info a {
  color: #36699c;
}
.banner-info a:hover {
  color: #333333;
}

ul.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80px;
}

/*  ul.navbar-nav li.menu-item-type-post_type .dropdown-menu li.menu-item a:hover */
ul.navbar-nav li.menu-item-type-post_type,
ul.navbar-nav > li {
  padding: 0 4px;
  width: auto;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  line-height: 80px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
ul.navbar-nav li.menu-item-type-post_type a,
ul.navbar-nav > li a {
  color: #4978aa;
  text-transform: uppercase;
  font-weight: lighter;
  font-size: 0.9rem;
  line-height: 20px;
}
ul.navbar-nav li.menu-item-type-post_type:hover,
ul.navbar-nav > li:hover {
  border-bottom: 5px solid #e19c5b;
  /*
  background-color: $col_orange;

  a { color: $col_light; }	
  */
}
ul.navbar-nav li.menu-item-type-post_type .dropdown-menu li.menu-item:hover,
ul.navbar-nav > li .dropdown-menu li.menu-item:hover {
  border: 0;
}

ul.navbar-nav li.active,
ul.navbar-nav li.current-page-ancestor {
  border-bottom: 5px solid #e19c5b;
}

ul.navbar-nav li.active ul li,
ul.navbar-nav li.menu-item-type-post_type ul li {
  border: 0;
}
ul.navbar-nav li.active ul li:hover,
ul.navbar-nav li.menu-item-type-post_type ul li:hover {
  border: 0;
}

.dropdown-item.active,
ul.navbar-nav li.active ul.dropdown-menu li.active {
  background-color: #f8f9fa;
}
.dropdown-item.active a,
ul.navbar-nav li.active ul.dropdown-menu li.active a {
  color: #e19c5b !important;
}

.menu {
  margin-top: 15px;
}
.menu i {
  font-size: 1.8rem;
  color: #36699c;
}

/***  HAMBURGER MENU  ***/
.menu-wrapper {
  margin: auto;
  width: 30px;
  height: 19px;
  cursor: pointer;
}

.hamburger-menu,
.hamburger-menu:after,
.hamburger-menu:before {
  width: 30px;
  height: 3px;
}

.hamburger-menu {
  position: relative;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  background: rgb(255, 255, 255);
  -webkit-transition: all 0ms 300ms;
  transition: all 0ms 300ms;
}
.hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}

.hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: rgb(255, 255, 255);
  -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: rgb(255, 255, 255);
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:after {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:before {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.tooltip {
  z-index: 991070 !important;
}

/**
 * _footer
 */
footer {
  background-color: #00699f;
  color: #ffffff;
  min-height: 200px;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  color: #e19c5b;
}
footer a:visited {
  color: #ffffff;
}
footer ul {
  margin-left: 0;
}

section.bottom-footer {
  background-color: #6b95c0;
  color: #ffffff;
  min-height: 50px;
  line-height: 45px;
}
section.bottom-footer a img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
section.bottom-footer a:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.contesto {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  z-index: 999;
}

/************************************************************************************************************************
*************************************************************************************************************************
*****                                                        MEDIA QUERY                                            *****
*************************************************************************************************************************
************************************************************************************************************************/
/*---------------------------------------
	MOBILE FIRST
---------------------------------------*/
.contesto {
  background-color: red;
}

body {
  font-size: 14px;
}

body strong {
  font-size: 1em;
  font-weight: bold;
}

/* h1, h2, h3, h4, h5, h6 { font-size: 1.1rem; } */
/* lineas titles en % */
/*
h1, h2, h3.h6 {
	&:before { width: 16%; }
	&:after { width: 6%; margin-left: 18%; }
}
*/
/*
.text-md-right {
	h1, h2, h3.h6 {
  	&:before { width: 16%; }
	&:after { width: 6%; margin-right: 18%; }
  }
}
*/
/* lineas titles en pixel */
h1:before, h2:before, h3.h6:before {
  width: 70px;
}
h1:after, h2:after, h3.h6:after {
  width: 20px;
  margin-left: 75px;
}

.text-md-right.text-left h1:before, .text-md-right.text-left h2:before, .text-md-right.text-left h3.h6:before,
.text-lg-right.text-left h1:before,
.text-lg-right.text-left h2:before,
.text-lg-right.text-left h3.h6:before {
  left: 0;
  right: auto;
  width: 70px;
  /* 16% */
}
.text-md-right.text-left h1:after, .text-md-right.text-left h2:after, .text-md-right.text-left h3.h6:after,
.text-lg-right.text-left h1:after,
.text-lg-right.text-left h2:after,
.text-lg-right.text-left h3.h6:after {
  left: 0;
  right: auto;
  width: 20px;
  /* 6% */
  margin-left: 75px;
  /* 18% */
}

h1,
.h1 {
  font-size: 2rem;
}

h1 strong,
.h1 strong {
  font-size: 1em;
}

h2,
.h2 {
  font-size: 1.3rem;
}

h2 strong,
.h2 strong {
  font-size: 1em;
}

header {
  height: 60px;
}
header img {
  margin-top: 5px;
  max-height: 50px;
}

header.fixed-top {
  position: fixed;
  background-color: #ffffff;
  z-index: 99991;
  border-bottom: 1px solid #ccc;
}

.banner-info {
  margin-top: 60px;
}

.cabecera {
  margin-top: 60px;
}

#wpadminbar {
  position: fixed;
}

body.logged-in.admin-loggin .fixed-top {
  position: fixed;
}
body.logged-in.admin-loggin header {
  margin-top: 46px;
}

.flex .intro {
  margin-top: 0px;
}
.flex .intro.no-banner {
  margin-top: 60px;
}

body.logged-in .flex .intro {
  margin-top: 0px;
}
body.logged-in .flex .intro.no-banner {
  margin-top: 60px;
}

/* CONTENIDO */
.intro h1 {
  margin-top: 20px;
  font-size: 1rem;
}
.intro .flex {
  display: block;
  height: auto;
}
.intro .more-content {
  opacity: 1;
}
.intro h2.no-line {
  line-height: 115%;
  margin-bottom: 0;
  font-size: 1.05rem !important;
}
.intro .btn-naranja {
  margin-top: 10px;
}
.intro .contenido-intro {
  background-image: url("../img/bg-cover-mobile.png");
  background-position: center bottom;
  padding-bottom: 80px;
}

/* PILARES */
section.pilares {
  background-image: none;
}

/* RECURSOS */
section.recursos {
  min-height: 700px;
  /* background-image: url('../img/recursos-web-azul.png'); */
  background-position: top center;
}

section.recursos .bloque-contenido {
  padding-top: 16%;
}

/* LLAMADA A LA ACCION */
section.llamada-accion {
  background-image: url("../img/bg-llamada-accion-mobile.png");
}

.llamada-accion-vacio {
  height: 180px;
}

.glide__slides {
  padding: 0;
}

.glide_info {
  /*
  left: 0%;
  width: 100%;
  bottom: -10px;
  */
}
.glide_info h6 {
  font-size: 0.8rem;
}

.glide__arrow {
  bottom: 0px;
  /* -20px */
}

.glide__arrow--right {
  right: 0em;
  /* 1em */
}

.glide__arrow--left {
  left: 0em;
  /* 1em */
}

.slick-funcionalidades .contenido {
  width: 100%;
  float: none;
}
.slick-funcionalidades .imagen {
  width: 100%;
  float: none;
  text-align: right;
}

.funcionalidades .height_content {
  min-height: 600px;
}

.slider-nav {
  bottom: 0px;
  right: 0px;
}

/* Menu "recursos" */
#listado-categorias li {
  display: block !important;
  width: 100%;
  margin-bottom: 10px;
}

/**/
button#responsive-menu-button {
  position: fixed !important;
}

ul#responsive-menu li a small {
  display: none;
}

body.logged-in button#responsive-menu-button {
  top: 50px;
}

#responsive-menu-container #responsive-menu-wrapper {
  margin-top: 20px;
}

body.logged-in.admin-loggin #responsive-menu-container {
  margin-top: 46px;
}

#responsive-menu-container #responsive-menu-wrapper #responsive-menu li.btn-demo a {
  background-color: #e19c5b;
  border-radius: 30px;
  margin-left: 15px;
  margin-right: 10px;
  width: 90%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#responsive-menu-container #responsive-menu-wrapper #responsive-menu li.btn-demo a:hover {
  background-color: #d98230;
}

/* Funcionalidad */
.slick-next.slick-arrow {
  right: 0px;
}

.slick-prev.slick-arrow {
  left: 0px;
}

.glide__slide {
  min-height: 215px;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.glide__slide.glide__slide--active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.glide__slide.glide__slide--active img {
  border: 0px solid #e19c5b;
}

.carousel-inner {
  height: 680px;
  border: 0px solid red;
}

#carousel-thumb ol.carousel-indicators {
  margin-top: 0;
}

/* iconos menu mobile */
.wpml-ls-legacy-list-horizontal .wpml-ls-flag {
  width: auto;
  height: auto;
}

.last-line {
  margin-bottom: 50px;
}

/** Carousle 2 en Funcionalidades */
.carousel-item .imagen {
  float: none;
  width: 100%;
}

.carousel-item .content-images {
  float: none;
  width: 100%;
}

ol.carousel-indicators {
  width: 100%;
  margin-left: 0;
}

/* filtros recursos */
.filtros ul li {
  border: 1px solid #e19c5b;
  padding: 0 !important;
}
.filtros ul li a {
  color: #e19c5b;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 1.5rem;
}

/* Altura 3 bloques en /producto/ */
section.list-items .card {
  min-height: 350px;
}

/* BLOG */
.avatar-cus {
  border-radius: 10%;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

/* ALINEACIÓN A DERECHA
  */
.list-architecture ul.listado {
  margin-right: auto;
  margin-left: 15px;
}
.list-architecture ul.listado li:before {
  content: "\f105" !important;
  margin-left: -1em !important;
  margin-right: auto !important;
  float: left !important;
}

.card-title.h50 {
  height: auto;
}

.lastline {
  max-width: 100%;
}

.contenido-obliquo {
  top: 50px;
}

/*---------------------------------------
LAS MEDIAS QUERIES (contesto -sm)  [#blue]
---------------------------------------*/
@media only screen and (min-width: 576px) {
  .contesto {
    background-color: blue;
  }

  img.logo {
    width: 80%;
  }

  .contenido-intro {
    padding-top: 50px;
  }

  .titulo-contenido h2 {
    padding-top: 50px;
  }

  .lastline {
    max-width: 20%;
  }

  .contenido-obliquo {
    top: 70px;
  }
}
/*--------------------------------------------------------
LAS MEDIAS QUERIES (contesto -md)  --- TABLET   [#green]
--------------------------------------------------------*/
@media only screen and (min-width: 768px) {
  .contesto {
    background-color: green;
  }

  body {
    font-size: 14px;
  }

  header {
    height: 60px;
  }
  header img {
    margin-top: 0px;
  }

  header.fixed-top {
    position: fixed;
    background-color: #ffffff;
    z-index: 99991 !important;
    border-bottom: 1px solid #ccc;
  }

  ul.navbar-nav {
    height: 79px;
  }

  img.logo {
    width: 80%;
  }

  .contenido-intro {
    padding-top: 0px;
  }

  .titulo-contenido h2 {
    padding-top: 0px;
  }

  .flex .contenido-restante {
    margin-top: 0px;
  }

  .cabecera {
    margin-top: 60px;
  }

  .intro {
    background-image: url("../img/bg-cover.png");
  }
  .intro .contenido-intro {
    background-image: none;
    padding-bottom: 0px;
  }

  body.logged-in.admin-loggin header.fixed-top {
    margin-top: 46px;
  }

  body.logged-in .cabecera {
    margin-top: 80px;
    /*  60px*/
  }
  body.logged-in .banner-info {
    margin-top: 70px;
  }
  body.logged-in .flex .contenido-restante {
    margin-top: 0px;
  }
  body.logged-in .flex .intro.no-banner {
    margin-top: 60px;
  }

  #responsive-menu-button {
    margin-top: 46px;
    position: absolute;
    top: 0 !important;
    right: 3% !important;
  }
  #responsive-menu-button .responsive-menu-box {
    position: absolute;
  }

  #responsive-menu-container {
    z-index: 99999 !important;
  }

  body.logged-in.admin-loggin #responsive-menu-button {
    margin-top: 42px;
  }

  h1, h2, h3.h6 {
    /*
    &:before { width: 10%; }
    &:after { width: 4%; margin-left: 11%; }
    */
  }
  h1:before, h2:before, h3.h6:before {
    width: 70px;
  }
  h1:after, h2:after, h3.h6:after {
    width: 20px;
    margin-left: 75px;
  }

  .text-md-right.text-left h1, .text-md-right.text-left h2, .text-md-right.text-left h3.h6,
.text-lg-right.text-left h1,
.text-lg-right.text-left h2,
.text-lg-right.text-left h3.h6 {
    /*
     	&:before { width: 10%; right: 0; left: auto;  }
    &:after { width: 4%; margin-right: 11%; right: 0; left: auto; }
    */
    /* 10% */
    /* 4%  right:11% */
  }
  .text-md-right.text-left h1:before, .text-md-right.text-left h2:before, .text-md-right.text-left h3.h6:before,
.text-lg-right.text-left h1:before,
.text-lg-right.text-left h2:before,
.text-lg-right.text-left h3.h6:before {
    width: 70px;
    right: auto;
    left: 0;
  }
  .text-md-right.text-left h1:after, .text-md-right.text-left h2:after, .text-md-right.text-left h3.h6:after,
.text-lg-right.text-left h1:after,
.text-lg-right.text-left h2:after,
.text-lg-right.text-left h3.h6:after {
    width: 20px;
    margin-right: 75px;
    right: auto;
    left: 0;
  }

  .text-md-right.text-left h1, .text-md-right.text-left h2, .text-md-right.text-left h3.h6 {
    /* 10% */
    /* 4%  right:11% */
  }
  .text-md-right.text-left h1:before, .text-md-right.text-left h2:before, .text-md-right.text-left h3.h6:before {
    width: 70px;
    right: 0 !important;
    left: auto !important;
  }
  .text-md-right.text-left h1:after, .text-md-right.text-left h2:after, .text-md-right.text-left h3.h6:after {
    width: 20px;
    margin-right: 75px;
    right: 0 !important;
    left: auto !important;
  }

  .nav-link {
    padding: 0;
  }

  h1, .h1 {
    font-size: 2rem;
  }

  h2, .h2 {
    font-size: 1.6rem;
  }

  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* height: 100vh; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0px;
  }

  /* CONTENIDO */
  .intro {
    background-image: url("../img/bg-cover-mobile.png");
    background-position: 0px -110px;
  }
  .intro .texto-destacado {
    line-height: 170%;
    font-size: 1.1em;
  }
  .intro h1 {
    margin-top: 13%;
    font-size: 1.6rem;
  }
  .intro h2 {
    margin-bottom: 20px;
  }
  .intro h2.no-line {
    line-height: 150%;
    font-size: 1.1rem !important;
  }
  .intro .more-content {
    opacity: 0;
    height: 1px;
  }
  .intro .btn-naranja {
    margin-top: 20px;
  }

  /* PILARES */
  section.pilares {
    background-image: url("../img/circle.png");
    background-position: -150px 70px;
    background-repeat: no-repeat;
  }

  /* RECURSOS */
  section.recursos {
    min-height: 700px;
    /* background-image: url('../img/recursos-web-azul.png'); */
    background-image: none;
    background-position: center;
  }

  /* IAMGEN */
  .imagen-cover {
    position: absolute;
    top: -100px;
  }
  .imagen-cover img {
    width: 250px;
  }

  /* LLAMADA A LA ACCION */
  section.llamada-accion {
    background-image: url("../img/bg-llamada-accion.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  .glide__slides {
    padding: 50px 0;
  }

  .glide_info {
    /*
    left:20%;
    width: 60%;
    bottom: 20px;
    */
  }
  .glide_info h6 {
    font-size: 0.9rem;
  }

  .glide__arrow {
    bottom: 0%;
  }

  .glide__arrow--right {
    right: 4em;
  }

  .glide__arrow--left {
    left: 4em;
  }

  .slick-funcionalidades .contenido {
    width: 55%;
    float: left;
  }
  .slick-funcionalidades .imagen {
    width: 45%;
    float: right;
    text-align: right;
  }

  .funcionalidades .height_content {
    height: 600px;
    min-height: 600px;
  }

  .slider-nav {
    bottom: -50px;
    right: 15px;
  }

  /* Menu "recursos" */
  #listado-categorias li {
    display: inline !important;
    width: auto;
    margin-bottom: 5px;
  }

  /* Funcionalidad */
  .slick-next.slick-arrow {
    right: -25px;
  }

  .slick-prev.slick-arrow {
    left: -25px;
  }

  .glide__slide {
    min-height: 272px;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }

  .glide__slide.glide__slide--active {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }

  section.new-steps .card {
    min-height: 200px;
  }

  .last-line {
    margin-bottom: 100px;
  }

  /** Carousle 2 en Funcionalidades */
  .carousel-item .imagen {
    float: right;
    width: 45%;
  }

  .carousel-item .imagen img {
    width: 100%;
    height: auto;
  }

  .carousel-item .content-images {
    float: left;
    width: 45%;
  }

  ol.carousel-indicators {
    width: 60%;
    margin: 50px auto;
  }

  /* BLOG */
  .avatar-cus {
    border-radius: 10%;
    width: 70px;
    height: 70px;
    overflow: hidden;
  }

  /* ALINEACIÓN A DERECHA
  */
  .list-architecture ul.listado {
    margin-right: 15px;
    margin-left: auto;
  }
  .list-architecture ul.listado li:before {
    content: "\f104" !important;
    margin-right: -1em !important;
    margin-left: auto !important;
    float: right !important;
  }

  .carousel-inner {
    height: 525px;
    border: 0px solid red;
  }

  #carousel-thumb ol.carousel-indicators {
    margin-top: 0;
  }

  .contenido-obliquo {
    top: 90px;
  }
}
/*----------------------------------------------
LAS MEDIAS QUERIES (contesto -lg)    [#yellow]
----------------------------------------------*/
@media only screen and (min-width: 992px) {
  .contesto {
    background-color: yellow;
  }

  body.logged-in.admin-loggin header.fixed-top {
    margin-top: 32px;
  }

  header {
    height: 80px;
  }
  header img {
    margin-top: 15px;
  }

  .cabecera {
    margin-top: 80px;
  }

  .intro .contenido-intro {
    min-height: 500px;
  }

  .intro {
    background-image: url("../img/bg-cover-mobile.png");
  }

  .banner-info {
    margin-top: 80px;
  }

  /* FONT-SIZE MENU */
  ul.navbar-nav li.menu-item-type-post_type a,
ul.navbar-nav > li a {
    font-size: 0.65rem;
  }

  /* RECURSOS */
  section.recursos {
    min-height: 700px;
    background-position: center;
  }

  section.recursos .bloque-contenido {
    padding-top: 21%;
  }

  /* IAMGEN */
  .imagen-cover {
    position: absolute;
    top: -100px;
  }
  .imagen-cover img {
    width: 270px;
  }

  body.logged-in .fixed-top {
    position: fixed;
  }
  body.logged-in .banner-info {
    margin-top: 80px;
  }

  /* filtros */
  .filtros ul li {
    border: 1px solid #e19c5b;
    padding: 10px !important;
  }
  .filtros ul li a {
    color: #e19c5b;
    display: inline;
    width: auto;
  }

  .carousel-inner {
    height: 450px;
  }

  #carousel-thumb ol.carousel-indicators {
    margin-top: 0;
  }

  .content-socio {
    min-width: 20%;
    max-width: 20%;
    width: 20px;
  }

  .contenido-obliquo {
    top: 110px;
  }
}
/*----------------------------------------------
LAS MEDIAS QUERIES (contesto -xl)  [#purple]
----------------------------------------------*/
@media only screen and (min-width: 1200px) {
  .contesto {
    background-color: purple;
  }

  .intro .contenido-intro {
    min-height: auto;
  }

  .intro {
    background-image: url("../img/bg-cover.png");
  }
  .intro h1 {
    margin-top: 20%;
  }

  section.recursos {
    min-height: 600px;
  }

  section.recursos .bloque-contenido {
    padding-top: 20%;
  }

  /* IAMGEN */
  .imagen-cover {
    position: absolute;
    top: -150px;
  }
  .imagen-cover img {
    width: 310px;
  }

  .llamada-accion-vacio {
    height: 220px;
  }

  /* FONT-SIZE MENU */
  ul.navbar-nav li.menu-item-type-post_type a,
ul.navbar-nav > li a {
    font-size: 0.85rem;
  }

  section.new-steps .card {
    min-height: 200px;
  }

  /* Altura 3 bloques en /producto/ */
  .text-md-right.text-left h1, .text-md-right.text-left h2, .text-md-right.text-left h3.h6,
.text-lg-right.text-left h1,
.text-lg-right.text-left h2,
.text-lg-right.text-left h3.h6 {
    /*
    &:before { width: 10%; right: 0; left: auto;  }
     &:after { width: 4%; margin-right: 11%; right: 0; left: auto; }
     */
    /* 10% */
    /* 4%  right:11% */
  }
  .text-md-right.text-left h1:before, .text-md-right.text-left h2:before, .text-md-right.text-left h3.h6:before,
.text-lg-right.text-left h1:before,
.text-lg-right.text-left h2:before,
.text-lg-right.text-left h3.h6:before {
    width: 70px;
    right: 0;
    left: auto;
  }
  .text-md-right.text-left h1:after, .text-md-right.text-left h2:after, .text-md-right.text-left h3.h6:after,
.text-lg-right.text-left h1:after,
.text-lg-right.text-left h2:after,
.text-lg-right.text-left h3.h6:after {
    width: 20px;
    margin-right: 75px;
    right: 0;
    left: auto;
  }

  .carousel-inner {
    height: 420px;
  }

  #carousel-thumb ol.carousel-indicators {
    margin-top: 0;
  }

  .card-title.h50 {
    min-height: 80px;
  }

  .contenido-obliquo {
    top: 120px;
  }
}
/*-----------------------------------------------
	[#23aa99]
-----------------------------------------------*/
@media only screen and (min-width: 1400px) {
  .contesto {
    background-color: #23aa99;
  }

  ul.navbar-nav li.menu-item-type-post_type a,
ul.navbar-nav > li a {
    font-size: 0.85rem;
  }

  .card-title.h50 {
    min-height: 65px;
  }

  .contenido-obliquo {
    top: 130px;
  }
}
/*----------------------------------------------
LAS MEDIAS QUERIES (contesto -xxl)   [#black]
----------------------------------------------*/
@media only screen and (min-width: 1500px) {
  .contesto {
    background-color: black;
  }

  section.recursos {
    min-height: 600px;
  }

  section.recursos .bloque-contenido {
    padding-top: 24%;
  }

  img.logo {
    width: 64%;
  }

  ul.navbar-nav li.menu-item-type-post_type a,
ul.navbar-nav > li a {
    font-size: 1rem;
  }

  /* IAMGEN */
  .imagen-cover {
    position: absolute;
    top: -100px;
  }
  .imagen-cover img {
    width: 340px;
  }

  .glide__slide.glide__slide--active {
    min-height: 270px;
  }

  section.new-steps .card {
    min-height: 200px;
  }

  section.steps-socios .card {
    min-height: 300px;
  }

  /* Altura 3 bloques en /producto/ */
  section.list-items .card {
    /* min-height: 465px; */
    /*  393px  */
  }

  .contenido-obliquo {
    top: 180px;
  }
}
/*-----------------------------------------------
LAS MEDIAS QUERIES (contesto -xxxl)   [#orange]
-----------------------------------------------*/
@media only screen and (min-width: 1900px) {
  .contesto {
    background-color: orange;
  }

  h2.text-primary {
    padding-top: 140px !important;
  }

  .titulo-contenido {
    margin-top: 100px;
  }

  section.recursos {
    min-height: 600px;
  }

  /* IAMGEN */
  .imagen-cover {
    position: absolute;
    top: -160px;
  }
  .imagen-cover img {
    width: 400px;
  }

  section.new-steps .card {
    min-height: 200px;
  }

  .contenido-obliquo {
    top: 170px;
  }
}