*{
    margin:0;
    padding: 0;
    box-sizing: border-box;

}
:root{
    --primary-color:#fd562a;
    --secondary-color:rgba(255,255,255,.4);

}
#service-section h2 span{
    color: #4e3b3b;
}
#service-section{
    /* min-height: 580px; */
    width: 100%;
    /* background: #20223a; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#service-section h2{
    color: #ed0606;
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}
#service-section h2 ::before{
    content: '';
  width: 60px;
  height: 3px;
  background: #f91942;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
}
/* #service-section h2::after{
    position: absolute;
    content: " ";
    top: 8px;
    left: -30px;
    height: 0;
    width: 0;
    border-top: 20px solid transparent;
    border-left: 20px solid var(--primary-color);

} */

#service-section #paragraph{
    width: 40%;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    white-space: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;

}
.service_cards{
    display:flex;
    grid-template-columns: repeat(3 1fr);
    gap: 25px;
    z-index: 9;
    margin-top: 0px;
}
.service_cards .servicecard{
    height: 310px;
    width: 280px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px 2%;
    background: rgb(43 40 91);
    position: relative ;
    border-radius: 10px;
    

}
.service_cards .servicecard::before{
    position: absolute;
    content: " ";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: #a007078a;
    /* transform: rotate(10deg); */
    transform: rotate(0deg);
    z-index: -1;

}
.service_cards .servicecard:hover.servicecard::before{
    transform: rotate(10deg);
}
.service_cards .servicecard i{
    /* font-size: 2.5rem; */
    color: var(--primary-color);
    margin-top: 5px;
    margin-bottom: 10px;
}
.service_cards .servicecard h3{
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: bold;

}
.service_cards .servicecard .content p{
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8rem;
}
@media(max-width:1000px){
    #service-section h2{
        margin-top: 30px;

    }
    .service_cards{
        display: grid;
    }
    #service-section #paragraph{
        width: 80%;
    }
    .service_cards .servicecard{
        /* padding: 2% 1%; */
        
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 1rem;
    }
    
}
@media(max-width:px){

}