@font-face {
    font-family: Inter-Regular;
    src: url(../css/font/Inter-Regular.otf);
}
@font-face {
    font-family: Inter-SemiBold;
    src: url(../css/font/Inter-SemiBold.otf);
}
@font-face {
    font-family: Inter-Bold;
    src: url(../css/font/Inter-Bold.otf);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    width: 100%;
    font-family: Inter-Regular;
    font-size: 16px;
}
.logo {
    float: left;
    max-width: 300px;
    height: auto;
    margin: 40px 0 0 0;
    width: 8%;
    position: absolute;
}
.menu_mainbox {
    float: right;
    width: auto;
    position: relative;
    z-index: 50;
}
.menu_box {
    float: right;
    width: auto;
    margin: 20px 0 0 0;
}
.menu_box ul {
    float: left;
    width: auto;
    padding: 0;
    margin: 0;
}
.menu_box li {
    float: left;
    width: auto;
    list-style-type: none;
    position: relative;
}
.menu_box li a {
    float: left;
    width: auto;
    font-size: 15px;
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
    padding: 7px 16px;
    line-height: normal;
    position: relative;
    font-family: "Inter-Regular";
    border-radius: 20px;
}
.menu_box li a:hover {
    background-color: #3b61ad;
    color: #fff;
}
.menu_box li .select {
    background-color: #f9c929;
    color: #000;
}
.toggle_menu {
    display: none;
}
.toggle_menu_close {
    display: none;
}
header {
    background-color: #fff;
    position: relative;
    z-index: 50;
    text-transform: capitalize;
}
.menu_box li a::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 18px;
    background-color: #707070;
    right: 0;
    top: 18%;
}
.menu_box li:last-child a::after {
    display: none;
}
.menu_box .contact a {
    background-color: #e25626;
    color: #fff !important;
    border-radius: 15px;
    padding: 5px 15px;
}

/* banner section starts */
.banner_section {
    position: relative;
    margin: 0 0 0 0;
}
.content_form_box {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-heading {
    margin: 0 0 0 0;
    font-family: "Inter-SemiBold";
    text-align: center;
    font-size: 22px;
    background: #ee2d5f;
    color: #fff;
    padding: 15px 0 15px 0;
    border-radius: 8px 8px 0 0;
    line-height: 26px;
}
.banner-form {
    max-width: 325px;
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 28px #0000001a;
    border-radius:8px;
    z-index: 1;
}
.banner-form form {
    z-index: 2;
    position: relative;
    padding: 10px 20px 10px 20px;
}
.banner-form h3 {
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin: 15px 0;
}
.banner-form lable,
.tab-content h5,
.tab-content h6,
a.submit_btn {
    color: #fff;
}
textarea.form-control {
    resize: none;
}
.banner-form select.form-control {
    background: url(../images/dropdown.png) 97% no-repeat #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #000000ab;
    cursor: pointer;
    font-family: "Inter-Regular";
}
.form-control::placeholder {
    color: #000000ab;
    opacity: 1; 
    font-family: "Inter-Regular";
}
.form-control:-ms-input-placeholder {
    color: #ced4da;
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: #000;
    opacity: 1;
}
.form-control:focus {
    border-color: #7cc470;
    box-shadow: 0 0 0 0.25rem #eb904863;
}
.banner-form-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 20px;
}
.banner-form .form-control {
    font-size: 11px;
    line-height: 18px;
    border-radius: 0;
    height: auto;
    min-height: auto;
    padding: 8px;
    max-height: 60px;
    margin: 0 0 10px 0;
    color: #000;
    font-family: "Inter-Regular";
    border: 0;
    border-bottom: 1px solid #ccc;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.mobile_view {
    display: none;
}
.btn-wrap p {
    font-size: 9px;
    color: #3c3c3c;
    font-family: Inter-Regular;
    padding-top: 5px;
}
.btn_submit {
    padding: 9px 25px;
    color: #fff !important;
    font-weight: 500;
    border: 2px solid;
    border-radius: 25px;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    background-color: #7cc470;
    font-family: "Inter-SemiBold";
}
.btn_submit:hover {
    text-decoration: none;
    color: #7cc470 !important;
    background: #fff !important;
    border: 1px solid #7cc470 !important;
}
select {
    color: #9e9e9e;
}
option:not(:first-of-type) {
    color: #000;
}
.loader {
    display: none;
    border: 4px solid rgb(255 255 255 / 0.3);
    border-top: 4px solid #7cc470;
    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;
}
.banner-desk {
    display: block;
    max-height: 547px;
    width: 100%;
    background-size: cover;
    background: #629dd2;
}
.banner-mob {
    display: none;
}
/* banner section ends */

/* univ-highlights section starts */
.univ-hl{
    background-color: hsl(208deg 48.39% 93.92%);
    padding: 50px 0;
}
.univ-hl .txt-heading h2 {
    text-align: center;
    font-family: Inter-SemiBold;
    font-size: 45px;
    color: #000;
}
.logosection {
    margin: 20px 0 0 0 !important;
    padding: 10px 10px;
    /* box-shadow: rgb(0 0 0 / 0.24) 0 3px 8px; */
    text-align: left;
}
.logoinnersection {
    align-content: center;
    box-shadow: rgb(0 0 0 / 0.24) 0 3px 8px;
    margin: 0 10px;
    font-family: "Inter-Bold";
    padding: 20px 20px;
    width: 30%;
    background: #fff;
    border-radius: 8px;
}
.logoinnersection span{
    font-family: "Inter-Regular";
}

/* univ-highlights section ends */

/* Programmes Offered 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: Inter-SemiBold;
    color: #093b6c;
    font-size: 30px;
}

.programme_structure_inner {
    margin: 0px 0 20px 0;
    display: flex;
    font-family: 'Inter-Regular';
    justify-content: center;
}
.programme_structure_box{
    padding: 15px 10px;
    background: #e8f0f7;
    /* max-height: 210px; */
    text-align: center;
    border-radius: 8px;
}
.programme_structure_box:hover {
    background: #093b6c;
    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%;
}
.partners-box {
    padding: 75px 20px;
    background: #629dd2;
    color: #fff;
    height: auto;
    border: 1px solid #093b6c;
    border-bottom: 5px solid #093b6c;
    font-size: 28px;
    line-height: 28px;
}
.programme_structure_section{
    margin: 40px 0;
}

/* Programmes Offered section ends */

/* Our recruiters section starts */

.recruiters_section h2 {
    text-align: center;
    font-family: Inter-SemiBold;
    font-size: 45px;
    color: #000;
}
.recruiters_logobox {
    margin: 0 0 25px 0;
    overflow: hidden;
    transition-duration: 0.5s;
    background-color: #fff;
}
.recruiters_logobox img {
    transform: scale(0.9);
    transition-duration: 0.5s;
}
.recr-text p {
    font-size: 22px;
    font-family: Inter-Regular;
    color: #4d4c4c;
    line-height: 36px;
    text-align: left;
}
.recr-text p span {
    font-size: 35px;
    font-family: Inter-Regular;
    color: #f17422;
}
/* Our recruiters section ends */

.adm-open_section {
    text-align: center;
    width: 100%;
    background-color: #e8f0f7;
}
.adm-open_section .txt-heading h2 {
    color: #000;
    padding: 25px 0;
    position: relative;
    z-index: 0;
    left: 0;
    font-family: Inter-SemiBold;
    font-size: 45px;
}
.adm-open_section .txt-heading h2 span {
    font-size: 45px;
    font-family: Inter-Regular;
}
.apply_btn {
    border: 0;
    padding: 0 32px;
    border-radius: 100px;
    background-color: #093b6c;
    color: #fff;
    font-weight: 700;
    font-size: 38px;
    font-family: "Inter-SemiBold";
    margin: 70px 0 0 0;
    cursor: pointer;
}
footer {
    background: #e8f0f7;
    color: #000;
}
hr {
    margin: 0;
}
.copyright {
    font-size: 10px;
    font-family: "Inter-Regular";
    color: #000;
    padding: 5px 0;
}
.copyright a img {
    width: 95px;
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 99;
    border: none;
    outline: 0;
    background-color: #7cc470;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    border-radius: 40px;
    font-size: 22px;
    opacity: 0.5;
    height: 40px;
    width: 40px;
}
#myBtn:hover {
    opacity: 1;
}
.thankyoutext {
    text-align: center;
    padding: 30px 0;
    font-size: 25px;
}
.thankyou_button {
    text-align: center;
}
.thankyou_banner_section {
    padding: 50px 0 120px 0;
    color: #000;
    font-family: "Inter-Regular";
}
.ty_btn,
.btn_tysubmit a {
    font-family: Inter-Regular;
    font-size: 22px;
    background: #093b6c;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
}
.ty_btn:hover,
.btn_tysubmit a:hover {
    text-decoration: none;
    color: #093b6c;
    background: #fff;
    border: 1px solid #093b6c;
}
@media screen and (max-width: 1024px) {
/*     
    .recr-text p {
        font-size: 20px;
        text-align: center;
    }
    .recr-text p span {
        font-size: 28px;
        font-size: 26px;
    } */
    
}
@media screen and (max-width: 992px) {
    .logo {
        max-width: 169px;
    }
    .banner_section {
        position: relative;
        margin: 0 0 25px 0;
    }
    .banner_box {
        background-image: url(../images/banner-img.webp) !important;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top;
        margin: 0 0 0 0;
        min-height: 275px !important;
        background-color: #fff;
    }
    .banner-form {
        margin: 20px auto 0 auto;
    }
    
}
@media screen and (max-width: 768px) {
    .content_form_box {
        position: relative;
    } 
    footer {
        text-align: center;
    }
    footer::before {
        width: 100%;
    }
   
    .program_offered {
        padding: 30px 0;
    }
    .banner-form {
        margin: 20px auto 0 auto;
    }
    .logo {
        float: left;
        max-width: 300px;
        height: auto;
        margin: 13px 0 0 0;
        width: 17%;
    }
    .programme_structure_box {
        margin-bottom: 10px;
    }
    .programme_structure_inner {
        margin: 0px 0 0px 0; 
    }
    .logosection {
        margin: 0 0 0 0 !important;
    }
    .programme_structure_box h4 {
        padding: 10px 10px;
    }
}
@media screen and (max-width: 580px) {
       
    .banner-form {
        margin: 20px auto 0 auto;
    }
    .banner_box {
        padding: 0 0;
    }
    .programme_structure_section {
        margin: 0px 0;
    }
    .univ-hl .txt-heading h2, .programme_structure_section .txt-heading h2, .recruiters_section h2,
    .adm-open_section .txt-heading h2, .adm-open_section .txt-heading h2 span{
        font-size: 30px;
    }
    .programme_structure_section .section-heading{
        font-size: 25px;
    }
    .logosection {
        margin: 0 0 0 0 !important;
        padding: 0 0;
    }
    .logoinnersection {     
        margin: 0 0 10px 0px;
        width: 100%;
    }
    .programme_structure_box h4 {
        padding: 20px 20px;
    }
}
@media screen and (max-width: 450px) {
   
}
@media screen and (max-width: 380px) {
   
}
