/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background-color: #fbfbfb;
    
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fbfbfb;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

a {
    color: #5a907e;
    text-decoration: none;
}

a:focus {
    outline: 0;
    color: #5a907e;
    text-decoration: none;
}

a:hover, a:active {
    color: #5CAAA1;
    text-decoration: none;
}

footer a {
    text-decoration: none;
}

footer a:hover, footer a:visited, footer a:active, footer a:focus {
    color: #fff;
    text-decoration: none;
    font-weight: 100;
}

h2 {
    padding-bottom: 35px;
    font-weight: 300;
    font-size: 50px;
    color: #3e7664;
}

h2.time_line {
  padding-top: 100px;
}

.form-control {
    border-radius: 3px;
    box-shadow: none;
    webkit-box-shadow: none;
    moz-box-shadow: none;
    font-weight: 300;
        color: #fff;
    background-color: transparent;
        height: 36px;
    padding: 10px 18px;
    font-size: 15px;
    border: 1px solid #606060;
}

.nopadding {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
}

button.btn-contacto {
    float: left;
    color: #fff;
    border-radius: 1px;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    background: #5caaa1;
    padding: 12px 35px;
}

.btn.focus, .btn:focus, .btn:hover {
  color: #fff
}

.row {
    margin-right: 0px;
    margin-left: -15px;
}

.flecha_arriba {
    position: relative;
    display: inline-block;
    z-index: 999;
    float: right;
    top: -25px;
    right: 25px;
}

.flecha_abajo {
    position: relative;
    display: inline-block;
    z-index: 10;
    float: right;
    bottom: 175px;
    right: 25px;
    animation: bounce 2s infinite alternate;
    -webkit-animation: bounce 2s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-5px);
  }
}

.modal {
      background: rgba(255,255,255,0.9);
}

.modal-dialog {
  width: 100%;
}
.close {
  font-size: 60px;    
  font-weight: 100;
  position: absolute;
  top: -20px;
  right: 0;}

.modal-content {
  background: none;
  box-shadow: none;
  border: none;
}
.modal-header {
  border-bottom: none;
  padding: 0
}
.modal-title {
  display: none;
}

.img-responsive-g {
    width: auto;
    max-height: 550px!important;
    margin:0 auto;
}

h2.video-modal {
    font-weight: 100;
    padding: 0 0 25px;
    margin: 0;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

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

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* header */

header h1.titulo-intro {
  font-family: 'Cinzel', sans-serif;
  font-size: 1.625em;
  text-align: center;
  text-transform: uppercase;
  color:rgb(104, 144, 126);
  font-weight: 700;
}

header.header1 .carousel {
  z-index: 2
}

.carousel-inner {
/*max-height: 640px*/}

.carousel-inner>.item>a>img, .carousel-inner>.item>img {
  width: 100%;
  /*top: -30px;*/
  position: relative;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}

@media screen and (min-width: 768px) {
.carousel-caption {
    right: 20%;
    top: 5%;
    padding-bottom: 30px;
}}

.carousel-caption { 
  text-shadow: none;
}

.content-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
}

.content-header-fixed {
  position: fixed;
  background: #5CAAA1;
  max-height: 80px;
  height: 80px;
  box-shadow: 0 10px 15px rgb(0 0 0 / 5%)
}

.content-header-fixed button.menu-icon {
    position: relative;
    padding: 8px;
    margin: 0px;
    font-size: 40px;
}
.content-header-fixed .menu-icon i.fa {
  color: #fff;
}

.content-header-fixed .logo-contacto-header, .content-header-fixed .logo-img a > span{
  display: none;
  visibility: hidden;
}

.content-header-fixed .logo-img {
    max-width: 95px;
    padding: 10px 0px 0;
    margin: 0px 26px 0px;
}



.content-header .col-md-3, .content-header .col-sm-12 {
    /*width: 22%;*/
    padding: 0;
}

.logo-container {
    
}

.logo-img a, .logo-img a:hover {
    text-decoration: none;
    color: #fff
}

.logo-img {
    margin: 0 auto;
    padding: 50px 0;
    background-color: #5CAAA1;
}

.logo-img a > img {
    max-width: 340px;
    margin: 0 auto;
    display: block
}

.content-header-fixed .logo-img a > img {
  max-width: 174px
}

.logo-img a > span {
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: block;
    display: none;
}

.whatsapp {
   object-position: 0px 0px;
}

.facebook {
    object-position: 0px -42px;
}

.facebook2 {
    object-position: 0px -115px;
}

.logo-contacto-header img, .footer-contacto img {
    height: 37px; 
    width: 37px;
    margin-right: 5px;
    object-fit: none;
    transition: all .2s ease;
}

.logo-contacto-header {
    padding: 60px 25px; 
    color: #5a907e;
    background-color: rgba(255,255,255,0.75);   
    font-size: 19px;
}

.logo-contacto-header > span {
    display: inline-block;
    font-weight: 600;
    font-color: #5CAAA1;
    line-height: 2
}

span.sub-texto-intro {
    font-weight: 200;
    font-style: italic;
    margin: 40px 0 0;
    font-size: 1.250em;
    border-top: 1px solid #999;
    width: 100%;
}

.sub-texto {
  font-weight: 400;
  margin-top: 0;
  font-size: 1.200em;
}

div.precio-apart > span.precio {
    font-size: 1.889em;
    line-height: initial;
    /* padding-top: 25px; */
    display: inline-block;
    position: relative;
    left: 10px;
    right: 15px;
    font-weight: 800;
}

span.txf {
    font-size: 18px;
    margin-left: 18px;
}

.carousel-indicators .active {
    background-color: #5CAAA1; 
    border: 1px solid #5CAAA1;
    margin: 0 5px;
}

.carousel-indicators li {
    width: 12px; height: 12px;
    margin: 0px 5px;
    background-color: #e4e4e4;
}

.carousel-indicators li .active {
    margin: 1px 5px;
    background-color:#5CAAA1;
}

.right {
  float: right;
}

.navbar-header {
  width: 100%;
  float: left;
}

button.menu-icon {
    border: none;
    background: none;
    position: absolute;
    top: 0px;
    font-size: 3em;
    right: 10px;
    z-index: 999
}

button.close-button {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    overflow: hidden;
    text-indent: 10px;
    border: none;
    background: transparent;
    color: transparent;
    transition: transform 0.5s;
}

button.close-button:hover {
transform: rotate(180deg);
}

button.close-button span {
  color: #fbfbfb
}

.close-button:hover:before, .close-button:hover:after {
    background: #fff;
}

.close-button::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-button::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.close-button::before, .close-button::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #fff;
}

button.menu-icon:focus, button.close-button:focus {
    border: none;    outline: none;
}

.navbar-brand {
    height: 200px;
    margin: 20px -20px 0px;
}

.logo-right img {
  width: 260px;
  display: block;
}

.show-menu .navbar.menu-wrap {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.navbar.menu-wrap {
    position: fixed;
    width: 250px;
    top: 0;
    right: 0;
    min-height: 100%;
    border-radius: 0;
    margin: 0;
    z-index: 9999;
    height: 100%;
    -webkit-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.navbar.navbar, .navbar-default.navbar {
    background-color: #87beac;
    color: rgba(0,0,0,.84);
}

.content-wrap {
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

/*.show-menu .content-wrap {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translate3d(-250px, 0, 0);
    transform: translate3d(-250px, 0, 0);
}*/

.navbar-nav>li {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.navbar-nav>li>a {
  color: #ffffff;
  text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}

.nav>li>a:focus, .nav>li>a:hover {
  text-decoration: none;
  background-color: #5a907e;
}

/* Seccion header2 */

section.header2 {
    /*background-color: rgba(240, 244, 239, 0.75);*/
    background-image: url(../img/bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 150px 0;
    color: #fff;
    text-align: justify;
}

.financiamiento {
      margin-top: 45px;
}

.caja-blanco {
    border: 3px solid #5CAAA1;
    padding: 15px 15px;
    font-weight: 100;
    text-align: left;
    min-height: 90px;
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    line-height: 1.2;

}

.caja-blanco:hover {
  background-color: #5CAAA1;
  color: #fff;

}

.porcentaje{
    font-size: 28px;
    font-weight: 900;
    display: inline;
    padding-right: 15px;
    float: left;
    margin-right: 10px;
    border-right: 1px solid rgba(0,0,0,0.5)
}

.caja-blanco:hover .porcentaje {
  border-right: 1px solid rgba(255,255,255,0.5)
}

.cajas-mas {
    padding: 20px 25px;
    font-weight: 100;
    font-size: 1.850em;
}

/* Footer */

footer {
    /*background-color: rgba(240, 244, 239, 0.75);*/
    background-image: url(../img/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    color: #FFFFFF;
    padding: 100px 0;
    font-size: 1em;
    font-weight: 100;
}

.f14{
  font-size: 14px
}

.strong {
    font-weight: 600;
}

.logo_ciappesoni {
    padding: 0;
    text-align: center;
}

.logo_ciappesoni a > img {
    max-width: 152px;
}

.sep_redes {
  margin: 80px 0 0;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
}

.sep_redes .facebook2 {
  height: 35px;
  width: 35px;
}

.sep_redes a {
  color: #ffffff;
  font-weight: 300;

}

h4.titulo_contacto {
    float: left;
    font-weight: 100;
}

span.titulo_contacto {
    margin-bottom: 22px;
    display: block;
    font-size: 22px;
    font-weight: 100;
}

.telsf {
    font-size: 30px;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: 300;
}

.telsf a, .telsf a:active, .telsf a:hover, .logo_ciappesoni a {
    color: #fff;
}

.telsf a > i {
  width: 32px;
  text-align: center;
  font-size: 22px
}
.weblink {
  font-family: 'Open Sans', sans-serif;
  color: #5a907e
}

/* seccion confort */

section.confort {
    background-color: #ffffff;
    padding: 150px 0;
}

a.vermapa {
    background: #f5f5f5;
    padding: 0px 15px;
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
    color: #5a907e;
    font-size: 16px;
    border: 3px solid #5caaa1;
}

a.vermapa > i {
  font-size: 32px;
  padding: 15px 15px 15px 5px
}

a.vermapa > span {
  position: relative;
  top: -4px;
  margin-top: 40px
}

.row-caract {
    margin: 15px 0;
}

.caracteristicas_ap {
    background: #87beac;
    padding: 10px;
    font-size: 15px;
    color: #ffffff;
    width: 46%;
    margin-right: 15px;
}

.caracteristicas_ap i {
    padding-right: 10px;
    font-size: 22px;
    color: #ffffff
}

.fa  {
    color: #5CAAA1;
}

.w100{
  width: 100%
}

/* seccion beneficios */

section.beneficios {
  background-image: url('../img/patterns_2.png');
  background-repeat: repeat;
  background-size: 280px;
  background-color: rgba(240, 244, 239, 0.75);
  padding: 150px 0;
}

.p-40 {
  padding: 0 0 40px 0
}

img.parking  {
       width: 250px;
    margin-top: 90px;
}

section.beneficios p.list {
    padding-left: 25px;
}

section.beneficios p.list > i {
    margin-left: -25px;
    padding-right: 10px;
}

/* timeline */

section.linea_tiempo {
    
    padding:0;
}

section#cd-timeline {
  position: relative;
  padding: 2em 0;
}


section#cd-timeline::before {
  /* this is the vertical line */
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 3px;
    background: #c1c1c2;
}
@media only screen and (min-width: 1170px) {
  #cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  #cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }
}

.cd-timeline-block {
  position: relative;
  display: block;
  min-height: 150px;
}
.cd-timeline-block::after {
  clear: both;
  content: "";
  display: table;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-block {
    margin: 4em 0;
  }
  .cd-timeline-block:first-child {
    margin-top: 0;
  }
  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}

.cd-timeline-block h4 {
  text-align: center;
}

.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.cd-timeline-img img {
    display: block;
    width: 90px;
    height: 90px;
    left: 50%;
    top: 50%;
    margin-left: -5px;
    margin-top: -5px;
}
.cd-timeline-img.cd-picture {
  background: #5CAAA1;
}


.cd-timeline-img-left {
  position: absolute;
  top: 0;
  left: 30%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.cd-timeline-img-left img {
    display: block;
    width: 90px;
    height: 90px;
    left: 50%;
    top: 50%;
    margin-left: -5px;
    margin-top: -5px;
}
.cd-timeline-img-left.cd-picture {
  /*background: #5CAAA1;*/
}

a > img.link_etapas {
    object-position: 0px -84px;
    height: 25px;
    width: 25px;
    margin-right: 5px;
    object-fit: none;
    transition: all .2s ease;
}

@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    width: 80px;
    height: 80px;
    left: 50%;
    margin-left: -5px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }

  .cd-timeline-img-left {
    width: 80px;
    height: 80px;
    left: 30%;
    margin-left: -5px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.cd-timeline-content {
  position: relative;
  margin-right: 85px;
  background: #ececec;
  border-radius: 0.25em;
  padding: 1em;
  box-shadow: 0 3px 0 #d7e4ed;
      /*display: none;*/
}
.cd-timeline-content::after {
  clear: both;
  content: "";
  display: table;
}
.cd-timeline-content h2 {
  color: #303e49;
}
.cd-timeline-content .cd-read-more, .cd-timeline-img .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: .2em 1em;
  background: #5CAAA1;
  color: #ffffff;
  border-radius: 0;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
  background-color: #bac4cb;
}
.cd-timeline-img .cd-date, .cd-timeline-img-left .cd-date {
  float: left;
  padding: 0;
}
.cd-timeline-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid #ffffff;
}
@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 20px;
   
  }
  .cd-timeline-content p {
    font-size: 16px;
    
  }
  .cd-timeline-content .cd-read-more, .cd-timeline-img .cd-date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-content {
    margin-left: 0;
    padding: 1em;
    width: 42%;
    right: 0;
    float: right;
  }
  .cd-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: #ececec;
  }
  .cd-timeline-content .cd-read-more {
    float: left;
  }
  .cd-timeline-img-left .cd-date {
    text-align: center;
    position: relative;
    width: 150px;
    right: 35px;
    font-size: 16px;
  }
  .cd-timeline-img .cd-date {
    text-align: center;
    position: relative;
    width: 150px;
    right: 35px;
    font-size: 16px;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content  {
    float: left;
    }  
  .cd-timeline-block .cd-timeline-content {
    float: right;
  }
  
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
      display:"none"
    /*top: 24px;
    right: auto;
    left: 100%;
    border-color: transparent;
    border-right-color: #ececec*/;
  }
  
  .cd-timeline-block .cd-timeline-content::before {
      display:"none"
    /*top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: #ececec;*/
  }
  .cd-timeline-block .cd-timeline-content .cd-read-more {
    float: left;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-img .cd-date {
    left: auto;
   /* right: 122%;*/
    text-align: center;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-img-left .cd-date {
    left: auto;
    right: 5%;
    text-align: right;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 1170px) {
  /* inverse bounce effect on even content blocks */
  .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

.video-entrega {
    background-color: #5CAAA1;
    padding: 100px 0 0;
    color: #fff;
    margin: 0 auto;
    text-align: center;
}

.titulo-intro2 {
    display:none;
}

/* LOGO */ 

.content-header .l2 {
    display: none;
}

.content-header.content-header-fixed .l1 {
    display: none;
}

.content-header.content-header-fixed .l2 {
    display: inline-block;
    min-width: 220px;
}