@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}


:root {
    --blue: #1e90ff;
    --white: #ffffff;
}



.d-flex{
    display: -webkit-box;          /* Old Safari versions */
    display: -moz-box;             /* Old Firefox versions */
    display: -ms-flexbox;          /* IE 10 */
    display: -webkit-flex;         /* Newer Safari versions */
    display: flex;    
}
.justify-center{
    -webkit-box-pack: center;       /* Old Safari versions */
    -moz-box-pack: center;          /* Old Firefox versions */
    -ms-flex-pack: center;          /* IE 10 */
    -webkit-justify-content: center;
    justify-content: center;   
}
.justify-around {
    -webkit-box-pack: justify;         /* Old Safari versions */
    -moz-box-pack: justify;            /* Old Firefox versions */
    -ms-flex-pack: distribute;         /* IE 10 */
    -webkit-justify-content: space-around;
    justify-content: space-around;     /* Standard */
}
.justify-between{
    -webkit-box-pack: justify;      /* Old Safari versions */
    -moz-box-pack: justify;         /* Old Firefox versions */
    -ms-flex-pack: justify;         /* IE 10 */
    -webkit-justify-content: space-between;
    justify-content: space-between; /* Standard */
}
.align-center{
    -webkit-box-align: center;      /* Old Safari versions */
    -moz-box-align: center;         /* Old Firefox versions */
    -ms-flex-align: center;         /* IE 10 */
    -webkit-align-items: center;
    align-items: center;        
}
.align-end{
    -webkit-box-align: end;         /* Old Safari versions */
    -moz-box-align: end;            /* Old Firefox versions */
    -ms-flex-align: end;            /* IE 10 */
    -webkit-align-items: flex-end;
    align-items: flex-end;   
}

.flex-row{
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;            /* Standard */
}
.flex-col{
    -webkit-box-orient: vertical;  /* Old Safari versions */
    -moz-box-orient: vertical;     /* Old Firefox versions */
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;  
}
.flex-wrap{
    -ms-flex-wrap: wrap;            /* IE 10 */
    -webkit-flex-wrap: wrap;        /* Newer Safari versions */
    flex-wrap: wrap;   
}
.ml-4{
    margin-left: 20px;
}
.mb-1{
    margin-bottom: 1rem;
}
.mb-2{
    margin-bottom: 2rem;
}
.mb-8{
    margin-bottom: 8rem;
}
.mt-2{
    margin-top: 2rem !important;
}
.mt-4{
    margin-top: 4rem;
}
.mt-5{
    margin-top: 5rem;
}
.mt-8{
    margin-top: 8rem;
}
.mx-1{
    margin: 0 1rem;
}
.mx-2{
    margin: 0 2rem;
}
.p-2{
    padding: 10px !important;
}
.p-3{
    padding: 15px;
}
.p-4{
    padding: 20px;
}
.pl-2{
    padding-left: 10px;
}
.bg_green{
    background-color: #00b099 !important;
}
.bg_pink{
    background-color: #eb4ea2 !important;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.w-100{
    width: 100% !important;
}
.w-50{
    width: 50%;
}
.w-44{
    width: 44%;
}
.overflow-x-hidden{
    overflow-x: hidden;
}
.overflow-hidden{
    overflow: hidden;
}
.white{
    color: white;
}
.h-blog{
    height: 660px;
}
.text-center{
    text-align: center;
}
.bg-white{
    background: #fff !important;
}
















/* navbar */
nav{
    /* background: #e2f1f8; */
    background: rgba(226, 241, 248, 0.9);
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  }
  label.logo{
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
  }
  nav ul{
    float: right;
    margin-right: 82px;
    /* margin-right: 20px; */
    display: -webkit-box;
    display: flex;
    /* width: 75vw; */
    width: 75%; 
  }
  nav ul li{
    display: inline-block;
    line-height: 80px;
    /* margin: 0 5px; */
    margin: 0 auto 0 0;
  }
  nav ul li a{
    color: black;
    font-size: 14px;
    padding: 30px 13px;
    /* padding: 7px 13px; */
    /* border-radius: 3px; */
    text-transform: uppercase;
    text-decoration: none;
  }
  a.active,a:hover{
    background: #2e467a;
    transition: .5s;
    color: white;
  }
  .checkbtn{
    font-size: 30px;
    color: black;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  #check{
    display: none;
  }
  .search_div{
    display: flex;
    display: -webkit-box;
    align-items: center;
    -webkit-box-align: center; 
    -webkit-box-pack: center; 
  }
  .search_input {
    /* float: right; */
    padding: 6px;
    border: none;
    /* margin-top: 8px; */
    margin-right: 16px;
    font-size: 17px;
    /* font-size: 20px; */
    width: 185px;
    background: white url("/images/search_icon.png") no-repeat 150px;
    background-size: 18px;
    border-radius: 10px;
  }










/* course */
.main_container{
    background-color: #e2f1f8;
    padding-bottom: 30px;
}










/* home */

.home_container{
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    /* padding: 20px; */
    border-radius: 40px;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    /* height: 89vh; */
    height: 98vh;
    /* height: auto; */
    background: white url(/images/home_bg2.png) no-repeat;
    background-size: contain;
    background-position: right;
    z-index: 0 !important;

}
.vectorLogo{
    margin-bottom: 6rem;
}
.home_container > div:first-child{
    /* width: 530px; */
    padding: 86px;
}

.home_container > div > h1{
    color: #2e467a;
    font-size: 42px;
}

.home_container > div > div > button, .home_container > div > button{
    background-color: #6aaa8f; /* Green */
    border: none;
    color: white;
    padding: 11px 36px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    transition-duration: 0.4s;
    border-radius: 10px;
    z-index: 1;
}
.home_input{
    /* float: right; */
    padding: 10px;
    border: none;
    /* margin-top: 8px; */
    margin-right: 10px;
    font-size: 17px;
    background-color: #f6f6f6;
    border-radius: 12px;
    z-index: 1;
}
.dark_blue{
    width: 130px;
    position: absolute;
    z-index: -1 !important;
    top: -1vw;
    left: 280px;
}
.erth_icon{
    background: #e7519d;
    padding: 20px;
    border-radius: 50%;
    width: 140px;
}






/* vector */
.vector{
    width: 90%;
    margin: 0 auto;
    background-color: #2e467a;
    padding: 20px;
    border-radius: 40px;
    position: relative;
    margin-bottom: 2rem;
}
.vector > h1, .vector > p{
    color: #fff;
    
    text-align: center;
}
.vector_container{
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 40px;
    position: relative;
    display: -webkit-box;          /* Old Safari versions */
    display: -moz-box;             /* Old Firefox versions */
    display: -ms-flexbox;          /* IE 10 */
    display: -webkit-flex;         /* Newer Safari versions */
    display: flex;   
    -webkit-box-pack: justify;         /* Old Safari versions */
    -moz-box-pack: justify;            /* Old Firefox versions */
    -ms-flex-pack: distribute;         /* IE 10 */
    -webkit-justify-content: space-around;
    justify-content: space-around; 
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-box-pack: center;
    flex-direction: row;     
    align-items: center;
    overflow: hidden;

}
.vector_container > div{
    width: 530px;
    padding: 40px;
}

.vector_container >div > button{
    background-color: #6aaa8f; /* Green */
    border: none;
    color: white;
    padding: 11px 26px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    transition-duration: 0.4s;
    border-radius: 10px;
}
.sky_cirlce{
    width: 400px;
}
.vectors{
    width: 380px;
}






/* course */
.course_container_main{
    margin-top: 6rem;
}
.blog-main-container{
    width: 86%;
    margin: 0 auto;
}
.blog{
    width: 94%;
    margin: 0 auto;
    background-image: url("../images/blog-bg.jpg");
    padding: 20px;
    border-radius: 32px;
    position: relative;
    background-color: #657bac;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-position: center;
    height: 400px;
}
.blog > .blog-container{
    color: #fff;
    /* margin-left: 56px; */
    text-align: center;
    display: flex;
    display: -webkit-box;          /* Old Safari versions */
    display: -moz-box;             /* Old Firefox versions */
    display: -ms-flexbox;          /* IE 10 */
    display: -webkit-flex;         /* Newer Safari versions */
    justify-content: center;
    -webkit-box-pack: center;       /* Old Safari versions */
    -moz-box-pack: center;          /* Old Firefox versions */
    -ms-flex-pack: center;          /* IE 10 */
    -webkit-justify-content: center;
    flex-direction: column;
    -webkit-box-orient: vertical;  /* Old Safari versions */
    -moz-box-orient: vertical;     /* Old Firefox versions */
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-box-align: center;      /* Old Safari versions */
    -moz-box-align: center;         /* Old Firefox versions */
    -ms-flex-align: center;         /* IE 10 */
    -webkit-align-items: center;
    height: 100%;
}

.blog > div > h1 > span{
    color: #faaf3c;
}
  .levels{
    width: 15%;
    z-index: -1;
    position: absolute;
    left: -12%;
    top: 933px;
  }
  .ai_logo{
    width: 15%;
    z-index: -1;
    position: absolute;
    right: -10%;
    top: 500px;
  }
  .edu_icon{
    width: 13%;
    z-index: -1;
    position: absolute;
    right: -6%;
    bottom: -59px;
  }



.msg_container {
    text-align: center;
    position: relative;
}

.msg_container h1 {
    margin-bottom: 20px;
}
.blog-section {
    display: inline-block;
    width: 100%;
    margin: 20px;
    /* padding: 20px; */
    background-color: white;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    position: relative;
    /* overflow: hidden; */
}
.left-section{
    width: 25%;
    vertical-align: top;
}
.right-section{
    width: 65%;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    /* position: absolute; */
    top: 0;
}

.yellow-mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #FFA500;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
    z-index: 1;
}

.blog-section h1 {
    font-size: 24px;
    margin: 10px 0;
    color: #2e467a;
    text-align: left;
}

.blog-section p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    height: 204px;
    /* text-align: justify; */
    text-align-last: center;
    word-spacing: -1px;
}

.blog-section button {
    width: 100%;
    background-color: #6aaa8f;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 15px;
}

.blog-section button:hover {
    background-color: #45a049;
}


.blog-category {
    margin: 5px;
    width: 98%;
    height: 112px;
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    background-color: #4a4a4a;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-position: center;
    display: -webkit-box;          /* Old Safari versions */
    display: -moz-box;             /* Old Firefox versions */
    display: -ms-flexbox;          /* IE 10 */
    display: -webkit-flex;         /* Newer Safari versions */
    display: flex;  
    -webkit-box-pack: center;       /* Old Safari versions */
    -moz-box-pack: center;          /* Old Firefox versions */
    -ms-flex-pack: center;          /* IE 10 */
    -webkit-justify-content: center;
    justify-content: center;  
    -webkit-box-align: center;      /* Old Safari versions */
    -moz-box-align: center;         /* Old Firefox versions */
    -ms-flex-align: center;         /* IE 10 */
    -webkit-align-items: center;
    align-items: center;  
}

.top-blogs{
    margin-top: 10%;
    width: 100%;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 24px;
}


.top-blog-container{
    width: 100%;
    margin-bottom: 24px;
    display: -webkit-box;          /* Old Safari versions */
    display: -moz-box;             /* Old Firefox versions */
    display: -ms-flexbox;          /* IE 10 */
    display: -webkit-flex;         /* Newer Safari versions */
    display: flex;  
    -webkit-box-pack: center;       /* Old Safari versions */
    -moz-box-pack: center;          /* Old Firefox versions */
    -ms-flex-pack: center;          /* IE 10 */
    -webkit-justify-content: center;
    justify-content: center;   

}
.top-blog-number{
    font-size: 40px;
    color: #2e467a;
    font-weight: 800;
    margin-right: 15px;
}
.top-blog-content{
width: 92%;
}
.top-blog-content h2{
    text-align: left;
    color: #2e467a;
}

.top-blog-category{
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;      /* Old Safari versions */
    -moz-box-pack: justify;         /* Old Firefox versions */
    -ms-flex-pack: justify;         /* IE 10 */
    -webkit-justify-content: space-between;
    justify-content: space-between; /* Standard */
}

.insta-img{
    display: inline-block;
    width: 125px;
    height: 125px;
    margin: 2px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-position: center;
}

.latest-blog{
    text-align: left;
}
.blog_card {
    display: inline-block;
    /* width: 500px; */
    width: 47%;
    height: 530px;
    margin: 10px;
    background-color: #f8f9fa;
    border-radius: 50px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    position: relative;
    overflow: hidden;
}
.blog_card > img{
    border-radius: 50px;
    height: 350px;
    object-fit: cover;
}
.blog_content{
    padding: 30px;
}
.blog_content > h2{
    text-align: left;
    color: #2e467a;
    margin-bottom: 1rem;
}
.blog_content > p{
    font-size: 14px;
    color: #555;
    margin-bottom: 0px;
    text-align: justify;
    text-align-last:left;
    word-spacing: -1px;
    height: auto;
}









/* footer */
footer{
    height: 300px;
    background-color: #2e467a;
    display: flex;
    display: -webkit-box;          /* Old Safari versions */
    display: -moz-box;             /* Old Firefox versions */
    display: -ms-flexbox;          /* IE 10 */
    display: -webkit-flex;         /* Newer Safari versions */
    display: flex;                 /* Standard */
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;     /* Old Safari versions */
    -moz-box-pack: justify;        /* Old Firefox versions */
    -ms-flex-pack: distribute;     /* IE 10 */
    -webkit-justify-content: space-around;
    justify-content: space-around; /* Standard */
    justify-content: space-around;
    flex-direction: row;
    color: #fff;
    padding: 30px;
}
footer > div{
    width: 70%;
    margin: 0 auto;
    /* display: flex;
    justify-content: space-between;
    flex-direction: row; */
    display: -webkit-box;          /* Old Safari versions */
    display: -moz-box;             /* Old Firefox versions */
    display: -ms-flexbox;          /* IE 10 */
    display: -webkit-flex;         /* Newer Safari versions */
    display: flex;                 /* Standard */
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;           /* Standard */
    -webkit-box-pack: justify;     /* Old Safari versions */
    -moz-box-pack: justify;        /* Old Firefox versions */
    -ms-flex-pack: justify;        /* IE 10 */
    -webkit-justify-content: space-between;
    justify-content: space-between; /* Standard */
}
footer > div > div:first-child{
    width: 400px;
}
footer > div > div:last-child{
    width: 500px;
}
.footer_link > a{
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 10px 10px 10px 0px;
}
.footer_icons{
    width: 40px;
    background: white;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}
.footer_icons > i{
    color: #2e467a;
    font-size: 18px;
}
.copyright{
    display: flex;
    font-size: smaller;
    text-align: end;
}
@media screen and (max-width: 1440px){
    .blog-category{
        height: 80px;
    }
    .top-blog-content h2 {
        font-size: 18px;
    }
    .top-blog-category{
        font-size: 14px;
    }
    .insta-img{
        width: 85px;
        height: 85px;
    }
    .blog_card{
        width: 45%;
        height: 450px;
    }
    .blog_card > img{
        height: 280px;
    }
    .blog_content{
        padding: 18px 30px;
    }
    .blog_content > h2{
        font-size: 18px;
    }
    .blog_content > p{
        font-size: 12px;
    }
}

@media screen and (max-width: 1280px) {
    footer{
        height: auto;
    }
    nav ul li a {
        font-size: 11px;
        padding: 32px 13px;
    }
    .home_container > div:first-child{
        height: 100%;
        padding: 66px;
    }
    .home_container > div:first-child > p{
        margin-bottom: 0;
    }
    .home_container {
        /* background: white; */
        height: 85vh;
    }
    .vectorLogo{
        width: 100px;
        margin-bottom: 4rem;
    }
    .image_wrapper {
        height: 300px;
    }
    .levels{
        top: 933px;
      }
    .ai_logo{
        bottom: 400px;
      }
      .edu_icon{
        width: 13%;
        z-index: -1;
        position: absolute;
        right: -6%;
        bottom: -10px;
      }
    .brain_icon{
    top: -42px !important;
    }


   .blog-category{
    height: 65px;
    font-size: 22px;
    }
    .top-blog-content h2 {
        font-size: 15px;
    }
    .top-blog-category{
        font-size: 12px;
    }
    .insta-img{
        width: 65px;
        height: 65px;
    }
    .blog_card{
        width: 45%;
        height: 370px;
    }
    .blog_card > img{
        height: 200px;
    }
    .blog_content{
        padding: 10px 30px;
    }
    .blog_content > h2{
        font-size: 15px;
    }
    .blog_content > p{
        font-size: 12px;
    }
}

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

    nav ul {
        display: block;
        /* width: 100vw; */
        width: 100%;
    }
    label.logo{
        font-size: 30px;
        padding-left: 50px;
      }
      nav ul li a{
        font-size: 16px;
      }

      .checkbtn{
        display: block;
      }
      ul:not(.about_vector_sub_heading){
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #e2f1f8;
        /* background: #2c3e50; */
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
      }
      nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
      }
      nav ul li a{
        font-size: 20px;
      }
      a:hover,a.active{
        background: none;
        color: #2e467a;
        font-weight: bolder;
      }
      #check:checked ~ ul{
        left: 0;
      }
      .search_div{
        width: 100%;
        display: flex;
        padding: 22px 0 0 0;
      }
      .search_input {
        border: 1px solid #ccc;    
        background: white url("/images/search_icon.png") no-repeat 150px;
        background-size: 18px;
        margin: 0 auto;
        width: 185px;
      }


      .home_container{
        background: white;
        /* height: 85vh; */
    }
      .home_container > div:first-child{
        width: 100%;
        padding: 40px;
        /* text-align: center; */
      }
      .home_container > div:last-child{
        display: none;
      }

      .home_container > div:first-child > h1, .home_container > div:first-child > p{
        text-align: left;
      }
      .erth_div{
        /* float: right; */
      }
      .join_btn{
        color: black;
      }

      .remove_br{
        display: none;
      }

  .levels{
    width: 15%;
    z-index: -1;
    position: absolute;
    left: -12%;
    top: 533px;
  }
  .edu_icon {
    width: 10%;
    z-index: -1;
    position: absolute;
    right: -5%;
    bottom: -23px;
}

      .erth_div{
        bottom: -45px !important;
      }
      .brain_icon, .erth_icon{
        width: 100px !important;
      }
      .blog{
        height: 350px;
      }
      .h-blog {
        height: 580px;
    }
    .top-blogs{
        margin-top: 6%;
    }
    .top-blog-number{
        font-size: 32px;
    }
    .left-section, .right-section{
        width: 100%;
    }
    .blog-categories{
        text-align: left;
    }
    .blog-category{
        height: 65px;
        font-size: 22px;
        /* width: 30%; */
        width: 300px;
        display: inline-flex;
    }
    .top-blogs{
        width: 98%;
    }
    .top-blog-content h2 {
        font-size: 16px;
    }
    .top-blog-category{
        font-size: 14px;
    }
    .insta-container{
        text-align: left;
    }
    .insta-img{
        width: 205px;
        height: 205px;
    }
    .blog_card{
        width: 45%;
        height: 420px;
        border-radius: 30px;
    }
    .blog_card > img{
        height: 250px;
        border-radius: 30px;
    }
    .blog_content{
        padding: 10px 30px;
    }
    .blog_content > h2{
        font-size: 16px;
    }
    .blog_content > p{
        font-size: 14px;
    }





    footer, footer > div{
        /* flex-wrap: wrap; */
        -webkit-box-orient: vertical;  /* Old Safari versions */
        -moz-box-orient: vertical;     /* Old Firefox versions */
        -webkit-box-direction: normal;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;        /* Standard */
        height: -moz-fit-content;      /* Old Firefox versions */
        height: -webkit-fit-content;   /* Old Safari versions */
        height: 100%;           /* Standard */
    }
    footer > div > div:first-child {
        width: 100%;
        margin-bottom: 30px;
    }
    footer > div > div:last-child {
        width: 100%;
    }
    .footer_link{
        width: 50%;
    }
}

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


    .blog{
        height: 220px;
    }
    .blog-container h1{
        font-size: 24px;
        margin-bottom: 1rem !important;
    }
    .blog-container p{
        font-size: 10px;
    }
    .brain_icon{
        width: 60px !important;
        left: 40px !important;
        top: -26px !important;
    }
    .erth_div {
        bottom: -38px !important;
        right: 28px !important;
    }
    .erth_icon {
        padding: 10px;
        width: 70px !important;
    }
    .course_container_main{
        margin-top: 4rem;
    }
    .levels{
        width: 15%;
        z-index: -1;
        position: absolute;
        left: -12%;
        top: 533px;
      }
      .edu_icon {
        width: 10%;
        z-index: -1;
        position: absolute;
        right: -5%;
        bottom: -6px;
    }
    .h-blog {
        height: 400px;
    }     
    .blog-category {
        height: 55px;
        font-size: 20px;
        width: 45%;
    }
    .blog-section{
        margin: 5px;
    }
    .blog_card{
        width: 95%;
        height: 385px;
    }








    footer > div{
        width: 80%;
    }

    .slide-content{
        margin: 0 10px;
      }
      .swiper-navBtn{
        display: none !important;
      }

      .vector_container{
        flex-direction: column-reverse;
        padding: 10px;
        -webkit-box-orient: vertical;
    }
    .vector_container > div{
        width: auto;
        padding: 20px;

    }

    .vectors{
        /* top: 5vw !important;
        left: 2vw !important; */
        top: 25px !important;
        left: 2px !important;
    }
}

@media screen and (max-width: 480px) {
    .home_container{
        height: auto;
    }
    .home_container > div > h1{
        color: #2e467a;
        font-size: 32px;
    }
    .login_div{
        flex-direction: column;
        align-items: end;
    }
    .join_btn{
       margin-bottom: 5px;
      }
    .email_section{
        flex-direction: column;
    }
    .home_input{
        width: 100%;
        margin-bottom: 10px;
    }
    .submit_btn{
        width: 100px;
        z-index: 1000 !important;
    }
    .dark_blue{
        width: 63px;
        position: absolute;
        z-index: 0;
        top: 43px;
        left: 68px;
    }

      .levels{
        width: 15%;
        z-index: -1;
        position: absolute;
        left: -12%;
        top: 533px;
      }
      .ai_logo{
        top: 1900px;
      }


    .vectors{
        width: 280px;
    }
    .course_container_main{
        margin-top: 3rem;
    }
    .course_container_main > h1{
        margin-bottom: 1rem !important;
        margin-top: 4rem !important;
    }

    .blog{
        height: 160px;
    }
    .blog-container h1{
        font-size: 18px;
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .blog-container p{
        font-size: 9px;
    }
    .brain_icon{
        width: 50px !important;
        left: 40px !important;
        top: -26px !important;
    }
    .erth_div {
        bottom: -30px !important;
        right: 28px !important;
    }
    .erth_icon {
        padding: 10px;
        width: 56px !important;
    }

    .h-blog {
        height: 310px;
    }
    .insta-img {
        width: 152px;
        height: 152px;
    }




    
    footer > div{
        width: 90%;
    }
    .copyright{
        width: 100%;
        margin-top: 20px;
        justify-content: center;
        text-align: center;
    }
    .vectors {
        top: 6vw !important;
        left: 3vw !important;
    }

}

@media screen and (max-width: 380px){
    .sky_cirlce{
        width: 260px;
    }
    .vectors {
        top: 7vw !important;
        left: 5vw !important;
        width: 240px;
    }

    .blog-category {
        height: 40px;
        font-size: 16px;
    }
    .top-blogs {
        margin-top: 4%;
    }
    .insta-img {
        width: 100%;
    }
    .blog_card > img {
        border-radius: 20px;
    }
    .blog_content > h2 {
        margin-bottom: 0.5rem;
    }
    .blog_card {
        height: 434px;
    }
}