html{
    scroll-behavior: smooth;
}
body{
    color: #1F2937;
}
@media (min-width: 1200px){
    .container {
        width: 1170px;
    }
}
.gap-50{
    gap: 50px;
}
.gap-25{
    gap: 25px;
}
.nb{
    display: none;
}
.blue-cta{
    background-color: rgba(17, 61, 205, 1);
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    padding: 12px 40px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all .3s ease-in-out;
}
.blue-cta:hover, .blue-cta:visited, .blue-cta:active, .blue-cta:focus{
    color:#ffffff;
    background-color: rgb(1 23 107);
    text-decoration: none;
}
.white-cta{
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: bold;
    background-color: #fff;
    color:#113DCD;
    transition: all .3s ease-in-out;
    text-align: center;
    border: 1px solid #113DCD;
    transition: all .3s ease-in-out;
    min-width: 230px;
}
.white-cta:hover, .white-cta:visited, .white-cta:active, .white-cta:focus{
    color: rgb(17, 61, 205);
    background-color: rgb(239 242 251);
    text-decoration: none;
}
.expert-carousel .owl-dots{
  margin-top: 15px;
}
h2.section-title{   
    font-size: 28px;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #262626;
}

.hero-banner h1{
    font-size: 40px;
    line-height: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}
.hero-banner ul{
    padding-left: 30px;
}
.hero-banner ul li{
    position: relative;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 14px;
}
.hero-banner ul li:last-child{
    margin-bottom: 0;
}
.hero-banner ul li:before{
    content: "";
    position: absolute;
    background: url(../assets/images/green-checkcircle.svg) no-repeat;
    width: 20px;
    height: 20px;
    left: -30px;
    top: 3px;
}
.client-review{
    background-color: #ECFBEF;
    padding: 50px 0;
}
.client-review .owl-item img {
    width: auto !important;
}

.client-review .owl-theme .owl-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: space-between;
}
.client-review .owl-nav.disabled{
    display: none;
}
.client-review .owl-nav .owl-next span {
    background-image: url('../assets/images/right-arrow.svg');
    width: 38px;
    height: 37px;
    display: flex;
    justify-content: center;
    color: transparent;
    position: relative;
    top: -51px;
    right: -23px;
}
.client-review .owl-nav .owl-prev span{
    background-image: url('../assets/images/left-arrow.svg');
    width: 38px;
    height: 37px;
    display: flex;
    justify-content: center;
    color: transparent;
    position: relative;
    top: -51px;
    left: -23px;

}
.client-review .owl-theme .owl-dots{
    bottom: -92px;
    position: absolute;
    left: 0;
    right: 0;
}
.client-review .owl-theme .owl-dots .owl-dot span{
    width: 8px;
    height: 8px;
}
.client-review .owl-theme .owl-dots .owl-dot.active span{
    background: #113DCD;
}
.client-review .review-slider{
    padding: 20px 16px;
    display: flex;
    width: 100%;
    margin: 0 0 40px 0;
    align-items: center;
    position: relative;
}
.client-review .review-slider .left-part{
    padding-left: 30px;
    width: 70%;
}
.client-review .review-slider .left-part p{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 9;
}  
.client-review .review-slider .left-part p::before{
    content: '';
    left: -30px;
    top: 0;
    position: absolute;
    width: 59px;
    height: 44px;
    background-image: url('../images/sce-pro/quote.svg');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
} 
.client-review .review-slider .left-part h5{
    font-size: 16px;
    font-weight: bold;
    margin-top: 0;
}  
.client-review .review-slider .left-part span{
    font-size: 14px;
    display: block;
} 
.client-review .review-slider .right-part{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}  


/* experts section  */
.expert-section {
    padding: 0 0 60px 0;
}
.expert-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    width: auto;
    border: 1px solid #E2E4E9;
    text-align: center;
    position: relative;
    margin-top: 10px;
  }

  .expert-card .badge {
    position: absolute;
    top: -10px;
    right: 10px;
    color: #fff;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: bold;
  }
  .expert-card .badge.green{
    color: #15803D;
    border: 1px solid #15803D;
    background-color: #ECFBEF;
  }
  .expert-card .badge.red{
    color: #8C433C;
    border: 1px solid #8C433C;
    background-color: #F8E2E0;
  }

  .expert-card .profile-img {
    margin: 10px auto 25px auto;
    width: 100px;
    height: 100px;
    position: relative;
  }
  .expert-card .flag {
    position: absolute;
    top: 60px;
    left: 80px;
  }
  .expert-carousel .owl-item .expert-card img{
    width: auto
  }
  .expert-carousel .owl-item .expert-card img.photo{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #DBB057;
  }
  .expert-card .name {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
  }

  .expert-card .rating {
    color: #1F2937;
    font-size: 14px;
  }
  .expert-card .rating::before{
    content: "";
    background:url(../assets/images/experts/star.svg) no-repeat;
    width:15px ;
    height:15px ;
    margin-right: 4px;
    display: inline-block;
  }

  .expert-card .description {
    font-size: 14px;
    margin: 24px 0;
    line-height: 18px
  }

  .expert-card .info {
    display: flex;
    margin-top: 15px;
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    justify-content: center;
    gap: 10px;
  }
  .expert-card .info .experience{
    display: flex
  }
  
  .expert-card .info .papers {
    display: flex
  }
  .expert-card .info .experience::before {
    content: "";
    background:url(../assets/images/experts/exp-icon.svg) no-repeat;
    width:21px ;
    height:20px ;
    margin-right: 4px;
    display: inline-block;
    flex-shrink: 0;
  }
  .expert-card .info .papers::before {
    content: "";
    background:url(../assets/images/experts/paper-icon.svg) no-repeat;
    width:19px ;
    height:20px ;
    margin-right: 4px;
    display: inline-block;
    flex-shrink: 0;
  }
  .expert-section .owl-theme .owl-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: space-between;
  }
  .expert-section .owl-nav .owl-prev span {
    background-image: url(../assets/images/left-arrow.svg);
    width: 38px;
    height: 37px;
    display: flex;
    justify-content: center;
    color: transparent;
    position: relative;
    top: -51px;
    left: -23px;
}
    .expert-section .owl-nav .owl-next span {
    background-image: url(../assets/images/right-arrow.svg);
    width: 38px;
    height: 37px;
    display: flex;
    justify-content: center;
    color: transparent;
    position: relative;
    top: -51px;
    right: -23px;
}
.expert-section .owl-theme .owl-dots .owl-dot.active span {
    background: #113DCD;
    border: 1px solid #113DCD;
}
.expert-section .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border: 1px solid #113DCD;
}

/* faqs */
.casereport-faq h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    margin-top: 50px !important;
}
.casereport-faq ol li{
    list-style-type: decimal;
    margin-left: 27px;
    margin-bottom: 10px;
    line-height: 28px;
    font-size: 20px;
    line-height: 28px;
}
.casereport-faq ol li b{
    font-weight: bold;
}
.casereport-faq .panel-heading:after {
    position: absolute;
    right: 12px;
    top:27px;
    content: "";
    width: 18px;
    height: 11px;
    background: url(../assets/images/down-arrow.svg) no-repeat;
  }
  
  .casereport-faq .panel-heading.collapsed:after {
    position: absolute;
    right: 12px;
    top:27px;
    content: "";
    width: 18px;
    height: 11px;
    background: url(../assets/images/up-arrow.svg) no-repeat;
  }
  
  .casereport-faq .panel-default > .panel-heading,
  .casereport-faq .panel-default > .panel-heading:focus,
  .casereport-faq .panel-default > .panel-heading:hover {
    background-color: #fff;
    border: none;
    color: #262626;
    padding: 20px 30px 10px 0;
    position: relative;
  }
  
  
  .casereport-faq .panel-default > .panel-heading.collapsed a,
  .casereport-faq .panel-default > .panel-heading.collapsed a:focus,
  .casereport-faq .panel-default > .panel-heading.collapsed a:hover {
    color: #262626;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
  }
  
  .casereport-faq .panel-default > .panel-heading.collapsed {
    background-color: #fff;
    border: none;
    color: #262626;
    font-weight: 800;
    font-size: 16px;
    line-height: 21px;
  }
  
  .casereport-faq .panel-group .panel {
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    cursor: pointer;
    box-shadow: none;
    border-bottom: 1px solid #ccc;
    padding-left: 40px;
  }
  
  .casereport-faq .panel-group {
    counter-reset: counter-name;
  }
  
  .casereport-faq .panel-default .panel-heading::before {
    counter-increment: counter-name;
    content: counter(counter-name, decimal-leading-zero);
    color: #A8A8A8;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    margin: 0 15px;
    position: absolute;
    left: -50px;
  }
  .casereport-faq .panel-group .panel-heading+.panel-collapse>.list-group, 
  .casereport-faq .panel-group .panel-heading+.panel-collapse>.panel-body{
    border-top: none;
  }
  .casereport-faq .panel-body{
    padding: 0 0 20px 0;
    font-size: 20px;
    line-height: 28px;
  }
  .casereport-faq .panel-body p{
    margin-bottom: 0;
    font-size: 14px;
  }
  .casereport-faq .panel-title{
    font-size: 16px;
    line-height: 28px;
    color: #262626;
    text-decoration: none;
    font-weight: bold;
  }
  .casereport-faq ul{
    padding-left: 20px;
  }
  .casereport-faq ul li{
    list-style-type: disc;
    font-size: 14px;

  }

  /* process ui  */
  .timeline-wrapper {
  margin-top: 40px;
}

/* Left column */
.timeline-wrapper .timeline-left {
  position: relative;
  text-align: center;
}

/* Circle */
.timeline-wrapper .circle {
  width: 50px;
  height: 50px;
  background: #B6C7F9;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  line-height: 50px;
  font-weight: bold;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Vertical dashed line */
.timeline-wrapper .line {
  width: 2px;
  min-height: 100px;
  border-left: 1px dashed #9CA3AF;
  margin: 0 auto;
  position: absolute;
  top: 50px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Card */
 .timeline-wrapper .card {
  background: #EFF2FB;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 24px;
  min-height: 92px;
  display: flex;
  flex-direction: column;justify-content: center;
}
 .timeline-wrapper .timeline-item{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #262626;
 }
 .timeline-wrapper .card p{
    display: flex;
    gap:12px;
    align-items:flex-start;
    margin-bottom: 12px;
 }
  .timeline-wrapper .card p:last-child{
    margin-bottom: 0;
  }
 .timeline-wrapper .card p::before {
  content: "";
  background: url(../assets/images/blue-tick.svg) no-repeat;
  width: 12px;
  height: 9px;
  display: inline-block;
  margin-top: 8px;
  flex-shrink: 0;
 }

/* Bold headings */
.timeline-wrapper .card strong {
  font-weight: bold;
}

/* Remove line for last item */
.timeline-wrapper .timeline-item:last-child .line {
  display: none;
}

.service-section {
  padding: 40px 0;
  background-color: #F6FDF6;
}

.service-section .section-title span {
  color: #2f55d4;
}

/* Card */
.service-section .service-card {
  background: #FFFFFF;
  border: 1px solid #B7E3BE;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 159px;
  gap: 10px;
}

/* Content */
.service-section .card-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2b2b2b;
  font-weight: 600;
}

.service-section .card-content p {
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}

.feature-section {
  background: #ECFBEF;
  padding: 35px 0;
}

/* Feature item */
.feature-section .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.feature-section .feature-item:last-child{
    margin-bottom: 0;
}
/* Pink check icon */
.feature-section .icon {
  background-image: url('../assets/images/red-checkcircle.svg');
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Text styles */
.feature-section .feature-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
  line-height: 24px;
}

.feature-section .feature-item p {
  margin: 0;
  font-size: 14px;
  color: #4a5a6a;
  line-height: 1.6;
}

/* CTA */
.feature-section .cta-wrapper {
  margin-top: 30px;
}

/* Duration text */
.feature-section  .duration-text {
  margin-top: 16px;
  font-size: 16px;
}

.feature-section .duration-text strong {
  font-size: 24px;
  color: #1d2b3a;
  font-weight: bold;
}
/* Dark background section */
.custom-service-section {
  padding: 0 0 70px 0;
}

/* Card */
.custom-service-section .feature-card{
  background: #ffffff;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  min-height: 144px;

}
.custom-service-section .feature-card .header{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* Text */
.custom-service-section .feature-card h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-service-section .feature-card p {
  font-size: 16px;
  margin: 0;
  line-height:24px;
}

/* Icon */
.custom-service-section .icon {
  font-size: 34px;
  color: #4a6cf7;
  margin-left: 15px;
  flex-shrink: 0;
}

.our-partners-scroller .scroll-element{
  overflow: hidden;
  position: relative;
}
.our-partners-scroller .scroll-element .scroll-track {
  display: flex;
  width: max-content;
  animation: scroll 50s linear infinite;
  will-change: transform;
}
.our-partners-scroller .scroll-element .scroll-track .logos {
  display: flex;
  width: max-content;
  height: 40px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (min-width:300px) and (max-width:959px) {
    .mob\:gap-10{
        gap: 10px;
    }
    .mob\:bor-b-r-radius-0{
        border-bottom-right-radius:0 ;
    }
    .mob\:bor-b-l-radius-0{
        border-bottom-left-radius:0 ;
    }
    .mob\:bor-t-l-radius-0{
        border-top-left-radius:0 ;
    }
    .mob\:bor-t-r-radius-0{
        border-top-right-radius:0 ;
    }
    .mob\:bor-t-0{
        border-top:0 ;
    }
    .mob\:bor-b-0{
        border-bottom:0 ;
    }
    h2.section-title{
        font-size: 24px;
        line-height: 32px;
    }

    .nb{
        display: block;
    }
  .custom-service-section .section-title {
    font-size: 20px;
  }

  .custom-service-section .feature-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .custom-service-section .icon {
    font-size: 28px;
  }
  .service-section .service-card {
    margin-bottom: 20px;
  }
  .timeline-wrapper .timeline-left{
    padding: 0;
  }
  .timeline-wrapper .line{
    min-height: 168px;
  }
.our-partners-scroller .scroll-element::before {
  background-size: cover;
}
}