/*-------------------- General CSS Declaration ------------------- */
:root {
  --dark-blue: #1B254B;
  --medium-blue: #243472;
  --light-blue: #3856C7;
  --sky-blue: #83D5F9;
  --white: #ffffff;
  --green: #649928;
  --font-main: 'Rethink Sans', sans-serif;
}

p{
    font-family: var(--font-main);
    font-size: 20px;
    line-height: 150%;
    text-align: justify;
}

.heading-block{
    width: 65%;
    padding: 20px;
    text-align: left;
}

.heading-block>h2 {
    font-family: var(--font-main);
    color: var(--white);
    font-size: 55px;
    line-height: 65px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 0 5px #666;
}
.heading-block>p{
    font-family: var(--font-main);
    color: var(--white);
    font-size: 25px;
    line-height: 40px;
    text-transform: uppercase;
    margin: 20px 0 0; 
}
.heading-block.blue h2, .heading-block.blue p{
    color: #012A4B!important;
    text-shadow: none;
}
.blur-bg{
    background-color: #6fa7cb3b;
    backdrop-filter: blur(10.949999809265137px);
}
.blue-intro {
    margin: 0 0 40px 0;
}
.blue-intro>p{
    color:#3C778F;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 140%;
    text-align: justify;
}

.white-gradient {
    height: 250px;
    background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgb(255 255 255));
    position: absolute;
    z-index: 65;
    bottom: 0;
    width: 100%;
}
.rounded-box{
    padding: 30px;
    border-radius: 15px;
    color: #3E617A;
    font-size: 30px;
    margin: 20px auto;
}
button.rounded-box {
    padding: 5px 24px;
    display: flex;
    width: 100%;
    font-size: 18px;
    margin: 20px auto;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
.rounded-box h2{
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    padding: 20px;
}
.rounded-box span {
    font-size: 36px;
    font-weight: bold;
    margin: 10px;
}
.rounded-box.sky-blue{
    background-color: #DAE8F2;
}
.rounded-box.grey-blue{
    background-color: #5C8099;
    color: #fff!important;
}
.rounded-box.grey-blue h2{
    flex-direction: row;
    padding: 0;
    justify-content: center;
}
.rounded-box.grey-blue h2>span {
    margin-bottom: 0;
    margin-right: 20px;
}


.page_heading {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 500;
}
.page_heading>span {
    font-size: 42px;
    font-weight: 500;
    margin: 0;
}
.page_heading.center {
    justify-content: center;
}


.grey-box {
    background-color: #bfc5daab;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    margin: 10px auto;
    align-items: flex-start;
}
.grey-box>span {
    font-size: 30px;
    font-weight: 600;
    margin-right: 20px;
}
.grey-box>p{
    margin: 0;
}

.black-bg {
    background-color: #1b1b1b;
    color: var(--white);
}
.panel.black-bg {
    min-height: unset;
    padding: 0;
}
.panel.black-bg a{
    color: var(--white);
}

.skyblue_box {
    background-color: #DAE8F2;
    text-align: center;
    padding: 50px;
    border-radius: 12px;
    margin: 30px auto;
}
.skyblue_box>p {
    text-align: center;
    margin: 20px 0 0;
}



/*-------------------- Button CSS ------------------- */
.button-panel {
    display: flex;
    align-items: center;
}
a.button-simple {
    width: fit-content;
    padding: 0 25px;
    margin: 20px 5px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    line-height: 48px;
    display: inline-block;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 50px;
}
a.button-simple.white {
    border: 2px solid var(--white);
    color: var(--white);
}
a.button-simple.blue {
    border: 2px solid var(--medium-blue);
    color: var(--medium-blue);
}
a.button-simple.light-blue {
    border: 2px solid var(--light-blue);
    color: var(--white);
}

a.button-simple.no-bg {
    background-color:transparent;
}
a.button-simple.grey-bg {
    background-color: #d5d8e4;
    font-weight: 500;
    color: #333;
    border: 2px solid #333;
}
a.button-simple.light-blue-bg {
    background-color: var(--light-blue);
}
a.button-simple.grey-bg>i {
    font-size: 24px;
    font-weight: bold;
}
a.button-simple>em {
    line-height: 16px;
    font-size: 14px;
    font-style: normal;
    margin-left: 10px;
    text-align: left;
}
a.button-simple>span {
    font-size: 36px;
}

a.button-simple.no-bg:hover {
    background-color: var(--white);
    color: #000;
}
a.button-simple.grey-bg:hover {
    background-color:var(--medium-blue);
    color: var(--white);
}
a.button-simple.light-blue-bg:hover{
    background-color: var(--white);
    color: #000;
    border-color: var(--white);
}
a.button-simple:hover>img {
    filter: invert(100%);
}

a.button-simple.white.no-bg.active {
    background-color: #E1BF68;
    color: #673c06;
}

.float-expandable-button {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    right: 0;
    /*top: 49%;*/
    top: 73%;
    z-index: 9999;
    width:max-content;
}
.float-expandable-button:hover a {
    border:1px solid #888!important;
}

.float-expandable-button i.hide-content{
    max-width: 0;
    transition: 0.3s;
    transition: max-width 1s;
    display: inline-block;
    vertical-align: top;
    font-size: 28px;
    white-space: nowrap;
    overflow: hidden;
}

.float-expandable-button:hover i.hide-content {
  max-width: 7rem;
  margin-right:8px;
}


/*-------------------- Header CSS ------------------- */
header {
    background-color:  var(--dark-blue);
    padding: 12px;
}
img.logo {
    width: 150px;
}
.container{
    max-width: 1400px;
    position: relative;
}
.navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
}
ul.navbar-nav{
    align-items: center;
}
li.nav-item {
    width: 15%;
    margin: 0 3px;
    min-width: 100px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
li.nav-item:hover, li.nav-item.active {
    background-color: var(--medium-blue);
    border-radius: 5px;
    box-shadow: 0 0 6px #0000004a;
}

a.nav-link {
    font-family: var(--font-main);
    color: var(--white)!important;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    justify-content: flex-end;
    letter-spacing: 0.5px;
}

a.nav-link>img {
    margin-bottom: 5px;
}

span.navbar-toggler-icon {
    filter: invert(1);
}
.panel{
    padding:40px 0;
    min-height: 20vw;
    position: relative;
}

/*-------------------- Content CSS ------------------- */


.video-banner {
    position: relative;
}
video {
    position: absolute;
    width: 80%;
    top: 0;
    left: 10%;
    height: 100%;
    object-fit: cover;
}
.main-banner {
    background-color: #000000;
    /* background-position: center; */
    /* height: 40vw; */
    padding-top: 25vw;
    padding-bottom: 5vw;
    /* background-repeat: no-repeat; */
}

a.link-sidewise {
    font-size: 11px;
    color: var(--white);
    position: absolute;
    right: -3vw;
    transform: rotate(270deg);
    top: -15vw;
    text-decoration: none;
    letter-spacing: 5px;
}
.main-banner .heading {
    border-bottom: 2px solid var(--white);
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
}
.main-banner .heading h1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 60px;
    text-align: left;
    width: 50%;
    position: relative;
    letter-spacing: 1px;
}
.main-banner .heading h1>em {
    font-size: 19px;
    font-style: normal;
    position: absolute;
    margin: 15px;
}
.main-banner .heading>h2 {
    width: 30%;
    min-width: 250px;
    color: var(--white);
    font-weight: lighter;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 36px;
}

.green-heart-banner {
    /*background-image: url(images/green-heart.png);
    background-image: url(../../images/theme/green-heart.png);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;*/
    background-color: var(--white);
    overflow: hidden;
}
.our-promise-banner {
    /*background: linear-gradient(90.42deg, #696967 0.41%, rgba(184, 188, 191, 0) 99.68%), url(images/doc-gloves.png);*/
    background: linear-gradient(90.42deg, #696967 0.41%, rgba(184, 188, 191, 0) 99.68%), url(../../images/theme/doc-gloves.png);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}
.case-scroller {
    width: 98%;
    margin: 0 auto;
}
.carousel-cases {
    overflow: hidden;
    padding: 0!important;
    margin: 0!important;
}
.case {
    position: relative;
}
.case-info {
    position: absolute;
    z-index: 99;
    color: #fff;
    bottom: 12px;
    left: 30px;
}
.overlay {
    background-image: linear-gradient(1deg, #000000c4, transparent);
    position: absolute;
    z-index: 22;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.case .overlay {
    width: 95%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.case>img {
    margin: 0!important;
    padding: 0!important;
}
.case>a {
    background-color: #77B333;
    width: 60px;
    height: 60px;
    display: flex;
    position: absolute;
    align-items: center;
    top: 12px;
    left: 30px;
    justify-content: center;
    border-radius: 80px;
    z-index: 100;
    text-decoration: none;
}
.case>a>span {
    color: #fff;
    font-size: 36px;
}
.case>a:hover {
    background-color: var(--light-blue);
}
.case>a>i {
    color: var(--white);
    font-size: 24px;
}
.case-info>h2, .case-info>h4 {
    font-family: var(--font-main);
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
}
.case-info>h2 {
    font-size: 25px;
    line-height: 35px;
}
.case-info>h4 {
    font-size: 15px;
    text-transform: capitalize;
}
.carousel-case-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.carousel-case-controls a.carousel-control-prev, .carousel-case-controls a.carousel-control-next {
    color: #333;
    text-decoration: none;
    font-size: 25px;
    width: fit-content;
    margin: 3px 8px 8px 3px!important;
    line-height: 25px;
}
.carousel-case-controls a.carousel-control-prev:hover, .carousel-case-controls a.carousel-control-next:hover {
    filter: invert(50%);
}
div#carouselLogos {
    padding-top: 0!important;
}

.education-research {
    /*background-image: url(images/research.jpg);*/
    background-image: url(../../images/theme/research.jpg);
    background-size: cover;
    background-color: #151515;
    background-position: center;
    min-height: 45vw;
    padding-top: 10vw;
    background-repeat: no-repeat;
}
.education-research .heading-block {
    position: relative;
    z-index: 99;
}

.ethics-committee-hp {
    background-image: url(../../images/page-pics/banner-ethics-hp.png);
    background-size: cover;
    background-color: #151515;
    background-position: center;
    min-height: 34vw;
    padding-top: 7vw;
    background-repeat: no-repeat;
}
.ethics-committee-hp .heading-block {
    position: relative;
    z-index: 99;
}

.trustee-banner>div {
    align-items: flex-end;
    justify-content: space-between;
}
.trustee-banner .message{
    padding: 6% 0;

}
.trustee-banner img {
    width: 98%;
    max-width: 500px;
}
.trustee-banner h2 {
    text-transform: uppercase;
    color: var(--medium-blue);
    font-size: 36px;
}
.trustee-banner h5 {
    /*position: absolute;
    bottom: 3%;
    left: 2%;
    background-image: linear-gradient(90deg, white, transparent);*/
    padding: 12px 12px 0 0;
}
.trustee-banner p {
    text-align: justify;
    color: var(--medium-blue);
    font-size: 20px;
    line-height: 170%;
    padding: 10px 30px 0 0;
}
.misconception {
    /*background-image: url(images/doctor-sad.png);*/
    background-image: url(../../images/theme/doctor-sad.png);
    background-size: contain;
    background-color: #000;
    background-position: center right;
    min-height: 25vw;
    background-repeat: no-repeat;
}


.stat-bar, .contact-bar {
    background-color: var(--medium-blue);
    display: flex;
    align-items: center;
}
.stat-bar div, .contact-bar div {
    color: #77B333;
    text-align: center;
}
.stat-bar .col-md-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-bar .col-md-4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.stat-bar div>span, .contact-bar div>span {
    border: 2px solid;
    border-radius: 40px;
    width: 70px;
    height: 70px;
    font-size: 42px;
    line-height: 70px!important;
}
.stat-bar div>p, .contact-bar div>p {
    color: #fff;
    margin: 10px 0;
}
.contact-bar div>p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px;
}
.stat-bar div>em{
    font-size: 32px;
    font-style: normal;
    color: #77B333;
}
.contact-bar div>p>em{
    color: #77B333;
    font-style: normal;
}

.event-panel{
    background-color: #243472;
    padding: 20px;
}
.event-media{
    text-align: center;
}
.event-media img {
    width: 70%;
}
.event-info h2, .event-info p{
    width: 90%;
    color: #fff;
}

.reserch-box {
    background-color: #DAE8F2;
    color: #3E617A;
    padding: 8px 16px;
    width:85%;
    margin:20px auto;
    border-radius: 10px;
    font-size:18px;
    text-align:center;
}

/*-------------------- Footer CSS ------------------- */

footer {
    background-color: var(--dark-blue);
    padding: 40px 0;
}
footer .navigation-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .navigation-row nav {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}
footer .navigation-row nav a.nav-link {
    flex-direction: row;
    margin: 5px;
    height: 40px;
    min-width: 120px;
    padding: 0 25px;
    border: 2px solid var(--light-blue);
    border-radius: 50px;
    justify-content: center;
}
footer .navigation-row nav a.nav-link:hover, footer .navigation-row nav a.nav-link.active {
    background-color: var(--light-blue);
}
footer .navigation-row nav a.nav-link>img {
    margin: 0 5px 0 0;
    max-width: 24px;
}

footer .social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
footer .social-links>a {
    background-color: var(--medium-blue);
    width: 40px;
    margin: 5px;
    border-radius: 50px;
    height: 40px;
    text-align: center;
}
footer .social-links>a:hover {
    background-color: var(--white);
}
footer .social-links>a>i {
    color: var(--white);
    font-size: 20px;
    line-height: 40px;
}
footer .social-links>a:hover>i {
    color: var(--medium-blue);
}
footer .copyrights {
    text-align: center;
    padding: 40px 0 0;
}
footer .copyrights>span {
    font-family: var(--font-main);
    color: var(--white);
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}


/*-------------------- Inside CSS ------------------- */

main.water-mark {
    /*background-image: url(images/logo-watermark.png);*/
    background-image: url(../../images/theme/logo-watermark.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 40%;
}

.dotted-bg{
    /*background-image: url(images/dot.png);*/
    background-image: url(../../images/theme/dot.png);
    background-repeat: repeat;
}
.link-panel {
    background-color: #2c3d82;
    position: absolute;
    bottom: 0;
}
h1.heading {
    color: var(--white);
    font-size: 68.788px;
    font-style: normal;
    font-weight: 500;
    line-height: 114.5%;
    text-transform: uppercase;
    margin: 0 0 10% 2%;
}

.inside-banner {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    display: flex;
    height: 25vw;
    background-color: #293448;
    position: relative;
    align-items: flex-end;
}
.inside-banner.about-us {
    /*background-image: url(../images/banner-spine.png);*/
    background-image: url(../../images/page-pics/banner-spine.png);
}
.inside-banner.care-at-srf {
    background-image: url(../../images/page-pics/banner-treatment.png);
}
.inside-banner.conditions {
    background-image: url(../../images/page-pics/banner-human-body-spine.png);
}
.inside-banner.patient {
    background-image: url(../../images/page-pics/banner-patient.png);
}
.inside-banner.discover {
    background-image: url(../../images/page-pics/banner-discover.png);
}

.inside-banner.course {
    background-image: url(../../images/page-pics/banner-courses-at-srf.png);
}
.inside-banner.participate {
    background-image: url(../../images/page-pics/banner-participate.png);
}
.inside-banner.connect {
    background-image: url(../../images/page-pics/banner-connect.png);
}
.inside-banner.toc-page {
    background-image: url(../../images/page-pics/banner-terms.png);
}
.inside-banner.pp-page {
    background-image: url(../../images/page-pics/banner-privacy.png);
}
.inside-banner.events {
    background-image: url(../../images/page-pics/banner-events.png);
}
.inside-banner.ethics-committee {
    background-image: url(../../images/page-pics/banner-ethics-committee.png);
}

.patron-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 2px solid var(--dark-blue);
}
.patron-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 6vw 0;
}
/*.patron-section p {
    line-height: 194%;
    font-size: 24px;
    text-align: justify;
    font-family: var(--font-main);
    font-weight: 500;
}*/
.heading-light-blue, .job-position {
	color: var(--light-blue);
}
.patron-section a {
    font-size: 16px;
    padding: 0 16px;
}
.patron-section a>span {
    font-size: 24px;
    font-weight: bold;
    margin-right: 5px;
}

.patron-section img{
    margin-right: 20px;
    max-width: 180px;
}
.patron-section .details>h2 {
    color: var(--dark-blue);
    font-weight: 600;
    display: flex;
    text-transform: uppercase;
    line-height: 36px;
    font-family: var(--font-main);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.patron-section.short>div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.modal.show .modal-dialog.patron {
    max-width: 800px;
}
.patron .modal-content {
    background-color: #D6DFE3;
    padding: 30px;
}
.patron .modal-header {
    justify-content: flex-start;
}
.patron .modal-header>img {
    max-width: 120px;
    margin-right: 20px;
}
.patron .modal-header h2 {
    color: #464646;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 114%; /* 69.84px */
    text-transform: uppercase;
}
.patron .modal-header h5 {
    color: #242F55;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 114%; /* 26.464px */
    text-transform: uppercase;
}
.patron .modal-header .btn-close {
    position: absolute;
    right: 4%;
    top: 4%;
    border: 2px solid #333;
    border-radius: 50px;
}
.patron .modal-content p {
    color: #2D4E5C;
    font-size: 18px;
}


.cases-section {
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    align-items: center;
}
.cases-section>div{
    padding: 0;
}
.case-image {
    display: flex;
    overflow: hidden;
    width: 98%;
    border-radius: 20px;
}
.case-image>img {
    width: 100%;
    max-width: 49vw;
}
.cases-detail {
    padding: 25px;
}

.cases-detail p {
    line-height: 140%;
    font-size: 18px;
    text-align: justify;
    width: 90%;
    font-weight: 500;
    margin: 6% 0;
}
.cases-detail span {
    background-color: #a9d5f1;
    font-size: 20px;
    font-weight: 500;
    color: #243573;
    padding: 7px 0px;
    display: block;
    width: 80%;
    text-align: center;
    border-radius: 25px;
}


.conditions-category{display:none;}
.conditions-category.active{display:block;}
.conditions h2 {
    font-weight: 500;
    font-size: 44px;
    line-height: 65px;
}
.conditions-topic h2 {
    text-transform: uppercase;
}
.conditions-topic {
    background-color: #dae9ee;
    display: flex;
    flex-direction: column;
    padding: 40px 10px 40px 40px;
    border-radius: 25px;
}
.conditions-topic a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    margin: 8px 0;
}
.conditions-other-topic {
    margin-top: 4vh;
}
.conditions-other-topic a {
    color: #34718b;
    display: block;
}
.conditions-treatments .contents{
    padding: 0 3%;
}
.conditions-treatments .cases-image {
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 10vh;
}
.conditions-content h2{
    text-align: center;
    margin-bottom: 3vh;
}
.conditions-content h5 {
    font-weight: 400;
    font-family: sans-serif;
    line-height: 36px;
    margin-bottom: 10vh;
    text-align: justify;
}
.accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 10px;
}
button.accordion-button.collapsed, .accordion-item:last-of-type .accordion-button.collapsed, .accordion-button:not(.collapsed) {
    background-color: #a4bbc1;
    border-radius: 20px;
    padding: 10px 25px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    font-family: sans-serif;
}
.accordion-item:first-of-type .accordion-button {
    border-radius: 20px;
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
}
.accordion-button:focus{
    border:none;
    box-shadow: none;
}

.accordion-item>div.collapse.show {
    background-color: #fff;
    border-radius: 0 0 18px 18px;
    border: 1px solid #dedede;
    margin-top: -20px;
    padding-top: 25px;
}

.accordion-body p {
    text-align: justify;
    display: flex;
    align-items: flex-start;
}
.accordion-body p img {
    float: left;
    margin: 0 12px;
}

.no-link-bar .link-panel h4 {
    margin: 20px;
    color: #fff;
    font-weight: normal;
    line-height: 140%;
}

.patient-header {
    padding: 20px 0 40px;
    border-bottom: 2px solid #ddd;
}
.patient-header .for-year {
    display: flex;
    align-items: center;
}
.patient-header .for-year>h2 {
    background-color: var(--medium-blue);
    color: var(--white);
    font-size: 18px;
    padding: 3px 18px;
    border-radius: 30px;
    margin: 0 10px;
}
.patient-header .for-year>a, .patient-header .for-nav>a {
    background-color: var(--sky-blue);
    border-radius: 80px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.patient-header .for-year>a:hover, .patient-header .for-nav>a:hover {
    background-color: var(--medium-blue);
}
.patient-header .for-year>a span, .patient-header .for-nav>a i{
    color: var(--dark-blue);
    font-weight: bold;
    font-size: 24px;
}
.patient-header .for-year>a:hover span, .patient-header .for-nav>a:hover i{
    color: var(--white);
    font-weight: normal;
}
.patient-header .for-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.patient-header .for-nav>a {
    margin: 0 5px;
}
.patient-header .for-nav>a i {
    font-weight: bold;
    font-size: 20px;
}
.patient-data table th, .patient-data table td{
    background: transparent;
}
.patient-data-area {
    overflow: hidden;
}
.patient-data-area .patient-data {
    padding: 20px;
    margin: 30px auto;
    border-radius: 20px;
}
.patient-data table th, .patient-data table td {
    color: var(--dark-blue);
    font-size: 13px;
    padding: 10px;
    text-transform: uppercase;
    border: none;
}
.patient-data table td p {
    margin: 0;
    text-wrap: wrap;
    line-height: 140%;
}
.patient-data table .center {
    text-align: center;
}



.circlural-img {
    max-width: 800px;
    max-height: 800px;
    width: 45vw;
    height: 45vw;
    min-width: 300px;
    min-height: 300px;
    position: relative;
    margin: 20px auto;
}

.circlural-img>div {
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    transition: 1s ease;
}
.circlural-img>div:hover {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}
.circlural-img.four-in-one .top-right {
    /*background-image: url(../images/circular-blue-01.png);*/
    background-image: url(../../images/page-pics/circular-blue-01.png);
    width: 51%;
    height: 58%;
    top: 0px;
    right: 0;
    z-index: 114;
}
.circlural-img.four-in-one .top-right:hover {
    /*background-image: url(../images/circular-blue-01-roll.png);*/
    background-image: url(../../images/page-pics/circular-blue-01-roll.png);
}
.circlural-img.four-in-one .bottom-right {
    /*background-image: url(../images/circular-blue-04.png);*/
    background-image: url(../../images/page-pics/circular-blue-04.png);
    width: 58%;
    height: 50%;
    bottom: 1%;
    right: 1%;
    z-index: 113;
}
.circlural-img.four-in-one .bottom-right:hover {
    /*background-image: url(../images/circular-blue-04-roll.png);*/
    background-image: url(../../images/page-pics/circular-blue-04-roll.png);
}
.circlural-img.four-in-one .top-left {
    /*background-image: url(../images/circular-blue-02.png);*/
    background-image: url(../../images/page-pics/circular-blue-02.png);
    width: 57%;
    height: 50%;
    top: 0;
    left: 0;
    z-index: 115;
}
.circlural-img.four-in-one .top-left:hover {
    /*background-image: url(../images/circular-blue-02-roll.png);*/
    background-image: url(../../images/page-pics/circular-blue-02-roll.png);
}
.circlural-img.four-in-one .bottom-left {
    /*background-image: url(../images/circular-blue-03.png);*/
    background-image: url(../../images/page-pics/circular-blue-03.png);
    width: 50%;
    height: 59%;
    bottom: 0;
    left: 0;
    z-index: 112;
}
.circlural-img.four-in-one .bottom-left:hover {
    /*background-image: url(../images/circular-blue-03-roll.png);*/
    background-image: url(../../images/page-pics/circular-blue-03-roll.png);
}

.circlural-img b {
    font-size: 120%;
    position: absolute;
    text-transform: uppercase;
}
.circlural-img.four-in-one b {
    color: #2471a9;
}
.circlural-img.four-in-one .top-right b {
    transform: rotate(50deg);
    right: -5%;
    top: 25%;
}
.circlural-img.four-in-one .top-left b {
    transform: rotate(310deg);
    left: -5%;
    top: 30%;
}
.circlural-img.four-in-one .bottom-right b {
    transform: rotate(310deg);
    right: -5%;
    bottom: 30%;
}
.circlural-img.four-in-one .bottom-left b {
    transform: rotate(50deg);
    left: -5%;
    bottom: 25%;
}
.circlural-img.three-in-one b {
    color: #649928;
}
.circlural-img.three-in-one .top-right b {
    transform: rotate(60deg);
    right: -30%;
    top: 30%;
}
.circlural-img.three-in-one .top-left b {
    transform: rotate(300deg);
    left: -20%;
    top: 25%;
}
.circlural-img.three-in-one .bottom b {
    LEFT: 28%;
    bottom: -10%;
}






.circlural-img.three-in-one .top-right {
    /*background-image: url(../images/circular-green-01.png);*/
    background-image: url(../../images/page-pics/circular-green-01.png);
    width: 50%;
    height: 75%;
    top: 0;
    right: 1%;
    z-index: 114;
}
.circlural-img.three-in-one .top-right:hover {
    /*background-image: url(../images/circular-green-01-roll.png);*/
    background-image: url(../../images/page-pics/circular-green-01-roll.png);
}
.circlural-img.three-in-one .bottom {
    /*background-image: url(../images/circular-green-02.png);*/
    background-image: url(../../images/page-pics/circular-green-02.png);
    width: 87%;
    height: 43%;
    bottom: 3%;
    right: 3%;
    z-index: 116;
}
.circlural-img.three-in-one .bottom:hover {
    /*background-image: url(../images/circular-green-02-roll.png);*/
    background-image: url(../../images/page-pics/circular-green-02-roll.png);
}
.circlural-img.three-in-one .top-left {
    /*background-image: url(../images/circular-green-03.png);*/
    background-image: url(../../images/page-pics/circular-green-03.png);
    width: 56%;
    height: 90%;
    top: 0;
    left: 0px;
    z-index: 115;
}
.circlural-img.three-in-one .top-left:hover {
    /*background-image: url(../images/circular-green-03-roll.png);*/
    background-image: url(../../images/page-pics/circular-green-03-roll.png);
}



.pointer-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.pointer-heading.right {
    align-items: flex-end;
}
#pointer {
    width: 15%;
    height: 60px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 24px;
    text-transform: uppercase;
    padding-right: 2%;
}
.pointer-heading.right #pointer {
    justify-content: flex-start;
    padding-left: 2%;
}
#pointer>span {
    font-size: 28px;
    padding-right: 1%;
}
#pointer.pointer-blue {
    background: var(--dark-blue);
}
#pointer.pointer-yellow {
    background: #FBC40F;
}
#pointer.pointer-green {
    background: var(--green);
}

#pointer:before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: 0;
    width: 100px;
    height: 60px;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
}

#pointer:after{
  content: "";
  position: absolute;
  left: -30px;
  bottom: 0;
  width: 0;
  height: 0;
  border-right: 30px solid var(--dark-blue);
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}
#pointer.pointer-blue:before {
    border-left: 30px solid var(--dark-blue);
}
#pointer.pointer-yellow:before {
    border-left: 30px solid #FBC40F;
}
#pointer.pointer-green:after {
    border-right: 30px solid var(--green);
}
.pointer-heading.right .pointer-blue:before, .pointer-heading.right .pointer-green:before{
    display: none;
}

.mission .yb-content {
    position: relative;
}
.mission .yb-content>svg {
    width: 75%;
}
.mission .yb-content>svg:nth-child(1) {
    position: absolute;
    top: -3%;
    left: -0.3%;
}
.angle-box {
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: 80%;
    margin: 5% 0;
    padding: 5%;
    color: var(--white);
}
.angle-box p {
    width: 70%;
    color: var(--white);
    text-align: justify;
}
.blue.angle-box {
    /*background-image: url(images/blue-angle-box.png);*/
    background-image: url(../../images/theme/blue-angle-box.png);
}
.green.angle-box {
    /*background-image: url(images/green-angle-box.png);*/
    background-image: url(../../images/theme/green-angle-box.png);
    background-position: center right;
     min-height: 275px;
}
.green.angle-box p {
    margin-left: 30%;
}


.researches h1 {
    margin: 10px auto 30px;
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
}
.research-block {
    background-color: #DAE8F2;
    margin: 10px 5px;
    padding: 20px;
    border-radius: 15px;
    color: #335D7C;
    min-height: 700px;
    position: relative;
}
.research-block h3, .research-block h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #9FBCD1;
    padding: 12px 5px;
}
.research-block h3>b {
    font-weight: 500;
    color: #335d7c7a;
    font-size: 28px;
}
.research-block h2 {
    font-size: 22px;
    line-height: 130%;
    margin: 18px 0 36px;
    max-width: 85%;
    text-transform: uppercase;
}
.research-block em, .research-block h4>a {
    font-size: 16px;
    line-height: 131%;
    margin: 18px 0;
    font-weight: 500;
    font-style: normal;
    display: block;
}
.research-block p {
    font-size: 15px;
    line-height: 130%;
    margin: 18px 0;
    text-align: justify;
    max-height: 250px;
    overflow: auto;
}
.research-block h4 {
    border-top: 2px solid #9FBCD1;
    border-bottom: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 90%;
    bottom: 1%;
}
.research-block h4>a {
    text-decoration: none;
    text-transform: uppercase;
    color:#335D7C;
}

.researches .accordion-button {
    margin: 50px auto;
}
.researches .accordion-button>p {
    margin: 8px auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.researches .filter_div.ongoing-projects {
    margin: 30px auto;
    padding: 20px 0;
    border-top: 1px solid #335d8f;
    border-bottom: 1px solid #333;
}

.publication_back {
    background-color: var(--medium-blue);
    width: 50px;
    display: inline-block;
    height: 50px;
    color: var(--white);
    font-size: 36px;
    border-radius: 80px;
    line-height: 50px;
}
.publication_back:hover {
    background-color: var(--light-blue);
}


.physiotherapy_inside_banner {
    background-image: url(../../images/page-pics/physiotherapy_inside_banner.png);
    padding: 20% 0 4% 0;
    background-size: cover;
    margin: 40px 0;
    min-height: 350px;
    background-position: center;
}
.physiotherapy_inside_banner h3 {
    color: var(--white);
    font-size: 36px;
    width: 40%;
}
.exercise_figure, .department_figure {
    display: flex;
    justify-content: space-evenly;
    margin: 40px auto;
}
.exercise_figure>div {
    text-align: center;
    width: 18%;
}
.exercise_figure .figure, .department_figure .figure {
    background-color: #C0DDED;
    width: 25%;
    min-width: 220px;
    max-width: 300px;
    height: 220px;
    border-radius: 12px;
    display: flex;
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.exercise_figure .figure>img {
    max-height: 80%;
}
.department_figure .figure>img {
    max-height: 60%;
}
.exercise_figure h4, .department_figure h4{
    text-transform: uppercase;
    color: #48809F;
    margin: 12px auto;
}
.department_figure .figure>h4 {
    position: absolute;
    bottom: 6%;
    margin: 0;
    text-align: center;
    width: 100%;
}

.neuromonitoring_inside_banner {
    background-image: url(../../images/page-pics/nuromonitoring-banner.png);
    padding: 0;
    background-size: cover;
    margin: -40px 0 40px 0;
    height: 40vw;
    min-height: 500px;
    position: relative;
    background-position: center;
}
.neuromonitoring_inside_banner h2, .neuromonitoring_inside_banner h3 {
    color: var(--white);
}
.neuromonitoring_inside_banner .banner_top {
    background-color: #333333ad;
    padding: 20px;
    backdrop-filter: blur(10.949999809265137px);
}
.neuromonitoring_inside_banner .banner_top p{
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    margin: 0;
    letter-spacing: 1px;
}
.neuromonitoring_inside_banner .banner_bottom {
    margin-top: 28%;
}
.grey_box {
    background-color: #ebebeb;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    margin: 30px auto;
}
.grey_box>div {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}
.grey_box>div p {
    width: 60%;
    margin: 10px auto;
    text-align: center;
}

.grey_box>div span {
    font-size: 48px;
    font-weight: 500;
}


.connect .icon-box {
    display: flex;
    justify-content: center;
    margin: 30px auto;
}
.connect .icon-box .connect-details {
    background-color: #fff;
    margin: 0 5px;
    width: 275px;
    min-height: 40px;
    display: flex;
    min-width: 150px;
    border-radius: 50px;
    align-items: center;
    text-decoration: none;
}
.connect .icon-box .connect-details aside {
    background-color: #B9D6EB;
    width: 25%;
    display: flex;
    border-radius: 30px;
    margin-right: 10px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
}
.connect .icon-box .connect-details em {
    color: #48809F;
    font-weight: 500;
    font-style: normal;
}
.connect .icon-box .connect-details aside>span {
    font-weight: 600;
    color: #1d3a4a;
}



.awards {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 50px auto;
}
.awards>img {
    max-width: 300px;
}


.care_pictures {
    background-color: #C0DDED;
    color: #416178;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.care_pictures>.figure {
    width: 30%;
    display: flex;
    margin: 1%;
    padding: 2%;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.care_pictures>.figure>img {
    height: 60%;
    max-height: 200px;
    margin-bottom: 20px;
}
.care_pictures>.figure>p {
    font-size: 16px;
    text-align: center;
    line-height: 140%;
}
.care_pictures>.figure>h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
}



.discover-education {
    display: flex;
    align-items: stretch;
}
.discover-education img {
    width: 15%;
    margin: 0 3%;
    min-width: 200px;
}

    .img-swap {
        margin: 12px;
    }
    .img-swap .roll {
        display: none;
        width: 100%;
    }
    .img-swap .normal {
        display: inline;
        width: 100%;
    }
    .img-swap:hover .roll {
        display: inline;
    }
    .img-swap:hover .normal {
        display: none;
    }

.discover-fellowship {
    background-image: linear-gradient(180deg, #B9D6EB, transparent);
    padding: 5%;
    border-radius: 20px;
    position: relative;
}

.discover-fellowship ul.number-icon.reverse aside {
    background-color: #dbecf9;
}
.discover-fellowship .commitments {
    display: flex;
    margin: 5% 0;
    align-items: flex-start;
    justify-content: space-between;
}
.discover-fellowship .commitments>.img-swap {
    width: 28%;
    margin-left: -10%;
}
.discover-fellowship .commitments>div {
    width: 75%;
}

.discover-course-highlights {
    background-image: url(../../images/theme/course-bg.png);
    background-size: cover;
    background-position: center;
    padding: 0 0 10% 0;
    position: relative;
    margin: 0 auto 50px auto;
}
.top-bottom-white {
    background-image: linear-gradient(180deg, #fff, transparent, #fff);
    position: absolute;
    height: 100%;
    width: 100%;
    /* display: flex; */
    top: 0;
    left: 0;
}

.education-bottom{
    display:flex;
    align-items: flex-end;
    justify-content: space-between;
}


.course-summary {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.course-summary>div {
    width: 40%;
    min-width: 400px;
    background-color: #5f7d8f;
    padding: 30px;
    border-radius: 12px;
    margin: 12px;
    color: #fff;
    min-height: 250px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}
.course-summary>div.physio {
    background-image: url(../../images/theme/course-physio.png);  
}
.course-summary>div.neuro {
    background-image: url(../../images/theme/course-neuro.png);  
}
.course-summary>div>p{
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 85%;
    bottom: 2%;
}
.course-summary a, .course-summary span{
    color: var(--white);
    text-decoration: none;
}
.black-bg.course-physio, .black-bg.course-neuro {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.black-bg.course-physio {
    background-image: url(../../images/theme/course-physio-bg.png);  
}
.black-bg.course-neuro {
    background-image: url(../../images/theme/course-neuro-bg.png);  
}
.black-bg .course_data{
    padding: 400px 0 40px;
}

.ongoing-projects {
    display: flex;
    margin: 20px auto;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 50px;
}
.ongoing-projects a {
    background-color: #DAE8F2;
    padding: 20px 30px;
    border-radius: 12px;
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #335d7c;
}





.donation-details {
    display: flex;
    justify-content: space-evenly;
    margin: 40px auto 0;
}
.donation-details h3 {
    color: var(--dark-blue);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 24px;
    display: flex;
    justify-content: center;
}
.donation-details h3>span {
    font-size: 30px;
    font-weight: bold;
    margin-right: 10px;
}
.donation-details p {
    text-align: center;
    margin: 8px 0;
    color: var(--dark-blue);
}



.connect_contacts {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.connect_contacts .skyblue_box {
    margin: 0 auto;
    width: 45%;
    min-width: 200px;
}
.connect_contacts .skyblue_box h3 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.connect_contacts .skyblue_box h3>span {
    font-size: 30px;
    font-weight: bold;
    margin-right: 8px;
}
.connect_faq {
    margin-bottom: 50px;
}

/*-------------events -------------------*/

.event-intro>h2, .event-intro>h3 {
    text-transform: uppercase;
    font-size: 48px;
    margin: 0;
    line-height: 48px;
    font-weight: bold;
}
.event-intro>h3 {
    color:#2C3D82;
}
.event-intro>p {
    font-size: 18px;
    text-align: justify;
    margin-top: 30px;
}
.featured-events {
    display: flex;
    width: 96%;
    margin: 20px auto;
    justify-content: center;
    align-items: flex-start;
}
.featured-events>div {
    padding: 20px;
    text-align: center;
}
.row.masonry-grid {
    margin: 20px auto;
    width: 96%;
}
.masonry-column {
    padding: 10px;
    text-align: center;
}

.masonry-grid .thumbnail img, .featured-events>div img {
    max-width: 100%;
    width: 90%;
    margin: 20px auto;
    box-shadow: 0 0 6px #666;
    border-radius: 10px;
    overflow: hidden;
}





/*-------------------- Logo Animation CSS ------------------- */

#slidingWindow {
    display: flex;
    overflow: hidden;
    height: 74px;
    flex-direction: column;
}


.slidingSection {
    width: fit-content;
    min-width: 200px;
    height: 74px;
    margin-bottom: 10px;
    text-align: center;
    transform: translate3d(0, 10, 0);
    transition: transform 450ms linear;
}

#slidingWindow:hover > .slidingSection {
  transform: translate3d(0, -83px, 0);
  transition: transform 450ms linear;
}

#slidingWindow img {
    display: block;
    height: auto;
    border: 0;
    outline: 0;
    vertical-align: middle;
    max-width: 100%;
}

#slidingWindow:hover .roll img{
    opacity: 0; 
    animation: fadeInUp 1s ease-in-out 0s forwards;
}
@keyframes fadeInUp {
  from { 
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*-------------------- Logo Animation CSS ------------------- */

/*-------------------- case Animation CSS ------------------- */



.case-image:hover > img {
  transform: translate3d(-100%, 0, 0);
  transition: transform 450ms linear;
}

             
         @keyframes fadeIn {
            0% {opacity: 0;}
            100% {opacity: 1;}
         }
         
         .fadeIn {
            -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
         }


/*-------------------- Green Heart Animation CSS ------------------- */

.changing-heart {
  fill: #67daff;
  animation: filter-animation 8s infinite;  
}

@keyframes filter-animation {
  0% {fill: #67daff; }
  33% { fill: #77B333; }
  50% { fill: #77B333; }
  100% { fill: #67daff;  }
}

/* centers vertically and horizontally*/
.green-heart-banner svg {
    width: 40%;
    position: absolute;
    right: 5%;
    top: -10%;
}

/*-------------------- Other Animation CSS ------------------- */



.zoom-in-zoom-out {
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.05, 1.05);
  }
  100% {
    transform: scale(1, 1);
  }
}


.fade-in {
  animation: fadeIn 8s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}




/*-------------------- Date-picker CSS ------------------- */
.datepicker {
    background-color: var(--sky-blue);
    color: var(--dark-blue);
    font-size: 14px!important;
    border-radius: 12px!important;
}
.datepicker table tr td span {
    height: 40px!important;
    line-height: 40px!important;
    color: var(--dark-blue)!important;
    font-weight: bold!important;
}
.datepicker table tr td span:hover {
    background: var(--light-blue)!important;
    color: var(--white)!important;
}
.datepicker table tr td span.active {
    background: var(--dark-blue)!important;
    color: var(--white)!important;
}
/*-------------------- Date-picker CSS ------------------- */

/*-------------------- Bullets CSS ------------------- */
    
    ol {
      list-style: none;
      counter-reset: my-awesome-counter;
      padding: 0;
    }
    
    ul p{
        padding: 0;
        margin: 0;
    }
    
    ul.with-icon li::before {
        content: "\f005";
        font-family: "Font Awesome 5 Free";
        padding: 0 10px 0 0;
        list-style-type: none;
    }   
    ul.target-icon li::before {
        content: "\f192";
        font-family: "Font Awesome 5 Free";
        padding: 0 10px 0 0;
        list-style-type: none;
    }    
    ul.card-icon li::before {
        content: "\f1ea";
        font-family: "Font Awesome 5 Free";
        padding: 0 10px 0 0;
        list-style-type: none;
    }
    
    ul.yellow-bullets li::marker {
      color: #ffc107;
    }
    ul.green-bullets li::marker {
      color: #77B333;
    }
    ul.full-bg li {
        align-items: flex-start;
        padding: 6px 24px;
        border-radius: 12px;
        width: fit-content;
        display: flex;
    }
    ul.sky-blue li {
        background-color: #b9d6eb;
        color: var(--dark-blue);
    }
    ul.sky-blue li div {
		font-family: var(--font-main);
		font-size: 20px;
		line-height: 150%;
		text-align: justify;
    }
    li {
        position: relative;
        margin: 1rem;  
    }
    ol li {
      position: relative;
      counter-increment: my-awesome-counter;
      margin: 1rem;
      padding-left: 3rem;
      display: flex;
    }
    ol li::before {
      position: absolute;
      top: .75rem;
      left: 0;
      transform: translateY(-50%);
      content: counter(my-awesome-counter);
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: inline-block;
      line-height: 2rem;
      text-align: center;
      margin-right: 1rem;
    }
    ol.sky-blue li::before {
      background: #B9D6EB;
      color: #335D7C;
    }
    ul.number-icon {
        list-style: none;
    }

    ul.number-icon li {
        display: flex;
        align-items: flex-start;
    }
    ul.number-icon aside {
        background-color: #fff;
        width: fit-content;
        display: flex;
        border-radius: 50px;
        margin-right: 20px;
        align-items: center;
        border: 1px solid #b9d6eb;;
        color: #335D7C;
    }
    ul.number-icon aside>b {
        background-color: #b9d6eb;
        width: 25px;
        height: 25px;
        border-radius: 30px;
        text-align: center;
        line-height: 25px;
    }
    ul.number-icon aside>span {
        font-weight: bold;
        font-size: 20px;
        padding: 0 10px;
        line-height: 25px;
    }

    ul.number-icon.reverse aside {
        background-color: #b9d6eb;
        color: #335D7C;
    }
    ul.number-icon.reverse aside>b {
        background-color: #fff;
    }
    

/*-------------------- Bullets CSS ------------------- */


/*-------------------- Mobile CSS ------------------- */

@media only screen and (max-width: 995px) {

    #slidingWindow {
        width: 80%;
    }
    ul.navbar-nav {
        flex-direction: column;
        flex-wrap: wrap;
        /* justify-content: center; */
        position: absolute;
        background-image: linear-gradient(180deg, var(--dark-blue), #111627d4);
        backdrop-filter: blur(100px);
        width: 107%;
        left: -12px;
        height: 90vh;
        padding: 12px;
    }
    .navbar-toggler:focus {
        box-shadow: unset;
    }
    li.nav-item {
        width: 100%;
        justify-content: flex-end;
        padding: 0 8px;
        height: 60px
    }
    a.nav-link {
        flex-direction: row-reverse;
    }
    a.nav-link>img {
        margin-bottom: 0;
        margin-left: 5px;
    }
    header {
        padding: 0;
        backdrop-filter: blur(10.949999809265137px);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999;
    }
    header .material-symbols-outlined{
        margin-left: 20px;
    }
    /*.navbar-collapse {
        margin-top: 50px;
    }*/
    nav.navbar {
        padding: 12px 0;
    }

    main{margin-top: 90px;}


    .blue.angle-box {
        background-image: none;
        background-color: #2c3d82;
        border-bottom: 8px solid #fbc40f;
    }
    .blue.angle-box {
        background-image: none;
        background-color: #2c3d82;
        border-bottom: 8px solid #fbc40f;
    }
    .green.angle-box {
        background-image: none;
        background-color: #649928;
        border-bottom: 8px solid #2c3d82;
    }
    .angle-box p {
        width: auto;
        margin: 0!important;
    }
    #pointer {
        width: 70%;
    }


}
@media only screen and (max-width: 768px) {


    #slidingWindow img {
        max-width: 80%!important;
        margin-top: 5%;
    }

    ul {
        padding: 0;
    }

    .inside-banner {
        background-size: cover;
        height: 50vh;
        flex-direction: column;
        padding: 10% 5%;
        background-position-x: 70%;
    }
    h1.heading {
        font-size: 2em;
        margin: 0;
        width: 60%;
    }
    .link-panel {
        background-color: transparent;
        position: absolute;
        width: 100%;
        margin: 0;
        padding: 12% 3%;
        left: 0;
        background-image: linear-gradient(360deg, black, transparent);
    }
    .button-panel {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .button-panel a.button-simple {
        width: 65%;
        padding: 0 15px;
        margin: 5px 0;
        font-size: 16px;
        line-height: 36px;
        justify-content: flex-start;
        min-height: unset;
    }
    a.button-simple.white.no-bg.active {
        background-color: #fff;
        color: #000;
    }



    a.button-simple.light-blue {
        width: 48px;
        overflow: hidden;
        padding: 0 0 0 5px;
    }

    /*a.button-simple {
        margin: 20px auto;
    }*/

    .heading-block {
        width: auto;
    }
    .heading-block>h2 {
        font-size: 1.8rem;
        line-height: 2rem;
    }
    .heading-block>p {
        font-size: 15px;
        line-height: 24px;
    }
    .green-heart-banner svg {
        width: 100%;
        right: -12%;
        bottom: -12%;
        top: unset;
    }

    .video-banner {
        overflow: hidden;
    }
    video {
        width: 200%;
        top: 0;
        left: -100%;
    }
    
    .main-banner {
        background-size: cover;
        background-position: center;
        height: auto;
        padding-top: 65vw;
    }
    .main-banner .heading {
        text-align: left;
        display: block;
    }
    a.link-sidewise {
        display: none;
    }

    .main-banner .button-panel{
        flex-direction: row;
    }

    .main-banner .heading h1 {
        font-size: 2.4em;
        width: auto;
        letter-spacing: 0;
        margin-left: 0;
    }
    .main-banner .heading h1>em {
        position: inherit;
        margin: 0;
        display: block;
    }
    .main-banner .heading>h2 {
        width: 98%;
        min-width: unset;
        font-size: 18px;
        line-height: 22px;
    }
/*    .video-banner .button-panel .button-simple>em>br, */
    .main-banner .heading h1>em>br{display: none;}

    

    .our-promise-banner {
        background-position: bottom center;
        background-size: contain;
        background-repeat: no-repeat;
        min-height: 140vw;
    }

    .carousel-item>.row{
        flex-wrap: nowrap!important;
        margin: 0!important;
    }
    .carousel-case-controls {
        justify-content: center;
    }
    .case {
        position: relative;
        margin: 0 2%;
        width: 96%;
    }
    
    .misconception {
        background-position: top right;
        min-height: 170vw;
        display: flex;
        align-items: flex-end;
    }

    /*.stat-bar .col-md-3 {
        flex-direction: row;
        justify-content: space-around;
        margin: 10px 0;
    }*/

    .trustee-banner>div {
        flex-direction: column-reverse;
    }
    .trustee-banner img {
        width: 95%;
        max-width: 500px;
        position: unset;
    }
    .trustee-banner .message {
        padding: 6%;
    }
    .trustee-banner p {
        padding: 0;
        font-size: 17px;
        line-height: 150%;
    }
    .trustee-banner h2 {
        text-transform: uppercase;
        color: var(--medium-blue);
        font-size: 32px;
    }


    

    footer {
        text-align: center;
    }
    footer .navigation-row nav {
        flex-direction: column;
    }
    footer .navigation-row nav a.nav-link {
        width: 100%;
    }
    footer .social-links {
        justify-content: center;
    }


    .patron-section, .patron-section .details>h2 {
        flex-direction: column;
        text-align: center;
    }


    .exercise_figure {
        flex-direction: column;
        align-items: center;
    }
    .exercise_figure>div {
        width: auto;
    }
    .physiotherapy_inside_banner {
        padding: 40% 0 4% 0;
    }
    .physiotherapy_inside_banner h3 {
        width: auto;
    }
    .grey_box>div, .grey_box>div p {
        width: auto;
    }


    .course-summary {
        flex-direction: column;
        align-items: center;
    }
    .black-bg .course_data {
        padding: 100px 0 40px;
    }
    .buttonbox {
        flex-direction: column!important;
    }

    .stat-bar div>span, .contact-bar div>span {
        width: 50px;
        height: 50px;
        font-size: 32px;
        line-height: 50px!important;
    }
    .stat-bar div>p, .contact-bar div>p {
        text-align: center;
        font-size: 15px;
        margin: 5px auto;
    }
    .contact-bar div>p {
        min-width: 50%;
        margin: 5px;
    }
    .contact-bar .col-md-4 {
        margin: 8px auto;
    }
      
    .stat-bar div>em {
        font-size: 26px;
        margin-bottom: 20px;
    }  


    .exercise_figure, .department_figure, .care_pictures, .awards, .ongoing-projects, .connect .icon-box, .accordion-body p
    , .donation-details, .connect_contacts {
        flex-direction: column;
        align-items: center;
    }
    .exercise_figure .figure, .department_figure .figure, .awards, .ongoing-projects>a, .ongoing-projects>div, 
    .connect .icon-box .connect-details, .donation-details, .connect_contacts .skyblue_box {
        margin: 10px auto;
    }

    .care_pictures>.figure {
        width: auto;
    }

    .patron .modal-header {
        justify-content: flex-start;
        flex-direction: column;
        text-align: center;
    }

    .cases-detail span {
        padding: 0 20px;
        width: auto;
    }


    .patient-data-area {
        overflow: auto;
    }
    .patient-data-area .patient-data {
        min-width: 1400px;
    }



    .discover-education, .discover-fellowship .commitments {
        align-items: center;
        flex-direction: column-reverse;
    }
    .discover-fellowship .commitments>div {
        width: auto;
    }
    .discover-fellowship .commitments>img {
        width: 80%;
    }
    .education-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .course-summary>div {
        width: 98%;
        min-width: unset;
        min-height: 200px;
    }

    .connect_contacts .skyblue_box {
        width: 98%;
        min-width: unset;
        padding: 25px;
    }

}
