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

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

/* Header start */

.header-top {
    /* padding: 0 30px; */
    display: flex;
    justify-content: space-between;
}

.top_leftbox {
    padding: 18px 0;
}

.main-navigation {
    text-align: right;
}

.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: #2e2278;
    text-decoration: none;
    font-family:'Metropolis-SemiBold';
    position: relative;
}

.main-navigation ul li:hover a,
.main-navigation ul li.active a {
    color: #2e2278;
    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: #ffed02;
}

.nav-triggerr {
    display: none;
}

.top_btn {
    padding: 8px 15px;
    background-color: #1b5b63;
    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: #2e2278;
    right: -16px;
    top: 8%;
}
.main-navigation li:last-child a::before {
    display: none;
}
/* Header 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;
}

/* Banner section ends */

/* <!------------------------Form section start--------------------------> */
.form{
    margin-top: 20px
}
.form-mainbox .form-heading {
    color: #000000;
    font-family: Metropolis-Medium;
    font-size: 30px;
    margin: 0 0 33px 0;
    text-align: center;
    font-weight: 900;
  }
  .form-mainbox {
    box-shadow: 20px 15px 86px rgb(226 171 60 / 21%);
    padding: 30px 30px 10px 30px;
   background-color: #FFF;
    border-radius: 41px;
    border: 2px solid #E1A835;
    /* margin: -160px 0 0px 0; */
  }
  
  .form-box {
    position: relative;
    margin: 0 0 30px 0;
  }
  .form-label {
    background-color: #fff;
    font-family: Metropolis-Medium;
    position: absolute;
    top: -12px;
    left: 20px;
    color: #707070;
    padding: 0 2px;
    font-size: 13px;
    margin: 0;
  }
  .form-box select, textarea{
    background-color: #fff;
    width: 100%;
    border: 1px solid #e4e4e4;
    line-height: normal;
    padding: 15px;
    border-radius: 5px;
    color: #707070;
    font-size: 12px;
    font-family: Metropolis-Medium;
  }
  .form-control {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 0.5px solid #e4e4e4;
    border-radius: 7px;
    height: 45px;
  }
  select.form-control {
    background: url("../images/dropdown.png") no-repeat 97% #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #707070;
  }
  .form-mainbox .btn_submit {
    background-color: #5c2d93;
    color: #FFF;
    border-radius: 25px;
    font-size: 16px;
    border: 1px solid;
    font-family: Metropolis-Medium;
    padding: 5px 30px;
    transition-duration: 0.3s;
    font-weight: 800;

  }
  .form-mainbox .btn_submit:hover {
    background-color: #FFF;
    color: #5c2d93;
    border: 1px solid #5c2d93;
  }
  input:-internal-autofill-selected {
    background-color: #FFFF;
  }
  .loader { 
    display: none; 
    border: 4px solid rgba(255, 255, 255, 0.3); 
    border-top: 4px solid #5c2d93; 
    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; 
  }  
  .g-recaptcha {
    transform:scale(0.77);
    transform-origin:0 0;
}
/*----------- Form section end ------------------*/

/*  Why DRIEMS section starts */
.section-4-counter {
    padding: 60px 0 0 0;
    background-attachment: fixed;
    text-align: center;
}
.features{
    display: inline-block;
    padding: 20px 40px;
    position: relative;
    background-color: #2e2278;
    border-radius: 10px 10px 10px 10px;
    width: 100%;
}
.features-sec{
    display: inline-block;
    padding: 20px 40px;
    position: relative;
    width: 100%;
}
.features h2 span{
    font-family: Metropolis-Bold;
    font-weight: 600;
    font-size: 69px;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}
 .features p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: Metropolis-SemiBold;
    font-size: 17px;
    color: #fff;
}
#counter-sec{
    margin-top: 30px;
}
#counter-sec .features-sec h2 span {
    font-family: Metropolis-Bold;
    font-weight: 600;
    font-size: 50px;
    text-align: center;
    color: #2e2278;
    margin-bottom: 0;
}
 .features-sec p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: Metropolis-SemiBold;
    font-size: 17px;
    color: #2e2278;
}
 span.plus::after {
    content: "+";
}

/* .why-box {
    background-color: #0300279E;
    padding: 10px 10px 10px 10px;
    border-radius: 8px 8px 8px 8px;
} */
.why-box .icon-img {
    fill: #2e2278;
    color: #2e2278;
    border-color: #2e2278;
    font-size: 50px;
}
.why-box .icon-box-title {
    margin-bottom: 0px;
    color: #2e2278;
    font-size: 18px;
    font-weight: 600;
}
.why-box .icon-box-description {
    color: #2e2278;
    font-family: Metropolis-Medium;
    font-size: 17px;
    font-weight: 400;
}
/*  Why DRIEMS 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: #2e2278;
    height: 90px;
    text-align: center;
    border-radius: 8px;
}
.programme_structure_box:hover {
    background: #fff;
    opacity: 1;
    border: 2px solid #e1a835;
}
.programme_structure_box:hover h4{
    color: #2e2278;
}
.programme_structure_box h4{
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 50px;
    color: #fff;
    margin: auto;
    width: 100%;
}
.programme_structure_section{
    margin: 40px 0;
}

/* Specialization section ends */

/* Placement section start */
.placement_section {
    background: url(../images/CAMPUS-PATH.webp) center / cover no-repeat;   
    background-blend-mode: darken;
    min-height: 600px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
.placement_section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #2E2278;
    opacity: 0.9;
    top: 0;
    left: 0;
    z-index: -1;
}
.dark-logo{
    width: 50%;
    margin-bottom: 30px;
}
.pl-box {
    background-color: #0300279E;
    padding: 10px 10px 10px 10px;
    border-radius: 8px 8px 8px 8px;
}
.icon-img {
    fill: #FFFFFF;
    color: #FFFFFF;
    border-color: #FFFFFF;
    font-size: 39px;
}
.icon-box-title {
    margin-bottom: 0px;
    color: #E0A836;
    font-size: 18px;
    font-weight: 600;
}
.icon-box-description {
    color: #FFFFFF;
    font-family: Metropolis-Medium;
    font-size: 14px;
    font-weight: 400;
}
/* Placement section ends */

/* Highlights section starts */
.hl-section {
    background: #efefef;
    padding: 40px 0 40px;
    text-align: center;
}
.hl-img{
    background-image: url(../images/hl-img.webp);
    background-position: -230px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}
.hl-text{
    color: #34349e;
}
.hl-text ul li{
    list-style-type: none;
    text-align: left;
    padding-bottom: 20px;
}
/* Highlights section ends */

/* About section start */
.about_section {
    padding: 80px 0 0 0;
}

.about_para p {
    margin-bottom: 30px;
    text-align: justify;
}   
/* About 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: #3f1869;
    /* 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  {
    width: 95px;
    color: #fff;
    /* 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: #e1a835;
    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: #3f1869; 
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    text-transform: 0.4s;
}
.ty_btn:hover {
    text-decoration: none;
    color: #3f1869;
    background: #fff;
    border: 1px solid #3f1869;
}
/*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;
    }
}

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

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

    .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_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: 70px;
    }
    .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;
    }
}

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

    .about_section {
        padding: 40px 0 0 0;
    }
    .header_img_right img {
        max-width: 72px;
    }
    .programme_structure_section {
        margin: 0px 0;
    }
    .pl-box {        
        margin: 0 20px 20px 20px;
        width: 92%;
    }
    .features, .features-sec {
        margin: 0 0 20px 10px;
    }
}

@media screen and (max-width: 380px) {
    .header_img img {
        max-width: 226px;
    }
    .top_leftbox {
        width: 75%;
    }
    .programme_structure_box {
        margin-bottom: 10px;
        height: 95px;
    }
  
}
/*--------- Media quiry ends ---------*/