@media(min-width: 320px) {
    .ak {
        position: relative;
        display: flex;
        height: 75vh;
        max-height: 75vh;
        background: #000;
        overflow: hidden;
        width: 100%;
    }

    .ak__background {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1600px;
        height: 80vh;
        padding-bottom: 66.25%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 100;
    }

    .ak__video-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.5s linear;
    }

    .ak__background::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 200;
        background: rgba(0, 0, 0, .2);
    }

    .wrppr__ak__title {
        position: relative;
        flex: 0 0 auto;
        z-index: 300;
        width: 100%;
        display: flex;
        justify-content: center;
        /*align-self: center;*/
        align-self: flex-end;
        margin-bottom: 100px;
    }

    .inner__wrppr__ak__title {
        position: relative;
        width: 90%;
    }

    .ak__title {
        width: 100%;
        font-weight: normal;
        color: white;
        line-height: 1;
        text-transform: none;
        font-family: 'ChronicleDisplay-XLight';
        /*text-align: center;
        font-size: 32px;*/
        font-size: 24px;
        text-align: center;
        letter-spacing: 1.5px;
    }
    
    .ak__description{
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        text-align:center;
        font-size:14px;
        font-family: 'Poppins-Regular';
        color: #fff;
        -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    }
    
    .ak__description p{
        margin:0;
    }

    .btn__wrppr__ak__title {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
        text-transform: none;
    }

    .btn__wrppr__ak__title a {
        width: auto;
        padding: 15px;
        min-width: auto;
        text-decoration:none;
        margin: 20px auto;
        border-radius: 5px;
        display: block;
        font-family: 'Poppins-Medium';
        font-size: 14px;
        text-align: center;
        color: #fff;
        border: none;
        background-color: #000;
        border:1px solid #000;
        transition:ease .3s all;
    }
    
    .btn__wrppr__ak__title a:hover{
        background-color: transparent;
        border:1px solid #fff;
    }

    .ak__video-overlay--fadeOut {
        opacity: 0;
        visibility: hidden;
    }

    .ak iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
}

@media(min-width: 768px) {
    .ak {
        height: 70vh;
        max-height: 70vh;
    }

    .inner__wrppr__ak__title {
        width: 65%;
    }

    .ak__background {
        height: 75vh;
        width: 1350px;
    }
    
    .ak__description{
        font-size:16px;
    }

}

@media(min-width: 992px) {

    .ak__background {
        width: 1800px;
    }

    .btn__wrppr__ak__title a {
        min-width: 230px;
    }

    .ak__title {
        font-size: 26px;
    }

}

@media(min-width: 1200px) {
    .ak {
        height: calc(100vh - 110px);
        max-height: calc(100vh - 110px);
    }
    .ak__background {
        width: 120%;
    }
    /*
    .ak__title {
        font-size: 50px;
    }*/
    
    .inner__wrppr__ak__title {
        width: 50%;
    }

}

/*======================================================================*
    _video local
*======================================================================*/
@media (min-width: 320px) {
  .banner-background-video {
    height: 75vh;
    max-height: 75vh;
    overflow: hidden;
    position: relative;
    width: 100%;
    float: left;
  }
}
@media (min-width: 768px) {
  .banner-background-video {
    height: 70vh;
    max-height: 70vh;
  }
}
@media (min-width: 1200px) {
  .banner-background-video {
    height: calc(100vh - 110px);
    max-height: calc(100vh - 110px);
  }
}
.banner-background-video-txt {
  position: absolute;
  z-index: 100;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 90%;
}
@media (min-width: 768px) {
  .banner-background-video-txt {
    bottom: 50px;
  }
}
@media (min-width: 992px) {
  .banner-background-video-txt {
    width: 50%;
  }
}
.banner-background-video-txt h2 {
  color: white;
  line-height: 1;
  text-transform: none;
  font-family: "ChronicleDisplay-XLight";
  font-size: 24px;
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}
.banner-background-video-txt p {
  text-align: center;
  font-size: 14px;
  font-family: "Poppins-Regular";
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.banner-background-video-actions {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner-background-video-actions a {
  width: auto;
  padding: 15px;
  min-width: auto;
  text-decoration: none;
  margin: 20px auto 0;
  border-radius: 5px;
  display: block;
  font-family: "Poppins-Medium";
  font-size: 14px;
  text-align: center;
  color: #fff;
  border: none;
  background-color: #000;
  border: 1px solid #000;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.banner-background-video-actions a:hover {
  background-color: transparent;
  border: 1px solid #fff;
}
@media (min-width: 320px) {
  .banner-background-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
    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;
    z-index: 10;
  }
}
@media (min-width: 1200px) {
  .banner-background-video-container {
    width: 100%;
  }
}
@media (min-width: 320px) {
  .banner-background-video-container video {
    display: block;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .banner-background-video-container video {
    width: 100%;
    height: auto;
    min-height: 100%;
  }
}
.banner-background-video-container.pantalla::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.action-sound {
  position: relative;
  width: 100%;
  margin-top: 40px;
  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;
}
.action-sound::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: 1px;
  width: 40px;
  background: rgba(255, 255, 255, 0.2);
}
.action-sound a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  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;
  border: 1px solid #fff;
  opacity: 0.6;
}
.action-sound a img {
  display: block;
  width: 40%;
}

.pulse {
  -webkit-animation: pulse-animation 2s infinite;
          animation: pulse-animation 2s infinite;
  opacity: 1 !important;
}

@-webkit-keyframes pulse-animation {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse-animation {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}


/*======================================================================*
    Banner Video Multimedia
*======================================================================*/

.video-multimedia {
  position: relative;
  width: 100%;
  float: left;
  margin: 100px 0;
}
.video-multimedia-inner {
  position: relative;
  width: 100%;
  float: left;
  padding: 30px 15px;
  border: 1px solid rgba(1, 6, 17, 0.2);
  border-radius: 5px;
}
@media (min-width: 768px) {
  .video-multimedia-inner {
    padding: 50px;
  }
}
.video-multimedia-inner-frame {
  position: relative;
  float: left;
  width: 100%;
}

.description-main-ttl {
  position: relative;
  width: 100%;
  float: left;
}
.description-main-ttl h2 {
  font-family: "ChronicleDisplay-XLight";
  font-size: 14px;
  width: 100%;
  text-align: center;
  color: #010611;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .description-main-ttl h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .description-main-ttl h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.description-main-ttl p {
  font-family: "Poppins-Regular";
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  text-align: center;
  color: #010611;
  letter-spacing: 0.5px;
}
.description-main-ttl .separador {
  width: 100px;
  margin: 20px auto;
  display: block;
  height: 1px;
  background: #010611;
}
@media (min-width: 768px) {
  .description-main-ttl .separador {
    margin: 30px auto;
  }
}

.m-top-15-to-30 {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .m-top-15-to-30 {
    margin-top: 30px;
  }
}

.description-action {
  position: relative;
  width: 100%;
  float: left;
  border: 1px solid rgba(1, 6, 17, 0.2);
  background-color: #e6e8ed;
}
@media (min-width: 768px) {
  .description-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.description-action-txt {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "ChronicleDisplay-XLight";
  font-size: 16px;
  line-height: 22px;
  color: #010611;
  padding: 15px;
  text-align: center;
}
@media (min-width: 992px) {
  .description-action-txt {
    width: 75%;
    padding: 30px;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-align: left;
  }
}
.description-action-txt h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .description-action-txt h3 {
    font-size: 26px;
  }
}
.description-action-txt p {
  margin: 0;
}
.description-action-txt a {
  text-decoration: underline;
  color: #010611;
  font-style: italic;
}
.description-action-button {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 992px) {
  .description-action-button {
    width: 25%;
    margin: 0;
  }
}
.description-action-button a {
  display: inline-block;
  min-width: 60%;
  margin: auto;
  text-decoration: none;
  border-radius: 5px;
  padding: 15px 30px;
  font-family: "ChronicleDisplay-XLight";
  font-size: 14px;
  color: #fff;
  text-align: center;
  background-color: #010611;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #010611;
}
@media (min-width: 768px) {
  .description-action-button a {
    min-width: 40%;
  }
}
@media (min-width: 992px) {
  .description-action-button a {
    font-size: 18px;
    min-width: 70%;
  }
}
@media (min-width: 1200px) {
  .description-action-button a {
    min-width: 60%;
  }
}
.description-action-button a:hover {
  color: #010611;
  background-color: transparent;
}

.description-quote {
  position: relative;
  width: 100%;
  float: left;
  padding: 15px 0;
  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-radius: 5px;
}
@media (min-width: 992px) {
  .description-quote {
    padding: 30px 5%;
  }
}
.description-quote-inner {
  position: relative;
  width: 100%;
  float: left;
  font-family: "ChronicleDisplay-XLight";
  font-size: 16px;
  line-height: 22px;
  color: #010611;
  padding: 15px;
  text-align: center;
}
@media (min-width: 992px) {
  .description-quote-inner {
    font-size: 18px;
    letter-spacing: 0.5px;
    text-align: center;
  }
}
.description-quote-inner p:last-of-type {
  margin: 0;
}
.description-quote-inner a {
  text-decoration: underline;
  color: #010611;
  font-style: italic;
}

.padding-bottom-cancel {
  padding-bottom: 0;
}