@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;
}
.mt-4{
    margin-top: 4rem;
}
.mt-5{
    margin-top: 5rem;
}
.mt-8{
    margin-top: 8rem;
}
.p-2{
    padding: 10px;
}
.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%;
}
.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;
}
.object-top{
    object-position: top;
}
















/* 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: #fff;
    padding-bottom: 30px;
}




.programs_container {
    text-align: center;
}

.programs_container h1 {
    margin-bottom: 20px;
}
.programs {
    display: inline-block;
    vertical-align:middle;
    width: 500px;
    margin: 32px;
    /* padding: 20px; */
    background-color: white;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    /* position: relative; */
    /* overflow: hidden; */
    text-align: left;
}

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

.image-container img {
    /* width: 100%; */
    width: 90%;
    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;
}

.programs h2 {
    font-size: 32px;
    margin: 10px 0;
    color: #2e467a;
}

.programs p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.programs button {
    /* width: 100%; */
    background-color: #2e467a;
    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;
}

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

.programs > .course_points{
    display: inline-block;
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    margin-bottom: 4px;
}
.course_points_blue{
    background-color: #29b0d0;
    width: 350px;
}
.course_points_green{
    background-color: #00b099;
    width: 500px;
}
.course_points_yellow{
    background-color: #ffaf38;
    width: 500px;
    font-size: 16px !important;
}
.course_points_pink{
    background-color: #eb4ea2;
    width: 320px;
    font-size: 16px !important;
}













/* 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;
}
.vision_container{
    width: 90%;
    /* margin: 0 auto; */
    margin: 80px auto 0 auto;
    background-color: #e2f1f8;
    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;
    letter-spacing: 2px;

}
.vision_container > div{
    padding: 40px;
    margin-bottom: 0%;
}

.vision_container > div > h1, .video_container > div > h1{
    text-align: center;
    color: #2e467a;
}

.vision_heading{
    color: #2e467a;
    width: fit-content;
}



.text-left{
    text-align: left;
}


/* 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;
    }

    .programs{
        width: 400px;
        margin: 8px;
    }
    .programs h2{
        font-size: 24px;
    }
    .programs p{
        font-size: 16px;
    }

    .course_points_blue, .course_points_pink{
        width: 320px;
    }
    .course_points_green, .course_points_yellow{
        width: 400px;
    }

}

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

      .vision_container > div {
        width: auto;
        padding: 0px;
        margin-bottom: 0%;
    }

    .programs{
        width: 320px;
        margin: 8px;
    }
    .programs h2{
        font-size: 24px;
    }
    .programs p{
        font-size: 14px;
    }

    .course_points_blue, .course_points_pink{
        width: 260px;
    }
    .course_points_green, .course_points_yellow{
        width: 320px;
        font-size: 12px !important;
    }






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



    .vision_container > .relative{
        display: none;

    }

    .vision_heading{
        font-size: 14px;
    }
    .programs{
        width: 270px;
        margin: 8px;
    }
    .programs h2{
        font-size: 24px;
    }
    .programs p{
        font-size: 12px;
    }

    .course_points_blue, .course_points_pink{
        width: 220px;
        font-size: 11px !important;
    }
    .course_points_green, .course_points_yellow{
        width: 270px;
        font-size: 11px !important;
    }


    

    footer > div{
        width: 80%;
    }

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

      .vision_container{
        flex-direction: column-reverse;
        padding: 10px;
        -webkit-box-orient: vertical;
    }
    .vision_container > div{
        width: auto;
        padding: 20px;
        margin-bottom: 0%;

    }
    .contact_content_container {
        width: 100%;
    }

}

@media screen and (max-width: 575px) {
    .programs_container > .programs > .image-container{
        display: none;
    }
}

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



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

    .vision_container > div{
        font-size: 12px;
    }

    .p_vector{
        font-size: 10px;
        letter-spacing: 1px;
    }

}

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