/* ------------ ESTILOS DEL INICIO ------------ */


.column p,
.column a,
.column .fi {
  display: none;
}

.mainContent {
    display: flex;
    min-height: 90vh;
  }
  
  .bgVideo {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
  }
  
  
  .column {
    flex: 1;
    color: var(--White);
    padding: var(--M);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: 800ms;
  }
  
  .column > h2 {
    margin: var(--S) 0;
  }
  
  .column > a {
    font-size: var(--M);
    font-weight: 900;
    text-decoration: none;
  }
  
  .column > .btnPrimary {
    background-color: var(--White);
    font-size: var(--M);
    font-weight: 700;
    color: var(--priColor);
    padding: var(--S) var(--M);
    border-radius: var(--XL);
    border: 0;
    cursor: pointer;
    margin-top: var(--XL);
  }
  
  .iconLeft,
  .iconRight {
    color: var(--White);
    font-size: 80px;
    position: absolute;
    right: 51%;
  }
  
  .iconRight {
    left: 51%;
  }
  
  .column:hover {
    background-color: #0c347d82;
  }

  @media screen and (max-width: 768px) {
    
  .mainContent {
    flex-direction: column;
  }

  .column {
    min-height: 45vh;
  }

  .column > p,
  .column > .btnPrimary {
    font-size: 18px;
  }

  .iconLeft, .iconRight {
    color: transparent;
  }

  .linksFooter {
    flex-direction: column;
    align-items: center;
  }

  
  }