* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.section-space {
    padding: 5rem 0;
}

a {
    text-decoration: none;
}

.h100 {
    height: 100% !important;
}

.cover {
    object-fit: cover !important;
}

.relative {
    position: relative !important;
}

.contain {
    object-fit: contain !important;
}

.bg-gradient {
    /*background-color: #29539b;*/
    /*background-image: linear-gradient(315deg, #29539b 0%, #1e3b70 74%) !important;*/
    background: #0b3375;
}

.red-gradient {
    /*background-color: #990000;*/
    /*background-image: linear-gradient(147deg, #990000 0%, #ff0000 74%);*/
    /*background-color: #feae96;*/
    /*background-image: linear-gradient(315deg, #feae96 0%, #fe0944 74%);*/
    background: #c12045;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0 !important;
    left: 100%;
    margin-top: 0px;
    margin-left: 0px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -95%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.dropdown-menu {
    background: #000;
    margin: 0;
    padding: 10px;
    border-radius: 0;
}

.dropdown-menu a {
    color: #fff !important;
    font-size: 14px;
}

.dropdown-menu .dropdown-item:hover {
    background: #fff !important;
    color: #000 !important;
}

.dropdown-menu .dropdown-item:hover a {
    background: #fff !important;
    color: #000 !important;
    text-decoration: none;
}

.text-blue {
    color: #0b3375;
}

.bg-blue {
    background: #0b3375;
}

.t-14 {
    font-size: 14px;
}

.t-16 {
    font-size: 16px;
}

.t-18 {
    font-size: 18px;
}

.t-20 {
    font-size: 20px;
}

.t-22 {
    font-size: 22px;
}

.wfit {
    width: fit-content;
}

.top-strip span:not(:first-child) {
    margin-left: 10px;
}

.top-strip span a {
    color: #fff;
    font-size: 14px;
}

.right-strip span:not(:last-child) {
    margin-right: 20px;
}

.right-strip span a {
    color: #fff;
    font-size: 24px;
}

.main-banner-index {
    height: 550px;
}

.features {
    position: relative;
    margin-top: -3rem;
}

.features .icon {
    font-size: 40px;
    color: #fff;
}

.features .text {
    height: 100%;
    font-size: 20px;
    padding: 10px;
}

.features .text p {
    position: relative;
    top: 5px;
    color: #fff;
}

.youtube_video {
    height: 450px;
    position: relative;
}

.youtube_video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
}

.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #374d7b;
    color: #fff;
    display: grid;
    place-content: center;
    font-size: 50px;
    z-index: 9;
    cursor: pointer;
}

.youtube-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    animation: flipflop 3s ease-in-out infinite;
    border: 1px solid #000;
    z-index: -1;
}

.youtube-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    animation: flipflop2 3s ease-in-out 0.5s infinite;
    border: 1px solid #000;
    z-index: -1;
    transition-delay: 0.5s;
}

@keyframes flipflop {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}

@keyframes flipflop2 {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}

.youtube-icon i {
    position: relative;
    left: 4px;
}

.quick_links_box img {
    border: 1px solid #ddd;
}

.online_portal .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /*   background-color: #990000;*/
    /*background-image: linear-gradient(147deg, #990000 0%, #ff0000 74%) !important;*/
    background-color: #feae96;
    background-image: linear-gradient(315deg, #feae96 0%, #fe0944 74%) !important;
}

.online_portal a {
    color: #000;
}

.online_portal .text h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px !important;
}

.section-title h2 {
    font-weight: 700;
    font-size: 30px;
    color: #29539b;
}

.section-title {
    border-bottom: 1px dashed #c12045;
    padding-bottom: 1rem;
}

.section-title h2 span {
    color: #c12045;
}

.section-title p {
    font-size: 20px;
    font-weight: 700;
}

.section_title h2 {
    position: relative;
    font-size: 30px;
    font-weight: bolder;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation: fillcolor 1s ease-in-out infinite;
}

/*@keyframes fillcolor {*/

/*    0% {*/

/*        background: -webkit-linear-gradient(#eee, #333);*/

/*        -webkit-background-clip: text;*/

/*        -webkit-text-fill-color: transparent;*/

/*    }*/

/*}*/

.section_title h2::first-letter {
    color: #c12045;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget ul li {
    padding: 6px;
    position: relative;
    list-style-image: url(../img/checkmark.png);
}

.footer-widget ul li a {
    font-size: 16px;
    color: #fff;
}

.bg-black {
    background: #000 !important;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: #fff !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff !important;
    margin-right: 10px;
}

.navbar-light .navbar-nav .dropdown-menu {
    position: absolute;
    top: 95%;
}

/*.navbar-light .navbar-nav .dropdown-menu::before {*/

/*    content: "";*/

/*    position: absolute;*/

/*    top: 0px;*/

/*    left: 50%;*/

/*    transform: translateX(-50%);*/

/*    width: 0;*/

/*    height: 0;*/

/*    border-left: 10px solid transparent;*/

/*    border-right: 10px solid transparent;*/

/*    border-top: 10px solid #c12045;*/

/*}*/

.working {
    width: 100%;
    min-height: 100%;
    box-shadow: 0px 0px 11px #bfb1da;
    position: relative;
    background: #fff;
}

.faculties figure {
    height: 280px;
}

.faculties figure img {
    object-fit: cover;
    object-position: top;
    height: 100%;
}

.section-5 .row .col-md-6 .working::before {
    position: absolute;
    bottom: -77px;
    right: 0;
    font-size: 70px;
    font-weight: 900;
    color: #eee;
    z-index: -1;
}

.section-5 .row .col-md-6:nth-child(1) .working::before {
    content: "01";
}

.working figure {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin-bottom: 0;
}

.working figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    transition: all 0.5s;
}

.working figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
}

.working .text {
    padding: 15px;
}

.section-5 .row .col-md-6 .working::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 29px;
    width: 50%;
    height: 20px;
    background: #fff;
    box-shadow: 0 2px 2px #a997c929;
}

.working .text h5 {
    font-size: 15px;
    color: #66404c;
    font-weight: 300;
}

.working .text h5 a {
    font-size: 15px;
    color: #66404c;
    font-weight: 300;
}

.section-5 .row .col-md-6:nth-child(2) .working::before {
    content: "02";
}

.section-5 .row .col-md-6:nth-child(3) .working::before {
    content: "03";
}

.section-5 .row .col-md-6:nth-child(4) .working::before {
    content: "04";
}

.text-justify {
    text-align: justify;
}

.section-6 .text-about {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    z-index: 9;
    text-align: center;
}

.section-6 .text-about h4 {
    font-size: 15px;
    color: #fff;
}

.section-6 .text-about h3 {
    font-size: 18px;
    font-weight: bolder;
    color: #fff;
}

.foundation-year {
    position: absolute;
    bottom: -20px;
    left: -20px;
    box-shadow: 3px 5px 4px #ffffff;
    border-radius: 5px;
}

.notification {
    height: 350px;
}

.news .icon {
    width: 80px;
    height: 80px;
}

.news .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news .text {
    padding: 10px;
}

.quick_links li {
    list-style: none;
    padding: 5px 0;
}

.quick_links li a {
    width: 100%;
}

.online_portal .w-100 {
    overflow: hidden;
}

.owl-nav .owl-next {
    position: absolute;
    right: -21px;
    top: 25%;
    width: 40px;
    height: 40px;
    background: #1e3b70 !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 30px !important;
    display: grid !important;
    place-content: center;
}

.owl-nav .owl-prev {
    position: absolute;
    left: -21px;
    top: 25%;
    width: 40px;
    height: 40px;
    background: #1e3b70 !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 30px !important;
    display: grid !important;
    place-content: center;
}

.owl-nav button span {
    position: relative;
    margin: 0;
    vertical-align: 0;
    padding: 0;
    top: -2px;
}

.bg_admission {
    background: linear-gradient(90deg, #fff 56%, transparent 44%), url(../img/admission.jpg);
    background-position: right;
    background-repeat: no-repeat;
}

@media (max-width: 767.02px) {
    .navbar-light .navbar-toggler {
        border: none;
        outline: none;
        background: none;
        box-shadow: none;
    }
    .navbar-light .navbar-toggler-icon {
        background-image: none;
        border-bottom: 1px solid #000;
        position: relative;
        height: 1em;
        top: 0.1em;
        transition: all 0.5s;
    }
    .navbar-light .navbar-toggler-icon::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: #000;
        transition: all 0.5s;
    }
    .navbar-light .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #000;
        transition: all 0.5s;
    }
    .navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(45deg);
    }
    .navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(-45deg) translateY(3px) translateX(-6px);
    }
    .navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        border-bottom-color: transparent;
    }
    .top-strip span:not(:first-child) {
        margin-left: 5px;
    }
    .top-strip span a {
        color: #fff;
        font-size: 12px;
    }
    .main-banner-index {
        height: 371px;
    }
    .features .icon {
        font-size: 20px;
        color: #fff;
        margin-left: auto;
    }
    .features .text {
        height: 100%;
        font-size: 14px;
        padding: 5px;
    }
    .features .w-100 {
        flex-direction: column;
    }
    .section-title h2 {
        font-size: 20px;
    }
    .section_title h2 {
        font-size: 20px;
    }
    .section-title p {
        font-size: 14px;
    }
    p,
    ul li,
    span,
    a,
    li a,
    .btn,
    .t-14 {
        font-size: 13px;
    }
    .foundation-year h3 {
        font-size: 20px;
    }
    .foundation-year h4 {
        font-size: 16px;
    }
    .foundation-year h3 {
        font-size: 20px;
    }
    .youtube_video {
        height: 250px;
    }
    .youtube-icon {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
    .section-space {
        padding: 2rem 0;
    }
    .quick_links li {
        list-style: none;
        padding: 5px 0;
        width: 48%;
        float: left;
        margin-right: 5px;
    }
    .online_portal .text h4 {
        color: #fff;
        text-transform: uppercase;
        font-size: 14px !important;
    }
    .t-18 {
        font-size: 14px !important;
    }
    .faculties figure {
        height: 208px;
    }
    .section-6 .text-about h3,
    .section-6 .text-about h4 {
        font-size: 13px;
    }
    .t-20 {
        font-size: 16px !important;
    }
    tbody,
    td,
    tfoot,
    th,
    thead,
    tr {
        font-size: 11px !important;
    }
}