#fondo {
 width: 100%;
      height: 100vh;
      background-image: linear-gradient(-60deg, #ff7300 50%, #002a3f 50%);
      background-size: 400% 400%;
      position: relative;
      animation:cambiar 8s ease-in-out infinite alternate;
}

@keyframes cambiar{
      0%{background-position: 0 50%;}
      50%{background-position: 100% 50%;}
      100%{background-position: 0 50%;}
    }


#txts-info {
  display: flex;
  width: 100%;
  height: auto;
  font-size: 20px;
  font-family: "Open Sans Condensed", sans-serif;
  color: #ffffff;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

#caixa {
    height: 100%;
    display: grid;
    grid-template-rows: auto 155px;
    grid-template-areas: "topo-player"
                         "rodape";

}

#topo-player {
    grid-area: topo-player;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#rodape {
  grid-area: rodape;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

  /*Player*/

  #player {
    width: 100.1%;
    height: 104%;
  
    margin-left: -50%;
    position: relative;
    left: 50%;
    top: 0px;
    z-index: 0;
  }
  /*Fin Player*/
  
 
  @media only screen and (max-width: 991px) {
    .banners {
      width: 345px;
      height: auto;
    }
    #caixa {
      grid-template-rows: auto 220px;
    }

    #txts-info {
      font-size: 22px;
      font-weight: 500;
      font-family: "Open Sans Condensed", sans-serif;
      color: #ffffff;
      text-align: center;
    }

  }
  

  /*Modal*/
    .copyright1 {
      position: relative;
      background-color: rgba(0, 0, 0, 0);
      bottom: 5px;
      color: rgba(255, 255,255, 0.6);
      font-size: 10px;
      white-space: nowrap;
      padding-top: 1px;
      padding-bottom: 6px;
      padding-left: 2px;
      padding-right: 2px;
    }
    @media screen and (max-width: 768px) {
      .copyright1 {
        position: relative;
        font-size: 10px;
        padding-bottom: 60px;
      }
    }
    
    
    body {
      font-family: "Open Sans", sans-serif;
      color: #272829;
    }
    
    a {
      color: rgba(255, 255,255, 0.6);
    }
    
    a:hover {
      color: rgba(255, 255,255, 1);
      text-decoration: none;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: "Raleway", sans-serif;
    }
    

    /*--------------------------------------------------------------
    # Header
    --------------------------------------------------------------*/
    #header {
      position: fixed;
      top: 0;
      left: 0;
      bottom: top;
      z-index: 100;
      transition: all 0.5s;
      padding-top: 20px;
      padding-left:20px;
      padding-right:20px;
      padding-bottom: 100vh;
      overflow-y: auto;
      background: rgba(255,255,255,0);
    }
  
    #header-right {
      position: fixed;
      top: 0;
      right: 0;
      bottom: top;
      z-index: 1;
      transition: all 0.5s;
      padding-top: 20px;
      padding-left:20px;
      padding-right:20px;
      overflow-y: auto;
      background: rgba(255,255,255,0);
    }
  
    @media (min-width: 992px) and (max-width: 1000px) {
      #player {
        width: 60%;
        margin-left: -30%;
      }
    }

    @media (max-width: 991px) {
      #header {
        width: auto;
        background: #fff;
        border-right: 1px solid #e6e9ec;
        left: -300px;
      }
      #player {
        width: 100%;
        margin-left: -50%;
      }
    }
    
    @media (min-width: 992px) {
      #main {
        margin-left: 100px;
      }
      .mobile-nav-toggle {
        display: none;
      }
      #bt1, #bt2 {
        display: none;
      }
    }
    
    /*--------------------------------------------------------------
    # Navigation Menu
    --------------------------------------------------------------*/
    /* Desktop Navigation */
    .nav-menu * {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .nav-menu > ul > li {
      position: relative;
      white-space: nowrap;
      font-family: 'Poppins';
    }

    .nav-menu a {
      display: flex;
      align-items: center;
      color: #FFFFFF!important;
      padding: 10px 18px;
      margin-bottom: 8px;
      transition: 0.3s;
      font-size: 15px;
      border-radius:15px;
      border: 2px solid #fff;
      background: #002a3f!important;
      height: 46px;
      width: 100%;
      overflow: hidden;
      font-family: 'Poppins';
      transition: 0.3s;
    }

    .nav-menu a i {
      font-size: 20px;
      font-family: 'Poppins';
    }

    .nav-menu a span {
      padding: 0 5px 0 7px;
      color: #FFFFFF!important;
    }

    @media (min-width: 3000px) {
      .nav-menu a {
        width: 56px;
      }
      .nav-menu a span {
        display: none;
        font-family: 'Poppins';
        color: #FFFFFF!important;
      }
    }

    .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
      color: #fff;
      background: #003d5a!important;
    }

    .nav-menu a:hover span, .nav-menu .active > a span, .nav-menu li:hover > a span {
      color: #FFFFFF!important;
    }

    .nav-menu a:hover, .nav-menu li:hover > a {
      width: 100%;
      color: #FFFFFF!important;
    }

    .nav-menu a:hover span, .nav-menu li:hover > a span {
      display: block;
}
    
    /* Mobile Navigation */
    .mobile-nav-toggle {
      position: fixed;
      right: 15px;
      top: 15px;
      z-index: 99;
      border: 0;
      background: none;
      font-size: 24px;
      transition: all 0.4s;
      outline: none !important;
      line-height: 1;
      cursor: pointer;
      text-align: right;
    }
    
    .mobile-nav-toggle i {
      color: #fff;
    }
    
    .mobile-nav-active {
      overflow: hidden;
    }
    
    .mobile-nav-active #header {
      left: 0;
    }
    
    .mobile-nav-active .mobile-nav-toggle i {
      color: #fff;
    }
    
    /*--------------------------------------------------------------
    # Sections General
    --------------------------------------------------------------*/
    section {
      padding: 60px 0;
      overflow: hidden;
    }