*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
}
/* .parents-section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid crimson;
} */

.first-section{
    display: flex;
    width: 100%;
    
}
.heading-subheading-content{
    width: 50%;
    padding: 10%;
    background:linear-gradient(rgba(53, 53, 244, 0.854), rgba(255, 133, 255, 0.497));
}

.heading-subheading-content h2{
    font-size: 3.5rem;
    color: #fff;
    line-height: 4.2rem;
    font-weight: 700;
}

.heading-subheading-content p{
    font-size: 1.62rem;
    color: #fff;
    line-height: 2.25rem;
    font-weight: 400;
    margin: 25px 0;
}

.heading-subheading-content small{
    font-size: 1rem;
    color: #fff;
    line-height: 2.15rem;
    font-weight: 400;
    margin: 25px 0;
}

.heading-subheading-content button{
    display: inline-block;
    font-size: 1.62rem;
    text-decoration: none;
    color: #fff;
    width: 100%;
    padding: 15px ;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.heading-subheading-content button a{
    text-decoration: none;
    color: black;
}
.heading-subheading-content button:hover{
    background-color: #dadada;
}

.video-screen{
    width: 50%;
    position: relative;
    /* overflow: hidden; */
}

.video-screen video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
/***** RESPONSIVE START HERE*****/

@media only screen and (max-width:600px) {

    .first-section{
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .heading-subheading-content{
        width: 100%;
        padding: 10%;
    }
 
    .heading-subheading-content h2{
        font-size: 2.5rem;
        line-height: 3.2rem;
    }

    .heading-subheading-content p{
        font-size: 1.25rem;
        line-height: 2rem;
    }
}

@media only screen and (min-width:601px) and (max-width:900px) {

    .first-section{
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .heading-subheading-content{
        width: 100%;
        padding: 10%;
    }

    /* .video-screen{
        width: 100%;
        height: 100%;
  
    } */
    .heading-subheading-content h2{
        font-size: 2.5rem;
        line-height: 3.2rem;
}

    .heading-subheading-content p{
        font-size: 1.25rem;
        line-height: 2rem;
}
}


/******** PARENTS SECTION END******/

/******** CARD SECTION START******/
.card-section{
    background-color: #f7f7f7;
    width: 100%;
    padding: 5% 15%;
}
.cards-parents-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.cards-parents-section .single-card{
    background-color: #fff;
    padding: 5%;
    border-radius: 5px;
    max-width:850px;
}

.cards-parents-section .single-card img{
    width: 50px;
    height: 50px;
}

.cards-parents-section .single-card h4{
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    margin: 10px 0;
}

.cards-parents-section .single-card p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin: 10px 0;
}

/*******CARD SECTION RESPONSIVE START******/
@media only screen and (max-width:600px){

.card-section{
    padding: 5% 5%;
}

.cards-parents-section{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.cards-parents-section .single-card h4{
    font-size: 25px;
    line-height: 30px;
}

.cards-parents-section .single-card p{
    font-size: 18px;
    line-height: 20px;
}

}

@media only screen and (min-width:601px) and (max-width:900px) {

.card-section{
    padding: 5% 5%;
}
.cards-parents-section{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.cards-parents-section .single-card h4{
    font-size: 25px;
    line-height: 30px;
}

.cards-parents-section .single-card p{
    font-size: 18px;
    line-height: 20px;
}
}

/*******CARD SECTION RESPONSIVE END******/

/******** CARD SECTION  END******/

/******** KNOW SECTION START******/
.know-Section{
    background-color: #f7f7f7;
    width: 100%;
    text-align: center;
    padding: 5% 15%;
}

.know-Section h2{
    font-size: 41px;
    line-height: 60px;
    font-weight: 700;
    padding-bottom: 30px;
}


.know_parents-section{
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 20px;
    text-align: center;
}


.know_parents-section .single-child-section h3{
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    margin: 10px 0;
}

.know_parents-section .single-child-section p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin: 10px 0;
}

/*******KNOW SECTION RESPONSIVE START*****/
@media only screen and (max-width:600px){
    .know_parents-section{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .know-Section h2{
        font-size: 30px;
        line-height: 40px;      
    }

    .know_parents-section .single-child-section h3{
        font-size: 25px;
        line-height: 30px;
    }

    .know_parents-section .single-child-section p{
        font-size: 18px;
        line-height: 28px;
        font-weight: 400;
        margin: 10px 0;
    }

}

@media only screen and (min-width:601px) and (max-width:900px) {
    .know_parents-section{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .know-Section h2{
        font-size: 30px;
        line-height: 40px;      
    }

    .know_parents-section .single-child-section h3{
        font-size: 25px;
        line-height: 30px;
    }

    .know_parents-section .single-child-section p{
        font-size: 18px;
        line-height: 28px;
        font-weight: 400;
        margin: 10px 0;
    }
}

/*******KNOW SECTION RESPONSIVE END*****/

/******** KNOW SECTION END******/
/******** NARRATORS SECTION START******/
.narrators-section{
    background-color: #f7f7f7;
    width: 100%;
    text-align: center;
    padding: 5% 15%;
}

.narrators-section h2{
    font-size: 41px;
    line-height: 60px;
    font-weight: 700;
    padding-bottom: 30px;
}

.narrators_parents-section{
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 20px;
    text-align: center;
}
.narrators_single-child-section .image img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

.narrators_single-child-section h3{
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    margin: 10px 0;
}

.narrators_single-child-section p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin: 10px 0;
}

.narrators_single-child-section button{
    display: inline-block;
    font-size: 1.62rem;
    color: #0060a9;
    width: 60%;
    padding: 15px ;
    border: 1px solid #0060a9;
    border-radius: 35px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.narrators_single-child-section button a{
    text-decoration: none;
    color: #0060a9;
    margin-right: 5px;
}
.narrators_single-child-section button:hover{
    background-color: #dadada;
}

.narrators-section .note{
    padding-top: 50px;
    font-size: 20px;
    text-align: justify;
    line-height: 28px;
    font-weight: 400;
    margin: 10px 0;

}

/*******NARRATORS SECTION RESPONSIVE START*******/
@media only screen and (max-width:600px){
    .narrators_parents-section{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .narrators-section h2{
        font-size: 30px;
        line-height: 40px;
    }

    .narrators_single-child-section h3{
        font-size: 25px;
        line-height: 30px;
    }

    .narrators_single-child-section p{
        font-size: 18px;
        line-height: 28px;
        font-weight: 400;
    }

    .narrators_single-child-section .image img{
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }

    .narrators_single-child-section button{
        width: 100%;
        padding: 15px;
     
    }

    .narrators-section .note{
        font-size: 18px;  
    }

}

@media only screen and (min-width:601px) and (max-width:900px) {
    .narrators_parents-section{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .narrators-section h2{
        font-size: 30px;
        line-height: 40px;
    }

    .narrators_single-child-section h3{
        font-size: 25px;
        line-height: 30px;
    }

    .narrators_single-child-section p{
        font-size: 18px;
        line-height: 28px;
        font-weight: 400;
    }

    .narrators_single-child-section .image img{
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }

    .narrators_single-child-section button{
        width: 100%;
        padding: 15px;
     
    }
    .narrators-section .note{
        font-size: 18px;  
    }
}


/*******NARRATORS SECTION RESPONSIVE END*******/

/******** NARRATORS SECTION END******/
