* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Metropolis-Bold;
    src: url("../fonts/Metropolis-Bold.otf");
    font-display: swap;
}

@font-face {
    font-family: Metropolis-ExtraBold;
    src: url("../fonts/Metropolis-ExtraBold.otf");
    font-display: swap;
}

@font-face {
    font-family: Metropolis-Medium;
    src: url("../fonts/Metropolis-Medium.otf");
    font-display: swap;
}

@font-face {
    font-family: Metropolis-SemiBold;
    src: url("../fonts/Metropolis-SemiBold.otf");
    font-display: swap;
}

body {
    font-family: Metropolis-Medium;
    font-size: 18px;
    color: #4D4A4A;
}

.heading {
    font-family: Metropolis-Medium;
    font-size: 40px;
    color: #0198f1;
    text-align: center;
    line-height: normal;
    margin: 0 0 20px 0;
}

.heading span {
    color: #ce000c;
    font-family: Metropolis-ExtraBold;
}

/* Header start */
.header{
    background-color: #e5eaec;
}
.header-top {
    /* padding: 0 30px; */
    display: flex;
    justify-content: space-between;
}

/* .top_leftbox {
    padding: 18px 0 0 0;
   
} */

.logo {
    text-align: center;
    position: absolute;
    background: #e5eaec;
    padding: 10px 18px;
    z-index: 99;
    border-radius: 50%;
    margin-top: -27px;
}
.logo img {
    display: inline-block;
    max-width: 90px;
}

.main-navigation {
    text-align: right;
}
.main-navigation ul{
    margin-bottom: 0 ;
}
.main-navigation ul li {
    display: inline-block;
    color: #000;
    padding: 10px 11px;
    border-radius: 0 0 12px 12px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.main-navigation ul li a {
    font-size: 16px;
    line-height: 16px;
    color: #ce000c;
    text-decoration: none;
    font-family:'Metropolis-SemiBold';
    position: relative;
}

.main-navigation ul li:hover a,
.main-navigation ul li.active a {
    color: #ce000c;
    font-family: 'Metropolis-SemiBold';
}

.main-navigation ul li:hover a::after,
.main-navigation ul li.active a::after {
    content: "";
    height: 2px;
    width: 70%;
    position: absolute;
    bottom: -5px;
    left: 0;
    margin: 0 auto;
    background-color: #0198f1;
}

.nav-triggerr {
    display: none;
}

.top_btn {
    padding: 8px 15px;
    background-color: #0198f1;
    border-radius: 90px;
    float: right;
    transition-duration: 0.3s;
    position: relative;
    bottom: 0;
    margin: 20px 20px 0px 0px;
}

.top_btn:hover {
    background-color: #0A1622;
}

.main {
    margin-top: 36px;
}

.registration-btn{
    display: none;
    }

.registration-btn a{
    display:none;
}
.main-navigation li a::before {
    content: "";
    position: absolute;
    width: 1.2px;
    height: 18px;
    background-color: #0198f1;
    right: -16px;
    top: 8%;
}
.main-navigation li:last-child a::before {
    display: none;
}
/* Header ends */

/* Banner section Starts */
.banner_section{
    position: relative;
    z-index: 0;
}
.banner_headingbox {
    font-family: Metropolis-ExtraBold;
    font-size: 50px;
    line-height: normal;
    color: #ffffff;
}

.banner_leftbox {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    height: 100%;
}

.banner_mainbox {
    position: relative;
    z-index: -1;
}

.banner_formbox {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

/* form start */
.form_mainbox {
    background-color: #FFF;
    border-radius: 15px;
    margin: 0 0 0 auto;
}

.form_heading_box {
    background-color: #0198f1;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.form_subheading {
    color: #ffffff;
    font-family: Metropolis-Bold;
    font-size: 25px;
    line-height: normal;
}

.form_heading {
    font-family: 'Metropolis-ExtraBold';
    color: #ffffff;
    font-size: 30px;
    line-height: normal;
    margin: 0 0 5px 0;
}

.form {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.form-control{
    width: 100%;
    padding: 8px;
    border: 0;
    outline: 0;
    font-size: 13px;
    margin-bottom:10px;
    border: 0.1px solid;
    color: #a8a8a8;
}

select.form-control{
    background-color: #FFF;
    background: url("../images/dropdown.png") 97% no-repeat #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #a8a8a8;
    cursor: pointer;
    border: 0.1px solid;
}

.btn_submit {
    padding: 9px 25px;
    color: #fff !important;
    font-weight: 500;
    border: 2px solid #fff;
    border-radius: 25px;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    background-color: #ce000c;
    font-family: "Metropolis-Bold";
}
.btn_submit:hover {
    text-decoration: none;
    color: #ce000c !important;
    background: #fff !important;
    border: 2px solid #ce000c !important;
}
.loader {
    display: none;
    border: 4px solid rgb(255 255 255 / 0.3);
    border-top: 4px solid #ce000c;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loading {
    background-color: #ccc;
    pointer-events: none;
}
/* form ends */
/* Banner Section Ends */

/* Middle section starts */
#middle-sec{
    position: absolute;
    z-index: 1;
}
.middle-sec-inner {
    background: #271706;
    /* padding: 30px; */
    margin-top: -65px;
    border-radius: 15px;
}
.mid-logo img{
    max-width: 65%;
    padding-top: 20px;
}
/* Middle section ends */

/* Overview section ends */
.overview p{
    margin: 145px 0 50px 0;
    align-items: center;
    text-align: justify;
}
/* Overview section ends */

/* About section start */
#about-us h4 {
    font-size: 16px;
    line-height: 25px;
    color: #898989;
    font-weight: 400;
    font-family: 'METROPOLIS-BOLD';
}
#about-us h3 {
    font-size: 42px;
    color: #2c2c2c;
    font-weight: 900;
    font-family: 'Metropolis-SemiBold';
}
#about-us p {
    font-size: 18px;
    line-height: 27px;
    color: #666c6e;
    font-weight: 400;
    font-family: 'Metropolis-Medium';
}
/* About section ends */

/* Specialization section starts */
.programme_structure_section .txt-heading h2 {
    text-align: center;
    font-family: Metropolis-SemiBold;
    font-size: 45px;
    color: #000;
}

.programme_structure_section .section-heading{
    font-family: Metropolis-ExtraBold;
    color: #2e2278;
    font-size: 30px;
}

.programme_structure_inner {
    margin: 0px 0 20px 0;
    display: flex;
    font-family: 'Metropolis-Medium';
    justify-content: center;
}
.programme_structure_box{
    padding: 10px 10px;
    background: #0198f196;
    min-height: 75px;
    text-align: center;
    border-radius: 8px;
}
.programme_structure_box:hover {
    background: #fff;
    opacity: 1;
    border: 2px solid #ce000c;
}
.programme_structure_box:hover h4{
    color: #000;
}
.programme_structure_box h4{
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 50px;
    color: #000;
    margin: auto;
    width: 100%;
}
.programme_structure_section{
    margin: 0 0 40px 0;
}
/* Specialization section ends */

/* Achievements section starts */
#how-it-work {
    padding: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
#how-it-work:before {
    content: '';
    background: #2a2419;
    opacity: 0.9;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/* #how-it-work .how-it-work-content {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}
#how-it-work .box {
    background: #ffbd0a;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    max-width: 100px;
    height: 100px;
    margin: 0 auto;
} */
/* #how-it-work .how-it-work-content p.count {
    font-size: 35px;
    line-height: 29px;
    color: #ffffff;
    font-weight: 900;
    font-family: "Roboto";
    padding-top: 35px;
    letter-spacing: 0px;
}
#how-it-work .percent {
    color: #fff;
    position: absolute;
    margin: 0 22px;
    top: 34%;
    font-size: 16px;
}
#how-it-work .how-it-work-content h5 {
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Metropolis-Bold';
    padding-top: 15px;
    text-align: center;
} */

#counter .features h2 span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 45px;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}
.counters span.plus::after {
    content: "+";
}
.counter-Txt p {
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Metropolis-Bold';
    padding-top: 15px;
    text-align: center;
}
.features{
    background: #ffbd0a;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    max-width: 150px;
    height: 150px;
    margin: 0 auto;
    padding-top: 50px;
}
.features .pluspercent{
    color: #fff;
    position: absolute;
    top: 51%;
    left: 18%;
    font-size: 30px;
}
.features .pluspercent1{
    color: #fff;
    position: absolute;
    top: 51%;
    left: 41%;
    font-size: 30px;
}
.features .pluspercent2{
    color: #fff;
    position: absolute;
    top: 51%;
    left: 62%;
    font-size: 30px;
}
.features .pluspercent3{
    color: #fff;
    position: absolute;
    top: 51%;
    left: 84%;
    font-size: 30px;
}
/* Achievements section ends */

/* Placement section start */
#featured{
    padding: 60px 0 80px 0;
}
#featured .featured_head p {
    font-size: 18px;
    line-height: 23px;
    color: #3e4050;
    font-weight: 400;
    font-family: 'Metropolis-Medium';
    text-align: center;
    padding: 26px 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Placement section ends */

/* footer section start */

.footer_btn img {
    max-width: 220px;
    margin: 0 0 20px 0;
}

footer {
    background-color: #0198f16b;
    /* padding: 40px 0 0 0; */
    text-align: center;
}
hr {
    margin: 0;
    color: #fff;
}
.copyright {
    font-size: 10px;
    font-family: 'Metropolis-Medium';
    color: #000;
    padding: 5px 0;
}
.copyright a  {
    width: 95px;
    color: #000;
    /* padding: 5px 20px; */
    border-radius: 20px;
}
/* footer section ends */

/* Top button start*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    z-index: 99;
    border: none;
    outline: 0;
    background-color: #0198f1;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    border-radius: 40px;
    font-size: 22px;
    opacity: 0.5;
    height: 40px;
    width: 40px;
}
#myBtn:hover {
    opacity: 1;
}
/* Top button ends*/

/*thankyou page start*/
        
.thankyoutext {
    text-align: center;
    padding: 50px;
}

.thankyou_button {
    text-align: center;
}

.thankyou_banner_section {
    padding: 150px 0 120px 0;
}
.ty_btn {
    font-family: 'Metropolis-SemiBold';
    background: #ce000c; 
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    text-transform: 0.4s;
}
.ty_btn:hover {
    text-decoration: none;
    color: #ce000c;
    background: #fff;
    border: 1px solid #ce000c;
}
/*thankyou page end*/

/*privacy policy page starts*/
.pp_banner_section{
    margin: 30px 0;
}
.pptext{
    text-align: justify ;
    font-size: 15px;
}
/*privacy policy page end*/

/*---------- Media query start ---------*/
@media screen and (min-width:1401px) and (max-width:2000px) {
    
}
@media screen and (max-width: 1400px) {   

    .banner_headingbox {
        font-size: 45px;
    }

    .form_heading {
        font-size: 25px;
    }

    .form_subheading {
        font-size: 20px;
    }

    .submit_btn {
        margin: 5px auto;
    }

    .banner_leftbox {
        gap: 25px;
    }

    .rec_logo_imgbox img {
        max-width: 140px;
    }

    .form_heading_box {
        padding: 10px 20px;
    }

    .form {
        padding: 10px 20px 25px 20px;
    }
}

@media screen and (max-width: 1200px) {
    .rec_logo_imgbox img {
        max-width: 110px;
    }

    .form_heading_box {
        padding: 10px 20px;
    }

    .form_heading {
        font-size: 18px;
    }
    
    .form_subheading {
        font-size: 16px;
    }

    .banner_logo img {
        max-width: 180px;
    }

    .banner_headingbox {
        font-size: 35px;
    }

    .form {
        padding: 10px 10px;
    }

    .from-control {
        padding: 6px;
        font-size: 18px;
    }

    .header_img img {
        max-width: 80%;
    }
    .header_img_right img {
        max-width: 123px;
    }
    .program_heading {
        font-size: 26px;
    }
    .g-recaptcha {
        transform:scale(0.67);
        transform-origin:0 0;
    }
    .programme_structure_box h4 {
        font-size: 12px;
    }
}
@media screen and (max-width: 1024px) {
    .mid-logo img {
        max-width: 65%;
        padding-top: 80px;
    }
    .features .pluspercent {
        left: 17%;
    }
    .features .pluspercent2 {
        left: 63%;
    }
    .features .pluspercent3 {
        left: 86%;
    }
}
@media screen and (max-width: 992px) {
    .top_leftbox {
        width: 90%;
        padding: 10px 0;
    }
    .nav-trigger {
        display: block;
        right: 20px;
        cursor: pointer;
        height: 22px;
        width: 28px;
        padding: 0;
        opacity: 1;
        position: absolute;
        top: 28px;
        -webkit-transition: all .2s ease-in 0s;
        transition: all .2s ease-in 0s;
        z-index: 999;
    }
    .nav-trigger .bars {
        background-color: #5c2d93;
        height: 4px;
        margin-bottom: 5px;
        width: 100%;
        -webkit-transition: all .2s ease-in 0s;
        transition: all .2s ease-in 0s;
    }
    .nav-trigger .bars:last-child {
        margin-bottom: 0;
    }
    .main-menu--open .bars:first-child {
        -webkit-transform: translateY(8px) rotate(136deg);
        transform: translateY(8px) rotate(136deg);
    }
    .main-menu--open .bars:nth-child(2) {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    .main-menu--open .bars:last-child {
        -webkit-transform: translateY(-10px) rotate(-136deg);
        transform: translateY(-10px) rotate(-136deg);
    }
    .main-menu--open .nav-trigger .bars {
        background-color: #FFF;
    }
    .main-navigation ul {
        width: 90%;
        max-width: 380px;
        margin: 60px auto 30px;
        text-align: left;
        display: block;
    }
    .main-navigation ul li {
        display: block;
        border-radius: 0;
        border-bottom: solid 1px #fff;
    }
    .main-menu--open .main-navigation {
        opacity: 1;
        pointer-events: auto;
    }
    .main-navigation ul li a {
        color: #FFF;
    }
    .main-navigation ul li:hover a {
        color: #FFF;
    }
    .main-navigation {
        background-color: #707070e3;
        height: 100%;
        left: 0;
        top: 0;
        overflow-y: auto;
        padding: 0;
        position: fixed;
        width: 100%;
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: opacity .2s ease 0s;
        transition: opacity .2s ease 0s;
        border-top: 1px solid #fff;
    }
    .main-navigation li a::before {
        display: none;
    }
    .from-control {
        padding: 5px;
        font-size: 16px;
    }

    .form_heading_box {
        padding: 10px 10px;
    }

    .submit_btn {
        font-size: 16px;
        padding: 6px 20px;
    }

    .banner_imgbox img {
        min-height: 400px;
    }

    .program_listing {
        padding: 0 0;
    }

    .program_heading {
        font-size: 20px;
    }

    .program_para {
        font-size: 14px;
    }

    .program_list ul li {
        font-size: 16px;
    }

    .heading,
    .placement_heading,
    .footer_heading {
        font-size: 35px;
    }

    .footer_btn img {
        max-width: 180px;
    }

    .about_para p {
        font-size: 16px;
    }
    .program_subpara {
        font-size: 16px;
    }
    .header_img img {
        max-width: 80%;
    }
    .header_img_right img {
        max-width: 123px;
    }
    .border_both {
        min-height: 70px;
    }
    .features .pluspercent {
        color: #fff;
        position: absolute;
        top: 22%;
        left: 52%;
        font-size: 30px;
    }
    .features .pluspercent1 {
        color: #fff;
        position: absolute;
        top: 41%;
        left: 53%;
        font-size: 30px;
    }
    .features .pluspercent2 {
        color: #fff;
        position: absolute;
        top: 59%;
        left: 52%;
        font-size: 30px;
    }
    .features .pluspercent3 {
        color: #fff;
        position: absolute;
        top: 78%;
        left: 52%;
        font-size: 30px;
    }
    .header {
        height: 100px !important;
    }
    .logo {
        text-align: left;
        position: unset;
        background: #e5eaec;
        padding: 10px 18px;
        border-radius: 50%;
        margin-top: -19px;
    }
    #middle-sec {
        position: unset;
    }
    .mid-logo img {
        max-width: 45%;
        padding-top: 0px !important;
    }
    .middle-sec-inner {
        margin-top: 0 !important;
    }
    .mid-logo{
        margin: 20px 0 0 0;
    }
    .overview p {
        margin: 45px 0 0px 0;
    }
}

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

    .banner_imgbox img {
        min-height: unset;
    }

    .banner_headingbox {
        font-size: 35px;
        color: #000000;
    }

    .banner_logo img {
        max-width: 150px;
    }

    .form_mainbox {
        margin: 30px 0 0 auto;
    }

    .form_heading_box {
        padding: 20px 10px;
    }

    .form {
        padding: 10px 20px;
    }

    .from-control {
        padding: 10px;
        font-size: 18px;
    }

    .submit_btn {
        font-size: 18px;
        padding: 8px 20px;
    }

    .program_heading {
        font-size: 14px;
    }

    .program_para,
    .program_subpara,
    .program_list ul li {
        font-size: 13px;
    }

    .border_both {
        border-right: 2px solid #ffffff;
        /* border-left: 2px solid #ffffff; */
        text-align: center;
    }
    .border_both {
        min-height: 58px;
    }
    .col-lg-4:nth-child(2) .program_listing {
        padding: 0 5px;
    }
    
    .rec_logo_imgbox img {
        max-width: 110px;
    }
    .header_img_right img {
        max-width: 102px;
    }
    .programme_structure_box {
        margin-bottom: 10px;
        height: 60px;
    }
    .programme_structure_box h4 {
        min-height: 30px;
    }
    .features h2 span {
        font-size: 55px;
    }
    #counter-sec .features-sec h2 span {
        font-family: Metropolis-Bold;
        font-weight: 600;
        font-size: 45px;
    }
    .partner-img{
        margin-top: 20px;
    }
    .banner_formbox {
        transform: unset;
        position: unset;
        background-color: #F5F5F5;
        padding: 30px 0;
    }
    
}

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

    .banner_leftbox {
        gap: 10px;
        justify-content: center;
        text-align: center;
    }

    .banner_headingbox {
        font-size: 23px;
    }

    .banner_logo img {
        max-width: 130px;
    }

    .header_img img {
        max-width: 290px;
    }

    .rec_logo_imgbox img {
        max-width: 160px;
    }

    .rec_logo_imgbox {
        width: 48%;
    }

    .form_mainbox {
        margin: 20px 0 0 0;
    }

    .border_both {
        border-right: 0;
        border-left: 0;
        /* border-top: 1px solid #ffffff; */
        border-bottom: 1px solid #ffffff;
    }
    .program_section {
        padding: 10px 0;
    }
    .program_heading {
        font-size: 18px;
    }

    .heading, .footer_heading {
        font-size: 30px;
    }

    .placement_heading {
        font-size: 25px;
    }

    .about_section {
        padding: 40px 0 0 0;
    }
    .header_img_right img {
        max-width: 72px;
    }
    .programme_structure_section {
        margin: 0px 0;
    }
    .features, .features-sec {
        margin: 0 auto 20px auto;
    }
    .features .pluspercent {
        top: 24%;
        left: 53%;
        font-size: 35px;
    }
    .features .pluspercent1 {
        top: 41%;
        left: 56%;
        font-size: 35px;
    }
    .features .pluspercent2 {
        top: 59%;
        left: 54%;
        font-size: 35px;
    }
    .features .pluspercent3{
        top: 77%;
        left: 54%;
        font-size: 35px;
    }
    .owl-nav {
        position: relative;
    }
    .owl-prev span, .owl-next span{
        font-size: 30px;
    }
    button.owl-prev {
        position: absolute;
        left: 70px;
        top: 75%;
    }
    button.owl-next {
        position: absolute;
        right: 70px;
        top: 75%;
    }
}

@media screen and (max-width: 380px) {
    .header_img img {
        max-width: 226px;
    }
    .top_leftbox {
        width: 75%;
    }
    .programme_structure_box {
        margin-bottom: 10px;
        height: 85px;
    }
    .features .pluspercent {
        top: 25%;
        left: 54%;
    }
    .features .pluspercent1 {
        top: 42%;
        left: 58%;
    }
    .features .pluspercent3 {
        top: 76%;
    }
}
/*--------- Media quiry ends ---------*/