body{
    background-color: #f2f9ff !important;
}
.key-points{
  padding: 20px;
}
.key-points h3{
  font-size: 21px;
  margin-bottom: 10px;
  color:#443939;
}
.solution-type-img{
  margin-top: -35px;
}
.key-points p {
  font-size: 17px;
  color: #484a4c;
  letter-spacing: 0.03em !important;
  margin-left: 35px;
  font-weight: 300;
  text-align: justify;
}
.card__bx {
    /* --dark-color: #2e2e2e; */
    --dark-alt-color: #777777;
    --white-color: #ffffff;
    --button-color: #333333;
    --transition: 0.5s ease-in-out;
  
    /* font-family: inherit; */
    /* height: 450px; */
    /* width: 450px; */
    position: relative;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    background: var(--dark-color);
    transition: var(--transition);
  }
  .header_header__8TudR {
    background: #2286f185;
  }
  .card__bx::before,
  .card__bx::after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: var(--transition);
  }
  
  .card__bx::before {
    inset: -10px 50px;
    border-top: 4px solid var(--clr);
    transform: skewY(15deg);
    border-bottom: 4px solid var(--clr);
  }
  
  .card__bx:hover::before {
    inset: -10px 40px;
    transform: skewY(0deg);
  }
  
  .card__bx::after {
    inset: 60px -10px;
    border-left: 4px solid var(--clr);
    transform: skew(15deg);
    border-right: 4px solid var(--clr);
  }
  
  .card__bx:hover::after {
    inset: 40px -10px;
    transform: skew(0deg);
  }
  
  .section-services {
    /* font-family: "Poppins", sans-serif; */
    color: #202020;
    /* padding-top: 115px; */
    padding-bottom: 120px;
  }
  

  .solution_card{
    /* height: 515px; */
  }
  .section-services .single-service {
    position: relative;
    border: 2px solid #86b7fe;
    /* margin-top: 30px; */
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    overflow: hidden;
    
    /* background-color: #ededed; */
  }
  
  .section-services .single-service .solutions_content {
    position: relative;
    z-index: 20;
  }
  
  .section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #86b7fe;
    border: 6px solid #504f93;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
  }
  
  .section-services .single-service:hover .circle-before {
    width: 100%;
    height: 100%;
    transform: none;
    border: 0;
    border-radius: 0;
    opacity: 1;
  }
  
  .section-services .single-service .icon {
    display: inline-block;
    margin-bottom: 5px;
    width: 50px;
    height: 50px;
    background-color: #86b7fe;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
  }
  
  .section-services .single-service:hover .icon {
    background-color: #fff;
    color: #86b7fe;
  }
  
  .section-services .single-service .title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 23px;
    transition: color .3s;
    letter-spacing: 0.03em !important;
  }
  
  .section-services .single-service:hover .title {
    color: #fff;
    letter-spacing: 0.03em !important;
  }
  
  .section-services .single-service .description {
    /* margin-bottom: 20px; */
    font-size: 17px;
    font-weight: 300;
    transition: color .3s;
    text-align: justify;
    height: 243px;
  }
  
  .section-services .single-service:hover .description {
    color: #fff;
    
  }
  
  .section-services .single-service a {
    position: relative;
    font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
  }
  
  .section-services .single-service:hover a {
    color: #fff;
  }
  
  .section-services .single-service a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #86b7fe;
    transition: background-color .3s;
  }
  
  .section-services .single-service:hover a:after {
    background-color: #fff;
  }
  
  .div_active {
    display: none;
  }
  
  .card__container {
    /* display: flex; */
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    width: 100%;
    /* max-width: 90%; */
    margin: auto;
    /* padding: 60px 0; */
  }
  
  /* .solutions_div .active{
  display:block !important;
  } */
  
.holderCircle {
    width: 480px;
    height: 480px;
    margin: 0 auto 0 auto;
    position: relative;
    
    /* 🎨 Glassmorphism background */
    background: radial-gradient(circle at center, #e6f0ff, #c0d8ff); /* Soft blue glow */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    border: 2px solid rgba(134,183,254, 0.6);

    /* 💡 Deep inner glow */
    box-shadow: 
        inset 0 0 20px rgba(134,183,254, 0.3),
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(134,183,254, 0.3);

    /* 🎥 Entry animation */
    animation: fadeInCircle 1s ease forwards;
    opacity: 0;
}

.holderCircle:hover {
    box-shadow:
        inset 0 0 25px rgba(134,183,254, 0.5),
        0 0 40px rgba(101,99,255, 0.4),
        0 0 80px rgba(134,183,254, 0.3);
    transition: box-shadow 0.4s ease;
}
.holderCircle::before {
    content: '';
    position: absolute;
    height: 540px;
    background:
      radial-gradient(circle, rgba(134,183,254,0.12), transparent 80%),
      url('images/circuit-pattern.png') center center / cover no-repeat;
    border-radius: 30px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: -1;
    box-shadow: 0 0 60px rgba(134,183,254, 0.2);
}
  @keyframes fadeInCircle {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
  
  .dotCircle {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: 20;
     transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  .dotCircle .itemDot {
    display: block;
    width: 100px;
    height: 70px;
    padding: 5px;
    position: absolute;
    background: #ffffff;
    color: #86b7fe;
    border-radius: 20px;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
    border: 2px solid #e6e6e6;
  }
.itemDot::before {
  content: '';
  position: absolute;
top: 3px;
    left: 3px;
  width: 90px;
  height: 60px;
  background-color: #e0f0ff;
  border-radius: 20px;
  z-index: -1;
  transition: background-color 0.3s ease;
}

.itemDot:hover::before,
.itemDot.active::before {
  /* background-color: #86b7fe; */
}
  .dotCircle .itemDot2 {
    left: -46px !important;
    top: 252px!important;
  }
  .dotCircle .itemDot1 {
    left: 436px !important;
    top: 173px!important;
  }
  .dotCircle .itemDot .forActive {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
  }
  
  .dotCircle .itemDot .forActive::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 3px solid #86b7fe;
    bottom: -31px;
    left: -14px;
    filter: blur(1px);
    position: absolute;
    border-radius: 100%;
  }
  
  .dotCircle .itemDot .forActive::before {
    content: '';
    width: 6px;
    height: 6px;
    filter: blur(5px);
    top: -15px;
    position: absolute;
    transform: rotate(-45deg);
    border: 6px solid #86b7fe;
    right: -39px;
  }
  
  .dotCircle .itemDot.active .forActive {
    display: block;
  }
  
  .round {
    position: absolute;
    /* left: 40px; */
    /* top: 45px; */
    width: 475px;
    height: 476px;
    border: 3px dotted #86b7fe;
    border-radius: 100%;
  }
  .vertical{
    height: 60%;
	position: absolute;
	border-left: 2px solid #b4bbc3
  }
	
  .dotCircle .itemDot:hover,
  .dotCircle .itemDot.active {
    color: #ffffff;
    transition: 0.5s;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7d4ac7+0,a733bb+100 */
    background: #86b7fe;
    /* Old browsers */
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d4ac7', endColorstr='#a733bb', GradientType=1);
    /* IE6-9 */
    border: 2px solid #ffffff;
    -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    -moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    box-shadow: 0 0 15px #86b7fe;
  animation: pulse 1.5s infinite;
  }
  @keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(134, 183, 254, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(134, 183, 254, 0); }
  100% { box-shadow: 0 0 0 0 rgba(134, 183, 254, 0); }
}
  .dotCircle .itemDot {
    font-size: 40px;
  }
  
  .contentCircle {
    width: 320px;
    border-radius: 100%;
    color: #222222;
    position: relative;
    top: 115px;
    left: 52%;
    transform: translate(-50%, -50%);
  }
  
  .contentCircle .CirItem {
    border-radius: 100%;
    color: #222222;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
    font-size: 15px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin: auto;
    line-height: 250px;
  }
  
  .CirItem.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s;
  }
  
  .contentCircle .CirItem img {
    font-size: 180px;
    position: absolute;
    top: 0;
    left: 30%;
    margin-left: -90px;
    color: #000000;
    opacity: 0.1;
  }
  
  @media only screen and (min-width:300px) and (max-width:599px) {
    .key-points h3{
      font-size: 19px;
    }
    .solution-section .content-column .inner-column {
      padding-top: 0px !important;
    }
    .solution-section .content-column .solution_text
    {
      line-height: 30px !important;
    }
    .holderCircle {
      /* width: 300px; height: 300px;*/
      /* margin: 110px auto; */
    }
  
    .holderCircle::after {
      width: 100%;
      height: 100%;
    }
  
    .dotCircle {
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
    }
    .fordigiopsy-section{
      display: none;
    }
    .right-section{
      display:block !important;
    }
    .key-points p{
      margin-left: 0px;
    }
  }
  
  @media only screen and (min-width:600px) and (max-width:767px) {
    .key-points h3{
      font-size: 19px;
    }
    .solution-section .content-column .inner-column {
      padding-top: 0px !important;
    }
    .solution-section .content-column .solution_text
    {
      line-height: 30px !important;
    }
    .fordigiopsy-section{
      display: none;
    }
    .right-section{
      display:block !important;
    }
    .key-points p{
      margin-left: 0px;
    }
  }
  
  @media only screen and (min-width:768px) and (max-width:991px) {
    .key-points h3{
      font-size: 19px;
    }
    .solution-section .content-column .inner-column {
      padding-top: 0px !important;
    }
    .solution-section .content-column .solution_text
    {
      line-height: 30px !important;
    }
    .fordigiopsy-section{
      display: none;
    }
    .right-section{
      display:block !important;
    }
    .key-points p{
      margin-left: 0px;
    }
  }
  
  @media only screen and (min-width:992px) and (max-width:1199px) {
    .fordigiopsy-section{
      display: none;
    }
    .solution-section .content-column .solution_text
    {
      line-height: 30px !important;
    }
    .right-section{
      display:block !important;
    }
    .key-points p{
      margin-left: 0px;
    }
    .solution-section .content-column .inner-column {
      padding-top: 0px !important;
    }
  }
  
  @media only screen and (min-width:1200px) and (max-width:1499px) {
    .key-points h3{
      font-size: 19px;
    }
    .key-points p{
      margin-left: 0px;
    }
    .solution-section .content-column .inner-column {
      padding-top: 0px !important;
    }
    .solution-section .content-column .solution_text
    {
      line-height: 30px !important;
    }
    /* .fordigiopsy-section{
      display: none;
    }
    .right-section{
      display:block !important;
    } */
    .solution_card {
      height: 620px;
    }
  }
  
  .title-box .title {
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    z-index: -1;
  }
  
  .title-box span {
    text-shadow: 0 10px 10px rgba(0, 0, 0, .15);
    font-weight: 800;
    color: #86b7fe;
  }
  
  .title-box p {
    font-size: 17px;
    line-height: 2em;
  }
  
  .contact-div {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0 auto;
    width: 100%;
    float: left;
    opacity: 0.9;
  }
  
  .contact-div .container {
    border-radius: 30px;
  
    color: white;
  }
  
  .footer-parallax_parallax_hat__WUWRv {
    background: #f2f9ff;
  }

  .solution-section{
	position:relative;
	padding:45px 0px;
}

.solution-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.solution-section .content-column .inner-column{
	position:relative;
	padding-top:50px;
	/* padding-right:100px; */
}

.solution-section .content-column .solution_text{
	position:relative;
	color:#777777;
	font-size:19px;
	line-height:2em;
	margin-bottom:40px;
  font-weight: 300;
  text-align: justify;
}

.solution-section .content-column .email{
	position:relative;
	color:#252525;
	font-weight:700;
	margin-bottom:50px;
}

.solution-section .image-column{
	position:relative;
	margin-bottom:50px;
}

.solution-section .image-column .inner-column{
	position:relative;
	padding:40px 40px 0px 0px;
	margin-left:50px;
}

.solution-section .image-column .inner-column:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	left:40px;
	bottom:100px;
	z-index:-1;
	border:2px solid #d7a449;
}

.solution-section .image-column .inner-column .image{
	position:relative;
}

.solution-section .image-column .inner-column .image:before{
	position:absolute;
	content:'';
	left:-50px;
	bottom:-50px;
	width:299px;
	height:299px;
	/* background:url(img/pattern-2.png) no-repeat; */
}

.solution-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.solution-section .image-column .inner-column .image .overlay-box{
	position:absolute;
	left:40px;
	bottom:48px;
}

.solution-section .image-column .inner-column .image .overlay-box .year-box{
	position:relative;
	color:#252525;
	font-size:24px;
	font-weight:700;
	line-height:1.4em;
	padding-left:125px;
}

.solution-section .image-column .inner-column .image .overlay-box .year-box .number{
	position:absolute;
	left:0px;
	top:0px;
	width:110px;
	height:110px;
	color:#d7a449;
	font-size:68px;
	font-weight:700;
	line-height:105px;
	text-align:center;
	background-color:#ffffff;
	border:1px solid #000000;
}
.solution-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}
.solution-section .btn-style-three:hover {
    color: #ffffff;
    background: #d7a449;
}
.solution-section .btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 11px 40px;
    background-color: #ffffff;
    text-transform: capitalize;
    border: 2px solid #d7a449;
    /* font-family: 'Arimo', sans-serif; */
}
.sec-title2{
	color:#fff;
}
.sec-title {
    position: relative;
    /* padding-bottom: 40px; */
}
.sec-title .title {
    position: relative;
    /* color: #d7a449; */
    font-size: 20px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
    letter-spacing: 0.03em !important;
}
.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
}

 .container{
      max-width: 1320px;
    }
body {
      /* background: linear-gradient(to bottom right, #dbefff, #f7fbff); */
      /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
      overflow-x: hidden;
    }

    h1, h2, h5, p {
      color: #0d2a57;
    }

    .header-section {
      text-align: center;
      margin-bottom: 4rem;
    }

    .header-section h4 {
      font-size: 1.4rem;
      font-weight: 700;
      background: linear-gradient(120deg, #004e92, #000428);
      color: white;
      display: inline-block;
      padding: 16px 50px;
      border-radius: 14px;
      letter-spacing: 1px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      text-transform: uppercase;
      position: relative;
    }

    .header-section h4::before {
      content: '\f610';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      margin-right: 12px;
      display: inline-block;
    }

    .lead-text {
      color: #063970;
      font-size: 18px;
      max-width: 800px;
      margin: 20px auto 0;
    }

    .content-image-wrapper {
      border-radius: 20px;
  padding: 5px;
  background: #ffffff;
  position: relative;
  box-shadow: 0 0 0 3px #0d6efd, 0 0 25px rgba(0, 198, 255, 0.3);
    }

    .content-image-wrapper img {
     border-radius: 15px;
  width: 100%;
  height: auto;
    }
.content-image-wrapper:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
    .features-row {
      margin-top: 3rem;
    }

    .feature-box {
      padding: 30px;
      border-radius: 25px;
      text-align: center;
      background: linear-gradient(#ffffff, #ffffff) padding-box,
                  linear-gradient(to top right, #00c6ff, #0072ff) border-box;
      border: 1px solid transparent;
      box-shadow:
        0 0 20px rgba(0, 114, 255, 0.05),
        0 12px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      will-change: transform;
      position: relative;
      overflow: hidden;
      animation: floatCard 6s ease-in-out infinite;
    }
    .feature-box::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, #007bff 0%, transparent 100%);
      transition: all 0.4s ease;
      z-index: 0;
    }
    
    .feature-box:hover {
      transform: scale(1.035);
      box-shadow: 0 12px 35px rgba(0, 123, 255, 0.15), 0 20px 40px rgba(0, 0, 0, 0.08);
      animation-play-state: paused;
    }
@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
    .feature-icon {
      position: relative;
      font-size: 32px;
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      background-color: #1976d2;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: scale(1);
      transition: transform 0.4s ease;
    }
    .feature-icon::before {
      content: "";
      position: absolute;
      top: -8px;
      left: -8px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(25, 118, 210, 0.15), transparent 70%);
      z-index: -1;
    }
@keyframes pulse-rotate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.15) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.feature-box:hover .feature-icon {
  transform: scale(1.2) rotate(8deg);
  animation: pulse-rotate 1.2s ease-in-out infinite;
}
    .feature-box h5 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .feature-box p {
      font-size: 15px;
      color: #444;
    }

    .rounded-4 {
      border-radius: 1rem;
    }

    .bg-soft {
      background-color: #ffffff;
      padding: 23px;
      border-radius: 20px;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
      border-left: 5px solid #0d6efd;
    }
    .bg-soft h3{
      font-size: 26px;
    }

    ul li {
      margin-bottom: 10px;
      font-size: 16px;
    }

    .title-highlight {
      background: #ffffff;
      display: inline-block;
      padding: 5px 25px;
      border-radius: 25px;
      font-weight: bold;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      font-size: 22px;
    }

    .img-container {
      background: #ffffff;
      padding: 15px;
      border-radius: 20px;
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .img-fluid {
      border-radius: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .img-fluid:hover {
      transform: scale(1.02);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .animated-bg {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      animation: float 10s ease-in-out infinite;
      z-index: 0;
    }

    .animated-bg.bg1 {
      top: 5%;
      left: 10%;
    }
    .animated-bg.bg2 {
      bottom: 10%;
      right: 8%;
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0); }
    }

    .highlight-text {
      font-weight: 500;
      font-size: 18px;
      color: #24282c;
      line-height: 1.6;
    }

    .highlight-text strong {
      color: #0056b3;
    }
.highlight-text b {
  color: #004e92;
  font-weight: 600;
}
    @media (max-width: 767px) {
      .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
      }
    }
.autopsy-intro-hero {
  /* background: linear-gradient(to bottom right, #eaf4ff, #f7fbff); */
  padding: 80px 20px;
}

.autopsy-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #0d2a57;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.icon-wrap {
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.autopsy-lead {
  font-size: 18px;
  color: #063970;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
}

.autopsy-lead strong {
  color: #0d6efd;
}

.highlight {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
/* Fix image in circle for small screens */
@media (max-width: 767px) {
  .autopsy-intro-hero{
    padding: 5px !important;
  }
  .autopsy-intro-hero .container{
    padding: 5px !important;
  }
  .listar-feature-item .listar-feature-item-inner {
  padding: 80px 0px 50px !important;
  }
    .listar-feature-right-border {
    display: none; /* Hide on mobile to prevent overlap */
  }
  .listar-feature-item .listar-feature-item-inner:before{
    box-shadow: 120px 0px 150px #1074cc, 10px 0px 10px aliceblue !important;
  }
    .pset p {
    font-size: 16px !important;
    line-height: 1.5;
    text-align: center;
    padding: 0 15px;
  }
}
.listar-feature-item-wrapper {
  margin-bottom: 120px;
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item {
  height: calc(100% - 20px);
}

.listar-feature-item.listar-feature-has-link
  ~ .listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}

.listar-feature-item a {
  position: absolute;
  top: -12px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% + 4px);
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-item a:after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-radius: 1000px;
  z-index: 10;
  animation: ripple 0.7s linear infinite;
  box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
    -5px -5px 10px rgba(255, 255, 255, 0.5);
}


@keyframes ripple {
  0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
  }
}



.listar-feature-item .listar-feature-item-inner {
  padding: 50px 30px;
  border-radius: 6px;
  z-index: 5;
  position: relative;
  height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

.listar-feature-item .listar-feature-item-inner:before {
  border: 0;
  box-shadow: 120px 0px 150px aliceblue,
    10px 0px 10px aliceblue;
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(40%, rgba(255, 255, 255, 0)),
    color-stop(100%, rgba(255, 255, 255, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ffffff',GradientType=1);
}

.listar-feature-item .listar-feature-item-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.listar-feature-right-border {
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  top: -12px;
  left: 50%;
  overflow: hidden;
}

.listar-feature-items {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  border: 11px solid #2f53bf;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before,
.listar-hovering-features-grey
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 11px solid #258bd5;
  border-radius: 800px;
  left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
  margin: -30px;
  padding: 30px;
  height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
  margin-bottom: 120px;
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  content: "";
  background-color: #fff;
  z-index: 6;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
}

.listar-feature-icon-wrapper {
  width: 148px;
  height: 148px;
  line-height: 148px;
  border-radius: 500px;
  position: relative;
  background-color: #fff;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 50%;
  vertical-align: middle;
  margin-left: -74px;
  top: -66px;
  margin-top: -74px;
}

.listar-feature-icon-inner {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 500px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
  background: #fff;
}

/* .listar-feature-icon-inner div {
  -webkit-transform: rotate-solu-sec(0deg);
  -moz-transform: rotate-solu-sec(0deg);
  -ms-transform: rotate-solu-sec(0deg);
  -o-transform: rotate-solu-sec(0deg);
  transform: rotate-solu-sec(0deg);
  display: inline-block;
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: left;
} */

.listar-feature-icon-inner img {
  position: relative;
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  height: 55px;
}

.listar-feature-item img,
.listar-feature-item i {
  position: relative;
  display: inline-block;
  border-bottom: 0;
  font-size: 40px;
  top: 0;
  padding: 0;
  color: #258bd5;
}

.listar-feature-with-image .listar-feature-content-wrapper {
  top: 0;
}
.listar-feature-content-wrapper {
  position: relative;
  margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
  padding-top: 0;
  margin: 0 0 30px;
  text-align: center;
  line-height: 1.5;
}

.listar-feature-item
  .listar-feature-item-title.listar-feature-counter-added
  > span {
  margin-left: 25px;
  border-radius: 0 50px 50px 0;
}

.listar-feature-item .listar-feature-item-title > span {
  box-shadow: 5px 5px 10px rgba(80, 80, 80, 0.12),
    0px 0px 10px rgba(80, 80, 80, 0.1);
  padding: 10px 20px;
  display: inline-block;
  position: relative;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title > span span {
  box-shadow: 5px 5px 10px rgba(80, 80, 80, 0.2),
    0px 0px 20px rgba(80, 80, 80, 0.15);
  padding: 10px 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 30px;
  white-space: nowrap;
  position: absolute;
  top: -3px;
  left: -40px;
  border-radius: 50px;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title span {
  display: inline-block;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  text-shadow: none;
  border-radius: 50px;
  color: #252525;
  font-size: 18px;
}

.listar-feature-item-excerpt {
  padding: 0px 41px
}

.listar-feature-item-excerpt {
  color: #252525;
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.pset {
  /* padding-top: 180px; */
  padding-bottom: 20px;
}

.listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 44px;
  line-height: 1.6;
  padding: 10px 25px;
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.65), 0 0 4px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-map-button-text span:after {
  border: 12px solid #fff;
}

.listar-map-button-text span:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  border-radius: 36px;
}

.listar-map-button:hover .listar-map-button-text span {
  padding: 10px 43px 10px 51px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  box-shadow: 10px 10px 40px rgba(80, 80, 80, 0.15),
    15px 15px 30px rgba(80, 80, 80, 0.05), 0 0 120px rgba(80, 80, 80, 0.6);
  bottom: -30px;
  background-image: url("https://image.flaticon.com/icons/svg/2316/2316674.svg");
  background-size: 40%;
  color: #555;
  line-height: 52px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  align-self: flex-start;
}
.solution-type-img{
  display: inline-block;
}
.listar-feature-circle-image {
  margin-left: -5px;
  margin-top: -6px;
  width: 130px;
  height: 130px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #eee;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  /* margin: 0 auto; */
}

.listar-feature-circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}