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

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}
/*--------------------------------------
    Top bar css and css changer
*/
.homepage .cus-maintop-banner {
    background: #492A7F;
    height: 32px;
}

    .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: 4px 10px;
    }

.cus-maintop-banner a:hover {
    color: #004e97;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s ease-in 0s;
}

.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: all 0.5s;
  z-index: 997;
  background: linear-gradient(45deg, #E91E63 -132%, #0c2e8a 100%);
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  height: 50px;
}
#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%;
    }
}
    @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: 10px 0 10px 15px;
        }

    .nav-menu a {
        display: block;
        position: relative;
        color: #fff;
        transition: 0.3s;
        font-size: 14px;
        font-family: "Open Sans", sans-serif;
    }

        .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
            color: #E91E63;
            background-color: #fff;
            display: block;
            transition: 0.3s;
            padding: 8px 25px 9px 25px;
            text-decoration: none;
            border-radius: 5px;
        }

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

    /* 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: fixed;
        top: 35px;
        left: 0px;
        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:#fff;
        }

    .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: #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;
        margin-left: 2px;
        margin-top: 1rem;
        height: 53%;
    }

    /*@-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%;
    }

    .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);
        height: 30%
    }

    .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%;
    margin-bottom: 5%;
}
/*.cus-rightsection .card-body {
        padding: 0.6rem;
    }*/
.homepage .card ul li a {
    text-decoration: none;
    color: #492A7F;
}
    /*--------------------------------------------------------------
#Notification
*/
    .holder {
        background-color: #492A7F;
        width: 100%;
        /*height: 170px;*/
        overflow: hidden;
        padding: 10px;
        font-family: Helvetica;
    }

        .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: #fff;
                    text-decoration: none;
                }
    /*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

    section {
        padding: 10px 0;
    }

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

    .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: 28px;
            position: relative;
            font-size: 15px;
        }

            .about .content ul li + li {
                margin-top: 10px;
            }

        .about .content ul i {
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 20px;
            color: #E91E63;
            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
--------------------------------------------------------------*/
    .cta {
        padding: 14px 0;
        background: #492A7F;
    }

        .cta h5 {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .cta p {
            color: #fff;
        }

        .cta .cta-btn {
            font-family: "Raleway", sans-serif;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            display: inline-block;
            padding: 10px 35px;
            border-radius: 4px;
            transition: 0.5s;
            margin-top: 10px;
            border: 2px solid #E91E63;
            color: #fff;
            text-transform: uppercase;
        }

            .cta .cta-btn:hover {
                background: #E91E63;
                border: 2px solid #E91E63;
                text-decoration: none;
            }



    /*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.homepage #footer {
    background: #071527;
    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: #492A7F;
    border-color: #492A7F;
    width: 1%;
}
#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: #492A7F;
    text-align: center;
    font-size: 24px;
    padding: 0.5rem;
    font-weight: 800;
    border: 1px solid #fff;
    border-radius: 4px;
    background: #f9f9f9;
    text-decoration: none;
}

.cus-familyid {
    margin-top: 2%;
    margin-bottom: 5%;
}

    .cus-familyid a {
        color: #E91E63;
        text-align: center;
        font-size: 24px;
        padding: 0.5rem;
        font-weight: 800;
        border: 1px solid #fff;
        border-radius: 4px;
        background: #f9f9f9;
        text-decoration: none;
    }
#popup img{
    width:600px;
    height:400px;
}
    @media (max-width: 575px) {
        #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:18px !important;
        }
        .cus-college-ranking a {
            font-size: 18px !important;
        }
        #popup img {
            max-width: 300px !important;

        }
        .section-title h2 {
            line-height:17px !important;
        }
        }