/*Header*/
.logo {
    vertical-align: middle;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

section.faq-section h2 {
    text-align: center;
}

.font10 {
    font-size: 10px;
}

a.fashion {
    font-size: 20px !important;
    color: #9a2827 !important;
}

.centerImg .img-responsive {
    margin: 0 auto;
}


.featured-services h2 {
    color: #fff;
    text-align: center;
}

section#featured-services {
    background-color: #004369;
    border: groove 1em #fff;
    /*border-radius: 2em;*/
}



.bg-over {
    overflow: hidden;
    background: linear-gradient(rgba(29, 200, 205, 0.65), rgba(29, 205, 89, 0.2)), url(../assets/img/call-to-action-bg.jpg) fixed center center;
    background-size: cover;
    padding: 80px 0;
}
.resear p {
    text-align: justify;
}

.btnGallery {
    font-size: 14px;
    color: #000000;
    padding: 5px 10px;
    color: #ffffff;
    border-radius: 0;
    background-color: #b02401;
    border: 2px solid transparent;
}

    .btnGallery:hover {
        background-color: transparent;
        color: #9a2827;
        border: 1px solid #9a2827;
    }

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
}

    .why-us .box span {
        display: block;
        font-size: 28px;
        font-weight: 700;
        color: #8ed851;
    }

    .why-us .box h4 {
        font-size: 26px;
        font-weight: 600;
        padding: 0;
        margin: 20px 0;
        color: #2a2a2a;
    }

    .why-us .box p {
        color: #000;
        font-size: 16px;
        margin: 0;
        padding: 0;
        text-align: justify;
    }

    .why-us .box:hover {
        background: #9a2827;
        padding: 30px 30px 70px 30px;
        box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
    }

        .why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
            color: #fff;
        }

/*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------*/
.about-boxes {
    background: url("../assets/img/about-boxes-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 30px 0;
    position: relative;
}

    .about-boxes::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.92);
        z-index: 9;
    }

    .about-boxes .container, .about-boxes .container-fluid {
        position: relative;
        z-index: 10;
    }

@media (max-width: 1024px) {
    .about-boxes {
        background-attachment: scroll;
    }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    background: url("../assets/img/counts-bg.jpg") center center no-repeat;
    background-size: cover;
    padding: 80px 0 60px 0;
    position: relative;
}

    .counts::before {
        content: "";
        position: absolute;
        background: rgba(17, 17, 17, 0.9);
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .counts .title {
        position: relative;
        color: #fff;
        margin-bottom: 40px;
    }

#counts h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

.counts .counters span {
    font-size: 48px;
    display: block;
    font-weight: 700;
    color: #009961;
}

#counts p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #fff;
}

@media (min-width: 1200px) {
    .counts {
        background-attachment: fixed;
    }
}
/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.onfocus {
    padding: 0;
}

    .onfocus .content {
        /*background: linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)), url("../assets/img/onfocus-content-bg.jpg") center center;*/
        background-color:#004369;
        background-size: cover;
        color: rgba(var(--color-white-rgb), 0.8);
        padding: 40px;
    }

@media (min-width: 768px) {
    .onfocus .content {
        padding: 80px;
    }
}

.onfocus .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: var(--color-white);
}

.onfocus .content ul {
    list-style: none;
    padding: 0;
    text-align:justify;
}

    .onfocus .content ul li {
        padding-bottom: 10px;
    }

    .onfocus .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--color-primary);
    }

.onfocus .content p:last-child {
    margin-bottom: 0;
}

.onfocus .content .read-more {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
}

    .onfocus .content .read-more i {
        font-size: 18px;
        margin-left: 5px;
        line-height: 0;
        transition: 0.3s;
    }

    .onfocus .content .read-more:hover {
        background: rgba(var(--color-primary-rgb), 0.9);
        padding-right: 19px;
    }

        .onfocus .content .read-more:hover i {
            margin-left: 10px;
        }


@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
/*--------------------------------------------------------------
# Research Section
--------------------------------------------------------------*/
.exchange {
    padding: 0;
}

    .exchange .content {
        /*background: linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)), url("../assets/img/onfocus-content-bg.jpg") center center;*/
        background-color: #004369;
        background-size: cover;
        color: rgba(var(--color-white-rgb), 0.8);
        padding: 40px;
    }

@media (min-width: 768px) {
    .exchange .content {
        padding: 80px;
    }
}

.exchange .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: var(--color-white);
}

.exchange .content ul {
    list-style: none;
    padding: 0;
    text-align:justify;
}

    .exchange .content ul li {
        padding-bottom: 10px;
    }

    .exchange .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--color-primary);
    }

.exchange .content p:last-child {
    margin-bottom: 0;
}

.exchange .content .read-more {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
}

    .exchange .content .read-more i {
        font-size: 18px;
        margin-left: 5px;
        line-height: 0;
        transition: 0.3s;
    }

    .exchange .content .read-more:hover {
        background: rgba(var(--color-primary-rgb), 0.9);
        padding-right: 19px;
    }

        .exchange .content .read-more:hover i {
            margin-left: 10px;
        }

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
/*--------------------------------------------------------------
# Publication Section
--------------------------------------------------------------*/
.publications {
    padding: 0;
}

    .publications .content {
        /*background: linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)), url("../assets/img/onfocus-content-bg.jpg") center center;*/
        background-color: #9a2827;
        background-size: cover;
        color: rgba(var(--color-white-rgb), 0.8);
        padding: 40px;
    }

@media (min-width: 768px) {
    .publications .content {
        padding: 80px;
    }
}

.publications .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: var(--color-white);
}

.publications .content ul {
    list-style: none;
    padding: 0;
    text-align: justify;
}

    .publications .content ul li {
        padding-bottom: 10px;
    }

    .publications .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--color-primary);
    }

.publications .content p:last-child {
    margin-bottom: 0;
}

.publications .content .read-more {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
}

    .publications .content .read-more i {
        font-size: 18px;
        margin-left: 5px;
        line-height: 0;
        transition: 0.3s;
    }

    .publications .content .read-more:hover {
        background: rgba(var(--color-primary-rgb), 0.9);
        padding-right: 19px;
    }

        .publications .content .read-more:hover i {
            margin-left: 10px;
        }

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 285px;
    text-align-last: center;
    margin-top: 10px;
}

    .services .icon-box::before {
        content: "";
        position: absolute;
        background: white;
        right: 0;
        left: 0;
        bottom: 0;
        top: 100%;
        transition: all 0.3s;
        z-index: -1;
    }

    .services .icon-box:hover::before {
        background: #67b0d1;
        top: 0;
        border-radius: 0px;
    }

.services .icon {
    margin-bottom: 15px;
    text-align: center;
}

    .services .icon i {
        font-size: 48px;
        line-height: 1;
        color: #9a2827;
        transition: all 0.3s ease-in-out;
    }

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
    text-align: center;
}

    .services .title a {
        color: #111;
    }

.services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    text-align: justify;
}

.services .icon-box:hover .title a, .services .icon-box:hover .description {
    color: #fff;
}

.services .icon-box:hover .icon i {
    color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgb(39 142 189 / 80%), rgb(132 197 227 / 80%)), url(../assets/img/cta-bg.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
}
    .cta h2 {
        color: #fff;
        text-align:center;
    }
    .cta h4 {
        color: #fff;
    }

    .cta h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    .cta p {
        color: #fff;
        font-size:18px;
    }

    .cta .cta-btn {
        font-family: "Raleway", sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 28px;
        border-radius: 25px;
        transition: 0.5s;
        margin-top: 10px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: #fff;
    }

        .cta .cta-btn:hover {
            border-color: #fff;
        }

/*Call stop action*/
#eligibility {
    background: #a70806;
    background-size: cover;
    padding: 40px 0;
}

    #eligibility h3 {
        color: #fff;
        font-weight: 600;
    }

    #eligibility p {
        color: #fff;
        font-size: 18px;
        font-weight: 400;
    }

/*Admission & Fees*/
.section2 {
    width: 100%;
    display: table;
    position: relative;
    padding: 30px 0px 20px;
}

.commoninner, #inner, #inner2, #inner3, #inner4, #inner5, #inner6, #inner7, #inner8, #inner9, #inner10 {
    width: 100%;
    margin: 0 auto;
    max-width: 1120px;
    position: relative;
}

.dflexSTRHCNTR {
    align-items: stretch;
    justify-content: center;
}

.important_right {
    background-color: #923032;
    position: relative;
    z-index: 2;
    padding: 15px;
    height: 100%;
}

.eligibility-list {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    height: 100%;
}

    .eligibility-list h3 {
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .eligibility-list p {
        color: #fff;
    }

.widget-title.text-left {
    text-align: left;
}

.widget-title span {
    color: #005113;
    font-weight: 300;
    font-size: 22px;
    display: block;
    margin-top: 5px;
}

.widget-title h3 .border-right:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 34px;
    right: 540px;
}

.widget-title h3 .border-right:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 80px;
    top: 26px;
    right: 510px;
}

.widget-title1 h3 .border-right:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 34px;
    right: 1002px;
}

.widget-title1 h3 .border-right:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 80px;
    top: 26px;
    right: 972px;
}


.widget-title2 h3 .border-right:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 62px;
    right: 282px;
}

.widget-title2 h3 .border-right:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 80px;
    top: 56px;
    right: 252px;
}

.widget-title3 h3 .border-right:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 80px;
    top: 56px;
    right: 450px;
}

.widget-title3 h3 .border-right:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 62px;
    right: 480px;
}

.widget-title-course:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 64px;
    right: 1117px;
}

.widget-title-course:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 89px;
    top: 58px;
    right: 1078px;
}


.widget-title4-course:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 89px;
    top: 54px;
    right: 571px;
}

.widget-title4-course:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 48px;
    right: 610px;
}

.widget-title5-course:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 48px;
    right: 645px;
}

.widget-title5-course:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 89px;
    top: 54px;
    right: 606px;
}

.widget-title6 h3 .border-right:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 62px;
    right: 462px;
}

.widget-title6 h3 .border-right:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 80px;
    top: 56px;
    right: 432px;
}

.widget-title7 h3 .border-right:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 80px;
    top: 56px;
    right: 412px;
}

.widget-title7 h3 .border-right:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 62px;
    right: 442px;
}

.widget-title8-course:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 64px;
    right: 1224px;
}

.widget-title8-course:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 89px;
    top: 58px;
    right: 1185px;
}

.widget-title9-course:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 64px;
    right: 928px;
}

.widget-title9-course:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 89px;
    top: 58px;
    right: 889px;
}

.widget-title10-course:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 64px;
    right: 788px;
}

.widget-title10-course:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 89px;
    top: 58px;
    right: 749px;
}

.widget-title11 h3 .border-right:before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 50px;
    top: 62px;
    right: 958px;
}

.widget-title11 h3 .border-right:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 1px;
    width: 80px;
    top: 56px;
    right: 928px;
}


section.amenities1 {
    background: url(/img/bg-image.jpg);
    background-size: cover;
}

.about-img-right {
    background: #004369;
}

#call-to-action-1 {
    background: #004369;
    background-size: cover;
    padding: 40px 0;
}

    #call-to-action-1 .cta-title {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }

    #call-to-action-1 p {
        color: #fff;
    }
/*Course Highlights*/
.sec5 {
    width: 100%;
    display: table;
    position: relative;
    padding: 20px 0px 20px;
}

ul.listui {
    color: #fff;
    list-style: none;
    line-height: 28px;
    text-align: justify;
    padding: 0;
}

ul.listui1 {
    color: #fff;
    list-style: none;
    line-height: 28px;
    text-align: justify;
    padding: 0;
    margin-top: 60px;
}

i.fa.fa-angle-double-right {
    font-size: 20px;
    padding: 6px 10px 6px;
}



/*Scope color-profile career*/

.careerscope {
    text-align: center;
}

    .careerscope h2:before {
        content: "";
        display: block;
        width: 120px;
        height: 2px;
        background: #000;
        left: 26%;
        top: 42%;
        position: absolute;
    }

    .careerscope h2:after {
        content: "";
        display: block;
        width: 120px;
        height: 2px;
        background: #000;
        right: 26%;
        top: 42%;
        position: absolute;
    }

.careerscope1 {
    text-align: center;
}

    .careerscope1 h2:before {
        content: "";
        display: block;
        width: 120px;
        height: 2px;
        background: #000;
        left: 30%;
        top: 42%;
        position: absolute;
    }

    .careerscope1 h2:after {
        content: "";
        display: block;
        width: 120px;
        height: 2px;
        background: #000;
        right: 30%;
        top: 42%;
        position: absolute;
    }

.careerscope2 h2:before {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: #000;
    left: 34%;
    top: 42%;
    position: absolute;
}

.careerscope2 h2:after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: #000;
    right: 34%;
    top: 42%;
    position: absolute;
}
/*Summary*/

#summary-sec .content h2 {
    color: #000;
    font-weight: 700;
    font-size: 36px;
    font-family: "Raleway", sans-serif;
}

#summary-sec .content p {
    line-height: 26px;
    text-align: justify;
}

/*FAQS*/
section.faq-section {
    padding: 30px 0px 20px;
}

.faqsbtech {
    text-align: center;
}

    .faqsbtech h2:before {
        content: "";
        display: block;
        width: 120px;
        height: 2px;
        background: #000;
        left: 36%;
        top: 42%;
        position: absolute;
    }

    .faqsbtech h2:after {
        content: "";
        display: block;
        width: 120px;
        height: 2px;
        background: #000;
        right: 36%;
        top: 42%;
        position: absolute;
    }

.accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: #9a2827;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.downbroucher {
    width: 80px;
    height: 80px;
    border: 8px solid white;
    line-height: 88px;
    border-radius: 50%;
    background: #9a2827;
    text-align: center;
    color: #FFF;
    font-size: 30px;
    margin: 0 auto;
}

    .downbroucher i {
        position: relative;
        top: -12px;
    }


.wrimagecard1 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    background: #3b3c3b;
    box-shadow: 4px 2px 20px 0px rgb(46 61 73 / 15%);
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    transition: all 0.3s ease;
}

.wrimagecard2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    background: #800000;
    box-shadow: 4px 2px 20px 0px rgb(46 61 73 / 15%);
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    transition: all 0.3s ease;
}


.wrimagecard-topimage1_title {
    color: #fff;
    padding: 14px 0px 10px;
    height: 200px;
}

.modelearn h5 {
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 6px 2px 6px;
}


section.amenities {
    background-color: #004369;
    color: #fff;
    border: dotted;
    border-width: 10px 4px;
    border-radius: 10px 40px;
}

    section.amenities h2 {
        text-align: center;
    }

section.amenities1 h2 {
    text-align: center;
}

section.modelearn h2 {
    text-align: center;
}



.wrimagecard3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    background: #3b3c3b;
    box-shadow: 4px 2px 20px 0px rgb(46 61 73 / 15%);
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    transition: all 0.3s ease;
    height: 286px;
}

.wrimagecard4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    background: #800000;
    box-shadow: 4px 2px 20px 0px rgb(46 61 73 / 15%);
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    transition: all 0.3s ease;
    height: 286px;
}

.wrimagecard3.wrimagecard-topimage h4 {
    color: #fff;
    padding: 10px 24px 10px;
    text-align: center;
}

.wrimagecard3.wrimagecard-topimage p {
    color: #fff;
    padding: 10px 12px 10px;
    text-align: center;
}

.wrimagecard4.wrimagecard-topimage h4 {
    color: #fff;
    padding: 10px 24px 10px;
    text-align: center;
}

.wrimagecard4.wrimagecard-topimage p {
    color: #fff;
    padding: 10px 12px 10px;
    text-align: center;
}



.notice {
    padding: 15px;
    background-color: #fafafa;
    border-left: 6px solid #7f7f84;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
    box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
}

.notice-sm {
    padding: 10px;
    font-size: 80%;
}

.notice-lg {
    padding: 35px;
    font-size: large;
}

.notice-success {
    border-color: #378e08;
}

    .notice-success > strong {
        /*color: #80D651;*/
        color: #378e08;
    }

    .notice-success > a {
        /*color: #80D651;*/
        color: #378e08;
    }

    .notice-success > a {
        /*color: #80D651;*/
        color: #378e08;
    }

.notice-info {
    border-color: #9a2827;
}

    .notice-info > strong {
        /*color: #45ABCD;*/
        color: #9a2827;
    }

    .notice-info > a {
        /*color: #45ABCD;*/
        color: #9a2827;
    }

.notice-warning {
    border-color: #B18630;
}

    .notice-warning > strong {
        /*color: #FEAF20;*/
        color: #B18630;
    }

    .notice-warning > a {
        /*color: #FEAF20;*/
        color: #B18630;
    }

.notice-danger {
    border-color: #d73814;
}

    .notice-danger > strong {
        color: #d73814;
    }

    .notice-danger > a {
        color: #d73814;
    }

.subsection_bg-main {
    background-color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 21%), rgba(0, 0, 0, 59%)), url(/img/Title-Bag.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    /*padding-bottom: 350px;
    padding-top: 40px;*/
    text-align: center;
}

/*.subsection_bg {
    background-color: #fff;
    background-image: url(/img/About.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 860px;
    padding-top: 40px;
    text-align: center;
}*/

/*.subsection_bg1 {
    background-color: #fff;
    background-image: url(/img/BDes-fashion.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 860px;
    padding-top: 40px;
    text-align: center;
}

.subsection_bg2 {
    background-color: #fff;
    background-image: url(/img/BSc-fashion.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 860px;
    padding-top: 40px;
    text-align: center;
}

.subsection_bg3 {
    background-color: #fff;
    background-image: url(/img/BDes-interior.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 860px;
    padding-top: 40px;
    text-align: center;
}

.subsection_bg4 {
    background-color: #fff;
    background-image: url(/img/BSc-interior.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 860px;
    padding-top: 40px;
    text-align: center;
}

.subsection_bg5 {
    background-color: #fff;
    background-image: url(/img/Applied.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 860px;
    padding-top: 40px;
    text-align: center;
}

.subsection_bg6 {
    background-color: #fff;
    background-image: url(/img/BSc-animation.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 860px;
    padding-top: 40px;
    text-align: center;
}*/


.faq-section button.accordion-button.collapsed {
    background-color: #9a2827;
    color: white;
}

.accordion-button::after {
    background-image: url("../img/icon/plus-icon.png");
    transform: scale(.7) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}


.aboutUsSection {
    z-index: 1;
    position: relative;
}

    .aboutUsSection figure {
        position: relative;
        padding: 15px 0px 0px 15px;
        margin: 0px;
        margin-bottom: 15px;
    }

        .aboutUsSection figure::before {
            content: '';
            position: absolute;
            top: 0px;
            left: 0px;
            right: 20px;
            bottom: 20px;
            background-color: #9a2827;
            z-index: 0;
        }

        .aboutUsSection figure img {
            position: relative;
            width: 100%;
            z-index: 1;
            background-color: #cacaca;
        }

        .aboutUsSection figure::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            top: -10px;
            left: -10px;
            background-color: #cacaca;
            z-index: -1;
            opacity: 0;
            visibility: hidden;
        }


.aboutUsFashion {
    z-index: 1;
    position: relative;
}

    .aboutUsFashion figure {
        position: relative;
        padding: 15px 0px 0px 15px;
        margin: 0px;
        margin-bottom: 15px;
    }

        .aboutUsFashion figure::before {
            content: '';
            position: absolute;
            top: 0px;
            left: 0px;
            right: 20px;
            bottom: 20px;
            background-color: #d0a652;
            z-index: 0;
        }

        .aboutUsFashion figure img {
            position: relative;
            width: 100%;
            z-index: 1;
            background-color: #cacaca;
        }

        .aboutUsFashion figure::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            top: -10px;
            left: -10px;
            background-color: #cacaca;
            z-index: -1;
            opacity: 0;
            visibility: hidden;
        }


/*Media Queries*/
@media (max-width: 576px) {
    .careerscope h2:after {
        content: "";
        display: block;
        width: 54px;
        height: 2px;
        background: #000;
        right: 22%;
        top: 42%;
        position: absolute;
    }

    .careerscope h2:before {
        content: "";
        display: block;
        width: 54px;
        height: 2px;
        background: #000;
        left: 22%;
        top: 42%;
        position: absolute;
    }
}
