.title_area{

    max-width:1800px;
  width:95vw;
  margin: 12px auto 24px;
    font-weight:700;
    padding-left:115px;
}
.title_area .theme-orange{
  font-size:22px;

}
.title_area h2{
  font-size:48px;
  line-height:1.3;
}

.scroll-section{

    max-width:1800px;
  width:95vw;
  margin:0 auto 120px;
  height:500vh;
  margin-top:0px;

}
.scroll_slide_list{
  position:sticky;
  background:#01192c;
  top:calc(100px + 2.5vh);
  width:100%;
  border-radius:20px;
  height:calc(95vh - 100px);
  overflow:hidden;

}
.scroll_slide{
  position:absolute;
  top:0;
  display:flex;
  height:100%;
    justify-content:center;
  align-items:center;
  left:0;
  gap:80px;
  width:100%;
  visibility: hidden;
  opacity:0;
  transition:all 0.5s ease;
  transform:translateY(50px);

}
.scroll_slide .slide_bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  /* background-color:#0c62a7; */
  border-radius:20px;
  z-index:-1;
}

.scroll_slide .slide_bg video{
  width:100%;
  height:100%;
  object-position:Center;
  object-fit:cover;
}

.scroll_slide.active{
  visibility: visible;
  opacity:1;
  transform:translateY(0);
}

.scroll_slide .slide_img{
  width:50%;
  /* flex:1; */
  height:60vh;
  border-radius:20px;
  overflow:hidden;
  margin-left: 80px;
}
.scroll_slide .slide_img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.scroll_slide_text .theme-white{
  font-size:48px;
  font-weight:700;
  margin-bottom:24px;
  line-height:1;
}
.scroll_slide_text .slide_desc{
  font-size:22px;
  color:#fff;
  width:100%;
  padding-right: 20px;
}
.scroll_slide_text{
  height: 100%;
    display: flex
; 
width: calc(50% - 80px);
max-width: calc(50% - 80px);
    flex-direction: column;
    justify-content: center;
    padding: 6% 0;
}