* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* background-color: #f4f4f4; */
    background-color:rgb(230, 230, 250);
    color: #333;
    margin: 0;
    padding: 0;
}
#parent_slider_container{
    background-size: cover; /* This will make sure the background image covers the whole container */
    background-position: center;
    margin-top: 10px;
}
.slider-container {
    width: 70vw;
    height:60vh; /* Adjust the height as needed */
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
     margin: auto;
  
}

.slide {
    width: 70vw;
    height:60vh; 
    display: none;
    position: absolute;
    
}
.slide.active {
    display: block;
}

.slide img {
     width: 70vw;
    height:60vh; 
    object-fit:fill;
    text-align: center;
}
#achievement_number_container{
    display: flex;
    width: 100vw;
    height: auto;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}
.achievement_class{
    width: 250px;
    height:100px;
    /* border: 2px solid blue; */
    box-shadow: 2px 2px 2px 2px rgb(223,193,193);
    margin: 10px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* background-color:rgb(237, 234, 222); */
    background-color:rgb(204, 204, 255);
    border-radius: 10px;

}
.achievement_class h1{
    text-align: center;
    font-size: 32px;
    color:black;

}
.achievement_class h3{
    text-align: center;
    font-size: 22px;
    color:black;
}
.expertise_div_class{
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}
#names_expertise_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}
#expertise_div_id h1{
   text-align: center;
   margin-top: 20px;
   font-size: 32px;
}
#expertise_div_id h3{
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
}
#names_expertise_container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
.contain_expertise{
    display: flex;
    flex-direction: row;
    width: 70vw;
    box-shadow: 2px 2px 2px 2px rgb(223,193,193);
    border-radius: 10px;
    justify-content: space-evenly;
}
.contain_expertise h3{
    text-align: center;
    margin: auto;
}
#masterclass_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
}
#masterclass_container h1{
    text-align: center;
    font-size: 36px;
}
#masterclass_container h2{
    text-align: center;
    font-size: 28px;
}
#masterclass_card_container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* box-shadow: 2px 2px 2px 2px rgb(223,193,193); */
    padding: 10px 10px 10px 10px;
    margin-left: 30px;
    margin-right: 30px;

}
.masterclass_card{
    width: 300px;
    height: 400px;
    margin-right: 10px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.masterclass_card_banner{
    box-shadow: 2px 2px 2px 2px rgb(223,193,193);
    margin: 10px 0px;
    display: flex;
}
.masterclass_card img{
    width: 300px;
    height: 400px;
}
.join_us_btn{
    width: 100px;
    text-align: center;
    margin: auto;
    margin-top: 10px;
    border-radius: 10px;
    background-color: blue;
}
.join_us_btn a{
    text-decoration: none;
    text-align: center;
    color: white;
}
#ideas_of_masterclass {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#ideas_of_masterclass h1{
    font-size:34px ;
}
#ideas_of_masterclass h2 {
   font-size: 24px;
  }
#parent_community_container{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.community-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 70vw;
    /* border: 2px solid black;
    border-radius: 50%; */
}
.community_card{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.community_card img{
    width:200px ;
    height: 150px;
    border-radius: 50%;
}
.community_card h3{
    font-size: 24px;
}

#tag_line_to_join_community h1{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
#tag_line_to_join_community h4{
    text-align: center;
}
#join_community_btn_container{
    display: flex;
    justify-content: center;
}
#join_community_btn{
   border-radius: 40px;
   padding: 2px 2px 2px 2px;
   background-color: blue;
   text-align: center;
   margin: auto;
}
#join_community_btn a{
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: white;
}
#core_pillar_container h1{
   text-align: center;
   margin-top: 24px;
   
}
#core_pillar_cards_container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.core_pillar_cards h3{
    text-align: center;
    font-size: 20px;
}
#query_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

#form_container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

#form_container h1 {
    font-size: 28px;
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

#form_container h3 {
    text-align: center;
    font-size: 22px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

form .input_field, 
form textarea {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

form textarea {
    resize: vertical;
}

#sbtn {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#sbtn:hover {
    background-color: #0056b3;
}
@media screen and (max-width: 752px){
    .slider-container {
        width: 100vw;
        height:calc(100vw * 9 / 16); /* Adjust the height as needed */

    }
    
    .slide {
        width:100vw;
        height: calc(100vw * 9 / 16);
        display: none;
        position: absolute;
        
    }
   
    .slide img {
        width: 100vw;
        height:calc(100vw * 9 / 16); 
    }
}





