    /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
    
    body {
        font-family: "Poppins", sans-serif;
        color: #333333;
    }
    
    a {
        color: #352F87;
    }
    
    a:hover {
        color: #352F87;
        text-decoration: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Poppins", sans-serif;
    }
    /* .........  star logo ...........*/
    .breadcrumbs .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumbs img {
    height: 50px;
    transition: transform 0.3s ease-in-out;
}

.breadcrumbs img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
}

/*....... aboutus .......*/
.text-end {
    display: flex;
    justify-content: flex-end; /* Move button to the right */
    margin-top: 10px; /* Add spacing */
}
.breadcrumbs .container {
    display: flex;
    flex-direction: column; /* Column layout maintain karva */
    align-items: start; /* Left-align content */
    gap: 10px; /* Space between items */
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li {
    margin-right: 8px; /* Space between Home & About */
    color: #555;
}

.breadcrumbs .text-end {
    align-self: flex-end; /* Button right side move karva */
}


    /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
    
    #preloader {
        position: fixed;
        top: 0;
        left: 0;publications .section-title h2
        right: 0;
        bottom: 0;
        z-index: 9999;
        overflow: hidden;
        background: #fff;
    }
    
    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #352F87;
        border-top-color: #ecf8f9;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }
    
    @-webkit-keyframes animate-preloader {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    @keyframes animate-preloader {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
    
    .back-to-top {
        position: fixed;
        display: none;
        right: 15px;
        bottom: 15px;
        z-index: 99999;
    }
    
    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: #352F87;
        color: #fff;
        transition: all 0.4s;
    }
    
    .back-to-top i:hover {
        background: #352F87;
        color: #fff;
    }
    /*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
    
    @media screen and (max-width: 768px) {
        [data-aos-delay] {
            transition-delay: 0 !important;
        }
    }
    /*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
    
    #topbar {
        background: #352F87;
        color: #fff;
        height: 45px;
        font-size: 13px;
        transition: all 0.5s;
    }
    
    #topbar.topbar-scrolled {
        top: -40px;
    }
    
    #topbar i {
        padding-right: 6px;
    }
    
    #topbar .sts-database a {
        color: #ffffff;
    }
    /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
    
    .inner-pages {
        background-color: #F6F5FF;
    }
    
    #header {
        background: #fff;
        transition: all 0.5s;
        z-index: 997;
        padding: 20px 0;
        top: 40px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 992px) {
        #header {
            padding: 15px 0;
        }
    }
    
    #header.header-scrolled {
        top: 0;
    }
    
    #header .logo {
        font-size: 28px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    #header .logo a {
        color: #555555;
    }
    
    #header .logo img {
        max-height: 115px;
    }
    
    .logo_container {
        margin-bottom: -90px;
        z-index: 10;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
        border-radius: 50%;
        border: 15px solid #fff;
        background-color: #fff;
    }
    
    @media (max-width: 992px) {
        #header {
            top: 0;
        }
        #header .logo {
            font-size: 28px;
        }
    }
    /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
    /* Desktop Navigation */
    
    .nav-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-menu>ul {
        display: flex;
    }
    
    .nav-menu>ul>li {
        position: relative;
        white-space: nowrap;
        padding: 10px 20px 10px 5px;
    }
    
    .nav-menu a {
        display: block;
        position: relative;
        color: #555555;
        transition: 0.3s;
        font-size: 13px;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
    }
    
    .nav-menu a:hover,
    .nav-menu .active>a,
    .nav-menu li:hover>a {
        color: #352F87;
    }
    
    .nav-menu li a::before {
        position: absolute;
        overflow: hidden;
        /* padding: 50px 0; */
        max-width: 0;
        border-bottom: 1px solid #ed3237;
        color: #ed3237;
        content: attr(data-hover);
        -webkit-transition: max-width 0.5s;
        -moz-transition: max-width 0.5s;
        transition: all ease 2s;
        /* transition: max-width 2s ease-in; */
    }
    
    .nav-menu .drop-down ul {
        display: block;
        position: absolute;
        left: 15px;
        top: calc(100% + 30px);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        padding: 10px 0;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }
    
    .nav-menu .drop-down:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    
    .nav-menu .drop-down li {
        min-width: 180px;
        position: relative;
    }
    
    .nav-menu .drop-down ul a {
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        color: #555555;
    }
    
    .nav-menu .drop-down ul a:hover,
    .nav-menu .drop-down ul .active>a,
    .nav-menu .drop-down ul li:hover>a {
        color: #352F87;
    }
    
    .nav-menu .drop-down>a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 5px;
    }
    
    .nav-menu .drop-down .drop-down ul {
        top: 0;
        left: calc(100% - 30px);
    }
    
    .nav-menu .drop-down .drop-down:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
    }
    
    .nav-menu .drop-down .drop-down>a {
        padding-right: 35px;
    }
    
    .nav-menu .drop-down .drop-down>a:after {
        content: "\eaa0";
        font-family: IcoFont;
        position: absolute;
        right: 15px;
    }
    
    @media (max-width: 1366px) {
        .nav-menu .drop-down .drop-down ul {
            left: -90%;
        }
        .nav-menu .drop-down .drop-down:hover>ul {
            left: -100%;
        }
        .nav-menu .drop-down .drop-down>a:after {
            content: "\ea9d";
        }
    }
    /* Appointment Button */
    
    .appointment-btn {
        margin-left: 4px;
        background: #352F87;
        color: #fff;
        border-radius: 20px;
        padding: 5px 25px;
        white-space: nowrap;
        transition: 0.3s;
        font-size: 13px;
        display: inline-block;
        border: 2px solid #352F87;
    }
    
    .appointment-btn:hover {
        background: #ffffff;
        border: 2px solid #352F87;
        color: #352F87;
        font-weight: 500;
    }
    
    @media (max-width: 768px) {
        .appointment-btn {
            margin: 0 48px 0 0;
            padding: 6px 18px;
        }
    }
    
    @media (max-width: 990px) {
        .d-xs-inline {
            display: inline!important;
        }
    }
    /* Mobile Navigation */
    
    .mobile-nav-toggle {
        position: fixed;
        right: 15px;
        top: 20px;
        z-index: 1000;
        border: 0;
        background: none;
        font-size: 24px;
        transition: all 0.4s;
        outline: none !important;
        line-height: 1;
        cursor: pointer;
        text-align: right;
    }
    
    .mobile-nav-toggle i {
        color: #555555;
    }
    
    .mobile-nav {
        position: fixed;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        z-index: 9999;
        overflow-y: auto;
        background: #fff;
        transition: ease-in-out 0.2s;
        opacity: 0;
        visibility: hidden;
        border-radius: 10px;
        padding: 10px 0;
    }
    
    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .mobile-nav a {
        display: block;
        position: relative;
        color: #555555;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
    }
    
    .mobile-nav a:hover,
    .mobile-nav .active>a,
    .mobile-nav li:hover>a {
        color: #352F87;
        text-decoration: none;
    }
    
    .mobile-nav .drop-down>a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }
    
    .mobile-nav .active.drop-down>a:after {
        content: "\eaa1";
    }
    
    .mobile-nav .drop-down>a {
        padding-right: 35px;
    }
    
    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }
    
    .mobile-nav .drop-down li {
        padding-left: 20px;
    }
    
    .mobile-nav-overly {
        width: 100%;
        height: 100%;
        z-index: 9997;
        top: 0;
        left: 0;
        position: fixed;
        background: rgba(60, 60, 60, 0.6);
        overflow: hidden;
        display: none;
        transition: ease-in-out 0.2s;
    }
    
    .mobile-nav-active {
        overflow: hidden;
    }
    
    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-active .mobile-nav-toggle i {
        color: #000;
        font-weight: bold;
    }
    
    .mobile-nav a.appointment-btn {
        color: #ffffff !important;
    }
    
    .mobile-nav a.appointment-btn:hover {
        color: #352F87 !important;
    }
    /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
    
    #outer-header {
        width: 100%;
        /* height: 100%; */
        overflow: hidden;
        position: relative;
        display: inline-block;
        margin-top: 110px;
        border-radius: 0px 0px 70px 70px !important;
        padding-bottom: 0;
    }
    
    .header-image {
        height: 100%;
        width: 100%;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }
    
    .slider-text {
        position: absolute;
        top: 40%;
    }
    
    #outer-header .slider-text span {
        color: #c70039
    }
    
    @media (max-width: 1200px) {
        #outer-header .container {
            margin-left: 50px;
            margin-right: 50px;
        }
    }
    
    #outer-header h2 {
        color: #352F87;
        margin-bottom: 20px;
        font-size: 36px;
        font-weight: 700;
    }
    
    #outer-header h2.sub-title {
        margin-bottom: 3rem;
    }
    
    #outer-header p {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #555555;
    }
    
    #outer-header .btn-get-started {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 20px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        background: #352F87;
    }
    
    @media (max-width: 993px) {
        #outer-header {
            margin-top: 65px;
        }
    }
    
    @media (max-width: 783px) {
        #outer-header h2 {
            font-size: 25px !important;
        }
        #outer-header h2.sub-title {
            margin-bottom: 1rem;
        }
    }
    
    @media (max-width: 520px) {
        #outer-header h2 {
            font-size: 18px !important;
        }
        #outer-header .btn-get-started {
            padding: 8px 18px;
            font-size: 11px;
        }
    }
    
    @media (max-width: 520px) {
        #outer-header img {
            height: 250px;
        }
    }
    /*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
    
    section {
        padding: 20px 0;
        overflow: hidden;
    }
    
    .section-bg {
        background-color: #f7fcfc;
    }
    
    .section-title {
        text-align: left;
        padding-bottom: 10px;
    }
    
    .section-title h2 {
        font-size: 32px;
        font-weight: 400px;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 5px;
        position: relative;
    }
    
    .section-title h2 span {
        font-weight: bold;
        color: #352F87;
    }
    
    .section-bg-title h2 span {
        font-weight: bold;
        color: #fff;
    }
    
    .section-title h2::after {
        content: '';
        position: absolute;
        display: block;
        width: 77px;
        height: 3px;
        background: #352F87;
        bottom: 0;
    }
    
    .section-bg-title h2::after {
        background: #ffffff;
    }
    
    .section-title p {
        margin-bottom: 0;
    }
    
    .section-inner-title h2 {
        font-size: 32px;
        font-weight: 700;
        position: relative;
        color: #352F87;
    }
    /*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
    
    .breadcrumbs {
        padding: 150px 0;
        background-color: #ecf8f9;
        margin-top: 70px;
        background: linear-gradient(0deg, rgb(53 47 135 / 93%), rgb(53 47 135 / 81%)), url(../img/inner-header.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 0px 0px 70px 70px;
    }
    
    .scs-header {
        background: url(../img/SCS-and-STS-Patnership.jpg) !important;
    }
    
    .parent-scs {
        width: 100%;
        overflow: hidden;
        position: relative;
        display: inline-block;
        margin-top: 80px;
    }
    
    @media (max-width: 992px) {
        .parent-scs {
            margin-top: 45px;
        }
    }
    
    .child-scs {
        height: 100%;
        width: 100%;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        border-radius: 0px 0px 70px 70px !important;
    }
    
    @media (max-width: 992px) {
        .breadcrumbs {
            margin-top: 70px;
        }
    }
    
    .breadcrumbs h2 {
        font-size: 35px;
        font-weight: 600;
        margin: 0;
        color: #fff;
        margin-top: 50px;
    }
    
    @media (max-width: 992px) {
        .breadcrumbs h2 {
            margin: 0 0 10px 0;
        }
    }
    
    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
    }
    
    .breadcrumbs ol li+li {
        padding-left: 10px;
        color: #ffffff;
    }
    
    .breadcrumbs ol li+li::before {
        display: inline-block;
        padding-right: 10px;
        color: #ffffff;
        content: "/";
    }
    
    .breadcrumbs ol li a {
        color: #c70039;
    }
    
    @media (max-width: 768px) {
        .breadcrumbs .d-flex {
            display: block !important;
        }
        .breadcrumbs ol {
            display: block;
        }
        .breadcrumbs ol li {
            display: inline-block;
        }
    }
    /*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
    
    .featured-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;
    }
    
    .featured-services .icon-box::before {
        content: '';
        position: absolute;
        background: #d9f1f2;
        right: 0;
        left: 0;
        bottom: 0;
        top: 100%;
        transition: all 0.3s;
        z-index: -1;
    }
    
    .featured-services .icon-box:hover::before {
        background: #352F87;
        top: 0;
        border-radius: 0px;
    }
    
    .featured-services .icon {
        margin-bottom: 15px;
    }
    
    .featured-services .icon i {
        font-size: 48px;
        line-height: 1;
        color: #352F87;
        transition: all 0.3s ease-in-out;
    }
    
    .featured-services .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }
    
    .featured-services .title a {
        color: #111;
    }
    
    .featured-services .description {
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 0;
    }
    
    .featured-services .icon-box:hover .title a,
    .featured-services .icon-box:hover .description {
        color: #fff;
    }
    
    .featured-services .icon-box:hover .icon i {
        color: #fff;
    }
    /*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
    
    .cta {
        background: #352F87;
        color: #fff;
        /* background-size: cover; */
        padding: 0;
        height: 400px;
    }
    
    .cta h3 {
        font-size: 28px;
        font-weight: 700;
    }
    
    .cta .cta-btn {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 35px;
        border-radius: 25px;
        transition: 0.5s;
        margin-top: 10px;
        border: 2px solid #fff;
        color: #fff;
    }
    
    .cta .cta-btn:hover {
        background: #fff;
        color: #352F87;
    }
    
    .donation .donation-btn {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 12px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 6px 25px;
        border-radius: 25px;
        transition: 0.5s;
        border: 1px solid #fff;
        color: #fff;
        text-transform: uppercase;
    }
    
    .donation .donation-btn:hover {
        background: #fff;
        color: #352F87;
    }
    /*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
    
    .about .section-title h2 {
        font-size: 24px;
        margin-top: 20px;
    }
    
    .about .content h3 {
        font-weight: 500;
        font-size: 30px;
    }
    
    .about .content ul {
        list-style: none;
        padding: 0;
    }
    
    .about .content ul li {
        padding-bottom: 10px;
    }
    
    .about .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #352F87;
    }
    
    .about .content p:last-child {
        margin-bottom: 0;
    }
    
    .about img {
        max-height: 500px;
    }
    
    .about p {
        font-size: 14px;
    }
    /*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
    
    .counts {
        padding-bottom: 30px;
    }
    
    .counts .count-box {
        box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
        padding: 30px;
        width: 100%;
    }
    
    .counts .count-box i {
        display: block;
        font-size: 30px;
        color: #352F87;
        float: left;
    }
    
    .counts .count-box span {
        font-size: 42px;
        line-height: 24px;
        display: block;
        font-weight: 700;
        color: #555555;
        margin-left: 50px;
    }
    
    .counts .count-box p {
        padding: 30px 0 0 0;
        margin: 0;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
    }
    
    .counts .count-box a {
        font-weight: 600;
        display: block;
        margin-top: 20px;
        color: #7b7b7b;
        font-size: 15px;
        font-family: "Poppins", sans-serif;
        transition: ease-in-out 0.3s;
    }
    
    .counts .count-box a:hover {
        color: #352F87;
    }
    /*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
    
    .features .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 5px 0 10px 60px;
    }
    
    .features .icon-box i {
        font-size: 48px;
        float: left;
        color: #352F87;
    }
    
    .features .icon-box p {
        font-size: 15px;
        color: #848484;
        margin-left: 60px;
    }
    
    .features .image {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        min-height: 400px;
        background-image: url("../img/SOCS LOGO.jpg");
    }
    
    .features {
        background: #352F87;
        padding: 0;
        color: #ffffff;
    }
    
    .features .content {
        padding: 20px;
    }
    
    .meeting-details h4 {
        line-height: 36px;
    }
    
    .features .feature-btn {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 5px 25px 5px 25px;
        border-radius: 25px;
        transition: 0.5s;
        margin-top: 10px;
        border: 2px solid #fff;
        color: #fff;
    }
    
    .features .feature-btn:hover {
        background: #fff;
        color: #352F87;
    }
    
    .features .feature-btn.learn-more {
        background: #fff;
        color: #352F87;
    }
    
    .features .feature-btn.learn-more:hover {
        background: #352F87;
        color: #fff;
    }
    
    .features .meeting-carousel .owl-nav .owl-prev {
        position: absolute;
        top: -50px;
        right: 80px;
        border-radius: 6px;
        display: block;
        outline: 0;
        width: 34px;
        line-height: 34px;
        height: 34px;
        color: #fff;
        font-size: 23px;
        margin-top: -20px;
        transition: all 0.3s ease-in-out;
        border: 2px solid #ffffff;
        color: #ffffff;
        margin-right: 20px;
    }
    
    .features .meeting-carousel .owl-nav .owl-prev:hover {
        background: #fff;
        color: #352f87;
    }
    
    .features .meeting-carousel .owl-nav .owl-next {
        position: absolute;
        top: -50px;
        right: 40px;
        border-radius: 6px;
        display: block;
        outline: 0;
        width: 34px;
        text-align: center;
        line-height: 34px;
        height: 34px;
        color: #fff;
        font-size: 23px;
        margin-top: -20px;
        transition: all 0.3s ease-in-out;
        border: 2px solid #ffffff;
        color: #ffffff;
    }
    
    .features .meeting-carousel .owl-nav .owl-next:hover {
        background: #fff;
        color: #352f87;
    }
    
    @media (max-width: 500px) {
        .features .meeting-carousel .owl-nav .owl-prev {
            top: -126px;
            right: 40px;
        }
        .features .meeting-carousel .owl-nav .owl-next {
            top: -126px;
            right: 1px;
        }
        .features .content {
            padding-top: 60px;
        }
    }
    /*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
    
    .services {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .services .title {
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 18px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .services .title a {
        color: #444444;
        transition: 0.3s;
    }
    
    .services .title a:hover {
        color: #352F87;
    }
    
    .services .title::after {
        content: '';
        position: absolute;
        display: block;
        width: 50px;
        height: 2px;
        background: #352F87;
        bottom: 0;
        left: calc(50% - 25px);
    }
    
    .services .description {
        line-height: 24px;
        font-size: 14px;
        height: 95px;
    }
    
    .services .service-btn {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 5px 25px 5px 25px;
        border-radius: 25px;
        transition: 0.5s;
        margin-top: 10px;
        color: #fff;
        border: 2px solid #352F87;
        background: #352F87;
    }
    
    .services .service-btn:hover {
        background: #fff;
        color: #352F87;
        border: 2px solid #352F87;
    }
    /*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
    
    .appointment .php-email-form {
        width: 100%;
    }
    
    .appointment .php-email-form .form-group {
        padding-bottom: 8px;
    }
    
    .appointment .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }
    
    .appointment .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }
    
    .appointment .php-email-form .error-message br+br {
        margin-top: 25px;
    }
    
    .appointment .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #322b81;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }
    
    .appointment .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }
    
    .appointment .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #322b81;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }
    
    .appointment .php-email-form input,
    .appointment .php-email-form textarea,
    .appointment .php-email-form select {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        padding: 10px !important;
    }
    
    .appointment .php-email-form input:focus,
    .appointment .php-email-form textarea:focus,
    .appointment .php-email-form select:focus {
        border-color: #352F87;
    }
    
    .appointment .php-email-form input,
    .appointment .php-email-form select {
        height: 44px;
    }
    
    .appointment .php-email-form textarea {
        padding: 10px 12px;
    }
    
    .appointment .php-email-form button[type="submit"] {
        background: #352F87;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }
    
    .appointment .php-email-form button[type="submit"]:hover {
        background: #ffffff;
        border: 2px solid #352F87;
        color: #352F87;
        font-weight: 500;
    }
    /*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
    
    .departments .nav-tabs {
        border: 0;
    }
    
    .departments .nav-link {
        border: 0;
        padding: 20px;
        color: #555555;
        border-radius: 0;
        border-left: 5px solid #fff;
    }
    
    .departments .nav-link h4 {
        font-size: 18px;
        font-weight: 600;
        transition: 0.3s;
    }
    
    .departments .nav-link p {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .departments .nav-link:hover h4 {
        color: #352F87;
    }
    
    .departments .nav-link.active {
        background: #f7fcfc;
        border-color: #352F87;
    }
    
    .departments .nav-link.active h4 {
        color: #352F87;
    }
    
    .departments .tab-pane.active {
        -webkit-animation: slide-down 0.5s ease-out;
        animation: slide-down 0.5s ease-out;
    }
    
    .departments .tab-pane img {
        float: left;
        max-width: 300px;
        padding: 0 15px 15px 0;
    }
    
    @media (max-width: 768px) {
        .departments .tab-pane img {
            float: none;
            padding: 0 0 15px 0;
            max-width: 100%;
        }
    }
    
    .departments .tab-pane h3 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #352F87;
    }
    
    .departments .tab-pane p {
        color: #777777;
    }
    
    .departments .tab-pane p:last-child {
        margin-bottom: 0;
    }
    
    @-webkit-keyframes slide-down {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    
    @keyframes slide-down {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    /*--------------------------------------------------------------
# Latest Publications
--------------------------------------------------------------*/
    
    .latest-publications .testimonial-item {
        box-sizing: content-box;
        min-height: 320px;
    }
    
    .latest-publications .owl-nav,
    .latest-publications .owl-dots {
        margin-top: 5px;
        text-align: center;
    }
    
    .latest-publications .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd !important;
    }
    
    .latest-publications .owl-dot.active {
        background-color: #352F87 !important;
    }
    
    @media (max-width: 767px) {
        .latest-publications {
            margin: 30px 10px;
        }
    }
    /*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
    
    .doctors .member {
        margin-bottom: 20px;
        overflow: hidden;
        text-align: center;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
    }
    
    .doctors .member .member-img {
        position: relative;
        overflow: hidden;
    }
    
    .doctors .member .social {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        height: 40px;
        opacity: 0;
        transition: ease-in-out 0.3s;
        text-align: center;
        background: rgba(255, 255, 255, 0.85);
    }
    
    .doctors .member .social a {
        transition: color 0.3s;
        color: #555555;
        margin: 0 10px;
        padding-top: 8px;
        display: inline-block;
    }
    
    .doctors .member .social a:hover {
        color: #352F87;
    }
    
    .doctors .member .social i {
        font-size: 18px;
        margin: 0 2px;
    }
    
    .doctors .member .member-info {
        padding: 25px 15px;
    }
    
    .doctors .member .member-info h4 {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 18px;
        color: #555555;
    }
    
    .doctors .member .member-info span {
        display: block;
        font-size: 13px;
        font-weight: 400;
        color: #aaaaaa;
    }
    
    .doctors .member .member-info p {
        font-style: italic;
        font-size: 14px;
        line-height: 26px;
        color: #777777;
    }
    
    .doctors .member:hover .social {
        opacity: 1;
    }
    /*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
    
    .gallery {
        overflow: hidden;
    }
    
    .gallery .owl-nav,
    .gallery .owl-dots {
        margin-top: 25px;
        text-align: center;
    }
    
    .gallery .owl-item {
        border-left: 2px solid #fff;
        border-right: 2px solid #fff;
    }
    
    .gallery .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #e0f4f5 !important;
    }
    
    .gallery .owl-dot.active {
        background-color: #352F87 !important;
    }
    
    .gallery .gallery-carousel .owl-stage-outer {
        overflow: visible;
    }
    
    .gallery .gallery-carousel .center {
        border: 6px solid #352F87;
        margin: -10px;
        box-sizing: content-box;
        padding: 4px;
        background: #fff;
        z-index: 1;
    }
    /*--------------------------------------------------------------
# latest-publications
--------------------------------------------------------------*/
    
    .latest-publications {
        background-image: url("../img/publication-bg1.png"), url("../img/publication-bg2.png"), url("../img/publication-bg3.png");
        background-repeat: no-repeat;
        background-size: 100% 700px;
    }
    
    .latest-publications .section-title h2 {
        text-transform: uppercase;
    }
    
    .latest-publications .box {
        background: #fff;
        text-align: center;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
        border-radius: 4px;
        position: relative;
        overflow: hidden;
    }
    
    .latest-publications .box .content {
        padding: 20px;
    }
    
    .latest-publications h4 {
        font-weight: 600;
        text-align: left;
    }
    
    .latest-publications p {
        font-size: 14px;
        text-align: justify;
    }
    
    .latest-publications .btn-wrap {
        margin: 20px -20px -20px -20px;
        padding: 20px 15px;
        text-align: left;
    }
    
    .latest-publications .btn-buy {
        border: 2px solid #352F87;
        display: inline-block;
        padding: 5px 25px 5px 25px;
        border-radius: 20px;
        color: #352F87;
        transition: none;
        font-size: 14px;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        transition: 0.3s;
    }
    
    .latest-publications .btn-buy:hover {
        background: #352F87;
        color: #fff;
    }
    
    .latest-publications .featured h3 {
        color: #fff;
        background: #352F87;
    }
    
    .latest-publications .advanced {
        width: 200px;
        position: absolute;
        top: 18px;
        right: -68px;
        transform: rotate(45deg);
        z-index: 1;
        font-size: 14px;
        padding: 1px 0 3px 0;
        background: #352F87;
        color: #fff;
    }
    
    .latest-publications .container {
        margin-top: 50px;
        margin-bottom: 90px;
    }
    
    .latest-publications .publications-carousel .owl-nav .owl-prev {
        position: absolute;
        top: -46px;
        right: 42px;
        border-radius: 6px;
        display: block;
        outline: 0;
        width: 34px;
        line-height: 34px;
        height: 34px;
        color: #fff;
        font-size: 23px;
        margin-top: -20px;
        transition: all 0.3s ease-in-out;
        border: 2px solid #352f87;
        color: #352f87;
        margin-right: 20px;
    }
    
    .latest-publications .publications-carousel .owl-nav .owl-prev:hover {
        background: #352f87;
        color: #fff;
    }
    
    .latest-publications .publications-carousel .owl-nav .owl-next {
        position: absolute;
        top: -46px;
        right: 5px;
        border-radius: 6px;
        display: block;
        outline: 0;
        width: 34px;
        text-align: center;
        line-height: 34px;
        height: 34px;
        color: #fff;
        font-size: 23px;
        margin-top: -20px;
        transition: all 0.3s ease-in-out;
        border: 2px solid #352f87;
        color: #352f87;
    }
    
    .latest-publications .publications-carousel .owl-nav .owl-next:hover {
        background: #352f87;
        color: #fff;
    }
    
    @media (max-width: 500px) {
        .latest-publications .publications-carousel .owl-nav .owl-prev,
        .latest-publications .publications-carousel .owl-nav .owl-next {
            top: -110px;
        }
    }
    /*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/
    
    .faq {
        padding: 60px 0;
    }
    
    .faq .faq-list {
        padding: 0;
        list-style: none;
    }
    
    .faq .faq-list li {
        padding: 0 0 20px 25px;
    }
    
    .faq .faq-list a {
        display: block;
        position: relative;
        font-family: #352F87;
        font-size: 18px;
        font-weight: 500;
    }
    
    .faq .faq-list i {
        font-size: 18px;
        position: absolute;
        left: -25px;
        top: 6px;
    }
    
    .faq .faq-list p {
        margin-bottom: 20px;
        font-size: 15px;
    }
    
    .faq .faq-list a.collapse {
        color: #352F87;
    }
    
    .faq .faq-list a.collapsed {
        color: #343a40;
    }
    
    .faq .faq-list a.collapsed:hover {
        color: #352F87;
    }
    
    .faq .faq-list a.collapsed i::before {
        content: "\eab2" !important;
    }
    /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
    
    .contact .info-box {
        color: #444444;
        text-align: center;
        box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
        padding: 20px 0 30px 0;
    }
    
    .contact .info-box i {
        font-size: 32px;
        color: #352F87;
        border-radius: 50%;
        padding: 8px;
        border: 2px dotted #c5ebec;
    }
    
    .contact .info-box h3 {
        font-size: 20px;
        color: #777777;
        font-weight: 700;
        margin: 10px 0;
    }
    
    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .contact .contact-form {
        box-shadow: 0 0 20px rgb(123 123 123 / 59%);
    }
    
    .contact .contact-details {
        background-color: #322b81;
    }
    
    .contact form#contact-form label.error,
    label.error {
        color: red;
        margin: 0 0 1px 0;
        font-weight: 400;
        font-size: 13px;
    }
    
    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }
    
    .contact .php-email-form .error-message br+br {
        margin-top: 25px;
    }
    
    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }
    
    .contact .php-email-form .loading {
        display: none;
        text-align: center;
        padding: 15px;
    }
    
    .contact .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #322b81;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }
    
    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 4px;
        box-shadow: none;
        font-size: 12px;
    }
    
    .contact .php-email-form input:focus,
    .contact .php-email-form textarea:focus {
        border-color: #352F87;
    }
    
    .contact .php-email-form input {
        padding: 17px 15px;
    }
    
    .contact .php-email-form textarea {
        padding: 12px 15px;
    }
    
    .contact .php-email-form button[type="submit"] {
        background: #352F87;
        border: 0;
        padding: 15px 30px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 600;
        border: 2px solid #352F87;
    }
    
    .contact .php-email-form button[type="submit"]:hover {
        background: #ffffff;
        border: 2px solid #352F87;
        color: #352F87;
    }
    
    @-webkit-keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    @keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    .contact .contact-content {
        padding: 30px;
        padding-top: 60px;
        color: #ffffff;
    }
    
    .contact .contact-content p {
        font-size: 13px;
    }
    
    .contact .contact-content.left {
        color: #322b81 !important;
    }
    
    .contact .contact-content h3 {
        font-weight: 600;
        font-size: 25px;
    }
    
    .contact .contact-phone-btn {
        font-family: "Poppins", sans-serif;
        font-weight: bolder;
        font-size: 18px;
        padding: 10px;
        border-radius: 4px;
        transition: 0.5s;
        margin-top: 30px;
        margin-bottom: 20px;
        background: #fff;
        color: #322b81;
        text-align: center;
    }
    
    .contact .contact-email-btn {
        font-family: "Poppins", sans-serif;
        font-weight: bolder;
        font-size: 18px;
        padding: 10px;
        border-radius: 4px;
        transition: 0.5s;
        margin-top: 30px;
        margin-bottom: 20px;
        background: #322b81;
        color: #fff;
        border: 2px solid #fff;
        text-align: center;
    }
    
    .contact .contact-content hr {
        border-top: 1px solid #fff !important;
    }
    
    .contact .php-email-form .form-group label {
        color: #322b81;
        font-weight: 600;
        font-size: 13px;
        ;
    }
    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
    
    #footer {
        color: #ffffff;
        font-size: 13px;
        margin-top: 40px !important;
    }
    
    #footer .footer-bottom {
        background: #352F87;
        padding: 0 0 30px 0;
    }
    
    #footer .footer-top {
        background: #1A1E27;
        padding: 102px 0px 0px 0px;
        border-radius: 70px 70px 0px 0px;
    }
    
    #footer .footer-top .footer-info {
        margin-bottom: 30px;
    }
    
    #footer .footer-top .footer-info h3 {
        font-size: 24px;
        margin: 0 0 20px 0;
        padding: 2px 0 2px 0;
        line-height: 1;
        font-weight: 700;
        text-transform: uppercase;
        color: #352F87;
    }
    
    #footer .footer-top .footer-info p {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: "Poppins", sans-serif;
    }
    
    #footer .footer-top .social-links a {
        font-size: 18px;
        display: inline-block;
        background: #352F87;
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 4px;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
        border: 2px solid #352f87;
    }
    
    #footer .footer-top .social-links a:hover {
        background: #1a1e27;
        text-decoration: none;
        color: #352f87;
        border: 2px solid #352f87;
    }
    
    #footer .footer-top h4 {
        font-size: 16px;
        font-weight: 600;
        position: relative;
        padding-bottom: 12px;
    }
    
    #footer .footer-top .footer-links {
        margin-bottom: 30px;
    }
    
    #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    #footer .footer-top .footer-links ul i {
        padding-right: 15px;
        color: #352F87;
        font-size: 30px;
        line-height: 1;
    }
    
    #footer .footer-top .footer-links ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
    }
    
    #footer .footer-top .footer-links ul li:first-child {
        padding-top: 0;
    }
    
    #footer .footer-top .footer-links ul a {
        color: #ffffff;
        transition: 0.3s;
        display: inline-block;
        line-height: 1;
    }
    
    #footer .footer-top .footer-links ul a:hover {
        color: #352F87;
    }
    
    #footer .footer-overlay .footer-newsletter {
        font-weight: 500;
    }
    
    #footer .footer-overlay .footer-newsletter form {
        background: #fff;
        padding: 6px 10px;
        position: relative;
        border: 1px solid #d5d5d5;
        border-radius: 4px;
    }
    
    #footer .footer-overlay .footer-newsletter form input[type="email"] {
        border: 0;
        padding: 4px;
        width: calc(100% - 110px);
    }
    
    #footer .footer-overlay .footer-newsletter form input[type="submit"] {
        position: absolute;
        top: -1px;
        right: -1px;
        bottom: -1px;
        border: 0;
        background: none;
        font-size: 16px;
        padding: 0 20px;
        background: #352F87;
        color: #fff;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
    }
    
    #footer .footer-overlay .footer-newsletter form input[type="submit"]:hover {
        background: #352F87;
    }
    
    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }
    
    #footer .copyright a {
        color: #fff;
    }
    
    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
    }
    
    #footer .footer-overlay {
        background: #352F87;
        padding: 30px;
        border-radius: 20px;
        position: absolute;
        top: -50px;
    }
    
    #footer .subscription {
        position: relative;
    }
    
    .subscription-button {
        position: relative;
    }
    
    #subscription-container {
        width: 400px;
    }
    
    .subscription-button input {
        height: 40px;
        width: 100%;
        padding-left: 17px;
        border-radius: 20px;
        border: none;
        outline: none;
    }
    
    .subscription-button button {
        position: absolute;
        right: 6px;
        top: 6px;
        border: none;
        height: 29px;
        width: 90px;
        border-radius: 20px;
        outline: none;
        text-align: center;
        padding: 4px;
        background: #352f87;
        color: #fff;
    }
    
    .subscription-button button:hover {
        cursor: pointer;
    }
    
    .inner-pages {
        font-size: 14px;
    }
    
    .aboutus .section-inner-title img {
        width: 25em;
    }
    
    .aboutus .section-inner-title1 img {
        width: 15em;
    }
    
    @media (max-width: 500px) {
        .aboutus .section-inner-title img {
            padding-bottom: 40px;
        }
    }
    
    .aboutus .about-right-bar ul {
        list-style: none;
        background: #fff;
        padding-left: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-right: 1px;
        border-radius: 7px;
    }
    
    .aboutus .about-right-bar ul li {
        font-size: 13px;
        line-height: 40px;
    }
    
    .aboutus .about-right-bar ul li:before {
        content: "\2605";
        color: #352f87;
        padding-right: 10px;
    }
    
    .aboutus .about-left ul {
        list-style: none;
        padding-left: 0;
    }
    
    .aboutus .about-left ul li {
        position: relative;
        padding-left: 25px;
        margin: 0 0 20px 0;
    }
    
    .aboutus .about-left ul li:before {
        content: "\2605";
        color: #352f87;
        padding-right: 10px;
        margin-right: 10px;
        position: absolute;
        left: 0;
    }
    
    .aboutus .committee-carousel .owl-nav .owl-prev {
        position: absolute;
        top: -46px;
        right: 42px;
        border-radius: 6px;
        display: block;
        outline: 0;
        width: 34px;
        line-height: 34px;
        height: 34px;
        color: #fff;
        font-size: 23px;
        margin-top: -20px;
        transition: all 0.3s ease-in-out;
        border: 2px solid #352f87;
        color: #352f87;
        margin-right: 20px;
    }
    
    .aboutus .committee-carousel .owl-nav .owl-prev:hover {
        background: #352f87;
        color: #fff;
    }
    
    .aboutus .committee-carousel .owl-nav .owl-next {
        position: absolute;
        top: -46px;
        right: 5px;
        border-radius: 6px;
        display: block;
        outline: 0;
        width: 34px;
        text-align: center;
        line-height: 34px;
        height: 34px;
        color: #fff;
        font-size: 23px;
        margin-top: -20px;
        transition: all 0.3s ease-in-out;
        border: 2px solid #352f87;
        color: #352f87;
    }
    
    .aboutus .committee-carousel .owl-nav .owl-next:hover {
        background: #352f87;
        color: #fff;
    }
    
    .committee .member {
        margin-bottom: 20px;
        overflow: hidden;
        text-align: left;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
    }
    
    .committee .member .member-img {
        position: relative;
        overflow: hidden;
    }
    
    .committee .member .member-info {
        padding: 25px 15px;
        height: 110px;
    }
    
    .committee .member .member-info h4 {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 15px;
    }
    
    .committee .member .member-info span {
        display: block;
        font-size: 13px;
        font-weight: 400;
    }
    
    .committee .member .member-info p {
        font-style: italic;
        font-size: 14px;
        line-height: 26px;
        color: #777777;
    }
    
    .circle-btn-with-bg {
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 9px 25px 9px 25px;
        border-radius: 25px;
        transition: 0.5s;
        margin-top: 10px;
        color: #fff;
        border: 2px solid #352F87;
        background: #352F87;
        cursor: pointer;
    }
    
    .circle-btn-with-bg:hover {
        background: #fff;
        color: #352F87;
        border: 2px solid #352F87;
    }
    
    .sts .sts-list {
        padding: 0px;
        list-style: none;
        background: #ffffff;
    }
    
    .sts .sts-list a {
        display: block;
    }
    
    .sts .sts-list i {
        font-size: 16px;
        float: right;
    }
    
    .sts .sts-list p {
        margin-bottom: 10px !important;
        font-size: 13px;
        cursor: pointer;
    }
    
    .sts .sts-list p label {
        cursor: pointer;
    }
    
    .sts .sts-list p.active {
        color: #352F87;
    }
    
    .sts .sts-list li a {
        color: #352F87;
        padding: 10px;
        cursor: pointer;
    }
    
    .sts .sts-list li a.active {
        color: #fff;
        background: #352F87;
    }
    
    .sts .sts-list a.collapsed {
        background: #ffffff;
        color: #352F87;
    }
    
    .sts .sts-list li #sts {
        padding: 10px;
    }
    
    .sts .sts-list a i::before {
        content: "\eab8" !important;
    }
    
    .sts .sts-list a.collapsed i::before {
        content: "\eab2" !important;
    }
    
    .sts-tab-section {
        background: #fff;
    }
    
    .tabcontent {
        padding: 0 20px 20px 20px;
    }
    
    .tab-section .tab-content {
        display: none;
        padding: 20px 0 0;
    }
    
    .tab-section input {
        display: none;
    }
    
    .tab-section label {
        display: inline-block;
        margin: 0 0 -1px;
        padding: 15px 25px;
        text-align: center;
        border: 1px solid transparent;
        color: #ccc;
    }
    
    .tab-section label:before {
        margin-right: 10px;
    }
    
    .tab-section label:hover {
        color: #333;
        cursor: pointer;
    }
    
    .tab-section input:checked+label {
        border-top: 3px solid #352F87;
        border-bottom: 1px solid #fff;
        color: #333;
    }
    
    .tab-section #tab1:checked~#content1,
    .tab-section #tab2:checked~#content2,
    .tab-section #tab3:checked~#content3,
    .tab-section #tab4:checked~#content4 {
        display: block;
    }
    
    @media screen and (max-width: 768px) {
        .tab-section {
            margin-left: 0px;
        }
    }
    
    .imp_resources a {
        display: table;
        padding-bottom: 10px;
    }
    
    .imp_resources a:hover {
        text-decoration: underline !important;
        cursor: pointer;
        color: #352F87 !important;
    }
    
    .star_list ul {
        list-style: none;
        background: #fff;
        padding-left: 10px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-right: 10px;
        border-radius: 7px;
    }
    
    .star_list ul li {
        font-size: 13px;
        line-height: 40px;
    }
    
    .star_list li:before {
        content: "\2605";
        color: #352f87;
        padding-right: 10px;
    }
    
    .section-inner-title h3 {
        font-size: 22px;
        font-weight: 700;
        color: #352F87;
    }
    
    .publications .testimonial-item {
        box-sizing: content-box;
        min-height: 320px;
    }
    
    .publications .owl-nav,
    .publications .owl-dots {
        margin-top: 5px;
        text-align: center;
    }
    
    .publications img {
        border-radius: 0px 0px 20px 20px;
    }
    
    .publications .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd !important;
    }
    
    .publications .owl-dot.active {
        background-color: #352F87 !important;
    }
    
    @media (max-width: 767px) {
        .publications {
            margin: 30px 10px;
        }
    }
    
    .event_publications {
        background-image: url("../img/publication-bg1.png"), url("../img/publication-bg2.png"), url("../img/publication-bg3.png");
        background-repeat: no-repeat;
        background-size: 100% 700px;
    }
    
    .publications .section-title h2 {
        text-transform: capitalize;
    }
    
    .publications .box {
        background: #fff;
        text-align: center;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
        border-radius: 4px;
        position: relative;
        overflow: hidden;
    }
    
    .publications .box .content {
        padding: 20px;
    }
    
    .publications h4 {
        font-weight: 600;
        text-align: left;
    }
    
    .publications p {
        font-size: 14px;
        text-align: justify;
    }
    
    .publications .btn-wrap {
        margin: 20px -20px -20px -20px;
        padding: 20px 15px;
        text-align: left;
    }
    
    .publications .btn-buy {
        border: 2px solid #352F87;
        display: inline-block;
        padding: 5px 25px 5px 25px;
        border-radius: 20px;
        color: #352F87;
        transition: none;
        font-size: 14px;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        transition: 0.3s;
    }
    
    .publications .btn-buy:hover {
        background: #352F87;
        color: #fff;
    }
    
    .publications .featured h3 {
        color: #fff;
        background: #352F87;
    }
    
    .publications .advanced {
        width: 200px;
        position: absolute;
        top: 18px;
        right: -68px;
        transform: rotate(45deg);
        z-index: 1;
        font-size: 14px;
        padding: 1px 0 3px 0;
        background: #352F87;
        color: #fff;
    }
    
    .publications .publications-carousel .owl-stage-outer {
        padding-bottom: 30px;
    }
    
    .publications .publications-carousel .owl-nav .owl-prev {
        position: absolute;
        top: -46px;
        right: 42px;
        border-radius: 6px;
        display: block;
        outline: 0;
        width: 34px;
        line-height: 34px;
        height: 34px;
        color: #fff;
        font-size: 23px;
        margin-top: -20px;
        transition: all 0.3s ease-in-out;
        border: 2px solid #352f87;
        color: #352f87;
        margin-right: 20px;
    }
    
    .publications .publications-carousel .owl-nav .owl-prev:hover {
        background: #352f87;
        color: #fff;
    }
    
    .publications .publications-carousel .owl-nav .owl-next {
        position: absolute;
        top: -46px;
        right: 5px;
        border-radius: 6px;
        display: block;
        outline: 0;
        width: 34px;
        text-align: center;
        line-height: 34px;
        height: 34px;
        color: #fff;
        font-size: 23px;
        margin-top: -20px;
        transition: all 0.3s ease-in-out;
        border: 2px solid #352f87;
        color: #352f87;
    }
    
    .publications .publications-carousel .owl-nav .owl-next:hover {
        background: #352f87;
        color: #fff;
    }
    
    .publications-carousel h5 {
        text-align: left;
    }
    
    .video_publications video {
        margin-top: -15px;
    }
    /*--------------------------------------------------------------
# membership-modal
--------------------------------------------------------------*/
    
    #membership-modal .membership-modal-left {
        background: #352F87;
    }
    
    #membership-modal .membership-modal-right {
        background: #F6F5FF;
    }
    
    #membership-modal .close {
        position: absolute;
        right: 2px;
        top: 15px;
        color: #000;
        background: #F8F8F8;
        z-index: 9999;
        border-radius: 25px;
        font-size: 15px;
    }
    
    #membership-modal #membership-modal-form {
        box-shadow: 0 0 20px rgb(123 123 123 / 59%);
    }
    
    #membership-modal .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }
    
    #membership-modal .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }
    
    #membership-modal .php-email-form .error-message br+br {
        margin-top: 25px;
    }
    
    #membership-modal .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }
    
    #membership-modal .php-email-form .loading {
        display: none;
        text-align: center;
        padding: 15px;
    }
    
    #membership-modal .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #322b81;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }
    
    #membership-modal .php-email-form input,
    #membership-modal .php-email-form textarea {
        border-radius: 4px;
        box-shadow: none;
        font-size: 12px;
        background-color: #e8e5f7;
        border: 1px solid #e2def7;
    }
    
    #membership-modal .php-email-form input:focus,
    #membership-modal .php-email-form textarea:focus {
        background-color: #b4abe0;
        color: #333;
    }
    
    #membership-modal .php-email-form input,
    #membership-modal .php-email-form textarea {
        padding: 20px 15px;
    }
    
    #membership-modal .php-email-form textarea {
        padding: 12px 15px;
    }
    
    #membership-modal .php-email-form button[type="submit"] {
        background: #352F87;
        padding: 10px 30px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
        font-size: 13px;
        border: 2px solid #352F87;
        display: block;
        width: 100%;
    }
    
    #membership-modal .php-email-form button[type="submit"]:hover {
        background: #ffffff;
        border: 2px solid #352F87;
        color: #352F87;
        font-weight: 600;
    }
    
    @-webkit-keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    @keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    #membership-modal #membership-modal-content {
        padding: 30px;
        padding-top: 60px;
        color: #ffffff;
    }
    
    #membership-modal #membership-modal-content p {
        font-size: 13px;
    }
    
    #membership-modal #membership-modal-content.left {
        color: #322b81 !important;
    }
    
    #membership-modal #membership-modal-content h3 {
        font-weight: 600;
        font-size: 25px;
    }
    
    .text-overflow {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .inner-pages ul.star_buttlet {
        list-style: none;
        padding-left: 0;
    }
    
    .inner-pages ul.star_buttlet li {
        position: relative;
        padding-left: 25px;
        margin: 0 0 10px 0;
    }
    
    .inner-pages ul.star_buttlet li:before {
        content: "\2605";
        color: #352f87;
        padding-right: 10px;
        margin-right: 10px;
        position: absolute;
        left: 0;
    }
    /* stroke */
    
    nav.nav-menu ul li a {
        position: relative;
    }
    
    nav.nav-menu ul li a:after {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 0%;
        content: '.';
        color: transparent;
        background: #352F87;
        height: 1px;
        top: 20px;
    }
    
    nav.nav-menu ul li a,
    nav.nav-menu ul li a:after,
    nav.nav-menu ul li a:before {
        transition: all .5s;
    }
    
    nav.nav-menu ul li a:hover:after {
        width: 100%;
    }
    
    .star_list ul li a {
        color: #333333 !important;
        cursor: pointer;
    }

    .sub-tle{
        color: #e54170;
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .brk-ln{
        width: 100%;
        border: 0.2px solid #dedcf8;
        margin: 6px 10px;
    }


 .radio input[type="radio"] {
     position: absolute;
     opacity: 0;
}
 .radio input[type="radio"] + .radio-label:before {
     content: '';
     background: #f4f4f4;
     border-radius: 100%;
     display: inline-block;
     width: 1.0em;
     height: 1.0em;
     position: relative;
     left: 9px;
     top: 4px;
     margin-right: 1em;
     vertical-align: top;
     cursor: pointer;
     text-align: center;
     transition: all 250ms ease;
}
 .radio input[type="radio"]:checked + .radio-label:before {
     background-color: #352f87;
     box-shadow: inset 0 0 0 4px #f4f4f4;
}
 .radio input[type="radio"]:focus + .radio-label:before {
     outline: none;
     border-color: #3197ee;
}
 .radio input[type="radio"]:disabled + .radio-label:before {
     box-shadow: inset 0 0 0 4px #f4f4f4;
     border-color: #b4b4b4;
     background: #b4b4b4;
}
 .radio input[type="radio"] + .radio-label:empty:before {
     margin-right: 0;
}



