/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Montserrat", sans-serif;
  color: #444444;
}
a{
    font-family: "Montserrat", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}
/*--------------------------------------
    Top bar css and css changer
*/
#main{
    background: #f9f9f9;
    box-shadow: inset 20px 5px 25px #e2eaf4;
}
.homepage .cus-maintop-banner {
    background: #27a4d6;
    height: 32px;
    border-bottom: 4px solid #EBEBEB;
}

    .homepage .cus-maintop-banner a {
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease-in 0s;
        text-align: center;
        vertical-align: middle;
        display: inline-block;
        padding: 0rem 0.6rem;
       font-size: 13px;
    }

.cus-maintop-banner a:hover {
    color: #fff;
text-decoration: none;
background: #000066;
transition: all 0.3s ease-in 0s;
padding: 0.2rem 0.6rem;
}

.cus-maintop-banner .button-toggle-remove {
    background: #ccc;
    color: #333;
}

.cus-maintop-banner .button-toggle-highcontrast {
    background: #333;
    color: #fff;
}

.skip-content {
    padding: 10px 8px;
    font-size: 12px;
    transition: all 0.4s;
}
/*--------------------------------------------------------------
# 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 #ed502e;
  border-top-color: white;
  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: 4px;
  background: #ed502e;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #f06f54;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: 0.2s ease-in-out all;
    z-index: 997;
    background: #27a4d6;
    padding: 0px 0;
    border-bottom: 4px solid #EBEBEB;
    font-size: 14px;
}
#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 40px;
}
.cus-right{
	text-align:right;
	margin-top:-15px;
}

.cus-right ul{
  list-style: none;
}
.cus-right ul li{
  display: inline-block;
}
.social-links a {
    font-size: 20px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    background: #E91E63;
}
    .social-links a:hover {
        color: #fff;
        background: #02144F;
        text-decoration: none;
    }
@media (max-width: 640px) {
    .cus-right{
        text-align:center;
    } 
    .cus-dates .text-left {
        text-align: center !important;
    }
    .cus-dates h6 {
        text-align: center !important;
    }
    .cus-rightsection {
        margin-top: 4%;
    }
    .header{
        height: 40px;
    }
    .card .card-header h5{
        font-size: 14px !important;
    }
    .cus-admission{
        margin-top: 4%;
    }
}
    @media (max-width: 992px) {
        #header .logo {
            font-size: 28px;
        }

        .d-flex {
            display: -ms-inline-block !important;
            display: inline-block !important;
        }
    }

    /*--------------------------------------------------------------
# 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: 0px 0px 0px 15px;
        }

    .nav-menu a {
        display: block;
        position: relative;
        color: #fff;
        transition: 0.3s;
        font-size: 13px;
        font-family: "Montserrat", sans-serif;
        padding: 0.4rem;
    }

        .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
            background: transparent;
            color: #fff;
            transition: 0.5s ease-in-out all;
            text-decoration: none;
            
            border-top: 4px solid #000066;
        }

    .nav-menu .drop-down ul {
        display: block;
        position: absolute;
        left: 15px;
        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: #0b2341;
    }

        .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
            color: #E91E63;
        }

    .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";
        }

    }
 
    .cus-right-button {
        margin-top: 0.4rem;
    }
    
        .cus-right-button a {
            text-decoration: none;
            color: #fff;
            font-size: 13px;      
            padding: 0.4rem;
            font-family: "Montserrat", sans-serif;
         }
    
            .cus-right-button a:hover {
                color: #000066;
                transition: 0.2s ease-in-out all;
                padding: 0.4rem;
                text-decoration: none;                
                cursor: pointer;
            }

    /* Get Startet Button */
    .get-started-btn {
        margin-top: 10px;
        margin-left: 25px;
        background: #fff;
        color: #E91E63;
        border-radius: 0px;
        padding: 8px 25px 9px 25px;
        white-space: nowrap;
        transition: 0.3s;
        font-size: 14px;
        display: inline-block;
        font-weight: 700;
    }

        .get-started-btn:hover {
            background: #E91E63;
            color: #fff;
            padding: 4px 25px 9px 25px;
            text-decoration: none;
        }

.socialicons {
    position: fixed;
    top: 40%;
    z-index: 9999;
    right: 1px;

}

    .socialicons ul {
        list-style: none;
        padding-left: 0;
    }
        .socialicons ul li {
            margin: 10px 0;
            position: relative;
            cursor: pointer;

        }
.cus-write .btn.btn-primary {
    background: #E91E63;
    color: #fff;
    border: 0;
    font-size: 22px;
}
.cus-fb .btn.btn-primary {
    transition: all 0.4s;
    border: 0;
}
.cus-twitter img:hover {
    border: 4px solid #f9f9f9;
    transition: all 0.4s;
}
.cus-insta img:hover {
    border: 4px solid #f9f9f9;
    transition: all 0.4s;
}
.cus-youtube img:hover {
    border: 4px solid #f9f9f9;
    transition: all 0.4s;
}
.cus-fb img:hover {
    border: 4px solid #f9f9f9;
    transition: all 0.4s;
}
.cus-write .btn.btn-primary:hover {
    border: 4px solid #f9f9f9;
    transition: all 0.4s;
}
    .cus-twitter .btn.btn-primary {
        transition: all 0.4s;
        border: 0;
        font-size: 22px;
    }
.cus-insta .btn.btn-primary {
    background: linear-gradient(#515BD4, #8134AF, #F58529, #FEDA77, #DD2A7B );
    color: #fff;
    transition: all 0.4s;
    border: 0;
    font-size: 22px;
}
/*.btn.btn-primary.cus-write {
        position: fixed;
        left: 15px;
        bottom: 50px;
        z-index: 99999;
        background: #E91E63;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        color: #fff;
        transition: all 0.4s;
        border: 0;
    }*/
@media (max-width: 768px) {
    .get-started-btn {
            margin: 0 48px 0 0;
            padding: 6px 20px 7px 20px;
        }
		    .cus-right-button{
        margin-top:2px !important;
    }
    }

    /* Mobile Navigation */
    .mobile-nav-toggle {
        position: absolute;
        top: 70px;
        left: 4px;
        z-index: 9998;
        border: 0;
        background: #000066;
        font-size: 24px;
        transition: all 0.4s;
        outline: none !important;
        line-height: 1;
        cursor: pointer;
      
    }

        .mobile-nav-toggle i {
            color:#fff;
        }

    .mobile-nav {
        position: absolute;
        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: #0b2341;
            padding: 10px 20px;
            font-weight: 500;
            outline: none;
        }

            .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
                color: #ed502e;
                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(4, 12, 21, 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;
        }

    /*--------------------------------------------------------------
# card Section
--------------------------------------------------------------*/
    #ads {
        border-top: none;
        -webkit-box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05), 0 -2px 1px -2px rgba(0, 0, 0, 0.04), 0 0 0 -1px rgba(0, 0, 0, 0.05);
        box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05), 0 -2px 1px -2px rgba(0, 0, 0, 0.04), 0 0 0 -1px rgba(0, 0, 0, 0.05);
        -webkit-transition: all 150ms linear;
        transition: all 150ms linear;
        margin-left: 2px;
    }

    .pt-lg-0 {
        padding: 1rem;
    }

    .cus-important {
        -webkit-animation: NAME-YOUR-ANIMATION 1s infinite;
        -moz-animation: NAME-YOUR-ANIMATION 1s infinite;
        -o-animation: NAME-YOUR-ANIMATION 1s infinite;
        animation: NAME-YOUR-ANIMATION 1s infinite;
        border-top: none;
        -webkit-box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05), 0 -2px 1px -2px rgba(0, 0, 0, 0.04), 0 0 0 -1px rgba(0, 0, 0, 0.05);
        box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05), 0 -2px 1px -2px rgba(0, 0, 0, 0.04), 0 0 0 -1px rgba(0, 0, 0, 0.05);
        -webkit-transition: all 150ms linear;
        transition: all 150ms linear;
        }

    /*@-webkit-keyframes NAME-YOUR-ANIMATION {
	  0%, 49% {
		background-color:#ececec;
	  }
	  50%, 100% {
	background-color:#ececec;}
	}
	*/
.cus-important .card{
    border:0 !important;
    
}
.homepage .cus-dates h5 {
    font-size: 24px;
    font-weight: 700;
    color: #492A7F;
    text-align: center;
    margin-bottom: 4%;
}
.homepage .cus-dates h6 {
    color: #444;
}
.card.cus-application {
    margin-top: 2%;
}
    .row.content {
        height: 100%;
    }
    .content .card {
        background:transparent !important;
		
    }
    .cus-rightsection .card {
        background:transparent !important;
		
    }

    .cus-online {
        padding: 1rem;
        box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05), 0 -2px 1px -2px rgba(0, 0, 0, 0.04), 0 0 0 -1px rgba(0, 0, 0, 0.05);
        -webkit-box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05), 0 -2px 1px -2px rgba(0, 0, 0, 0.04), 0 0 0 -1px rgba(0, 0, 0, 0.05);
    }

    .cus-botttomsection {
        margin-top: 15px;
        box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05), 0 -2px 1px -2px rgba(0, 0, 0, 0.04), 0 0 0 -1px rgba(0, 0, 0, 0.05);
        -webkit-box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05), 0 -2px 1px -2px rgba(0, 0, 0, 0.04), 0 0 0 -1px rgba(0, 0, 0, 0.05);
      
    }

    .cus-rightsection .card {
        -webkit-box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05), 0 -2px 1px -2px rgba(0, 0, 0, 0.04), 0 0 0 -1px rgba(0, 0, 0, 0.05);
        box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05), 0 -2px 1px -2px rgba(0, 0, 0, 0.04), 0 0 0 -1px rgba(0, 0, 0, 0.05);
    }
.cus-college-ranking {
    margin-top: 2%;
}
/*.cus-rightsection .card-body {
        padding: 0.6rem;
    }*/
.homepage .card ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}
.homepage .card ul li a:hover{
    color: #000066;
}
    /*--------------------------------------------------------------
#Notification
*/
.h-50{
    height:40vh !important;
}
.h-70{
    height:70vh;
}
    .holder {
        color:#333;
        width: 100%;
        /*height: 170px;*/
        overflow: hidden;
        padding: 5px;
        font-family: "Montserrat", sans-serif;
    }

        .holder .mask {
            position: relative;
            left: 0px;
            top: 10px;
            width: 100%;
            height: 240px;
            overflow: hidden;
        }

        .holder ul {
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
        }

            .holder ul li {
                padding: 2px 0px;
            }

                .holder ul li a {
                    color: #333;
                    text-decoration: none;
                }
    /*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

    section {
        padding: 10px 0;
    }


    .section-title {
        padding-top: 20px;
        padding-bottom: 10px;
    }

        .section-title h2 {
            font-size: 16px;
            font-weight: 700;
            padding: 0;
            line-height: 1px;
            margin: 0 0 5px 0;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #E91E63;
            font-family: "Poppins", sans-serif;
            margin-bottom: 10px;
        }

            .section-title h2::after {
                content: "";
                width: 120px;
                height: 1px;
                display: inline-block;
                background: #E91E63;
                margin: 0px 7px;
            }
    
        /*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
        #about {
            height: 100%;
            max-height: 100%;
            margin-bottom: 2%;
        }

    .about .content h3 {
        font-weight: 600;
        font-size: 26px;
    }

    .about .content ul {
        list-style: none;
        padding: 0;
    }

        .about .content ul li {
            padding-left: 18px;
            position: relative;
            font-size: 14px;
        }

            .about .content ul li + li {
                margin-top: 10px;
            }

        .about .content ul i {
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 20px;
            color: #000066;
            line-height: 1;
        }

    .about .content p:last-child {
        margin-bottom: 0;
    }

    .about .content .btn-learn-more {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 5px;
        transition: 0.3s;
        line-height: 1;
        color: #ed502e;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        margin-top: 6px;
        border: 2px solid #ed502e;
    }

        .about .content .btn-learn-more:hover {
            background: #ed502e;
            color: #fff;
            text-decoration: none;
        }

    /*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
    .counts {
        padding-top: 0;
    }

        .counts .count-box {
            box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 100%;
        }

            .counts .count-box i {
                display: block;
                font-size: 30px;
                color: #ed502e;
                float: left;
            }

            .counts .count-box span {
                font-size: 42px;
                line-height: 24px;
                display: block;
                font-weight: 700;
                color: #0b2341;
                margin-left: 50px;
            }

            .counts .count-box p {
                padding: 30px 0 0 0;
                margin: 0;
                font-family: "Raleway", sans-serif;
                font-size: 14px;
            }

            .counts .count-box a {
                font-weight: 600;
                display: block;
                margin-top: 20px;
                color: #164682;
                font-size: 15px;
                font-family: "Poppins", sans-serif;
                transition: ease-in-out 0.3s;
            }

                .counts .count-box a:hover {
                    color: #2169c4;
                }

    /*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.card{
    box-shadow:rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    -webkit-box-shadow:rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.cus-upper .card-body{
    padding: 0.5rem;
}
.lower-section .card-body{
    height: 400px;
    overflow: auto;
}
.cus-botttomsection .card-body{
padding: 0.5rem;
}
 .card .card-header{
      background: #27a4d6;
      border-bottom: 4px solid #000066;      
      padding: 0.2rem !important;
      box-shadow: 0 0.125rem 0.625rem rgba(63, 106, 216, 0.4), 0 0.0625rem 0.125rem rgba(63, 106, 216, 0.5);
  }
  .card .card-header h5{
    font-size: 14px !important;
    color: #fff;
    padding-left: 0.2rem;
    padding-top: 0.4rem;
    font-family: "Montserrat", sans-serif;
  }
  .cus-important .card-body{
      padding: 1rem !important;
      
  }
        .cta p {
            color: #fff;
        }

        .cta .cta-btn {
            cursor: pointer;
            font-family: "Montserrat", sans-serif;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 15px 10px 35px;
            letter-spacing: 1px;
            display: inline-block;
            border-radius: 4px;
            transition: 0.5s;
            color: #fff;
            text-transform: uppercase;
            background: #000066;
            /*background-image: url("../images/registration.png");*/
            background-size:24px;
            background-repeat: no-repeat;
            background-position:5%;            
            border-color: #000066;
            margin: 0.5rem;
        }



            .cta .cta-btn-login {
                cursor: pointer;
                font-family: "Montserrat", sans-serif;
                font-weight: 600;
                font-size: 14px;
                padding: 10px 15px 10px 35px;
                letter-spacing: 1px;
                display: inline-block;
                border-radius: 4px;
                transition: 0.5s;
                color: #fff;
                text-transform: uppercase;
                background: #000066;
                background-image: url("../images/studentlogin.png");
                background-size:20px;
                background-repeat: no-repeat;
                background-position:5%;
                text-decoration:none;
                
                border-color: #000066;
            }
            .cus-admission table td{
                font-size: 13px;
            }
            .table td, .table th{
                padding: .65rem;
            }
    /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
    .homepage .contact .info-box {
        color: #0b2341;
        text-align: center;
        box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
        padding: 20px 0 30px 0;
        background: #fff;
    }

        .contact .info-box i {
            font-size: 32px;
            color: #E91E63;
            border-radius: 50%;
            padding: 8px;
            border: 2px dotted #fbdad2;
        }

        .homepage .contact .info-box h3 {
            font-size: 20px;
            color: #777777;
            font-weight: 700;
            margin: 10px 0;
        }

        .contact .info-box p {
            padding: 0;
            line-height: 24px;
            font-size: 14px;
            margin-bottom: 0;
            font-weight: 700;
        }

    .contact .php-email-form {
        box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
        padding: 30px;
        background: #fff;
    }

        .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;
            border-radius: 4px;
        }

            .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
                border-color: #ed502e;
            }

        .contact .php-email-form input {
            padding: 20px 15px;
        }

        .contact .php-email-form textarea {
            padding: 12px 15px;
        }

        .contact .php-email-form button[type="submit"] {
            background: #ed502e;
            border: 0;
            padding: 10px 30px;
            border-radius: 4px;
            color: #fff;
            transition: 0.4s;
        }

            .contact .php-email-form button[type="submit"]:hover {
                background: #ef6445;
            }

    @-webkit-keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }



    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.cus-helpdesk{
    padding-top: 0.6rem;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
}
.cus-timing h3 {
    font-size: 15px !important;
}
.cus-timing i, .cus-timing span strong{
    color: #000066;
    font-size: 16px;
}
.cus-mobile h3 {
    font-size: 15px !important;
    text-align: center;
}
.cus-mobile i, .cus-mobile span strong{
    color: #000066;
    font-size: 16px;
}
.cus-emailid h3 {
    font-size: 15px !important;
    text-align: right;
}
.cus-emailid i, .cus-emailid span strong{
    color: #000066;
    font-size: 16px;
}
.homepage #footer {
    background: #27a4d6;
    padding: 10px 0 10px 0;
    color: #fff;
    font-size: 14px;
}

        #footer .footer-top {
            padding: 60px 0 30px 0;
        }

            #footer .footer-top .footer-info {
                margin-bottom: 15px;
                background: #05101e;
                border-top: 4px solid #ed502e;
                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: "Raleway", 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: 4px;
                text-align: center;
                width: 36px;
                height: 36px;
                transition: 0.3s;
                background: #0a1e38;
            }

                #footer .footer-top .social-links a:hover {
                    color: #fff;
                    background: #ed502e;
                    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 li {
                        padding-right: 2px;
                        color: #ef6445;
                        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: #ef6445;
                        }

            #footer .footer-top .footer-newsletter form {
                margin-top: 30px;
                background: #fff;
                padding: 6px 10px;
                position: relative;
                border-radius: 4px;
            }

                #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 2px 20px;
                    background: #ed502e;
                    color: #fff;
                    transition: 0.3s;
                    border-radius: 0 4px 4px 0;
                }

                    #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
                        background: #ef6445;
                    }

        #footer .copyright {
            border-top: 1px solid #0f2f57;
            text-align: center;
            padding-top: 30px;
        }

.homepage #footer .credits {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
}
.homepage #footer a{
    color:#fff;
    font-weight:700;
    text-decoration:none;
}

.showchatbar {
    bottom: 50px !important;
    width: 100px !important;
    height: 100px !important;
}

.table .thead-dark th {
    background-color: #e5e5e5;
    border-color: #e5e5e5;
    vertical-align: middle;
    width: 0px;
    border-bottom: 4px solid #666;
    color:#3f4d67;
}
#popup {
    display: none;
    position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.close {
    position: absolute;
    top: -16px;
    right: -15px;
    transition: all 200ms;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    opacity: 1;
    background: #333;
    padding: 0.1rem 0.6rem;
    border-radius: 50%;
}

.cus-college-ranking a {
    color: #27a4d6;
    text-align: center;
    font-size: 20px;
    padding: 0.5rem;
    font-weight: 800;
    background: #ececec;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}
.cus-college-ranking a:hover{
    cursor: pointer;
}
.cus-familyid {
    margin-top: 2%;
}

    .cus-familyid a {
        color: #000066;
        text-align: center;
        font-size: 20px;
        padding: 0.5rem;
        font-weight: 800;
        background: #ececec;
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
    }
    .cus-familyid a:hover{
        cursor: pointer;
    }
#popup img{
    width:600px;
    height:400px;
}

        @media only screen and (min-width: 300px) and (max-width: 466px)  {
            /*Top header css*/
            .homepage .cus-maintop-banner a{
                padding: 0rem !important;
            }
            .homepage .cus-maintop-banner{
                text-align: center;
            }
            #footer .footer-top .footer-info {
                margin: -20px 0 30px 0;
            }
            #footer .text-left {
                text-align: center !important;
            }
            #footer .text-right {
                text-align: center !important;
            }
            .cus-maintop-banner #exchanger {
                text-align: center !important;
            }
            .section-title h2::after{
                display:none;
            }
            .cus-helpdesk .text-left{
                text-align:center !important;
            }
            .cus-helpdesk .text-right {
                text-align: center !important;
            }
            .cus-familyid a {
                font-size:14px !important;
            }
            .cus-college-ranking a {
                font-size: 14px !important;
                
            }
            .cus-college-ranking {
                margin-top: 4%;
                margin-bottom: 4%;
            }
            #popup img {
                max-width: 300px !important;
    
            }
            .section-title h2 {
                line-height:17px !important;
            }
            .cus-timing h3 {
                font-size: 14px !important;
                text-align: center;
            }
            .cus-mobile h3 {
                font-size: 14px !important;
                text-align: center;
            }
            .cus-emailid h3 {
                font-size: 14px !important;
                text-align: center;
            }
            .cta .cta-btn-login{
                width: 75%;
                cursor: pointer;
            }
            .cta .cta-btn{
                width: 75%;
                cursor: pointer;
            }
        }
        @media only screen and (min-width: 467px) and (max-width: 640px)  {
            .mobile-nav-toggle{
                top:75px;
            }
            .homepage .cus-maintop-banner{
                text-align: center;
            }
            .cus-timing h3 {
                font-size: 14px !important;
                text-align: center;
            }
            .cus-mobile h3 {
                font-size: 14px !important;
                text-align: center;
            }
            .cus-emailid h3 {
                font-size: 14px !important;
                text-align: center;
            }
        }
        @media only screen and (min-width: 768px) and (max-width: 990px)  {
            .mobile-nav-toggle{
                top:100px;
            }
            .header{
                padding:0.8rem;
            }
            .cus-important{
                margin-top: 2%;
            }
            .cus-college-ranking a, .cus-familyid a{
                font-size: 16px;
            }
            .cus-dashboard{
                padding:0;
            }
            .homepage .cus-maintop-banner a{
                font-size: 10px;
                
            }
            .cus-links{
                position: sticky;
            }
        }
        @media only screen and (min-width: 991px) and (max-width: 1200px)  {
            .cus-dashboard{
                padding:0;
            }
            .homepage .cus-maintop-banner a{
                font-size: 12px;
                
            }
            .nav-menu a{
                font-size: 11px;
            }
            .cus-right-button {
                margin-top: 0.2rem;
            }
            .cus-right-button a{
                font-size: 11px;
            }
        }