:root {
    --text-size: 1px;
    --upper-navigation-height: 45px;
    --logo-strip-height: 85px;
    --lower-navigation-height: 50px;

    --theme-clr-one: #e95035;
    --theme-clr-two: #e5136c;
    --theme-clr-three: #5c71de;
    --theme-clr-four: #723bcd;

    --gradient-one: linear-gradient(135deg, var(--theme-clr-one) 0%, var(--theme-clr-two) 100%);
    --gradient-two: linear-gradient(to right, var(--theme-clr-three) -50%, var(--theme-clr-four) 100%);
    --theme-clr-one-filter: invert(56%) sepia(76%) saturate(5459%) hue-rotate(342deg) brightness(96%) contrast(90%);

    --adm-theme-clr-one: #be2232;
    --adm-theme-clr-two: #8b191d;
    --adm-theme-clr-three: #334398;
    --adm-theme-clr-four: #1d184e;
    --adm-theme-clr-five: #ffcc05;

    --adm-theme-clr-five-filter: invert(91%) sepia(15%) saturate(6818%) hue-rotate(351deg) brightness(101%) contrast(105%);
    --adm-theme-clr-three-filter: invert(27%) sepia(13%) saturate(4695%) hue-rotate(203deg) brightness(92%) contrast(98%);
    --white-filter: invert(85%) sepia(0%) saturate(7500%) hue-rotate(67deg) brightness(112%) contrast(112%);

    --adm-theme-gradient-one: linear-gradient(45deg, var(--adm-theme-clr-one), var(--adm-theme-clr-two), var(--adm-theme-clr-three), var(--adm-theme-clr-four), var(--adm-theme-clr-five));
    --adm-theme-gradient-two: linear-gradient(45deg, var(--adm-theme-clr-one), var(--adm-theme-clr-two));
    --adm-theme-gradient-three: linear-gradient(45deg, var(--adm-theme-clr-three), var(--adm-theme-clr-four));
}

@font-face {
    font-family: mont-light;
    src: url("../../fonts/montserrat/Montserrat-Light.ttf")
}

@font-face {
    font-family: mont-regular;
    src: url("../../fonts/montserrat/Montserrat-Regular.ttf")
}

@font-face {
    font-family: spartan-regular;
    src: url("../../fonts/spartan/LeagueSpartan-Regular.ttf")
}

@font-face {
    font-family: spartan-medium;
    src: url("../../fonts/spartan/LeagueSpartan-Medium.ttf")
}

@font-face {
    font-family: spartan-semibold;
    src: url("../../fonts/spartan/LeagueSpartan-SemiBold.ttf")
}

@font-face {
    font-family: corinthia-regular;
    src: url("../../fonts/corinthia/Corinthia-Regular.ttf")
}

@font-face {
    font-family: corinthia-bold;
    src: url("../../fonts/corinthia/Corinthia-Bold.ttf")
}

@font-face {
    font-family: lobster-regular;
    src: url("../../fonts/lobster/Lobster-Regular.ttf")
}

@font-face {
    font-family: lobster-regular;
    src: url("../../fonts/lobster/Lobster-Regular.ttf")
}

@font-face {
    font-family: poppins-bold;
    src: url("../../fonts/Poppins/Poppins-Bold.ttf")
}

*,
*::after,
*::before {
    transition: all .5s ease-in-out
}

body {
    font-size: 18px;
    font-family: spartan-regular
}

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

a {
    text-decoration: none
}

img {
    max-width: 100%
}

h1,
h2,
h3,
p,
a,
div {
    color: #023
}

p {
    margin-bottom: 0
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important
}

.box-shadow-type-1 {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.swal-text {
    font-size: 20px;
    line-height: 1.2;
    text-align: center
}

.swal-title {
    font-size: 36px;
    color: #a5dc86
}

.swal-footer {
    text-align: center
}

.swal-button,
.swal-button:not([disabled]):hover {
    background-color: #a5dc86
}

.fancybox-button svg path {
    fill: #fff
}

.fancybox-fx-slide-in-out.fancybox-slide--previous {
    transform: translateX(-100%)
}

.fancybox-fx-slide-in-out.fancybox-slide--next {
    transform: translateX(100%)
}

.fancybox-fx-slide-in-out.fancybox-slide--current {
    transform: translateX(0)
}

button {
    outline: none;
    border: none;
    background: unset
}

.glowing__btn {
    cursor: pointer;
    border: none;
    outline: none;
    color: #fff;
    position: relative;
    z-index: 0;
    padding: 5px 20px 4px;
    height: 100%;
    width: 80%;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    flex-direction: column;
    line-height: 1;
    align-items: center;
    font-size: 15px
}

.glowing__btn:hover {
    color: #fff
}

.glowing__btn:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 10px
}

.glowing__btn:before {
    content: "";
    background: linear-gradient(45deg, #ff0000, #ff7300, #002bff, #7a00ff, #ff00c8, #ff0000);
    /* background: var(--adm-theme-gradient-one); */
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
    border-radius: 10px
}

.glowing__btn:active {
    color: #fff
}

.glowing__btn:active:after {
    background: rgba(0, 0, 0, 0)
}

@keyframes glowing {
    0% {
        background-position: 0 0
    }

    50% {
        background-position: 400% 0
    }

    100% {
        background-position: 0 0
    }
}

.this-title {
    position: relative;
    font-size: 42px;
    font-family: spartan-semibold;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 5rem
}

.this-title.underline-dash {
    padding-bottom: 10px
}

.this-title.underline-dash.underline-dash-adm-theme-clr-three::before,
.this-title.underline-dash.underline-dash-adm-theme-clr-three::after {
    background-color: var(--adm-theme-clr-three);
}

.this-title.underline-dash::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 15%;
    height: 5px;
    background-color: #fe553c
}

.this-title.underline-dash::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 30%;
    height: 1px;
    margin-top: 15px;
    background-color: #fe553c
}

.this-title.underline-dash.center::before {
    left: 50%;
    transform: translate(-50%, 0)
}

.this-title.underline-dash.center::after {
    left: 50%;
    transform: translate(-50%, 0)
}

.this-title.underline-dash.left::before {
    left: 0;
    transform: translate(0, 0)
}

.this-title.underline-dash.left::after {
    left: 0;
    transform: translate(0, 0)
}

.this-sub-title {
    font-size: 36px;
    font-family: spartan-medium
}

.this-text {
    font-size: 18px
}

.primary-background {
    background: #723bcd
}

.secondary-background {
    background: #5c71de
}

.tertiary-background {
    background: #fe553c
}

.adm-theme-clr-one {
    color: var(--adm-theme-clr-one) !important;
}

.adm-theme-clr-two {
    color: var(--adm-theme-clr-two) !important;
}

.adm-theme-clr-three {
    color: var(--adm-theme-clr-three) !important;
}

.adm-theme-clr-four {
    color: var(--adm-theme-clr-four) !important;
}

.adm-theme-clr-five {
    color: var(--adm-theme-clr-five) !important;
}

.primary-clr {
    color: #723bcd
}

.secondary-clr {
    color: #5c71de
}

.tertiary-clr {
    color: #fe553c
}

.black-clr {
    color: #023
}

.web-bg-primary {
    background: #723bcd !important
}

.web-bg-secondary {
    background: #5c71de !important
}

.web-bg-tertiary {
    background: #fe553c !important
}

.ff-medium {
    font-family: spartan-medium
}

.ff-semibold {
    font-family: spartan-semibold
}

.text-initial {
    text-transform: initial !important
}

.w-one-third {
    width: 33.3%
}

.row-y-gap-25 {
    gap: 25px 0
}

.web-bg-gradient {
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%)
}

.web-gradient-card-body {
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%)
}

.web-gradient-card-body * {
    color: #fff
}

.secondaryBoxShadow {
    box-shadow: rgba(0, 0, 0, .07) 0px 1px 2px, rgba(0, 0, 0, .07) 0px 2px 4px, rgba(0, 0, 0, .07) 0px 4px 8px, rgba(0, 0, 0, .07) 0px 8px 16px, rgba(0, 0, 0, .07) 0px 16px 32px, rgba(0, 0, 0, .07) 0px 32px 64px
}

.web-card {
    border-radius: 5px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, .07) 0px 1px 2px, rgba(0, 0, 0, .07) 0px 2px 4px, rgba(0, 0, 0, .07) 0px 4px 8px, rgba(0, 0, 0, .07) 0px 8px 16px, rgba(0, 0, 0, .07) 0px 16px 32px, rgba(0, 0, 0, .07) 0px 32px 64px
}

.web-card.border-left {
    border-left: 7px solid #fe553c
}

.web-card.web-card-padding {
    padding: 35px 30px
}

.web-card.web-card-tb-padding {
    padding: 35px 0
}

.web-card.web-card-top-padding {
    padding-top: 35px
}

.web-card.web-card-bottom-padding {
    padding-bottom: 35px
}

.web-card .web-card-img {
    border-radius: inherit;
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.web-card .web-card-body {
    padding: 3rem 1rem
}

.web-card .web-card-body .web-card-title {
    font-size: 24px;
    margin-bottom: 0
}

.web-card .web-card-body .web-card-sub-title {
    font-size: 20px
}

.floated-title-card {
    position: relative
}

.floated-title-card .title {
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    min-width: 200px;
    height: 60px;
    margin: 0 auto;
    position: absolute;
    top: -30px;
    z-index: 4;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, .19) 0px 10px 20px, rgba(0, 0, 0, .23) 0px 6px 6px
}

.floated-title-card .title.to-left {
    left: -5%
}

.floated-title-card .title.to-right {
    right: -5%
}

.floated-title-card .title.to-center {
    left: 50%;
    transform: translate(-50%, 0)
}

.web-btn-one {
    position: relative;
    background: #fe553c;
    border: none;
    color: #fff;
    padding: 5px 12px 2px 12px;
    font-weight: 500;
    cursor: pointer;
    transition-duration: .3s;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.web-btn-one.adm-theme-btn {
    background: var(--adm-theme-clr-five);
    color: var(--adm-theme-clr-one);
    transition: unset;
}

.web-btn-one.adm-theme-btn:hover {
    color: var(--adm-theme-clr-five);
}

.web-btn-one.adm-theme-btn::after {
    background: var(--adm-theme-clr-one);
}

.web-btn-one span {
    pointer-events: none
}

.web-btn-one::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #723bcd;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: all .3s ease
}

.web-btn-one:hover {
    color: #fff
}

.web-btn-one>i {
    transform: translate(0, -1px)
}

.web-btn-one:hover i {
    transform: translate(3px, -1px)
}

.web-btn-one:hover i.to-right {
    transform: translate(-3px, -1px)
}

.web-btn-one:hover::after {
    left: 0;
    width: 100%
}

.web-btn-one:active {
    top: 2px
}

.web-btn-one.spacing-top {
    margin-top: 1.5rem
}

.web-btn-one.spacing-bottom {
    margin-bottom: 30px
}

.web-btn-two {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    text-align: center;
    text-transform: capitalize
}

.web-btn-two.no-flex {
    display: inline-block;
    padding: 8px 20px
}

.web-btn-two.dark-tertiary {
    color: #023;
    border: 2px solid #fe553c
}

.web-btn-two:hover,
.web-btn-two:focus {
    color: #fff;
    outline: 0
}

.web-btn-two.effect {
    transition: box-shadow 300ms ease-in-out
}

.web-btn-two.effect:hover {
    box-shadow: 0 0 40px 40px #fe553c inset
}

.web-btn-two.w-min-300 {
    min-width: 300px
}

.last-line-center {
    -moz-text-align-last: center;
    text-align-last: center
}

.ml-auto {
    margin-left: auto !important
}

.mr-auto {
    margin-right: auto !important
}

.web-list-style li {
    font-size: 17px;
    text-align: justify;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    line-height: 1.2
}

.web-list-style li::before {
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    height: 21.25px;
    width: 20.4px
}

.web-list-style li.map::before {
    content: ""
}

.web-list-style li.phone::before {
    content: ""
}

.web-list-style li.email::before {
    content: ""
}

.web-list-style.lh-one-and-half li {
    line-height: 1.5
}

.web-list-style.distance li+li {
    margin-top: 8px
}

.web-list-style.li-white li {
    color: #fff
}

.web-list-style.white li a {
    color: #fff
}

.web-list-style.hover li:hover {
    transform: translate(5px, 0)
}

.web-list-style.graduate li::before {
    content: "" !important
}

.web-list-style.arrow li::before {
    content: ""
}

.web-list-style.link li::before {
    content: ""
}

.web-list-style.check li::before {
    content: ""
}

.web-list-style.awards li::before {
    content: ""
}

.web-list-style.skill li::before {
    content: "";
    background-image: url("../images/icons-png/skill.png");
    filter: invert(55%) sepia(37%) saturate(7439%) hue-rotate(214deg) brightness(92%) contrast(89%);
    background-repeat: no-repeat;
    background-size: cover
}

.web-list-style.csr li::before {
    content: "";
    background-image: url("../images/icons-png/csr.png");
    filter: invert(55%) sepia(37%) saturate(7439%) hue-rotate(214deg) brightness(92%) contrast(89%);
    background-repeat: no-repeat;
    background-size: cover
}

.web-list-style.mech-faci li::before {
    content: "";
    background-image: url("../images/icons-png/mech-faci.png");
    filter: invert(55%) sepia(37%) saturate(7439%) hue-rotate(214deg) brightness(92%) contrast(89%);
    background-repeat: no-repeat;
    background-size: cover
}

.web-list-style.mission li::before {
    content: "";
    background-image: url("../images/icons-svg/bullseye-svgrepo-com.svg");
    filter: invert(55%) sepia(37%) saturate(7439%) hue-rotate(214deg) brightness(92%) contrast(89%);
    background-repeat: no-repeat;
    background-size: cover
}

.web-list-style.primary li::before {
    color: #723bcd
}

.web-list-style.secondary li::before {
    color: #5c71de
}

.web-list-style.tertiary li::before {
    color: #fe553c
}

.web-list-style.no-justify li {
    text-align: left
}

.web-list-style.no-padding li {
    padding: 0
}

.space-y-1>*+* {
    margin-top: calc(.25rem*1) !important
}

.space-y-2>*+* {
    margin-top: calc(.25rem*2) !important
}

.space-y-3>*+* {
    margin-top: calc(.25rem*3) !important
}

.space-y-4>*+* {
    margin-top: calc(.25rem*4) !important
}

.space-y-5>*+* {
    margin-top: calc(.25rem*5) !important
}

.space-y-6>*+* {
    margin-top: calc(.25rem*6) !important
}

.space-y-7>*+* {
    margin-top: calc(.25rem*7) !important
}

.space-y-8>*+* {
    margin-top: calc(.25rem*8) !important
}

.space-y-9>*+* {
    margin-top: calc(.25rem*9) !important
}

.space-y-10>*+* {
    margin-top: calc(.25rem*10) !important
}

.space-y-11>*+* {
    margin-top: calc(.25rem*11) !important
}

.space-y-12>*+* {
    margin-top: calc(.25rem*12) !important
}

.space-y-13>*+* {
    margin-top: calc(.25rem*13) !important
}

.space-y-14>*+* {
    margin-top: calc(.25rem*14) !important
}

.space-y-15>*+* {
    margin-top: calc(.25rem*15) !important
}

.space-y-16>*+* {
    margin-top: calc(.25rem*16) !important
}

.space-y-17>*+* {
    margin-top: calc(.25rem*17) !important
}

.space-y-18>*+* {
    margin-top: calc(.25rem*18) !important
}

.space-y-19>*+* {
    margin-top: calc(.25rem*19) !important
}

.space-y-20>*+* {
    margin-top: calc(.25rem*20) !important
}

.space-y-21>*+* {
    margin-top: calc(.25rem*21) !important
}

.space-y-22>*+* {
    margin-top: calc(.25rem*22) !important
}

.space-y-23>*+* {
    margin-top: calc(.25rem*23) !important
}

.space-y-24>*+* {
    margin-top: calc(.25rem*24) !important
}

.space-y-25>*+* {
    margin-top: calc(.25rem*25) !important
}

.space-y-26>*+* {
    margin-top: calc(.25rem*26) !important
}

.space-y-27>*+* {
    margin-top: calc(.25rem*27) !important
}

.space-y-28>*+* {
    margin-top: calc(.25rem*28) !important
}

.space-y-29>*+* {
    margin-top: calc(.25rem*29) !important
}

.space-y-30>*+* {
    margin-top: calc(.25rem*30) !important
}

.space-y-31>*+* {
    margin-top: calc(.25rem*31) !important
}

.space-y-32>*+* {
    margin-top: calc(.25rem*32) !important
}

.space-y-33>*+* {
    margin-top: calc(.25rem*33) !important
}

.space-y-34>*+* {
    margin-top: calc(.25rem*34) !important
}

.space-y-35>*+* {
    margin-top: calc(.25rem*35) !important
}

.text-size-1 {
    font-size: calc(var(--text-size)*1) !important
}

.text-size-2 {
    font-size: calc(var(--text-size)*2) !important
}

.text-size-3 {
    font-size: calc(var(--text-size)*3) !important
}

.text-size-4 {
    font-size: calc(var(--text-size)*4) !important
}

.text-size-5 {
    font-size: calc(var(--text-size)*5) !important
}

.text-size-6 {
    font-size: calc(var(--text-size)*6) !important
}

.text-size-7 {
    font-size: calc(var(--text-size)*7) !important
}

.text-size-8 {
    font-size: calc(var(--text-size)*8) !important
}

.text-size-9 {
    font-size: calc(var(--text-size)*9) !important
}

.text-size-10 {
    font-size: calc(var(--text-size)*10) !important
}

.text-size-11 {
    font-size: calc(var(--text-size)*11) !important
}

.text-size-12 {
    font-size: calc(var(--text-size)*12) !important
}

.text-size-13 {
    font-size: calc(var(--text-size)*13) !important
}

.text-size-14 {
    font-size: calc(var(--text-size)*14) !important
}

.text-size-15 {
    font-size: calc(var(--text-size)*15) !important
}

.text-size-16 {
    font-size: calc(var(--text-size)*16) !important
}

.text-size-17 {
    font-size: calc(var(--text-size)*17) !important
}

.text-size-18 {
    font-size: calc(var(--text-size)*18) !important
}

.text-size-19 {
    font-size: calc(var(--text-size)*19) !important
}

.text-size-20 {
    font-size: calc(var(--text-size)*20) !important
}

.text-size-21 {
    font-size: calc(var(--text-size)*21) !important
}

.text-size-22 {
    font-size: calc(var(--text-size)*22) !important
}

.text-size-23 {
    font-size: calc(var(--text-size)*23) !important
}

.text-size-24 {
    font-size: calc(var(--text-size)*24) !important
}

.text-size-25 {
    font-size: calc(var(--text-size)*25) !important
}

.text-size-26 {
    font-size: calc(var(--text-size)*26) !important
}

.text-size-27 {
    font-size: calc(var(--text-size)*27) !important
}

.text-size-28 {
    font-size: calc(var(--text-size)*28) !important
}

.text-size-29 {
    font-size: calc(var(--text-size)*29) !important
}

.text-size-30 {
    font-size: calc(var(--text-size)*30) !important
}

.text-size-31 {
    font-size: calc(var(--text-size)*31) !important
}

.text-size-32 {
    font-size: calc(var(--text-size)*32) !important
}

.text-size-33 {
    font-size: calc(var(--text-size)*33) !important
}

.text-size-34 {
    font-size: calc(var(--text-size)*34) !important
}

.text-size-35 {
    font-size: calc(var(--text-size)*35) !important
}

.text-size-36 {
    font-size: calc(var(--text-size)*36) !important
}

.text-size-37 {
    font-size: calc(var(--text-size)*37) !important
}

.text-size-38 {
    font-size: calc(var(--text-size)*38) !important
}

.text-size-39 {
    font-size: calc(var(--text-size)*39) !important
}

.text-size-40 {
    font-size: calc(var(--text-size)*40) !important
}

.text-size-41 {
    font-size: calc(var(--text-size)*41) !important
}

.text-size-42 {
    font-size: calc(var(--text-size)*42) !important
}

.text-size-43 {
    font-size: calc(var(--text-size)*43) !important
}

.text-size-44 {
    font-size: calc(var(--text-size)*44) !important
}

.text-size-45 {
    font-size: calc(var(--text-size)*45) !important
}

.text-size-46 {
    font-size: calc(var(--text-size)*46) !important
}

.text-size-47 {
    font-size: calc(var(--text-size)*47) !important
}

.text-size-48 {
    font-size: calc(var(--text-size)*48) !important
}

.text-size-49 {
    font-size: calc(var(--text-size)*49) !important
}

.text-size-50 {
    font-size: calc(var(--text-size)*50) !important
}

.coe.web-list-style li {
    font-size: 18px
}

.coe.web-list-style li::before {
    top: 5px
}

.coe.web-list-style.top-negative-2 li::before {
    top: -2px
}

.training-images-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 20px
}

.training-images-flex img {
    width: 32%
}

.coe-flex {
    display: flex;
    justify-content: space-evenly
}

.coe-flex .coe-card {
    width: 25%;
    text-align: center
}

.coe-flex .coe-card .circular-img {
    width: 200px;
    height: 200px;
    border: 3px solid #000;
    border-radius: 50%;
    margin: 0 auto
}

.coe-flex .coe-card .circular-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.coe-flex .coe-card .designation {
    color: #853100;
    font-family: spartan-semibold;
    line-height: 1.2;
    font-size: 20px;
    margin-top: 8px
}

.coe-flex .coe-card .gradient-bg {
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgb(221, 60, 57) 30%, rgb(189, 103, 165) 70%);
    display: inline-block;
    transform: skew(-10deg);
    font-family: spartan-semibold;
    padding: 8px 24px 5px
}

.coe-flex .coe-card .gradient-bg.role {
    margin-top: 5px
}

.coe-flex .coe-card .gradient-bg.name {
    width: 100%;
    border-top: 2px solid #fff
}

.coe-contact-div {
    width: 100%;
    height: 450px;
    box-shadow: rgba(0, 0, 0, .24) 0px 3px 8px;
    padding: 25px
}

.coe-contact-div img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 0 -170px;
    object-position: 0 -170px
}

#mobile-fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100
}

#mobile-fixed-footer .footer-bar {
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%);
    height: 70px;
    box-shadow: rgba(0, 0, 0, .16) 0px 3px 6px, rgba(0, 0, 0, .23) 0px 3px 50px;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center
}

#mobile-fixed-footer .footer-bar>a {
    text-align: center;
    display: block;
    padding: 10px 0;
    color: #023
}

#mobile-fixed-footer .footer-bar>a img {
    display: inline-block;
    width: 24px;
    margin-bottom: 5px;
    filter: invert(100%) sepia(69%) saturate(218%) hue-rotate(272deg) brightness(112%) contrast(101%)
}

#mobile-fixed-footer .footer-bar>a>p {
    font-size: 12px;
    text-transform: uppercase;
    font-family: spartan-medium;
    text-align: center;
    margin-bottom: 0;
    color: #fff
}

.box-shadow-type-1 {
    box-shadow: rgba(0, 0, 0, .24) 0px 3px 8px
}

.box-shadow-type-2 {
    box-shadow: rgba(50, 50, 93, .25) 0px 13px 27px -5px, rgba(0, 0, 0, .3) 0px 8px 16px -8px
}

.box-shadow-type-3 {
    box-shadow: rgba(0, 0, 0, .16) 0px 3px 6px, rgba(0, 0, 0, .23) 0px 3px 6px
}

.box-shadow-type-4 {
    box-shadow: rgba(0, 0, 0, .24) 0px 3px 8px
}

.box-shadow-type-5 {
    box-shadow: rgba(0, 0, 0, .24) 0px 3px 8px
}

.box-shadow-type-6 {
    box-shadow: rgba(0, 0, 0, .24) 0px 3px 8px
}

.upper-navigation {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #023;
    z-index: 10;
}

.nav-ul-flex {
    display: flex;
    justify-content: space-between;
    height: 45px
}

.nav-ul-flex li {
    height: 100%
}

.nav-ul-flex li a {
    height: 100%;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1
}

.nav-ul-flex li a:hover {
    color: #fe553c;
    line-height: 1
}

#upper-navigation-bottom {
    top: -20%;
    background: #fff
}

#upper-navigation-bottom.fixed-to-top {
    top: 45px;
    opacity: 1
}

.logos-flex {
    display: flex;
    align-items: center;
    height: 90px
}

.gps-mobile-logo img {
    width: 130px
}

#logo-strip {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 10;
    height: var(--logo-strip-height);
    top: var(--upper-navigation-height);
    background: #fff;
    display: flex;
    align-items: center;
}

#logo-strip .logo-strip-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo-strip .logo-strip-container .accreditations-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

#logo-strip .logo-strip-container .logo-title-container {
    position: relative;
    display: flex;
    align-items: center;
}

#logo-strip .logo-strip-container .logo-title-container h1 {
    margin-bottom: 0;
    font-size: 58px;
    text-transform: uppercase;
    font-family: poppins-bold;
    color: #123498;
}

#logo-strip .logo-strip-container .logo-title-container .register-mark-img {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    right: -15px;
    filter: invert(14%) sepia(48%) saturate(3997%) hue-rotate(220deg) brightness(106%) contrast(103%);
}

#logo-strip .logo-strip-container .logo-title-container .badge-img {
    width: 85px;
}

#logo-strip .logo-strip-container .accreditations-container .years-img {
    width: 53px;
}

#logo-strip .logo-strip-container .accreditations-container .naac-img {
    width: 85px;
}

#logo-strip .logo-strip-container .accreditations-container .nba-img {
    width: 75px;
}

#lower-navigation {
    position: fixed;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%);
    z-index: 10;
    top: calc(var(--upper-navigation-height) + var(--logo-strip-height));
}

#lower-navigation.highest-top {
    top: 0;
    opacity: 1
}

#lower-navigation.highest-top .lower-nav-flex {
    margin-left: 12%
}

#lower-navigation.highest-top .lower-nav-flex>li>a {
    font-size: 15px
}

#lower-navigation #sistec-badge-div {
    position: relative;
    top: 35%
}

#lower-navigation #sistec-badge-div #sistec-badge {
    width: 70px;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 2
}

#lower-navigation #sistec-badge-div #sistec-badge.shift-to-top {
    opacity: 1;
    top: 30%
}

#lower-navigation .lower-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    /* margin-left: 12% */
}

#lower-navigation .lower-nav-flex>li {
    height: 100%
}

#lower-navigation .lower-nav-flex>li>a {
    height: 100%;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 15px;
    position: relative;
    line-height: 1
}

#lower-navigation .lower-nav-flex>li>a::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #023;
    z-index: -1;
    opacity: 0;
    transition: all .35s ease-out;
    border-right: 2px solid #fff
}

#lower-navigation .lower-nav-flex>li:hover a::before,
#lower-navigation .lower-nav-flex>li.active a::before {
    opacity: 1;
    right: 0;
    width: 100%
}

#lower-navigation .lower-nav-flex>li:hover .sub-menu-div {
    visibility: visible;
    opacity: 1;
    height: 500px;
    left: 0
}

#lower-navigation .lower-nav-flex>li .sub-menu-div {
    position: absolute;
    left: -100%;
    top: 100%;
    background: #fff;
    box-shadow: 0 10px 5px -10px #777;
    width: 100%;
    opacity: 0;
    height: 0;
    visibility: hidden;
    padding: 80px 0 20px
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content {
    display: flex;
    justify-content: space-between;
    gap: 25px
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .left {
    width: 27%
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .left .nav-list li {
    padding: 0 15px 10px 0;
    border-bottom: 1px solid #c6ced1;
    cursor: pointer;
    list-style: square;
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .left .nav-list li a {
    transition-duration: .2s;
    font-size: 17px;
    font-weight: 600;
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .left .nav-list li.active a {
    color: #fe553c
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .left .nav-list li+li {
    padding-top: 10px
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .right {
    width: 85%
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .right .sub-div {
    display: none
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .right .sub-div .content-flex {
    display: flex;
    gap: 25px
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .right .sub-div .content-flex .text-div {
    width: 40%
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .right .sub-div .content-flex .text-div>.title {
    color: #fe553c
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .right .sub-div .content-flex .text-div>p {
    font-size: 16px;
    line-height: 1.2
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .right .sub-div .content-flex .img-div {
    width: 60%
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .right .sub-div .content-flex .img-div>img {
    height: 260px;
    display: block;
    margin-left: auto
}

#lower-navigation .lower-nav-flex>li .sub-menu-div .sub-menu-content .right .sub-div.active {
    display: block
}

#others-li {
    position: relative
}

#others-li:hover .others-sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible
}

#others-li .others-sub-menu {
    position: absolute;
    top: 150%;
    right: 0;
    width: 250px;
    background: #fff;
    box-shadow: rgba(50, 50, 93, .25) 0px 6px 12px -2px, rgba(0, 0, 0, .3) 0px 3px 7px -3px;
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden
}

#others-li .others-sub-menu ul {
    padding: 15px
}

#others-li .others-sub-menu ul li {
    text-align: center
}

#others-li .others-sub-menu ul li a {
    text-transform: uppercase;
    font-size: 16px
}

#others-li .others-sub-menu ul li a:hover {
    color: #fe553c
}

#others-li .others-sub-menu ul li+li {
    margin-top: 8px
}

.erp-flex {
    display: flex;
    gap: 30px;
    justify-content: center
}

.erp-flex .erp-card {
    width: 300px;
    padding: 0 20px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, .07) 0 1px 2px, rgba(0, 0, 0, .07) 0 2px 4px, rgba(0, 0, 0, .07) 0 4px 8px, rgba(0, 0, 0, .07) 0 8px 16px, rgba(0, 0, 0, .07) 0 16px 32px, rgba(0, 0, 0, .07) 0 32px 64px;
    border-radius: 10px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.erp-flex .erp-card img {
    margin: 0 auto;
    display: block;
    width: auto;
    filter: invert(42%) sepia(78%) saturate(1811%) hue-rotate(335deg) brightness(101%) contrast(107%)
}

.erp-flex .erp-card .erp-card-title {
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 18px;
    line-height: 1
}

.erp-flex .erp-card .erp-card-sub-title {
    font-size: 13px;
    text-align: center
}

#upper-navigation-top.opacity-zero.opacity-zero {
    opacity: 0;
    top: -10%
}

#upper-navigation-bottom.opacity-zero.opacity-zero {
    opacity: 0;
    top: -10%
}

#lower-navigation.opacity-zero.opacity-zero {
    opacity: 0;
    top: 10%
}

.mob-logo {
    width: 60px
}

.logo-text {
    font-family: spartan-semibold;
    font-size: 22px
}

#menu-toggle {
    display: none
}

#menu-toggle.active~.menu-button .icon-close,
#menu-toggle:checked~.menu-button .icon-close {
    display: block
}

#menu-toggle.active~.menu-button .icon-open,
#menu-toggle:checked~.menu-button .icon-open {
    display: none
}

#menu-toggle.active~.menu-button:after,
#menu-toggle:checked~.menu-button:after {
    opacity: 1;
    pointer-events: auto;
    transition: opacity .3s cubic-bezier(0, 0, 0.3, 1)
}

#menu-toggle.active~.menu-sidebar,
#menu-toggle:checked~.menu-sidebar {
    transform: translateX(-15px);
    transition: transform .3s cubic-bezier(0, 0, 0.3, 1)
}

.menu-button {
    height: 100%;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    font-size: 30px;
    align-items: center
}

.menu-button .nav-mob-icon {
    color: #023
}

.menu-button .icon-close {
    display: none
}

.menu-button .icon-open {
    display: block
}

.nav-mobile {
    background: #fff;
    color: #fff;
    padding: 0;
    margin: 0;
    cursor: auto;
    font-size: 18px;
    list-style-type: none;
    box-shadow: 0 5px 5px -5px #023;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    left: 0
}

.nav-mobile:after {
    content: "";
    display: table;
    clear: both
}

.nav-mobile li {
    width: 100%;
    text-align: right;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.nav-mobile li>a {
    display: block;
    color: #023;
    width: 100%;
    text-decoration: none
}

.nav-mobile li>a.active {
    color: #fe553c
}

.nav-mobile .menu-container {
    width: 100%;
    height: 70px;
    cursor: pointer;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-mobile .menu-container .menu-sidebar {
    box-shadow: 5px 0 5px -5px #023;
    display: block;
    width: 75vw;
    bottom: 0;
    background: #fff;
    color: #023;
    position: fixed;
    transform: translateX(-405px);
    transition: transform .3s cubic-bezier(0, 0, 0.3, 1);
    top: 70px;
    z-index: 2;
    list-style-type: none;
    padding: 0;
    max-width: 400px;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto
}

.nav-mobile .menu-container .menu-sidebar .arrow {
    font-size: 22px;
    color: #023;
    line-height: 1
}

.nav-mobile .menu-container .menu-sidebar .arrow.left {
    color: #fe553c
}

.nav-mobile .menu-container .menu-sidebar li {
    font-size: 16px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 12px 15px 8px;
    display: flex;
    align-items: center;
    font-family: spartan-semibold
}

.nav-mobile .menu-container .menu-sidebar li:hover {
    background: #eee
}

.nav-mobile .menu-container .menu-sidebar li.active a {
    color: #fe553c
}

.nav-mobile .menu-container .menu-sidebar li .menu-sub {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    overflow: auto;
    background: #fff;
    visibility: hidden;
    transition: all .3s cubic-bezier(0, 0, 0.3, 1);
    border-left: 1px solid #ccc;
    list-style-type: none;
    padding: 0;
    margin: 0;
    z-index: 2;
    max-width: 400px;
    opacity: 0
}

.nav-mobile .menu-container .menu-sidebar li .menu-sub li {
    overflow: hidden
}

.nav-mobile .menu-container .menu-sidebar li .menu-sub .menu-sub-title {
    display: flex;
    flex-direction: row-reverse
}

.nav-mobile .menu-container .menu-sidebar li .submenu-label {
    cursor: pointer;
    width: 100%;
    display: block
}

.nav-mobile .menu-container .menu-sidebar li .submenu-label.active {
    color: #fe553c
}

.nav-mobile .menu-container .menu-sidebar li .submenu-label.active+.arrow.right {
    color: #fe553c
}

.nav-mobile .menu-container .menu-sidebar li .submenu-label.back-btn {
    padding-left: 10px;
    margin-left: -1px;
    color: #fe553c;
    font-family: spartan-semibold
}

.nav-mobile .menu-container .menu-sidebar li .submenu-toggle {
    display: none
}

.nav-mobile .menu-container .menu-sidebar li .submenu-toggle.active~.menu-sub,
.nav-mobile .menu-container .menu-sidebar li .submenu-toggle:checked~.menu-sub {
    width: 100%;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    right: 0;
    transition: all .3s cubic-bezier(0, 0, 0.3, 1)
}

@font-face {
    src: url("../../fonts/spartan/LeagueSpartan-Bold.ttf");
    font-family: font-bold
}

@font-face {
    src: url("../../fonts/spartan/LeagueSpartan-SemiBold.ttf");
    font-family: font-semibold
}

@font-face {
    src: url("../../fonts/spartan/LeagueSpartan-Medium.ttf");
    font-family: font-medium
}

.font-bold {
    font-family: font-bold
}

.font-semibold {
    font-family: font-semibold
}

.font-medium {
    font-family: font-medium
}

.entire-content {
    position: relative;
    top: calc(var(--upper-navigation-height) + var(--logo-strip-height) + var(--lower-navigation-height));
    padding: 0 0 calc(var(--upper-navigation-height) + var(--logo-strip-height) + var(--lower-navigation-height));
    margin-bottom: calc(var(--upper-navigation-height) + var(--logo-strip-height) + var(--lower-navigation-height));
}

.entire-content section+section {
    margin-top: calc(50px/2)
}

.inner-page-content.top-bottom-spacing {
    padding: calc(100px/2) 0
}

.inner-page-content.top-spacing {
    padding-top: calc(100px/2)
}

.inner-page-content.bottom-spacing {
    padding-bottom: calc(100px/2)
}

.inner-page-content.header-spacing {
    margin-top: calc(var(--upper-navigation-height) + var(--logo-strip-height) + var(--lower-navigation-height));
}

.inner-page-content section+section {
    padding-top: calc(100px/2)
}

.web-text-paras {
    position: relative
}

.web-text-paras p {
    text-align: justify;
    line-height: 1.25
}

.web-text-paras p+p {
    margin-top: 1.5rem
}

.web-text-paras .item+.item {
    margin-top: 1.5rem
}

.page-banner {
    position: relative;
    width: 100%
}

.page-banner .banner-div {
    width: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important
}

.page-banner .banner-div-title {
    position: relative;
    width: 100%;
    height: 290px;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.page-banner .banner-div-title.half-right {
    width: 50%;
    margin-left: auto
}

.page-banner .banner-div-title h1 {
    color: #fff;
    font-size: 60px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    text-align: right
}

.page-banner .banner-div-title h1.double-lines {
    line-height: 1
}

.page-banner .banner-div-title h1.double-lines>span {
    font-size: 50px
}

.page-banner .banner-div.startup-banner {
    background: url("../images/banners/startup.jpg")
}

.page-banner .banner-div.mou-banner {
    background: url("../images/banners/mou.jpg")
}

.page-banner .banner-div.media-banner {
    background: url("../images/banners/media.jpg")
}

.page-banner .banner-div.innovation-banner {
    background: url("../images/banners/innovation.jpg")
}

.page-banner .banner-div.faq-banner {
    background: url("../images/banners/faq.jpg")
}

.page-banner .banner-div.event-gallery-banner {
    background: url("../images/banners/events.jpg")
}

.page-banner .banner-div.csr-banner {
    background: url("../images/banners/csr.jpg")
}

.page-banner .banner-div.courses-banner {
    background: url("../images/banners/courses.jpg")
}

.page-banner .banner-div.contact-us-banner {
    background: url("../images/banners/contact-us.jpg")
}

.page-banner .banner-div.career-banner {
    background: url("../images/banners/career.jpg")
}

.page-banner .banner-div.awards-banner {
    background: url("../images/banners/awards.jpg")
}

.page-banner .banner-div.alumni-banner {
    background: url("../images/banners/alumni.jpg")
}

.page-banner .banner-div.colleges-banner {
    background: url("../images/banners/colleges.jpg")
}

.page-banner .banner-div.pharmacy-banner {
    background: url("../images/banners/pharmacy.jpg")
}

.page-banner .banner-div.mba-banner {
    background: url("../images/banners/mba.jpg")
}

.page-banner .banner-div.sistec-gn-banner {
    background: url("../images/banners/sistec-gn.jpg")
}

.page-banner .banner-div.sistec-e-banner {
    background: url("../images/banners/sistec-e.jpg")
}

.page-banner .banner-div.tnp-banner {
    background: url("../images/banners/tnp.jpg")
}

.page-banner .banner-div.bulletins-banner {
    background: url("../images/banners/bulletin.jpg")
}

.page-banner .banner-div.erp-banner {
    background: url("../images/banners/erp.jpg")
}

.page-banner .banner-div.coe-eicher-banner {
    background: url("../images/banners/coe-eicher.jpg")
}

.card-header {
    text-transform: uppercase;
    font-size: 22px;
    color: #fff;
    text-align: center;
    padding-top: 10px;
    height: 50px
}

.accordion-row {
    gap: 1rem 0
}

.accordion-row.row {
    --bs-gutter-x: 1rem
}

.accordion-row.half {
    gap: 12.5px 0
}

.accordion-item {
    border: unset
}

.accordion-button {
    font-size: 18px;
    padding: 15px 24px;
    background-color: var(--theme-clr-three);
    color: #fff;
    border: unset;
    outline: unset;
    gap: 15px;
    justify-content: space-between
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--theme-clr-two);
    box-shadow: unset
}

.accordion-button:focus {
    box-shadow: unset
}

.accordion-button::after {
    filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(142deg) brightness(110%) contrast(101%);
    margin-top: -5px
}

.accordion-body {
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    padding: 24px
}

.accordion-body>div {
    display: flex;
    gap: 15px;
    line-height: 1.2
}

.accordion-body>div p:first-child {
    min-width: 110px
}

.accordion-body div+div {
    margin-top: 8px
}

.accordion-body h2 {
    font-size: 20px;
    margin-bottom: 0
}

.accordion-body .dash {
    border-bottom: 2px solid var(--adm-theme-clr-three);
    margin: 10px 0 15px
}

.accordion-body.information-li ul li {
    text-align: left;
    margin-top: 5px
}

.accordion-body.information-li ul li::before {
    background-image: url("../images/icons-png/arrow-bullet.png");
    /* filter: invert(55%) sepia(37%) saturate(7439%) hue-rotate(214deg) brightness(92%) contrast(89%); */
    filter: var(--adm-theme-clr-three-filter);
    height: 15px;
    width: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate(0, 4px)
}

.accordion-body ol {
    margin-bottom: 12px;
    padding: 0;
    list-style: none
}

.accordion-body ol li {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 18px
}

.accordion-body ol li::before {
    content: "";
    background-image: url("../images/icons-png/arrow-bullet.png");
    filter: invert(63%) sepia(68%) saturate(6095%) hue-rotate(337deg) brightness(105%) contrast(105%);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    margin-top: 3px;
    color: #723bcd;
    font-family: "Font Awesome 5 Free";
    font-weight: 900
}

.accordion-body ol li+li {
    margin-top: 5px
}

.accordion-body ul {
    margin-bottom: 12px;
    padding: 0;
    list-style: none
}

.accordion-body ul li {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 18px
}

.accordion-body ul li::before {
    content: "";
    background-image: url("../images/icons-png/arrow-bullet.png");
    filter: invert(63%) sepia(68%) saturate(6095%) hue-rotate(337deg) brightness(105%) contrast(105%);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    margin-top: 3px;
    color: #723bcd;
    font-family: "Font Awesome 5 Free";
    font-weight: 900
}

.accordion-body ul li+li {
    margin-top: 5px
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.accordion-item .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-size: 20px;
    font-family: spartan-semibold;
    padding-top: 17px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.accordion-item.light-shade:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
}

.accordion-item.light-shade .accordion-button {
    background: #e9e9e9;
    color: #023;
    border-radius: 5px
}

.accordion-item.light-shade .accordion-button::after {
    filter: unset
}

.accordion-item .accordion-body {
    box-shadow: rgba(0, 0, 0, .15) 0px 5px 15px 0px;
    border: unset
}

.accordion-item+.accordion-item {
    margin-top: 20px
}

.nav-type-one .nav-type-one-ul {
    background: var(--gradient-one);
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.nav-type-one .nav-type-one-ul.with-heading li:first-child {
    font-size: 24px;
    padding-left: 15px;
    font-family: spartan-semibold;
}

.nav-type-one .nav-type-one-ul.with-heading li {
    padding-left: 35px;
}

.nav-type-one .nav-type-one-ul li {
    position: relative;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px -50px 36px -28px inset;
    font-size: 20px;
    font-family: spartan-medium;
    padding: 15px;
}

.nav-type-one .nav {
    justify-content: center;
    gap: 15px
}

.nav-type-one .nav-tabs .nav-item.show .nav-link,
.nav-type-one .nav-tabs .nav-link.active {
    color: var(--theme-clr-one);
    background-color: #fff;
    border-color: var(--theme-clr-one) var(--theme-clr-one) #fff;
    border-width: 3px;
    border-style: dashed;
}

.nav-type-one .nav-tabs .nav-link:focus,
.nav-type-one .nav-tabs .nav-link:hover {
    border-color: var(--theme-clr-one) var(--theme-clr-one) #fff;
    border-width: 3px;
    border-style: dashed;
    color: var(--theme-clr-one);
}

.nav-type-one .nav-tabs {
    border-bottom: 3px dashed var(--theme-clr-one);
    padding-bottom: 2px;
}

.nav-type-one .nav-tabs .nav-link {
    padding: 1.5rem 2rem 0.6rem;
    color: var(--adm-theme-clr-three);
    border-width: 3px;
    font-family: spartan-medium;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    font-size: 19px;
}

.nav-type-one .tab-content {
    padding: 15px 0
}

.nav-type-two .nav-tabs {
    justify-content: center;
    border-bottom: unset
}

.nav-type-two .nav-tabs .nav-item {
    padding: 0 20px;
    width: 35%
}

.nav-type-two .nav-tabs .nav-item .nav-link {
    border: 2px solid #fe553c;
    border-radius: 50px;
    width: 100%;
    display: block;
    padding: .8rem 1rem;
    font-size: 20px;
    text-transform: uppercase;
    color: #fe553c
}

.nav-type-two .nav-tabs .nav-item .nav-link.active {
    background-color: #fe553c;
    border-color: #fe553c;
    color: #fff
}

.nav-type-two .nav-tabs .nav-item.show .nav-link {
    background-color: #fe553c;
    border-color: #fe553c;
    color: #fff
}

.nav-type-two .tab-content {
    padding: 40px 0 0
}

.footer {
    background: url("../images/footer/footer-bg-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(100px/2) 0;
    position: relative
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .92);
    z-index: 0
}

.footer .footer-content {
    position: relative
}

.footer .golden-years {
    width: 90%;
    display: block;
    margin: 0 auto
}

.footer .address-gap {
    margin-top: 40px
}

.footer .div-gap {
    margin-top: 25px
}

.footer .title {
    color: #fe553c;
    font-size: 18px;
    text-transform: uppercase
}

.footer .footer-bottom {
    padding-top: 20px;
    border-top: 1px solid gray;
    margin-top: 25px;
    padding-bottom: 5px
}

.footer .footer-bottom .copyright {
    color: #fff;
    text-align: center;
    font-size: 15px
}

.footer .footer-col-flex {
    display: flex;
    justify-content: space-between
}

.footer .footer-col-flex-item {
    width: 50%
}

.web-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px
}

.web-social-icons.white-bg-tertiary-icon a {
    background: #fff
}

.web-social-icons.white-bg-tertiary-icon a i {
    color: #fe553c
}

.web-social-icons.dark-bg-white-icon a {
    background: #023
}

.web-social-icons.dark-bg-white-icon a i {
    color: #fff
}

.web-social-icons.small-icon {
    margin-top: 10px
}

.web-social-icons.small-icon a {
    width: 35px;
    height: 35px
}

.web-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-content: center
}

.web-social-icons a:hover {
    transform: scale(1.1)
}

.web-social-icons a:hover i {
    transform: scale(1.05)
}

#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 74px;
    background-color: rgba(0, 0, 0, 0);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px
}

#scroll-to-top:hover {
    cursor: pointer
}

#scroll-to-top:active {
    background-color: rgba(0, 0, 0, 0)
}

#scroll-to-top.show {
    opacity: .2;
    visibility: visible
}

.team-card {
    width: 325px;
    height: 325px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    transition: .5s ease-in-out
}

.team-card.wh-250 {
    width: 250px;
    height: 250px
}

.team-card.wh-220 {
    width: 220px;
    height: 220px
}

.team-card.wh-200 {
    width: 200px;
    height: 200px
}

.team-card:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .4)
}

.team-card:hover .team-card-footer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.team-card:hover .imgBx {
    transform: scale(1.1)
}

.team-card .imgBx {
    transition: .3s ease-in-out;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%
}

.team-card .imgBx img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.team-card .team-card-footer {
    font-size: 12px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: .3s ease-in-out;
    width: 100%;
    text-align: center;
    padding: 15px 5px
}

.team-card .team-card-footer h3 {
    color: #fff;
    margin-bottom: 0;
    font-size: 16px
}

.web-gallery {
    display: grid;
    grid-gap: 35px 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense
}

.web-gallery.type-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.web-gallery.type-flex>a {
    width: calc(25% - 30px);
    height: 355px
}

.web-gallery.grid-gap-10 {
    grid-gap: 10px
}

.web-gallery.col-25-percent {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}

.web-gallery.col-25-row-150 {
    grid-gap: 20px 15px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 150px
}

.web-gallery.row-355 {
    grid-auto-rows: 355px
}

.web-gallery>a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    background: #fff;
    /* box-shadow: 0 2px 1px rgba(0, 0, 0, .09), 0 4px 2px rgba(0, 0, 0, .09), 0 8px 4px rgba(0, 0, 0, .09), 0 16px 8px rgba(0, 0, 0, .09), 0 32px 16px rgba(0, 0, 0, .09); */
    position: relative
}

.web-gallery>a>img {
    /* width: 100%;
    height: 100%; */
    /* -o-object-fit: cover; */
    /* object-fit: cover; */
    width: 353px;
    height: 330px;
    transition: all .5s ease
}

.web-gallery>a>.img-title {
    position: absolute;
    left: 0;
    /* bottom: 0; */
    bottom: -27px;
    width: 354px;
    /* height: 60px; */
    height: 40px;
    /* background: rgba(40, 40, 40, .8); */
    /* transition: all .5s ease-in-out; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    line-height: 1.1;
    font-size: 20px;
    padding: 4px 15px 0;
    font-weight: 800;
}

.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.line-clamp.two-lines {
    -webkit-line-clamp: 2
}

.event-details-div {
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, .07) 0px 1px 2px, rgba(0, 0, 0, .07) 0px 2px 4px, rgba(0, 0, 0, .07) 0px 4px 8px, rgba(0, 0, 0, .07) 0px 8px 16px, rgba(0, 0, 0, .07) 0px 16px 32px, rgba(0, 0, 0, .07) 0px 32px 64px
}

.event-details-div p {
    width: 50%;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold
}

.event-details-div p:nth-child(2) {
    width: 50%
}

.event-details-div p+p {
    border-left: 1.5px solid #fff
}

.event-details-text p {
    text-align: justify
}

.event-details-text p:first-child {
    margin-top: 35px
}

.event-details-text p+p {
    margin-top: 8px
}

#fixed-controls {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translate(0, -20%);
    z-index: 10
}

#fixed-controls .afn-btn-div {
    position: relative
}

#fixed-controls .afn-btn-div p {
    position: absolute;
    left: 100%;
    top: 50%;
    padding-top: 4px;
    color: #723bcd;
    width: 200px;
    transform: translate(10px, -50%);
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
    font-family: spartan-semibold;
    text-transform: uppercase;
    font-size: 16px
}

#fixed-controls .afn-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fe553c;
    box-shadow: rgba(50, 50, 93, .25) 0px 50px 100px -20px, rgba(0, 0, 0, .3) 0px 30px 60px -30px, rgba(10, 37, 64, .35) 0px -2px 6px 0px inset;
    position: relative;
    overflow: hidden
}

#fixed-controls .afn-btn::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
    content: "";
    display: block;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
    overflow: hidden;
    animation: shine-slide 3s infinite
}

#fixed-controls .afn-btn img {
    width: 28px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(49deg) brightness(103%) contrast(103%);
    transition: all .3s ease-in-out
}

#fixed-controls .afn-btn img.wid-40 {
    width: 26px
}

#fixed-controls .afn-btn-div+.afn-btn-div {
    margin-top: 20px
}

@keyframes shine-slide {
    100% {
        left: 125%
    }
}

.alumni-title {
    font-size: 34px
}

#why-choose-gps-group .flip-box-container .box-item {
    padding: 0 12.5px
}

#why-choose-gps-group .flip-box-container .box-item .flip-box .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    line-height: 1.2;
    font-size: 17px
}

#why-choose-gps-group .flip-box-container .box-item .flip-box .inner img {
    width: 90px;
    margin-bottom: 20px;
    filter: invert(42%) sepia(78%) saturate(1811%) hue-rotate(335deg) brightness(101%) contrast(107%)
}

#why-choose-gps-group .flip-box-container .box-item .flip-box .inner .flip-box-header {
    color: #023
}

#why-choose-gps-group .flip-box-container .box-item .flip-box .inner .flip-box-header span {
    font-size: 18px
}

#why-choose-gps-group .flip-box-container .box-item .flip-box .flip-box-div {
    height: 270px
}

.graphs-titles {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 2px solid #c6ced1;
    padding-right: 25px
}

.graphs-titles.to-left {
    border-right: unset;
    padding-right: 0;
    text-align: center
}

.graphs-titles h1 {
    font-size: 26px;
    color: #fe553c;
    margin-bottom: 0;
    text-align: center;
    margin-top: 15px
}

.graphs-titles h2 {
    font-size: 28px
}

#pool-of-opportunities .flip-logo-minus {
    margin-top: -35px
}

#pool-of-opportunities .poo-title {
    line-height: 1
}

#pool-of-opportunities .poo-title .first {
    font-size: 59.5px
}

#pool-of-opportunities .poo-title .second {
    font-size: 45px
}

#pool-of-opportunities .poo-title .third {
    font-size: 35px
}

#ladder-graph .bg-div {
    background: #e7e7e7;
    padding: 30px 0
}

#placement-gallery .las-flex {
    height: 275px
}

#placement-gallery .las-flex a {
    align-items: flex-end
}

#placement-gallery .las-flex a .title {
    margin: 0 auto 15px
}

#placement-gallery .las-flex .one {
    background: url("../images/placements/placement-events/PE1.jpg")
}

#placement-gallery .las-flex .two {
    background: url("../images/placements/placement-events/PE2.jpg")
}

#placement-gallery .las-flex .three {
    background: url("../images/placements/placement-events/PE6.jpg")
}

#placement-gallery .las-flex .four {
    background: url("../images/placements/placement-events/PE4.jpg")
}

#placement-gallery .las-flex .five {
    background: url("../images/placements/placement-events/PE5.jpg")
}

#placement-gallery .las-flex .six {
    background: url("../images/placements/placement-events/PE3.jpg")
}

#the-name-to-trust {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 10
}

#the-name-to-trust img {
    width: 150px
}

.modal-header {
    position: relative;
    background: #fe553c;
    color: #fff;
    padding: 1rem 1rem .6rem;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.modal-header .modal-title {
    width: 100%;
    font-size: 24px;
    text-align: center
}

.modal-header .btn-close {
    position: absolute;
    top: 50%;
    transform: translate(0, -40%);
    right: 10px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(296deg) brightness(103%) contrast(103%);
    opacity: 1
}

.form-control,
.form-select {
    font-size: 18px
}

.career-input-error {
    color: red;
    margin-top: 3px
}

.thank-you-section {
    width: 100%;
    height: 100vh;
    background: url("../images/others/thank-you-3.jpg");
    background-size: cover;
    display: flex;
    align-items: center
}

.thank-you-section .left {
    padding: 0 30px;
    width: 50%
}

.thank-you-section .left .th-title {
    font-size: 3.2rem
}

.thank-you-section .left img {
    width: 30px;
    filter: invert(100%) sepia(85%) saturate(0%) hue-rotate(134deg) brightness(108%) contrast(101%)
}

.thank-you-section .left .links-div {
    display: flex;
    gap: 15px;
    margin-top: 30px
}

.thank-you-section .left .links-div .link {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #fff;
    border-radius: .5rem;
    padding: 5px 12px
}

.thank-you-section .left .links-div .link p {
    color: #fff;
    margin-top: 5px
}

.thank-you-section .left .links-div .link:hover {
    transform: scale(1.1)
}

.jaf-title {
    margin-bottom: 25px
}

.user-login-form .custom-check .custom-check-input:checked~span {
    background: #fe553c
}

.user-login-form .floating-label-box {
    margin-bottom: 8px
}

.user-login-form .form-control:disabled,
.user-login-form .form-control[readonly] {
    background-color: rgba(0, 0, 0, 0)
}

.user-login-form .separation {
    margin: 25px 0 0
}

.user-login-form .separation-title {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.2
}

.user-login-form .form-floating {
    margin-bottom: 4px
}

.user-login-form .form-floating label {
    padding: 1rem 0
}

.user-login-form .form-floating .form-control,
.user-login-form .form-floating .form-select {
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0
}

.user-login-form .form-floating .form-control:focus,
.user-login-form .form-floating .form-select:focus {
    box-shadow: unset;
    border-color: #fe553c
}

.user-login-form .form-floating .form-control:not(:-moz-placeholder-shown) {
    padding-top: 2rem;
    padding-bottom: .45rem
}

.user-login-form .form-floating .form-control:focus,
.user-login-form .form-floating .form-control:not(:placeholder-shown) {
    padding-top: 2rem;
    padding-bottom: .45rem
}

.user-login-form .form-floating .form-select {
    padding-top: 1.6rem;
    font-size: 18px
}

.user-login-form .form-floating .form-select option {
    font-size: 17px
}

.user-login-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #023;
    font-size: 18px;
    line-height: 1.185;
    padding: 22px 12px;
    outline: 0;
    height: calc(3.5rem + 2px)
}

.user-login-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 0;
    right: 15px;
    width: 20px
}

.user-login-form .select2-container--default .select2-selection--single {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #ced4da;
    border-radius: .25rem;
    height: auto
}

.user-login-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #023 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
}

.user-login-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #023 rgba(0, 0, 0, 0)
}

.login-form-small-text {
    font-size: 16px;
    line-height: 1.3
}

.steps {
    list-style: none;
    margin: 60px 0 80px;
    padding: 0 15px;
    display: flex;
    width: 100%;
    color: #343434
}

.steps>.step {
    flex: 1 1 0;
    width: 0;
    position: relative;
    text-align: center;
    font-size: 1rem;
    color: #6d6875
}

.steps>.step a {
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translate(-50%, 0);
    width: 100%;
    color: #888;
    font-size: 18px
}

.steps>.step:before {
    content: attr(data-step);
    display: block;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #888;
    color: #888;
    width: 2rem;
    height: 2rem;
    text-align: center;
    margin-bottom: -4.2rem;
    line-height: 1.9rem;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 1rem
}

.steps>.step:after {
    content: "";
    position: absolute;
    display: block;
    background: #888;
    width: 100%;
    height: .125rem;
    top: 1rem;
    left: 50%
}

.steps>.step:last-child:after {
    display: none
}

.steps>.step.is-complete {
    color: #6d6875
}

.steps>.step.is-complete a {
    color: #f68e20
}

.steps>.step.is-complete:before {
    content: "✓";
    color: #f68e20;
    background: #fef0e2;
    border: 2px solid #f68e20
}

.steps>.step.is-complete:after {
    background: #f68e20
}

.steps>.step.is-active a {
    color: #023
}

.steps>.step.is-active:before {
    color: #fff;
    border: 2px solid #f68e20;
    background: #f68e20;
    margin-bottom: -4.9rem
}

.career-user-logout-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0
}

.career-user-logout-flex .user-name {
    font-size: 32px
}

#profile_image {
    display: none
}

#profile_image_preview {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    display: block;
    border: 1px solid #5a5c69;
    border-radius: .35rem;
    cursor: pointer;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    line-height: 1.2
}

.custom-radio {
    display: flex;
    gap: 15px;
    margin-bottom: 20px
}

.custom-radio .item input {
    display: none
}

.custom-radio .item input+label {
    border: 1px solid #fe553c;
    color: #fe553c;
    padding: .375rem .75rem;
    text-transform: uppercase;
    margin-bottom: 0;
    cursor: pointer;
    border-radius: .25rem;
    font-size: 16px
}

.custom-radio .item input:checked+label {
    background: #fe553c;
    color: #fff
}

.prev-next-btn {
    margin-top: 25px
}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: none;
    opacity: .7;
    background-color: #fff;
    z-index: 99999;
    text-align: center
}

#loading #loading-image {
    position: absolute;
    top: 48%;
    text-align: center;
    z-index: 9000000000
}

#loading.hide {
    display: none
}

#loading.show {
    display: block
}

.accordion-button.pulse-effect::after {
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    position: relative;
    animation: animate 3s linear infinite
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 109, 74, .7), 0 0 0 0 rgba(255, 109, 74, .7)
    }

    40% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 109, 74, .7)
    }

    80% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0)
    }
}

.manuals-container {
    margin-top: 60px;
    border: 2px solid #f1f1f1;
    padding: 25px
}

.manuals-container .manual-title {
    text-align: center;
    text-transform: uppercase;
    font-family: spartan-semibold;
    font-size: 42px;
    margin-bottom: 25px
}

.manuals-container .manuals-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 30px
}

.manuals-container .manuals-flex .manual-card {
    width: calc(25% - 30px);
    border: 2px solid #f1f1f1;
    border-radius: 8px;
    box-shadow: rgba(60, 64, 67, .3) 0px 1px 2px 0px, rgba(60, 64, 67, .15) 0px 2px 6px 2px;
    display: flex
}

.manuals-container .manuals-flex .manual-card .img-div {
    width: 30%;
    min-height: 120px;
    position: relative;
    border-right: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center
}

.manuals-container .manuals-flex .manual-card .img-div img {
    width: 60px;
    filter: invert(42%) sepia(78%) saturate(1811%) hue-rotate(335deg) brightness(101%) contrast(107%)
}

.manuals-container .manuals-flex .manual-card .text-div {
    width: 70%;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start
}

.manuals-container .manuals-flex .manual-card .text-div p {
    font-size: 18px;
    font-family: spartan-medium
}

.manuals-container .manuals-flex .manual-card .text-div .manual-btn {
    display: inline-block;
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%);
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 5px 12px 3px;
    font-size: 15px
}

#home-hero-slider .the-slide {
    max-width: 100%;
    width: 1920px
}

#home-hero-slider .the-slide img {
    height: 100%;
    max-height: 600px;
    width: 100%;
}

/* #home-hero-slider .the-slide img {
    height: auto;
    max-height: unset
} */

#the-sgi {
    position: relative
}

.circle {
    position: absolute;
    transition-duration: .8s
}

.circle img {
    width: 300px
}

#home-video {
    position: relative;
    width: 100%;
    height: 385px;
    overflow: hidden
}

#home-video video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1
}

#home-video {
    height: 375px
}

#home-video video {
    margin-top: 20px
}

#notice-video {
    position: relative;
    width: 100%;
    height: 385px;
    overflow: hidden
}

#notice-video video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1
}

#notice-video video {
    margin-top: 20px
}

@keyframes slide-giant {
    0% {
        background-position: 100% 0
    }

    100% {
        background-position: 0 0
    }
}

#home-courses {
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%);
    padding: 0
}

#home-courses .home-courses-card+.home-courses-card {
    padding-top: 40px
}

#home-courses .home-courses-card {
    position: relative;
    padding: 60px 0
}

#home-courses .home-courses-card .course-video {
    position: absolute
}

#home-courses .home-courses-card .course-video.right {
    right: 0
}

#home-courses .home-courses-card .course-video.left {
    left: 0
}

#home-courses .home-courses-card .course-content-row {
    margin-top: 40px
}

#home-courses .home-courses-card .course-content-row .the-courses .course-name {
    font-size: 44px;
    color: #fff;
    padding-bottom: 8px;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
    width: 90%
}

#home-courses .home-courses-card .course-content-row .the-courses .course-content.flex-me {
    display: flex;
    justify-content: space-between
}

#home-courses .home-courses-card .big-title {
    font-size: 60px
}

#home-courses .home-courses-card .shape-div {
    position: relative;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    justify-content: flex-end
}

#home-courses .home-courses-card .shape-div .video-div {
    padding: 20px 0 20px 90px;
    background: url("../images/home/courses-engg-bg.png");
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    width: 475px;
    height: 350px;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

#home-courses .home-courses-card .shape-div .video-div video {
    width: 100%
}

#home-courses .home-courses-card .shape-div .video-div.right-bg {
    padding: 20px 90px 20px 0;
    background: url("../images/home/courses-engg-right-bg.png")
}

#web-counter {
    background: url("../images/home/home-counter-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: calc(100px/2) 0;
    position: relative
}

#web-counter::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 0
}

.counter-card {
    text-align: center;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 12px
}

.counter-card .counter-icon img {
    width: 75px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(20deg) brightness(102%) contrast(102%)
}

.counter-card .counter-content {
    display: flex;
    flex-direction: column
}

.counter-card .counter-content .count-number {
    font-size: 36px;
    margin: 0;
    color: #fff
}

.counter-card .counter-content .counter-title {
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2
}

.slick-dots>li.slick-active button {
    background: #723bcd
}

.rh-slider-for .text-div {
    font-size: 32px;
    text-align: center;
    font-family: spartan-medium
}

.rh-slider-for .text-div .the-date {
    padding: 0 30px;
    border-radius: 5px
}

.rh-slider-for .text-div .the-date p {
    margin: 0;
    font-size: 16px;
    font-style: italic
}

.center-mode-slick-slider {
    margin-bottom: 30px
}

.center-mode-slick-slider .slick-slide {
    margin: 0 5px
}

.center-mode-slick-slider .slick-slide .img-mt-spacing {
    transform: scale(0.9);
    filter: blur(5px)
}

.center-mode-slick-slider .slick-slide img {
    display: block;
    transition: all 1s ease;
    height: 210px
}

.center-mode-slick-slider .slick-slide .img-mt-spacing {
    margin-top: 80px;
    margin-bottom: 30px
}

.center-mode-slick-slider .slick-slide.slick-current .img-mt-spacing {
    transform: scale(1.5);
    z-index: 100;
    position: relative;
    filter: blur(0)
}

.center-mode-slick-slider .slick-dots {
    bottom: -25px
}

.center-mode-slick-slider .slick-dots li button {
    background: #c6ced1;
    border-radius: 50%;
    width: 12px;
    height: 12px
}

.center-mode-slick-slider .slick-dots li.slick-active button {
    background: #5c71de;
    position: relative
}

.center-mode-slick-slider .slick-dots li.slick-active button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 1.5px solid #5c71de;
    border-radius: 50%;
    transform: translate(-50%, -50%)
}

.spotlight-slider .slick-slide {
    margin: 0 -25px
}

.spotlight-slider .slick-slide .spotlight-card {
    background: #fff;
    border-radius: 15px;
    transition: all 1s ease;
    filter: blur(5px);
    position: relative;
    transform: scale(0.75)
}

.spotlight-slider .slick-slide .spotlight-card p {
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    font-family: spartan-medium;
    margin: 15px 0
}

.spotlight-slider .slick-slide.slick-current+.slick-slide .spotlight-card {
    transform: scale(0.9);
    filter: blur(0);
    z-index: 1;
    border-radius: 15px
}

.spotlight-slider .slick-slide.slick-current+.slick-slide .spotlight-card img {
    border: 5px solid rgba(50, 50, 93, .25)
}

.student-speak-slider .slick-slide {
    margin: 0 20px
}

.student-speak-slider .slick-slide.slick-current+.slick-slide .testimonial-card {
    transform: scale(1.25);
    filter: blur(0);
    z-index: 1
}

.testimonial-card {
    background: #fff;
    border-radius: 5px;
    padding: 70px 25px 25px;
    box-shadow: rgba(100, 100, 111, .2) 0px 7px 29px 0px;
    margin: 130px 0 70px;
    transition: all 1s ease;
    filter: blur(1.5px);
    position: relative
}

.testimonial-card .img-div {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -55%)
}

.testimonial-card .img-div img {
    width: inherit;
    height: inherit;
    border-radius: inherit;
    display: block
}

.testimonial-card .tc-text {
    line-height: 1.2;
    font-size: 16px
}

.testimonial-card .comment-div {
    margin-top: 15px
}

.flip-box-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    align-items: center;
    justify-content: center;
    width: 100%
}

.flip-box-container .box-item {
    position: relative;
    width: 20%;
    padding: 0 15px
}

.flip-box-container .box-item .flip-box {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px
}

.flip-box-container .box-item .flip-box .flip-box-header {
    font-size: 18px;
    margin-bottom: 0;
    color: #fff;
    line-height: 1.2;
    padding: 0 20px
}

.flip-box-container .box-item .flip-box .flip-box-header span {
    font-size: 25px
}

.flip-box-container .box-item .flip-box .flip-box-header span.three-sixty {
    font-size: 30px;
    display: inline-block;
    line-height: 1.1
}

.flip-box-container .box-item .flip-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    outline: 1px solid rgba(0, 0, 0, 0);
    perspective: inherit;
    z-index: 2;
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    -ms-transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    display: flex;
    justify-content: center;
    color: #fff
}

.flip-box-container .box-item .flip-box .inner ul li {
    text-align: center;
    padding: 10px 0 6px;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 20px
}

.flip-box-container .box-item .flip-box .inner ul li+li {
    border-top: .2px solid #c6ced1
}

.flip-box-container .box-item .flip-box .flip-box-div {
    border-radius: 10px;
    height: 300px;
    transition: transform 1s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-transition: transform 1s cubic-bezier(0.4, 0.2, 0.2, 1);
    backface-visibility: hidden;
    box-shadow: rgba(50, 50, 93, .25) 0px 2px 5px -1px, rgba(0, 0, 0, .3) 0px 1px 3px -1px
}

.flip-box-container .box-item .flip-box .flip-box-div.landing-page-card-height {
    height: 425px
}

.flip-box-container .box-item .flip-box .flip-box-front {
    transform: rotateY(0deg);
    transform-style: preserve-3d
}

.flip-box-container .box-item .flip-box .flip-box-front img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.flip-box-container .box-item .flip-box .flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%)
}

.flip-box-container .box-item .flip-box:hover .flip-box-front {
    transform: rotateY(-180deg);
    transform-style: preserve-3d
}

.flip-box-container .box-item .flip-box:hover .flip-box-back {
    transform: rotateY(0deg);
    transform-style: preserve-3d
}

.bulletin img {
    height: 520px
}

#placements .lower {
    margin-top: 12px
}

.placement-div {
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%);
    padding: 40px 0 30px
}

.placement-div p {
    color: #fff
}

.placement-div .upper {
    position: relative
}

.placement-div .upper .floating-div {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translate(0, -50%);
    width: 375px;
    text-align: center
}

.placement-div .upper .floating-div h2 {
    font-size: 3rem
}

.placement-div .upper .floating-div img {
    width: 100%
}

.placement-div .upper .floating-div .slick-dots {
    bottom: -25px
}

.placement-div .upper .floating-div .slick-dots li button {
    background: #fff;
    border-radius: 50%;
    width: 12px;
    height: 12px
}

.placement-div .upper .floating-div .slick-dots li.slick-active button {
    background: #fff;
    position: relative
}

.placement-div .upper .floating-div .slick-dots li.slick-active button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 1.5px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%)
}

.placement-div .upper .first .title>p {
    text-transform: uppercase;
    line-height: .9
}

.placement-div .upper .first .title>p:first-child>span:first-child {
    font-size: 9.5rem;
    margin-right: 8px
}

.placement-div .upper .first .big-text {
    font-size: 8rem
}

.placement-div .upper .first .big-text.underline-me {
    display: inline-block;
    border-bottom: 3px solid #fff
}

.placement-div .upper .first .package-div {
    display: flex;
    gap: 35px;
    margin: 45px 0 20px
}

.placement-div .upper .first .package-div .me-big {
    font-size: 5rem;
    line-height: 1
}

.placement-div .upper .first .package-div .me-small {
    font-size: 2.5rem
}

.placement-div .upper .second {
    background: #fff;
    padding: 15px 0
}

.placement-div .upper .second p {
    color: #023;
    font-size: 2.2rem;
    line-height: 1.3;
    text-transform: uppercase
}

.placement-div .upper .second p span.me-big {
    font-size: 32px
}

.placement-div .upper .third p {
    font-size: 4rem;
    line-height: 1;
    margin-top: 30px
}

.vt-video {
    width: 100%;
    height: 100vh;
    position: relative
}

.vt-video video {
    width: inherit;
    height: inherit;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer
}

.vt-video::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    top: 0;
    left: 0
}

.vt-video .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.vt-video .content .text {
    color: #fff;
    text-transform: uppercase;
    font-size: 38px;
    text-align: center;
    margin-bottom: 0
}

.vt-video .content .text span {
    font-size: 44px
}

.vt-video .content .img360 {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 35px
}

.vt-video .content .btns-div {
    margin-top: 40px;
    display: flex;
    gap: 0 40px
}

.vt-modals .btn-close {
    background: #c6ced1;
    width: 2.3em;
    height: 2.3em;
    position: absolute;
    top: 5px;
    right: 10px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    opacity: 1;
    z-index: 10
}

.vt-modals .btn-close i {
    color: #000;
    font-size: 30px
}

.vt-modals .modal-body {
    background: #000
}

.recruiter-card {
    position: relative
}

.recruiter-card .recruiter-logo {
    border: .5px solid #beb5b5;
    padding: 0 14px;
    border-radius: 3px
}

.recruiter-card .overlay-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 92%;
    height: 60px;
    background: rgba(40, 40, 40, .8);
    transition: all .5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    line-height: 1.1;
    font-size: 18px;
    padding: 4px 15px 0
}

.accreditation-logos-container {
    display: grid;
    grid-template-columns: 375px 1fr;
    box-shadow: #00000029 0px 3px 6px, rgba(0, 0, 0, .23) 0px 3px 6px;
}

.accreditation-logos-container .logos-strip-title {
    position: relative;
    text-align: center;
    font-family: spartan-semibold;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #fe553c;
    font-size: 24px;
    background: #f5f5f5;
    padding: 9px 5px 5px;
}

/* .accreditation-logos-container .logos-strip-title::before,
.accreditation-logos-container .logos-strip-title::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -2px);
    height: 2px;
    background: #008fc5;
    width: 28%;
}

.accreditation-logos-container .logos-strip-title.long-line::before,
.accreditation-logos-container .logos-strip-title.long-line::after {
    width: 28%;
} */

.accreditation-logos-container .logos-strip-title::before {
    left: 0;
}

.accreditation-logos-container .logos-strip-title::after {
    right: 0;
}

.accreditation-logos-container .coe-logos-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.accreditation-logos-container .coe-logos-strip .eicher {
    width: 180px;
}

.accreditation-logos-container .coe-logos-strip .ultratech {
    width: 120px;
}

.accreditation-logos-container .coe-logos-strip .bosch {
    width: 270px;
}

.accreditation-logos-container .coe-logos-strip .netlink {
    width: 200px;
}

.accreditation-logos-container .coe-logos-strip .cisco {
    width: 95px;
}

.accreditation-logos-container .coe-logos-strip .lnt {
    width: 120px;
}

.accreditation-logos-container .coe-logos-strip .renault {
    width: 190px;
    margin-top: 5px;
}

.accreditation-logos-container>div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 30px;
}

.accreditation-logos-container>div:nth-child(2) {
    padding: 20px;
}

.accreditation-logos-container>div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accreditation-logos-container>div:first-child img:first-child {
    width: 75px;
}

.accreditation-logos-container>div:first-child img:nth-child(2) {
    width: 110px;
}

.accreditation-logos-container>div:first-child img:nth-child(3) {
    width: 100px;
}

.coe-card {
    box-shadow: rgba(0, 0, 0, .19) 0px 10px 20px, rgba(0, 0, 0, .23) 0px 6px 6px;
    position: relative
}

.coe-card .title {
    width: 100%;
    background: #f8f8f8;
    padding: 10px;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center
}

.coe-card .title p {
    text-align: center;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-family: font-semibold;
    font-size: 20px
}

.parallax {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    transition-duration: 0s
}

.parallax>* {
    transition-duration: 0s
}

.parallax.sps {
    background: url("../images/about/ventures/SPS4.png")
}

.parallax.ab {
    background: url("../images/about/ventures/AB4.png")
}

.parallax.sistec {
    background: url("../images/about/ventures/SISTec4.png")
}

.parallax.smpl {
    background: url("../images/about/ventures/SMPL4.png")
}

.parallax.snpl {
    background: url("../images/about/ventures/SNPL4.png")
}

.parallax.svn {
    background: url("../images/about/ventures/SVN4.png")
}

.gps-group-video {
    width: 100%
}

.gps-group-video video {
    width: inherit;
    height: 100vh;
    padding-right: 4%;
    margin-top: -35px
}

#our-leaders .higher-management {
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%);
    padding: calc(100px/2) 0
}

#our-leaders .higher-management .the-quote {
    font-size: 22px;
    line-height: 1.3
}

#our-leaders .higher-management .left-pad {
    padding-left: 15px
}

#our-leaders .higher-management .right-pad {
    padding-right: 15px
}

#our-leaders .higher-management .hm-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px
}

#our-leaders .higher-management .hm-card>img {
    box-shadow: rgba(0, 0, 0, .07) 0px 1px 2px, rgba(0, 0, 0, .07) 0px 2px 4px, rgba(0, 0, 0, .07) 0px 4px 8px, rgba(0, 0, 0, .07) 0px 8px 16px, rgba(0, 0, 0, .07) 0px 16px 32px, rgba(0, 0, 0, .07) 0px 32px 64px
}

#our-leaders .higher-management .hm-card .name>p {
    color: #fff;
    line-height: 1.2
}

#our-leaders .higher-management .hm-card .name>p:first-child {
    margin-top: 12px;
    font-size: 22px
}

#lower-management .principals-div {
    margin-top: 30px
}

#advisory-board .members-div+.members-div {
    margin-top: 30px
}

#advisory-board .abm-card.w-img-270>img {
    width: 270px;
}

#advisory-board .abm-card .person-img {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: inline-block;
    width: 180px;
    border-radius: 10px;
    overflow: hidden;
}

#advisory-board .abm-card .person-img img {
    display: block;
    margin: 0 auto;
}

#advisory-board .abm-card .company-img {
    margin-top: 3px;
    display: inline-block;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    width: 180px;
    height: 60px;
    padding: 10px;
}

#advisory-board .abm-card .company-img img {
    display: block;
    margin: 0 auto;
}

#advisory-board .abm-card .content {
    text-align: center;
}

#advisory-board .abm-card .content h2,
#advisory-board .abm-card .content p {
    font-size: 18px;
    margin-bottom: 0
}

.faculty-cards-flex {
    display: flex;
    gap: 25px;
    flex-wrap: wrap
}

.faculty-cards-flex .faculty-card {
    width: calc(25% - 25px);
    box-shadow: rgba(0, 0, 0, .07) 0px 1px 2px, rgba(0, 0, 0, .07) 0px 2px 4px, rgba(0, 0, 0, .07) 0px 4px 8px, rgba(0, 0, 0, .07) 0px 8px 16px, rgba(0, 0, 0, .07) 0px 16px 32px, rgba(0, 0, 0, .07) 0px 32px 64px;
    position: relative
}

.faculty-cards-flex .faculty-card .hod-tag {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 45px;
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center
}

.faculty-cards-flex .faculty-card .hod-tag p {
    color: #fff;
    font-family: spartan-semibold;
    margin-bottom: 0;
    font-size: 20px;
    padding-top: 3px
}

.faculty-cards-flex .faculty-card .faculty-card-content {
    padding: 15px
}

.faculty-cards-flex .faculty-card .faculty-card-content .dep-camp-flex {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 12px
}

.faculty-cards-flex .faculty-card .faculty-card-content .dep-camp-flex p {
    padding: 3px 8px 1px;
    margin-bottom: 0;
    text-align: center;
    width: calc(50% - 10px);
    border: 1px dashed #000;
    font-size: 16px
}

.school-card-body {
    padding: 3rem 1rem
}

#school-heritage {
    width: 100%
}

#school-heritage .img-card {
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    min-height: 100vh;
    display: flex;
    align-items: center
}

#school-heritage .img-card .ch-image {
    width: 225px;
    margin-bottom: 50px
}

#school-heritage .row-col-switch {
    flex-direction: row-reverse
}

#school-heritage .row-col-switch .the-image,
#school-heritage .row-col-switch .ch-title,
#school-heritage .row-col-switch .ch-text,
#school-heritage .row-col-switch .ch-date,
#school-heritage .row-col-switch .div-read-more {
    text-align: right
}

#school-heritage .the-image {
    height: 100%
}

#school-heritage .the-image img {
    height: inherit;
    width: 90%;
    box-shadow: rgba(0, 0, 0, .8) 0px 18px 30px
}

#school-heritage .ch-content,
#school-heritage .ch-title,
#school-heritage .ch-date,
#school-heritage .ch-text {
    color: #fff
}

#school-heritage .ch-text {
    margin-bottom: 30px
}

#school-heritage .ch-title {
    font-size: 42px;
    text-align: left
}

#school-heritage .ch-date {
    font-size: 7vw
}

.image-text-wrap .float-me-left {
    float: left;
    padding: 0 30px 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px 0
}

.image-text-wrap p {
    text-align: justify
}

.image-text-wrap p+p {
    margin-top: 15px
}

#courses-content .smt-margin {
    scroll-margin-top: 100px
}

#courses-content .floated-title-card .title {
    min-width: 300px
}

#courses-content .cc-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

#courses-content .cc-flex .cc-link {
    width: calc(25% - 25px);
    text-align: center
}

#courses-content .cc-flex .cc-link .cc-card {
    width: 100%;
    padding: 0 20px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, .07) 0px 1px 2px, rgba(0, 0, 0, .07) 0px 2px 4px, rgba(0, 0, 0, .07) 0px 4px 8px, rgba(0, 0, 0, .07) 0px 8px 16px, rgba(0, 0, 0, .07) 0px 16px 32px, rgba(0, 0, 0, .07) 0px 32px 64px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

#courses-content .cc-flex .cc-link .cc-card:hover .cc-card-icon {
    filter: invert(29%) sepia(29%) saturate(5277%) hue-rotate(249deg) brightness(82%) contrast(96%)
}

#courses-content .cc-flex .cc-link .cc-card .cc-card-icon {
    margin: 0 auto;
    display: block;
    width: 85px;
    filter: invert(42%) sepia(78%) saturate(1811%) hue-rotate(335deg) brightness(101%) contrast(107%)
}

#courses-content .cc-flex .cc-link .cc-card .cc-card-title {
    font-size: 17px;
    line-height: 1.2;
    margin: 10px 0 45px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#courses-content .cc-flex .cc-link .cc-card .cc-card-intake {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0;
    background: #f1f1f1;

}

#courses-content .cc-flex .cc-link .cc-card .cc-card-intake .course-count {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

#courses-content .cc-flex .cc-link .cc-card .cc-card-intake .heading {
    background: #e7e7e7;
    padding-top: 7px;
    color: #fe553c;
    font-family: spartan-semibold;
}

#courses-content .cc-flex .cc-link .cc-card .cc-card-intake p {
    text-align: center;
    color: #723bcd;
    text-transform: uppercase;
    font-family: spartan-medium;
    padding: 8px 0 4px;
}

#courses-content .cc-flex .cc-link .cc-card .cc-card-intake p+p {
    border-left: 2px solid #e7e7e7;
}

.cc-box-item+.cc-box-item {
    margin-top: 80px
}

.cc-box-item.half+.cc-box-item.half {
    margin-top: 40px
}

.course-table-title {
    font-size: 36px
}

.border-bottom-white {
    border-bottom-color: #fff
}

.course-department-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px
}

.course-department-gallery .item-div img {
    width: 200px;
    box-shadow: rgba(0, 0, 0, .07) 0px 1px 2px, rgba(0, 0, 0, .07) 0px 2px 4px, rgba(0, 0, 0, .07) 0px 4px 8px, rgba(0, 0, 0, .07) 0px 8px 16px, rgba(0, 0, 0, .07) 0px 16px 32px, rgba(0, 0, 0, .07) 0px 32px 64px
}

.sticky-courses-offered-nav {
    position: sticky;
    top: 50px;
    z-index: 8;
    background: #fff;
    padding-bottom: 20px
}

#course-dept-hero-slider .the-slide {
    width: 100%;
    max-height: 400px
}

.roadmap-timeline {
    white-space: nowrap;
    overflow-x: hidden;
    cursor: pointer
}

.roadmap-timeline .arrows {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 25px
}

.roadmap-timeline .arrows .arrow {
    background: #fe553c;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding-top: 4px
}

.roadmap-timeline .arrows .arrow i {
    color: #fff
}

.roadmap-timeline .arrows img {
    width: 45px;
    height: 45px
}

.roadmap-timeline .disabled {
    opacity: .5
}

.roadmap-timeline ol {
    font-size: 0;
    width: 100vw;
    padding: 250px 0;
    transition: all 1s
}

.roadmap-timeline ol li {
    position: relative;
    display: inline-block;
    list-style-type: none;
    width: 160px;
    height: 3px;
    background: #723bcd
}

.roadmap-timeline ol li:last-child {
    width: 280px
}

.roadmap-timeline ol li:not(:first-child) {
    margin-left: 14px
}

.roadmap-timeline ol li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 1px);
    bottom: 0;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fe553c
}

.roadmap-timeline ol li>div {
    position: absolute;
    left: calc(100% + 7px);
    width: 250px;
    height: 220px;
    padding: 18px 15px;
    font-size: 1rem;
    white-space: normal;
    color: #5c71de;
    background: #fff;
    box-shadow: rgba(50, 50, 93, .25) 0px 13px 27px -5px, rgba(0, 0, 0, .3) 0px 8px 16px -8px;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-top: 15px solid #5c71de;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.roadmap-timeline ol li>div .semester {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    margin: 0 auto 5px;
    font-family: spartan-semibold;
    color: #fe553c;
    box-shadow: rgba(50, 50, 93, .25) 0px 50px 100px -20px, rgba(0, 0, 0, .3) 0px 30px 60px -30px, rgba(10, 37, 64, .35) 0px -2px 6px 0px inset
}

.roadmap-timeline ol li>div .box-heading {
    text-align: center;
    margin: 8px 0;
    padding: 0 15px;
    font-size: 17px;
    font-family: spartan-medium
}

.roadmap-timeline ol li>div .learning {
    overflow-y: hidden
}

.roadmap-timeline ol li>div .learning p {
    font-size: 17px;
    line-height: 1.1;
    text-align: center
}

.roadmap-timeline ol li>div .learning p+p {
    margin-top: 3px
}

.roadmap-timeline ol li>div::before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid
}

.roadmap-timeline ol li:nth-child(odd)>div {
    top: -16px;
    transform: translate(-50%, -100%)
}

.roadmap-timeline ol li:nth-child(odd)>div::before {
    top: 100%;
    border-width: 8px 8px 0 0;
    border-color: #fff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
}

.roadmap-timeline ol li:nth-child(even)>div {
    top: calc(100% + 16px);
    transform: translate(-50%, 0)
}

.roadmap-timeline ol li:nth-child(even)>div::before {
    top: -8px;
    border-width: 8px 0 0 8px;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fff
}

.roadmap-timeline time {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px
}

.landing-page-curriculum-title {
    font-family: spartan-semibold;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #5c71de;
    font-size: 28px
}

.landing-page-table-columns.tc-3 {
    width: 33.3333333333% !important
}

.landing-page-mba-features-flex {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 15px
}

.landing-page-mba-features-flex>div {
    width: calc(20% - 15px);
    box-shadow: rgba(50, 50, 93, .25) 0px 30px 60px -12px, rgba(0, 0, 0, .3) 0px 18px 36px -18px;
    padding: 65px 15px 15px;
    position: relative;
    min-height: 250px
}

.landing-page-mba-features-flex>div:nth-child(even) {
    margin-top: 125px
}

.landing-page-mba-features-flex>div:nth-child(even) .img-icon {
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%)
}

.landing-page-mba-features-flex>div .img-icon {
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%);
    padding: 8px;
    margin-bottom: 15px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUpDown 2s infinite alternate
}

.landing-page-mba-features-flex>div .img-icon img {
    width: 70px;
    filter: invert(100%) sepia(63%) saturate(0%) hue-rotate(259deg) brightness(108%) contrast(101%)
}

.landing-page-mba-features-flex>div p {
    text-align: center
}

@keyframes slideUpDown {
    0% {
        transform: translate(-50%, -50%);
        opacity: 1
    }

    100% {
        transform: translate(-50%, -60%);
        opacity: .8
    }
}

.landing-page-placement-slider .slick-slide .the-img {
    padding: 10px
}

.landing-page-placement-slider .slick-slide .the-img img {
    padding: 8px;
    box-shadow: rgba(60, 64, 67, .3) 0px 1px 2px 0px, rgba(60, 64, 67, .15) 0px 1px 3px 1px
}

.landing-page-random-pics-grid {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 0;
    column-gap: 0
}

.landing-page-random-pics-grid a {
    display: block;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, .4)
}

.landing-page-random-pics-grid a:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    transition: all .5s ease-in-out
}

.landing-page-random-pics-grid a:hover:after {
    box-shadow: inset 0 0 30px rgba(0, 0, 0, .4)
}

.mac-img {
    box-shadow: rgba(0, 0, 0, .4) 0px 2px 4px, rgba(0, 0, 0, .3) 0px 7px 13px -3px, rgba(0, 0, 0, .2) 0px -3px 0px inset;
    margin-top: 25px
}

.infra-facilities-slider .slick-slide {
    margin: 0 15px
}

.infra-facilities-slider .slick-slide .recruiter-card .img-div {
    position: relative
}

.infra-facilities-slider .slick-slide .recruiter-card .img-div .infra-img {
    box-shadow: rgba(60, 64, 67, .3) 0px 1px 2px 0px, rgba(60, 64, 67, .15) 0px 1px 3px 1px;
    height: 297px;
    -o-object-fit: cover;
    object-fit: cover
}

.infra-facilities-slider .slick-slide .recruiter-card .img-div p {
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    padding: 10px;
    font-family: spartan-semibold
}

.the-galen {
    --s: 15px;
    padding: 20px;
    border: calc(2*var(--s)) solid rgba(0, 0, 0, 0);
    outline: 1px solid #000;
    outline-offset: calc(-1*var(--s));
    background: conic-gradient(from 90deg at 1px 1px, rgba(0, 0, 0, 0) 25%, #000 0)
}

.the-galen-text {
    text-align: justify;
    margin-bottom: 0
}

#training-opportunity-strip {
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%);
    padding: 10px 0
}

#training-opportunity-strip .strip-text {
    text-align: center;
    font-style: italic;
    font-size: 45px;
    padding-top: 15px
}

#training-opportunity-strip .strip-text .me-small {
    font-size: 34px
}

.text-animate {
    outline: none;
    text-decoration: none;
    position: relative;
    color: #9e9ba4;
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
    color: #c6ced1;
    margin-bottom: 0
}

.text-animate p {
    color: #c6ced1;
    display: inline
}

.text-animate:hover {
    color: #fff
}

.text-animate:hover p {
    color: #fff
}

.text-animate::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    top: 50%;
    right: 0;
    background: #f9f9f9;
    transform: translate3d(-100%, 0, 0);
    transition: transform .4s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1)
}

.text-animate:hover::after {
    transform: translate3d(100%, 0, 0)
}

.text-animate::before {
    content: attr(data-letters);
    position: absolute;
    z-index: 2;
    overflow: hidden;
    color: #424242;
    white-space: nowrap;
    width: 0%;
    transition: width .4s .3s
}

.text-animate:hover::before {
    width: 100%
}

.handshake-flex {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.assessment-img img {
    width: 180px;
    height: 130px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 50px;
    box-shadow: rgba(0, 0, 0, .07) 0px 1px 2px, rgba(0, 0, 0, .07) 0px 2px 4px, rgba(0, 0, 0, .07) 0px 4px 8px, rgba(0, 0, 0, .07) 0px 8px 16px, rgba(0, 0, 0, .07) 0px 16px 32px, rgba(0, 0, 0, .07) 0px 32px 64px;
    padding: 10px
}

#counter-section {
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%);
    padding: 25px 0
}

#counter-section .counter-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr))
}

#counter-section .counter-div {
    color: var(--primary-clr);
    text-align: center;
    position: relative
}

#counter-section .counter-div .count-icon {
    margin-bottom: 20px;
    width: 70px;
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(58deg) brightness(106%) contrast(101%)
}

#counter-section .counter-div .count-number {
    font-size: 24px;
    color: #fff;
    line-height: 1
}

#counter-section .counter-div .counter-title {
    display: grid;
    place-content: center;
    height: 30px;
    color: #fff;
    line-height: 1
}

#counter-section .counter-div+.counter-div {
    border-left: 1px solid #fff
}

.tp-row-mt {
    margin-top: 30px
}

.placements-careers-flex {
    display: flex
}

.placements-careers-flex div {
    width: 50%
}

.placement-sliders-section {
    transition: all 0s ease-in-out
}

.placement-sliders-section * {
    transition: all 0s ease-in-out
}

.placement-sliders-section .chart-heading {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.placements-charts {
    width: 100%;
    height: 400px
}

.magnificent-placements-slider {
    padding: 10px 10px 3px;
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%);
    box-shadow: rgba(6, 24, 44, .4) 0px 0px 0px 2px, rgba(6, 24, 44, .65) 0px 4px 6px -1px, rgba(255, 255, 255, .08) 0px 1px 0px inset
}

.magnificent-placements {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.magnificent-placements .placement-div {
    background: none;
    padding: 0
}

.magnificent-placements .placement-div .upper .first .big-text {
    font-size: 10rem
}

/* .magnificent-placements .placement-div .upper .first .title>p:first-child>span:first-child {
    font-size: 5rem
} */

.magnificent-placements .placement-div p {
    color: #723bcd
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.testimonials-grid .video-box {
    width: 100%
}

.testimonials-grid .video-box img {
    width: 100%;
    min-height: 250px;
    display: block;
    box-shadow: rgba(0, 0, 0, .17) 0px -23px 25px 0px inset, rgba(0, 0, 0, .15) 0px -36px 30px 0px inset, rgba(0, 0, 0, .1) 0px -79px 40px 0px inset, rgba(0, 0, 0, .06) 0px 2px 1px, rgba(0, 0, 0, .09) 0px 4px 2px, rgba(0, 0, 0, .09) 0px 8px 4px, rgba(0, 0, 0, .09) 0px 16px 8px, rgba(0, 0, 0, .09) 0px 32px 16px
}

.testimonials-grid .video-box img.min-h-auto {
    min-height: auto;
}

.testimonials-grid .video-box .text-div {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f8f8;
    padding: 0 25px;
    overflow: hidden
}

.testimonials-grid .video-box p {
    text-align: center;
    font-size: 18px;
    color: #723bcd;
    font-family: font-semibold;
    text-transform: uppercase;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.testimonials-grid .video-box .play-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    visibility: hidden;
    border-radius: 50%;
    background: rgba(114, 59, 205, .35);
    transition: all .4s ease-in-out
}

.testimonials-grid .video-box .play-div i {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    color: #fff;
    width: 45px;
    height: 45px;
    opacity: 0;
    visibility: hidden;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 4px;
    transition: all .4s ease-in
}

.testimonials-grid .video-box:hover .play-div {
    width: 100%;
    height: 100%;
    border-radius: 0;
    visibility: visible
}

.testimonials-grid .video-box:hover .play-div i {
    opacity: 1;
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%)
}

.inner-course-smt-margin {
    scroll-margin-top: 150px
}

.course-innerpage-sub-title {
    background: #fe553c;
    padding: 15px 20px;
    color: #fff;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, .07) 0px 1px 2px, rgba(0, 0, 0, .07) 0px 2px 4px, rgba(0, 0, 0, .07) 0px 4px 8px, rgba(0, 0, 0, .07) 0px 8px 16px, rgba(0, 0, 0, .07) 0px 16px 32px, rgba(0, 0, 0, .07) 0px 32px 64px;
    font-size: 22px;
    text-align: center
}

.career-caution {
    margin-top: 10px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, .3);
    display: inline-block;
    width: 270px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px
}

.career-caution .text-content {
    padding: 15px
}

.caution-content>*+* {
    margin-top: 15px
}

.caution-content p {
    text-align: justify
}

.caution-content ul li {
    text-align: justify
}

.caution-content-ul {
    list-style: disc;
    padding-left: 17px
}

.caution-content-ul>li+li {
    margin-top: 5px
}

.las-flex {
    display: flex;
    height: 100vh
}

.las-flex .img-item {
    width: 33.3%;
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    transition: all .3s linear;
    position: relative;
    z-index: 0
}

.las-flex .img-item:hover {
    transform: scale(1.02);
    z-index: 1
}

.las-flex .img-item a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.las-flex .img-item a .title {
    color: #fff;
    font-size: 26px;
    text-transform: uppercase;
    margin: 80px auto 0
}

.las-flex .left-img {
    background: url("../images/life-sistec/L1.jpg")
}

.las-flex .left-img:hover {
    box-shadow: 15px 0 30px 5px rgba(0, 0, 0, .5)
}

.las-flex .center-img {
    background: url("../images/life-sistec/L2.jpg")
}

.las-flex .center-img:hover {
    box-shadow: 15px 0 30px 5px rgba(0, 0, 0, .5), -10px 0 30px 5px rgba(0, 0, 0, .5)
}

.las-flex .right-img {
    background: url("../images/life-sistec/L3.jpg")
}

.las-flex .right-img:hover {
    box-shadow: -15px 0 30px 5px rgba(0, 0, 0, .5)
}

.facility-floating-div {
    display: block;
    width: 300px;
    shape-outside: url("../images/facilities/amphitheaters.png");
    shape-margin: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    float: left
}

.professional-chapters-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.professional-chapters-flex a {
    width: calc(20% - 20px);
    text-align: center;
    padding: 15px
}

.professional-chapters-flex a p {
    line-height: 1.1;
    margin-top: 10px
}

.professional-chapters-flex a:hover p {
    color: #fe553c
}

.infrastructure-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap
}

.infrastructure-flex>div {
    width: calc(33.3% - 20px);
    text-align: center
}

.infrastructure-flex p {
    padding: 10px;
    font-size: 18px;
    text-transform: uppercase;
    font-family: font-semibold
}

.infrastructure-flex p span:first-child {
    font-size: 30px;
    color: #fe553c
}

.academics-topics-boxes {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 15px
}

.academics-topics-boxes>div {
    width: calc(33.3% - 8px);
    border-radius: 15px
}

.academics-topics-boxes>div img {
    border-radius: 15px
}

.academics-hostel-mess {
    text-align: center;
    margin-top: 30px
}

.academics-hostel-mess>div {
    display: inline-block
}

.academics-hostel-mess .main-title {
    font-size: 56px;
    text-align: center;
    font-family: font-semibold;
    color: #fe553c;
    margin-bottom: 0;
    text-transform: uppercase;
    text-shadow: 1px 1px 0px #f8f8f8, 4px 4px 0px rgba(0, 0, 0, .2);
    line-height: 1
}

.academics-hostel-mess .sub-title {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.academics-hostel-mess .sub-title p {
    font-size: 34px;
    font-family: font-semibold;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0px #eee, 3px 3px 0px rgba(92, 113, 222, .5);
    color: #5c71de
}

.highlights-title {
    text-transform: uppercase;
    font-family: font-bold;
    color: #723bcd;
    font-size: 36px
}

.hostel-highlights-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px
}

.hostel-highlights-flex>div {
    width: calc(25% - 24px);
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, .05) 0px 6px 24px 0px, rgba(0, 0, 0, .08) 0px 0px 0px 1px;
    position: relative;
    height: 75px;
    display: flex;
    align-items: center
}

.hostel-highlights-flex>div .img-icon {
    width: 75px;
    height: 75px;
    padding: 18px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, .05) 0px 6px 24px 0px, rgba(0, 0, 0, .08) 0px 0px 0px 1px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hostel-highlights-flex>div .img-icon img {
    width: 100%;
    filter: invert(65%) sepia(86%) saturate(5493%) hue-rotate(338deg) brightness(101%) contrast(99%)
}

.hostel-highlights-flex>div p {
    width: calc(100% - 75px);
    padding: 0 15px
}

#admission-form {
    width: 100%;
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%);
    padding: calc(100px/3) 0
}

#admission-form .admission-form {
    padding: calc(100px/3);
    background: #fff;
    box-shadow: rgba(0, 0, 0, .15) 0px 5px 15px 0px
}

#admission-form .admission-form .the-title {
    font-size: 36px
}

#admission-form .admission-form .the-sub-title {
    font-size: 22px
}

#admission-form .admission-form .condition-check {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px
}

#admission-form .admission-form .condition-check p {
    line-height: 1.2
}

.floating-form {
    margin-top: 30px
}

.floating-form .floating-label {
    position: relative;
    margin-bottom: 5px
}

.floating-form .floating-label .floating-input,
.floating-form .floating-label .floating-select {
    font-size: 20px;
    padding: 4px 0;
    color: #023;
    display: block;
    width: 100%;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    border-bottom: 1px solid #fe553c
}

.floating-form .floating-label .floating-input:focus,
.floating-form .floating-label .floating-select:focus {
    outline: none
}

.floating-form .floating-label .the-text {
    color: #023;
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    transition: .2s ease all;
    -moz-transition: .2s ease all;
    -webkit-transition: .2s ease all
}

.floating-form .floating-label .floating-input:not(:-moz-placeholder-shown)~.the-text {
    top: -18px;
    font-size: 15px;
    color: #fe553c
}

.floating-form .floating-label .floating-input:focus~.the-text,
.floating-form .floating-label .floating-input:not(:placeholder-shown)~.the-text {
    top: -18px;
    font-size: 15px;
    color: #fe553c
}

.floating-form .adm-error {
    margin-bottom: 25px;
    color: #fe553c
}

.select2-container {
    width: 100% !important
}

.select2-container--default .select2-selection--single {
    border: unset;
    border-bottom: 1px solid #fe553c
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    font-size: 20px;
    line-height: 1.45;
    color: #023
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto;
    top: 50%;
    right: 0
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fe553c rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fe553c rgba(0, 0, 0, 0)
}

.select2-results__option:first-child {
    color: #fe553c
}

.custom-check {
    position: relative;
    width: 60px;
    height: 28px;
    cursor: pointer
}

.custom-check .custom-check-input {
    position: relative;
    z-index: 1;
    display: none
}

.custom-check .custom-check-input:checked~span {
    background: var(--adm-theme-clr-five);
}

.custom-check .custom-check-input:checked~span i {
    left: 32px
}

.custom-check span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #a9a9a9;
    border-radius: 80px;
    transition: .5s
}

.custom-check span i {
    position: absolute;
    top: 50%;
    left: 1px;
    transform: translate(1px, -50%);
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    transition: .5s
}

.admission-form-text-div {
    margin-top: 30px
}

.admission-section-smt-margin {
    scroll-margin-top: 150px
}

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

.trivia-img.left {
    width: 75%
}

.trivia-img.right {
    width: 90%
}

.admission-links-container-flex {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem
}

.admission-links-container-flex .admission-links-flex {
    display: flex;
    justify-content: center;
    gap: 5rem
}

.admission-links-container-flex .admission-links-flex .adm-link-card {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
    font-size: 16px;
    transition: all .3s;
    border: 1px solid rgba(0, 0, 0, 0)
}

.admission-links-container-flex .admission-links-flex .adm-link-card img {
    transition: all .3s;
    width: 35px
}

.admission-links-container-flex .admission-links-flex .adm-link-card:hover {
    box-shadow: 0 25px 35px -25px rgba(0, 0, 0, .4);
    border: 1px solid #fe553c
}

.admission-links-container-flex .admission-links-flex .adm-link-card:hover img {
    filter: invert(55%) sepia(39%) saturate(7259%) hue-rotate(337deg) brightness(101%) contrast(99%)
}

.contact-iframe {
    width: 100%;
    height: 350px;
    margin: 20px 0;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, .15) 0px 5px 15px 0px
}

.contact-iframe+.cc-box-item.half+.cc-box-item.half {
    margin-top: 20px
}

.contact-info-flex p {
    display: flex;
    gap: 15px
}

.contact-info-flex p span:first-child {
    min-width: 75px
}

.contact-info-flex p a:hover {
    color: #fe553c
}

.address-div {
    margin-bottom: 5px
}

.address-div h2 {
    text-transform: uppercase;
    color: #fe553c
}

.address-div p {
    line-height: 1.2
}

.ideathon-page-content {
    position: relative
}

.ideathon-section {
    padding: 60px 0
}

.ideathon-section .this-title {
    margin-bottom: 3rem
}

.ideathon-modal-img {
    width: 90%;
    margin: 0 auto;
    display: block
}

.ideathon-modal-btn-close {
    outline: none;
    border: none;
    color: #fff;
    background: rgba(0, 0, 0, 0);
    cursor: pointer
}

#ideathon-top-header {
    background: #fe553c;
    transition: all .3s ease-in-out;
    width: 100%;
    height: 100px;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999
}

#ideathon-top-header .logo-header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 40px;
    margin-right: 45px
}

#ideathon-top-header .logo-header-flex .sps-logo {
    position: relative;
    width: 60px
}

#ideathon-top-header .logo-header-flex .sps-logo img {
    width: 100%
}

#ideathon-top-header .logo-header-flex .header-info .institute {
    font-size: 36px;
    margin-bottom: 0;
    line-height: 1
}

#ideathon-top-header .logo-header-flex .header-info .address {
    font-size: 18px
}

#ideathon-header {
    position: fixed;
    left: 0;
    top: 100px;
    width: 100%;
    transition: all .3s ease-in-out;
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%);
    box-shadow: rgba(0, 0, 0, .24) 0px 3px 8px;
    z-index: 999
}

#ideathon-header.fixed-me-top {
    top: 0
}

#ideathon-header .nav-logo-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

#ideathon-header .nav-logo-flex nav {
    width: 100%
}

#ideathon-header .nav-logo-flex nav .nav-flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center
}

#ideathon-header .nav-logo-flex nav .nav-flex>li {
    position: relative
}

#ideathon-header .nav-logo-flex nav .nav-flex>li>a {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    display: block;
    padding: 14px 10px;
    position: relative;
    line-height: 1;
    transition: all .1s ease-in-out
}

#ideathon-header .nav-logo-flex nav .nav-flex>li>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0)
}

#ideathon-header .nav-logo-flex nav .nav-flex>li>a::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #023;
    z-index: -1;
    opacity: 0;
    transition: all .35s ease-out;
    border-right: 2px solid #fff
}

#ideathon-header .nav-logo-flex nav .nav-flex>li:hover>a::after {
    background: #fff
}

#ideathon-header .nav-logo-flex nav .nav-flex>li:hover>a::before {
    opacity: 1;
    right: 0;
    width: 100%
}

#ideathon-header .nav-logo-flex nav .nav-flex>li ul.dropdown {
    position: absolute;
    left: 0px;
    top: 120%;
    min-width: 225px;
    background: #fff;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 1px 5px -1px rgba(0, 0, 0, .3);
    transition: all ease-in-out .3s;
    transform-origin: 0 0 0;
    z-index: 999;
    border-top: 4px solid #5c71de
}

#ideathon-header .nav-logo-flex nav .nav-flex>li ul.dropdown::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid #5c71de;
    transition: all .5s ease-in-out
}

#ideathon-header .nav-logo-flex nav .nav-flex>li ul.dropdown li {
    background: rgba(0, 0, 0, .75);
    transition: all .3s ease-in-out
}

#ideathon-header .nav-logo-flex nav .nav-flex>li ul.dropdown li a {
    padding: 8px 20px;
    color: #fff;
    font-size: 16px;
    display: block;
    width: 100%;
    transition: all .3s ease-in-out
}

#ideathon-header .nav-logo-flex nav .nav-flex>li ul.dropdown li:hover {
    background: var(--sps-yellow)
}

#ideathon-header .nav-logo-flex nav .nav-flex>li ul.dropdown li:hover a {
    color: #fe553c
}

#ideathon-header .nav-logo-flex nav .nav-flex>li ul.dropdown.to-right {
    left: unset;
    right: 0
}

#ideathon-header .nav-logo-flex nav .nav-flex>li ul.dropdown.to-right::before {
    left: unset;
    right: 20px
}

#ideathon-header .nav-logo-flex nav .nav-flex>li:hover ul.dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 1000%;
    transition: all .5s ease-in-out;
    top: 95%;
    opacity: 1;
    visibility: visible;
    max-height: 1000%;
    padding: 0px 0px;
    transition: all .5s ease-in-out
}

#ideathon-mob-header {
    position: fixed;
    left: 0;
    top: 175px;
    width: 100%
}

#ideathon-mob-header .school-name-logo {
    display: flex;
    align-items: center;
    gap: 0 5px
}

#ideathon-mob-header .school-name-logo img {
    width: 45px;
    padding: 0;
    margin: 0
}

#ideathon-mob-header .navbar-nav .nav-link {
    padding: .75rem 1rem;
    border-top: 1px solid #fff
}

#ideathon-mob-header .accordion-item {
    border: unset;
    border-top: 1px solid #fff;
    border-radius: 0;
    background: rgba(0, 0, 0, 0)
}

#ideathon-mob-header .accordion-button {
    background: #212529;
    color: rgba(255, 255, 255, .55);
    padding: .9rem 1rem
}

#ideathon-mob-header .accordion-button::after {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .55);
    background-image: unset
}

#ideathon-mob-header .accordion-button:not(.collapsed)::after {
    content: "";
    background-image: unset;
    transform: rotate(0deg)
}

#ideathon-mob-header .accordion-button:focus {
    box-shadow: unset
}

#ideathon-mob-header .accordion-body {
    color: #fff;
    padding: 0 1.5rem 1rem
}

#ideathon-mob-header .accordion-body ul li {
    padding: .3rem 0
}

#ideathon-mob-header .accordion-body ul li a {
    color: #fff
}

.event-name {
    width: 60%;
    margin: 0 auto 15px
}

.event-name h1 {
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fe553c;
    font-family: spartan-semibold
}

.event-name h1 span {
    margin-top: 5px;
    font-size: 15px;
    word-spacing: 1px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #723bcd;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center
}

.event-name h1 span::after,
.event-name h1 span::before {
    content: " ";
    display: block;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    height: 5px;
    background-color: #f8f8f8
}

.progress-div {
    position: relative
}

.progress-div .progress-ul {
    display: flex;
    counter-reset: progress-steps
}

.progress-div .progress-ul li {
    text-align: center;
    width: 20%
}

.progress-div .progress-ul li .li-text {
    padding: 20px;
    background: #fff;
    box-shadow: rgba(14, 30, 37, .12) 0px 2px 4px 0px, rgba(14, 30, 37, .32) 0px 2px 16px 0px;
    width: 75%;
    margin: 0 auto;
    position: relative;
    border-radius: .5rem
}

.progress-div .progress-ul li .li-text::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(0, 0, 0, 0);
    border-right: 8px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid #fe553c
}

.progress-div .progress-ul li .li-text.top-spacing {
    margin-top: 25px
}

.progress-div .progress-ul li .li-text.top-spacing::before {
    top: -10px;
    transform: translate(-50%, 0)
}

.progress-div .progress-ul li .li-text.bottom-spacing {
    margin-bottom: 25px
}

.progress-div .progress-ul li .li-text.bottom-spacing::before {
    bottom: -10px;
    transform: translate(-50%, 0) rotate(180deg)
}

.progress-div .progress-ul li .li-circle {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    background: #fe553c;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px auto;
    position: relative
}

.progress-div .progress-ul li .li-circle::before {
    counter-increment: progress-steps;
    content: counter(progress-steps);
    position: absolute;
    color: #fff;
    font-family: spartan-semibold;
    font-size: 24px
}

.animate-top-bottom {
    animation: animate-top-bottom 2s ease-in-out infinite;
    position: absolute;
    left: 0;
    top: 0
}

@keyframes animate-top-bottom {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(0, -5px)
    }
}

.animate-bottom-top {
    animation: animate-bottom-top 2s ease-in-out infinite;
    position: absolute;
    left: 0;
    top: 0
}

@keyframes animate-bottom-top {

    0%,
    100% {
        transform: translate(0, -5px)
    }

    50% {
        transform: translate(0, 0)
    }
}

.ideathon-info-card {
    text-align: center;
    position: relative
}

.ideathon-info-card .card-div {
    width: 300px;
    padding: 30px 0 0 0;
    margin: 0 40px;
    -o-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2)
}

.ideathon-info-card .card-div .card-div-image {
    padding: 18px 15px;
    background-image: linear-gradient(#723bcd, #5c71de);
    width: 350px;
    position: relative;
    right: 25px
}

.ideathon-info-card .card-div .card-div-image::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    border: 12px solid #fe553c;
    top: -24px;
    left: 0px;
    border-left-color: rgba(0, 0, 0, 0);
    border-top-color: rgba(0, 0, 0, 0)
}

.ideathon-info-card .card-div .card-div-image::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    border: 12px solid #fe553c;
    bottom: -24px;
    right: 0;
    border-right-color: rgba(0, 0, 0, 0);
    border-bottom-color: rgba(0, 0, 0, 0)
}

.ideathon-info-card .card-div .card-div-image img {
    width: 45px;
    filter: invert(100%) sepia(0%) saturate(4218%) hue-rotate(342deg) brightness(110%) contrast(107%)
}

.ideathon-info-card .card-div .card-div-image ul {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px
}

.ideathon-info-card .card-div .card-div-image .title {
    font-size: 20px;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase
}

.ideathon-info-card .card-div .card-div-image .sub-title {
    font-size: 18px;
    color: #fff;
    line-height: 1
}

.ideathon-info-card .card-div .card-div-content {
    padding: 40px 20px 20px;
    text-align: justify
}

.ideathon-info-card .card-div .card-div-content ul li {
    font-size: 16px;
    color: #023;
    padding-left: 25px;
    line-height: 1.2;
    text-align: left
}

.ideathon-info-card .card-div .card-div-content ul li::before {
    top: -2px;
    margin-right: 0
}

.criteria-card {
    background: #287bff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 320px;
    height: 350px;
    margin: 0 auto;
    border-radius: 20px;
    border-bottom-left-radius: 160px;
    border-bottom-right-radius: 160px;
    box-shadow: 0 15px 0 #fff, inset 0 -15px 0 rgba(255, 255, 255, .24), 0 45px 0 rgba(0, 0, 0, .15);
    overflow: hidden;
    background: linear-gradient(to bottom, #ff2ae0, #645bf6)
}

.criteria-card::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -40%;
    padding: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
    transform: rotate(35deg);
    pointer-events: none;
    filter: blur(5px)
}

.criteria-card .criteria-icon {
    position: relative;
    width: 130px;
    height: 110px;
    background: #3c2846;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    box-shadow: 0 15px 0 rgba(0, 0, 0, .1), inset 0 -8px 0 #fff;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px
}

.criteria-card .criteria-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0);
    border-top-right-radius: 50px;
    box-shadow: 15px -15px 0 15px #3c2846
}

.criteria-card .criteria-icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0);
    border-top-left-radius: 50px;
    box-shadow: -15px -15px 0 15px #3c2846
}

.criteria-card .criteria-icon img {
    width: 70px;
    filter: invert(100%) sepia(0%) saturate(4218%) hue-rotate(342deg) brightness(110%) contrast(107%)
}

.criteria-card .criteria-content {
    position: absolute;
    width: 100%;
    padding: 30px;
    padding-top: 150px;
    text-align: center
}

.criteria-card .criteria-content p {
    color: #fff;
    line-height: 1.2
}

#ideathon-process-steps {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 20
}

#ideathon-process-steps li {
    list-style: none
}

#ideathon-process-steps li a {
    position: relative;
    width: 60px;
    height: 60px;
    text-align: center;
    margin: 0 10px;
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
    text-decoration: none;
    box-shadow: 0 12px 15px rgba(0, 0, 0, .3);
    background: linear-gradient(0deg, #ddd, #fff);
    transition: .5s;
    display: block
}

#ideathon-process-steps li a:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    text-decoration: none
}

#ideathon-process-steps li a p {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #fff, #ddd);
    border-radius: 50%;
    font-size: 24px;
    color: rgba(0, 34, 51, .9);
    transition: .1s;
    padding-top: 10px;
    font-weight: bold
}

#ideathon-process-steps li.active a {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .3);
    text-decoration: none
}

#ideathon-process-steps li.active p {
    background: #d3d3d3;
    color: #023
}

.article_container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 40vw;
    height: 170px;
    margin-top: 30px
}

article {
    width: 100%;
    top: 50%;
    position: absolute;
    background-color: #fff;
    transform: translate(0, -50%);
    box-shadow: -0.25rem .25rem .25rem rgba(0, 0, 0, .1), .25rem .25rem .25rem rgba(0, 0, 0, .1), 0 .2rem .2rem rgba(0, 0, 0, .1)
}

article * {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 1rem
}

article h2 {
    background-color: #5c71de;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: .12rem;
    text-transform: uppercase
}

article p {
    width: 100%;
    line-height: 1.2rem
}

article.active_m_2 {
    left: -110vw;
    opacity: 0
}

article.active_m_1 {
    left: -110%;
    opacity: .3
}

article.active {
    left: 0;
    opacity: 1
}

article.active_p_1 {
    left: 110%;
    opacity: .3
}

article.active_p_2 {
    left: 110vw;
    opacity: 0
}

.ideathon-page-content .team-card {
    width: 245px;
    height: 245px
}

.ideathon-page-content .team-card .team-card-footer {
    padding: 15px 10px
}

.ideathon-modal-div-bg {
    background: #fff;
    text-align: center;
    padding: 80px 50px
}

.ideathon-video {
    margin-bottom: 4rem
}

.image-fit-100 {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top
}

.pbodies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px
}

.pbodies-grid .the-card {
    text-align: center;
    padding: 20px 15px;
    box-shadow: rgba(0, 0, 0, .07) 0px 1px 2px, rgba(0, 0, 0, .07) 0px 2px 4px, rgba(0, 0, 0, .07) 0px 4px 8px, rgba(0, 0, 0, .07) 0px 8px 16px, rgba(0, 0, 0, .07) 0px 16px 32px, rgba(0, 0, 0, .07) 0px 32px 64px;
    font-size: 14px;
    min-height: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    text-transform: uppercase
}

.pbodies-grid .the-card p:first-child {
    color: #723bcd;
    font-size: 16px
}

.rh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    padding: 25px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    position: relative;
}

.rh-grid.design-2 {
    gap: 30px;
    border-radius: 0;
    box-shadow: unset;
}

.rh-grid.design-2 .rh-grid-card:nth-child(3n + 1) img {
    border-radius: 34% 21% 0% 36% / 49% 0% 59% 51%;
}

.rh-grid.design-2 .rh-grid-card:nth-child(3n + 2) img {
    border-radius: 0;
}

.rh-grid.design-2 .rh-grid-card:nth-child(3n) img {
    border-radius: 21% 34% 36% 0% / 0% 49% 51% 59%;
}

.rh-grid .rh-grid-card img {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.rh-grid .rh-grid-card .date {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #5c71de;
    line-height: 1.4;
}

.rh-grid.design-2 .rh-grid-card:nth-child(3n + 1) .date {
    text-align: right;
}

.rh-grid.design-2 .rh-grid-card:nth-child(3n + 2) .date {
    text-align: center;
}

.rh-grid .rh-grid-card .title {
    text-align: right;
    font-size: 20px;
    margin-top: 12px;
    font-weight: bold;
    color: #fe553c;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.rh-grid.design-2 .rh-grid-card:nth-child(3n + 2) .title {
    text-align: center;
}

.rh-grid.design-2 .rh-grid-card:nth-child(3n + 3) .title {
    text-align: left;
}

.new-adm-sections-spacing>*+* {
    margin-top: 80px;
}

#new-adm-hero-section {
    position: relative;
    width: 100%;
    min-height: 750px;
    background: url('../../upload/adm-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
}

#new-adm-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1;
}

#new-adm-hero-section-container {
    display: flex;
}

#new-adm-hero-section-container .left {
    position: relative;
    width: 65%;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

#new-adm-hero-section-container .right {
    position: relative;
    width: 35%;
    z-index: 1;
}

#new-adm-hero-section-container .left .awards-container {
    margin-left: -10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

#new-adm-hero-section-container .left .award-card>div {
    position: relative;
    width: 180px;
    height: 180px;
}


#new-adm-hero-section-container .left .award-card>div>p {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -70%);
    font-size: 26px;
    color: #fff;
    font-family: spartan-semibold;
}

#new-adm-hero-section-container .left .award-card>div>.img-div {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#new-adm-hero-section-container .left .award-card>div>.img-div>img {
    width: 100%;
    height: 100%;
    filter: var(--white-filter);
}

.accr-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.accr-images-container .adm-years-img {
    width: 60px;
}

.accr-images-container .adm-naac-img {
    width: 100px;
}

.accr-images-container .adm-nba-img {
    width: 95px;
}

#new-adm-hero-section-container .left .left-title {
    position: relative;
}

#new-adm-hero-section-container .left .left-title p {
    color: #fff;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    text-shadow: -2px -2px 3px var(--theme-clr-one), 4px 4px 3px var(--theme-clr-one);
    padding-right: 100px;
}

#new-adm-hero-section-container .left .left-title p:first-child {
    font-size: 75px;
    text-align: center;
}

#new-adm-hero-section-container .left .left-title p:nth-child(2) {
    margin-top: -15px;
    font-size: 65px;
    color: #fff;
    text-shadow: -2px -2px 3px var(--theme-clr-one), 4px 4px 3px var(--theme-clr-one);
    text-transform: uppercase;
    padding-right: 100px;
}

#new-adm-hero-section-container .left .left-title p .year {
    font-family: lobster-regular;
    font-size: 80px;
    font-style: italic;
    color: #fff;
    text-shadow: -2px -2px 3px var(--theme-clr-one), 4px 4px 3px var(--theme-clr-one);
    display: inline-block;
    margin-left: 5px;
}

#new-adm-hero-section-container .left .hero-students-img {
    width: 85%;
}

#new-adm-hero-section-container .right .adm-enquiry-form {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: var(--gradient-two);
}

#new-adm-hero-section-container .right .adm-enquiry-form .form-label {
    color: #fff;
}

#new-adm-hero-section-container .right .adm-enquiry-form .full-width {
    grid-column: span 2;
}

#new-adm-hero-section-container .right .adm-enquiry-form .condition-check {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

#new-adm-hero-section-container .right .adm-enquiry-form .condition-check p {
    line-height: 1.2;
    font-size: 15px;
    color: #fff;
}

#new-adm-video-section {
    position: relative;
    width: 100%;
    background: url('../images/admissions/backgrounds/adm-video-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 110px 90px 90px;
}

#new-adm-video-section .video-div {
    position: relative;
}

#new-adm-video-section .video-div .video-itself {
    position: relative;
    height: 350px;
    width: 100%;
    border-radius: 20px;
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 55px;
    z-index: 2;
}

#new-adm-video-section .video-div .video-itself::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    border-radius: 20px;
    z-index: 2;
}

#new-adm-video-section .video-div .video-itself #background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 0;
}

#new-adm-video-section .video-div .video-itself .video-content-area {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

#new-adm-video-section .video-div .before-element {
    position: absolute;
    width: 100%;
    height: 350px;
    left: -10px;
    top: -10px;
    background: gainsboro;
    border-radius: 15px;
    z-index: 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.play-btn-box {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
}

.play-btn-box .play-btn {
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    border: 5px solid #fff;
    background: transparent;
    z-index: 1;
    display: grid;
    place-content: center;
    font-size: 20px;
}

.ripple-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    animation: ripple 2.9s linear 0s infinite;
    opacity: 0;
    border-radius: 50%;
}

.ripple-animation.border-2 {
    animation-delay: 1s;
}

.ripple-animation.border-3 {
    animation-delay: 2s;
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    20% {
        -webkit-transform: scale(1.24);
        -moz-transform: scale(1.24);
        -o-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -o-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0;
    }
}

#new-adm-video-section .para-div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#new-adm-video-section .para-div .title {
    font-family: spartan-semibold;
    color: var(--theme-clr-one);
    font-size: 28px;
}

#new-adm-video-section .para-div p {
    font-size: 20px;
    font-family: spartan-medium;
    line-height: 1.2;
}

#new-adm-why-study-section {
    margin-top: 20px;
}

.new-adm-why-study-container {
    position: relative;
    box-shadow: 0 0 3px #00000040;
    padding: 45px 50px;
    background: var(--gradient-one);
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: center;
}

.new-adm-why-study-container:before,
.new-adm-why-study-container:after {
    bottom: 26px;
    box-shadow: 0 28px 8px #00000080;
    content: "";
    height: 28px;
    position: absolute;
    width: 48%;
    z-index: -1;
}

.new-adm-why-study-container:before {
    left: 2%;
    transform: rotate(-3deg);
}

.new-adm-why-study-container:after {
    right: 2%;
    transform: rotate(3deg);
}

.new-adm-why-study-container .why-study-title {
    position: relative;
    color: #fff;
    height: 305px;
}

.new-adm-why-study-container .why-study-title span {
    position: absolute;
    font-size: 70px;
    font-family: spartan-semibold;
    text-shadow: 2px 2px 3px #f8f8f8, 2px 4px 0px rgba(0, 0, 0, .9);
    z-index: 1;
}

.new-adm-why-study-container .why-study-title span:first-child {
    left: 0;
    top: 0;
    color: var(--theme-clr-four);
}

.new-adm-why-study-container .why-study-title span:nth-child(2) {
    left: 50px;
    top: 62px;
    font-size: 70px;
}

.new-adm-why-study-container .why-study-title span:nth-child(3) {
    left: 0;
    top: 116px;
}

.new-adm-why-study-container .why-study-title span:nth-child(4) {
    left: 30px;
    top: 170px;
    font-size: 110px;
    color: var(--theme-clr-four);
}

.new-adm-why-study-container .why-study-title img {
    width: 210px;
    position: absolute;
    right: 15px;
    z-index: 0;
    top: -10px;
    filter: var(--white-filter);
    /* filter: invert(80%) sepia(30%) saturate(2257%) hue-rotate(354deg) brightness(104%) contrast(102%); */
}

.why-to-choose-list li {
    background: #fff;
    border-radius: 50px;
    color: #5c71de;
    font-size: 20px;
    font-family: spartan-medium;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-to-choose-list li .img-div {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.why-to-choose-list li img {
    width: 35px;
    filter: invert(55%) sepia(37%) saturate(7439%) hue-rotate(214deg) brightness(92%) contrast(89%);
}

.why-to-choose-list li+li {
    margin-top: 25px;
    position: relative;
}

.why-to-choose-list li+li::before {
    content: "";
    position: absolute;
    left: 10%;
    top: -25px;
    width: 4px;
    height: 25px;
    background: rgba(255, 204, 3, 0.7);
}

.why-to-choose-list li+li::after {
    content: "";
    position: absolute;
    right: 10%;
    top: -25px;
    width: 4px;
    height: 25px;
    background: rgba(255, 204, 3, 0.7);
}

#new-adm-courses-section {
    position: relative;
    width: 100%;
}

.new-adm-courses-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.home-process-single-wrapper {
    width: calc(50% - 13px);
    padding: 15px 15px 20px 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    display: grid;
    gap: 20px;
    grid-template-columns: 325px 1fr;
}

.home-process-single-wrapper:first-child {
    width: 100%;
    grid-template-columns: 325px 1fr 1fr;
}

.home-process-single-data h2 {
    font-family: spartan-semibold;
    font-size: 20px;
    color: #fe553c;
    text-transform: uppercase;
}

.home-process-single-data h2+h2 {
    margin-top: 15px;
}

.home-process-single-data ul {
    list-style: circle;
    padding-left: 17px;
}

.home-process-single {
    position: relative;
    display: block;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    border: 6px solid #a9b7ff;
    height: 334px;
}

.home-process-single:hover {
    border-color: #eceae0
}

.home-process-single:hover .home-process-single-img:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.home-process-single:hover .home-process-single-img-inner:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.home-process-single:hover .home-process-single-img-inner img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.home-process-single:hover .home-process-single-img-icon {
    color: #fff
}

.home-process-single:hover .home-process-single-img-icon:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.home-process-single:hover .home-process-single-content .this-text-box {
    max-height: 300px;
    transition: all .5s ease-in
}

.home-process-single-img {
    position: relative;
    display: block;
    padding-bottom: 50px;
    background: #5c71de;
    z-index: 1
}

.home-process-single-img:before {
    position: absolute;
    bottom: 56px;
    left: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    content: "";
    z-index: 1
}

.home-process-single-img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    height: 185px;
}

.home-process-single-img-inner:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #00000080;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 1
}

.home-process-single-img-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-process-single-img-inner img {
    width: 100%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.home-process-single-img-icon {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin: 0 auto;
    transform: translate(-50%, -20px);
    width: 80px;
    height: 80px;
    background: #fe553c;
    color: #008fc5;
    font-size: 40px;
    border-radius: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 100;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.home-process-single-img-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 50%;
    z-index: -1;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .5s cubic-bezier(.62, .21, .45, 1.52);
    transition: all .5s cubic-bezier(.62, .21, .45, 1.52);
}

.home-process-single-img-icon img {
    width: 50px;
    height: 50px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(68deg) brightness(107%) contrast(105%);
}

.home-process-single-content {
    position: relative;
    display: block;
    padding: 0 0 20px;
    z-index: 2;
    background-color: #5c71de;
}

.home-process-single-img.adm-theme-bg,
.home-process-single-content.adm-theme-bg {
    background-color: var(--adm-theme-clr-three);
}

.home-process-single-img-icon.adm-theme-bg {
    background-color: var(--adm-theme-clr-five);
}

.home-process-single-img-icon.adm-theme-bg img {
    filter: var(--adm-theme-clr-three-filter);
}

.home-process-single-content h3 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 5px
}

.home-process-single-content h3 a {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    -webkit-transition-delay: .1s;
    transition-delay: .1s
}

.home-process-single-content h3 a:hover {
    color: var(--agriox-base, #f1cf69)
}

.home-process-single-content .this-text-box {
    max-height: 42px;
    overflow: hidden;
    transition: all .5s ease-out
}

.home-process-single-content .this-text-box p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0
}

.home-process-single-content .read-more-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 25px);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #008fc5;
    margin-top: 15px;
    z-index: 1
}

.home-process-single-content .read-more-btn.bounce-effect {
    animation: bounce 1.5s infinite cubic-bezier(.445, .05, .55, .95)
}

.home-process-single-content .read-more-btn i {
    color: #fff;
    font-size: 18px
}

.home-process-single-content .read-more-btn:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .4s cubic-bezier(.62, .21, .45, 1.52);
    transition: all .4s cubic-bezier(.62, .21, .45, 1.52);
    background: #ec7c1c;
    z-index: -1
}

.home-process-single-content .read-more-btn:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.bottom-bg-whitish::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    height: calc(30px* 2);
    background: #fff;
    z-index: 2;
    filter: blur(15px);
}

.course-names-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.course-names-container li {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
    font-family: spartan-semibold;
}

.course-names-container li+li {
    border-left: 2px solid #fff;
    padding-left: 15px;
}

.new-adm-counter-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 520px;
    padding: 25px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    background: #f3f3f3;
    border-radius: 2rem;
}

.new-adm-counter-container .placement-drops-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 50px;
}

.drop {
    position: relative;
    width: 255px;
    height: 255px;
    margin: 0 auto 15px;
    background: #fff;
    border-radius: 57% 43% 37% 63% / 51% 53% 47% 49%;
    box-shadow: inset 10px 10px 10px rgba(92, 113, 222, 0.75), 15px 25px 10px rgba(0, 0, 0, 0.1), 15px 20px 2px rgba(0, 0, 0, 0.05), inset -10px -10px 15px rgba(92, 113, 222, 0.75);
    padding-left: 20px;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.drop img {
    width: 60px;
    margin-bottom: 10px;
    filter: var(--theme-clr-one-filter);
}

.drop .count-number {
    font-size: 26px;
    font-family: font-semibold;
    color: var(--theme-clr-three);
}

.drop-title {
    font-family: font-semibold;
    text-align: center;
    line-height: 1.2;
    font-size: 18px;
    color: var(--theme-clr-one);
}

.companies-logo-slider {
    margin-top: 60px;
}

.companies-logo-slider .recruiter-card {
    margin-bottom: 17px;
}

.companies-logo-slider .recruiter-card img {
    box-shadow: rgba(0, 0, 0, .19) 0px 10px 20px, rgba(0, 0, 0, .23) 0px 6px 6px;
}

.new-adm-campus-life-images-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.new-adm-campus-life-images-container.first-row {
    align-items: flex-end;
}

.new-adm-campus-life-images-container.middle-row {
    align-items: center;
}

.new-adm-campus-life-images-container.last-row {
    align-items: flex-start;
}

.new-adm-campus-life-images-container img {
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid #7a7a7a;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}

.new-adm-campus-life-images-container img.third-center {
    width: 200px;
    height: 175px;
}

.new-adm-campus-life-images-container img.second-fourth {
    width: 175px;
    height: 125px;
}

.new-adm-campus-life-images-container img.first-last {
    width: 150px;
    height: 100px;
}

.new-adm-campus-life-images-container img.mid-third-center {
    width: 370px;
    height: 200px;
}

.new-adm-campus-life-images-container img.mid-second-fourth {
    width: 265px;
    height: 200px;
}

.new-adm-campus-life-images-container img.mid-first-last {
    width: 200px;
    height: 150px;
}

.admission-facilities-slider .slick-slide {
    margin: 0 15px 10px;
}

.admission-facilities-slider p {
    padding: 10px;
    font-size: 19px;
    text-transform: uppercase;
    font-family: font-semibold;
    text-align: center;
}

.admission-facilities-slider p span {
    color: var(--theme-clr-one);
}

.new-adm-major-recruiters-containter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.new-adm-major-recruiters-containter img:first-child {
    width: 250px;
}

.new-adm-major-recruiters-containter img:nth-child(2) {
    width: 250px;
}

.new-adm-major-recruiters-containter img:nth-child(3) {
    width: 145px;
}

.new-adm-major-recruiters-containter img:nth-child(4) {
    width: 200px;
    height: 50px;
}

.new-adm-major-recruiters-containter img:nth-child(5) {
    width: 200px;
}

.new-adm-major-recruiters-containter img:nth-child(6) {
    width: 130px;
}

.new-adm-major-recruiters-containter img:nth-child(7) {
    width: 200px;
}

.new-adm-major-recruiters-containter img:nth-child(8) {
    width: 130px;
}

.new-adm-major-recruiters-containter img:nth-child(9) {
    width: 200px;
}

.new-adm-major-recruiters-containter img:nth-child(10) {
    width: 230px;
}

.new-adm-major-recruiters-containter img:nth-child(11) {
    width: 250px;
}

.new-adm-major-recruiters-containter img:nth-child(12) {
    width: 130px;
    height: 65px;
}

.new-adm-major-recruiters-containter img:nth-child(13) {
    width: 170px;
}

.new-adm-major-recruiters-containter img:nth-child(14) {
    width: 200px;
}

.new-adm-major-recruiters-containter img:nth-child(15) {
    width: 150px;
}

.new-adm-major-recruiters-containter p {
    font-size: 30px;
    color: #fe553c;
    font-family: spartan-medium;
}

.new-adm-campuses-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.new-adm-campuses-container div {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.new-adm-campuses-container img {
    width: 85%;
}

.new-adm-campuses-container h2 {
    margin-top: 5px;
    text-align: center;
    font-family: 'spartan-semibold';
    text-transform: uppercase;
    font-size: 24px;
    color: var(--theme-clr-one);
}

.departments-nav {
    gap: 20px;
}

.departments-nav #v-pills-tab {
    width: 20%;
}

.departments-nav #v-pills-tab .nav-link {
    background: #fff;
    color: #023;
    position: relative;
    box-shadow: rgba(0, 0, 0, .16) 0px 3px 6px, rgba(0, 0, 0, .23) 0px 3px 6px;
    border-radius: 5px;
    min-height: 55px;
    font-family: spartan-medium;
}

.departments-nav .nav-link.active {
    color: #fe553c;
}

.departments-nav #v-pills-tab .nav-link.active {
    background: var(--gradient-one);
    color: #fff;
}

.departments-nav #v-pills-tab .nav-link.active::before {
    content: "";
    display: block;
    border-top: 8px solid rgba(0, 0, 0, 0);
    border-left: 10px solid var(--theme-clr-one);
    border-bottom: 8px solid rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.departments-nav #v-pills-tab .nav-link+.nav-link {
    margin-top: 15px;
}

.departments-nav #v-pills-tabContent {
    width: 80%;
    box-shadow: rgba(0, 0, 0, .16) 0px 3px 6px, rgba(0, 0, 0, .23) 0px 3px 6px;
    border-radius: 5px;
    padding: 30px;
}

.placement-figures-container {
    position: relative;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.placement-figures-container>div {
    background: linear-gradient(180deg, #5c71de -50%, #723bcd 100%);
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.placement-figures-container>div>.animate-me {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 180px;
    padding-top: 15px;
    animation: circleMoveTwo 7s infinite ease-in-out;
}

.placement-figures-container>div img {
    width: 70px;
    margin-bottom: 10px;
    filter: var(--white-filter);
}

.placement-figures-container>div .count-number {
    font-size: 28px;
    color: #fff;
}

.placement-figures-container>div p {
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-family: spartan-semibold;
    text-transform: uppercase;
    height: 55px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background: linear-gradient(135deg, #e95035 0%, #e5136c 100%);
}

.new-placement-collaborations-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 15px 0 20px;
}

.new-placement-collaborations-container .logo-card {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.new-placement-collaborations-container .logo-card img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circleMove 7s infinite ease-in-out;
}

.new-placement-collaborations-container .logo-card .aon {
    width: 110px;
}

.new-placement-collaborations-container .logo-card .aws {
    width: 110px;
    margin-top: 10px;
}

.new-placement-collaborations-container .logo-card .cisco {
    width: 115px;
}

.new-placement-collaborations-container .logo-card .renault {
    width: 170px;
}

.new-placement-collaborations-container .logo-card .salesforce {
    width: 140px;
}

.new-placement-collaborations-container .logo-card .ultratech {
    width: 130px;
}

.new-placement-collaborations-container .logo-card .shl {
    width: 105px;
}

.new-placement-collaborations-container .logo-card .eicher {
    width: 150px;
}

.new-placement-collaborations-container .logo-card .ict-academy {
    width: 150px;
}

.new-placement-collaborations-container .logo-card .netlink {
    width: 170px;
}

.new-placement-collaborations-container .logo-card .centilytics {
    width: 130px;
}

.new-placement-collaborations-container .logo-card .cgpower {
    width: 160px;
}

.new-placement-collaborations-container .logo-card .forage {
    width: 140px;
}

.new-placement-collaborations-container .logo-card .hexaware {
    width: 130px;
}

.new-placement-collaborations-container .logo-card .johnson {
    width: 150px;
}

.new-placement-collaborations-container .logo-card .mediology {
    width: 160px;
}

.new-placement-collaborations-container .logo-card .netlink2 {
    width: 110px;
}

.new-placement-collaborations-container .logo-card .shreeji {
    width: 160px;
}

.new-placement-collaborations-container .logo-card .agentforce {
    width: 170px;
}

.new-placement-collaborations-container .logo-card .ibotix {
    width: 140px;
}

.new-placement-collaborations-container .logo-card .paradise {
    width: 140px;
}

.new-placement-collaborations-container .logo-card .satyakabir {
    width: 195px;
}

.new-placement-collaborations-container .logo-card .techgadgets {
    width: 180px;
}

.new-placement-clubs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.new-placement-clubs-container .mlsa {
    width: 220px;
}

.new-placement-clubs-container .salesforce {
    width: 300px;
}

.new-placement-tabs-title {
    position: relative;
    font-size: 44px;
    font-family: spartan-semibold;
    color: var(--theme-clr-one);
    text-transform: uppercase;
    /* text-shadow: 2px 2px 2px var(--adm-theme-clr-two), 3px 3px 2px var(--adm-theme-clr-one); */
    margin-bottom: 20px;
    text-align: center;
}

/* .new-placement-tabs-title span:first-child {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 100px;
    background-color: var(--adm-theme-clr-three);
    z-index: 1;
}

.new-placement-tabs-title span:nth-child(2) {
    position: absolute;
    left: 100px;
    bottom: 0;
    height: 5px;
    width: 100px;
    background-color: var(--adm-theme-clr-five);
    z-index: 1;
}

.new-placement-tabs-title span:nth-child(3) {
    position: absolute;
    left: 200px;
    bottom: 0;
    height: 5px;
    width: 100px;
    background-color: var(--adm-theme-clr-one);
    z-index: 1;
} */

@keyframes circleMove {
    0% {
        transform: translate(-50%, -50%) translateY(-3px) scale(1);
    }

    25% {
        transform: translate(-50%, -50%) translateX(3px) scale(1.03);
    }

    50% {
        transform: translate(-50%, -50%) translateY(3px) scale(1);
    }

    75% {
        transform: translate(-50%, -50%) translateX(-3px) scale(1.03);
    }

    100% {
        transform: translate(-50%, -50%) translateY(-3px) scale(1);
    }
}

@keyframes circleMoveTwo {
    0% {
        transform: translateY(-3px) scale(1);
    }

    25% {
        transform: translateX(3px) scale(1.01);
    }

    50% {
        transform: translateY(3px) scale(1);
    }

    75% {
        transform: translateX(-3px) scale(1.01);
    }

    100% {
        transform: translateY(-3px) scale(1);
    }
}

.new-placement-teams-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 38px;
}

.new-placement-infrastructure-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.new-placement-infrastructure-container div {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    padding: 20px;
    background: rgb(255 204 5 / 15%);
}

.new-placement-infrastructure-container .title {
    position: relative;
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: spartan-semibold;
    color: var(--theme-clr-one);
}

.new-placement-infrastructure-container .title span {
    color: #000;
    -webkit-text-fill-color: var(--adm-theme-clr-five);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--theme-clr-one);
    font-style: italic;
    font-size: 64px;
    font-family: spartan-semibold;
    line-height: 0.8;
}

.new-placement-infrastructure-container .title.small {
    font-size: 22px;
}

.new-placement-infrastructure-container .title.small span {
    display: block;
    font-size: 45px;
    margin-top: 5px;
}

.new-placement-infrastructure-container img {
    width: 450px;
    height: 250px;
    object-fit: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    object-position: top;
}

.internship-package-text {
    text-align: center;
    margin-top: 25px;
    font-style: italic;
    font-family: spartan-semibold;
    font-size: 34px;
    text-transform: uppercase;
    color: var(--theme-clr-three);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.internship-package-text span {
    font-size: 54px;
    /* text-shadow: 2px 2px 2px var(--adm-theme-clr-five), 3px 3px 2px var(--adm-theme-clr-one); */
}

#scroll-to-top-btn {
    position: fixed;
    right: 20px;
    bottom: 90px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    background: var(--gradient-one);
    text-indent: -9999px;
    border-radius: 60px;
    box-shadow: rgba(0, 0, 0, .16) 0px 3px 6px, rgba(0, 0, 0, .23) 0px 3px 6px;
    z-index: 10;
    display: none;
}

#scroll-to-top-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    border: 10px solid rgba(0, 0, 0, 0);
    border-bottom-color: #fff;
    transform: translate(-52%, -75%);
}

.new-placement-events-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.new-placement-events-container .child-item {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.new-placement-events-container .child-item .title {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 15px;
    transform: translate(-50%, 0);
    text-align: center;
    color: #fff;
    font-family: spartan-semibold;
    font-size: 24px;
}

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

    .new-placement-events-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .roadmap-timeline ol,
    .roadmap-timeline ol li {
        width: auto
    }

    .roadmap-timeline ol {
        padding: 0;
        transform: none !important
    }

    .roadmap-timeline ol li {
        display: block;
        height: auto;
        background: rgba(0, 0, 0, 0)
    }

    .roadmap-timeline ol li:first-child {
        margin-top: 25px
    }

    .roadmap-timeline ol li:not(:first-child) {
        margin-left: auto
    }

    .roadmap-timeline ol li>div {
        position: static;
        width: 80%;
        height: auto !important;
        margin: 0 auto 25px
    }

    .roadmap-timeline ol li:nth-child(odd)>div {
        transform: none
    }

    .roadmap-timeline ol li:nth-child(even)>div {
        transform: none
    }

    .roadmap-timeline ol li:nth-child(odd)>div::before,
    .roadmap-timeline ol li:nth-child(even)>div::before {
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        border: none;
        border-left: 1px solid #fff;
        height: 25px
    }

    .roadmap-timeline ol li:last-child,
    .roadmap-timeline ol li:nth-last-child(2)>div::before,
    .roadmap-timeline ol li:not(:last-child)::after,
    .roadmap-timeline .arrows {
        display: none
    }
}

@media(max-width: 767px) {
    :root {
        --text-size: 0.75px
    }

    body {
        font-size: 17px;
    }

    .new-placement-tabs-title {
        font-size: 36px;
        line-height: 1.0;
        text-shadow: 1px 1px 2px var(--adm-theme-clr-five), 2px 2px 2px var(--adm-theme-clr-one);
    }

    .new-placement-collaborations-container,
    .new-placement-infrastructure-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .new-placement-infrastructure-container img {
        width: 100%;
        height: auto;
    }

    .new-placement-clubs-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .new-placement-infrastructure-container .title span {
        display: block;
        font-size: 45px;
    }

    .departments-nav #v-pills-tabContent {
        padding: 20px 15px;
    }

    .departments-nav #v-pills-tab {
        width: 100%;
        flex-direction: row !important;
        gap: 15px;
        justify-content: space-between;
    }

    .departments-nav .nav-link {
        width: calc(50% - 10px);
    }

    .departments-nav #v-pills-tab .nav-link.active::before {
        content: unset;
    }

    .departments-nav #v-pills-tab .nav-link+.nav-link {
        margin-top: 0;
    }

    .departments-nav #v-pills-tabContent {
        width: 100%;
    }

    .new-adm-campuses-container {
        grid-template-columns: 1fr;
    }

    .mobile-flex-direction-column {
        flex-direction: column;
    }

    #new-adm-hero-section-container .left,
    #new-adm-hero-section-container .right {
        width: 100%;
    }

    #new-adm-hero-section-container .right {
        margin-top: 35px;
    }

    #new-adm-hero-section-container .left .left-title {
        text-align: center;
    }

    #new-adm-hero-section-container .left .left-title p:nth-child(2) {
        margin-top: 5px;
        font-size: 40px;
    }

    #new-adm-hero-section-container .left .left-title p:first-child {
        font-size: 50px;
    }

    #new-adm-hero-section-container .left .left-title p .year {
        font-size: 55px;
        display: block;
        margin-top: 0px;
        margin-left: 0;
        margin-right: 25px;
    }

    #new-adm-hero-section-container .left .hero-students-img {
        width: 100%;
        margin: 15px 0 0;
    }

    #new-adm-hero-section-container .left .award-card>div {
        width: 150px;
        height: 150px;
    }

    #new-adm-hero-section-container .left .award-card>div>p {
        font-size: 22px;
    }

    #new-adm-hero-section-container .left .awards-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .accr-images-container {
        margin-bottom: 10px;
    }

    #new-adm-hero-section-container .right .adm-enquiry-form {
        grid-template-columns: 1fr;
    }

    #new-adm-hero-section-container .right .adm-enquiry-form .full-width {
        grid-column: unset;
    }

    #new-adm-video-section {
        padding: 50px 0 30px;
    }

    #new-adm-video-section .para-div {
        margin-top: 30px;
    }

    #new-adm-video-section .video-div .video-itself {
        height: 330px;
    }

    #new-adm-video-section .video-div .before-element {
        height: 100%;
    }

    .new-adm-why-study-container {
        grid-template-columns: 1fr;
        padding: 45px 15px;
    }

    .why-to-choose-list li {
        display: grid;
        grid-template-columns: 60px 1fr;
    }

    .why-to-choose-list li span {
        font-size: 16px;
        padding-right: 15px;
        line-height: 1.2;
    }

    .bottom-bg-whitish::after {
        bottom: -60px;
    }

    #new-adm-why-study-section {
        margin-top: 30px;
    }

    .new-adm-why-study-container .why-study-title {
        margin-bottom: 20px;
    }

    .new-adm-why-study-container .why-study-title img {
        width: 180px;
        right: -25px;
    }

    .new-adm-why-study-container .why-study-title span:nth-child(4) {
        left: 0;
    }

    .home-process-single-wrapper:first-child {
        grid-template-columns: 1fr;
    }

    .home-process-single {
        height: auto;
    }

    .new-adm-sections-spacing>*+* {
        margin-top: 50px;
    }

    .home-process-single-wrapper {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .new-adm-counter-container {
        display: block;
        grid-template-columns: unset;
    }

    .drop {
        width: 230px;
        height: 230px;
    }

    .adm-placement-slider {
        margin-top: 20px;
    }

    .new-adm-major-recruiters-containter {
        flex-wrap: wrap;
        gap: 10px;
    }

    .new-adm-major-recruiters-containter img:first-child {
        width: 140px;
    }

    .new-adm-major-recruiters-containter img:nth-child(2) {
        width: 150px;
    }

    .new-adm-major-recruiters-containter img:nth-child(3) {
        width: 130px;
    }

    .new-adm-major-recruiters-containter img:nth-child(4) {
        width: 150px;
        height: 45px;
    }

    .new-adm-major-recruiters-containter img:nth-child(5) {
        width: 175px;
    }

    .new-adm-major-recruiters-containter img:nth-child(6) {
        width: 100px;
    }

    .new-adm-major-recruiters-containter img:nth-child(7) {
        width: 170px;
    }

    .new-adm-major-recruiters-containter img:nth-child(8) {
        width: 110px;
    }

    .new-adm-major-recruiters-containter img:nth-child(9) {
        width: 150px;
    }

    .new-adm-major-recruiters-containter img:nth-child(10) {
        width: 150px;
    }

    .new-adm-major-recruiters-containter img:nth-child(11) {
        width: 190px;
    }

    .new-adm-major-recruiters-containter img:nth-child(12) {
        width: 100px;
        height: 50px;
    }

    .new-adm-major-recruiters-containter img:nth-child(13) {
        width: 130px;
    }

    .new-adm-major-recruiters-containter img:nth-child(14) {
        width: 150px;
    }

    .new-adm-major-recruiters-containter img:nth-child(15) {
        width: 120px;
    }

    .new-adm-major-recruiters-containter p {
        font-size: 22px;
    }

    .new-adm-campus-life-images-container {
        gap: 8px;
    }

    .nav-type-one .nav-tabs .nav-link {
        font-size: 18px;
    }

    .flip-box-container .box-item {
        width: auto;
    }

    .rh-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px
    }

    .testimonials-grid .video-box img {
        min-height: 200px
    }

    .academics-topics-boxes {
        flex-direction: column
    }

    .academics-topics-boxes>div {
        width: 100%
    }

    .academics-topics-boxes+h1 {
        font-size: 20px !important
    }

    .academics-hostel-mess .main-title {
        text-shadow: 1px 1px 0px #f8f8f8, 2px 4px 0px rgba(0, 0, 0, .2)
    }

    .academics-hostel-mess .sub-title p {
        text-shadow: 0px 0px 0px #eee, 3px 2px 2px rgba(92, 113, 222, .5)
    }

    .highlights-title {
        text-align: center;
        font-size: 26px
    }

    .academics-hostel-mess {
        margin-top: 0
    }

    .academics-hostel-mess .main-title {
        font-size: 28px;
        line-height: 1.1
    }

    .academics-hostel-mess .sub-title p {
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.1
    }

    .hostel-highlights-flex {
        flex-direction: column;
        flex-wrap: unset;
        gap: 15px
    }

    .hostel-highlights-flex>div {
        width: 100%
    }

    .infrastructure-flex {
        flex-direction: column;
        flex-wrap: unset
    }

    .infrastructure-flex>div {
        width: 100%
    }

    .professional-chapters-flex {
        flex-direction: column-reverse;
        flex-wrap: unset
    }

    .professional-chapters-flex a {
        width: 100%;
        text-align: center;
        padding: 15px
    }

    .professional-chapters-flex a p {
        line-height: 1.1;
        margin-top: 10px
    }

    .professional-chapters-flex a:hover p {
        color: #fe553c
    }

    .admission-links-container-flex {
        gap: 1rem
    }

    .admission-links-container-flex .admission-links-flex {
        gap: 1rem
    }

    .admission-links-container-flex .admission-links-flex .adm-link-card {
        width: 100px;
        height: 100px;
        gap: 8px;
        font-size: 13.5px
    }

    .admission-links-container-flex .admission-links-flex .adm-link-card img {
        width: 25px
    }

    .coe-card .title p {
        -webkit-line-clamp: unset;
    }

    .accreditation-logos-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .accreditation-logos-container>div:first-child img:first-child {
        width: 60px;
    }

    .accreditation-logos-container>div:first-child img:nth-child(2) {
        width: 100px;
    }

    .accreditation-logos-container>div:first-child img:nth-child(3) {
        width: 85px;
    }

    .accreditation-logos-container .coe-logos-strip {
        justify-content: center;
    }

    .accreditation-logos-container .logos-strip-title {
        font-size: 21px;
    }

    .accreditation-logos-container .logos-strip-title::before,
    .accreditation-logos-container .logos-strip-title::after {
        transform: translate(0, -3px);
        width: 50px;
    }

    .accreditation-logos-container .coe-logos-strip .eicher {
        width: 150px;
    }

    .accreditation-logos-container .coe-logos-strip .ultratech {
        width: 100px;
    }

    .accreditation-logos-container .coe-logos-strip .bosch {
        width: 270px;
        margin-top: 10px;
    }

    .accreditation-logos-container .logos-strip-title.long-line::before,
    .accreditation-logos-container .logos-strip-title.long-line::after {
        width: 70px;
    }

    .accreditation-logos-container>div:first-child {
        padding: 20px;
    }

    .accreditation-logos-container>div:nth-child(2) {
        padding: 10px 20px;
    }

    .accreditation-logos-container>div:first-child img {
        width: 80px
    }

    .landing-page-mba-features-flex {
        flex-direction: column
    }

    .landing-page-mba-features-flex>div {
        width: 100%;
        min-height: auto
    }

    .landing-page-mba-features-flex>div:nth-child(even) {
        margin-top: 75px
    }

    .landing-page-mba-features-flex>div:nth-child(even) .img-icon {
        background: linear-gradient(135deg, #e95035 0%, #e5136c 100%)
    }

    .landing-page-mba-features-flex>div+div {
        margin-top: 75px
    }

    .landing-page-random-pics-grid {
        -moz-column-count: 1;
        column-count: 1
    }

    .landing-page-random-pics-grid a {
        box-shadow: rgba(50, 50, 93, .25) 0px 2px 5px -1px, rgba(0, 0, 0, .3) 0px 1px 3px -1px
    }

    .landing-page-random-pics-grid>a+a {
        margin-top: 10px
    }

    .infra-facilities-slider .slick-slide .recruiter-card .img-div .infra-img {
        height: 135px
    }

    .infra-facilities-slider .slick-slide .recruiter-card .img-div p {
        font-size: 16px;
        line-height: 1.1
    }

    .manuals-container .manuals-flex {
        flex-direction: column
    }

    .manuals-container .manuals-flex .manual-card {
        width: 100%
    }

    .magnificent-placements .placement-div .upper .first .big-text {
        font-size: 5rem
    }

    .magnificent-placements .placement-div .upper .first .title>p:first-child>span:first-child {
        font-size: 3.5rem
    }

    .faculty-cards-flex .faculty-card {
        width: 100%
    }

    .faculty-cards-flex .faculty-card img {
        width: 100%
    }

    .erp-flex {
        flex-direction: column
    }

    .this-title {
        font-size: 28px;
        margin-bottom: 3.5rem
    }

    .this-sub-title {
        font-size: 26px;
        line-height: 1.1;
        margin-bottom: 10px
    }

    .cc-box-item.half+.cc-box-item.half {
        margin-top: 25px
    }

    .mt-mob {
        margin-top: 25px
    }

    .mt-mob-40 {
        margin-top: 40px !important
    }

    .mob-text-left {
        text-align: left !important
    }

    .mob-flex {
        display: flex
    }

    .mob-justify-content-between {
        justify-content: space-between
    }

    .mob-flex-item {
        width: 50%
    }

    .mob-flex-direction-col-reverse {
        flex-direction: column-reverse
    }

    .entire-content {
        padding: 0 0 calc(50px/3);
        top: 70px
    }

    .entire-content section+section {
        margin-top: calc(50px/3)
    }

    .inner-page-content.top-bottom-spacing {
        padding: calc(100px/3) 0
    }

    .inner-page-content.top-spacing {
        padding-top: calc(100px/3)
    }

    .inner-page-content.bottom-spacing {
        padding-bottom: calc(100px/3)
    }

    .inner-page-content.header-spacing {
        margin-top: 70px
    }

    .inner-page-content section+section {
        padding-top: calc(100px/3)
    }

    .row>* {
        padding-right: calc(var(--bs-gutter-x)*1);
        padding-left: calc(var(--bs-gutter-x)*1)
    }

    .row.no-pad-change>* {
        padding-right: calc(var(--bs-gutter-x)*.5);
        padding-left: calc(var(--bs-gutter-x)*.5)
    }

    .row .row>* {
        padding-right: calc(var(--bs-gutter-x)*.5);
        padding-left: calc(var(--bs-gutter-x)*.5)
    }

    .web-text-paras p {
        line-height: 1.2
    }

    .web-card.web-card-padding {
        padding: 25px
    }

    #home-courses .home-courses-card+.home-courses-card {
        padding-top: 0
    }

    #home-courses .home-courses-card {
        padding: 30px 0 40px
    }

    #home-courses .home-courses-card .big-title {
        font-size: 36px;
        text-align: center
    }

    #home-courses .home-courses-card .course-content-row {
        margin-top: 25px
    }

    #home-courses .home-courses-card .course-content-row .the-courses .course-name {
        font-size: 32px;
        width: 100%
    }

    #home-courses .home-courses-card .course-video {
        position: relative;
        margin-top: 25px
    }

    #home-courses .home-courses-card .course-video .shape-div .video-div {
        padding: 20px 0 20px 65px;
        width: 100%;
        height: 250px
    }

    #home-courses .home-courses-card .course-video .shape-div .video-div.right-bg {
        padding: 20px 65px 20px 0
    }

    #web-counter {
        padding: calc(100px/3) 0
    }

    .flip-box-container {
        flex-direction: column
    }

    #courses-content .cc-flex {
        flex-direction: column
    }

    .rh-slider-for .text-div>p {
        line-height: 1.2;
        font-size: 20px
    }

    .rh-slider-for .text-div .the-date {
        margin-top: 10px
    }

    .center-mode-slick-slider {
        margin-bottom: 0
    }

    .center-mode-slick-slider .slick-dots {
        bottom: 0px
    }

    .center-mode-slick-slider .slick-slide .img-mt-spacing {
        margin-top: 10px;
        margin-bottom: 0
    }

    .center-mode-slick-slider .slick-slide.slick-current .img-mt-spacing {
        transform: scale(1);
        margin-top: 0;
        margin-bottom: 0
    }

    .placement-div {
        padding: calc(100px/3) 0
    }

    .placement-div .upper {
        position: relative
    }

    .placement-div .upper .floating-div {
        position: relative;
        right: unset;
        top: unset;
        transform: translate(0, 0);
        width: 100%;
        text-align: center;
        margin-bottom: calc(25px*2)
    }

    .placement-div .upper .floating-div h2 {
        font-size: 4rem
    }

    .placement-div .upper .floating-div img {
        padding: 0 25px
    }

    .placement-div .upper .first .title>p:first-child>span:first-child {
        font-size: 4rem;
        margin-right: 8px
    }

    .placement-div .upper .first .big-text {
        font-size: 5rem
    }

    .placement-div .upper .first .package-div {
        gap: 20px;
        margin: 30px 0 20px
    }

    .placement-div .upper .first .package-div .me-big {
        font-size: 3.5rem;
        line-height: 1
    }

    .placement-div .upper .first .package-div .me-small {
        font-size: 2rem;
        line-height: 1
    }

    .placement-div .upper .second p {
        font-size: 2rem
    }

    .placement-div .upper .second p span.me-big {
        font-size: 38px
    }

    .placement-div .upper .second p+p {
        margin-top: 10px
    }

    .placement-div .upper .third p {
        font-size: 4rem;
        line-height: 1;
        margin-top: 30px
    }

    .vt-video {
        height: 530px
    }

    .vt-video .content .text {
        font-size: 32px
    }

    .vt-video .content .text span {
        font-size: 36px
    }

    .vt-video .content .btns-div {
        margin-top: 0;
        flex-direction: column;
        gap: 25px 0
    }

    .spotlight-slider .slick-slide {
        margin: 0 10px
    }

    .spotlight-slider .slick-slide .spotlight-card {
        filter: blur(0);
        transform: scale(1)
    }

    .spotlight-slider .slick-slide .spotlight-card img {
        border: 5px solid rgba(50, 50, 93, .25)
    }

    .spotlight-slider .slick-slide .spotlight-card p {
        font-size: 18px;
        text-align: center
    }

    .spotlight-slider .slick-slide.slick-current+.slick-slide .spotlight-card {
        transform: scale(1);
        z-index: 1
    }

    .student-speak-slider .slick-slide {
        margin: 0 20px
    }

    .student-speak-slider .slick-slide.slick-current+.slick-slide .testimonial-card {
        transform: scale(1);
        filter: unset;
        z-index: 1
    }

    .testimonial-card {
        filter: unset;
        margin: 85px 0 40px
    }

    .our-recruiters-slider .slick-slide {
        margin: 0 10px
    }

    .footer .title {
        margin-bottom: 1.2rem
    }

    .vt-modals {
        margin-top: 5%
    }

    .vt-modals .btn-close {
        position: relative;
        left: 100%;
        top: 30px;
        transform: translate(-110%, 0)
    }

    .modal-dialog {
        margin: .5rem 1.2rem
    }

    #fixed-controls {
        top: unset;
        bottom: 0;
        left: 10px
    }

    #fixed-controls .afn-btn {
        width: 45px;
        height: 45px
    }

    #fixed-controls .afn-btn img {
        width: 20px
    }

    #fixed-controls .afn-btn img.wid-40 {
        width: 18px
    }

    #fixed-controls .afn-btn-div+.afn-btn-div {
        margin-top: 15px
    }

    .sticky-courses-offered-nav {
        top: 68px
    }

    .nav-type-one.courses-offered .nav {
        justify-content: center
    }

    .nav-type-one.courses-offered .nav-tabs .nav-link {
        padding: .5rem
    }

    .nav-type-one .nav {
        gap: 0;
        /* justify-content: space-between; */
        justify-content: center;
    }

    .nav-type-one .nav-tabs .nav-link {
        padding: 1rem
    }

    .nav-type-one .tab-content {
        padding: 20px 0 0
    }

    .nav-type-two .nav-tabs {
        flex-direction: column
    }

    .nav-type-two .nav-tabs .nav-item {
        width: 100%
    }

    .nav-type-two .nav-tabs .nav-item+.nav-item {
        margin-top: 25px
    }

    .alumni-slider .slick-slide {
        margin: 0 0 30px
    }

    .alumni-title {
        font-size: 30px
    }

    .accordion-body>div {
        flex-direction: column;
        gap: 0
    }

    .accordion-body>div>p:first-child {
        font-size: 18px
    }

    .accordion-body>div>p:nth-child(2) {
        display: none
    }

    #admission-form {
        padding: 15px 5px
    }

    #admission-form .admission-form {
        padding: 15px 0
    }

    .trivia-img.left {
        width: 85%;
        margin-bottom: 15px
    }

    .contact-iframe {
        padding: 15px
    }

    .address-div h2 {
        font-size: 20px
    }

    .event-details-div {
        flex-direction: column;
        padding: 20px 15px
    }

    .event-details-div p {
        width: 100%;
        display: flex;
        text-align: left;
        gap: 15px;
        line-height: 1.2;
        font-size: 17px
    }

    .event-details-div p span:first-child {
        min-width: 95px
    }

    .event-details-div p:nth-child(2) {
        width: 100%
    }

    .event-details-div p+p {
        border-left: unset;
        margin-top: 8px
    }

    .web-gallery.col-25-row-150 {
        grid-auto-rows: 200px
    }

    .gps-group-video video {
        width: inherit;
        height: 220px;
        padding-right: 0;
        margin-top: 0
    }

    #our-leaders .higher-management {
        padding: 33.3333333333px 0
    }

    #our-leaders .higher-management .hm-card img {
        width: 100%
    }

    #lower-management .principals-div {
        margin-top: 25px
    }

    #advisory-board .members-div+.members-div {
        margin-top: 25px
    }

    .parallax {
        margin-bottom: 25px
    }

    #our-leaders .higher-management .right-pad,
    #our-leaders .higher-management .left-pad {
        padding: 0
    }

    .las-flex {
        flex-direction: column;
        height: auto
    }

    .las-flex .img-item {
        width: 100%;
        height: 80vh
    }

    #training-opportunity-strip .strip-text p.first {
        font-size: 30px;
        display: block;
        line-height: 1
    }

    #training-opportunity-strip .strip-text p.second {
        margin-top: 10px;
        display: block;
        line-height: 1;
        font-size: 32px
    }

    .assessment-img img {
        margin: 0 auto
    }

    .handshake-flex {
        margin: 20px 0 0;
        display: block
    }

    .team-card.wh-250,
    .team-card.wh-220,
    .team-card.wh-200 {
        width: 325px;
        max-width: 100%;
        height: 325px
    }

    .tp-row-mt {
        margin-top: 25px
    }

    .web-gallery.type-flex {
        flex-direction: column
    }

    .web-gallery.type-flex a {
        width: 100%
    }

    .web-gallery.grid-gap-10 {
        grid-gap: 25px 0
    }

    #counter-section .counter-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }

    #counter-section .counter-div+.counter-div {
        border-left: unset;
        margin-top: 25px
    }

    #school-heritage .img-card {
        padding: 25px 0
    }

    #school-heritage .the-image img {
        width: 100%
    }

    #school-heritage .ch-title {
        margin-top: 25px;
        font-size: 30px
    }

    .course-innerpage-sub-title {
        display: block
    }

    #courses-content .cc-flex .cc-link {
        width: 100%
    }

    .course-department-gallery {
        gap: 4px
    }

    .course-department-gallery .item-div {
        width: calc(50% - 4px)
    }

    .course-department-gallery .item-div img {
        width: 100%
    }

    .page-banner img {
        height: 180px
    }

    .facility-floating-div {
        width: 180px;
        shape-outside: unset;
        shape-margin: 15px;
        margin-right: 15px;
        margin-bottom: 15px
    }

    #advisory-board .abm-card.w-img-270 img {
        width: 100%
    }

    .page-banner .banner-div-title {
        height: 210px;
        justify-content: center
    }

    .page-banner .banner-div-title h1 {
        font-size: 36px;
        text-align: center
    }

    .page-banner .banner-div-title h1.double-lines span {
        font-size: 30px
    }

    #why-choose-gps-group .flip-box-container .box-item {
        width: 100%
    }

    .graphs-titles {
        padding: 0;
        border: unset
    }

    .graphs-titles h1 {
        font-size: 28px
    }

    .graphs-titles.to-left {
        padding: 0;
        border: unset
    }

    #pool-of-opportunities .flip-logo-minus {
        margin-top: -35px
    }

    #pool-of-opportunities .poo-title .first {
        font-size: 36px
    }

    #pool-of-opportunities .poo-title .second {
        font-size: 27.3px
    }

    #pool-of-opportunities .poo-title .third {
        font-size: 26.5px
    }

    #placement-gallery .las-flex {
        /* height: 800px */
    }

    #the-name-to-trust img {
        width: 125px
    }

    .mob-hide-on-admissions-page {
        display: none
    }

    .thank-you-section {
        background-position: center
    }

    .thank-you-section .left {
        width: 100%;
        text-align: center
    }

    .thank-you-section .left .links-div {
        flex-wrap: wrap;
        justify-content: center
    }

    .thank-you-section .left .links-div .link {
        min-width: 135px;
        padding: 8px 12px
    }

    .thank-you-section .left .links-div .link:hover {
        transform: scale(1)
    }

    .career-user-logout-flex {
        margin-top: 0
    }

    .career-user-logout-flex .user-name {
        font-size: 24px
    }

    .steps {
        margin: 60px 0
    }

    .steps>.step a {
        line-height: 1.1;
        top: -60px;
        font-size: 14px
    }

    .floating-form {
        margin-top: 0
    }

    #profile_image_preview {
        margin: 0 auto 15px
    }

    .user-login-form .custom-check {
        width: 185px
    }

    #ideathon-top-header .logo-header-flex {
        padding: 0 15px;
        margin: 0;
        gap: 0 5px
    }

    #ideathon-top-header .logo-header-flex .sps-logo {
        width: 90px
    }

    #ideathon-top-header .logo-header-flex .header-info .institute {
        font-size: 24px;
        line-height: 1.1
    }

    #ideathon-top-header .logo-header-flex .header-info .address {
        font-size: 15px;
        line-height: 1.1;
        margin-top: 5px
    }

    #ideathon-top-header .logo-header-flex .header-info .event-name {
        margin-top: 15px;
        font-size: 24px;
        line-height: 1.1
    }

    #ideathon-top-header .logo-header-flex .header-info .event-name p {
        font-size: 16px
    }

    .coe-flex {
        flex-direction: column;
        gap: 2rem
    }

    .coe-flex .coe-card {
        width: 100%
    }

    .coe-contact-div {
        height: 300px;
        padding: 10px
    }

    .coe-contact-div img {
        -o-object-position: unset;
        object-position: unset
    }

    .training-images-flex {
        flex-direction: column;
        gap: 15px
    }

    .training-images-flex img {
        width: 100%
    }

    #notice-video {
        height: 375px
    }

    .mob-sli {
        height: 220px !important;
    }
}

@media(min-width: 576px) {
    .vt-modals .modal-dialog {
        max-width: 90%;
        margin: 10px auto
    }

    #careerModal .modal-dialog {
        max-width: 750px
    }
}

@media(min-width: 992px) {
    #courses-content .cc-flex .cc-btn-card.last-item {
        flex: 0 1 32.35%
    }
}

.mob-sli {
    height: 600px;
    width: 100%;
}

.marList{
    margin: 0 50px;
    font-weight: 700;
    font-size: 21px;
}

.text-start{
    font-size: 20px;
}

.rh-grid-scroll-wrapper {
    height: 375px;
    overflow: hidden;
    position: relative;
    border: 1px solid #fe553c;
    border-radius: 8px;
}

.notStyle a {
    line-height: 25px;
    font-size: 20px;
    margin: 10px;
}

.rh-grid-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollUp 10s linear infinite;
}

.rh-grid-scroll-wrapper:hover .rh-grid-scroll {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}