@font-face {
    font-family: 'UniNeue-Regular';
    src: url('../font/UniNeue-Regular.otf') format('opentype');
  
  }
  
  @font-face {
    font-family: 'UniNeue-Bold';
    src: url('../font/UniNeue-Bold.otf') format('opentype');
  }
  
  p,button,a,input {
    font-weight: 400;
    font-family: 'UniNeue-Regular';
  }
  
  h1, h2, h3, h4, h5, h6,span {
    font-family: 'UniNeue-Bold';
  }
/* Vertical Line */
.timeline-line {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 50%;
    width: 2px;
    background-color: #999;
    transform: translateX(-50%);
    z-index: 1;
    height: calc(100% - 180px);
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    border: 5px solid #000;
    z-index: 2;
}



/* Timeline Box */
.timeline-box {
    height: 180px;
}

/* Responsive */
@media (max-width: 767px) {
    .timeline-line {
        display: none;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-box {
        margin-top: 20px;
    }

    .heading-dot {
        top: 0;
    }
}

@media (max-width: 576px) {
    .sector-section-title {
        font-size: 1.5rem !important;
    }

    .sector-highlighted-text {
        display: inline;
        margin-top: 8px;
    }

    .highlighted-text {
        font-size: 22px;
        color: #333333;
        font-weight: bold;
    }

    .section-title {
        text-align: left;
        font-size: 22px;
        line-height: 1.8;
    }
}