.super_box_section {}

.super_box_section .wrapper {
    position: relative;
}

.super_box_section .super_box_scroll {
    position: absolute;
    left: 50%;
    height: calc(100vh - 180px);
    width: 4px;
    background: #eaeef1;
    border-radius: 10px;
    overflow: hidden;
  top:120px;
}

.super_box_section .super_box_scroll .super_box_scroll_fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background: var(--gray-700);
}

.super_box_section .super_box_scroll {
    height: 0;
    transition: height 0.3s ease;
}
.super_box_section .super_box_scroll{
  margin-top: 10vh;
}
.super_box_section.in-view .super_box_scroll {
  height: calc(100vh - 20vh);
  height:500px;
}

.super_box.go .text_content .title { background: var(--XLinear, linear-gradient(270deg, #FD3002 0%, #FD7B34 100%)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.super_box.go .tab_content_icon span.svg svg { opacity: 1; }
.super_box.go .text_content .text { color: var(--secondary-600); }
.super_box.go .text_content .link_wrapper a { color: var(--secondary-700); }
.super_box.go .text_content .link_wrapper a svg path {stroke: #224659;}

@media(min-width:992px){
  .super_box > div {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.42, 0, 0, 1.01);
    transition-delay: 0s;
    position: relative;
  }

  .super_box.go > div {
    opacity: 1;
    transition-delay: 0.3s !important;
    left: 0 !important;
  }

  .super_box > div:first-child {
    left: -50px;
  }

  .super_box > div:last-child {
    left: 50px;
  }
}
@media(max-width:991px){
.super_box_scroll_wrapper {display: none;}
 
}

@media(max-width:767px){
.super_box .text_content .title { background: var(--XLinear, linear-gradient(270deg, #FD3002 0%, #FD7B34 100%)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.super_box .tab_content_icon span.svg svg { opacity: 1; }
.super_box .text_content .text { color: var(--secondary-600); }
.super_box .text_content .link_wrapper a { color: var(--secondary-700); }
.super_box .text_content .link_wrapper a svg path {stroke: #224659;}
    

}


