
.service_hero_row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    /* width: 50%; */
    padding: 20px;
}

.service_contant {
    width: 50%;
}
.service_contant h1 {
  font-size: 35px;
  margin-bottom: 15px;
}
.service_contant span{
   color: var(--IVIS-secondary);
   font-size: 38px;
}
.service_hero_image {
    width: 50%;
}
.service_hero_image img.service_hero_img {
    max-width: 500px;
    width: 100%;
    box-shadow: var(--IVIS-shadow-md);
    border-radius: 3px;
}
.service_contant img {
    width: 20px;
    height: 20px;
    background: var(--IVIS-primary);
    padding: 4px;
    border-radius: 3px;
}
.service_option {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 10px;
    margin: 20px 0px;
}
.service_icon {
    display: flex;
    gap: 10px;
    align-items: center;

}
.service_icon h5 {
    font-weight: 400;
    font-size: 13px;
}

.pricing .pricing_row{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.pricing p {
    margin-bottom: 15px;
    max-width: 600px;
}
.pricing .pricing_offer {
    padding: 20px;
    box-shadow: var(--IVIS-shadow-lg);
    border-radius: 4px;
    border-top: 5px solid var(--IVIS-primary);
}
.pricing .pricing_offer h4{
font-size: 17px;
font-weight: 600;
color: var(--IVIS-primary);
}


.pricing .pricing_offer h5 {
    font-size: 23px;
    margin-top: -4px;
   
}
.pricing .pricing_discount {
    display: flex;
    flex-direction: column;
    align-items: end;
    border-bottom: 1px solid var(--IVIS-slate-200);
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.pricing .pricing_discount h5{
    font-size: 30px;
    color: var(--IVIS-primary);
    margin-bottom: -8px;
}
.pricing .pricing_discount span del {
    font-size: 20px;
    color: var(--IVIS-gray-400);
}


.pricing .pricing_list {
    
    overflow: auto;
}
.pricing .pricing_list ul{
    height: 200px;
    margin-left: 20px;
   
}
.pricing .pricing_list ul li {
    font-size: 13px;
    color: var(--IVIS-gray-500);
    margin-bottom: 4.5px;
}
.pricing .pricing_list ul li::marker{
    color: var(--IVIS-primary);
}
.pricing p.discount_offer {
    margin-top: 12px;
    text-align: center;
    color: var(--IVIS-black-50);
    font-size: 13px;
    border-bottom: 1px solid var(--IVIS-slate-200);
    margin-bottom: 10px;
    padding-bottom: 6px;
}
.pricing p.discount_offer span{
color: var(--IVIS-primary);
font-weight: 500;
}
.pricing_contact a {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.pricing_contact a  h4{
    font-size: 13px !important;
    text-align: center;
}
.pricing_contact a  p{
    font-size: 15px !important;
    font-weight: 500;
    color: var(--IVIS-black-50);
    margin-bottom: 0px;
}
.pricing .pricing_list::-webkit-scrollbar {
    width: 6px;
   
}

.pricing .pricing_list::-webkit-scrollbar-track {
    background-color: var(--IVIS-gray-200);
    border-radius: 8px;
}

.pricing .pricing_list::-webkit-scrollbar-thumb {
    background-color: #265ddb;
    border-radius: 8px;
}




@media (max-width:768px) {
    .service_hero_row {
        display: block;
    }
    .service_contant {
        width: 100%;
    }
    .service_hero_image {
        width: 100%;
        text-align: center;
        margin-top: 40px;
    }

}
@media (max-width:425px) {
    .service_hero_row{
        padding: 10px;
    }
    .service_option {      
        grid-template-columns: 100%;      
    }
    .service_contant h1 {
        font-size: 28px;
    }

}