/********** TABLE OF CONTENTS **********/

/*****
    1. FOR WHOLE PAGE
    2. HEADER
    3. MAIN
        3.1. BANNER
        3.2. ABOUT
        3.3. BREAK
        3.4. SPECIALISTS
    4. FOOTER
    5. RESPONSIVE
*****/

/********* 1. FOR WHOLE PAGE **********/

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Bold.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Xbold.otf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Sbold.otf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

* {
    font-family: ProximaNova, sans-serif;
}

main, footer {
    position: relative;
    -webkit-transition: right 100ms;
    -moz-transition: right 100ms;
    -ms-transition: right 100ms;
    -o-transition: right 100ms;
    transition: right 100ms;
}

main{
	z-index: 1;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.main-heading {
    font-size: 48px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    color: #404040;
}

.main-heading:after{
    content: "";
    display: block;
    width: 70px;
    margin-top: 25px;
    border-top: 4px solid #0096D9;
}

.main-paragraph{
    font-size: 20px;
    font-weight: 600;
    color: #999999;
}

body button:focus, body a:focus {
    outline: none;
    text-decoration: none;
}

#selected {
    color: #0096D9;
}

.nav>li>a:hover, .nav>li>a:focus {
    background-color: transparent;
}

#fr-button {
    font-size: 18px;
}

/********** 2. HEADER *************/

header {
    height: 78px;
    width: 100%;
    padding-left: 100px;
    padding-right: 20px;
}

header h3 {
    max-width: 194px;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    color: #404040;
    margin-top: 13px;
}

.nav {
    padding-top: 25px;
    height: 78px;
}

header .navbar-nav>li>a {
    padding-top: 5px;
    font-size: 18px;
    color: #404040;
    font-weight: 700;
    padding-left: 22px;
    padding-right: 22px;
}

header .navbar-nav > li {
    height: 100%;
    -webkit-transition: all linear 100ms;
    -moz-transition: all linear 100ms;
    -ms-transition: all linear 100ms;
    -o-transition: all linear 100ms;
    transition: all linear 100ms;
    border-bottom: 0 solid #0096D9;
}

header .navbar-nav>li>a:hover, header .navbar-nav>li:hover {
    background-color: transparent;
}

header .navbar-nav>li:hover, header .navbar-nav>li.selected {
    border-bottom: 6px solid #0096D9;
}

.nav-right li {
    display: inline-block;
    list-style-type: none;
    padding-top: 13px;
}
.nav-right .language {
    font-size: 18px;
    font-weight: bold;
}

.nav-right .language a {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    text-align: center;
    color: #999;
}

.nav-right .language a:hover {
    text-decoration: none;
}

.nav-right li:first-child {
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    text-align: center;
    color: #404040;
    margin-right: 20px;
}

.nav-right > li:first-child > span {
    color: #999;
}

.navbar-close {
    display: none;
}

header img{
    width: 150px;
}

/********** 3. MAIN *************/

/********** 3.1. BANNER *************/

.banner {
    height: 625px;
    width: 100%;
    background: url("../images/banner.jpg") no-repeat center;
    background-size: cover;
    padding-top: 150px;
    padding-left: 100px;
    margin-top: -2px;
}

.banner h1 {
    font-size: 64px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    color: #fff;
    max-width: 580px;
    line-height: 1;
    margin-bottom: 0;
}

.banner p {
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    color: #ffffff;
    max-width: 770px;
    margin-top: 20px;
}

.banner a {
    display: block;
    width: 190px;
    height: 50px;
    border-radius: 6px;
    background-color: #99cc00;
    text-align: center;
    padding-top: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    text-decoration: none;
    float: left;
    margin-right: 20px;
    -webkit-transition: all linear 300ms;
    -moz-transition: all linear 300ms;
    -ms-transition: all linear 300ms;
    -o-transition: all linear 300ms;
    transition: all linear 300ms;
}

.powered p {
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    margin: 0;
}

.banner-note {
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    color: #999999;
    padding: 0 100px;
}

.banner-note a {
    color: #0096D9;
    text-decoration: underline;
}

/********** 3.2. ABOUT *************/

.about {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.about h3 {
    margin-bottom: 30px;
}

.about p {
    max-width: 870px;
    margin-top: 0;
}

/********** 3.2. BREAK *************/

.break {
    max-width: 1300px;
    margin: 0 auto;
}

.break hr {
    margin-bottom: 0;
    border: 0;
    clear: both;
}

.break a {
    float: right;
    display: block;
    width: 96px;
    height: 96px;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(162, 162, 162, 0.5);
    border-radius: 50%;
    text-align: center;
    padding-top: 25px;
    margin-bottom: -45px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #666666;
}

.break a img {
    display: block;
    margin: 0 auto;
    width: 25px;
}

/********** 3.4. SPECIALIST *************/

.specialist-bg{
    background-color: #f9f9f9;
}

.specialist{
    margin:0 auto;
    max-width: 1440px;
    padding: 35px 100px 50px 100px;
}

.specialist .main-paragraph{
    margin-bottom: 50px;
}

.booking-cards-div {
    display: inline-block;
}

.booking-card{
    width: 342px;
    float: left;
    background-color: #fff;
    margin-right: 40px;
    margin-bottom: 50px;
}

.booking-card span{
    color: transparent;
    background-color: #fff;
    border-radius: 6px;
    display: none;
}

.booking-card .card-left p{
    font-size: 20px;
    font-weight: bold;
    color: #404040;
    margin: 0;
    line-height: 2;
}

.booking-card .card-left a{
    font-size: 20px;
    font-weight: bold;
    color: #99cc00;
}

.booking-card .card-left{
    float: left;
    padding: 12px 0 6px 22px;
}

.booking-card .arrow-right{
    width: 15px;
    height: 60px;
    background-color: #0096d9;
    float: right;
    text-align: center;
    margin: 0;
}

.booking-card .arrow-right img{
    width: 20px;
    padding-top: 41px;
}

.specialist:after,.doctors:after {
    content: "";
    display: table;
    clear: both;
}

.appointment {
    max-width: 940px;
    height: 100px;
    background-color: #fff;
    margin: 40px auto -95px;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(207,207,207,1);
    -moz-box-shadow: 0px 3px 5px 0px rgba(207,207,207,1);
    box-shadow: 0px 3px 5px 0px rgba(207,207,207,1);
    padding-top: 27px;
    text-align: center;
}

.appointment img {
    margin-right: 25px;
    vertical-align: sub;
}

.appointment p {
    display: inline;
    font-weight: bold; 
    font-size: 24px;
    margin-right: 20px;
}

.appointment a {
	border: 2px solid #0096d9;
    height: 46px;
    width: 190px;
    color: #fff;
    background-color: #0096d9;
    border-radius: 5px;
    display: inline-block;
    font-size: 20px;
    padding-top: 8px;
    font-weight: bold;
	transition: all linear 200ms;
}

.appointment a:hover{
	background-color: #fff;
	color: #0096d9;
	text-decoration: none;
}

/********** 4. FOOTER *************/

footer{
    max-width: 1440px;
    margin:0 auto;
    padding: 100px;
    padding-bottom: 50px;
}

footer .row{
    margin-bottom: 110px;
}

footer h2{
    font-size: 36px;
    font-weight: bold;
    color: #404040;
}

footer h4{
    font-size: 20px;
    font-weight: 900;
    color: #404040;
    margin:0;
}

footer p{
    font-size: 18px;
    font-weight: 600;
    color: #999999;
    margin-top: 10px;
    margin-bottom: 20px;
}

footer form input, footer form textarea{
    font-size: 18px;
    background-color: #eeeeee;
    border: none;
    padding: 11px 20px;
    font-weight: 900;
    margin: 10px 0;
    width: 100%;
    max-width: 530px;
}

footer form input:focus, footer form textarea:focus{
    outline: none;
}

footer form textarea{
    resize: none;
    height: 160px;
}

footer .row .col-sm-6.first {
	padding-left: 0 !important;
}

footer .row .col-sm-6:first-child div{
    width: 50%;
    float: left;
}

footer .row .col-sm-6:first-child div:last-child{
    padding-left: 40px;
}

footer .row .col-sm-6:first-child .right-div p{
    margin-bottom: 14px;
}

footer .busyLines-p{
    clear:both;
    font-size: 14px;
}

footer form textarea::-webkit-input-placeholder,footer form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #bbbbbb;
    font-weight: 900;
}
footer form textarea::-moz-placeholder,footer form input::-moz-placeholder { /* Firefox 19+ */
    color: #bbbbbb;
    font-weight: 900;
}
footer form textarea:-ms-input-placeholder,footer form input:-ms-input-placeholder { /* IE 10+ */
    color: #bbbbbb;
    font-weight: 900;
}
footer form textarea:-moz-placeholder,footer form input:-moz-placeholder { /* Firefox 18- */
    color: #bbbbbb;
    font-weight: 900;
}

footer form input[type="submit"]{
    color: #fff;
    width: inherit;
    font-size: 20px;
    font-weight: bold;
    border-radius: 6px;
    background-color: #0096D9;
    padding: 7px 50px;
    border: 2px solid #0096D9;
    transition: all linear 200ms;
}

 .banner a:hover{
    color: #99cc00;
    background-color: #fff;
 }

footer form input[type="submit"]:hover {
    color: #0096D9;
    background-color: #fff;
}

footer .copyright-p{
    font-size: 18px;
    font-weight: 900;
    color: #999999;
    margin-bottom: 0px;
}


/********** 5. RESPONSIVE *************/

@media screen and (max-width: 1300px) {
    .booking-card {
        width: 300px;
    }
}

@media screen and (max-width: 1240px) {
    header {
        padding-left: 30px;
    }
    .nav-right li:first-child, .nav-right .language, .nav-right .language a {
        font-size: 15px;
    }
    header h3 {
        font-size: 16px;
        margin-top: 18px;
    }
    header .navbar-nav>li>a {
        font-size: 15px;
    }
    .doctors .doctor-row h2{
        max-width: 260px;
    }
    footer h2{
        clear: both;
    }
    .about h3, .doctors h2 {
        font-size: 36px;
    }
    .about p, .doctors p {
        font-size: 18px;
    }
    .break a {
        width: 81px;
        height: 81px;
        font-size: 18px;
    }
    .break a img {
        width: 17px;
    }
    .break {
        padding-left: 100px;
        padding-right: 100px;
    }
    .appointment {
        height: auto;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 27px;
    }
}

@media screen and (max-width: 991px) {
    .nav-right {
        padding-left: 0;
    }
    .doctors{
        padding: 0 50px 100px 50px;
    }
    .specialist{
        padding: 35px 50px 50px 50px;
    }
    .nav-right li {
        padding-top: 16px;
    }
    .nav-right li:first-child, .nav-right .language, .nav-right .language a, header .navbar-nav>li>a {
        font-size: 14px;
    }
    .nav-right li:first-child {
        margin-right: 15px;
    }
    .about {
        padding-left: 50px;
        padding-right: 50px;
    }
    header .navbar-nav>li>a {
        padding-left: 13px;
        padding-right: 13px;
        font-weight: normal;
    }
    header h3 {
        font-size: 14px;
    }
    .banner {
        padding-left: 50px;
        padding-top: 70px;
        height: 550px;
    }
    .banner h1 {
        font-size: 45px;
    }
    .banner p {
        font-size: 18px;
    }
    .specialist-bg{
        clear: both;
    }
    .doctors .doctor-row div:last-child{
        padding-left: 0;
    }
    .banner-note {
        padding: 0 20px;
    }
    footer p{
        font-size: 18px;
    }
    .break {
        padding-left: 50px;
        padding-right: 50px;
    }
    .booking-card {
        width: 315px;
        margin-right: 10px;
    }
    .booking-card .card-left p {
        font-size: 20px;
    }
    .booking-card .card-left a {
        font-size: 18px;
    }
    .specialist .main-heading{
        font-size: 36px;
    }
    .doctors .doctor-row{
        padding-left: 50px;
    }
    footer{
        padding: 50px;
    }
}

@media screen and (max-width: 767px) {
    header {
        padding-left: 0;
    }
    .doctors{
        padding: 0 18px 100px 18px;
    }
    ul.nav {
        height: auto;
    }
    .about {
        padding-left: 18px;
        padding-right: 18px;
    }
    .specialist{
        padding: 35px 18px 50px 18px;
    }
    header h3 {
        padding-left: 50px;
        font-size: 20px;
        max-width: 240px;
        margin-bottom: 0;
    }
    .break {
        padding-left: 18px;
        padding-right: 18px;
    }
    .navbar-toggle {
        max-width: 24px;
        float: none;
        margin-left: 13px;
        padding: 0;
        margin-top: -65px;
        cursor: pointer;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -260px;
        background-color: #fff;
        z-index: 999;
        height: 100%;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
        width: 260px;
        -webkit-transition: left 100ms;
        -moz-transition: left 100ms;
        -ms-transition: left 100ms;
        -o-transition: left 100ms;
        transition: left 100ms;
    }
    header .navbar-nav>li>a {
        font-size: 24px;
        font-weight: bold;
        padding: 20px;
    }
    .nav-right {
        text-align: left;
        position: relative;
    }

    .nav-right .language a {
        font-size: 24px;
        display: block;
        text-align: left;
        padding: 15px;
        padding-left: 0;
    }
    .nav-right li:first-child {
        font-size: 18px;
        position: absolute;
        bottom: -67px;
    }
    .navbar-collapse h3 {
        padding-left: 2px;
        font-size: 20px;
        line-height: 1;
        max-width: 200px;
    }
    .navbar-close {
        position: absolute;
        right: 20px;
        top: -35px;
        display: none;
        cursor: pointer;
        width: 16px;
    }

    .logo-div {
        text-align: center;
    }

    .banner {
        padding-left: 20px;
        padding-right: 30px;
    }
    .doctors .doctors-row a{
        position: absolute;
        margin-top: -162px;
        margin-left: 140px;
        font-size: 18px;
        padding: 11px 21px;
    }
    .doctors .doctors-row img {
        width: 120px;
    }
    .doctors .doctor-row{
        padding-left: 0;
    }
    .doctors .doctor-row p{
        font-size: 18px;
    }
    .doctors .doctor-row{
        width: 100%;
        clear: both;
        margin-top: 40px;
    }
    .doctors .doctor-row div:first-child{
        clear: both;
    }
    .doctors .doctor-row div:last-child{
        clear: both;
        padding: 0;
    }
    .doctors .doctor-row div h2{
        max-width: 100%;
        font-size: 24px;
    }
    
    footer{
        padding: 40px 18px;
    }
    footer form{
        clear: left;
    }
    .doctors-row {
        width: 280px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 575px) {
    footer .row .col-sm-6:first-child div{
        width: 100%;
        clear: both;
    }
    footer .row .col-sm-6:first-child div:last-child{
        padding-left: 0;
    }
    footer h2{
        padding-top: 30px;
    }
    .banner {
        height: 586px;
    }
    .banner h1 {
        font-size: 36px;
        max-width: 174px;
    }
    .banner p {
        font-size: 18px;
        margin-bottom: 77px;
    }
    .powered p {
        margin-bottom: 5px;
        font-size: 14px;
    }
    .banner a {
        margin-bottom: 14px;
    }
    .banner-note {
        font-size: 12px;
        text-align: left;
    }
}

@media screen and (max-width: 350px){
	.booking-card {
		width: 290px;
	}
}