@import url('normalize.css');
@import url('lightbox.css');
@import url('carousel.css');
@import url('font-awesome.min.css');
@import url('//fonts.googleapis.com/css?family=Open+Sans:400,600,700,800,300');
@import url('//fonts.googleapis.com/css?family=Montserrat:400,700');

html,
button,
input,
select,
textarea {
    color: #202020;
}


.grayscale {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: url(grayscale.svg);
	filter: gray;
}


body {
    position: relative;
    height: 100%;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 13px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}


/* loader */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9998;
}

/* grid */

.block-group, .block, .block-group:after, .block:after, .block-group:before, .block:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.block-group {
  *zoom: 1;
}

.block-group:before, .block-group:after {
  display: table;
  content: "";
  line-height: 0;
}
.block-group:after {
  clear: both;
}

.block-group {
  list-style-type: none;
  padding: 0;
  margin: -2px -10px;
}

.block-group > .block-group {
  clear: none;
  float: left;
  margin: 0 !important;
}

.block {
  float: left;
  width: 100%;
  padding: 2px 10px;
}

.col1   { width: 8.33333%;}
.col2   { width: 16.66666%;}
.col3   { width: 25%;}
.col4   { width: 33.33333%;}
.col5   { width: 41.66666%;}
.col6   { width: 50%;}
.col7   { width: 58.33333%;}
.col8   { width: 66.66666%;}
.col9   { width: 75.0%;}
.col10  { width: 83.33333%;}
.col11  { width: 91.66666%;}
.col12  { width: 100%;}

.img-responsive{
    max-width:100% !important;
    height:auto;
    display:block
}


/* sidebar */

.sidebar-menu {
    position:fixed;
    top: 0;
    left: -260px;
    z-index:15;
    width: 260px;
    height: 100%;
    overflow-y:auto;
    overflow-x:hidden;
    text-align:center;
    -webkit-transform:translateX(0);
    -ms-transform:translateX(0);
    transform:translateX(0);
    -webkit-transition:500ms cubic-bezier(0.645,0.045,0.355,1);
    transition:500ms cubic-bezier(0.645,0.045,0.355,1);
    background: rgba(22, 25, 24, 0.95);
    padding-top: 70px;
}

.menu-toggle {
    display: none;
    position:fixed;
    top: 20px;
    right: 20px;
    z-index:999;
    cursor:pointer;
    width: 84px;
    height: 30px;
    outline: 0;
    padding: 0;
    cursor:pointer;
    -webkit-transform:translate(0,0);
    -ms-transform:translate(0,0);
    transform:translate(0,0);
    -webkit-transition:-webkit-transform 500ms cubic-bezier(0.645,0.045,0.355,1);
    transition:transform 500ms cubic-bezier(0.645,0.045,0.355,1);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}

.menu-toggle:hover, .menu-toggle:focus {
    outline: 0 !important;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 24px;
    background: #fff;
    opacity: 1;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 1px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.menu-toggle span:nth-child(3) {
    top: 17px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.menu-toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    right: 0;
}

.menu-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top:17px;
    right: 0;
}

.menu-open-anim .sidebar-menu {
    -webkit-transform:translateX(260px);
    -ms-transform:translateX(260px);
    transform:translateX(260px);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow:    0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    box-shadow:         0px 0px 25px 0px rgba(50, 50, 50, 0.3);
}


/* header */

header  {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 90px;
    margin: 0 auto;
    padding: 0;
    background: #366b52;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow:    0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    box-shadow:         0px 0px 25px 0px rgba(50, 50, 50, 0.3);
     -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

header.top-scroll  {
    height: 60px;
    background: rgba(54, 107, 82, 0.9);
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

header .logo {
    display: inline-block;
    width: 220px;
    height: 90px;
    background: #fff url(../img/logo.png) center center no-repeat;
    background-size: 160px 65px;
    margin: 0;
    padding: 0;
}

header .logo:hover {
    opacity: 0.75;
    outline: 0;
}

header.top-scroll .logo {
    display: inline-block;
    width: 70px;
    height: 60px;
    background: #fff url(../img/logo_small.png) center center no-repeat;
    background-size: 60px 60px;
    margin: 0;
    padding: 0;
}

/* menu */

header .menu{
    margin: 22px 20px 0 0;
    padding: 0;
    list-style: none;
    text-align: right;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

header.top-scroll .menu{
    margin: 8px 20px 0 0;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

header .menu li{
    display: inline-block;
}

header .menu li a{
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 6px;
}

header .menu li a:hover{
    opacity: 0.75;
}


.sidebar-menu .menu{
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.sidebar-menu .menu li{
    display: inline-block;
    width: 100%;
}

.sidebar-menu .menu li a{
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    padding: 7px 10px;
    border-bottom: solid 1px #39413d;
}

.sidebar-menu .menu li a:hover{
    opacity: 0.75;
}

.sidebar-menu  .copyright p{
    text-align: center;
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    margin-top: 20px;
}


/* carousel */

.wrapper-carousel .carousel {list-style-type:none;padding:0;margin:0 auto;width: 100%;height:100%;text-align: center;position: relative;}
.wrapper-carousel .carousel div.item{width: 100% !important;text-align: center;height: 600px;background-size: cover;background-position: bottom;}

.wrapper-carousel{
    position: relative;
    margin: 0;
    padding: 0;
}

.wrapper-carousel .title, .header-subheader .title{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 2;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIyMiUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC44Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjYzJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjM4Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(bottom,  rgba(0,0,0,0.5) 22%, rgba(0,0,0,0.38) 40%, rgba(0,0,0,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left bottom, left top, color-stop(22%,rgba(0,0,0,0.5)), color-stop(63%,rgba(0,0,0,0.38)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(bottom,  rgba(0,0,0,0.5) 22%,rgba(0,0,0,0.38) 63%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(bottom,  rgba(0,0,0,0.5) 22%,rgba(0,0,0,0.38) 63%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(bottom,  rgba(0,0,0,0.5) 22%,rgba(0,0,0,0.38) 63%,rgba(0,0,0,0) 100%); /* IE10+ */
    background: linear-gradient(to top,  rgba(0,0,0,0.5) 22%,rgba(0,0,0,0.38) 63%,rgba(0,0,0,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#00000000',GradientType=0 ); /* IE6-8 */
    text-align: center;
}

.wrapper-carousel .title .title-content{
    position: absolute;
    width: 100%;
    margin-top: 220px;
}

.wrapper-carousel .title .title-content h1, .header-subheader .title .title-content h1{
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    line-height: 44px;
    font-weight: 600;
    text-transform: uppercase;
}

.wrapper-carousel .title .title-content h1:after, .header-subheader .title .title-content h1:after{
    content: ' ';
    display: block;
    border: solid 4px #d7521e;
    max-width: 100px;
    margin: 10px auto;
}

.wrapper-carousel .title .title-content p{
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    font-size: 26px;
    line-height: 40px;
    font-weight: 200;
}

section.homepage-providers{
    position: relative;
}

section.homepage-providers .carousel-arrow-prev{
  position: absolute;
  z-index: 9;
  display: block;
  width: 40px;
  height: 30px;
  background: #fff;
  top: 50%;
  left: 0;
  margin-top: -30px;
  padding: 10px 5px 10px 0;
  text-align: center;
  color: #e97721;
  font-size: 28px;
  cursor: pointer;
  -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.homepage-providers .carousel-arrow-next{
  position: absolute;
  z-index: 9;
  display: block;
  width: 40px;
  height: 30px;
  background: #fff;
  top: 50%;
  right: 0;
  margin-top: -30px;
  padding: 10px 0 10px 5px;
  text-align: center;
  color: #e97721;
  font-size: 28px;
  cursor: pointer;
  -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.homepage-providers .carousel-arrow-prev:hover, section.homepage-providers .carousel-arrow-next:hover{
  opacity: 0.75;
  -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}


/* header-subheader */

.header-subheader{
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: cover
}

.header-subheader  .title .title-content{
    position: absolute;
    width: 100%;
    margin-top: 140px;
}

.header-subheader .title .title-content p{
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    font-weight: 200;
}



/* wrapper-book */

.wrapper-book{
    width: 100%;
    background: #d7521e;
    padding: 15px 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wrapper-book p{
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    color: #423029;
    font-weight: 700;
}

.wrapper-book a.link-phone{
    display: inline-block;
    color: #fff;
    font-size: 20px;
    margin: 0 5px;
}

.wrapper-book a.link-online{
    color: inherit;
    margin: 0 5px;
    border-bottom: solid 1px #423029;
}

.wrapper-book a:hover{
    opacity: 0.75;
}



/* content */

h1 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #bebebe;
    margin-bottom: 5px;
}

h2 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 10px;
}

a, a:hover, a:focus{
    text-decoration: none;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

p {
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 5px;
    color: #58595b;
}

hr {
    border: 0;
    border-top: solid 1px #eeeeee;
    margin: 20px 0 30px;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
}

.input{
    display: inline-block;
    width: 100%;
    height: 40px;
    font-size: 12px;
    padding: 0 10px 1px 10px;
    font-weight: bold;
    background: #f2f2f2;
    border: solid 1px #f2f2f2;
    margin: 0 0 10px 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

.textarea{
    display: inline-block;
    width: 100%;
    min-height: 60px;
    font-size: 12px;
    padding: 10px;
    font-weight: bold;
    background: #f2f2f2;
    border: solid 1px #f2f2f2;
    margin: 0 0 10px 0;
    box-sizing: border-box;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
    resize: vertical;
}

.input:focus, .textarea:focus{
    border-color: #eeeeee;
    outline: 0;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

.input-date{
    background: #f2f2f2 url(https://www.mypedsortho.com/img/bg_calendar.png) right center no-repeat;
    background-size: 20px 20px;
}

label{
    font-size: 13px;
    display: block;
    cursor: pointer;
    margin-bottom: 3px;
    font-weight: bold;
}

.form {
    margin-top: 20px;
}

.error {
    background: #f2f2f2 !important;
    border: 1px solid #ccc7c2 !important;
}

label.error {display:none !important}

.btn {
    display: inline-block !important;
    background: #d7521e;
    border: 0;
    color: #fff;
    height: 34px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold !important;
    padding: 3px 30px;
    border-radius: 2px;
    vertical-align:middle;
    line-height: 30px;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

.btn:hover, .btn:focus, .content .lightbox:hover {
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
    outline: 0 !important;
    opacity: 0.75;
}

.link-orange {color: #d7521e;font-weight: bold;}
.link-orange:hover {opacity: 0.75}



/* welcome */

section.welcome{
    text-align: center;
    padding: 40px 0;
}

section.welcome .container{
    max-width: 980px;
}

section.welcome a.link{
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    color: #202020;
}

section.welcome a.link:hover{
    color: #d7521e;
}

section.welcome a.link-nextlevel:hover{
    color: #00937f;
}

section.welcome a.link:hover div{
    color: #d7521e;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.welcome a.link div{
    width: 70px;
    height: 70px;
    margin: 5px auto;
    background-image: url(../img/icons.png);
    background-repeat: no-repeat;
    background-size: 280px 70px;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.welcome a.link:after{
    content: ' ';
    display: block;
    background: #fff url(../img/shadow.png) top center no-repeat;
    background-size: 200px 20px;
    width: 200px;
    height: 20px;
    margin: 10px auto;
}

section.welcome a.link-locations div{
    background-position: 0 0;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
}

section.welcome a.link-providers div{
    background-position: -70px 0;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
}

section.welcome a.link-appointments div{
    background-position: -140px 0;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.75;
}

section.welcome a.link-nextlevel div{
    background-position: -210px 0;
}

section.welcome h2{
    font-size: 20px;

    margin: 20px auto 0;
}


/* homepage providers */

section.homepage-providers{
    margin-bottom: -5px;
}

section.homepage-providers .item a{
    display: inline-block;
    position: relative;
}

section.homepage-providers .item a div{
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiM1YjViNWIiIHN0b3Atb3BhY2l0eT0iMCIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMmQyZDJkIiBzdG9wLW9wYWNpdHk9IjAuNjUiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
    background: -moz-linear-gradient(top,  rgba(91,91,91,0) 40%, rgba(45,45,45,0.75) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%,rgba(91,91,91,0)), color-stop(100%,rgba(45,45,45,0.75))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(91,91,91,0) 40%,rgba(45,45,45,0.75) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(91,91,91,0) 40%,rgba(45,45,45,0.75) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(91,91,91,0) 40%,rgba(45,45,45,0.75) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(91,91,91,0) 40%,rgba(45,45,45,0.75) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005b5b5b', endColorstr='#a62d2d2d',GradientType=0 ); /* IE6-8 */
    opacity: 1;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.homepage-providers .item a:hover div{
    opacity: 1;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.homepage-providers .item a div h1{
    position: absolute;
    left: 15px;
    bottom: 28px;
    font-size: 14px;
    color: #fff;
    margin: 0;
    padding: 0;
}

section.homepage-providers .item a div p{
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: #d7521e;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

section.homepage-providers .item a img{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray; /* IE6-9 */
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: url(../img/filters.svg); /* Firefox 3.5+ */
    opacity: 0.75;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.homepage-providers .item a:hover img{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: none; /* IE6-9 */
    opacity: 1;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}



/* content */

section.subpage{
    padding: 40px 0;
}

section.subpage .left-menu{
    list-style: none;
    margin: 0;
    padding: 0;
}

section.subpage .left-menu li{
    width: 100%;
    margin: 2px 0;
    padding: 0;
}

section.subpage .left-menu li a{
    display: inline-block;
    width: 100%;
    background: #eeeeee;
    color: #202020;
    padding: 12px 10px;
    font-weight: bold;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

section.subpage .left-menu li a:hover{
    background: #d7521e;
    color: #fff;
}

section.subpage .left-menu li.current a{
    background: #d7521e;
    color: #fff;
    position: relative;
}

section.subpage .left-menu li.current a:after{
    position: absolute;
    font-family: FontAwesome;
    top: 10px;
    right: 15px;
    content: "\f105";
    color: #fff;
    z-index: 9;
    font-size: 16px;
}

section.subpage .left-menu-content{
    list-style: none;
    margin: 0;
    padding: 0;
}

section.subpage .left-menu-content li{
    width: 100%;
    margin: 2px 0;
    padding: 0;
}

section.subpage .left-menu-content li a{
    display: inline-block;
    width: 100%;
    border-bottom: solid 1px #eeeeee;
    color: #202020;
    padding: 8px;
    font-weight: bold;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

section.subpage .left-menu-content li a:hover{
    background: #d7521e;
    color: #fff;
}

section.subpage .left-menu-content li.current a{
    background: #d7521e;
    color: #fff;
    border-bottom: solid 1px #d7521e;
}


section.subpage .content h3{
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
}

section.subpage .content h3:after{
    content: ' ';
    display: block;
    border: solid 4px #d7521e;
    max-width: 40px;
    margin: 10px 0;
}

section.subpage .content h4{
    padding: 0;
    margin: 0 0 5px 0;
    font-size: 18px;
}

section.subpage .link-provider-small{
    display: inline-block;
}

section.subpage .link-provider-small:hover{
    opacity: 0.75;
}

section.subpage .link-provider-small img{
    max-width: 80px;
    float: left;
}

section.subpage .link-provider-small div{
    float: left;
}

section.subpage .link-provider-small h1{
    font-size: 15px;
    margin: 0 10px;
    padding: 0;
    color: #202020;
}

section.subpage .link-provider-small p{
    color: #d7521e;
    font-weight: bold;
    margin: 0 10px;
    padding: 0;
}

section.subpage .link-file-download{
    display: inline-block;
}

section.subpage .link-file-download:hover{
    opacity: 0.75;
}

section.subpage .link-file-download img{
    max-width: 70px;
    float: left;
    margin-right: 15px;
}

section.subpage .link-file-download div{
    float: left;
}

section.subpage .link-file-download h1{
    font-size: 15px;
    line-height: 20px;
    padding: 0;
    margin: 0;
    color: #202020;
}

section.subpage .link-file-download p{
    color: #d7521e;
    font-weight: bold;
    padding: 0;
}

section.subpage .list-links{
    list-style: none;
    margin: 0;
    padding: 0;
}

section.subpage .list-links li{
    padding: 5px 0 5px 10px;
}

section.subpage .list-links li a{
    position: relative;

    color: #202020;
}

section.subpage .list-links li a:hover{
    opacity: 0.75;
}

section.subpage .list-links li a:before{
    position: absolute;
    font-family: FontAwesome;
    top: 0;
    left: -10px;
    content: "\f105";
    color: #d7521e;
    z-index: 9;
}

section.subpage .answer{
    min-height: 50px;
    background: #fff url(../img/icon_question.png) left top no-repeat;
    background-size: 50px 50px;
    padding-left: 60px;
}

section.our-providers{
    padding: 0;
}


section.our-providers .block-group{
    margin: 0;
    padding: 0;
}

section.our-providers .block-group .block{
    margin: 0 0 -5px 0;
    padding: 0;
}

section.our-providers a{
    display: inline-block;
    position: relative !important;
    width: 100%;
}

section.our-providers a img{
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

section.our-providers a div{
    position: absolute;
    z-index: 999;
    width: 100%;
    max-width: 100%;
    height: 100%;
    bottom: 4px;
    left: 0;

     background: -moz-linear-gradient(top,  rgba(91,91,91,0) 40%, rgba(45,45,45,0.75) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%,rgba(91,91,91,0)), color-stop(100%,rgba(45,45,45,0.75))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(91,91,91,0) 40%,rgba(45,45,45,0.75) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(91,91,91,0) 40%,rgba(45,45,45,0.75) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(91,91,91,0) 40%,rgba(45,45,45,0.75) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(91,91,91,0) 40%,rgba(45,45,45,0.75) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005b5b5b', endColorstr='#a62d2d2d',GradientType=0 ); /* IE6-8 */


    opacity: 1;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.our-providers a:hover div{
    opacity: 1;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.our-providers a div h1{
    position: absolute;
    left: 15px;
    bottom: 28px;
    font-size: 14px;
    color: #fff;
    margin: 0;
    padding: 0;
}

section.our-providers a div p{
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: #d7521e;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

section.our-providers a img{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray; /* IE6-9 */
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: url(../img/filters.svg); /* Firefox 3.5+ */
    opacity: 0.5;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.our-providers a:hover img{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
    filter: none;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.subpage .content-provider{
    background: #eeeeee;
    padding: 20px;
}

section.subpage .content-provider h2{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #a7a7a7;
    margin: 20px 0 0;
}

section.subpage .content-provider hr{
    border-top: solid 1px #c5c5c5;
    margin: 20px 0 0 0;
}

section.subpage .content .img-article{
    float:right;
    max-width: 220px;
    margin: 0 0 10px 10px;
}

section.subpage .article-actions{
    margin-top: 40px;
    font-weight: bold;
}

section.subpage .article-actions .back{
    border-bottom: solid 1px #c5c5c5;
    padding: 4px 0;
}

section.subpage .article-actions .back a{
    float: right;
}

section.subpage .article-actions .back a:hover{
    opacity: 0.75;
}

section.subpage .article-actions .share{
    padding: 10px 0;
}

section.subpage .article-actions .share a{
    display: inline-block;
    text-align: center;
    width: 20px;
    height: 20px;
    color: #fff;
    padding: 5px;
    margin-right: 5px;
}

section.subpage .article-actions .share a:hover{
    opacity: 0.75;
}

section.subpage .article-actions .share a.facebook{
    background: #4968a6;
}

section.subpage .article-actions .share a.twitter{
    background: #00baf9;
}

section.subpage .article-actions .share a.linkedin{
    background: #0b86c8;
}

section.subpage .news-list hr{
    margin: 10px 0 20px;
}

section.our-locations{
    padding: 0;
}

#map {
    height:500px;
    width:100%;
}

.gm-style-mtc {
  display: none;
}

.infobox-wrapper {
    display:none;
}

#infobox {
    width: 260px;
    height: 360px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow:    0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    box-shadow:         0px 0px 25px 0px rgba(50, 50, 50, 0.3);
}

#infobox h2{
    background: #d7521e;
    color: #fff;
    margin: 0;
    padding: 10px;
}

#infobox p {
    font-size: 14px;
    margin: 0;
    padding: 10px;
    min-height: 72px;
}

.infoboxStyle {
    width: 440px;
    max-height: 112px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow:    0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    box-shadow:         0px 0px 25px 0px rgba(50, 50, 50, 0.3);
}

.infoboxStyle h2{
    background: #d7521e;
    color: #fff;
    margin: 0;
    padding: 5px 10px;
    font-size: 18px;
}

.infoboxStyle h2 span a{
    float: right;
    font-size: 13px;
    color: #fff;
    margin-right: 10px;
}

.infoboxStyle p{
    font-size: 13px;
    margin: 0;
    padding: 6px 10px;
    min-height: 72px;
}

.infoboxStyle img{
    float: right;
    display: inherit;
    max-width: 180px !important;
}

.btn-closebox {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

.btn-closebox:hover {
    cursor: pointer;
    opacity: 0.75;
    -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

section.subpage a.link{
    display: inline-block;
    color: #d7521e;
    font-weight: bold;
}

section.subpage a.link:hover{
    opacity: 0.75;
}

.map-header{
    height: 90px;
}

section.our-locations{
    position: relative;
}


section.our-locations .map-list{
    position: absolute;
    width: 230px;
    top: 10px;
    left: 10px;
    z-index: 9999;
    background: #fff;
    padding: 5px;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow:    0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    box-shadow:         0px 0px 25px 0px rgba(50, 50, 50, 0.3);
}


section.our-locations .locations-list{
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}


section.our-locations .locations-list h3{
    padding: 0;
    margin: 15px 0;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
}

section.our-locations .locations-list h3:after{
    content: ' ';
    display: block;
    border: solid 4px #d7521e;
    max-width: 40px;
    margin: 10px 0;
}

section.our-locations .locations-list a{
    display: inline-block;
    margin: 10px 0;
}

section.our-locations .locations-list a h1{
    font-size: 15px;
    line-height: 20px;
    padding: 0;
    margin: 0;
    color: #202020;
}

section.our-locations .locations-list a p{
    color: #d7521e;
    font-weight: bold;
    padding: 0;
}

section.our-locations a.btn-list-view{
    display: inline-block;
    position: absolute;
    width: 140px;
    background: #fff;
    text-align: center;
    padding: 20px;
    z-index: 9999;
    text-transform: uppercase;
    font-weight: bold;
    color: #333;
    top: 10px;
    left: 10px;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow:    0px 0px 25px 0px rgba(50, 50, 50, 0.3);
    box-shadow:         0px 0px 25px 0px rgba(50, 50, 50, 0.3);
}

section.our-locations a.btn-list-view:hover{
    background: #d7521e;
    color: #fff;
}


/* latest news */

section.latest-news{
    background: #eeeeee;
    padding: 40px 0 50px;
}

section.latest-news h2{
    padding: 0;
    margin: 0 0 40px 0;
    text-align: center;
    color: #8d8d8d;
    text-transform: uppercase;
}

section.latest-news h2:after{
    content: ' ';
    display: block;
    border: solid 4px #d7521e;
    max-width: 60px;
    margin: 10px auto;
}

section.latest-news .news{
    background: #fff;
    margin: 0;
    padding: 0;
}

section.latest-news .news .block{
    background: #fff;
    margin: 0;
    padding: 0;
}

section.latest-news .news .img img{
    max-width: 100%;
    height: auto;
    margin-bottom: -4px;
}

section.latest-news .news .text{
    padding: 0 20px;
}

section.latest-news .news h1{
    font-size: 18px;
    color: #202020;
}

section.latest-news .news a{
    color: #d7521e;
    font-weight: bold;
}

section.latest-news .news a:hover{
    opacity: 0.75;
}


/* video */


.videos{
    position: relative;
    padding: 0;
    margin: 5px 0;
}

.videos .item{
    border: solid 3px #fff;
}

.videos .carousel-arrow-prev{
  position: absolute;
  z-index: 9;
  display: block;
  width: 34px;
  height: 28px;
  background: #fff;
  top: 50%;
  left: 0;
  margin-top: -50px;
  padding: 5px 5px 5px 0;
  text-align: center;
  color: #e97721;
  font-size: 26px;
  cursor: pointer;
  -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

.videos .carousel-arrow-next{
  position: absolute;
  z-index: 9;
  display: block;
  width: 34px;
  height: 28px;
  background: #fff;
  top: 50%;
  right: 0;
  margin-top: -50px;
  padding: 5px 0 5px 5px;
  text-align: center;
  color: #e97721;
  font-size: 26px;
  cursor: pointer;
  -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

.videos .carousel-arrow-prev:hover, .videos .carousel-arrow-next:hover{
  opacity: 0.75;
  -moz-transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;
}

.vid-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}

.vid-container iframe,
.vid-container object,
.vid-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/* footer logo */

.footer-logo {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.footer-logo span {
    display: inline-block;
    width: 220px;
    height: 90px;
    background: #fff url(../img/logo.png) center center no-repeat;
    background-size: 160px 65px;
    margin: 0;
    padding: 0;
}


/* footer */

footer {
    background: #cfcfcf;
    padding: 15px 0;
    margin: 0;
    font-size: 12px;
    color: #616161;
}

footer .copyright{
    font-weight: bold;
    padding-top: 5px;
}

footer .menu{
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
}

footer .menu li{
    display: inline-block;
}

footer .menu li a{
    display: inline-block;
    color: #616161;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px;
}

footer .menu li a:hover{
    opacity: 0.75;
}


/* responsive */

@media (max-width: 1200px) {

.container {
    max-width: 970px;
}

header .menu li a{
    font-size: 12px;
    padding: 12px 4px;
}

.sidebar-menu {display: none;}


}

@media (max-width: 992px) {

.col1,.col2,.col3,.col4,.col5,.col6,.col7,.col8,.col9,.col10 {width: 100%;}

.col1-mobile   { width: 8.33333%;}
.col2-mobile   { width: 16.66666%;}
.col3-mobile   { width: 25%;}
.col4-mobile   { width: 33.33333%;}
.col5-mobile   { width: 41.66666%;}
.col6-mobile   { width: 50%;}
.col7-mobile   { width: 58.33333%;}
.col8-mobile   { width: 66.66666%;}
.col9-mobile   { width: 75.0%;}
.col10-mobile  { width: 83.33333%;}
.col11-mobile  { width: 91.66666%;}
.col12-mobile  { width: 100%;}
.block-group, .block {margin: 0;padding: 0}

.visible-mobile{display: block !important;}
.hidden-mobile{display: none !important;}

.menu-toggle {display: block;}
.sidebar-menu {display: block;}

body {
    padding-top: 60px;
    padding-bottom: 40px;
}

.container {
    padding-left: 10px;
    padding-right: 10px;
}

header{
    position: fixed;
    top: 0;
    z-index: 20;
    height: 60px;
}

header .menu {
    display: none;
}

header .logo {
    display: inline-block;
    width: 140px !important;
    height: 60px !important;
    background: #fff url(../img/logo.png) center center no-repeat !important;
    background-size: 110px 45px !important;
    margin: 0;
    padding: 0;
}

.wrapper-carousel .carousel div.item{
    height: 300px;
}

.header-subheader{
    min-height: 340px;
}

.wrapper-carousel .title .title-content, .header-subheader .title .title-content{
    position: relative;
    margin: 0 auto;
    left: 0;
    top: 0;
    padding: 40px 0 0;
}

.wrapper-carousel .title .title-content h1, .header-subheader .title .title-content h1{
    font-size: 20px;
    line-height: 22px;
    max-width: 300px;
    margin: auto;
}

.wrapper-carousel .title .title-content p, .header-subheader .title .title-content p{
    font-size: 18px;
    line-height: 26px;
    max-width: 300px;
    margin: auto;
}

section.welcome a.link {
    font-size: 13px;
}

section.welcome a.link div{
    width: 35px;
    height: 35px;
    background-size: 140px 35px;
}

section.welcome a.link-providers div{
    background-position: -35px 0;
}

section.welcome a.link-appointments div{
    background-position: -70px 0;
}

section.welcome a.link-nextlevel div{
    background-position: -105px 0;
}

section.welcome a.link:after{
    background-size: 120px 14px;
    width: 120px;
}

.wrapper-book{
    padding: 5px;
}

.wrapper-book p{
    font-size: 13px;
}

.wrapper-book a.link-phone{
    font-size: 16px;
}

section.latest-news .news a{
    display: inline-block;
    margin-bottom: 10px;
}

footer {
    text-align: center;
}

footer .menu {
    text-align: center;
}

.mobile-top-space{
    margin-top: 20px;
}

.map-header{
    height: 0;
}

#map {
    height:300px;
}


section.our-locations a.btn-list-view{
    width: 80px;
    padding: 10px;
}

}

.align-left {text-align: left !important;}
.align-center {text-align: center !important;}
.align-right {text-align: right !important;}

.hide {display: none;}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.clear-padding {
    padding: 0;
}

.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

.pagination {
  height: 40px;
  margin: 20px 0;
  margin: auto;
  text-align: center;
}

.pagination ul {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  margin-left: 0;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  *zoom: 1;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pagination ul > li {
  display: inline;

}

.pagination ul > li > a,
.pagination ul > li > span {
  float: left;
  padding: 0 12px;
  margin: 0 6px;
  line-height: 30px;
  text-decoration: none;
  color:#202020;
  background-color: #eeeeee;
  border-left-width: 0;
  font-weight: bold;
}

.pagination ul > li > a:hover,
.pagination ul > .active > a,
.pagination ul > .active > span {
    color:#fff;
  background-color: #d55229;
}

.pagination ul > .active > a,
.pagination ul > .active > span {
  color: #fff;
  cursor: default;
  background: #d55229;
  font-weight:bold;
}


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

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