:root
{
    --pictureCurves: 60px;
}


.servicesWrapper
{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.PackageName
{
    font-size: 20px;
    font-weight: 900;
    line-height: 25px;
}

.singleProduct
{
   width: 100%;
   max-height: 100px;
   margin: 0;
   border-radius: 0;
   align-items: center;
   justify-content: center;
   text-align: center;
   box-shadow: -10px 0 10px -10px #000;
   background: linear-gradient(rgb(59, 131, 77),rgb(13, 114, 106));
}


.singleProduct:hover
{
    transform: translateY(0px);
    background-image: linear-gradient(45deg,rgba(0, 117, 226, 0.938),rgba(16, 34, 95, 0.767)),url(./img/PharmaSmaal.jpg);
    background-size: 100%;
    background-position: center;
}

.singleProduct img
{
    height: 240px;
    border-top-left-radius: var(--pictureCurves);
    border-bottom-right-radius: var(--pictureCurves);
}

.PackageName
{
    font-weight: 400;
    font-size: 14px;
}
#validationMore
{
    font-weight: 600;
}

.productServices
{
    width: 100vw;
    display: grid;
    gap: 10px;
    align-items: stretch;
    justify-content: stretch;
}
.productServices:nth-child(1)
{
    grid-area: valid;
}
.productServices:nth-child(2)
{
    grid-area: compliance;
}

.productServices:nth-child(3)
{
    grid-area: quality;
}

.productServices:nth-child(4)
{
    grid-area: phama;
}



@media screen and (min-width:900px) 
{
    .productServices
    {
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        position: sticky;
    top: 50px;

    z-index: 200;
    }
}



.serviceExpContainer
{
    padding: 30px;
    width: 100vw;
}

.heading h1
{
    font-weight: 500;
    font-size: 17;
}

.devider
{
    height: 0.7px;
    background: rgb(163, 163, 163);
    margin: 5px 20px;
}

.text
{
    font-size: var(--MNSmallFonts);
}

.serviceImg
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgContained
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgContained > img
{
    height: 13rem;
    border-radius: 20px;
    rotate: 5deg;
}

.serviceContent
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.text ol, .text ul
{
    padding-left: 50px;
}

.text
{
    line-height: 1.3rem;
}

.text > h2
{
    font-weight: 400;
    margin-top: 20px;
}


.romanList
{
    list-style-type: lower-roman;
}

.lettersList
{
    list-style-type: lower-alpha;
    font-weight: 600;
}

.lettersList > li > p
{
    font-weight: 400;
}


@media screen and (max-width:800px) 
{
    .serviceImg
    {
        display: none;
    }   
}