*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container2{
    width: 100%;
    padding: 0 8%;
    padding-bottom: 20px;
}
.container2 h1{
    text-align: center;
    padding-top: 10%;
    font-weight: 600;
    position: relative;
    color: rgb(117,30,30);

}
.container2 h6{
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}
.container2 .row{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 16px;
}
.service{
    text-align: center;
    padding: 25px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    transition: transform 0.5s, background 0.5s;
}
.service h2{
    font-size: 22px;
    font-weight: 600px;
    margin-bottom: 8px;
}
.service p{
    text-align: justify;
    text-justify: inter-word;
}
.service i{
    font-size: 40px;
    margin-bottom: 10px;
}
.service:hover{
    background: rgb(117,30,30);
    color: white;
    transform: scale(1.08);
}
