.home-container {
  background-image: url('/portal/home/resources/assets/background_01.webp') no-repeat;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
  background-size: cover;
}

.title-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -80px;
}

.home-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
}

.home-subtitle {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  margin-top: -10px;
}

.scroll-container{
    display: none !important;
}

.footer{
    background: linear-gradient(to top, #3F96FF 70%, rgba(39, 96, 159, 0)) !important;
}

.footer.show{
    background: linear-gradient(to top, #3F96FF 70%, rgba(39, 96, 159, 0)) !important;
}

.first-section {
  background: linear-gradient(to top, #3F96FF 20%, rgba(39, 96, 159, 0)) !important;
}

@media (max-width: 800px){
  .title-container{
    max-width: 70%;
  }
  .home-title{
    font-size: 2.2rem;
  }
  .home-subtitle{
    font-size: 1rem;
  }
}

@media (max-width: 480px){
  .home-container {
    background-image: url('/portal/home/resources/assets/background_01_mobile.png') no-repeat;
  }
  
  .title-container{
    max-width: 80%;
  }
  .home-subtitle{
    margin-top: 0;
  }
}

@media (min-width: 1500px){
  .home-title {
    font-size: 4.5rem;
  }
  
  .home-subtitle {
    font-size: 2rem;
  }
}