body.ipsApp{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.scroll-container{
  position: relative;
  min-height: 75vh;
  overflow: hidden;
}

.scroll-container:after{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  background: linear-gradient(180deg, #00183f00 16.15%, rgb(0 24 63 / 25%) 54%, #00183f 100%);
}

.scroll-container .wrap-content {
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 480px;
  left: 0;
  top: 0;
  text-align: center;
}
.scroll-container .wrap-content{
  max-width: 90%;
  left: 0;
  right: 0;
  z-index: 99;
  margin: auto;
}
.scroll-container .wrap-content .welcome-title,
.scroll-container .wrap-content .welcome-title div{
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #fff;
}

body.ipsApp .btn:not(.btn-link){
  white-space: normal;
  height: auto;
  line-height: 1.4;
  padding: 12px;
}

@media(max-width: 1200px){
  .scroll-container .scene-1{
    width: 86%;
    position: absolute;
    top: 100px;
  }
}
@media(max-width: 768px){
  #scene:after{
    display: none!important;
  }
  .scroll-container:after{
    height: 30%;
  }
  .scroll-container .scene-1{
    width: 66%;
    top: 230px;
  }
  .scroll-container .wrap-content .welcome-title,
  .scroll-container .wrap-content .welcome-title div{
    font-size: 26px;
  }
}
@media(max-width: 420px){
  .scroll-container .scene-1 {
    width: 22%;
    top: 480px;
  }
}