* {
    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: #093C7D;
    text-align: center;
    line-height: normal;
    margin: 0 0 20px 0;
}

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

/* Header section start */

/* header::after {
    content: "";
    position: absolute;
    left: 0;
    top: -60px;
    background-image: url("../images/header_background.png");
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
} */

.header_first_logo {
    /* padding: 60px 0; */
    position: relative;
    z-index: 1;
}

.header_first_logo img {
    max-width: 600px;
}

.header_second_logo {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.header_second_logo img {
    max-width: 145px;
}


/* Header section ends */

/* Banner section start */

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

.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: #093C7D;
    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: 15px;
    margin-bottom: 5px;
}

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

.submit_btn {
    background-color: #FF8C28;
    margin: 8px auto;
    font-size: 22px;
    color: #FFF;
    padding: 6px 20px;
    border: 0;
    border-radius: 30px;
    outline: 0;
    line-height: normal;
    font-family: 'Metropolis-Bold';
}

.note {
    margin: 10px 0 0 0;
    color: #3C3C3C;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
}

.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: #FF8C28;
    font-family: "Metropolis-Bold";
}
.btn_submit:hover {
    text-decoration: none;
    color: #134091 !important;
    background: #fff !important;
    border: 2px solid #134091 !important;
}
.loader {
    display: none;
    border: 4px solid rgb(255 255 255 / 0.3);
    border-top: 4px solid #DBA040;
    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 */

/* Program section start */

.program_section {
    padding: 40px 0;
    background-color: #FF8C28;
}

.program_heading {
    font-family: 'Metropolis-ExtraBold';
    color: #ffffff;
    font-size: 30px;
    line-height: normal;
    margin: 0 0 10px 0;
    text-align: center;
}

.program_para {
    color: #ffffff;
}

.program_list ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: end;
}

.program_list ul li {
    list-style-type: none;
    padding: 0 10px;
    color: #ffffff;
    font-family: 'Metropolis-Bold';
    border-right: 2px solid #ffffff;
    line-height: normal;
    font-size: 18px;
    margin: 10px 0 0 0;
}

.program_subpara {
    font-family: 'Metropolis-Bold';
    line-height: normal;
    font-size: 18px;
    color: #ffffff;
}

.program_list ul li:last-child {
    padding: 0 0 0 10px;
    border: 0;
}

.program_listing {
    padding: 0 15px;
}

.border_both {
    border-right: 5px solid #ffffff;
    /* border-left: 5px solid #ffffff; */
    text-align: center;
    min-height: 150px;
}

/* .col-lg-4:nth-child(1) .program_listing {
    text-align: end;
} */

/* Program section start */


/* Specialization section starts */

.programme_structure_section .txt-heading h2 {
    text-align: center;
    font-family: Inter-SemiBold;
    font-size: 45px;
    color: #000;
}

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

.programme_structure_inner {
    margin: 0px 0 20px 0;
    display: flex;
    font-family: 'Metropolis-Medium';
    justify-content: center;
}
.programme_structure_box{
    padding: 15px 10px;
    background: #ff8c2829;
    /* max-height: 210px; */
    text-align: center;
    border-radius: 8px;
}
.programme_structure_box:hover {
    background: #093C7D;
    opacity: 1;
}
.programme_structure_box:hover h4{
    color: #fff;
}
.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: 40px 0;
}

/* Specialization section ends */

/* About section start */

.about_section {
    padding: 80px 0 0 0;
}

.about_para p {
    margin-bottom: 30px;
    text-align: justify;
}

/* About section ends */

/* Distinctive section start */

.distinctive_section {
    padding: 0px 0 0 0;
}

.custom_arrow_listing ul {
    list-style: none;
}

.custom_arrow_listing ul li {
    position: relative;
    padding: 0 0 0 30px;
    margin: 0 0 20px 0;
}

.custom_arrow_listing ul li::after {
    content: "";
    background-image: url("../images/blue-arrow.png");
    background-size: contain;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    position: absolute;
    top: 2px;
    left: 0;
}

.custom_arrow_listing ul li:nth-child(2)::after,
.custom_arrow_listing ul li:nth-child(4)::after,
.custom_arrow_listing ul li:nth-child(6)::after,
.custom_arrow_listing ul li:nth-child(8)::after {
    background-image: url("../images/orange-arrow.png");
}


.custom_tick_listing ul {
    list-style: none;
}

.custom_tick_listing ul li {
    position: relative;
    padding: 0 0 0 30px;
    margin: 0 0 20px 0;
}

.custom_tick_listing ul li::after {
    content: "";
    background-image: url("../images/tick.png");
    background-size: contain;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    position: absolute;
    top: 3px;
    left: 0;
}

.distinctive_mainbox {
    border-radius: 25px;
    border: 2px solid #093C7D;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
}

.distinctive_mainbox::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 88%;
    background-color: #707070;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.distinctive_listing {
    padding: 40px;
}

/* Distinctive section ends */

/* Placement section start */

.placement_section {
    margin: -220px 0 0 0;
}

.placement_heading {
    font-family: Metropolis-SemiBold;
    color: #ffffff;
    font-size: 40px;
    line-height: normal;
    text-align: center;
}

.placement_contentbox {
    padding: 30px 0;
    background-color: #5B5D60;
}

/* Placement section ends */

/* Recruiters Section start */

.rec_section {
    padding: 80px 0 0 0;
    background-color: #F5F5F5;
    border-bottom: 10px solid #FF8C28;
}

.rec_logo_listing {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0 0 10px 0;
}

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

.rec_logo_imgbox:hover {
    box-shadow: 0px 0px 10px #FF8C28;
    border-radius: 8px;
}

/* Recruiters Section ends */

/* footer section start */

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

.footer_heading {
    font-family: Metropolis-Bold;
    color: #ffffff;
    font-size: 40px;
    line-height: normal;
    margin-bottom: 20px;
}

.footer_heading span {
    font-family: Metropolis-Medium;
}

footer {
    background-color: #093C7D;
    padding: 40px 0 0 0;
    text-align: center;
}
hr {
    margin: 0;
    color: #fff;
}
.copyright {
    font-size: 10px;
    font-family: 'Metropolis-Medium';
    color: #fff;
    padding: 5px 0;
}
.copyright a img {
    width: 95px;
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
}

/* footer section ends */

/*---------- Media query start ---------*/
@media screen and (min-width:1401px) and (max-width:2000px) {
    .header {
        padding: 40px 0 10px 0;
    }
}
@media screen and (max-width: 1400px) {
    .banner_logo img {
        max-width: 230px;
    }

    .banner_headingbox {
        font-size: 45px;
    }

    .form_heading {
        font-size: 25px;
    }

    .form_subheading {
        font-size: 20px;
    }

    .submit_btn {
        margin: 5px auto;
    }

    .banner_leftbox {
        gap: 25px;
    }

    .header {
        padding: 40px 0 20px 0;
    }

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

    .form_heading_box {
        padding: 10px 20px;
    }

    .form {
        padding: 10px 20px;
    }
    .header {
        padding: 20px 0;
    }
}

@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 {
        padding: 20px 0;
    }
    .header_img img {
        max-width: 80%;
    }
    .header_img_right img {
        max-width: 123px;
    }
    .program_heading {
        font-size: 26px;
    }
}

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

    .rec_logo_listing {
        flex-wrap: wrap;
    }

    .rec_logo_imgbox {
        width: 20%;
    }

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

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

    .distinctive_listing {
        padding: 20px;
    }

    .custom_arrow_listing ul,
    .custom_tick_listing ul {
        padding: 0;
        margin: 0;
    }

    .custom_arrow_listing ul li,
    .custom_tick_listing ul li {
        font-size: 16px;
    }

    .custom_arrow_listing ul li:last-child {
        margin: 0;
    }

    .placement_section {
        margin: -150px 0 0 0;
    }

    .placement_contentbox {
        padding: 20px 0;
    }

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

@media screen and (max-width: 768px) {
    
    .banner_leftbox {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .banner_formbox {
        transform: unset;
        position: unset;
        background-color: #F5F5F5;
        padding: 30px 0;
    }

    .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;
    }
    
    .distinctive_mainbox::after {
        display: none;
    }

    .placement_section {
        margin: -110px 0 0 0;
    }

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

    .programme_structure_box {
        margin-bottom: 10px;
    }
    .programme_structure_box h4 {
        min-height: 30px;
    }
    .header_first_logo {
        padding: 0 0;
    }

    .header_first_logo img {
        max-width: 88%;
    }

    .header_second_logo img {
        max-width: 70px;
    }
}

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

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

    .col-lg-4:nth-child(1) .program_listing {
        text-align: center;
    }

    .program_list ul {
        justify-content: center;
    }

    .program_listing {
        text-align: center;
        padding: 20px 0;
    }

    .col-lg-4:nth-child(2) .program_listing {
        padding: 20px 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;
    }

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

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

    .placement_heading {
        font-size: 25px;
    }

    .placement_section {
        margin: -50px 0 0 0;
    }

    .about_section, .distinctive_section, .rec_section {
        padding: 40px 0 0 0;
    }
    .header_img_right img {
        max-width: 72px;
    }
    .programme_structure_section {
        margin: 0px 0;
    }
}

@media screen and (max-width: 380px) {
    .header_img img {
        max-width: 226px;
    }
}
/*--------- Media quiry ends ---------*/