@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-740{
    height: 740px;
}
.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;
}
.edu_icon{
    position: absolute;
    width: 9%;
    bottom: -5%;
    left: 46%;
}






/* course */
.course_container_main{
    margin-top: 8rem;
}
.course{
    width: 90%;
    margin: 0 auto;
    background-color: #00b19a;
    padding: 20px;
    border-radius: 20px;
    position: relative;
}
.course > h1{
    color: #fff;
    margin-left: 56px;
}

.course_card{
    /* width: 350px; */
    /* width: 320px; */
    border-radius: 20px;
    border: 1px solid #fff;
    position: relative;
}
.course_card > img{
    border-top-left-radius: 20px; /* Curved bottom-left corner */
    border-top-right-radius: 20px; /* Curved top-right corner */

}
.absolute_hr{
    border: 5px solid;
    border-color: #f39c12;
    /* margin: 0 20px; */
    position: absolute;
    /* width: calc(350px - 45px); */
    width: -webkit-fill-available;
    top: 194px;
    margin: 0px 21px;
}
.course_card > h2{
    color: #fff;
}
.course_card > button{
    background-color: #f39c12; /* Green */
    border: none;
    color: white;
    padding: 7px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    transition-duration: 0.4s;
    border-radius: 10px;
}






.slide-container{
    /* max-width: 1200px; */
    width: 100%;
    padding: 40px 0;
    height: 430px;
  }
  .slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
    padding: 10px;
  }
  .card{
    border-radius: 25px;
    background-color: #FFF;
  }
  .image-content,
  .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
  }
  .swiper-navBtn{
    color: #fff !important;
    transition: color 0.3s ease;
  }
  .swiper-navBtn:hover{
    color: #fff;
  }
  .swiper-navBtn::before,
  .swiper-navBtn::after{
    font-size: 35px;
  }
  .swiper-button-next{
    right: 0;
  }
  .swiper-button-prev{
    left: 0;
  }
  .swiper-pagination-bullet{
    background-color: #fff !important;
    opacity: 1;
  }
  .swiper-pagination-bullet-active{
    background-color: #fff !important;
  }
  .ai_logo{
    top: -275px;
  }














/* blogs */
.blogs{
    width: 70%;
    margin: 0 auto;
}
.blogs > h1{
    color: #2e467a;
}
.blogs_container{
    margin: 0 auto;
    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;   
    -ms-flex-wrap: wrap;            /* IE 10 */
    -webkit-flex-wrap: wrap;        /* Newer Safari versions */
    flex-wrap: wrap;  
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.blogs_card {
    /* width: 412px; */
    width: 360px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* background-color: #fff; */
    /* border-radius: 8px; */
    overflow: hidden;
    /* text-align: center; */
    position: relative;
    margin: 0 30px 20px 0;
}

.image_wrapper {
    position: relative;
    width: 100%;
    height: 360px;
}

.blogs_image {
    width: 100%;
    height: 100%;
    display: block;
    border-bottom-left-radius: 50%; /* Curved bottom-left corner */
    border-top-right-radius: 50%; /* Curved top-right corner */
    object-fit: cover;
}

.blogs_badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #f39c12;
    color: white;
    padding: 10px 16px;
    border-radius: 50%;
    font-size: 12px;
    width: 120px;
    display: -webkit-box;
    -webkit-box-align: center; 
    -webkit-box-pack: center; 
    height: 120px;
    text-align: center;
    border: 6px solid white;
    display: flex;
    align-items: center;
}

.blogs_content {
    padding: 16px;
}

.blogs_button {
    /* display: inline-block;
    margin-top: 16px;
    padding: 10px 16px;
    background-color: #f39c12;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease; */

    background-color: #f39c12; /* Green */
    border: none;
    color: white;
    padding: 7px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    float: right;
    transition-duration: 0.4s;
    /* border: 1px solid #eb4ea2; */
    position: absolute;
    bottom: 0;
    right: 0;
}

.button:hover {
    background-color: #e67e22;
}




/* events */
.events{
    width: 70%;
    margin: 0 auto;
}
.events > h1{
    color: #2e467a;
}
.events_container{
    margin: 0 auto;
    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-content: space-between; */
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.event_card{
    width: 412px;
    /* height: 490px; */
    background-color: #f0f0f0;
    margin: 0 30px 10px 0;
    margin-bottom: 20px;
    position: relative;
}
.event_card > img{
    width: 412px;
    height: 270px;
    object-fit: cover;
}
.event_content{
    /* height: 150px; */
    padding: 30px;
}
.event_content > h2{
    color: #2e467a;
}
.event_card > button{
    background-color: #eb4ea2; /* Green */
    border: none;
    color: white;
    padding: 7px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    float: right;
    transition-duration: 0.4s;
    /* border: 1px solid #eb4ea2; */
    position: absolute;
    bottom: 0;
    right: 0;
}
.event_card > button:hover{
    cursor: pointer;
    background-color: #f0f0f0;
    color: #eb4ea2;
    border: 1px solid #eb4ea2;
}

/* 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: 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;
    }
    .ai_logo{
        top: -240px;
      }
    .blogs_card, .event_card{
        width: 300px;
        /* height: 440px; */
    }
    .event_card > img{
        width: 300px;
        height: 270px;
        object-fit: cover;
    }
    .course_card > h2{
        font-size: 16px;
    }
}

@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;
      }

      .edu_icon{
        width: 12vw !important;
        bottom: -3%;
    }
    .ai_logo{
        top: -190px;
      }




    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) {



    .brain_icon{
        width: 15vw !important;
        top: -4vw !important;
        left: -6vw !important;
    }
    .course_container_main{
        margin-top: 4rem;
    }
    .image_wrapper {
        height: auto;
    }

    .ai_logo{
        top: -130px;
      }
    .blogs, .events{
        width: 80%;
    }
    .blogs_card, .event_card{
        width: auto;
        height: auto;
        margin-right: 0;
    }
    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;

    }
    .edu_icon{
        width: 12vw !important;
        bottom: -1%;
    }
    .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;
    }
    .erth_icon{
        /* float: left; */
        width: 100px;
      }
      .ai_logo{
        top: -70px;
      }

      .sky_cirlce{
        width: 300px;
    }
    .vectors{
        width: 280px;
    }

    .brain_icon{
        width: 20vw !important;
        top: -4vw !important;
        left: -6vw !important;
    }
    .course_container_main{
        margin-top: 3rem;
    }
    .blogs, .events{
        width: 90%;
    }
    .event_card{
        width: auto;
        height: auto;
        margin-right: 0;
    }
    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){
    .edu_icon{
        width: 15vw !important;
        left: 43vw !important;
        bottom: -0.5%;
    }
    .sky_cirlce{
        width: 260px;
    }
    .vectors {
        top: 7vw !important;
        left: 5vw !important;
        width: 240px;
    }

}