.sc-treatment-wrap {
    display: flex;
}
.sc-treatment-item-images {
    position: relative;
}
.sc-treatment-item-img + .sc-treatment-item-img{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
.sc-treatment-item-img{
    opacity: 0;
}
.sc-treatment-item-img.active{
    opacity:1;
}

.sc-treatment-info-title h3 {
    margin: 0;
    color: #000;
    font-family: "Exo 2";
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.sc-treatment-info-title {
    border-radius: 34px;
    background: #979FCD;
    padding: 9px 16px;
    position: relative;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
}
.sc-treatment-info-title:before {
    content: "";
    background: #979FCD;
    width: 150px;
    position: absolute;
    left: -100px;
    height: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.sc-treatment-item-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.sc-treatment-item {
    position: relative;
}

.sc-treatment-info {
    position: absolute;
    left: 0;
    top: -115px;
    background: #DAAB2D;
    border-radius: 16px;
    border: 2px solid  #DAAB2D;
    width: max-content;
    padding: 24px;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: none;
    opacity: 0;
}
.sc-treatment-item.hover-active .sc-treatment-info {
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}
.sc-treatment-item.hover-active .skeleton-point.hover-active,
.sc-treatment-item.hover-active .sc-treatment-info-title:before{
  background-color: #fff !important;
}

.sc-treatment-info h3 {
    color: #000;
    font-family: "Exo 2";
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px;
}
.skeleton-point {
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -100px;
}
.sc-treatment-item:nth-child(2) .skeleton-point {
    left: -75px;
}
.sc-treatment-item:nth-child(2) .sc-treatment-info-title:before{
    left: -70px;
}
span.list_content p + p {
    margin-top: 5px;
}
span.list_content p a:hover {
    color: #1B78BB;
}
.sc-treatment-img {
    max-width: 155px;
}
@media (max-width: 575px) {
    .sc-treatment-info {
        width: 206px;
        padding: 15px;
    }
    .sc-treatment-img {
        max-width: 115px;
    }
    span.list_content p {
        font-size: 14px;
    }
    .skeleton-point {
        left: -73px;
    }
    .sc-treatment-item:nth-child(2) .skeleton-point {
        left: -60px;
    }
    .sc-treatment-item:nth-child(2) .sc-treatment-info-title:before {
        left: -56px;
    }
    .sc-treatment-info-title:before {
        width: 100px;
        left: -70px;
    }
    .sc-treatment-info-title h3 {
        font-size: 16px;
    }
}