/* less */
/* color */
/* media queries */
/* mixins */
.sombra-items {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}
.animation {
  transition: all 0.2s ease;
}
/* global */
* {
  box-sizing: border-box;
}
[v-cloak] {
  display: none;
}
::-moz-selection {
  background: rgba(249, 184, 115, 0.71);
  color: #ffffff;
}
::selection {
  background: rgba(249, 184, 115, 0.71);
  color: #ffffff;
}
html,
body {
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  font-family: 'Source Sans Pro', sans-serif;
}
a:hover {
  text-decoration: none;
}
p {
  font-size: 18px;
  font-weight: 400;
}
p strong {
  font-weight: 600;
}
.btn.focus,
.btn:focus,
.btn:hover {
  color: inherit;
}
.nopadding {
  padding: 0 !important;
}
.bg-blue {
  background-color: #1E91D6;
}
.bg-orange {
  background-color: #D77F00;
}
.bg-green {
  background-color: #2BC9A5;
}
.bg-purple {
  background-color: #7F4486;
}
/* header */
header {
  padding-top: 40px;
}
header .logo-container {
  padding-bottom: 25px;
}
header .logo-container img {
  max-width: 230px;
}
@media only screen and (max-width : 768px) {
  header .logo-container img {
    max-width: 200px;
  }
}
header .hazte-socio-header {
  border-radius: 4px;
  background-color: #680FB7;
  padding: 7px 12px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  display: inline-block;
  float: right;
  font-size: 15px;
  width: 31%;
  margin: 15px 1%;
  transition: all 0.2s ease;
}
@media only screen and (max-width : 992px) {
  header .hazte-socio-header {
    float: none;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width : 480px) {
  header .hazte-socio-header {
    margin: 15px 0;
    width: 49%;
    font-size: 12px;
  }
}
header .hazte-socio-header.btn-secondary {
  background-color: #EE5500;
}
header .hazte-socio-header.btn-darkgrey {
  background-color: #717171;
}
.navbar-default .navbar-nav > .active > a {
  font-weight: 800;
  color: #4A4A4A;
}
.menu {
  margin: 0 auto;
  max-width: 1270px;
  padding: 0 60px;
}
@media only screen and (max-width : 1199px) {
  .menu {
    padding: 0 30px;
  }
}
@media only screen and (max-width : 992px) {
  .menu {
    padding: 0 10px;
  }
}
.menu .navbar-default {
  border: 0;
  background-color: #fff;
  border-top: 1px solid #979797;
  border-radius: 0;
}
.menu .navbar-collapse {
  padding: 0;
}
.menu ul {
  display: table;
  width: 100%;
}
.menu ul li {
  display: table-cell;
  float: none;
  font-weight: 600;
  font-size: 18px;
  color: #979797;
  text-transform: uppercase;
}
@media only screen and (max-width : 1199px) {
  .menu ul li {
    font-size: 14px;
  }
}
.menu ul li:first-child a {
  padding-left: 0;
  margin-left: 0;
  text-align: left;
}
.menu ul li:last-child a {
  padding-right: 0;
  margin-right: 0;
  text-align: right;
}
.menu ul li a {
  display: block;
  text-align: center;
  margin: 0 5px;
}
.menu ul li.active a {
  background-color: #fff !important;
}
.hamburgler-icon-wrapper {
  position: absolute;
  top: 50px;
  right: 20px;
  height: 26px;
  width: 26px;
  cursor: pointer;
  z-index: 13;
}
.hamburgler-icon,
.hamburgler-icon:before,
.hamburgler-icon:after {
  content: '';
  position: absolute;
  border-radius: 0;
  height: 4px;
  width: 26px;
  background: #AEAEAE;
  transition: all 0.2s ease;
}
.hamburgler-icon {
  top: 0.75em;
}
.hamburgler-icon:before {
  top: -0.55em;
}
.hamburgler-icon:after {
  top: 0.55em;
}
.hamburgler-active .hamburgler-icon {
  background: transparent;
  transform: rotate(-135deg);
}
.hamburgler-active .hamburgler-icon:before,
.hamburgler-active .hamburgler-icon:after {
  top: 0;
}
.hamburgler-active .hamburgler-icon:before {
  transform: rotate(90deg);
}
.hamburgler-active .hamburgler-icon,
.hamburgler-active .hamburgler-icon:before,
.hamburgler-active .hamburgler-icon:after {
  background: white;
}
.hamburgler-menu {
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  text-align: center;
  z-index: 12;
}
.hamburgler-active .hamburgler-menu {
  opacity: 1;
  pointer-events: initial;
}
.hamburgler-menu-list {
  display: block;
  transition: all 0.4s ease;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: 100%;
}
.hamburgler-menu-list li {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
}
.hamburgler-menu-list li:last-child {
  border: 0;
}
.hamburgler-menu-list li a {
  color: #fff;
}
.hamburgler-active .hamburgler-menu-list {
  transform: translate(-50%, -50%) scale(1);
}
/* footer */
footer {
  padding: 50px 0;
  width: 100%;
  color: #fff;
  background-image: -webkit-linear-gradient(bottom left, #f76c1c, #e99e2d), -webkit-linear-gradient(bottom left, #f76c1c, #e99e2d);
  background-image: -moz-linear-gradient(bottom left, #f76c1c, #e99e2d), -moz-linear-gradient(bottom left, #f76c1c, #e99e2d);
  background-image: -o-linear-gradient(bottom left, #f76c1c, #e99e2d), -o-linear-gradient(bottom left, #f76c1c, #e99e2d);
  background-image: -ms-linear-gradient(bottom left, #f76c1c, #e99e2d), -ms-linear-gradient(bottom left, #f76c1c, #e99e2d);
  background-image: linear-gradient(bottom left, #f76c1c, #e99e2d), linear-gradient(bottom left, #f76c1c, #e99e2d);
}
footer h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 10px;
}
footer h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
}
footer .links-footer ul {
  padding: 0;
}
footer .links-footer ul li {
  text-transform: uppercase;
  font-weight: 400;
  list-style: none;
  margin: 0;
  margin-bottom: 3px;
}
footer .links-footer ul li a {
  color: #fff;
}
footer .links-footer ul li a:hover {
  text-decoration: underline;
}
.cover-home {
  height: 500px;
  text-align: center;
}
@media only screen and (max-width : 768px) {
  .cover-home {
    height: 350px;
  }
}
.cover-home h1 {
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  padding-top: 130px;
}
@media only screen and (max-width : 768px) {
  .cover-home h1 {
    font-size: 28px;
    padding-top: 50px;
  }
}
@media only screen and (max-width : 480px) {
  .cover-home h1 {
    padding-top: 30px;
  }
}
.cover-home:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #070707, #070707);
  opacity: 0.67;
}
.cover-home .hazte-socio-cover {
  border-radius: 0;
  border: 0;
  padding: 10px 15px;
  color: #fff;
  font-size: 22px;
  background-color: rgba(119, 82, 152, 0.8);
  border-bottom: 5px solid #fff;
  font-weight: 600;
  margin-top: 50px;
  transition: 0.2s ease;
}
.cover-home .hazte-socio-cover:hover {
  background-color: #680FB7;
}
.cover-home .scroll-icon {
  width: 30px;
  height: 15px;
  margin: 0 auto;
  margin-top: 30px;
}
.content-banner-home {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #fff;
  padding: 25px 0;
  background-image: -webkit-linear-gradient(bottom left, #f76c1c, #E99D2D), -webkit-linear-gradient(bottom left, #f76c1c, #E99D2D);
  background-image: -moz-linear-gradient(bottom left, #f76c1c, #E99D2D), -moz-linear-gradient(bottom left, #f76c1c, #E99D2D);
  background-image: -o-linear-gradient(bottom left, #f76c1c, #E99D2D), -o-linear-gradient(bottom left, #f76c1c, #E99D2D);
  background-image: -ms-linear-gradient(bottom left, #f76c1c, #E99D2D), -ms-linear-gradient(bottom left, #f76c1c, #E99D2D);
  background-image: linear-gradient(bottom left, #f76c1c, #E99D2D), linear-gradient(bottom left, #f76c1c, #E99D2D);
}
.content-banner-home .column-banner {
  text-align: center;
  color: #fff;
  padding: 0 20px;
  border-right: 1px solid #fff;
  height: 200px;
}
@media only screen and (max-width : 1199px) {
  .content-banner-home .column-banner {
    height: auto;
  }
}
@media only screen and (max-width : 768px) {
  .content-banner-home .column-banner {
    border-right: 0;
    border-bottom: 1px solid #fff;
    height: auto;
    margin: 0 20px;
    padding: 10px 0;
  }
}
.content-banner-home .column-banner:last-child {
  border: 0;
}
.content-banner-home .column-banner h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 20px;
  text-transform: uppercase;
}
.content-banner-home .column-banner p {
  font-size: 16px;
}
.content-banner-home .column-banner a {
  color: #fff;
  text-decoration: underline;
}
.section-title {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 35px;
}
.section-title h2 {
  font-weight: 600;
  display: inline-block;
  color: #4A4A4A;
  border-bottom: 3px solid #4A4A4A;
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.section-title h2.inner-title-purple {
  color: #7F4486;
  border-color: #7F4486;
  font-size: 28px;
}
.section-title h2.inner-title-blue {
  color: #1E91D6;
  border-color: #1E91D6;
  font-size: 28px;
}
.slider-items {
  padding-bottom: 35px;
  position: relative;
}
.slider-items .carousel-text .slide-item {
  border-right: 1px solid #4A4A4A;
}
.slider-items .carousel-text .slide-item:last-child {
  border: 0;
}
.slider-items .slide-item {
  padding-top: 10px;
  padding-bottom: 4px;
}
.slider-items .slide-item .slide-content {
  background-color: #fff;
  min-height: 420px;
  position: relative;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width : 992px) {
  .slider-items .slide-item .slide-content {
    height: 350px;
  }
}
.slider-items .slide-item .slide-content.short-content {
  height: auto;
  background-color: transparent;
}
.slider-items .slide-item .slide-content.text-slider {
  box-shadow: none;
  border-right: 1px solid #4A4A4A;
}
.slider-items .slide-item .slide-content.text-slider:last-child {
  border: 0;
}
.slider-items .slide-item .slide-content.text-slider h3 {
  font-size: 21px;
  font-weight: 600;
  color: #4A4A4A;
}
.slider-items .slide-item .slide-content .image-noticia {
  width: 100%;
  height: 120px;
}
.slider-items .slide-item .slide-content .title-slider {
  min-height: 160px;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 20px;
}
.slider-items .slide-item .slide-content .title-slider .fecha-curso {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.slider-items .slide-item .slide-content .title-slider .nombre-curso {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.slider-items .slide-item .slide-content .interior-slider {
  padding: 15px 23px;
  color: #4A4A4A;
  position: relative;
}
.slider-items .slide-item .slide-content .interior-slider h3 {
  margin-top: 0;
  color: #680FB7;
  font-size: 18px;
  font-weight: 600;
  min-height: 50px;
}
.slider-items .slide-item .slide-content .interior-slider h3 a {
  color: #7F4486;
}
.slider-items .slide-item .slide-content .interior-slider p {
  font-size: 17px;
  line-height: 1.2;
}
.slider-items .slide-item .slide-content .interior-slider a:hover {
  text-decoration: underline;
}
.slider-items .slide-item .slide-content .mas-info {
  position: absolute;
  bottom: 0;
  padding: 10px 23px;
  width: 100%;
}
.slider-items .slide-item .slide-content .mas-info .fecha {
  width: 40%;
  display: inline-block;
}
@media only screen and (max-width : 1199px) {
  .slider-items .slide-item .slide-content .mas-info .fecha {
    font-size: 13px;
  }
}
.slider-items .slide-item .slide-content .mas-info a {
  float: right;
  display: inline-block;
  color: #EE5500;
}
.fecha-evento-cinta {
  position: absolute;
  right: 90px;
}
.fecha-evento-cinta .bolita-cinta {
  width: 20px;
  height: 10px;
  border-radius: 10px 10px 0 0;
  background-color: #B27DE0;
  position: absolute;
  z-index: 2;
}
.fecha-evento-cinta .rectangulo-cinta {
  width: 70px;
  height: 10px;
  background-color: #680FB7;
  position: absolute;
  z-index: 1;
  top: -10px;
  border-radius: 10px 10px 0 0;
}
.fecha-evento-cinta .cinta {
  width: 50px;
  height: 40px;
  background-color: #680FB7;
  position: absolute;
  z-index: 3;
  left: 20px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.fecha-evento-cinta .cinta .dia,
.fecha-evento-cinta .cinta .mes {
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  line-height: 1;
  vertical-align: top;
}
.fecha-evento-cinta .cinta .mes {
  margin-top: -10px;
}
.fecha-evento-cinta .cinta .n-dia {
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  margin-top: -12px;
  line-height: 1;
  vertical-align: top;
}
.fecha-evento-cinta .cinta-triangulo {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 25px 0 25px;
  border-color: #680FB7 transparent transparent transparent;
  position: absolute;
  z-index: 3;
  top: 40px;
  left: 20px;
}
.bg-gris {
  background-color: #F7F7F7;
}
.links-vertodo {
  padding-top: 35px;
  margin-bottom: 30px;
}
.links-vertodo a {
  text-decoration: underline;
  font-size: 20px;
  color: #4A4A4A;
}
.banner-iniciativas-chiletec {
  color: #fff;
  padding: 60px 0;
  position: relative;
  background: url('../media/tecnologia.png') center center no-repeat;
  background-size: cover;
}
.banner-iniciativas-chiletec h2 {
  font-size: 48px;
  margin: 0;
}
.banner-iniciativas-chiletec p {
  font-size: 24px;
}
.banner-iniciativas-chiletec:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #4FCD70, #007B67);
  opacity: 0.83;
}
.banner-iniciativas-chiletec .btn-conoce {
  margin-top: 40px;
}
.banner-iniciativas-chiletec .btn-conoce:hover {
  color: #209E8F;
}
.cover-directorio {
  height: 500px;
  color: #fff;
}
@media only screen and (max-width : 480px) {
  .cover-directorio {
    height: 400px;
  }
}
.cover-directorio h2 {
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  padding-top: 75px;
}
@media only screen and (max-width : 480px) {
  .cover-directorio h2 {
    font-size: 36px;
    padding-top: 25px;
  }
}
.cover-directorio p {
  font-size: 24px;
  margin-bottom: 20px;
}
@media only screen and (max-width : 480px) {
  .cover-directorio p {
    font-size: 18px;
  }
}
.cover-directorio:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #E95400, #FFB64B);
  opacity: 0.8;
}
.btn-conoce {
  color: #fff;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 25px;
  border: 2px solid #fff;
  transition: 0.2s ease;
}
@media only screen and (max-width : 480px) {
  .btn-conoce {
    font-size: 12px;
    padding: 12px 20px;
  }
}
.btn-conoce:hover {
  background-color: #fff;
  color: #EE5500;
}
.banner-fullw .fulw-content {
  min-height: 465px;
  text-align: center;
  color: #fff;
  padding: 30px 50px;
  padding-bottom: 0;
}
@media only screen and (max-width : 1199px) {
  .banner-fullw .fulw-content {
    padding: 10px 20px;
  }
}
@media only screen and (max-width : 768px) {
  .banner-fullw .fulw-content {
    min-height: 360px;
    height: auto;
    padding: 20px;
  }
}
.banner-fullw .fulw-content h3 {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  border-bottom: 3px solid #fff;
  margin-bottom: 20px;
}
.banner-fullw .fulw-content h2 {
  font-size: 36px;
  font-weight: 600;
}
.banner-fullw .fulw-content p {
  font-size: 20px;
}
.btn-fullw {
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  padding: 8px 24px;
  border-radius: 23px;
  border: 2px solid #fff;
  transition: 0.2s ease-in-out;
  margin-top: 20px;
}
.btn-fullw:hover {
  color: #4A4A4A;
  background-color: #fff;
}
.partners-section-home {
  padding: 35px 0;
  text-align: center;
}
.carousel-inner .active.left {
  left: -25%;
}
.carousel-inner .next {
  left: 25%;
}
.carousel-inner .prev {
  left: -25%;
}
.carousel-control {
  width: 4%;
}
@media only screen and (max-width : 1199px) {
  .carousel-control {
    display: none;
  }
}
.carousel-control.left,
.carousel-control.right {
  margin-left: -55px;
  margin-right: -55px;
  background-image: none;
}
.carousel-control.left img {
  width: 25px;
  height: 65px;
  position: absolute;
  top: 50%;
  margin-top: -24px;
  transform: rotate(180deg);
}
.carousel-control.right img {
  width: 25px;
  height: 65px;
  position: absolute;
  top: 50%;
  margin-top: -24px;
  left: 0;
}
/* single page */
.cover-page {
  text-align: center;
}
.cover-page h1 {
  font-size: 61px;
  font-weight: 600;
  color: #fff;
  padding-top: 90px;
  text-transform: uppercase;
}
@media only screen and (max-width : 768px) {
  .cover-page h1 {
    font-size: 28px;
    padding-top: 40px;
  }
}
.cover-page p {
  color: #fff;
  font-size: 24px;
}
@media only screen and (max-width : 768px) {
  .cover-page p {
    font-size: 16px;
  }
}
.cover-page.cover-page-interior {
  height: 400px;
  position: relative;
}
@media only screen and (max-width : 768px) {
  .cover-page.cover-page-interior {
    height: 270px;
    padding-bottom: 30px;
  }
}
.cover-page .header-content {
  position: relative;
  height: 100%;
}
.cover-page .header-content .row {
  position: absolute;
  bottom: 20px;
}
.cover-page:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cover-page.parent-page-2:before {
  background-image: linear-gradient(to right, #E95400, #FFB64B);
  opacity: 0.7;
}
.cover-page.cover-page-mision:before {
  background-image: linear-gradient(to right, #07C2F4, #0A4669);
  opacity: 0.7;
}
.cover-page.cover-page-contacto:before {
  background-image: linear-gradient(to right, #3023AE, #C96DD8);
  opacity: 0.7;
}
.cover-page.cover-page-descarga:before {
  background-image: linear-gradient(to right, #4FCD70, #007B67);
  opacity: 0.83;
}
.cover-page.cover-page-memoria:before {
  background-image: linear-gradient(to right, #0A4669, #07C2F4);
  opacity: 0.83;
}
.cover-page.page-4:before {
  background-image: linear-gradient(to right, #4FCD70, #007B67);
  opacity: 0.83;
}
.cover-page.parent-page-4:before {
  background-image: linear-gradient(to right, #4FCD70, #007B67);
  opacity: 0.83;
}
.cover-page.parent-page-16:before {
  background-image: linear-gradient(to right, #4FCD70, #007B67);
  opacity: 0.83;
}
.cover-page.page-3:before {
  background-image: linear-gradient(to right, #200066, #2463E0);
  opacity: 0.83;
}
.cover-page.parent-page-3:before {
  background-image: linear-gradient(to right, #200066, #2463E0);
  opacity: 0.83;
}
.cover-page.page-5:before {
  background-image: linear-gradient(to right, #93001D, #B4ED50);
  opacity: 0.83;
}
.cover-page.page-6:before {
  background-image: linear-gradient(to right, #AB0D47, #1E91D6);
  opacity: 0.83;
}
.cover-page.page-7:before {
  background-image: linear-gradient(to right, #3022B0, #C96DD8);
  opacity: 0.83;
}
.cover-page.page-8:before {
  background-image: linear-gradient(to right, #3022B0, #C96DD8);
  opacity: 0.83;
}
.nav-interior {
  width: 100%;
  margin-top: -54px;
}
@media only screen and (max-width : 768px) {
  .nav-interior {
    margin-top: 0;
  }
}
.nav-interior ul {
  text-align: center;
  padding: 0;
}
@media only screen and (max-width : 992px) {
  .nav-interior ul {
    margin: 0 -15px;
  }
}
.nav-interior ul li {
  list-style-type: none;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  background-color: #000;
  color: #fff;
  padding: 11px 40px;
  max-width: 160px;
  line-height: 2;
  vertical-align: top;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width : 992px) {
  .nav-interior ul li {
    width: 100%;
    max-width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid;
    line-height: 1;
  }
}
.nav-interior ul li a {
  color: inherit;
}
.nav-interior ul li:hover,
.nav-interior ul li.active {
  background-color: #fff;
  color: #000;
}
.nav-interior ul li.txt-largo {
  line-height: 1;
}
.breadcrumb {
  background-color: #fff;
  margin-bottom: 10px;
  margin-top: 10px;
}
.border-title-top {
  border: 3px solid #fff;
  border-top: 0;
}
.border-title-top ul {
  padding: 0;
  display: table;
  width: 100%;
}
.border-title-top ul li {
  display: table-cell;
  text-align: center;
  width: calc(100%/3);
  color: #fff;
  text-transform: uppercase;
}
.border-title-top ul li.border-top {
  border-top: 3px solid #fff;
}
.border-title-top ul li h2 {
  margin: 0;
  margin-top: -15px;
}
.border-title-top p {
  font-size: 44px;
  padding: 10px 40px;
}
@media only screen and (max-width : 768px) {
  .border-title-top p {
    font-size: 20px;
    font-weight: 600;
  }
}
.cover-page-mision {
  padding-top: 120px;
  padding-bottom: 120px;
  margin-bottom: 50px;
}
.cover-page-contacto,
.cover-page-descarga,
.cover-page-memoria {
  margin-top: 40px;
  text-align: left;
  color: #fff;
  padding: 100px 0;
}
.cover-page-contacto h3,
.cover-page-descarga h3,
.cover-page-memoria h3 {
  font-size: 48px;
  font-weight: 400;
  margin-top: 0;
}
.cover-page-contacto p,
.cover-page-descarga p,
.cover-page-memoria p {
  font-size: 24px;
}
.cover-page-contacto .mensaje-contacto a,
.cover-page-descarga .mensaje-contacto a,
.cover-page-memoria .mensaje-contacto a {
  color: #fff;
  text-decoration: underline;
}
.section-text {
  margin-top: 50px;
  margin-bottom: 70px;
  text-align: center;
  display: inline-block;
}
.section-text h2 {
  margin: 0;
  display: inline-block;
  background-color: #fff;
  font-size: 28px;
  color: inherit;
  font-weight: 600;
  position: relative;
  top: -16px;
  padding: 0 15px;
  text-transform: uppercase;
}
@media only screen and (max-width : 768px) {
  .section-text h2 {
    max-width: 290px;
    top: -40px;
  }
}
.section-text p {
  font-size: 18px;
  line-height: 1.2;
  padding: 15px 50px 0 50px;
  position: relative;
  top: -10px;
  color: #4A4A4A;
}
.section-text.block {
  display: block;
}
.section-text .body {
  padding: 30px;
}
.section-text .file-box {
  background: #FFFFFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
  border-radius: 11px;
  margin: 15px 10px;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  color: #545454;
  display: block;
}
.border-orange {
  border-left: 3px solid #E95400;
  border-right: 3px solid #FFB64B;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 3px;
  -moz-background-size: 100% 3px;
  background-size: 100% 3px;
  background-image: -webkit-linear-gradient(left, #E95400, #FFB64B), -webkit-linear-gradient(left, #E95400, #FFB64B);
  background-image: -moz-linear-gradient(left, #E95400, #FFB64B), -moz-linear-gradient(left, #E95400, #FFB64B);
  background-image: -o-linear-gradient(left, #E95400, #FFB64B), -o-linear-gradient(left, #E95400, #FFB64B);
  background-image: -ms-linear-gradient(left, #E95400, #FFB64B), -ms-linear-gradient(left, #E95400, #FFB64B);
  background-image: linear-gradient(left, #E95400, #FFB64B), linear-gradient(left, #E95400, #FFB64B);
  color: #EE5500;
}
.border-green {
  border-left: 3px solid #0E6456;
  border-right: 3px solid #209E8F;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 3px;
  -moz-background-size: 100% 3px;
  background-size: 100% 3px;
  background-image: -webkit-linear-gradient(left, #0E6456, #209E8F), -webkit-linear-gradient(left, #0E6456, #209E8F);
  background-image: -moz-linear-gradient(left, #0E6456, #209E8F), -moz-linear-gradient(left, #0E6456, #209E8F);
  background-image: -o-linear-gradient(left, #0E6456, #209E8F), -o-linear-gradient(left, #0E6456, #209E8F);
  background-image: -ms-linear-gradient(left, #0E6456, #209E8F), -ms-linear-gradient(left, #0E6456, #209E8F);
  background-image: linear-gradient(left, #0E6456, #209E8F), linear-gradient(left, #0E6456, #209E8F);
  color: #209E8F;
}
.border-lightgreen {
  border-left: 3px solid #03A04A;
  border-right: 3px solid #09CE81;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 3px;
  -moz-background-size: 100% 3px;
  background-size: 100% 3px;
  background-image: -webkit-linear-gradient(left, #03A04A, #09CE81), -webkit-linear-gradient(left, #03A04A, #09CE81);
  background-image: -moz-linear-gradient(left, #03A04A, #09CE81), -moz-linear-gradient(left, #03A04A, #09CE81);
  background-image: -o-linear-gradient(left, #03A04A, #09CE81), -o-linear-gradient(left, #03A04A, #09CE81);
  background-image: -ms-linear-gradient(left, #03A04A, #09CE81), -ms-linear-gradient(left, #03A04A, #09CE81);
  background-image: linear-gradient(left, #03A04A, #09CE81), linear-gradient(left, #03A04A, #09CE81);
  color: #43B777;
}
.border-purple {
  border-left: 3px solid #200066;
  border-right: 3px solid #2463E0;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 3px;
  -moz-background-size: 100% 3px;
  background-size: 100% 3px;
  background-image: -webkit-linear-gradient(left, #200066, #2463E0), -webkit-linear-gradient(left, #200066, #2463E0);
  background-image: -moz-linear-gradient(left, #200066, #2463E0), -moz-linear-gradient(left, #200066, #2463E0);
  background-image: -o-linear-gradient(left, #200066, #2463E0), -o-linear-gradient(left, #200066, #2463E0);
  background-image: -ms-linear-gradient(left, #200066, #2463E0), -ms-linear-gradient(left, #200066, #2463E0);
  background-image: linear-gradient(left, #200066, #2463E0), linear-gradient(left, #200066, #2463E0);
  color: #680FB7;
}
.border-red {
  border-left: 3px solid #93001D;
  border-right: 3px solid #B4ED50;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 3px;
  -moz-background-size: 100% 3px;
  background-size: 100% 3px;
  background-image: -webkit-linear-gradient(left, #93001D, #B4ED50), -webkit-linear-gradient(left, #93001D, #B4ED50);
  background-image: -moz-linear-gradient(left, #93001D, #B4ED50), -moz-linear-gradient(left, #93001D, #B4ED50);
  background-image: -o-linear-gradient(left, #93001D, #B4ED50), -o-linear-gradient(left, #93001D, #B4ED50);
  background-image: -ms-linear-gradient(left, #93001D, #B4ED50), -ms-linear-gradient(left, #93001D, #B4ED50);
  background-image: linear-gradient(left, #93001D, #B4ED50), linear-gradient(left, #93001D, #B4ED50);
  color: #B14747;
}
.border-fuchsia {
  border-left: 3px solid #AB0D47;
  border-right: 3px solid #1E91D6;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 3px;
  -moz-background-size: 100% 3px;
  background-size: 100% 3px;
  background-image: -webkit-linear-gradient(left, #AB0D47, #1E91D6), -webkit-linear-gradient(left, #AB0D47, #1E91D6);
  background-image: -moz-linear-gradient(left, #AB0D47, #1E91D6), -moz-linear-gradient(left, #AB0D47, #1E91D6);
  background-image: -o-linear-gradient(left, #AB0D47, #1E91D6), -o-linear-gradient(left, #AB0D47, #1E91D6);
  background-image: -ms-linear-gradient(left, #AB0D47, #1E91D6), -ms-linear-gradient(left, #AB0D47, #1E91D6);
  background-image: linear-gradient(left, #AB0D47, #1E91D6), linear-gradient(left, #AB0D47, #1E91D6);
  color: #7F4486;
}
.contact-form-content .form-control {
  border: 0;
  border-radius: 5px;
}
.btn-submit {
  font-size: 16px;
  text-transform: uppercase;
  float: right;
  border-radius: 18px;
  padding: 6px 19px;
  border: 2px solid #fff;
  transition: 0.2s ease-in-out;
  background-color: transparent;
  color: #fff;
}
.btn-submit:hover {
  color: #680FB7;
  background-color: #fff;
}
.btn-download {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 18px;
  padding: 6px 19px;
  margin-top: 25px;
  border: 2px solid #fff;
  transition: 0.2s ease;
}
.btn-download:hover {
  background-color: #fff;
  color: #209E8F;
}
.btn-action {
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 18px;
  padding: 6px 19px;
  margin-top: 20px;
  color: #fff;
  border: 2px solid #fff;
  transition: 0.2s ease-in-out;
  background-color: transparent;
}
.btn-action:hover {
  background-color: #fff;
  color: #209E8F;
}
.memorias-anteriores {
  text-align: center;
  padding: 35px 0;
  padding-bottom: 50px;
}
.memorias-anteriores h2 {
  color: #1E91D6;
  font-size: 28px;
  border-bottom: 3px solid #1E91D6;
  display: inline-block;
  margin-bottom: 25px;
}
.memorias-anteriores .memoria-item {
  color: #fff;
  text-align: center;
  background-color: #1E91D6;
  padding: 10px 60px;
  margin-bottom: 30px;
}
.memorias-anteriores .memoria-item .memoria-title {
  text-transform: uppercase;
  font-size: 18px;
  text-decoration: underline;
}
.memorias-anteriores .memoria-item .memoria-year {
  font-size: 72px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0;
}
.item-directorio {
  text-align: center;
  color: #EE5500;
  font-size: 16px;
  margin-bottom: 30px;
  height: 100%;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}
.item-directorio .cargo {
  padding-top: 10px;
  font-weight: 400;
}
.item-directorio .nombre {
  font-weight: 600;
  font-size: 23px;
}
.item-directorio .separador {
  width: 80px;
  height: 1px;
  background-color: #979797;
  margin: 10px auto 5px;
  display: inline-block;
}
.item-directorio .empresa {
  color: #9B9B9B;
  font-weight: 600;
  margin-bottom: 20px;
}
.item-directorio img {
  margin: 0 auto;
}
.iniciativa-content {
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (max-width : 1199px), only screen and (min-width : 1200px) {
  .iniciativa-content {
    min-height: 260px;
  }
}
.iniciativa-content:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #209E8F, #209E8F);
  opacity: 0.85;
}
.iniciativa-item {
  text-align: center;
  padding: 30px 40px;
  color: #fff;
  position: relative;
}
.iniciativa-item h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}
.iniciativa-item p {
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.facilitamos-content {
  padding: 20px 0 40px;
}
.iniciativa-facilitamos-content {
  background-color: #43B777;
  height: 100%;
}
@media only screen and (max-width : 1199px), only screen and (min-width : 1200px) {
  .iniciativa-facilitamos-content {
    min-height: 320px;
  }
}
@media only screen and (max-width : 992px) {
  .iniciativa-facilitamos-content {
    margin: 10px 15px;
  }
}
.iniciativa-facilitamos-content .iniciativa-item p {
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 0;
}
.proyecto-link {
  height: 450px;
}
@media only screen and (max-width : 1199px) {
  .proyecto-link {
    height: auto;
  }
}
.proyecto-link div {
  height: 100%;
  min-height: 400px;
}
.proyecto-link .proyecto-extracto {
  padding: 70px 70px;
  color: #fff;
}
@media only screen and (max-width : 1199px) {
  .proyecto-link .proyecto-extracto {
    padding: 30px;
  }
}
.proyecto-link .proyecto-extracto h2 {
  font-size: 48px;
  font-weight: 600;
}
@media only screen and (max-width : 768px) {
  .proyecto-link .proyecto-extracto h2 {
    font-size: 35px;
  }
}
.proyecto-link .proyecto-extracto p {
  font-size: 24px;
  line-height: 1.2;
}
@media only screen and (max-width : 768px) {
  .proyecto-link .proyecto-extracto p {
    font-size: 18px;
  }
}
.list-media {
  width: 90%;
  margin: 0 5%;
  margin-bottom: 10px;
  display: inline-block;
}
.list-media .media-left {
  background-color: #2BC9A5;
  color: #fff;
  padding: 15px 20px;
  width: 30%;
  min-width: 250px;
  text-align: left;
}
@media only screen and (max-width : 992px) {
  .list-media .media-left {
    display: inline-block;
    width: 100%;
  }
}
.list-media .media-left .mesa {
  font-size: 15px;
  font-weight: 600;
}
.list-media .media-left .mesa-nombre {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.list-media .media-body {
  color: #4A4A4A;
  padding: 15px 20px;
  text-align: left;
  border: 1px solid #4A4A4A;
  border-left: 0;
}
@media only screen and (max-width : 992px) {
  .list-media .media-body {
    display: inline-block;
    border-left: 1px solid #000;
    width: 100%;
  }
}
.list-media .media-body ul li {
  font-size: 18px;
}
.list-media:last-child {
  margin-bottom: 40px;
}
.noticias-proyecto {
  padding: 35px 0;
  text-align: center;
}
.noticias-proyecto h2 {
  font-size: 30px;
  color: #209E8F;
  font-weight: 600;
  border-bottom: 3px solid #209E8F;
  display: inline-block;
}
.caracteristicas-socio {
  position: relative;
  padding: 20px 15px 30px;
}
.caracteristicas-socio p {
  font-size: 15px;
  margin: 0;
  padding: 0 5px;
}
.caracteristicas-socio .separador {
  width: 100%;
  height: 1px;
  background-color: #9B9B9B;
  margin: 15px 0;
}
.caracteristicas-socio .item {
  margin-bottom: 30px;
  height: 200px;
}
@media only screen and (max-width : 768px) {
  .caracteristicas-socio .item {
    height: 150px;
    padding: 0 60px;
  }
}
.caracteristicas-socio .icon-container {
  width: 100%;
  height: 70px;
}
.caracteristicas-socio img {
  max-width: 70px;
  max-height: 70px;
  margin: 0 auto;
}
.lista-socios .section-title h2 {
  font-weight: 600;
  display: inline-block;
  color: #680FB7;
  border-bottom: 3px solid #680FB7;
  font-size: 28px;
  text-transform: uppercase;
}
.socio-info {
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #979797;
  min-height: 250px;
}
.socio-info .socio-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 20px;
  padding-top: 20px;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.socio-info:hover .socio-overlay {
  opacity: 1;
}
.socio-info .nombre-socio {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}
.socio-info .descripcion-socio {
  font-size: 16px;
}
.socio-info .btn-masinfo {
  font-size: 11px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  margin-top: 10px;
  border-radius: 15px;
  transition: 0.2s ease-in-out;
}
.socio-info .btn-masinfo:hover {
  background-color: #fff;
  color: #4A4A4A;
}
.socio-info img {
  width: 100%;
  height: auto;
  padding: 15px;
}
.socio-single .socio-content {
  padding: 40px 0;
}
.socio-single .socio-logo {
  background-color: #fff;
  border: 1px solid #4A4A4A;
  height: 400px;
}
.socio-single .socio-logo .logo-container {
  width: 100%;
  height: 100%;
}
.socio-single .socio-texto .title {
  font-size: 16px;
  color: #545454;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.socio-single .socio-texto h2 {
  color: #1E91D6;
  font-weight: 600;
  font-size: 48px;
  margin: 10px 0;
}
.socio-single .que-hacemos {
  font-size: 16px;
  margin: 10px 0;
  color: #1E91D6;
  margin-top: 15px;
}
.socio-single .hacemos {
  font-size: 18px;
  line-height: 1.2;
}
.socio-single ul {
  padding: 0;
  margin: 10px 0;
}
.socio-single ul li {
  font-size: 16px;
  color: #1E91D6;
  font-weight: 600;
  list-style-type: none;
  text-transform: uppercase;
}
.socio-single .check-heading {
  font-size: 16px;
  color: #1E91D6;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 5px;
}
.socio-single .check {
  font-size: 26px;
  font-weight: 600;
}
.socio-single .check img {
  vertical-align: middle;
  margin-left: 10px;
}
.socio-single .section-title h2 {
  color: #1E91D6;
  font-size: 28px;
  border-bottom: 3px solid #1E91D6;
}
.socio-single .info-item .heading-info .icon {
  display: inline-block;
  padding-top: 3px;
  margin-right: 10px;
}
.socio-single .info-item .heading-info .title {
  font-size: 29px;
  color: #1E91D6;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}
.socio-single .info-item .content-info {
  color: #4A4A4A;
  margin-bottom: 35px;
  margin-left: 30px;
}
.socio-single .info-item .content-info p {
  margin: 0;
}
.socio-single .info-item .content-info a {
  color: #4A4A4A;
}
.socio-single .info-item .content-info a:hover {
  text-decoration: underline;
}
.socio-single .info-item .social-icons {
  display: inline-block;
}
.socio-single .info-item .social-icons .icon {
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
}
.socio-single .contact-info-right .socio-map {
  height: 550px;
  width: 100%;
  margin-bottom: 40px;
}
.socio-single .go-back-btn {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  background-color: #1E91D6;
  display: inline-block;
  margin: 40px 0;
  padding: 10px 30px;
  border: 0;
}
.disclaimer {
  color: #AC4745;
  padding: 10px 0;
  display: block;
  font-weight: 600;
}
.capacitacion-content {
  background-color: #9C9193;
  min-height: 225px;
  height: 100%;
}
.capacitacion-content a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.capacitaciones {
  margin-bottom: 40px;
}
.calendario-container {
  position: relative;
  padding: 0 0 30px 0;
  display: inline-block;
  width: 100%;
  border-bottom: 10px solid #C2EC90;
}
.calendario-container:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #A77F7F, #A77F7F);
  opacity: 0.85;
}
.calendario-container .section-title h2 {
  color: #fff;
  border-color: #fff;
}
.calendario-container .calendario {
  margin: 0 auto;
}
.feature-content {
  text-align: center;
  margin-bottom: 30px;
  background-color: #fff;
  height: 450px;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width : 992px) {
  .feature-content {
    height: 270px;
  }
}
@media only screen and (max-width : 768px) {
  .feature-content {
    height: 300px;
  }
}
@media only screen and (max-width : 480px) {
  .feature-content {
    height: 360px;
  }
}
.feature-content .icon-container {
  height: 150px;
  padding: 30px 20px 0;
  color: #fff;
}
.feature-content .icon-container h4 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}
.feature-content .descripcion {
  padding: 15px 20px;
}
.feature-content .descripcion p {
  font-size: 16px;
}
.noticia-destacada {
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}
.noticia-destacada .destacada {
  height: 285px;
}
@media only screen and (max-width : 768px) {
  .noticia-destacada .destacada {
    height: auto;
  }
}
.noticia-destacada .image-noticia {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width : 768px) {
  .noticia-destacada .image-noticia {
    height: 180px;
  }
}
.noticia-destacada .contenedor-noticia {
  padding: 20px;
}
.noticia-destacada .contenedor-noticia .fecha {
  font-size: 16px;
  color: #4A4A4A;
}
.noticia-destacada .contenedor-noticia h2 {
  font-size: 29px;
  color: #7F4486;
  font-weight: 600;
}
.noticia-destacada .contenedor-noticia a {
  color: #EE5500;
}
.noticia-item {
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}
.noticia-item .image-noticia {
  width: 100%;
  height: 120px;
}
.noticia-item .contenedor-noticia {
  padding: 15px;
  min-height: 290px;
}
.noticia-item .contenedor-noticia .fecha {
  font-size: 16px;
  color: #4A4A4A;
}
.noticia-item .contenedor-noticia h2 {
  font-size: 20px;
  color: #7F4486;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
}
.noticia-item .contenedor-noticia a {
  color: #EE5500;
}
.noticia-item .contenedor-noticia p {
  font-size: 16px;
}
.noticia-item .contenedor-noticia p.tipo-evento {
  color: #e50;
}
.noticia-title {
  display: inline-block;
  vertical-align: bottom;
  text-align: left;
  color: #fff;
}
.noticia-title .fecha {
  font-size: 16px;
}
.noticia-title h3 {
  font-weight: 600;
  font-size: 40px;
}
@media only screen and (max-width : 768px) {
  .noticia-title h3 {
    font-size: 30px;
  }
}
.noticia-main .bajada {
  font-size: 29px;
  color: #BABABA;
  font-weight: 600;
  margin-top: 20px;
}
@media only screen and (max-width : 768px) {
  .noticia-main .bajada {
    font-size: 19px;
  }
}
.noticia-main .separador {
  width: 80%;
  margin: 30px auto;
  height: 1px;
  background-color: #979797;
}
.compartir-btns {
  width: 100%;
  text-align: center;
  margin: 40px 0;
}
.compartir-btns .share-title {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #BCBCBC;
}
.compartir-btns .share-icons ul {
  padding: 0;
  margin-top: 20px;
}
.compartir-btns .share-icons ul li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
}
.popover {
  min-width: 250px;
}
span.required {
  color: #a94442;
}
.partner-container {
  height: 100px;
  text-align: center;
  padding: 0 20px;
}
.partner-container p {
  font-size: 13px;
  color: #797979;
}
.partner-container img {
  display: inline-block;
  max-height: 70%;
}
.form-search {
  position: relative;
}
.form-search input {
  width: 100%;
  border: 1px solid #E1E1E1;
  border-radius: 6px;
  font-size: 13px;
  padding: 5px 10px;
}
.form-search button[type=submit] {
  position: absolute;
  border: 0;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: url('../media/search_icon.svg') center center no-repeat;
}
/*FORMULARIO REGISTRO SOCIOS*/
.column-count-2 {
  column-count: 2;
  margin-bottom: 10px;
}
.industrias_mayor_facturacion_otro,
.productos_y_servicios_otro {
  display: none;
}
/*RESULTADOS DE BUSQUEDA*/
.resultados-de-busqueda .filters-heading h3 {
  font-size: 18px;
  color: #eb7703;
  font-weight: bold;
}
.resultados-de-busqueda .search-results-heading {
  margin: 0 0 20px 0;
  border-bottom: 1px solid #D7D5D5;
}
.resultados-de-busqueda .search-results-heading h2 {
  color: #9B9B9B;
  font-size: 20px;
  margin: 0;
}
.resultados-de-busqueda .search-results-heading h1 {
  font-size: 35px;
  margin: 10px 0 20px 0;
}
.resultados-de-busqueda .item-resultado .media-object {
  width: 150px;
}
.resultados-de-busqueda .item-resultado .item-resultado-header h3 {
  margin: 0 0 15px 0;
}
.resultados-de-busqueda .item-resultado .item-resultado-header h3 a {
  font-size: 22px;
  color: #1E91D6;
}
.resultados-de-busqueda .item-resultado .item-resultado-header .label {
  display: block;
  float: right;
}
.resultados-de-busqueda .item-resultado .view-more {
  float: right;
  font-size: 11px;
  color: #333;
  padding: 3px 12px;
  background-color: transparent;
  border: 1px solid #333;
  margin-top: 10px;
  border-radius: 15px;
  transition: 0.2s ease-in-out;
}
.solaria-fields-filter-component .filter-section {
  margin-bottom: 15px;
}
.solaria-fields-filter-component .filters-header {
  background-color: #eb7703;
  color: #fff;
  padding: 10px 15px;
}
.solaria-fields-filter-component .filters-header h4 {
  font-size: 16px;
  font-weight: bold;
}
.solaria-fields-filter-component .filters-body {
  border: 1px solid #D7D5D5;
  border-top: 0;
  padding: 12px;
}
.partner-container p {
  font-size: 13px;
  color: #797979;
}
/*FORMULARIO REGISTRO SOCIOS*/
.column-count-2 {
  column-count: 2;
  margin-bottom: 10px;
}
.industrias_mayor_facturacion_otro,
.productos_y_servicios_otro,
.convenio_marco_otro,
.mesas_de_trabajo_otro,
.conocio_chiletec_otro {
  display: none;
}
label[for="field-nombre_comercial"]:after,
label[for="field-razon_social"]:after,
label[for="field-rut"]:after,
label[for="field-direccion"]:after,
label[for="field-ciudad_region"]:after,
label[for="field-telefono_de_contacto"]:after,
label[for="field-correo_electronico_de_contacto"]:after,
label[for="field-fecha_de_constitucion"]:after,
label[for="field-numero_de_empleados"]:after,
label[for="field-numero_de_mujeres_en_ti"]:after,
label[for="field-pagina_web"]:after,
label[for="field-descripcion_de_objetivos"]:after,
label[for="field-descripcion_de_servicios"]:after,
label[for="field-representante_nombre"]:after,
label[for="field-representante_cargo"]:after,
label[for="field-representante_telefono"]:after,
label[for="field-logo"]:after,
label[for="field-formulario_f22"]:after,
label[for="field-exportadora_de_productos_servicios"]:after,
label[for="field-productos_y_servicios"]:after,
label[for="field-carpeta_tributaria"]:after,
label[for="field-nombre_gerente_general"]:after,
label[for="field-correo_gerente_general"]:after,
label[for="field-industrias_mayor_facturacion"]:before,
label[for="field-representante_e_mail"]:after {
  content: ' * ';
  color: #a94442;
}
.contact-form-content .has-error {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}
/*COLCADE*/
#masonry-container .masonry-container-loading {
  display: none;
}
#masonry-container:after {
  display: block;
  content: '';
  clear: both;
}
#masonry-container .grid-col {
  float: left;
  width: 49%;
  margin-right: 2%;
}
@media only screen and (max-width : 768px) {
  #masonry-container .grid-col {
    width: 100%;
  }
}
#masonry-container .grid-col--4 {
  margin-right: 0;
}
#masonry-container .grid-col--2,
#masonry-container .grid-col--3 {
  display: none;
}
@media (min-width: 768px) {
  #masonry-container .grid-col {
    width: 32%;
  }
  #masonry-container .grid-col--2 {
    display: block;
  }
}
@media (min-width: 1200px) {
  #masonry-container .grid-col {
    width: 23.5%;
  }
  #masonry-container .grid-col--2,
  #masonry-container .grid-col--3 {
    display: block;
  }
}
#masonry-container .grid-item {
  margin-bottom: 20px;
  position: relative;
}
.grid-item {
  margin-bottom: 30px;
}
.page-not-found {
  padding: 130px 0;
  color: #fff;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.page-not-found .supernumber {
  font-size: 120px;
  font-weight: bold;
}
.page-not-found a {
  color: #fff;
}
.page-not-found:before {
  background-image: linear-gradient(to right, #07C2F4, #0A4669);
  opacity: 0.7;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#form-success-message.alert-success {
  color: #fff;
  background-color: rgba(104, 15, 183, 0.78);
  border-color: #fff;
  border-width: 2px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.slick-prev:before,
.slick-next:before {
  color: #EE5500;
  font-size: 30px;
}
.redes-sociales {
  display: flex;
  padding: 0;
}
.redes-sociales li {
  list-style: none;
  font-size: 3em;
  margin: 5px 0px 5px 10px;
}
.redes-sociales li a {
  color: white;
}
