.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  
  .flex-col {
    flex-direction: column;
  }
  .flex-col .logo{
    margin-top: 20px;
    margin-bottom: 0px;
  }
  
  section {
    height: 100%;
    max-height: 768px;
    background-color: transparent;
  }
  
  .slide-data {
    /* gap: 2rem; */
    height: 48em;
    background-color: rgba(3, 64, 185, 0.594);
    padding: 0 20px;
  }
  
  .slide-data * {
    margin: 0;

  }
  
  /* .big-white-sheet-of-paper {
    background-color: white;
  } */
  
  .slide-bg {
    position: fixed;
    --width: 100%;
    width: 103%;
    /* height: calc(200% - var(--width)); */
    display: flex;
    justify-content: center;
    left: calc((var(--width) - var(--width)) - 2%);
    z-index: -1;
  }
  
  .slide-bg > video,
  .slide-bg > img {
    width: 110%;
    object-fit: cover;
  }

  @media (max-width: 1250px){
    .slide-bg > video,
    .slide-bg > img {
      margin-top: 3em;
    }
} 
@media (max-width: 1000px){
    .slide-bg {
      width: 103%;
    }
    .slide-data{
      height: 38em;
      margin-top: 100px;
    }
    .slide-bg > video{
      margin-top: 6em;
    }
  }