/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
	--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------------------*/

body {
	overflow-x: hidden;
}

.no-padding {
	padding: 0;
} 

.marginless {
	margin: 0;
}
.relative-wrapper {
	position: relative;
	height: 100%;
} 
.absolute-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.absolute-content.right {
	right: 0;
}

.site-title img {
	display: block;
}

.absolute-content.left {
	left: 0;
}

.site-header {
	position: fixed!important;
}

.site-header h1 {
	margin-top: 15px 0;
	font-size: 0;
}

.site-header {
	height: 88px;
	position: fixed;
	z-index: 9999;
	transition: background-color 200ms ease;
	width: 100%;
}

.site-header ul.menu {
	display: inline-block;
	border: solid 1px #FFF;
}

.site-header .menu li {
	padding: 10px 12px;
	/*width: 100px;*/
	display: inline-block;
	font-size: 12px;
	float: none;
	border-right: solid 1px #FFF;
	text-align: center;
	transition: all 200ms ease;
	background-color: #FFF;
}

.site-header .menu li:last-child {
	border-right: none;
}

.site-header .menu li:hover {
	background-color: rgba(255,255,255, 0.10);
}

.site-header .menu a {
	color: #313232;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
}

.container.relative {
	position: relative;
}

.banner-wrapper {
	background: url('images/banner-lauthklinik.com.br.jpg') no-repeat center center;

	background-size: cover;
	width: 100%;
	height: 100vh;
	/*margin-top: -88px;*/
}

section#banner .banner-doctor {
	position: absolute;
	bottom: 0;
	right: 0;
}

section#banner .doc-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

section#banner h2 {
	display: inline-block;
	color: #54c5cb;
	font-family: 'Montserrat', sans-serif;
	font-size: 42px;
	font-weight: 600;
	width: 100%;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 45px;
	text-shadow: 2px 2px 2px #333333;
}

section#banner h2::after {
	display: block;
	content: '';
	width: 55px;
	height: 7px;	
	background-color: #54c5cb;
	position: absolute;
	bottom: -7px;
	left: 0;
}

section#banner h3 {
	display: inline-block;
	color: #54c5cb;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 40px;
	width: 100%;
	margin: 0;
	margin-bottom: 45px;
}

section#banner a {
	display: block;
	color: #54c5cb;
	background-color: rgba(0,0,0,0.15);
	border: solid 2px #FFF;
	border-radius: 30px 30px;
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 60px;
	width: 340px;
	padding: 0 25px;
	position: relative;
	text-shadow: 2px 2px 2px #333333;
}

section#banner a:after {
	content: url('images/ico-arrow-down.png');
	width: 20px;
	height: 13px;
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
}

section#advantages,
section#servicesOffered,
section#ourRooms {
	padding: 45px 0;
}

.default-title {
	color: #62c2cc;
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	line-height: 50px;
	font-weight: 400;
	text-transform: uppercase;
	width: 100%;
	position: relative;
	text-align: center;
	padding-bottom: 10px;
	margin-bottom: 50px;
}

.default-title span {
	display: inline-block;
	color: #706057;
	font-family: 'Montserrat', sans-serif;
	text-transform: none;
	font-size: 20px;
	line-height: 20px;
	font-weight: 400;
	width: 100%;
	padding-bottom: 10px;
	text-align: center;
}

.default-title:after {
	content: '';
	display: block;
	width: 55px;
	height: 3px;
	background-color: #e2e2e2;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.advantages-container .img-wrapper {
	display: block;
	position: relative;
	width: 67px;
	height: 67px;
	margin: 0 auto;
	margin-bottom: 15px;
}

.advantages-container .img-wrapper img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.advantages-container .title {
	color: #706057;
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}

.advantages-container .desc {
	color: #706057;
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	width: 100%;
	text-align: center;
	margin-bottom: 50px;
}

section.separator div {
	display: block;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0,0,0,0.005), rgba(0,0,0,0.3), rgba(0,0,0,0.005));
}

.service-container {
	background: url('images/ico-checkmark.png') no-repeat;
	background-position: 45px 25px;
	width: 100%;
	padding: 25px 0 45px 95px;  
}

.service-container.agenda {
	background: url('images/ico-agenda.png') no-repeat;
	background-position: 25px 25px;
}

.service-container.address {
	background: url('images/ico-endereco.png') no-repeat;
	background-position: 25px 25px;
}

.service-container b {
	font-weight: 800;	
}

.service-container .title,
.service-container .desc {
	color: #706057;
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	width: 100%;
	text-align: left;
}

section#extraServices .relative-wrapper {
	height: 240px;
}

section#extraServices .default-title {
	margin-bottom: 0;
}

.extra-services-container {
	border: solid 1px #62c2cc;
}

.rooms .item {
	height: 600px;
}

.rooms .title-wrapper,
.map-wrapper .title-wrapper {
	position: absolute;
	top: 45px;
	left: 45px;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	padding: 15px;
}

.rooms .default-title,
.map-wrapper .default-title,
section#contact .default-title {
	color: #FFF;
	margin: 0;
	text-align: left;
}

.map-wrapper .default-title,
section#contact .default-title { 
	margin-bottom: 15px
}

.rooms .default-title:after,
.map-wrapper .default-title:after,
section#contact .default-title:after {
	background-color: #62c2cc;
	left: 0;
	transform: translate(0);
}

.map-wrapper span,
section#contact span {
	display: inline-block;
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	text-transform: none;
	font-size: 20px;
	line-height: 25px;
	font-weight: 400;
	width: 100%;
	padding-bottom: 10px;
	text-align: left;
}

section#contact {
	position: relative;
	margin-top: -310px;
}

section#contact .bg-wrapper{
	position: relative;
	height: 310px;
	background: url('images/bg-contact.png') no-repeat top left;
	/*background-size: 100% 100%;*/
}

section#contact .bg-wrapper .fill{
	height: 100%;
}

section#contact .bg-wrapper .title-wrapper {
	position: absolute;
	bottom: 25px;
}

#sliderCategories {
	height: 600px;
	background-color: #706057;
	text-align: center;
}

#sliderCategories input[type='radio'] {
	visibility: hidden;
	position: absolute;
}

#sliderCategories input[type='radio']:checked {
	display: none;
}

#sliderCategories label {
	display: inline-block;
	width: 100px;
	height: 33.333%;
	margin: 0;
}

#sliderCategories input[type='radio']:checked ~ label {
	display: none;
}

.vertical-align-wrapper {
	display: table;
	height: 100%;
}

.vertical-align-content {
	display: table-cell;
	vertical-align: middle;
}

#sliderCategories img {
	display: inline-block;
}

#sliderCategories span {
	display: inline-block;
	color: #FFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 22px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
}

.caption {
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 50px;
	text-align: left;
	max-width: 300px;
	margin-left: 25px;
	position: absolute;
	left: 25px;
	bottom: 65px;
	z-index: 1;
}

.carousel .carousel-indicators {
	width: 25%;
	text-align: left;
	margin-left: 0;
	left: 350px;
	bottom: 70px;
} 

.carousel .carousel-indicators li {
	background-color: #FFF;
	border: none;
	margin: 0 5px;
	margin-bottom: 2.5px;
}

.carousel .carousel-indicators li.active {
	background-color: #54c5cb;
	border: none;
	width: 15px;
	height: 15px;
	border-radius: 15px;
	margin-bottom: 0;
}

.site-footer .bg-wrapper {
	width: 100%;
	background-color: #FFF;
}

.site-footer span {
	color: #706057;
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 50px;
}

.site-footer a {
	display: inline-block;
	width: 78px;
	height: 50px;
	/*margin-top: 18px;*/
	background: url('images/logo-escura.png') no-repeat center center;
}
.menu-toggle {
	background-color: transparent;
	border: none;
	color: #FFF;
}

.menu-toggle:focus, .menu-toggle:active  {
	outline: none;
}

.visitown {
	background: #535FD7;
	border: 4px solid #fff;
    border-radius: 5px;
    	border-bottom-right-radius: 0;
    	border-top-right-radius: 0;
    color: #fff;
    display: block;
    padding: 3px 10px;
    position: fixed;
    	top: 50%;
    	right: 0;
    text-align: right;
    text-transform: uppercase;
}

.visitown span {
    display: block;
    float: left;
    margin-right: 10px;
}

.visitown .icontown {
	background: url(images/icon-visitown.png) no-repeat center;
	display: block;
    float: right;
    margin-right: 0px;
	width: 33px;
	height: 36px;
}

.visitown:hover {
	border: 4px solid #7acab3;
	color: #7acab3;
}

@media only screen and (max-width: 1200px) {
	.rooms .item {
		height: 500px;
	}

	#sliderCategories {
		height: 500px;
	}

	.caption {
		font-size: 35px;
		bottom: 25px;
	}

	.carousel .carousel-indicators {
		bottom: 25px;
	}
}

@media only screen and (max-width: 992px) {
	.site-title img {
		width: 200px;
	}

	.service-container {
		padding-left: 30px;
		background-position: 0 25px;
	}

	.extra-services-container .service-container {
		padding-left: 45px;
		background-position: 0 25px;
	}

	.rooms .item {
		height: 380px;
	}

	#sliderCategories {
		height: 380px;
	}
}

@media (width: 768px) {
	.col-sm-2, .col-sm-10 {
		width: 100%;
	}

	.col-sm-4, .col-sm-8 {
		width: 50%;
	} 
}

@media only screen and (max-width: 768px) {
	section#banner .banner-doctor {
		display: none;
	}

	.extra-services-container .absolute-content {
		width: 100%;
	}
	.extra-services-container .service-container {
		padding-left: 60px;
	}

	#sliderCategories {
		height: 150px;
		text-align: justify;
		font-size: 0.1px;
		min-width: 320px; 
	}

	#sliderCategories:after {
		content: '';
		width: 100%;
		display: inline-block;

	}

	#sliderCategories div {
		max-width: 150px;
		max-height: 150px;
		display: inline-block;
	}

	#sliderCategories label {
		height: 100%;
	}

	#sliderCategories img {
		display: block;
		margin: 0 auto;
		margin-top: 20px;
	}

	.rooms .item {
		height: 280px;
	}

	.rooms .default-title {
		font-size: 15px;
	}

	.rooms .title-wrapper {
		top: 15px;
		left: 15px;
	}

	.caption {
		font-size: 20px;
		bottom: 15px;
		left: 15px;
	}

	.carousel .carousel-indicators {
		text-align: right;
		left: 0;
		right: 15px!important;
		bottom: 15px;
		width: 100%;
	}

	#sliderCategories input[type='radio']:checked {
		display: block;
	}

	#sliderCategories input[type='radio']:checked ~ label {
		display: block;
	}

	.menu-toggle {
		position: relative;
		z-index: 999;
		display: inline-block;
		margin-top: 15px;
	}

	.menu.nav-menu {
		display: none!important;
	}

	.site-header .relative-wrapper, .site-header .absolute-content {
		width: 100%;
		text-align: right;
		position: static;
	}

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

	.site-header .menu li {
		display: block;
		border-bottom: solid 1px #FFF;
		border-right: none;
		background-color: #54c5cb;
	}

	.site-header .menu li:hover {
		background-color: #65cbd0;
	}

	.site-header .menu li:last-child {
		border-bottom-color: #54c5cb;
	}
}

@media only screen and (max-width: 768px){
	.toggled .menu.nav-menu {
		display: inline-block!important;
		width: 150px;
	}
}

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

	.toggled .menu.nav-menu {
		width: 130px;
	}

	.btsp-override.col-xs-offset-1 {
		margin: 0;
	}

	.btsp-override.col-xs-5 {
		width: 100%;
	}

	section#banner .banner-wrapper {
		height: 50vh;
	}

	section#banner a {
		width: 260px;
		font-size: 16px;
	}

	section#banner h2 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	section#banner h3 {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.site-title img {
		width: 130px;
	}

	section#banner .absolute-content.left {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -40%);
	}

	.btsp-override.col-xs-6 {
		width: 100%;
	}

	.btsp-override.col-xs-offset-3 {
		margin: 0;
	}

	.extra-services-container .no-padding {
		padding: 15px;
	}

	.extra-services-container .service-container {
		padding-left: 40px;
	}

	.rooms .item {
		height: 170px;
	}

	.rooms .title-wrapper {
		display: none;
	}

	.caption {
		font-size: 10px;
		margin: 0;
	}

	.carousel .carousel-indicators {
		margin-bottom: 0;
	}

	#sliderCategories {
		min-width: 260px;
	}

	#sliderCategories label, #sliderCategories div {
		max-width: 60px;
	}

	#sliderCategories img {
		max-width: 55px;
		height: auto;
	}

	#sliderCategories span {
		font-size: 8px;
		line-height: 12px;
	}

	#sliderCategories .vertical-align-content {
		vertical-align: inherit;
	}

	.btsp-override.col-xs-8, .btsp-override.col-xs-9, .btsp-override.col-xs-3 {
		text-align: center;
		width: 100%;
	}

	.btsp-override.col-xs-offset-2 {
		margin: 0;
	}

	.map-wrapper .title-wrapper {
		top: 0;
		left: 0;
		width: 100%;
	}

	.map-wrapper .default-title, section#contact .default-title  {
		font-size: 18px;
	}

	.map-wrapper span, section#contact span {
		font-size: 14px;
	}

	.site-footer span {
		font-size: 13px;
		line-height: 30px;
	}

	.site-footer a {
		height: 34px;
	}

}

