

/* === ASSET CSS HASH: 97c109bdbdd64e21ec5b77a835b564065296695e | GLOBAL === */
/* ============================================
   Widget Footer CTA - Estilos Scoped
   Todos los estilos están scoped bajo .footercta-widget
   ============================================ */

.footercta-widget a {
  text-decoration: none!important;
}

.footercta-widget {
  /* ============================================
     Estilos base de tipografía
     ============================================ */
  font-size: 16px;
  line-height: 1.7;
  font-family: var(--primary_font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fafafa;
  
  /* ============================================
     Estilos de CTA Moderna (cta-main-wrapper)
     ============================================ */
  
  .cta-main-wrapper {
    position: relative;
    z-index: 1;
  }
  
  .bg_image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  
  .bg-cta-modern {
    background-image: url(imagenes/02.jpg);
    height: 290px;
    display: flex;
    align-items: center;
  }
  
  .bg-cta-modern.large-height {
    height: 390px;
  }
  
  [data-black-overlay],
  [data-white-overlay] {
    position: relative;
  }
  
  [data-overlay] > div,
  [data-overlay] > *,
  [data-black-overlay] > div,
  [data-black-overlay] > *,
  [data-white-overlay] > div,
  [data-white-overlay] > * {
    position: relative;
    z-index: 2;
  }
  
  [data-overlay]:before,
  [data-black-overlay]:before,
  [data-white-overlay]:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
  }
  
  [data-black-overlay]:before {
    background-color: #fff;
  }
  
  [data-white-overlay]:before {
    background-color: #ffffff;
  }
  
  [data-overlay="1"]:before,
  [data-black-overlay="1"]:before,
  [data-white-overlay="1"]:before {
    opacity: 0.1;
  }
  
  [data-overlay="2"]:before,
  [data-black-overlay="2"]:before,
  [data-white-overlay="2"]:before {
    opacity: 0.2;
  }
  
  [data-overlay="3"]:before,
  [data-black-overlay="3"]:before,
  [data-white-overlay="3"]:before {
    opacity: 0.3;
  }
  
  [data-overlay="4"]:before,
  [data-black-overlay="4"]:before,
  [data-white-overlay="4"]:before {
    opacity: 0.4;
  }
  
  [data-overlay="5"]:before,
  [data-black-overlay="5"]:before,
  [data-white-overlay="5"]:before {
    opacity: 0.5;
  }
  
  [data-overlay="6"]:before,
  [data-black-overlay="6"]:before,
  [data-white-overlay="6"]:before {
    opacity: 0.6;
  }
  
  [data-overlay="7"]:before,
  [data-black-overlay="7"]:before,
  [data-white-overlay="7"]:before {
    opacity: 0.7;
  }
  
  [data-overlay="8"]:before,
  [data-black-overlay="8"]:before,
  [data-white-overlay="8"]:before {
    opacity: 0.8;
  }
  
  [data-overlay="9"]:before,
  [data-black-overlay="9"]:before,
  [data-white-overlay="9"]:before {
    opacity: 0.9;
  }
  
  [data-overlay="10"]:before,
  [data-black-overlay="10"]:before,
  [data-white-overlay="10"]:before {
    opacity: 1;
  }
  
  /* Estilo específico para light mode */
  .active-light-mode [data-black-overlay]:before {
    background-color: #fff;
  }
  
  .cta-main-wrapper > * {
    position: relative;
    z-index: 3;
  }
  
  .call-to-action-modern-wrapper {
    display: flex;
    align-items: center;
    gap: 320px;
  }
  
  @media only screen and (max-width: 991px) {
    .call-to-action-modern-wrapper {
      gap: 50px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .call-to-action-modern-wrapper {
      flex-wrap: wrap;
      gap: 30px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .call-to-action-modern-wrapper {
      flex-direction: column;
      gap: 10px !important;
      margin-bottom: 46px;
    }
  }
  
  .call-to-action-modern-wrapper .title {
    font-size: 54px;
    margin: 0;
    color: #1b1b1c;
    font-family: var(--primary_font);
    font-weight: 700;
    line-height: 1.2;
  }
  
  @media only screen and (max-width: 1199px) {
    .call-to-action-modern-wrapper .title {
      font-size: 42px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .call-to-action-modern-wrapper .title {
      font-size: 36px;
    }
    
    .call-to-action-modern-wrapper .title br {
      display: none;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .call-to-action-modern-wrapper .title {
      font-size: 32px;
    }
  }
  
  .call-to-action-modern-wrapper .right-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
  }
  
  .call-to-action-modern-wrapper .right-wrapper p {
    font-size: 26px;
    margin: 0;
    color: #363636;
    font-family: var(--primary_font);
  }
  
  .bg-cta-modern.large-height .right-wrapper p {
    font-size: 32px;
  }
  
  @media only screen and (max-width: 767px) {
    .bg-cta-modern.large-height .right-wrapper p {
      font-size: 20px;
    }
  }
  
  .call-to-action-modern-wrapper .right-wrapper p a {
    font-weight: 600;
    color: #363636;
    transition: 0.3s;
    text-decoration: underline;
  }
  
  .call-to-action-modern-wrapper .right-wrapper p a:hover {
    color: var(--primary_color);
  }
  
  /* ============================================
     Estilos de Animación de Texto (cd-headline zoom)
     ============================================ */
  
  .cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
  }
  
  .cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
  }
  
  .cd-words-wrapper b.is-visible {
    position: relative;
  }
  
  .cd-headline.zoom .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
  }
  
  .cd-headline.zoom b {
    opacity: 0;
  }
  
  .cd-headline.zoom b.is-visible {
    opacity: 1;
    -webkit-animation: zoom-in 0.8s;
    -moz-animation: zoom-in 0.8s;
    animation: zoom-in 0.8s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
  }
  
  .cd-headline.zoom b.is-hidden {
    -webkit-animation: zoom-out 0.8s;
    -moz-animation: zoom-out 0.8s;
    animation: zoom-out 0.8s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
  }
  
  .theme-gradient {
    color: var(--primary_color);
  }
  
  .header-caption {
    display: inline-block;
  }
  
  /* ============================================
     Estilos de Footer (tmp-footer)
     ============================================ */
  
  .tmp-footer.footer-style-default.variation-two {
    border: 1px solid #e3e3e3;
    background: #ffffff;
    border-radius: 0;
    position: relative;
    z-index: 1;
  }
  
  .tmp-footer.footer-style-default.variation-two .footer-top {
    position: relative;
    padding: 100px 0;
    padding-bottom: 70px;
  }
  
  @media only screen and (max-width: 575px) {
    .tmp-footer.footer-style-default.variation-two .footer-top {
      padding-bottom: 40px;
    }
  }
  
  .footer-top.pt--0 {
    padding-top: 0 !important;
  }
  
  .footer-top.pb--80 {
    padding-bottom: 80px !important;
  }
  
  .footer-message-and-form {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: end;
  }
  
  @media only screen and (max-width: 767px) {
    .footer-message-and-form {
      display: flex;
      flex-flow: column-reverse;
      gap: 40px;
      align-items: end;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .footer-message-and-form {
      align-items: start;
    }
  }
  
  .footer-message-and-form .colophon {
    font-size: 18px;
    line-height: 1.3;
    margin: 20px 0 0;
    color: #363636;
    font-family: var(--primary_font);
  }
  
  .footer-message-and-form .colophon a {
    transition: 0.3s;
    color: #363636;
  }
  
  .footer-message-and-form .colophon a:hover {
    color: var(--primary_color);
  }
  
  /* ============================================
     Estilos de Footer Form Wrap
     ============================================ */
  
  .footer-form-wrap {
    background: #ffffff !important;
    padding: 30px;
    margin: -80px 0 0;
    position: relative;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 4px solid var(--primary_color);
    z-index: 1;
  }
  
  @media only screen and (max-width: 575px) {
    .footer-form-wrap {
      padding: 15px;
    }
  }
  
  .footer-form-wrap::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.03;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .footer-form-wrap h4 {
    font-size: 26px;
    color: #1b1b1c;
    font-family: var(--primary_font);
    font-weight: 600;
    margin: 0 0 10px;
  }
  
  .footer-form-wrap h4 a {
    color: var(--primary_color);
  }
  
  .footer-form-wrap p {
    color: #363636;
    font-family: var(--primary_font);
    margin: 0 0 20px;
  }
  
  .footer-form-wrap form {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  @media only screen and (max-width: 575px) {
    .footer-form-wrap form {
      gap: 10px;
    }
  }
  
  .footer-form-wrap form .form-row {
    flex: 1;
  }
  
  .footer-form-wrap form .input-group {
    border-radius: 4px;
    flex: 1;
    position: relative;
  }
  
  .footer-form-wrap form .input-group::after {
    border-radius: 4px;
  }
  
  .footer-form-wrap form .input-group input {
    height: 50px;
    background: rgba(255, 255, 255, 0);
    color: #1b1b1c;
    border: 2px solid #e3e3e3;
    border-radius: var(--general_border_radius);
    padding: 0 15px;
    font-size: 16px;
    font-family: var(--primary_font);
    width: 100%;
  }
  
  .footer-form-wrap form .input-group input:focus {
    outline: none;
    border-color: var(--primary_color);
  }
  
  .footer-form-wrap form .input-group input::placeholder {
    color: #848788;
  }
  
  .footer-form-wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 100%;
    width: 37px;
    height: 79px;
    background: var(--primary_color);
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  
  @media only screen and (max-width: 575px) {
    .footer-form-wrap:after {
      display: none;
    }
  }
  
  /* ============================================
     Estilos de Footer Widget
     ============================================ */
  
  .tmp-footer-widget {
    margin-bottom: 30px;
  }
  
  .tmp-footer-widget .logo {
    margin-bottom: 20px;
  }
  
  .tmp-footer-widget .logo a {
    display: inline-block;
  }
  
  .tmp-footer-widget .logo img {
    max-height: 40px;
    width: auto;
  }
  
  .tmp-footer-widget .logo .logo-light {
    display: none;
  }
  
  .tmp-footer-widget .logo .logo-dark {
    display: block;
  }
  
  .tmp-footer-widget .title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #1b1b1c;
    font-family: var(--primary_font);
  }
  
  .tmp-footer-widget .subtitle {
    font-weight: 400;
    color: #363636;
    font-size: 16px;
    padding-right: 31%;
    line-height: 28px;
    margin-bottom: 32px;
    font-family: var(--primary_font);
  }
  
  @media only screen and (max-width: 767px) {
    .tmp-footer-widget .subtitle {
      padding-right: 0;
    }
  }
  
  .tmp-footer-widget .inner {
    margin-top: 13px;
  }
  
  .tmp-footer-widget .footer-link {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .tmp-footer-widget .footer-link li {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .tmp-footer-widget .footer-link li a {
    font-size: 14px;
    display: inline-block;
    color: #363636;
    line-height: 25px;
    transition: 0.3s;
    text-transform: capitalize;
    font-family: var(--primary_font);
    position: relative;
  }
  
  .tmp-footer-widget .footer-link li a::after {
    position: absolute;
    content: "";
    left: auto;
    bottom: 0;
    background: currentColor;
    width: 0;
    height: 2px;
    transition: 0.3s;
    right: 0;
  }
  
  .tmp-footer-widget .footer-link li a:hover {
    color: var(--primary_color);
  }
  
  .tmp-footer-widget .footer-link li a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  /* ============================================
     Estilos de Link Hover
     ============================================ */
  
  .link-hover a {
    display: inline-block;
    position: relative;
  }
  
  .link-hover a::after {
    position: absolute;
    content: "";
    left: auto;
    bottom: 0;
    background: currentColor;
    width: 0;
    height: 2px;
    transition: 0.3s;
    right: 0;
  }
  
  .link-hover a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  /* ============================================
     Estilos de Social Icons
     ============================================ */
  
  .social-default {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
    margin: -8px;
  }
  
  .social-default.justify-content-start {
    justify-content: flex-start;
  }
  
  .social-default li {
    margin: 5px;
  }
  
  .social-default li a {
    width: 48px;
    background-color: #f1f1f1;
    height: 48px;
    line-height: 43px;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    transition: 0.3s;
    color: #1b1b1c;
    z-index: 2;
    position: relative;
  }
  
  .social-default li a:hover {
    color: #ffffff;
  }
  
  .social-default li a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--primary_color);
    transform: scale(0.5);
    opacity: 0;
    transition: 0.3s;
    border-radius: 100%;
  }
  
  .social-default li a:hover {
    color: #ffffff;
  }
  
  .social-default li a:hover::after {
    transform: scale(1);
    opacity: 1;
  }
  
  .social-default li a i {
    vertical-align: middle;
  }
  
  /* ============================================
     Estilos de Copyright Area
     ============================================ */
  
  .copyright-area.copyright-style-one {
    padding: 20px 0;
    border-top: 1px solid #e3e3e3;
  }
  
  .copyright-style-one .copyright-text {
    margin-bottom: 0;
    font-size: 14px;
    color: #363636;
    font-family: var(--primary_font);
  }
  
  .copyright-style-one .copyright-text a {
    color: #363636;
  }
  
  .copyright-style-one .ft-menu {
    padding: 0;
    margin: 0 -10px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  
  @media only screen and (max-width: 767px) {
    .copyright-style-one .ft-menu {
      justify-content: center;
    }
  }
  
  .copyright-style-one .ft-menu li {
    margin: 0;
    padding: 0 10px;
    position: relative;
  }
  
  .copyright-style-one .ft-menu li + li::after {
    position: absolute;
    content: "";
    height: 14px;
    width: 1px;
    background: #e3e3e3;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .copyright-style-one .ft-menu li a {
    font-size: 14px;
    color: #363636;
    font-family: var(--primary_font);
    transition: 0.3s;
  }
  
  .copyright-style-one .ft-menu li a:hover {
    color: var(--primary_color);
  }
  
  /* ============================================
     Estilos de Shape Area
     ============================================ */
  
  .footer-style-default .shape-area {
    position: absolute;
    left: 210px;
    top: -24px;
    z-index: -1;
  }
  
  @media only screen and (max-width: 767px) {
    .footer-style-default .shape-area {
      left: 20px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .footer-style-default .shape-area {
      display: none;
    }
  }
  
  .footer-style-default .shape-area img {
    max-width: 100%;
    height: auto;
  }
  
  /* ============================================
     Estilos de bg-line-animatoin-area-global
     ============================================ */
  
  .bg-line-animatoin-area-global {
    background-image: url(imagenes/global-line.png);
    animation: ShapeAnim 80s linear infinite;
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    overflow: hidden;
    bottom: 0;
    position: absolute;
   
  }
  
  /* ============================================
     Estilos de Efecto tmponhover (flashlight effect)
     ============================================ */
  
  .tmponhover {
    position: relative;
    overflow: hidden;
  }
  
  .tmponhover::before {
    content: "";
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    background: radial-gradient(var(--primary_color), transparent, transparent);
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: 0.5s, top 0s, left 0s;
    border-radius: var(--general_border_radius);
    z-index: 1;
  }
  
  .tmponhover:hover::before {
    opacity: 1;
  }
  
  .tmponhover::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #ffffff;
    border-radius: var(--general_border_radius);
    z-index: 1;
    pointer-events: none;
  }
  
  .tmponhover input {
    position: relative;
    z-index: 2;
    background: transparent;
  }
  
  /* ============================================
     Estilos de Botones (.tmp-btn)
     ============================================ */
  
  .tmp-btn,
  .btn-default {
    padding: 0 28px;
    border-radius: 5px;
    background: var(--primary_color);
    transition-duration: 300ms;
    color: #ffffff;
    font-family: var(--primary_font);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    display: flex;
    height: 50px;
    line-height: 49px;
    letter-spacing: 0.5px;
    width: max-content;
    transition: all 0.6s;
    border: 0 none;
    position: relative;
    z-index: 3;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  @media only screen and (max-width: 767px) {
    .tmp-btn,
    .btn-default {
      padding: 0 16px;
      height: 42px;
      line-height: 42px;
    }
  }
  
  .tmp-btn::after,
  .btn-default::after {
    position: absolute;
    content: "";
    width: 200%;
    height: 200%;
    left: 50%;
    top: 110%;
    background: var(--primary_color);
    transform: translateX(-50%);
    transition: all 0.6s;
    transition-duration: 800ms;
    opacity: 0.5;
    border-radius: 50%;
    z-index: -1;
  }
  
  .tmp-btn:hover,
  .btn-default:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 0 20px 5px rgba(82, 55, 249, 0.33);
  }
  
  .tmp-btn:hover::after,
  .btn-default:hover::after {
    opacity: 1;
    top: -30%;
  }
  
  .tmp-btn.btn-primary {
    background: var(--primary_color);
    color: #ffffff;
  }
  
  .tmp-btn.btn-primary:hover {
    background-color: var(--secondary_color);
    color: #ffffff;
  }
  
  .tmp-btn:focus,
  .btn-default:focus {
    box-shadow: none;
    border: none;
    background-color: unset;
    background: var(--primary_color);
    color: #ffffff;
  }
  
  /* ============================================
     Estilos de Mensajes de Error y Éxito
     ============================================ */
  
  .error-msg {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    font-family: var(--primary_font);
  }
  
  .error-msg p {
    margin: 0;
    color: #dc3545;
  }
  
  .XSuccess {
    padding: 15px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: var(--general_border_radius);
    color: #155724;
    margin-top: 20px;
    font-family: var(--primary_font);
  }
  
  .XSuccess.d-none {
    display: none;
  }
  
  .XSuccess p {
    margin: 0;
    color: #155724;
  }
  
  .input-group input.error {
    border-color: #dc3545;
  }
  
  /* ============================================
     Estilos de Jarallax (Parallax)
     ============================================ */
  
  .jarallax {
    position: relative;
    z-index: 0;
  }
  
  .jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  /* ============================================
     Utilidades de Spacing
     ============================================ */
  
  /* Position */
  .position-relative {
    position: relative;
  }
  
  /* Margin Bottom */
  .mb--80 {
    margin-bottom: 80px !important;
  }
  
  .mb--30 {
    margin-bottom: 30px !important;
  }
  
  .mb--0 {
    margin-bottom: 0 !important;
  }
  
  /* Margin Top */
  .mt--30 {
    margin-top: 30px !important;
  }
  
  .mt--10 {
    margin-top: 10px !important;
  }
  
  .mt--0 {
    margin-top: 0 !important;
  }
  
  /* Padding Bottom */
  .pb--80 {
    padding-bottom: 80px !important;
  }
  
  .pb--0 {
    padding-bottom: 0 !important;
  }
  
  /* Padding Top */
  .pt--0 {
    padding-top: 0 !important;
  }
  
  /* Responsive - Small devices (max-width: 767px) */
  @media only screen and (max-width: 767px) {
    .mb_sm--0 {
      margin-bottom: 0 !important;
    }
    
    .mt_sm--0 {
      margin-top: 0 !important;
    }
    
    .pb_sm--0 {
      padding-bottom: 0 !important;
    }
    
    .pt_sm--0 {
      padding-top: 0 !important;
    }
  }
}

/* ============================================
   Keyframes (Deben estar fuera del scope para funcionar)
   ============================================ */

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}

/* ============================================
   Keyframes para zoom-in y zoom-out
   ============================================ */

@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
}

@-moz-keyframes zoom-in {
  0% {
    opacity: 0;
    -moz-transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }
}

@keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
    -moz-transform: translateZ(100px);
    -ms-transform: translateZ(100px);
    -o-transform: translateZ(100px);
    transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
  }
}

@-moz-keyframes zoom-out {
  0% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateZ(-100px);
  }
}

@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
    -moz-transform: translateZ(-100px);
    -ms-transform: translateZ(-100px);
    -o-transform: translateZ(-100px);
    transform: translateZ(-100px);
  }
}


