.sopWrapper{
    padding: 0 1rem;
}
.sopBannerWrapper{
    /* height: 110px; */
    /* background:rgb(83, 33, 33); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 2rem 0;
}
.sopTitle{
 text-align: center;
 font-size: 32px;
}
.sopPara{
    color: #7b7b7b;
    font-family: "Inter", sans-serif;
}
.sop2para{
    padding-left: 1rem;
}

/* SOP BODY  */
.sopBody{
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 2rem;
}
.sopBodyLeft{
 min-width: 240px;
 /* background-color: orange; */
 font-size: 14px;
 display: none;
}
.sopLeftTitle{
    padding: .8rem 0;
    font-weight: 600;
}
.sopBodyLeft a{
    padding: .4rem 1rem;
    display: block;
    background: var(--white);
    border-radius: 1rem;
    margin-bottom: .4rem;
    /* font-family: "Inter", sans-serif; */
}
.sopBodyLeft a:hover{
    background: var(--lightOrange);
    transition: .4s;
}
.sopBodyLeft a:active{
    background: #f0eeee;
    transition: .4s;
}
.sopRightParaWrapper{
 display: flex;
 gap: 1rem;
 flex-direction: column;
 font-family: "Inter", sans-serif;
}
.sopBodyRight{
    background: #d7e3dc;
    padding: 1rem;
    border-radius: 1.5rem;
}
.sopRightCardWrapper{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1rem;
}
.sopBody .endContent{
    font-family: "Inter", sans-serif;
    padding-top: 1rem;
}
.sopRightPointCard{
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: .8rem;
    padding: .5rem 1rem;
    background: var(--white);
    border-radius: 1rem;
}