/*--------------------------------------------------------------
# general
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #717776;
    font-size: 14px;
}

a {
    color: #009DD4;
    text-decoration: none;
}

a:hover {
    color: #717776;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

.physio {
    color: #009DD4;
}

.titz {
    color: #717776;
}

/*--------------------------------------------------------------
# preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #FFFFFF;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #009DD4;
    border-top-color: #F1F1F1;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# topbar
--------------------------------------------------------------*/
#topbar {
    background: #FFFFFF;
    height: 40px;
    transition: all 0.5s;
    z-index: 996;
}

#topbar .topbar-scrolled {
    top: -40px;
}

#topbar .contact a {
    line-height: 1;
    color: #717776;
    transition: 0.3s;
}

#topbar .contact a:hover {
    color: #009DD4;
}

#topbar .contact i {
    color: #009DD4;
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}

#topbar .contact i:first-child {
    margin-left: 0;
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/
#header {
    background: #FFFFFF;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
    top: 0;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

#header .logo img {
    max-height: 150px;
}

/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
/**
* desktop
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #717776;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid #FFFFFF;
    padding: 5px 2px;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #009DD4;
    border-color: #009DD4;
}

/**
* mobile
*/
.mobile-nav-toggle {
    color: #717776;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.fa-times {
     color: #FFFFFF;
     padding-top: 15px;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #717776;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #FFFFFF;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile > ul > li {
    padding: 0;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #717776;
    border: none;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
     color: #009DD4;
}

/*--------------------------------------------------------------
# section
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-dark {
    background-color: #E1F7FF;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #F1F1F1;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #009DD4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

.standalone {
    margin-top: 230px;
}

.standalone h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.standalone h4 {
    font-size: 20px;
}

/*--------------------------------------------------------------
# welcome
--------------------------------------------------------------*/
#welcome {
    width: 100%;
    height: 90vh;
    background: url("../img/welcome-bg.png") top center;
    background-size: cover;
    margin-bottom: -200px;
}

#welcome .container {
    position: relative;
}

#welcome h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
}

#welcome h2 {
    margin: 10px 0 0 0;
    font-size: 16px;
}
  
@media (min-width: 1024px) {
    #welcome {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #welcome {
        margin-bottom: 0;
        height: 100vh;        
    }
    #welcome .container {
        margin-top: 220px;
        padding-bottom: 63px;
    }
    #welcome h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #welcome h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-height: 600px) {
    #welcome {
        height: 110vh;
    }
} 

/*--------------------------------------------------------------
# news
--------------------------------------------------------------*/
.news .content {
    padding: 30px;
    background: #009DD4;
    border-radius: 4px;
    color: #FFFFFF;
}

.news .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.news .content p {
    margin-bottom: 30px;
}

.news .icon-boxes .icon-box {
    text-align: center;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
}

.news .icon-boxes .icon-box i {
    font-size: 40px;
    color: #009DD4;
    margin-bottom: 30px;
}

.news .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
.about .img-box {
    background: url("../img/about.png") center center no-repeat;
    background-size: cover;
    width: 450px;
    height: 338px;
    margin-bottom: 25px;
}

.about .icon-boxes h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about .timeline {
    border-left: 1px solid #F1F1F1;
    position: relative;
    list-style: none;
}
  
.about .timeline .timeline-item {
    position: relative;
}
  
.about .timeline .timeline-item:after {
    position: absolute;
    display: block;
    top: 0;
    background-color: #F1F1F1;
    left: -38px;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
} 

/*--------------------------------------------------------------
# departments 
--------------------------------------------------------------*/
.departments {
    overflow: hidden;
}

.departments .nav-tabs {
    border: 0;
}

.departments .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #717776;
    border-radius: 0;
    border-right: 2px solid #F1F1F1;
    font-weight: 600;
    font-size: 15px;
}

.departments .nav-link:hover {
    color: #009DD4;
}
  
.departments .nav-link.active {
    color: #009DD4;
    border-color: #009DD4;
}
 
.departments .tab-pane.active {
    -webkit-animation: fadeIn 0.5s ease-out;
    animation: fadeIn 0.5s ease-out;
}
 
.departments .details h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
 
.departments .details p:last-child {
    margin-bottom: 0;
}
 
@media (max-width: 992px) {
    .departments .nav-link {
        border: 0;
        padding: 15px;
    }

    .departments .nav-link.active {
        color: #FFFFFF;
        background: #009DD4;
    }
} 
 
/*--------------------------------------------------------------
# team 
--------------------------------------------------------------*/
.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    background: #FFFFFF;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover .pic img {
    transform: scale(1.1);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.team .member .member-info span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 75px;
    height: 1px;
    background: #F1F1F1;
    bottom: 0;
    left: 0;
}

.team .member .member-info p {
    margin: 10px 0 0 0;
}

/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    border: 1px solid #F1F1F1;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services .icon-box p {
    line-height: 24px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    background: #009DD4;
    border-color: #009DD4;
}

.services .icon-box:hover h4, .services .icon-box:hover p {
    color: #FFFFFF;
}

/*--------------------------------------------------------------
# faq
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li + li {
      margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #FFFFFF;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 20px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #009DD4;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #717776;
}

.faq .faq-list a.collapsed:hover {
    color: #009DD4;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
} 

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #FFFFFF;
}

.contact .info i {
    font-size: 20px;
    color: #009DD4;
    float: left;
    width: 44px;
    height: 44px;
    background: #E1F7FF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    color: #009DD4;
}

.contact .info table {
    padding: 0 0 0 0px;
    margin-bottom: 0;
    color: #009DD4;    
    margin-left: 60px;
    margin-top: -60px;
}

.contact .info .email, .contact .info .phone, .contact .info .fax, .contact .info {
    margin-top: 40px;
}

.contact .info .address:hover i, .contact .info .email:hover i, .contact .info .phone:hover i, .contact .info .fax:hover i, .contact .info .opening:hover i, .contact .info .appointment:hover i {
    background: #009DD4;
    color: #FFFFFF;
} 

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
#footer {
    background: #E1F7FF;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #FFFFFF;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 5px;
    color: #009DD4;
    font-size: 10px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #717776;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #009DD4;
}
  
/*--------------------------------------------------------------
# back-to-top
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #009DD4;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 0;
}

.back-to-top:hover {
    background: #007EAA;
    color: #FFFFFF;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
} 