﻿:root {
    --primary: #00B3D1;
    --secondry: #0090AC;
    --darkblue: #004756;
    --white: #ffffff;
    --gray: #f3f3f3;
    --blue: #004185;
    --yellow: #EED100;
    --green: #85be4c;
    --darkbluesecondry: #2A3C6E;
}

.card-style-1 {
    border-radius: 0;
    border: none;
    background: none;
    overflow: hidden;
}

    .card-style-1 .card-img {
        border-radius: 0;
        border: none;
        transition: all 0.2s ease-in;
    }

    .card-style-1 .img-container {
        overflow: hidden;
        height: auto;
        position: relative;
    }

    .card-style-1 .card-img-overlay {
        display: inline-flex;
        text-decoration: none;
        flex-direction: column;
        justify-content: end;
    }

        .card-style-1 .card-img-overlay .card-title {
            font-size: 12px;
            margin-bottom: 0;
            color: #fff;
            background: var(--yellow);
            padding: 5px 10px;
            position: absolute;
        }



    .card-style-1:hover .card-img {
        transform: scale(1.15);
        transition: all .2s ease-in;
    }

.imgOverlay.active .content {
    background: rgb(0,179,209);
    background: linear-gradient(0deg, rgba(0,179,209,1) 0%, rgba(0,0,0,0.5217437316723564) 80%, rgba(0,0,0,0.3536765047816002) 100%);
}

.multiple-slide {
    position: relative;
    min-height: 200px;
}

    .multiple-slide::before {
        content: "";
        width: 100%;
        left: 0;
        bottom: 0;
        position: absolute;
        top: 0;
        background: rgb(0,179,209);
        background: linear-gradient(0deg, rgba(0,179,209,1) 0%, rgba(0,0,0,0.5217437316723564) 50%, rgba(0,0,0,0.3536765047816002) 100%);
    }

    .multiple-slide .carousel-caption {
        bottom: 10px;
        right: auto;
        text-align: left;
        left: 5%;
        z-index: 1 !important;
    }

#multiple-carousel:hover .learn {
    height: 1px;
}

.multiple-slide:hover .learn {
    width: 120px;
    height: 32px;
    border-radius: 4px;
}


#multiple-carousel:hover .multiple-slide:hover .learn {
    width: 120px;
    height: 32px;
    border-radius: 4px;
}

.nav-tabs .nav-item .nav-link {
    color: var(--primary);
    border-color: #e9ecef #e9ecef #dee2e6;
    border-radius: 0;
    margin-right: 5px;
}

.nav-tabs .nav-link.active {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.card-columns ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .card-columns ul li {
        list-style: none;
        margin: 0;
        padding: 0;
        margin-bottom: 5px;
        position: relative;
        padding-left: 30px;
    }

        .card-columns ul li a {
            color: var(--darkblue) !important;
        }

            .card-columns ul li a:hover {
                color: var(--blue) !important;
                text-decoration: underline !important;
            }

        .card-columns ul li:before {
            content: "\2022";
            color: var(--primary);
            font-weight: bold;
            width: 1em;
            margin-left: -20px;
            font-size: 25px;
            top: -8px;
            position: absolute;
        }

ul.dot {
    list-style: none;
    margin: 0;
    padding: 0;
}

    ul.dot li {
        list-style: none;
        margin: 0;
        padding: 0;
        margin-bottom: 5px;
        position: relative;
        padding-left: 30px;
    }

        ul.dot li:before {
            content: "\2022";
            color: var(--primary);
            font-weight: bold;
            width: 1em;
            margin-left: -20px;
            font-size: 25px;
            top: -8px;
            position: absolute;
        }

.img-rounded {
    vertical-align: top;
    position: relative;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    -webkit-box-shadow: 0px 0px 0px 8px rgb(0 0 0 / 6%);
    box-shadow: 0px 0px 0px 8px rgb(0 0 0 / 6%);
}

.colorprimary {
    color: var(--primary);
}

.colorblue {
    color: var(--blue);
}

.colorwhite {
    color: var(--white);
}

.coloryellow {
    color: var(--yellow) !important;
}

body {
    padding-top: 0px;
    padding-bottom: 0px;
    font-family: 'Roboto', sans-serif;
    /*font-size: 14px;*/
    background: #fff;
}

.topMenu {
    background: var(--gray);
}

.headMenu {
    float: right;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 0px;
}

    .headMenu > li {
        float: left;
        list-style: none;
    }

        .headMenu > li a {
            font-size: 12px;
            color: #3b5998;
            padding: 5px 10px;
            text-decoration: none;
            border-right: 1px solid #ece8e8;
        }

        .headMenu > li:last-child a {
            border-right: none;
        }

    .headMenu img {
        width: 15px;
    }

.roboto {
    font-family: 'Roboto', sans-serif;
}

.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.fs100 {
    font-size: 150px;
}

.display-5 {
    font-size: 25px;
}

.text-primary {
    color: var(--primary) !important;
}

.imgOverlay {
    position: relative;
    display: block;
    color: #fff;
}

    .imgOverlay .content {
        color: #fff;
        background: rgba(0,0,0,0.2);
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 15px;
        transition: background 0.2s ease;
    }

        .imgOverlay .content p {
            margin-bottom: 0;
        }

    .imgOverlay:hover .content {
        background: rgb(0,179,209);
        background: linear-gradient(0deg, rgba(0,179,209,1) 0%, rgba(0,0,0,0.5217437316723564) 50%, rgba(0,0,0,0.3536765047816002) 100%);
    }



.imgOverlayCenter {
    position: relative;
    display: block;
    color: #fff;
}

    .imgOverlayCenter .content {
        color: #fff;
        background: rgba(0,0,0,0.2);
        position: absolute;
        top: 0;
        text-align: center;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 15px;
        transition: background 0.2s ease;
    }

        .imgOverlayCenter .content p {
            margin-bottom: 0;
        }

    .imgOverlayCenter:hover .content {
        background: rgba(0,0,0,0.1);
    }



.imgOverlayheading {
    position: relative;
}

    .imgOverlayheading h4 {
        position: absolute;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 15px;
        background: rgba(0,71,86,0.45);
        color: #fff;
        bottom: 0;
        text-align: center;
        width: 100%;
        padding: 10px;
        margin-bottom: 0;
    }

.minh40 {
    min-height: 40px;
}

.Scientific {
    background: var(--primary);
}

    .Scientific a {
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 16px;
        text-decoration: none;
        background: #fff;
        border: 4px solid transparent;
        transition: border 0.2s ease;
        padding: 20px;
        text-align: center;
        color: var(--primary);
    }

        .Scientific a:hover {
            border: 4px solid var(--yellow);
        }

        .Scientific a span {
            display: block;
            margin-top: 10px;
        }

        .Scientific a img {
            height: 80px;
        }

.sticky {
    position: fixed;
    top: 0;
    background: #fff;
    width: 100%;
    box-shadow: 0px 2px 6px #00000029;
    left: 0;
    z-index: 999;
    right: 0;
}

    .sticky .nav-link {
        color: #333;
    }

header {
    position: relative;
    z-index: 9;
}

.dropdown-menu {
    border-radius: 0rem
}

.rightUl {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

    .rightUl li {
        list-style: none;
        height: 33.33333%;
        display: flex;
        align-items: center;
    }

        .rightUl li:first-child {
            background: rgb(15,139,160);
            background: linear-gradient(61deg, rgba(15,139,160,1) 0%, rgba(23,174,199,1) 61%, rgba(6,180,209,1) 100%);
        }

        .rightUl li:nth-child(2) {
            background: rgb(15,115,135);
            background: linear-gradient(61deg, rgba(15,115,135,1) 0%, rgba(23,146,171,1) 61%, rgba(7,147,174,1) 100%);
        }

        .rightUl li:nth-child(3) {
            background: rgb(23,83,95);
            background: linear-gradient(61deg, rgba(23,83,95,1) 0%, rgba(23,83,96,1) 61%, rgba(7,76,91,1) 100%);
        }


        .rightUl li a {
            padding: 20px;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 20px;
            width: 100%;
            display: block;
            text-decoration: none;
        }

        .rightUl li:nth-child(1) a {
            background: url(../images/appointmentIcon.png) no-repeat 92% center;
            background-size: 50px;
            transition: background-size 0.2s ease;
        }

        .rightUl li:nth-child(2) a {
            background: url(../images/doctorIcon.png) no-repeat 92% center;
            background-size: 50px;
            transition: background-size 0.2s ease;
        }

        .rightUl li:nth-child(3) a {
            background: url(../images/contactIcon.png) no-repeat 92% center;
            background-size: 50px;
            transition: background-size 0.2s ease;
        }

        .rightUl li:nth-child(1) a:hover {
            background: url(../images/appointmentIcon.png) no-repeat 92% center;
            background-size: 70px;
        }

        .rightUl li:nth-child(2) a:hover {
            background: url(../images/doctorIcon.png) no-repeat 92% center;
            background-size: 70px;
        }

        .rightUl li:nth-child(3) a:hover {
            background: url(../images/contactIcon.png) no-repeat 92% center;
            background-size: 70px;
        }

.btn:focus, button {
    box-shadow: none;
    outline: none !important;
}

.quicklinks {
    background: var(--gray);
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
}

    .quicklinks ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .quicklinks ul li {
            list-style: none;
            float: left;
            width: 250px;
            margin-right: 10px;
        }

            .quicklinks ul li a {
                list-style: none;
                padding: 10px 30px 10px 30px;
                display: block;
                text-align: center;
                text-decoration: none;
            }

            .quicklinks ul li:nth-child(1) a {
                color: var(--primary);
                border-bottom: 4px solid var(--primary);
                background-size: 100% 200%;
                background-image: linear-gradient(to bottom, transparent 50%, var(--primary) 50%);
                transition: background-position .2s ease-in-out, color .2s ease-in-out;
            }

            .quicklinks ul li:nth-child(2) a {
                color: var(--secondry);
                border-bottom: 4px solid var(--secondry);
                background-size: 100% 200%;
                background-image: linear-gradient(to bottom, transparent 50%, var(--secondry) 50%);
                transition: background-position .2s ease-in-out, color .2s ease-in-out;
            }

            .quicklinks ul li:nth-child(3) a {
                color: var(--darkblue);
                border-bottom: 4px solid var(--darkblue);
                background-size: 100% 200%;
                background-image: linear-gradient(to bottom, transparent 50%, var(--darkblue) 50%);
                transition: background-position .2s ease-in-out, color .2s ease-in-out;
            }

            .quicklinks ul li a:hover {
                background-position: 0 100%;
                color: var(--white);
            }

ul.patient-guide {
    padding: 0;
    margin: 0;
}

    ul.patient-guide li {
        list-style: none !important;
        padding: 5px 10px 5px 20px !important;
        margin-bottom: 5px !important;
        position: relative;
    }

        ul.patient-guide li::before {
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 10px;
            content: "";
            position: absolute;
            left: 5px;
            top: 10px;
        }

.line {
    width: 60px;
    height: 4px;
}

.bgprimary {
    background: var(--primary) !important;
}

.bgsecondry {
    background: var(--secondry);
}

.bgdarkblue {
    background: var(--darkblue);
}

.bgblue {
    background: var(--blue);
}

.bggreen {
    background: var(--green);
}

.bggray {
    background: var(--gray);
}

.bgyellow {
    background: var(--yellow);
}

.bgwhite {
    background: var(--white);
}

.docs .doc {
    float: left;
    width: 45%;
    margin: 0 5% 40px 0;
    color: #889091;
    transition: background .5s;
    -webkit-transition: background .5s;
    position: relative;
}

    .docs .doc:hover {
        text-decoration: none;
    }

    .docs .doc span {
        display: block;
        border: 1px solid #d2d4d5;
        padding: 30px;
        position: relative;
        min-height: 487px;
        z-index: 1;
    }

    .docs .doc:after {
        content: '';
        z-index: 2;
        position: absolute;
        border-top: 24px solid #fff;
        border-left: 24px solid transparent;
        top: 0;
        right: 0;
    }

    .docs .doc span:after {
        content: '';
        position: absolute;
        z-index: 4;
        border-bottom: 21px solid #fff;
        border-right: 21px solid transparent;
        top: 1px;
        right: 1px;
    }

    .docs .doc span:before {
        content: '';
        position: absolute;
        z-index: 3;
        border-bottom: 24px solid #d2d4d5;
        border-right: 24px solid transparent;
        top: -1px;
        right: -1px;
    }

    .docs .doc strong {
        display: block;
        font-size: 1.39rem;
        color: #000;
        font-weight: normal;
        padding-bottom: 25px;
        position: relative;
    }

    .docs .doc em {
        display: block;
        font-style: normal;
        font-weight: 300;
    }

.bgdarkbluesecondry {
    background: var(--darkbluesecondry);
}
/*.showall{color:var(--primary); text-decoration:none; transition: padding 0.2s ease; padding:5px 30px 5px 0px; display:inline-block; cursor:pointer;  font-size:12px; background:url(../images/rightArrow.png) no-repeat center right; background-size:20px;}
.showall:hover{text-decoration:none; padding:5px 40px 5px 0px;}*/

.showall {
    color: var(--primary);
    text-decoration: none;
    transition: width 0.2s ease;
    padding: 5px 30px 5px 0px;
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
}

    .showall:after {
        position: absolute;
        content: "";
        width: 30px;
        transition: width 0.2s ease;
        height: 18px;
        background: url(../images/rightArrow.png) no-repeat center right;
        background-size: 20px;
    }

    .showall:hover:after {
        position: absolute;
        content: "";
        width: 40px;
        height: 18px;
        background: url(../images/rightArrow.png) no-repeat center right;
        background-size: 20px;
    }

.watch {
    color: var(--primary);
    text-decoration: none;
    border: 1px solid rgba(31,35,32, 0.2);
    border-radius: 4px;
    transition: width 0.2s ease;
    padding: 3px 10px 3px 40px;
    line-height: 25px;
    width: 50px;
    height: 32px;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    background: url(../images/arrowgray.png) no-repeat 15px 5px;
    background-size: 20px;
}

    .watch span {
        display: none;
    }

    .watch:hover span {
        display: block;
    }

    .watch:hover {
        text-decoration: none;
        padding: 3px 10px 3px 40px;
        background: var(--primary) url(../images/arrowwhite.png) no-repeat 15px 5px;
        color: var(--white);
        border: 1px solid var(--primary);
        width: 90px;
    }

.readmore {
    color: var(--primary);
    text-decoration: none;
    border: 1px solid rgba(31,35,32, 0.2);
    border-radius: 4px;
    transition: width 0.2s ease;
    padding: 3px 10px 3px 40px;
    line-height: 25px;
    width: 50px;
    height: 32px;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    background: #fff url(../images/arrowgray.png) no-repeat 15px 5px;
    background-size: 20px;
}

    .readmore span {
        display: none;
    }

    .readmore:hover span {
        display: block;
    }

    .readmore:hover {
        text-decoration: none;
        padding: 3px 10px 3px 40px;
        background: var(--primary) url(../images/arrowwhite.png) no-repeat 15px 5px;
        color: var(--white);
        border: 1px solid var(--primary);
        width: 120px;
    }


.learn {
    color: var(--blue);
    text-decoration: none;
    border: 1px solid rgba(31,35,32, 0.2);
    font-weight: bold;
    transition: height 0.2s ease;
    padding: 2px 40px 2px 10px;
    line-height: 25px;
    width: 120px;
    height: 1px;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    background: var(--yellow) url(../images/arrowblue.png) no-repeat 75px 5px;
    background-size: 20px;
}

.carousel:hover .learn {
    width: 120px;
    height: 32px;
    border-radius: 4px;
}

.learn span {
    display: none;
}

.carousel:hover .learn span {
    display: block;
}

.learn:hover {
    text-decoration: none;
    padding: 3px 40px 3px 10px;
    background: var(--primary) url(../images/arrowwhite.png) no-repeat 75px 5px;
    color: var(--white);
    border: 1px solid var(--primary);
    width: 120px;
}

h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 17px;
}

h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

    h6 a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        color: #212529;
        text-decoration: none;
    }

        h6 a:hover {
            text-decoration: none;
        }

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-17 {
    font-size: 17px;
}

.mission-vision {
    display: grid;
    height: calc(250px + 25vmin);
}

    .mission-vision > * {
        grid-area: 1/-1;
    }

    .mission-vision > img {
        width: 100%;
        height: 100%;
        min-height: 0;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .mission-vision:after {
        content: "";
        background-color: #000;
        opacity: 0.5;
        grid-area: 1/-1;
    }

.mission-vision-color-red:after {
    background-color: #dc0642;
}

.mission-vision-color:after {
    content: none;
}


.mission-vision-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .mission-vision-content > * {
        margin-bottom: 1rem;
    }

    .mission-vision-content h4 {
        color: #fff;
        font-size: 1.5rem;
        font-weight: normal;
        padding: 0 3rem;
    }

    .mission-vision-content:hover .mission-vision > img {
        height: 115%;
    }

.mask-container {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.masked-image {
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    overflow: hidden;
}

    .masked-image img {
        opacity: 0.5;
        background-position: center;
        background-color: #00afd1;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
    }

        .masked-image img:hover {
            transform: scale(1.1);
        }

.mask-content {
    margin: 40px;
    position: relative;
}

.bottom-links {
    position: absolute;
    bottom: 10px;
    left: 40px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

    .list-unstyled li a {
        color: var(--yellow);
        font-size: 18px;
        text-decoration: none;
        transition: all .2s ease-in-out;
    }

        .list-unstyled li a:hover {
            padding-left: 20px;
        }

.w20 {
    width: 20px !important;
    display: inline-block !important;
}

.dateIcon {
    color: rgba(42,60,110,0.7);
    text-decoration: none;
    border-radius: 4px;
    transition: width 0.2s ease;
    padding: 0px 10px 0px 25px;
    line-height: 32px;
    height: 32px;
    display: inline-block;
    cursor: pointer;
    font-size: 11px;
    background: url(../images/dateIcon.png) no-repeat 0px 8px;
    background-size: 16px;
}

.dateIconw {
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: width 0.2s ease;
    padding: 0px 10px 0px 25px;
    line-height: 32px;
    height: 32px;
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    background: url(../images/dateIconw.png) no-repeat 0px 5px;
    background-size: 20px;
}

.AccreditationsUl {
    margin: 0;
    padding: 0;
}

    .AccreditationsUl li {
        float: left;
        list-style: none;
        margin-right: 1%;
        width: 33%;
    }

figure.effect-layla ::before, figure.effect-layla ::after {
    position: absolute;
    content: '';
    opacity: 0;
}

figure.effect-layla ::before {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

figure.effect-layla ::after {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border-right: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

figure.effect-layla figcaption::before, figure.effect-layla figcaption::after, figure.effect-layla p, figure.effect-layla h3, figure.effect-layla .link {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.5s;
    transition: opacity 0.35s, transform 0.5s;
}

figure.effect-layla img {
    transition: all 0.5s ease-in 0s;
}

figure.effect-layla:hover img {
    opacity: 1;
    /*transform: scale(1.15);*/
}

figure.effect-layla:hover figcaption::before, figure.effect-layla:hover figcaption::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

figure.effect-layla .main-title {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}

.gri {
    width: 100%;
}

    .gri figure {
        position: relative;
        overflow: hidden;
        background: #474747;
        text-align: center;
        cursor: pointer;
    }

    .gri img {
        position: relative;
        display: block;
        opacity: 1;
        width: 100%;
    }

.threesec .gri img {
    min-height: 495px;
    object-fit: cover;
}

.gri figure figcaption {
    color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

    .gri figure figcaption::before, .gri figure figcaption::after {
        pointer-events: none;
    }

.gri figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 5px;
    text-align: left;
}

.textover {
    background: rgba(0,65,133, 0.4);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    height: 100%;
    position: absolute;
    padding: 20px;
    top: 0;
    text-align: left;
    display: flex;
    justify-content: left;
    align-items: flex-end;
    width: 100%;
}

figure.effect-layla:hover .textover {
    display: flex;
    transition: all 0.5s ease-in 0s;
    background: rgba(0,0,0, 0.0);
    display: flex;
    transition: all 0.5s ease-in 0s;
    color: #fff;
}



.row.equal-cols {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .row.equal-cols:before,
    .row.equal-cols:after {
        display: block;
    }

    .row.equal-cols > [class*='col-'] {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .row.equal-cols > [class*='col-'] > * {
            -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
        }

.halfgray {
    background-image: linear-gradient(to right, transparent 50%, var(--gray) 50%);
}

.halfgrayblue {
    background-image: linear-gradient(to right, var(--gray) 66.666667%, var(--darkbluesecondry) 33.333333%);
}

.fs14 {
    font-size: 14px;
}


.copy img {
    width: 200px;
    margin: 20px 0;
}

.carousel-indicators {
    position: absolute;
    right: 120px;
    bottom: 5px;
    left: inherit;
    z-index: 01;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 0;
    width: 120px;
    margin-left: 0;
    list-style: none;
    margin-bottom: 0rem;
}

    .carousel-indicators li {
        height: 20px;
        padding: 5px 10px;
        text-indent: 0;
        font-size: 12px;
        background: none;
        display: none;
    }

        .carousel-indicators li.active {
            display: block
        }

        .carousel-indicators li img {
            float: left;
            margin-right: 10px;
            height: 60px;
        }

        .carousel-indicators li.active h4 {
            text-transform: uppercase;
            font-size: 16px;
            color: #D7182A;
        }

        .carousel-indicators li span {
            display: block;
            color: #fff;
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
        }




.carousel-control-next, .carousel-control-prev {
    position: absolute;
    z-index: 1;
    background: var(--blue);
    top: inherit;
    width: 30px;
    height: 80px;
    bottom: calc(50% - 40px);
    display: none;
}

.carousel:hover .carousel-control-prev, .carousel:hover .carousel-control-next {
    display: flex;
}

.carousel-control-next {
    right: 0px !important;
    left: unset !important;
}

.carousel-control-prev {
    left: 0px !important;
    right: unset !important;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    background-image: none;
}

.navbar {
    padding: 0rem 1rem;
}


#divHomePageCarousal .carousel-inner .carousel-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(42,60,110);
    background: linear-gradient(180deg, rgba(42,60,110,0) 0%, rgba(0,65,133,1) 100%);
    z-index: 1;
}

#divHomePageCarousal .carousel-inner .carousel-item button {
    background: #FBB040;
    border-radius: 33px;
    opacity: 0.81;
    padding: 10px 30px;
    color: #fff;
    border: none;
}

.carousel-caption {
    bottom: 10px;
    right: 35%;
    text-align: left;
    left: 5%;
    z-index: 1 !important;
}

.box-container a:hover, .box-container .btn:hover {
    opacity: 1;
}

.carousel-caption h5 {
    color: #fff;
    text-shadow: 0px 3px 6px #00000029;
    font-size: 13px;
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
}

.carousel-caption h5, .carousel-caption p, .carousel-caption a {
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}



@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.carousel-caption p {
    color: #fff;
    text-shadow: 0px 3px 6px #00000029;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}


.dropme {
    margin: 0;
    padding: 0;
}

    .dropme li {
        list-style: none;
        width: 40%;
        float: left;
        margin-left: 1%;
        margin-bottom: 5px;
        margin-right: 1%;
    }

        .dropme li a {
            color: var(--darkblue);
            display: block;
            font-size: 13px;
            padding: 10px 0px;
            border-bottom: 1px solid #f0eeee;
        }

            .dropme li a:hover {
                color: var(--primary);
                display: block;
                font-size: 13px;
                padding: 10px 0px;
                border-bottom: 1px solid var(--primary);
                text-decoration: none;
            }

.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown > .dropdown-toggle:active {
    pointer-events: none;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    top: 29px;
    min-width: 670px !important;
    left: -220px;
    z-index: 99;
}

.dropdown-menu-right {
    right: 0;
    left: auto !important;
}

.navbar-nav .dropdown:hover .nav-link {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.15) !important;
}

.navbar-expand-md .navbar-collapse {
    flex-direction: row-reverse !important;
}

.navbar-avatar {
    padding-top: 5px !important;
    padding-right: 0.7rem !important;
}

.navbar-expand-md .navbar-nav .nav-link {
    position: relative;
    z-index: 999;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 1rem;
    padding-right: 1rem;
    color: var(--blue);
    margin-left: 0rem;
    margin-right: 0.3rem;
    font-size: 14px;
}

.navbar-expand-md .navbar-nav .dropdown .nav-link {
    position: relative;
    z-index: 999;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1px solid transparent;
    padding-left: 1rem;
    padding-right: 1rem;
    color: var(--blue);
    margin-left: 0rem;
    margin-right: 0.3rem;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 0px solid !important;
}

.navbar-expand-md .navbar-nav .active .nav-link {
    padding-top: 5px;
    padding-bottom: 5px;
    color: #fff;
    background: var(--primary);
}

    .navbar-expand-md .navbar-nav .active .nav-link:hover {
        background: var(--primary);
    }

.navbar-expand-md .navbar-nav .dropdown .nav-link:hover {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.15);
}

.connected {
    overflow: hidden;
    background: #00A79D;
}


.navbar {
    height: 65px;
}

.w-10 {
    width: 10%;
}

.snip1559 {
    position: relative;
    display: inline-block;
    overflow: hidden;
    min-height: 320px;
    margin-left: 1.5%;
    margin-right: 1.5%;
    max-width: 100%;
    width: 97%;
    background-color: #ffffff;
    color: #2B2B2B;
    text-decoration: none !important;
    text-align: center;
    font-size: 16px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
    border: 1px solid rgba(0,0,0,.125);
}

    .snip1559 .profile-image {
        padding: 15% 10% 0;
    }

        .snip1559 .profile-image img {
            vertical-align: top;
            position: relative;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            -webkit-transition: -webkit-box-shadow 0.3s ease;
            transition: box-shadow 0.3s ease;
            -webkit-box-shadow: 0px 0px 0px 8px rgb(0 0 0 / 6%);
            box-shadow: 0px 0px 0px 8px rgb(0 0 0 / 6%);
        }

.people-details .profile-image img {
    width: 220px;
    height: 220px;
}

#meetcolleagues .owl-item img {
    display: inline-block;
}

.snip1559:hover .profile-image > img {
    -webkit-box-shadow: 0px 0px 0px 10px #1273ab;
    box-shadow: 0px 0px 0px 10px var(--primary);
}

.snip1559 figcaption {
    padding: 5% 10% 15%;
}

.snip1559 h3 {
    font-size: 16px !important;
    font-weight: 400;
    line-height: 24px;
    margin: 3px 0 !important;
    color: #2B2B2B !important;
}

.snip1559 h5 {
    font-weight: 400;
    margin: 0;
    font-size: 15px;
    color: #888;
}

.news-item-box {
    position: relative;
    display: inline-block;
    overflow: hidden;
    min-height: 320px;
    cursor: pointer;
    max-width: 100%;
    width: 100%;
    background-color: #ffffff;
    color: #2B2B2B;
    font-size: 16px;
    border: 1px solid rgba(0,0,0,.125);
}


    .news-item-box .profile-image {
        padding: 0;
    }


        .news-item-box .profile-image img {
            vertical-align: top;
            position: relative;
            width: 100%;
            -webkit-transition: -webkit-box-shadow 0.3s ease;
            transition: box-shadow 0.3s ease;
        }

    .news-item-box .profile-image {
        position: relative;
        transition: all 0.5s ease-in 0s;
        display: block;
    }

        .news-item-box .profile-image:before {
            content: "";
            position: absolute;
            background: rgba(0,65,133, 0.2);
            left: 0;
            right: 0;
            top: 0;
            z-index: 9;
            bottom: 0;
        }

    .news-item-box:hover .profile-image:before {
        transition: all 0.5s ease-in 0s;
        background: rgba(0,0,0, 0.0);
    }

    .news-item-box:hover .profile-image > img {
    }

.arrowbig {
    position: relative;
    display: block;
    cursor: pointer;
}

    .arrowbig:before {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        padding: 10px;
        content: "";
        position: absolute;
        left: 0px;
        top: 11px;
        transform: rotate( -45deg );
        border: solid var(--white);
        border-width: 0 3px 3px 0px;
    }

.news-item-box figcaption {
    padding: 5%;
    min-height: 220px;
}


.news-item-box h3 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin: 3px 0;
}


.news-item-box p {
    margin: 0;
    font-size: 15px;
}

.stickyleft {
    position: sticky;
    top: 120px;
}

ul.acc {
    margin: 0;
    padding: 0;
}

    ul.acc li {
        list-style: none;
        display: block;
        float: left;
        width: 32.3%;
        margin-left: 0.5%;
        margin-right: 0.5%;
        margin-bottom: 1%;
        padding-left: 0px !important;
    }

        ul.acc li:before {
            display: none !important;
        }

.useful_Links a {
    text-decoration: none;
}

    .useful_Links a:hover .logo-title {
        background: var(--blue);
    }

.logo-title {
    background: var(--primary);
    text-align: center;
    color: #fff;
    margin-top: 2px;
    border-radius: 4px;
    padding: 10px 10px;
    margin-bottom: 30px;
    text-decoration: none;
}

ul.acc li a {
    display: block;
    width: 100%;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 10px;
    background: #fff;
    position: relative;
    text-align: center;
    padding: 15px;
    border: 1px solid #ccc;
    min-height: 360px;
}

    ul.acc li a:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        z-index: 99;
    }

ul.acc li img {
    max-width: 200px;
    max-height: 250px;
    margin-bottom: 20px;
}

ul.acc li span {
    display: block;
    font-size: 16px;
    overflow: hidden;
    color: #222;
    position: absolute;
    width: 100%;
    padding: 15px;
    left: 0;
    top: 260px;
}

.partnerships .card {
    margin-bottom: 20px;
}

.pi-btn-cyan {
    margin-top: 20px;
    background: var(--blue);
    color: #fff;
    border-radius: 50px;
}

.accordionbig .card-header {
    background: #e5e5e5;
    color: var(--blue);
    text-decoration: none;
}

    .accordionbig .card-header a h3 {
        font-size: 18px;
        margin-top: 10px;
        font-weight: normal;
    }

.accordionbig .card-block {
    border: 1px solid #ccc;
    padding: 20px;
}

.accordionbig [aria-expanded="true"] {
    background: var(--blue);
    color: #fff;
}

.accordionbig .card-body {
    border: 1px solid var(--darkbluesecondry) !important;
}

.accordionbig .card h4.collapsed {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    margin-bottom: 0;
    color: var(--blue);
}

.accordionbig .card {
    margin-bottom: 5px;
}

.social-menu {
    float: right;
}

    .social-menu ul {
        padding: 0;
        margin: 0;
        display: flex;
    }

        .social-menu ul li {
            list-style: none;
            margin: 0 2px;
        }

            .social-menu ul li .fab {
                font-size: 17px;
                line-height: 27px;
                transition: .5s;
            }
            

    .social-menu h6 {
        margin-top: 5px;
    }

    .social-menu ul li a {
        position: relative;
        display: block;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: white;
        text-align: center;
        transition: 0.2s;
        transform: translate(0,0px);
    }

        .social-menu ul li a:hover svg {
            fill: #fff !important;
        }


    .social-menu ul li:nth-child(1) a .fab {
        color: var(--darkblue);
    }

    .social-menu ul li:nth-child(2) a .fab {
        color: var(--darkblue);
    }

    .social-menu ul li:nth-child(3) a .fab {
        color: var(--darkblue);
    }

    .social-menu ul li:nth-child(4) a .fab {
        color: var(--darkblue);
    }

    .social-menu ul li:nth-child(1) a:hover .fab {
        color: #fff;
    }

    .social-menu ul li:nth-child(2) a:hover .fab {
        color: #fff;
    }

    .social-menu ul li:nth-child(3) a:hover .fab {
        color: #fff;
    }

    .social-menu ul li:nth-child(4) a:hover .fab {
        color: #fff;
    }

    .social-menu ul li:nth-child(1) a {
        border: 2px solid var(--darkblue);
    }

    .social-menu ul li:nth-child(2) a {
        border: 2px solid var(--darkblue);
    }

    .social-menu ul li:nth-child(3) a {
        border: 2px solid var(--darkblue);
    }

    .social-menu ul li:nth-child(4) a {
        border: 2px solid var(--darkblue);
    }

    .social-menu ul li:nth-child(1) a:hover {
        background: var(--darkblue);
    }

    .social-menu ul li:nth-child(2) a:hover {
        background: var(--darkblue);
    }

    .social-menu ul li:nth-child(3) a:hover {
        background: var(--darkblue);
    }

    .social-menu ul li:nth-child(4) a:hover {
        background: var(--darkblue);
    }

ul.leftmenu {
    padding: 0;
    position: sticky;
    top: 120px;
    margin: 0;
    list-style: none;
}

    ul.leftmenu li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        ul.leftmenu li a {
            position: relative;
            text-decoration: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 400;
            display: block;
            padding: 12px 35px 12px 20px;
            background: var(--white);
            color: var(--blue);
            border-bottom: 1px solid #efefef;
        }
            /*  ul.leftmenu li a:before {
            display: inline-block;
            margin-left: .255em;
            vertical-align: .255em;
            padding: 4px;
            content: "";
            position: absolute;
            right: 13px;
            top: 18px;
            width:10px; height:10px; border-radius:10px; background:var(--primary);
             
        }
        ul.leftmenu li a.active:before {
            display: inline-block;
            margin-left: .255em;
            vertical-align: .255em;
            padding: 4px;
            content: "";
            position: absolute;
            left: 9px;
            top: 18px;
            width: 10px;
            height: 10px;
            border-radius: 10px;
            background: var(--white);
        }*/
            ul.leftmenu li a.active {
                cursor: pointer;
                font-size: 16px;
                font-weight: 400;
                display: block;
                padding: 12px 35px 12px 20px;
                background: var(--blue);
                color: var(--white);
                border-bottom: 1px solid #efefef;
            }

.research-pub .card-body {
    min-height: 270px;
}

.accordion .card {
    border: none;
    border-radius: 0;
}

.accordion .card-head a {
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    display: block;
    padding: 12px 35px 12px 20px;
    background: var(--white);
    text-decoration: none;
    color: var(--blue);
    border-bottom: 1px solid #efefef;
}


    .accordion .card-head a.active {
        cursor: pointer;
        font-size: 16px;
        font-weight: 400;
        display: block;
        padding: 12px 35px 12px 20px;
        background: var(--blue);
        text-decoration: none;
        color: var(--white);
        border-bottom: 1px solid #efefef;
    }

.accordion .card h4.collapsed:hover {
    background-color: var(--gray);
    color: var(--darkblue);
}



.accordionbig .card-body {
    border: 1px solid #cecece !important;
}


.accordion .card h4 {
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    display: block;
    padding: 12px 35px 12px 20px;
    background: var(--blue);
    color: var(--white);
    border-bottom: 1px solid #efefef;
}

    .accordion .card h4:before {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        padding: 4px;
        content: "";
        position: absolute;
        right: 13px;
        top: 13px;
        transform: rotate( 45deg );
        border: solid var(--white);
        border-width: 0 2px 2px 0px;
    }

    .accordion .card h4.collapsed {
        background: var(--white);
        color: var(--blue);
    }

        .accordion .card h4.collapsed:before {
            display: inline-block;
            margin-left: .255em;
            vertical-align: .255em;
            padding: 4px;
            content: "";
            position: absolute;
            right: 13px;
            top: 16px;
            transform: rotate( -45deg );
            border: solid var(--primary);
            border-width: 0 2px 2px 0px;
        }

.accordion .card-body {
    background: var(--gray);
    padding: 0.8rem;
    border: none;
    border-bottom: 1px solid var(--darkbluesecondry);
}

.accordion ul {
   /* margin: 0;
    padding: 0;*/
}

    .accordion ul li {
       /* list-style: none;*/
        margin: 0;
        padding: 0;
    }

        .accordion ul li a {
            display: block;
            text-decoration: none;
            color: var(--blue);
            padding: 5px 22px;
        }

            .accordion ul li a.active, .accordion ul li a:hover {
                color: var(--primary);
            }

.accordion .child a[data-toggle="collapse"] {
    position: relative;
}

.accordion .child .childDiv {
    background: #eaeaea;
}

.accordion .child a[aria-expanded="true"]:before {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    padding: 3px;
    content: "";
    position: absolute;
    right: 9px;
    top: 12px;
    transform: rotate( 45deg );
    border: solid var(--blue);
    border-width: 0 1px 1px 0px;
}

.accordion .child a.collapsed:before {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    padding: 3px;
    content: "";
    position: absolute;
    right: 9px;
    top: 12px;
    transform: rotate( -45deg) !important;
    border: solid var(--blue);
    border-width: 0 1px 1px 0px;
}

.accordion .childDiv ul li a {
    font-size: 13px;
}


.color-black {
    color: #000;
}

    .color-black img {
        width: 16px;
    }

.titleBg {
    background: var(--darkblue) url(/images/headerbg.jpg) no-repeat;
    padding: 15px 0px;
    background-position: right;
    background-size: contain;
}

    .titleBg h3 {
        color: var(--white);
    }

.breadcrumb {
    padding: .75rem 0rem;
    font-size: 14px;
    background-color: transparent;
    margin-bottom: 0rem;
}



.breadcrumb-item a {
    text-decoration: none;
    color: var(--white);
}

.breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-item a, .breadcrumb-item.active {
    text-transform: capitalize;
}

    .breadcrumb-item a:hover {
        /* text-decoration: underline;*/
        color: #d8dbde;
    }

.navbar-brand {
    float: left;
    width: 230px;
}

    .navbar-brand img {
        width: 100%;
    }

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    padding: 3px;
    content: "";
    transform: rotate( 45deg );
    border: solid #3B5998;
    border-width: 0 2px 2px 0px;
}

.active .dropdown-toggle::after {
    border: solid #ffffff;
    border-width: 0 2px 2px 0px;
}

.navbar-expand-md .navbar-nav .active.dropdown .nav-link:hover {
    background: var(--primary);
    /*border: 1px solid transparent !important;*/
}

.bi {
    width: 2rem;
    fill: #3b3b3c;
}

.owl-nav {
    position: absolute;
    right: 0;
    top: -40px;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    padding: 4px 10px;
    background: var(--primary);
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
}

.owl-theme .owl-nav .disabled {
    opacity: .4;
    cursor: default;
    background: var(--darkblue) !important;
}

.instagram-media {
    min-width: 100% !important;
}

footer {
    padding-top: 60px;
}

    footer ul {
        margin: 0 auto;
        list-style: none;
        display: inline-block;
        margin-top: 30px;
    }

        footer ul li {
            margin-left: 10px;
            margin-right: 10px;
            color: #fff;
            /*float: left;*/
            list-style: none;
        }

            footer ul li a {
                color: #fff;
                font-size: 12px;
                text-decoration: none;
            }

                footer ul li a:hover {
                    color: var(--primary);
                    text-decoration: none;
                }

.copy {
    color: rgba(255,255,255, 0.5);
}

.Followus a {
    width: 40px;
    float: left;
    margin-right: 10px;
}

    .Followus a img {
        width: 100%;
    }


.mask-container {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.masked-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    overflow: hidden;
}

    .masked-image img {
        opacity: 0.5;
        background-position: center;
        background-color: #00afd1;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
    }

.img-container {
    height: 400px;
    position: relative;
    display: block;
    overflow: hidden;
    background: #000;
}

.text-on-img {
    position: absolute;
    top: 20%;
    width: 100%;
}

.margin-top-45 {
    margin-top: 45px;
}

.statement {
    font-size: 1.2em;
    text-align: left;
}


.color-white {
    color: #fff;
}

.bgcolor-aspire {
    background-color: #7b035a;
}

.packs-count {
    float: left;
    font-size: 20px;
    color: #fff;
}

.video-cam {
    background: url(../images/video-icon.png) no-repeat left 1px;
    width: 36px;
    height: 27px;
    float: right;
    margin-left: 4px;
}

.pics {
    background: url(../images/camera-icon.png) no-repeat left 1px;
    width: 36px;
    height: 27px;
    float: right;
    margin-left: 4px;
}

.docs-icon {
    background: url(../images/doc-icon.png) no-repeat left 2px;
    width: 36px;
    height: 28px;
    float: right;
}

.testimonials .news-item-box figcaption {
    padding: 5%;
    min-height: auto;
}

.journal .news-item-box figcaption {
    padding: 5%;
    min-height: 325px;
}

.research .card-body {
    min-height: 130px;
}

.news-item-box h3 {
    text-transform: initial;
    font-size: 22px;
}


/*Accordion Menu*/


#accordian-menu ul {
    padding: 0;
}


#accordian-menu a {
}


#accordian-menu i {
    margin-right: 10px;
}

#accordian-menu li {
    list-style-type: none;
}

#accordian-menu ul li a {
    transition: all 0.15s;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    display: block;
    padding: 12px 35px 12px 20px;
    background: var(--white);
    color: var(--blue);
    border-bottom: 1px solid #efefef;
}

#accordian-menu > ul.show-dropdown > li.active > a {
    background: var(--blue);
    color: var(--white);
}

#accordian-menu > ul > li > ul,
#accordian-menu > ul > li > ul > li > ul,
#accordian-menu > ul > li > ul > li > ul > li > ul,
#accordian-menu > ul > li > ul > li > ul > li > ul > li > ul {
    display: none;
}


    #accordian-menu > ul > li.active > ul.show-dropdown,
    #accordian-menu > ul > li > ul > li.active > ul.show-dropdown,
    #accordian-menu > ul > li > ul > li > ul > li.active > ul.show-dropdown,
    #accordian-menu > ul > li > ul > li > ul > li > ul > li.active > ul.show-dropdown {
        display: block;
    }

#accordian-menu > ul > li > ul {
    background: var(--gray);
    padding: 0.8rem;
    border: none;
    border-bottom: 1px solid var(--darkbluesecondry);
}

    #accordian-menu > ul > li > ul > li > ul > li > ul {
        padding: 10px;
        background: #eaeaea;
    }

    #accordian-menu > ul > li > ul > li > a {
        display: block;
        text-decoration: none;
        color: var(--blue);
        padding: 8px 22px;
        background: none;
        font-size: 15px;
        /* border: none;*/
    }

    #accordian-menu > ul > li > ul > li > ul > li > a {
        display: block;
        text-decoration: none;
        color: var(--blue);
        padding: 5px 22px;
        background: #eaeaea;
        font-size: 14px;
        border: none;
    }

    #accordian-menu > ul > li > ul > li > ul > li > ul > li > a {
        display: block;
        text-decoration: none;
        color: var(--blue);
        padding: 5px 22px;
        background: #fff;
        font-size: 14px;
        border: none;
    }

        #accordian-menu > ul > li > ul > li.active > a, #accordian-menu > ul > li > ul > li > a:hover,
        #accordian-menu > ul > li > ul > li > ul > li.active > a, #accordian-menu > ul > li > ul > li > ul > li > a:hover,
        #accordian-menu > ul > li > ul > li > ul > li > ul > li.active > a, #accordian-menu > ul > li > ul > li > ul > li > ul > li > a:hover {
            color: var(--primary);
            text-decoration: underline;
        }


#accordian-menu a:not(:only-child):after {
    transition: 0.5s;
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    padding: 4px;
    content: "";
    position: absolute;
    right: 13px;
    top: 18px;
    transform: rotate( -45deg );
    border: solid var(--primary);
    border-width: 0 2px 2px 0px;
}

#accordian-menu .active > a:not(:only-child):after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    padding: 4px;
    content: "";
    position: absolute;
    right: 13px;
    top: 15px;
    transform: rotate( 45deg );
    border: solid var(--white);
    border-width: 0 2px 2px 0px;
}


#accordian-menu > ul > li > ul > li > a:not(:only-child):after, #accordian-menu > ul > li > ul > li > ul > li > a:not(:only-child):after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    padding: 3px;
    content: "";
    position: absolute;
    right: 9px;
    top: 12px;
    transform: rotate( -45deg);
    border: solid var(--blue);
    border-width: 0 1px 1px 0px;
}

#accordian-menu > ul > li > ul > li.active > a:not(:only-child):after, #accordian-menu > ul > li > ul > li > ul > li.active > a:not(:only-child):after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    padding: 3px;
    content: "";
    position: absolute;
    right: 9px;
    top: 12px;
    transform: rotate( 45deg );
    border: solid var(--blue);
    border-width: 0 1px 1px 0px;
}

.imghover-effect {
    position: relative;
    transition: all 0.5s ease-in 0s;
    display: block;
}

    .imghover-effect:before {
        content: "";
        position: absolute;
        background: rgba(0,65,133, 0.2);
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .imghover-effect:hover:before {
        transition: all 0.5s ease-in 0s;
        background: rgba(0,0,0, 0.0);
    }

.hamburger {
    position: absolute;
    top: 16px;
    right: 5px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    z-index: 9;
}

    .hamburger:hover {
        opacity: 0.7;
    }

    .hamburger.is-active:hover {
        opacity: 0.7;
    }

    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::before,
    .hamburger.is-active .hamburger-inner::after {
        background-color: #3b3b3c;
    }

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 28px;
        height: 2.5px;
        background-color: #3b3b3c;
        border-radius: 2px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

        .hamburger-inner::before,
        .hamburger-inner::after {
            content: "";
            display: block;
        }

        .hamburger-inner::before {
            top: -10px;
        }

        .hamburger-inner::after {
            bottom: -10px;
        }

.hamburger--slider .hamburger-inner {
    top: 2px;
}

    .hamburger--slider .hamburger-inner::before {
        top: 10px;
        transition-property: transform, opacity;
        transition-timing-function: ease;
        transition-duration: 0.15s;
    }

    .hamburger--slider .hamburger-inner::after {
        top: 20px;
    }

.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

    .hamburger--slider.is-active .hamburger-inner::before {
        transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
        opacity: 0;
    }

    .hamburger--slider.is-active .hamburger-inner::after {
        transform: translate3d(0, -20px, 0) rotate(-90deg);
    }

.pb-6 {
    padding-bottom: 4rem !important;
}

.pt-6 {
    padding-top: 4rem !important;
}

.p-clinical {
    padding: 9.5px;
}

#experts .mt-2 {
    margin-top: .39rem !important;
}

#searchform {
    width: 100%;
    height: 76px;
    z-index: 999;
    background: var(--darkblue);
    padding: 15px;
}

    #searchform input[type="search"] {
        width: 90%;
        height: 46px;
        padding: 5px 30px;
        float: left;
        border: none;
        box-shadow: none;
        background: #fafafa;
    }

        #searchform input[type="search"]:focus {
            border: none;
            box-shadow: none;
            outline: none;
        }

    #searchform input[type="submit"] {
        width: 10%;
        float: left;
        border: none;
        background: var(--primary);
        color: #fff;
        height: 46px;
    }

.searchMobile {
    right: 70px;
    position: absolute;
    display: none;
}

.logocon {
    margin: 0;
    padding: 0;
    display: block;
}

    .logocon li {
        float: left;
        margin-left: 0.5%;
        margin-right: 0.5%;
        list-style: none;
        border-right: 0px solid #ccc;
        /* display: flex;
            align-items: center;
            justify-content: left;*/
        max-height: 120px;
        min-height: 120px;
        padding: 25px;
        line-height: 60px;
    }

        .logocon li a {
            display: block !important;
            /*width:100%;*/
        }

        .logocon li img {
            width: 100%;
            max-height: 120px;
        }

.login-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.logocon li:nth-child(1) {
    width: 10%;
    padding-left: 0;
}

.logocon li:nth-child(2) {
    width: 12%;
}

.logocon li:nth-child(3) {
    width: auto;
}

.logocon li:nth-child(4) {
    width: 10%;
}

.logocon li:nth-child(5) {
    width: 16%;
}

.logocon li:nth-child(6) {
    width: 22%;
}



blockquote {
    margin: 50px auto;
    font-style: italic;
    color: #555555;
    padding: 1.2em 30px 1.2em 75px;
    border-left: 8px solid var(--blue);
    line-height: 1.6;
    position: relative;
    background: #EDEDED;
}



    blockquote::before {
        font-family: Arial;
        content: "\201C";
        color: var(--blue);
        font-size: 4em;
        position: absolute;
        left: 10px;
        top: -10px;
    }



    blockquote::after {
        content: '';
    }



    blockquote span {
        display: block;
        color: #333333;
        font-style: normal;
        font-weight: bold;
        margin-top: 1em;
    }

.titleHeader:empty + .line {
    display: none;
}

.banner .controlblock {
    margin-bottom: 0 !important;
}

/*-----------------*/

.snip-ppl {
    position: relative;
    display: inline-block;
    overflow: hidden;
    min-height: 320px;
    margin-left: 1.5%;
    margin-right: 1.5%;
    max-width: 100%;
    width: 97%;
    background-color: #ffffff;
    color: #2B2B2B;
    text-decoration: none !important;
    text-align: center;
    font-size: 16px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
    border: 1px solid rgba(0,0,0,.125);
}

    .snip-ppl .profile-image {
        padding: 0;
    }

        .snip-ppl .profile-image img {
            vertical-align: top;
            position: relative;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            -webkit-transition: -webkit-box-shadow 0.3s ease;
            transition: box-shadow 0.3s ease;
            -webkit-box-shadow: 0px 0px 0px 10px rgb(0 0 0 / 6%);
            box-shadow: 0px 0px 0px 10px rgb(0 0 0 / 6%);
        }

    .snip-ppl.people-details .profile-image img {
        width: 60%;
        height: 60%;
    }

#meetcolleagues .owl-item img {
    display: inline-block;
}


.snip-ppl figcaption {
    padding: 5% 10% 15%;
}

.snip-ppl h3 {
    font-size: 18px !important;
    font-weight: 400;
    line-height: 24px;
    margin: 3px 0 !important;
    color: var(--secondry) !important;
}

.snip-ppl h5 {
    font-weight: 400;
    margin: 0;
    font-size: 15px;
    color: #888;
}

.snip-ppl .rightUl li:nth-child(1) a:hover {
    background-size: 60px;
}

/*.snip-ppl:hover .profile-image > img {
    -webkit-box-shadow: 0px 0px 0px 10px #1273ab;
    box-shadow: 0px 0px 0px 10px var(--primary);
}*/


@media(min-width: 1920px) {
    .cl-images .imghover-effect img {
        min-height: 108px;
    }
}


@media(max-width: 1200px) {
    .searchMobile {
        display: block;
    }

    #searchform input[type="search"] {
        width: 80%;
    }

    #searchform input[type="submit"] {
        width: 20%;
    }

    .hide-mobile {
        display: none;
    }

    .navbar-expand-md .navbar-nav .dropdown .nav-link {
        border-top: 1px solid transparent !important;
        border-left: 1px solid transparent !important;
        border-right: 1px solid transparent !important;
    }

    .navbar-expand-md .navbar-nav .dropdown.show .nav-link {
        border-top: 1px solid rgba(0,0,0,.15) !important;
        border-left: 1px solid rgba(0,0,0,.15) !important;
        border-right: 1px solid rgba(0,0,0,.15) !important;
    }

    .navbar-expand-md .navbar-nav .dropdown.show .dropdown-toggle::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        padding: 3px;
        content: "";
        transform: rotate( -135deg );
    }

    .navbar-nav .dropdown .dropdown-menu {
        display: none !important;
    }

    .navbar-nav .dropdown.show .dropdown-menu {
        display: block !important;
    }

    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: inherit;
    }

    .navbar-nav .dropdown > .dropdown-toggle:active {
        pointer-events: unset;
    }

    .rightUl li:nth-child(1) a, .rightUl li:nth-child(2) a, .rightUl li:nth-child(3) a {
        background-size: 39px;
    }

        .rightUl li:nth-child(1) a:hover, .rightUl li:nth-child(2) a:hover, .rightUl li:nth-child(3) a:hover {
            background-size: 50px;
        }

    .halfgrayblue {
        background-image: linear-gradient(to right, var(--gray) 66%, #2A3C6E 32%);
    }

    .rightUl li a {
        padding: 20px;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
    }

    .navbar-nav .dropdown-menu {
        position: absolute;
        top: -3px;
        min-width: 100% !important;
        left: 0px;
        z-index: 99;
    }

    .navbar-expand-md .navbar-nav .dropdown .nav-link {
        margin-right: 0rem
    }

    #divHomePageCarousal .carousel-inner .carousel-item, #divHomePageCarousal .carousel-inner .carousel-item img {
        height: auto;
    }

    .navbar-expand-md .navbar-nav .active .nav-link:before, .navbar-expand-md .navbar-nav .nav-link:hover:before {
        right: calc(50% - 20px);
    }



    .navbar-collapse {
        align-items: center;
        left: 0px;
        top: 53px;
        right: 0px;
        position: absolute;
        box-shadow: -1px 1px 3px #ccc;
        width: auto;
        background: #fff;
        padding: 20px;
        border: 1px solid #e6e6e6;
        z-index: 9;
    }

    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none;
    }

    .navbar-toggler {
        color: #0d4587;
        font-size: 24px;
    }

    header {
        text-align: center;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e6e6e6;
        padding-left: 0rem;
        padding-right: 0rem;
        color: #5c75a9;
        margin-left: 0rem;
        margin-right: 0rem;
    }

    .navbar-expand-md .navbar-nav li:last-child .nav-link {
        border-bottom: 0px solid #e6e6e6;
    }

    .navbar-nav.ml-auto .nav-link {
        border-bottom: 0px solid #ccc;
    }

    .navbar-brand.mt-1 {
        margin-top: -10px !important;
    }

    .navbar-brand {
        width: 145px;
    }

    .navbar-expand-md .navbar-toggler {
        display: flex !important;
    }



    .navbar-expand-md .navbar-collapse {
        display: flow-root !important;
    }

    .collapse:not(.show) {
        display: none !important;
    }

    .navbar-expand-md {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .navbar-collapse {
        align-items: center;
        left: 0px;
        top: 53px;
        right: 0px;
        position: absolute;
        box-shadow: -1px 1px 3px #ccc;
        width: auto;
        background: #fff;
        padding: 20px;
        border: 1px solid #e6e6e6;
        z-index: 9;
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: column;
    }

    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none;
    }

    .navbar-expand-md .navbar-nav .active .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-expand-md .navbar-nav .nav-link:hover {
        color: #5c75a9;
    }

    .carousel-caption p {
        font-size: 14px;
    }



    .carousel-caption {
        bottom: 10px;
        right: 10%;
        text-align: left;
        left: 10%;
        z-index: 1;
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: relative;
        text-align: center;
    }
}

@media (max-width:912px) {
    .logocon li {
        width: auto !important;
        float: none;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

        .logocon li img {
            width: 100%;
            max-height: 70px;
        }

        .logocon li:nth-child(3) {
            padding-left: 0;
        }

    .logocon li {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width:820px) {
    .headMenu {
        float: none;
        list-style: none;
        padding: 0;
        margin: 0 auto;
        margin-top: 5px;
        margin-bottom: 0px;
        display: inline-block;
    }

    .topMenu .container {
        text-align: center;
    }

    .logocon li {
        width: auto !important;
        float: none;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

        .logocon li img {
            width: 100%;
            max-height: 70px;
        }

        .logocon li:nth-child(3) {
            padding-left: 0;
        }

    .logocon li {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width:768px) {
    .copy img {
        width: 100%;
    }

    .h3, h3 {
        font-size: 1.5rem;
    }

    .mt-5, .my-5 {
        margin-top: 1.5rem !important;
    }

    .headMenu > li a {
        font-size: 11px;
        margin-bottom: 10px;
        display: block;
    }

    .container, .container-md, .container-sm {
        max-width: 100%;
    }

    .quicklinks ul li {
        list-style: none;
        float: left;
        width: 189px;
    }

        .quicklinks ul li a {
            list-style: none;
            padding: 10px 20px 10px 20px;
            display: block;
            text-align: center;
            text-decoration: none;
            font-size: 11px;
        }

    .col-xl-4.pr-1 {
        padding-right: 15px !important;
    }

    .logocon li {
        width: auto !important;
        float: none;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

        .logocon li img {
            width: 100%;
            max-height: 70px;
        }

        .logocon li:nth-child(3) {
            padding-left: 0;
        }

    .logocon li {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer .bggray .text-left, footer .bggray .text-right {
        text-align: center !important;
    }
}

@media (max-width:767px) {
    .halfgrayblue .border-right {
        border-right: 0px solid #dee2e6 !important;
    }

    .docs .doc {
        float: left;
        width: auto;
        margin: 0 0% 40px 0;
    }

    .col.pl-0 {
        padding-left: 15px !important;
    }

    .watch {
        margin-bottom: 10px;
    }

    .dropme li:last-child a {
        border-bottom: 0px solid;
    }

    .halfgrayblue {
        background-image: none;
    }

        .halfgrayblue.pl-4.pr-4 {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

    .halfgray {
        background-image: linear-gradient(to bottom, transparent 50%, var(--gray) 50%);
    }

        .halfgray.pt-4 {
            padding-top: 0rem !important;
        }

    .halfgrayblue .col-md-8 {
        background: var(--gray);
    }

    .halfgray .col-md-6.pl-4 {
        background: var(--gray);
        margin-left: 15px;
        margin-right: 15px;
        padding-right: 0 !important;
    }

    #divFullWidth.container {
        /*padding:0*/
    }

    .bgdarkblue.p-2 {
        margin-bottom: 0.5rem;
    }

    h5 {
        margin-top: 20px;
    }

    .container.d-flex.flex-row {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .quicklinks ul li {
        list-style: none;
        float: none;
        width: auto;
        margin-right: 0px;
    }

    .navbar-expand-md .navbar-nav .dropdown .nav-link {
        margin-right: 0rem;
    }

    .navbar-nav .dropdown-menu {
        position: absolute;
        top: -3px;
        min-width: auto !important;
        left: 0;
        z-index: 99;
    }

    .dropme li {
        list-style: none;
        width: auto;
        float: none;
    }

    footer ul {
        margin: 0 auto;
        list-style: none;
        display: inline-block;
        /* margin-top: 30px;*/
        padding: 0;
        margin-bottom: 30px;
    }

        footer ul li:first-child {
            /* margin-left: 0px;*/
        }


    .col-md-6.pr-1, .col-md-4.pr-1, .col-12.pr-1, .col-xl-4.pr-1, .pr-0 {
        padding-right: 15px !important;
    }

    .col-md-6.pl-1, .col-md-6.pl-0, .col-12.pl-1, .col-md-6.pl-4, .col-md-3.pl-4, .col-md-4.pl-4 {
        padding-left: 15px !important;
    }

    .row.ml-0 {
        margin-left: -15px !important;
        margin-right: 0px !important;
    }

    .row.mr-0 {
        margin-right: -15px !important;
    }

    .carousel-caption p {
        font-size: 13px;
    }

    .carousel-caption h5 {
        font-size: 11px;
    }

    .carousel-caption {
        bottom: 10px;
        right: 10%;
        text-align: left;
        left: 10%;
        padding-bottom: 0px;
    }

    #divHomePageCarousal .carousel-inner .carousel-item button {
        background: #FBB040;
        padding: 5px 20px;
        color: #fff;
        font-size: 11px;
    }


    .carousel-control-next, .carousel-control-prev {
        position: absolute;
        z-index: 1;
        background: var(--blue);
        top: inherit;
        width: 30px;
        height: 40px;
        bottom: calc(50% - 40px);
        display: flex;
    }



    .learn {
        color: var(--blue);
        text-decoration: none;
        font-weight: bold;
        border-radius: 4px;
        transition: height 0.2s ease;
        padding: 2px 40px 2px 10px;
        line-height: 21px;
        width: 80px;
        height: 25px;
        overflow: hidden;
        display: inline-block;
        cursor: pointer;
        font-size: 11px;
        background: var(--yellow) url(../images/arrowblue.png) no-repeat 50px 3px;
        background-size: 16px;
    }

    .carousel:hover .learn {
        width: 90px;
        height: 25px;
        border-radius: 4px;
    }

    .learn span {
        display: block;
    }

    .carousel:hover .learn span {
        display: block;
    }

    .learn:hover {
        text-decoration: none;
        padding: 3px 40px 3px 10px;
        background: var(--primary) url(../images/arrowwhite.png) no-repeat 50px 3px;
        color: var(--white);
        border: 1px solid var(--primary);
        width: 80px;
    }


    .carousel-control-next {
        right: 0px;
    }

    .copy img {
        width: 200px;
        margin: 20px 0;
    }


    .carousel-indicators li {
        width: calc(100vw - 40px);
    }

    .carousel-control-next, .carousel-control-prev {
        bottom: calc(50% - 20px);
    }

    .carousel-control-prev {
        left: 0px;
    }

    .carousel-indicators {
        right: 0px;
        bottom: 0;
        margin-bottom: 0;
        width: 100%;
    }



    #divHomePageCarousal .carousel-inner .carousel-item, #divHomePageCarousal .carousel-inner .carousel-item img {
        height: auto;
    }

    .navbar-expand-md .navbar-nav .active .nav-link:before, .navbar-expand-md .navbar-nav .nav-link:hover:before {
        right: calc(50% - 20px);
    }

    .navbar-collapse {
        align-items: center;
        left: 0px;
        top: 53px;
        right: 0px;
        position: absolute;
        box-shadow: -1px 1px 3px #ccc;
        width: auto;
        background: #fff;
        padding: 20px;
        border: 1px solid #e6e6e6;
        z-index: 9;
        max-height: 70vh;
        overflow: auto;
    }

    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none;
    }

    .navbar-toggler {
        color: #0d4587;
        font-size: 24px;
    }

    header {
        text-align: center;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e6e6e6;
        padding-left: 0rem;
        padding-right: 0rem;
        color: #5c75a9;
        margin-left: 0rem;
        margin-right: 0rem;
    }

    .navbar-expand-md .navbar-nav li:last-child .nav-link {
        border-bottom: 0px solid #e6e6e6;
    }

    .navbar-nav.ml-auto .nav-link {
        border-bottom: 0px solid #ccc;
    }

    .navbar-brand.mt-1 {
        margin-top: -10px !important;
    }

    .navbar-brand {
        width: 145px;
    }
}


@media (max-width:452px) {
    #navbarCollapse .dropdown-toggle::after {
        display: inline-block;
        position: absolute;
        top: 14px;
        right: 15px;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-left: 1rem;
        text-align: left;
        padding-right: 1rem;
    }

    .navbar-expand-md .navbar-nav .dropdown .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .quicklinks ul li a {
        text-align: left;
    }

    .dropme li a {
        text-align: left;
    }

    ul.acc li {
        list-style: none;
        display: block;
        float: left;
        width: 100%;
        margin-left: 0.5%;
        margin-right: 0.5%;
        margin-bottom: 1%;
    }
}


.news-item-box .profile-image-1 {
    padding: 0;
    position: relative;
    display: block;
}

    .news-item-box .profile-image-1 img {
        vertical-align: top;
        position: relative;
        width: 100%;
    }

    .news-item-box .profile-image-1:before {
        content: "";
        position: absolute;
        background: rgba(0,65,133, 0.2);
        left: 0;
        right: 0;
        top: 0;
        z-index: 9;
        bottom: 0;
    }


.table thead tr th {
    background-color: #314f85;
}
    .table thead tr th p, .table thead tr th, .table tbody tr th p, .table tbody tr td p {
        margin-bottom: 0 !important;
        
    }

        .table thead tr th p, .table thead tr th {
            color: #fff;
        }
.table td, .table th {
    border: 1px solid #dee2e6 !important;
}
