.childContent{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    
}
.childContent h1{
    max-width: 500px;
    
}
.childContent h1 span{
    color: #E96101;
}
.benefits-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.benfits-cards{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
width: 100%;
max-width: 1200px;
}
.benefit-data{
    max-width: 300px;
    display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border:1px solid #E96101;
padding: 10px;
margin: 10px;
box-shadow: 0px 0px 10px #E96101;
}
.benefit-data1{
    background-color: #E96101;
    max-width: 300px;
    display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border:1px solid #E96101;
padding: 10px;
margin: 10px;
box-shadow: 0px 0px 10px #E96101;
color: white;
}
.benefit-data h1{
    margin-top: -10px;
}
.benefit-data img,.benefit-data1 img {
    width: 100px;
}
.benefit-data1 p{
font-size: 13px;
padding: 10px;
}
.benefit-data p{
    font-size: 13px;
    padding: 10px;
}
.our-courses{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.courses-content{
    display:flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1200px;
    margin: 20px;
}
.courses-img{
    width: 300px;
    height: 100%;
    border-radius: 20px;
    /* object-fit: contain; */
}
.courses-data{
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.586);
   border-radius: 20px;
   position: relative;
   margin: 20px;

}
.course-detail{
    width: 280px;
    margin-left: 40px;
    margin: 10px;
    padding: 5px;
    border-radius: 10px;
    /* box-shadow:inset 0px 0px 10px rgba(0, 0, 0, 0.345); */
    
    
}
.course-DetailsBtn{
    background-color: transparent;
    font-size: 18px;
    border: none;
    color: #E96101;
    padding: 10px;
    transition: all 0.5s ease-in-out;
    position: absolute;
    margin-top: -55px;
    background-color: white;
    margin-left: -10px;
    border-radius: 0px 10px;
    padding-left: 20px;

}
.course-DetailsBtn:hover{
    background-color: #E96101;
    color: white;
}

@media screen and (max-width:500px) {
    .childContent{
        flex-direction: column;
        padding: 20px;
    }
    .childContent img{
        width: 100%;
    }
    .benfits-cards{
        flex-direction: column;
    }
}

@media screen and (max-width:800px) {
    .courses-content{
        width: 100%;
        overflow: scroll;
        justify-content: start;
    }
     .childContent img{
        width: 500px;
    }
}