/*
Primary Color : #ed008c
Secondary Color : #051745
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.cdnfonts.com/css/autography-2');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

/*Header Section*/


#header_part{
    min-height: 100vh;
    background: linear-gradient(90deg, rgba(121,227,236,1) 23%, rgba(241,150,204,1) 100%);
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
    position: relative;
}
.heading_title{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.heading {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 3.6rem;

}

.heading-main {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 30px;
}

.heading-main strong {
    color: #ed008c;
}

.heading-sub {
    color: #051745;
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 28.5px;
}

.btn:link,
.btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 2px;
    transition: all .2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background-color: #fff;
    color: black;
}

.heading_navbar{
    position:absolute;
    bottom: 1%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 51%;
}
.heading_navbar nav{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.heading_navbar nav a{
    text-decoration: none;
    padding: 0.3rem 1rem;
    letter-spacing: 0.1rem;
    border-radius: 5rem;
    color: #fff;
    background-color: #051745;
}
.heading_navbar nav a:hover{
    background-color: #ed008c;
}

@media screen and (max-width: 768px) {
    .heading-main{
        font-size: 2rem;
        letter-spacing: 20px;
    }
    .heading-sub{
        letter-spacing: 10px;
    }
    .heading_navbar{
        width: 90%;
    }
    .heading_navbar nav a{
        font-size: 0.6rem;

    }

    .btn:link,
.btn:visited {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 13px 38px;
   
}

  }
@media screen and (max-width: 480px) {
    
    .heading-main{
        display: flex;
        flex-direction: column;
        font-size: 3rem;
        letter-spacing: 30px;
    }
    .heading-sub{
        font-size: 1rem;
        letter-spacing: 10px;
    }
    .heading_navbar{
        width: 90%;
    }
    .heading_navbar nav a{
        font-size: 0.5rem;
    }
  }


/*Cards Section*/
#modules_section{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#modules_section h2{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    color: #051745;
    margin: 4rem 0 1rem 0;
    font-size: 3rem;
    letter-spacing: 0.2rem;
    /* border-bottom: 0.2rem solid #051745; */
    border-radius: 5rem;
    padding: 0.8rem 3.5rem;
    background: linear-gradient(90deg, rgba(121,227,236,1) 23%, rgba(241,150,204,1) 100%);
}
.cards_box{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cards{
    margin: 4rem 0 4rem 0;
    padding-left: 1rem;
    padding-bottom: 1.3rem;
    border-left: 0.3rem solid ;
    border-bottom: 0.3rem solid ;
    border-image: linear-gradient(90deg, rgba(121,227,236,1) 23%, rgba(241,150,204,1) 100%) 1;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.card_title h3{
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ed008c;
}
.card_title img{
    max-width: 45rem;
}
.cards_benefits{
    font-size: 1.3rem;
    color: #051745;
}

@media screen and (max-width: 768px) {
   
    #modules_section h2{
        font-size: 2rem;
        padding: 0.8rem 2rem ;
    }

    .cards{
        flex-direction: column;
        padding: 1rem;
        border: 0.175rem solid ;
        border-image: linear-gradient(90deg, rgba(121,227,236,1) 23%, rgba(241,150,204,1) 100%) 1;
    }
    
    .card_title img{
        max-width: 25rem;
    }
    .cards_benefits{
        font-size: 1rem;
    }
  }
@media screen and (max-width: 480px) {
    #modules_section h2{
        font-size: 1.5rem;
    }
    
    .card_title img{
        max-width: 15rem;
    }
    .cards_benefits{
        font-size: 0.8rem;
    }
  }

/*Time Table Section*/
.time_table_section{
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: whitesmoke;
    font-size: 1.5rem;
    color: #ed008c;
}
.time_table_title{
    background: linear-gradient(90deg, rgba(121,227,236,1) 23%, rgba(241,150,204,1) 100%);
    padding: 0.8rem 3.5rem;
    border-radius: 5rem;
    font-size: 3rem;
    color: #051745;
    /* border-bottom: 0.2rem solid #051745; */
    margin: 4rem 0 2rem 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.table_box{
    border: 0.2rem solid ;
    border-image: linear-gradient(90deg, rgba(121,227,236,1) 23%, rgba(241,150,204,1) 100%) 1;
    padding: 2rem;
    margin: 4rem 0;
}
td{
    border: 1px solid black;
    padding: 1.5rem;
}

@media screen and (max-width: 768px) {
    .time_table_section{
        font-size: 1rem;
    }
    .time_table_title{
        font-size: 2rem;
        padding: 0.8rem 2rem ;
    }
    .table_box{
        padding: 1.2rem;
        margin: 2rem;
    }
    td{
        padding: 0.5rem;
    }
  }
@media screen and (max-width: 480px) {
    tr{
        display: flex;
        flex-direction: column;
        border: 0.1rem solid #051745;
        margin: 1rem 0;
    }
    td{
        border: 0;
    }
  }

/*Footer Section*/

.footer_part{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* background-color: #051745; */
    background: linear-gradient(90deg, rgba(121,227,236,1) 23%, rgba(241,150,204,1) 100%);
    color: #fff;
}
.contact_box{
    margin: 1rem 0 1rem 0;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
    border-bottom: 1px solid #fff;
    padding-bottom: 1rem;
}
.phone_mail_subbox{
    margin: 0.5rem 0;
}

.phone_mail_box a{
    color: #fff;
    text-decoration: none;
    
}
.phone_mail_box a:hover{
    /* color: #ed008c; */
    color: #051745;
}
.fa-solid{
    color: #ed008c;
    font-size: 1.5rem;
    margin: 0 1rem;
}

.credit_info_box span {
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    font-family: 'Poppins', sans-serif;
}
.credit_info_box span a {
    color: #fff;    
    text-decoration: none;
    font-family: 'Autography', sans-serif;
    font-weight: 500; 
    font-size: 1.2rem;  
    

}
.credit_info_box span a:hover{
    color: #051745;
}

#movingImage {
    position: absolute;
    z-index: 99;
    transition: transform 1s ease, z-index 1s ease;
}
.imgaeM{
     width: 210px;
    height: 210px;
    border-radius: 50%;
    overflow: hidden;
    background-color: blue;
    display:inline-block;
    vertical-align:middle;
}

@media screen and (max-width: 768px) {
    .contact_box{
        width: 95%;
        font-size: 0.9rem;
    }
    .fa-solid{
        font-size: 1rem;
        margin: 0 0.5rem;
    }
    .address_box{
        font-size: 0.8rem;
    }
  }
@media screen and (max-width: 480px) {
    .contact_box{
        flex-direction: column;
        min-height: 30vh;
    }
  }