How can I add a margin between two slideshows on my website?

Website: https://greendeerkids.myshopify.com/

password: veep

From Image: As you can see first and 2nd slideshow(in desktop) are very close to each other. I want to add margin between them. Please help

Hi @Avantika01 Hope you are doing well
please Add this code at the end of theme.css file

@media only screen and (min-width: 750px){
[class*="index-section--flush"] + [class*="index-section--flush"] {
 margin-top:-104px;
}
}