/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #1acc8d;
}

a:hover {
    color: #34e5a6;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #1acc8d;
    border-top-color: #d2f9eb;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background:#f8cc1d;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background:#002e50;
    color: #fff;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    top: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
    top: 0;
    padding: 15px;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #222222;
}

#header .logo a span {
    color: #106eea;
}

#header .logo img {
    max-height: 45px;
}

@media (max-width: 992px) {
    #header {
        padding: 15px;
        top: 0;
    }
    #header .logo {
        font-size: 28px;
    }
    .college-btn-apply {
        position: absolute;
        bottom: -32px !important;
        left: 0px;
        width: 100%;
        text-align: center;
    }
}


/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #222222;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 600;
    padding: 0 3px;
    font-family: "Open Sans", sans-serif;
}

.nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f8cc1d;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #0e2345;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 26px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #062b5b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #106eea;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #222222;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #222222;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #106eea;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(9, 9, 9, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    /*width: 100%;*/
  /*  background: url(../img/bg.png);*/
    background: url('img/banner.jpg');
   /* position: relative;
    padding: 120px 0 0 0;
    background-repeat: no-repeat;*/
    /*height: 700px;*/
    
     
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}




#hero
{
    /*width: 100%; */
    /* background: url(../img/bg.png); */
    background: url(img/banner.jpg);
     min-height: 700px; 
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* 
#hero:before {
    content: "";
    background: #910005;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
} */

#hero h1 {
    line-height: 35px!important;
    margin: 0 0 0 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 56px;
    color: rgba(255, 255, 255, 0.8);
}
section#hero h2 {
    font: normal normal 900 54px/64px Gotham;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
}
#hero h1 span {
    color: #fff;
    border-bottom: 4px solid #1acc8d;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.8);
    /*margin-bottom: 40px;*/
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #1acc8d;
}

#hero .btn-get-started:hover {
    background: #17b57d;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.custom-fieldset {
    min-width:49%;
    width:49%;
    display:inline-block;
}

@media (max-width: 991px) {
    #hero {
        padding-top: 80px;
        height:550px
    }
    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        max-width: 50%;
    }
    #hero h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .custom-fieldset {
        min-width:100%;
        width:100%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
    .college-btn-apply {
        position: absolute;
        bottom: -32px !important;
        left: 0px !important;
        width: 100%;
        text-align: center;
    }
    .about .icon-boxes h3 {
        text-align: center;
    }
    .right-apply-btn{
        margin: 0 40px 60px 40px;
    }
    /* .extra-btn-apply {
        margin: 30px 0 30px 0;
    } */
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

.hero-waves {
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f5ff;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
   
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;

    font: normal normal 800 42px/30px Montserrat;
letter-spacing: 0px;
color: #000000;
}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color:#fff;
    text-align: center;
}
.single-logo img{
    width: 50px!important;
    margin-left: 30%;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 20px 0;
    background-color: #fafaff;
    min-height: 40px;
    margin-top: 80px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 64px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding: 60px 0 60px 0;
}

.about .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.about .icon-box {
    margin-top: 20px;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #7ceec6;
    border-radius: 50px;
    transition: 0.5s;
}

.about .icon-box .icon i {
    color: #1acc8d;
    font-size: 32px;
}

.about .icon-box:hover .icon {
    background: #1acc8d;
    border-color: #1acc8d;
}

.about .icon-box:hover .icon i {
    color: #fff;
}

.about .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.about .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}

.about .icon-box .title a:hover {
    color: #1acc8d;
}

.about .icon-box .description{
    line-height: 24px;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    text-align: justify;
}

.about .video-box {
    background: url("../img/about.png") center center no-repeat;
    background-size: contain;
    min-height: 300px;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(63, 67, 253, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
    border-left: 15px solid #3f43fd;
    transform: scale(20);
}

.about .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.college-btn-apply {
    position: absolute;
    bottom: 22px;
    left: 100px;
    width: 100%;
    text-align: center;
}
.right-apply-btn{
  color: white; 
  background-color: #022c56; 
  padding: 10px 20px; 
  border-radius: 8px; 
  font-weight: bold; 
  box-shadow: 0 0 10px #007bff; 
  animation: glow 1.5s infinite alternate; 
  display: inline-block;
}
@keyframes glow {
  from { box-shadow: 0 0 5px #002952; }
  to { box-shadow: 0 0 20px #01036f; }
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features .icon-box {
    align-items: center;
    /*padding: 18px;
    background:#FFDBDB;*/
    transition: ease-in-out 0.3s;
    margin: 10px;
    border-radius: 13px;
}
h2.title1 {
    color: #000000;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
h2.title1 span {
    color:#C3161C;
}
h2.title1 :before {
    position: absolute;
    content: "";
    background: #eee;
    width: 166px;
    height: 3px;
    top: 114%;
    left: 39%;
}
h2.title1:after {
    position: absolute;
    content: "";
    background: #C3161C;
    width: 64px;
    height: 3px;
    top: 112%;
    left: 43%;
}


.features .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
}

.features .icon-box h3 {
    font-weight: 700;
    padding: 0; 
    line-height: 1;
    font-size: 16px;
    position: absolute;
    top: 16px;
    color: #fff;
    text-align: center !important;
        margin: 0 auto;
    width: 100%;
}
.icon-box ul li{
    line-height: 40px;
}






/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/

.details .content+.content {
    margin-top: 100px;
}

.details .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: #000;
}

.details .content ul {
    list-style: none;
    padding: 0;
}

.details .content ul li {
    padding-bottom: 10px;
}

.details .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #1acc8d;
}

.details .content p:last-child {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
    padding: 180px 0;
    background: url(../img/bg-5.png) no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    height: 694px;
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .owl-dot.active {
    background-color: #1acc8d !important;
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    background: #fff;
}

.team .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.team .member .pic {
    border-radius: 4px;
    overflow: hidden;
}

.team .member img {
    transition: all ease-in-out 0.4s;
}

.team .member:hover img {
    transform: scale(1.1);
}

.team .member .member-info {
    position: absolute;
    bottom: -80px;
    left: 0px;
    right: 0px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #01036f;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #0d12fc;
    bottom: 0;
    left: calc(50% - 25px);
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #01036f;
}

.team .member .social {
    margin-top: 10px;
}

.team .member .social a {
    transition: color 0.3s;
    color: #01036f;
}

.team .member .social a:hover {
    color: #1acc8d;
}

.team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #3f43fd;
    float: left;
    width: 44px;
    height: 44px;
    background: #f0f0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #0205a1;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #1acc8d;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #1acc8d;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #34e5a6;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  
    background: url("img/footer-bg.svg");
  
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
}
.address h4 {
    color: #C3161C;
    font-size: 18px;
    font-weight: 900;
}
section#footer p {
    font-size: 15px;
    text-align: left;
   
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    /* color: #fff; */
    /* background-color: #02072d; */
    background-clip: padding-box;
    border-bottom: 1px solid #ced4da!important;
   /* border:none; */
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus{
    background:none;
    border:none;
}
.btn-success{
    cursor: pointer;
    border: none;
    color: #002e50;
    margin: 0 0 5px;
    padding: 10px 31px;
    font-size: 15px;
    text-align: center;
    margin: 0 auto;
    background:#f8cc1d;
    border-radius: 24px;
    font-weight: 700;
}
#contact .btn-success:hover,
#contact .btn-success:focus {
    background-color: #002e50;
    border-color:#002e50
}
#footer .btn-success:hover,
#footer .btn-success:focus {
    background: #fff;
    color:#002e50
}
#footer .footer-top {
    padding: 60px 0 30px 0;
}
.info i {
    float: left;
    color: #C3161C;
    font-size: 28px;
    margin-right: 15px;
}
#footer .footer-top .footer-info {
    margin-bottom: 15px;
    background: #010246;
    color: #fff;
    border-top: 4px solid #1acc8d;
    text-align: center;
    padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #1acc8d;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #61ebba;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #4be8b0;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px 6px 15px;
    position: relative;
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #1acc8d;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #149f6e;
}

#footer .copyright {
    border-top: 1px solid #010479;
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}

.background-grd {
    background-color: red;
    background-image: linear-gradient(to right, #910005, #C3161C);
    padding: 20px;
}



#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#contact {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 9px 30px #00000033;
    border-radius: 4px;
    padding: 20px;
    position:relative;
    z-index:444;
}

#contact h3 {
    display: block;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #002e50;
    text-align: center;
}
label {
    display: inline-block;
    margin-bottom: .5rem;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}
#contact h4 {
    margin: 5px 0 15px;
    display: block;
    font-size: 13px;
    font-weight: 400;
}

fieldset {
    border: medium none !important;
    margin: 0 0 0px;
    min-width: 100%;
    padding: 0;
    width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
    width: 100%;
    margin: 0 0 5px;
    padding: 5px 10px;
    outline: none;
    border: navajowhite;
    border-bottom: 1px solid#002e50;
    font-size: 11px;
    color: #707070;
}
select.form-control {
    background-color: #fff;
    /* border-bottom: 1px solid #02072d!important; */
    border-radius: 0;
    color: #9e9e9e;
    padding: 0 6px
}
/* select.form-control:focus {
    outline: none;
    box-shadow: none;
} */
#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    
}

#contact textarea {
    height: 55px;
    max-width: 100%;
    resize: none;
}

#contact button[type="submit"] {
    cursor: pointer;
    border: none;
    color: #fff;
    margin: 0 0 5px;
    padding: 10px 31px;
    font-size: 15px;
    text-align: center;
    margin: 0 auto;

background: #002e50;
border-radius: 24px;
}

#contact button[type="submit"]:hover {
    background: #002e50;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.copyright {
    text-align: center;
}

#contact input:focus,
#contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
}

::-webkit-input-placeholder {
    color: #888;
}

:-moz-placeholder {
    color: #888;
}

::-moz-placeholder {
    color: #888;
}

:-ms-input-placeholder {
    color: #888;
}

#details {
    /* width: 100%;
    background: url(../img/Subtraction.png);
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat; */
    background-color: whitesmoke;
    padding: 120px 0 0 0;
}

.table-bordered td, .table-bordered th {
   text-align: left;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 24px;
    font-size: 15px;
    color: #000000;
    font-weight: 600;
}
h3.text-center {
    font-weight: 600;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.testimonials .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.4s;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin: 6px;
}

.testimonials .icon-box .icon {
    margin-bottom: 10px;
}

.testimonials .icon-box .icon i {
    color: #47b2e4;
    font-size: 36px;
    transition: 0.3s;
}

.testimonials .icon-box h4 {
   
    margin-bottom: 15px;
  
    text-align: center;
    margin-top: 20px;
    
    line-height: 22px;
    line-height: 24px;
    font-size: 15px;
    color: #000000;
    font-weight: 600;
}

.testimonials .icon-box h4 a {
    color: #000000;
    transition: ease-in-out 0.3s;
    font-size: 19px;
}

.testimonials .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.testimonials .icon-box:hover {
    transform: translateY(-10px);
}

.testimonials .icon-box:hover h4 a {
    color: #47b2e4;
}

#testimonials {
    background-color: #fff;
    padding: 0;
}

.testimonial-margin {
    margin-top: 8%;
}

.section-title h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

#topbar {
    background: url(img/top-h.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 50px!important;
}
.contact-info.mr-auto {
    margin-left: 25%;
}
#topbar {
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #fff;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    text-decoration: underline;
}

#topbar .contact-info i {
    padding-right: 4px;
    margin-left: 15px;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.6);
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #fff;
}
section#Why-SIHS {
    background: #F5F5F5;
}
section#Why-SIHS p {
  
    text-align: center;
   
    letter-spacing: 0px;
    color: #000000;
    
    line-height: 24px;
    font-size: 15px;
    color: #000000;
    font-weight: 600;
    
}
#Why-SIHS h3 {
    text-align: center;
}
section#Why-SIHS ul li {
    
    text-align: left;
 
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 20px;
    padding: 0%;
    
    line-height: 24px;
    font-size: 15px;
    color: #000000;
    font-weight: 600;
}
section#Why-SIHS ul {
    padding: 4px 25px;
}
.important-dates th {
  background: transparent linear-gradient(
180deg, var(--unnamed-color-c3161c) 0%, #910005 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(
180deg, #C3161C 0%, #910005 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    text-align: center;
}
.important-dates .table-responsive>.table-bordered {
    border-collapse: separate;
    border-spacing: 3px;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff;
}
.important-dates tr {
    background: #EAE9E9;
}
/*--------------------------------------------------------------
# Objective
--------------------------------------------------------------*/

.Objective .feature-box {
    padding: 24px 20px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    height: 100%;
}

.Objective .feature-box i {
    line-height: 0;
    background: #ecf3ff;
    padding: 4px;
    margin-right: 10px;
    font-size: 24px;
    border-radius: 3px;
    transition: 0.3s;
}

.Objective .feture-tabs {
    margin-top: 120px;
}

.Objective img {
    height: 50px;
    margin: 0 20px 0 0;
}
button.enquire-btn {
    padding: 5px 15px;
    background: #f8cc1d;
    color: #fff;
    position: fixed;
    top: 50%;
    margin-top: -40px;
    transform: rotate(90deg);
    right: -48px;
    border: none;
    outline: none !important;
}
button.enquire-btn:hover {
    background: #002e50;
}
@media (max-width: 768px) {
    .Objective .feture-tabs h3 {
        font-size: 28px;
    }
    button.enquire-btn {
    right: -43px;
}
}

.Objective .feature-icons {
    margin-top: 0px;
}

@media (max-width: 768px) {
    .Objective.feature-icons h3 {
        font-size: 28px;
    }
}

.Objective .feature-icons .content .icon-box {
    display: flex;
}

.Objective .feature-icons .content .icon-box h4 {
    font-size: 20px;
    font-weight: 500 !important;
    margin: 0 0 10px 0;
    color: #C3161C;
}

.Objective .feature-icons .content .icon-box p {
        line-height: 24px;
    font-size: 15px;
    color: #000000;
    font-weight: 600;
}
.position-align
{
    position: absolute;
    top: 0;
}


.icon-box
{
    min-height: 87px;
}
.banner-mobile-view-block{
    display:none;
}
.banner-mobile-view-none{
 display:block;   
}
/*responsive media queries*/
@media screen and (max-width: 768px) {
  #hero {
    height: 143px;
    background-size: contain;
   
    }
  
    .row.align-self-center.gy-4 {
    margin-top: 34%;
    padding: 4px;
}
section#Objective {
    margin-top: -35%;
}
.about {
    padding: 0px 0 55px 0!important;
}
.about .icon-box {
    margin-top: 0;
}
}

.mt-50
{
    margin-top: 50;
}

.mt-60
{
    margin-top: 60;
}

.mt-70
{
    margin-top: 70;
}

.mt-80
{
    margin-top: 80;
}


/* div#exampleModal .modal-body{
    padding: 0;
} */
button.close {
    padding: 10px;
}
.page-title {
    margin-bottom: 30px;
}
.college-teaser {
    border:solid 1px #d1d1d1;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 19%);
    transition: all .3s ease 0s ;
    padding: 15px 15px 45px;
    text-align: center;
    min-height: 510px;
    margin-bottom: 30px;
    position: relative;
}
.college-img img {
    width:165px
}
.college-teaser h4{
    padding: 10px;
    color: #f8cc1d;
    background: #002952;
}
.college-title {
    margin: 0 0 10px;
    color:#000;
    font-weight: 600;
    font-size: 22px;
}
.college-content {
    margin-bottom: 20px;
}
.college-content p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.college-btn {
    position: absolute;
    bottom: 15px;
    left:0;
    width: 100%;
    text-align: center;
}
.college-btn a.extra-btn-apply:first-child {
    background: #002e50;
    border: 1px solid #002e50;
    color:#fff
}
.college-btn a.extra-btn-apply:first-child:hover {
    color: #fff;
    Background: #f8cc1d;
    border: 1px solid #f8cc1d;
}
.extra-btn-apply {
    Padding: 0px 10px;
    color: #000;
    Background: #f8cc1d;
    border: 1px solid #f8cc1d;
    border-radius: 4px;
    letter-spacing: .01em;
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 10px;
    display: inline-block;
    /* margin: 30px 0 30px 0; */
}
.extra-btn-apply:hover {
    background: #002e50;
    border: 1px solid #002e50;
    color:#fff
}

.faq-wrap .card {
    border-radius: 0;
    border:none;
    display: block;
    width:100%
}
.faq-wrap .card .card-header .btn {
    color:  #f8cc1d;
    text-decoration: none !important;
    box-shadow: none !important;
    font-weight: 600;
}
.faq-wrap .card .card-header .btn:focus,
.faq-wrap .card .card-header .btn:active {
    outline: none !important;
}
.faq-wrap .card .card-header .btn.collapsed {
    color: #0e2345
}
.footer-wrap h3 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}
.footer-wrap {
    max-width: 70%;
    margin: 0 auto;
}
.cta-section {
    text-align: center;
}
.cta-section h2 {
    font-weight: 900;
    color: #0e2345;
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 30px;
}
.cta-section .extra-btn-apply {
    min-width: 150px;
}
#exampleModal {
    z-index: 333333;
}
.thank-u {
    padding: 60px 0;
    border-top: 120px solid #dcdada;
    border-bottom: 120px solid #dcdada
}

.thank-u h2 {
    font-size: 68px;
    font-weight: bolder;
    color: #162E55;
    letter-spacing: 4px;
    margin-bottom: 40px
}

.thank-u img {
    display: block;
    margin: 0 auto
}

.thank-u h4 {
    color: #162E55;
    margin: 6px 0 20px;
    font-size: 22px;
}

.thank-u a {
    margin: 40px 0;
    letter-spacing: 2px;
    padding: 4px 12px;
    color: #fff;
}

.mg-btn {
    margin-bottom: 48px;
}

.btn-redback {
    background-color: #2c1f0d!important;
    border-color: #2c1f0d!important;
}
.mobile-banner img {
    width:100%
}
.form-container #contact {
    width: 100%;
    max-width: 100%;

}
.form-container {
    display: flex;
    justify-content: flex-end;
}
#contact label {
    margin-bottom: 4px;
    text-align: left !important;
    display: block;
}
section#hero {
    padding: 60px 0 20px
}

/* ------BANNER-SECTION-START--------- */
@font-face {
  font-family: impact;
  src: url(fonts/impact.ttf);
}
.banner_mainbox{
  background-image: url(../img/banner_img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #fff;
  /* margin: 85px 0 0 0; */
  padding: 30px 0 0 0;
  color: #fff;
}
.banner_section{
    float: left;
    width: 100%;
}
.banner_leftbox{
  float: left;
  width: 65%;
}
.banner_rightbox{
  float: right;
  width: 30%;
  /* margin-top: 150px; */
}
.banner_text1{
  font-family: impact;
  color: #f8cc1d;
  font-size: 70px;
  text-transform: uppercase;
  line-height: normal;
  margin: 0 0 40px 0;
}
.distance_texts{
  color: #f8cc1d;
  font-size: 35px;
  font-weight: bold;
}
.banner_text2 {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 24px;
  line-height: normal;
  margin: 0 0 40px 0;
  width: 70%;
}
.banner_girl_img{
  width: 100%;
  text-align: center;
  margin:-220px 0 0 0;
  border-bottom: 46px solid #fafafc;
}
.banner_girl_img img{
  max-width: 620px;
  margin: 0 0 -45px 0;
}
.apply-now a{
    background-color: #f8cc1d;
    color: #000 ;
    padding: 2px 15px;
    border-radius: 4px;
    Background: #f8cc1d;
    border: 1px solid #f8cc1d;
    letter-spacing: .01em;
    font-family: Poppins, sans-serif;
    font-weight: 900;
    font-size: 16px;
    padding: 6px 10px;
    display: inline-block;
}
.apply-now a:hover  {
    background: #fff;
    border: 1px solid #ffc34c;
    color:#000
}





.banner-form {
    max-width: 360px;
    position: relative;
    background-color: #fff;
    /* box-shadow: 20px 15px 86px rgb(227 35 35 / 26%); */
    border-radius: 40px;
    z-index: 1;

    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 9px 30px #00000033;
    border-radius: 4px;
    padding: 20px;
    position: relative;
    z-index: 444;
}

.banner_rightbox .banner-form h3 {
    text-align: center;
    font-size: 30px;
    color: #000;
    margin: 0 0 15px 0;
    font-family: 'Montserrat';
}
.banner-form-popup{
    max-width: 510px;
    position: relative;
    background-color: #fff;
    border-radius: 40px;
    z-index: 1;
}
 .banner-form form, .banner-form-popup form  {
    z-index: 2;
    position: relative;
    padding: 10px 20px 30px 20px
}

.banner-form h3 {
    text-align: center;
    font-size: 20px;
    color: #000;
    margin: 0 0 15px 0;
    font-family: Montserrat-Black;
}

.banner-form-popup h4 {
    text-align: center;
    font-size: 25px;
    color: #000;
    margin: 15px 0;
    font-family: 'Montserrat-SemiBold';
}
.banner-form-popup h6 {
    text-align: center;
    font-size: 17px;
    color: #fff;
    font-family: 'Montserrat-SemiBold';
    background:#950304;
    border: 2px solid;
    border-radius: 25px;
    padding: 10px 20px;
}
.banner-form-popup p {
    color: #000;
    text-align: center;
    font-family: 'Montserrat-SemiBold';
}
.banner-form-popup p span {
    color: #000;
    text-align: center;
    font-family: 'Montserrat-Bold';
    font-size: 22px;
    line-height: normal;
}

 .banner-form lable,
.tab-content h5,
.tab-content h6,
a.submit_btn,
.banner-form-popup lable {
    color: #fff
} 

textarea.form-control {
    resize: none
}

.banner-form select.form-control, .banner-form-popup select.form-control {
    background: url("../assets/img/arrow1.png") 97% no-repeat #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #a8a8a8;
    cursor: pointer
}

.form-control::placeholder {
    color: #a8a8a8;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #a8a8a8;
    opacity: 1
}

.form-control::-ms-input-placeholder {
    color: #a8a8a8;
    opacity: 1
}

.banner-form-wrap, .banner-form-popup .banner-form-wrap  {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 20px
} 

.banner-form .form-control, .banner-form-popup .form-control {
    font-size: 12px;
    line-height: 18px;
    border-radius: 4px;
    height: auto;
    min-height: auto;
    padding: 8px;
    max-height: 60px;
    margin:0 0 10px 0;
}
.mobile_view {
    display: none;
}
.btn_submit {
    padding: 9px 25px;
    color: #000 !important;
    font-weight: 500;
    border: 2px solid;
    border-radius: 25px;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    background: linear-gradient(113deg, #f8cc1d 0, #f8cc1da1 100%);   
    font-family: 'Montserrat';
}

.btn_submit:hover{
    text-decoration: none;
    color: #002e50 !important;
    background: #fff !important;
    border: 2px solid #002e50 !important;
}

select {
  color: #9e9e9e;
}
option:not(:first-of-type) {
  color: black;
}

.loader { 
    display: none; 
    border: 4px solid rgba(255, 255, 255, 0.3); 
    border-top: 4px solid #02072d; 
    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; 
}
  
.apply-btn{
    font-size: 20px;
    font-family: Montserrat-Bold;
    text-decoration: none;
    color: #a60204;
    background-color: #ffc34c;
    height: 50px;
    width: 240px;
    /* border-radius: 38px; */
    text-align: center;
    margin-top: 500px;
    float: left;
    padding: 5px 10px;
  }
  .apply-btn a{
    color: #a60204;
  }

.login-popup.show {
    display: block; /* Show when 'show' class is added */
}

.popup-content {
    position: relative;
    margin: 15% auto;
    padding: 20px;
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}
/* ------BANNER-SECTION-END--------- */

@media only screen and (min-width: 1850px) {
    #hero {
        background-size: cover;
    }
}
@media screen and (max-width: 1400px) {

}

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

/* ------BANNER-SECTION-START--------- */
.banner_leftbox{
  width: 100%;
  text-align: center;
}
.banner_rightbox{
  width: 100%;
  padding: 0 10px 20px 10px;
}
.banner_text1{  
    font-size: 45px;
}
.banner_text2{
  width: 100%;
}
.banner_girl_img{
  display: none;
}
.distance_texts {
    color: #f8cc1d;
    font-size: 30px;
    font-weight: bold;
}
/* ------BANNER-SECTION-END--------- */

    .form-container #contact {
        margin: 0 auto;
    }
    .form-container {
        display: block;
    }
    .banner-mobile-view-none{
        display:none;
    }
    .banner-mobile-view-block{
        display:block;
        margin-top:15px;
        padding-bottom: 0;
    }
 }

 @media screen and (max-width: 580px) {
    section {
    padding: 0px 0;
    overflow: hidden;
}
.about {
        padding: 0px 0 0px 0 !important;
    }
}
 .about p  span {
    font-weight: 700;
    color: #002e50;
 }
 .college-content ul {
    list-style: none;
    padding: 0;
    max-width: 90%;
    margin: 20px auto;
}
.college-content ul li{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}
.college-content ul li i {
    color: #002e50;
    margin-right: 3px;
}
.footer-ug,
.specialization-block {
    display:none;
}
#footer select.form-control{
    background-color: transparent;
    border-radius: 3px;
    color: #888;
    padding: 0 6px;
   border-bottom: solid 1px #fff !important;
}

@media (max-width: 1024px) {
    .college-btn-apply {
        position: absolute;
        bottom: -32px;
        left: 30px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .right-apply-btn {
        margin: 0 20px 20px 20px;
    }
}

@media (max-width: 320px) {
    .right-apply-btn {
        margin: 0 0px 40px 0px;
    }
}