.main-slider .slick-arrow {
    height: 64px;
    width: 64px;
    background: #026DA9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    z-index: 9;
    cursor: pointer;
}

.main-slider .slick-prev {
    left: 50px;
}

.main-slider .slick-next {
    right: 50px;
}



/* my-home-slider-changes-start */



.main-slider .caption h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    font-family: "TSTARPRO-Medium";
    color: #ffffff;
/*    padding-right: 800px;*/
    max-width: 700px;
}

.main-slider .tag{
  display: inline-block;
    background-color: rgba(0,0,0,0.33);
    padding: 8px;
    margin-bottom: 20px;
    font-size: 11px;
    text-transform: uppercase;
    opacity: 1;
    font-weight: 500;
    color: #FFF;
    /* border-top: 3px solid #81B02B; */
    margin-right: -50px;
}

.main-slider .caption p {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff;
    font-family: "TSTARPRO-Regular";
    margin: 30px 0 50px 0;
/*    padding-right: 820px;*/
    max-width: 700px;
}

.main-slider .caption a {
    color: #ffffff;
    background: #026DA9;
    font-size: 18px;
    line-height: 18px;
    font-family: "TSTARPRO-Bold";
    text-transform: uppercase;
    padding: 13px 33px;
    border-radius: 0;
    text-decoration: none;
    padding: 16px 26px;
    padding: 16px 26px 12px 26px;
}

/* home slick slider start */

.main-slider {
    position: relative;
    width: 100%;
    height: 720px;
    min-height: 8vw;
    margin-bottom: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s ease;
  }
  .main-slider.slick-initialized {
    opacity: 1;
    visibility: visible;
  }
  
  .main-slider  .slick-slide {
    position: relative;
    height: 720px;
  }
  .main-slider .slick-slide::before {
    background-color: #000;
    opacity: 0.3;
    z-index: 1;
  }
  .main-slider .slick-slide video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  .main-slider .slick-slide iframe {
    position: relative;
    pointer-events: none;
  }
  .main-slider .slick-slide figure {
    position: relative;
    height: 100%;
  }
  .main-slider .slick-slide .slide-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.8s ease;
  }
  .main-slider .slick-slide .slide-image.show {
    opacity: 1;
  }
  .main-slider .slick-slide .image-entity {
    width: 100%;
  }
  .main-slider .slick-slide .loading {
    position: absolute;
    top: 44%;
    left: 0;
    width: 100%;
  }
  .main-slider .slick-slide .slide-media {
    -webkit-animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
            animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
            width: 100%;
            height: 100%;
  }

/*    .main-slider .slick-slide .slide-media::after {*/
    .main-slider .slick-slide::after {
    
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.30);
    content: "";
    z-index: 0;
  }
  .main-slider .slick-slide .slide-media img {
    width: 100%;
    height: 100%;
    /* font-family: "object-fit: cover";
    object-fit: cover;
    object-position: center; */
  }
  .main-slider .slick-slide.slick-active {
    z-index: 1;
  }
  .main-slider .slick-slide.slick-active .slide-media {
/*    -webkit-animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
            animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);*/
            width: auto;
            height: 100%;
  }
  .main-slider .slick-slide.slick-active .caption {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
  }
  
  .main-slider .caption {
    position: absolute;
    top: 217px;
    left: 255px;
    margin: 0;
    z-index: 1;
  }
  
  .main-slider .slick-dots {
    position: absolute;
    right: 50px;
    display: flex;
    list-style: none;
    bottom: 50px;
  }
  .main-slider .slick-dots li {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
  }
  .main-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: white;
    border: 1px solid white;
    outline: none;
    border-radius: 50%;
    background: transparent;
  }
  .main-slider .slick-dots li.slick-active button {
    background: #ffffff;
  }
  
  @-webkit-keyframes slideIn {
    from {
      filter: blur(15px);
    }
    to {
      filter: blur(0);
    }
  }
  
  @keyframes slideIn {
    from {
      filter: blur(15px);
    }
    to {
      filter: blur(0);
    }
  }
  @-webkit-keyframes slideOut {
    from {
      filter: blur(0);
    }
    to {
      filter: blur(15px);
    }
  }
  @keyframes slideOut {
    from {
      filter: blur(0);
    }
    to {
      filter: blur(15px);
    }
  }


/* project-timeline-start */

.project-timeline {
  margin: 100px 0;
}

.project-timeline .timeline-heading {
  margin-bottom: 140px;
}

.project-timeline .timeline-heading h3 {
  font-family: 'TSTARPRO-Medium';
  font-weight: 500;
  font-size: 48px;
  line-height: 53px;
  color: #407139;
}

.project-timeline .t-details .t-date p {
  font-family: 'TSTARPRO-Bold';
  font-weight: 700;
  font-size: 20px;
  line-height: 34px;
  color: #407139;
}

.project-timeline .t-details .t-text {
  margin-bottom: 60px;
}

.project-timeline .t-details .t-text p {
  font-family: 'TSTARPRO-Medium';
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: #445254;
}

.project-timeline .t-details .t-text:before {
    content: "\f105";
    font-family: 'FontAwesome';
    position: absolute;
    left: -110px;
    margin-top: 5px;
    width: 32px;
    height: 32px;
    background: #026DA9;
    color: white;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.project-timeline .t-details .future .t-text:before {
    border: 1px dashed #026DA9;
    background: #FFF;
    color: #026DA9;
  }

.project-timeline .t-details .t-text:after {
    content: "";
    position: absolute;
    background: #95AFB2;
    width: 1px;
    height: 0;
    top: 10px;
    left: -94px;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5px;
    -o-transition-duration: 0.5px;
}

.project-timeline .t-details .future .t-text:after {
    background: none;
    border-left: 1px dashed #026DA9;    
/*    background-image: linear-gradient(#95AFB2 33%, rgba(255,255,255,0) 0%);
    background-position: right;
    background-size: 1px 5px;
    background-repeat: repeat-y;*/
}

.project-timeline .t-details.aos-animate .t-text:after {
  height: 100%;
}

/* project-timeline-end */


/* responsive-start */

@media (min-width: 1800px) {
  .main-slider .slick-slide.slick-active .slide-video {
    width: auto;
    height: auto;
  }
}

@media (min-width: 1200px) and (max-width: 1415px) {

    .main-slider .caption {
        top: 100px !important;
        left: 195px !important;
    }

}

@media (min-width: 992px) and (max-width: 1199.9px) {

    .main-slider .caption {
        top: 100px !important;
        left: 195px !important;
    }

}

@media (min-width: 768px) and (max-width: 991.9px) {

    .main-slider .caption {
        top: 100px !important;
        left: 155px !important;
    }

    /* project-timeline-start */

    .project-timeline .t-details .t-text:before {
      left: -50px;
    }

    .project-timeline .t-details .t-text:after {
      left: -35px;
    }

    /* project-timeline-end */

}

@media (min-width: 576px) and (max-width: 767.9px) {

    .main-slider .slick-slide .slide-media img {
      font-family: "object-fit: cover";
      object-fit: cover;
      object-position: center;
    }

    .main-slider .slick-arrow {
        height: 30px;
        width: 30px;
    }

    .main-slider .slick-prev {
        left: 10px;
    }

    .main-slider .slick-next {
        right: 10px;
    }

    .main-slider .caption {
      top: 313px !important;
      left: 0 !important;
      padding-left: 30px !important;
    }

    .main-slider .caption h2 {
      font-size: 38px;
      line-height: 42px;
      padding-right: 0;
    }

    .main-slider .caption p {
      font-size: 20px;
      line-height: 27px;
      padding-right: 0;
      margin-top: 30px;
      margin-bottom: 40px;
    }

    .main-slider .caption a {
      padding: 10px 25px;
      font-size: 20px;
      line-height: 20px;
    }

    .main-slider .slick-dots {
      padding: 0 !important;
      margin: 0 !important;
      left: 30px;
      bottom: 102px;
    }

    .main-slider .slick-dots li {
        width: 10px;
        height: 10px;
    }

    .main-slider .slick-dots li button {
        width: 5px;
        height: 5px;
    }

    /* project-timeline-start */

    .project-timeline .container {
      padding: 0 15px !important;
    }

    .project-timeline .t-details .t-date p {
      font-size: 18px;
    }

    .project-timeline .t-details .t-text:before {
      left: -30px;
    }

    .project-timeline .t-details .t-text:after {
      left: -14px;
  }

    /* project-timeline-end */

}

@media only screen and (max-width: 575.9px) {

    .main-slider .slick-slide .slide-media img {
      font-family: "object-fit: cover";
      object-fit: cover;
      object-position: center;
    }

    .main-slider .slick-arrow {
        height: 30px;
        width: 30px;
    }

    .main-slider .slick-prev {
        left: 10px;
    }

    .main-slider .slick-next {
        right: 10px;
    }

    .main-slider .caption {
        top: 313px !important;
        left: 0 !important;
        padding-left: 30px !important;
    }

    .main-slider .caption h2 {
      font-size: 38px;
      line-height: 42px;
      padding-right: 0;
    }

    .main-slider .caption p {
      font-size: 20px;
      line-height: 27px;
      padding-right: 0;
      margin-top: 30px;
      margin-bottom: 40px;
    }

    .main-slider .caption a {
      padding: 10px 25px;
      font-size: 20px;
      line-height: 20px;
    }

    .main-slider .slick-dots {
      padding: 0 !important;
      margin: 0 !important;
      left: 30px;
      bottom: 42px;
    }

    .main-slider .slick-dots li {
        width: 10px;
        height: 10px;
    }

    /* .main-slider .slick-dots li:first-child {
      margin-left: 0 !important;
    } */

    .main-slider .slick-dots li button {
        width: 5px;
        height: 5px;
    }

    /* project-timeline-start */

    .project-timeline {
      margin: 66px 0;
    }

    .project-timeline .container {
      padding: 0 15px !important;
    }

    .project-timeline p {
      margin: 0 !important;
    }

    .project-timeline .timeline-heading {
      margin-bottom: 80px;
    }

    .project-timeline .timeline-heading h3 {
      font-size: 24px;
      line-height: 26px;
    }

    .project-timeline .t-details {
      padding-left: 88px;
    }

    .project-timeline .t-details .t-date {
      margin-bottom: 28px;
    }

    .project-timeline .t-details .t-text {
      margin-bottom: 60px !important;
    }

    .project-timeline .t-details .t-text:before {
      left: -56px;
      top: -60px;
    }

    .project-timeline .t-details .t-text:after {
      left: -40px;
      bottom: -10px;
      top: -25px;
      height: 135%;
    }

    /* project-timeline-end */

}


@media only screen and (max-width: 319.9px) {

  .main-slider .caption h2 {
    font-size: 38px;
  }

  .main-slider .caption p {
    font-size: 20px;
  }

  .main-slider .caption {
    top: 213px !important;
  }

}


/* responsive-end */