 .hub-timeline-section {
   display: block;
   width: 100%;
   padding: 74px 0;
 }

 .timeline-block-main {
   display: flex;
   gap: 44px;
 }

 .sync-visual {
   height: 500px;
   position: sticky;
   top: 30px;
   display: block;
   width: 100%;
 }

 .visual-panel {
   position: absolute;
   inset: 0;
   opacity: 0;
   transform: scale(0.965);
   transition: opacity 0.4s ease, transform 0.4s ease;
   pointer-events: none;
   display: flex;
   align-items: flex-start;
   justify-content: center;
   width: 100%;
 }

 .visual-panel.active {
   opacity: 1;
   transform: scale(1);
 }

 .sync-content {
   width: 100%;
   display: block;
   padding-bottom: 150px;
 }

 .sync-step {
   display: flex;
   align-items: flex-start;
   justify-content: center;
   flex-direction: column;
   width: 100%;
   padding: 50px 0;
 }

 .sync-step+.sync-step {
   border-top: rgba(255, 255, 255, 0.1) solid 1px;
 }

 .timeline-block-main .img {
   width: 100%;
   border-radius: 16px;
   display: flex;
 }

 .timeline-block-main .img img {
   height: auto;
   width: 100%;
   display: flex;
 }

 .sync-step h5 {
   row-gap: 6px;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   padding: 0 0 10px;
   font-size: 20px;
   font-weight: 500;
 }

 .sync-step h5 span {
   background: #3CB64A;
   border-radius: 100px;
   margin: 0 10px 0 0;
   color: #fff;
   font-size: 12px;
   font-weight: normal;
   padding: 4px 12px;
 }

 .mobile-image-show {
   display: none;
   width: 100%;
 }

 .hub-timeline-section .btnbox {
    display: flex;
    justify-content: center;
    margin-top: 250px;
}

.hub-timeline-section .btnbox a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 3.2rem;
    height: 48px;
    background-color: #3CB64A;
    color: #FFF;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 100px;
}

 @media (max-width: 1599px) {}

 @media (max-width: 1439px) {
   .timeline-block-main {
     gap: 30px;
   }
 }

 @media (max-width: 1350px) {
   .sync-visual {
     height: 384px;
   }
 }

 @media (max-width: 1199px) {
   .hub-timeline-section {
     padding: 48px 0;
   }

   .timeline-block-main {
     gap: 20px;
   }

   .sync-visual {
     height: 312px;
   }
 }

 @media (max-width: 991px) {
   .hub-timeline-section {
     padding: 48px 0;
   }

   .sync-step {
     padding: 32px 0;
   }

   .sync-visual {
     height: 230px;
   }
 }

 @media (max-width: 767px) {
   .hub-timeline-section {
     padding: 24px 0;
   }

   .sync-visual {
     display: none;
   }

   .sync-step h5 {
     padding: 16px 24px 16px 0;
     position: relative;
     font-size: 16px;
   }

   .sync-step h5::after {
     transition: all 0.3s ease-in-out;
     position: absolute;
     right: 0;
     top: 50%;
     content: '';
     background: url(./images/ac-arrow.svg) no-repeat center center;
     width: 20px;
     height: 20px;
     margin: -10px 0 0 0;
   }

   .sync-step {
     padding: 0;
   }

   .mobile-show-contain {
     display: none;
   }

   .sync-step .step-title {
     width: 100%;
     position: relative;
   }

   .mobile-image-show {
     display: block;
     width: 100%;
     padding: 16px 0 24px 0;
   }

   .mobile-image-show img {
     width: 100%;
     height: auto;
   }

   .sync-step.active h5::after {
     transform: rotate(180deg);
   }

   .sync-step h5 span {
     font-size: 10px;
     padding: 4px 12px;
   }

   .sync-content{ padding-bottom: 0; }

   .hub-timeline-section .btnbox{ margin-top: 50px; }
   .hub-timeline-section .btnbox a {font-size: 14px;} 

 }