


.sers{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.ser{
    background-color: #f0f0f0;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.ser1{
    background-color: #f0f0f0;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.ser img{
    border-radius: .5rem;
    width: 50%;
    height: fit-content;
}
.ser-text{
    width: 50%;
}
.ser h2{
    color: #002253ff;
    padding-bottom: 2rem;
}
.ser1 img{
    border-radius: .5rem;
    width: 50%;
    height: fit-content;
}
.ser1-text{
    width: 50%;
}
.ser1 h2{
    color: #002253ff;
    padding-bottom: 2rem;
}

@media  screen and (max-width: 767px){
    .sers{
        gap: 1rem;
    }
    .ser{
        flex-direction: column;
    }
    .ser img{
        width: 100%;
    }
    .ser-text{
        width: 100%;
    }
    .ser1 img{
        width: 100%;
    }
    .ser1-text{
        width: 100%;
    }

    .ser1{
        flex-direction: column-reverse;
    }
    
}