/*
body {
	background-image:url('/images/bg.jpg');
	background-repeat:repeat;
	background-size:50px;
}
*/

/* Colors */
.color-gold-text {
    background-image: linear-gradient(5deg,#a75d00,#c77d09,#ffcd59,#ffad39,#a75d00);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-shadow:none !important;
}
.color-gold-background {
    background-image: linear-gradient(0deg,#a75d00,#c77d09,#ffcd59,#ffad39,#a75d00);
}
.color-gold-background:hover {
    background-image: linear-gradient(5deg,#a75d00,#c77d09,#ffcd59,#ffad39,#a75d00);
}
.color-menu {
    background-color:#232548;
    color:white;
}
a.color-menu:focus,a.color-menu:active {
    color:white;
    background-color:#999;
}
.bg-marble {
    color:white;
    background-image:url('/images/bg-marble-blue.jpg');
    background-size: cover;
}
.bg-marble a {
    color:white;
}
.bg-marble h3 {
    background-image:url('/images/bg-marble-darkblue.jpg');
    margin: 0px -15px;
    padding: 5px;
    border-bottom: 4px solid white;
}

/* Utility */
.fullwidth {
    width:100%;
}

#btn-scroll-top {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 0px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #333; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px 15px; /* Some padding */
  border-radius: 10px 10px 0 0; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#btn-scroll-top:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

/* Main content */
#main-content .container,#main-content .container-fluid {
	padding-top:10px;
	margin-bottom:10px;
}

/* Main Slider */
#main-slider {
	width:100%;
}
#main-slider ul>li>div {
	width:100%;
	height:300px;
	background-size:cover;
	background-position:top center;
}

/* Top right nav bar */
#navbar-topright .fa-facebook {
	font-size: 25px;
	padding-top: 8px;
	color:#6ae;
	/*color:#fc7094;*/
}
@media (min-width: 992px) {
	#navbar-topright {	
		font-size:.8rem;
		border-left: 1px solid #666;
		padding-left: 20px;
	}
	#navbar-topright .fa-facebook {
		margin-left: -80px;
	}
}

.border-bottom {
    border-bottom: 1px solid #757575;
}

/* Top strip */
#header-secondary {
	width: 100%;
    padding-bottom:20px;
    background-size: cover;
    background-position: top center;
    background-image:url('/images/home-background.jpg');
    margin: 40px 0 10px; 
}
/*
#header-secondary .page-header {
	background: rgba(70,90,180,0.8);
}
*/
body.holistic-ideas #header-secondary .page-header {
	background: #9a885b;
}

/* Nav */
header nav {
    background-color: #232548;
}
header .navbar-nav .nav-link {
	color:white;
}
.page-header {
	padding:20px;
	max-width:100%;
	/*overflow-x:hidden;*/
	margin-top:20px;
	border:none;
}

.page-header img {
    width: 140px;
    margin-left: 20px;
    margin-top: -60px;
}
#page-title {
    display:inline-block;
}
/*
.page-header, #nav-specialties {
	border-bottom:4px solid #0e0e41;
}
*/

#btn-nav-toggle, #btn-home {
	font-weight:bold;
}

.navbar-brand {
	font-size:1rem;
	color:white;
}
.navbar-toggler {
	margin:10px;
}
.navbar-brand .navbar-step {
	font-size:1.25rem;
}

/* Specialty Nav */
#nav-specialties {
	background: #2b3664;
	display:inline-flex;
	width: 100%;
}

#nav-specialties .nav-link {
	color:white;
}
#nav-specialties .nav-link:hover, #nav-specialties .nav-item.active .nav-link { 
	color:#fe8a01 !important; /* Hover/Active color */
}

/* Procedures Nav */
#nav-procedures {
	background: #5d74d2;
	display:inline-flex;
}
#nav-procedures .nav-link {
	color:white;
	min-width:124px;
}
#nav-procedures .nav-link:hover, #nav-procedures .nav-item.active .nav-link { 
	color:#ffffff !important; /* Hover/Active color */
}

#nav-areas {
	background:#45569b;
	display:inline-flex;
}

#header-primary .navbar .navbar-brand {
	color:white;
	text-shadow:none;
	font-weight:300;
	margin-bottom:0px;
	font-family:'Open Sans Condensed';
	font-size:16px;
}

#header-primary .navbar .navbar-brand strong{
	font-weight:700;
}


#header-primary .navbar-brand i, .brand i {
    font-family: 'Alex Brush', sans-serif;
    font-style: normal;
}


/* Both Specialty and Procedure Nav */
.navbar-header {
	padding:10px;
	line-height:1.2em;
}
.sub-menu {
	/*flex-direction:column;*/
	line-height:1em;
}
.sub-menu .navbar-brand {
	margin-left:20px;
	width:100px;
}
.sub-menu .navbar-step {
	color:#ffa700;
}
.sub-menu .navbar-toggler {
	position:relative;
}
.sub-menu .nav-link {
	padding:5px 10px;
	font-size:0.8rem;
	min-width: 120px;
}

.sub-menu ul {
	display:inline-block;
}
.sub-menu li {
	display:inline-block;
}

/* Global */
body {
	margin:0px;
}
#page {
	width:100%;
	margin:0px;
	padding:0px;
}

/* Utilities */
.abs-center-x {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.rotate-ccw {
	display:inline-block;
	
	/* Safari */
	-webkit-transform: rotate(-90deg);

	/* Firefox */
	-moz-transform: rotate(-90deg);

	/* IE */
	-ms-transform: rotate(-90deg);

	/* Opera */
	-o-transform: rotate(-90deg);

	/* Internet Explorer */
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

/* Home */

div#header {
	display:none;
}
.fancybox-inner {
	background:white;
}
.top-content {
	position: absolute;
	top: 20px;
	left: 50%;
	margin-left: -505px;
}

.ad-container {
	max-width: 425px;
}
.ad-container img {
	width: 100%;
	max-width: 425px;
}

footer {
	padding: 10px;
	margin: 10px 20px 100px 20px;
	font-size: 0.8em;
	text-align: center;
	border-top: 1px solid #C9E0ED;
	color: #999;
}

.navbar-toggler {
	font-size: 1rem;
}

/* Cards */
.card-title {
	font-size:20px;
}
@media (min-width: 480px) {
	/*.card-title {
		font-size:20px;
	}*/
}
.back {
	position: absolute;
}
.back .card {
    /*display: block;
    min-height: 185px;*/
}
.card-flip {
	perspective: 1000px;
	height:130px;
}
@media (min-width: 360px) {
	.card-flip {
		height:150px;
	}	
}
@media (min-width: 400px) {
	.card-flip {
		height:170px;
	}	
}
@media (min-width: 460px) {
	.card-flip {
		height:205px;
	}	
}
/*.card-flip .card > *{
	display:inline-block !important;
}
*/
.back .card .card-img {
	width:95%;
}

.card-flip .card-block {
	padding:5px 0 0 0;
}
@media (min-width: 480px) {
	.card-flip .card-block {
		padding:10px 0 0 0;
	}
}
.preserve3d.csstransforms3d .card-flip.flipped .flip {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}


.preserve3d.csstransforms3d  .card-flip.flipped .back {
	-webkit-transform: translate3d(0, 0, 1px) rotateY(180deg);
}


.card-flip,
.front,
.back {
	width: 100%;
}

.preserve3d .flip {
  transition: 0.6s;
  transform-style: preserve-3d;
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  position: relative;
}

.front,
.back {
	position:absolute;
	top: 0;
	left: 0;
}
.preserve3d .front,.preserve3d .back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}
.no-preserve3d .front {
	display:none;
}

.front {
  z-index: 2;
  opacity: 1;
}
.preserve3d.csstransforms3d .front {
	transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
}

.preserve3d.csstransforms3d  .back {
	transform: rotateY(180deg);
  	-webkit-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}

/* Fallback if no 3d transform support */
.no-preserve3d .card-flip.flipped .front,.no-csstransforms3d .card-flip.flipped .front {
	opacity:0;
	transition: opacity 0.6s, visibility 0.6s;
}
.no-csstransforms3d .front {
	transform:opacity:0;
	-webkit-transform: opacity:0;
	-o-transform: opacity:0;
	-ms-transform: opacity:0;
	-moz-transform: opacity:0;
	transition: opacity 0.6s, visibility 0.6s;
}

.client-item {
	max-width:480px;
	margin:auto;
}
.webpage-item {
    vertical-align:top;
}
.webpage-item .custom-html { 
    font-size: 11px;
    font-weight:700;
    color:#283571;
}
.likes-loves-display {
	font-size: 10px;
    float: right;
    margin-top: -18px;
}
.profile-specialty {
	font-size:13px;
}
.profile-city {
	font-size:13px;
}
@media (max-width: 449px) {
  .card-text {
	  display:none;
  }
  .card-title {
    font-size: 16px;
  }
  .card-subtitle {
	  font-size:12px !important;
  }
  .profile-name {
	  font-size: 12px !important;
  }
  .profile-specialty,.profile-city {
	  font-size: 10px;
  }
  .btn-play {
	font-size: 12px;
    padding: 10px 16px;
  }
}

/* Side Popouts */
.popout-right {
	position: fixed;
	right: -300px;
	z-index:100;
	bottom:20px;
}

.btn-popout-right {
	margin-right: -28px;
	background-color:#283471;
	position: absolute;
    
}

#btn-popout-1 {
	background-color:#283471;
	top: 220px;
	left: -77px;
}	

#btn-popout-2 {
	background-color:#283471;
    top: 330px;
	left: -59px;
}

#btn-popout-3 {
	background-color:#283471;
    top: 420px;
	left: -58px;
}

/* Banner */
.banner {
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
}
.banner .card {
	background: none;
}
.banner.inverted .card {
    color: white;
}
.banner.inverted .text-muted {
    color: #bbb!important;
}

/* Buttons */
.btn-play {
    background: #283471;
    padding: 10px 22px;
    color: white;
    float: left;
    margin-right: 10px;
    font-size: 20px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

/* Section Headers */
.header h2 {
	background-color: #5f6db3;
	color: white;
	padding: 20px;
	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
}

@media (max-width: 1200px) {
	.header h2 {
		font-size: 18px;
	}
}

/*Slider*/
.slider.container {
	padding:0px 60px;
}

.client-item .city {
	text-align:center;
	color: #666;
}

/* Trending Interviews */
.trending .client-item {
	margin:0px;
	padding-bottom: 20px !important;
}
.trending .client-item .card-img {
	max-height:120px;
}
.trending .client-item .card-subtitle {
	display:none;
}
.trending .trending-title {
	
}
.trending .trending-title h2 {
	font-size:24px;
	color:#979797;
	font-style:italic;
	padding-bottom:10px;
	text-transform:uppercase;
	font-weight:bold;
}
.trending .trending-title .fa-star {
	color:#ddbb33;
}
.trending .card-title {
	font-style:italic;
	font-weight:bold;
}

/* Misc */
.dropshadow {
	box-shadow: 1px 4px 3px rgba(0, 0, 0, 0.5);
}
h1, h2, h3 {
	font-family: 'Open Sans', sans-serif; 

}
h2 {
	font-size:30px;
}
h1 .subtitle { font-size:22px; display:block; }


.brush {
    font-family: 'Alex Brush', sans-serif !important;
}
.condensed {
    font-family: 'Roboto Condensed', sans-serif !important;
}
.semi-bold {
    font-weight: 400;
}

.page-header h1, .page-header h2, .page-header h3 {
    color:white;
    text-shadow: 1px 4px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.2em;
}

.page-header em {
    color:#c77d09;
    font-size:150%;
    font-style:normal;
}

.page-header h1 em {
    font-size:175%;
}

.page-header h1 {
    font-size:46px;
	color:white;
	display:inline-block;
	font-weight:300;
	vertical-align:middle;

}
.page-header h2 {
	font-size:24px;
    margin-bottom: 30px;
}
.page-header h3 {
	font-size:22px;
	font-weight:300;
}
.page-header h3 strong {
    font-weight:700;
}
.page-header img.logo {
	vertical-align:middle;
	padding:0px 20px;
}

#search {
    text-align: center;
}

@media (min-width: 790px) {
    #search1 {
        margin-right:20px;
    }

    #search1, #search2 {
        display:inline-block;
    }
}
@media (max-width: 790px) {
    .btn-header {
        width:200px;
    }
}
@media (max-width: 480px) {
    .btn-header, #specialty_search, #procedure_search {
        margin-right:auto !important;
        margin-left:auto !important;
        display:block;
    }
}
#search a, #search button {
    margin-top:10px;
}


/* Responsive */
@media (max-width: 1024px) {
    /*
	.page-header h1 {
        font-size:34px;
    }
    .page-header h2 {
        font-size:28px;
    }
    .page-header h3 {
        font-size:18px;
    }
    */
    #blog {
		padding:0px 20px;
	}
}

/*
@media (max-width: 900px) {
    .page-header {
        margin-top:0px;
    }
    #search1, #search2 {
        display:block;
    }
    .page-header h1 {
        font-size:34px;
    }
    .page-header h2 {
        font-size:28px;
    }
    .page-header h3 {
        font-size:18px;
    }
}
*/
@media (max-width: 790px) {
    .page-header h1 {
        font-size:34px;
    }
    .page-header h2 {
        font-size:20px;
    }
}

@media (max-width: 768px) {
	.card-flip,
	.front,
	.back {
		margin-bottom: 5px;
	}
	#main-slider,.likes-loves-display, #nav-toggle img {
		display:none;
	}
	.page-header img.logo {
		max-width: 160px;
		padding:0px 0px 0px 5px !important;
		
	}
	#nav-toggle {
		margin: 20px 0 10px 0 !important;
	}
	#main-content .container, #main-content .container-fluid {
		margin-bottom: 0px;
	}
	.slick-slide {
		padding: 0 2px;
	}
	.popout-right {
		display:none;
	}
	.slider-3 {
		width: 90%;
		margin: auto;
	}
	.navbar-brand {
		min-height: 50px;
	}
	#blog {
	    font-size: 14px;
	}
	#blog h3 {
		font-size:18px;
	}

}

@media (max-width: 640px) {
    .page-header h1 {
        font-size:32px;
    }
    .page-header h2 {
        font-size:18px;
        margin-bottom: 15px;
    }
    .page-header h3 {
        font-size:14px;
    }
    .page-header img {
        width: 120px;
    }
}

@media (max-width: 600px) {
    .page-header img {
        width: 160px;
        margin:auto;
    }
    #page-title {
        display:block;
    }
}

@media (max-width: 480px) {
	.page-header {
		/*text-align: left !important;*/
	}
	.page > .container > .row > div {
		padding-left:0px;
		padding-right:0px;
	}
	
	.page-header img.logo {
		/*float:right;*/
		padding-right: 0px !important;
	}
    .page-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
	.page-header h2 {
        font-size:20px;
        margin-bottom: 5px;
    }
}

@media (max-width: 360px) {
	.page-header h1 {
		/*font-size:20px !important;*/
	}
}

header .navbar {
	padding: 0px 20px;
    height:50px;
}
header .navbar-nav .nav-link {
	line-height: 1em;
	padding: 0px 10px;
}

header .navbar-nav .nav-link:hover {
	color:white !important;
}

.abs-center-x {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.nav-item:hover,.nav-item.active {
	background-color:#636363;
}
/*
#nav-1:hover,#nav-1.active {
	background-color:#5e77e5;
}
#nav-2:hover,#nav-2.active {
	background-color:#3b7b39;
}
#nav-3:hover,#nav-3.active {
	background-color:#9a885b;
}
*/


.background-darkblue {
	background: rgba(0,0,30,0.7);
}
.background-lightblue {
	background: rgba(70,90,180,0.8);
}
.background-dark {
	background: rgba(0,0,0,0.7);
}
.background-gray {
	background: rgba(50,50,50,0.8);
}

/*Home Improvement */
body.home-improvement header {
	background-color: rgba(22,49,24,0.8);
}
body.home-improvement #header-secondary .page-header {
	background: #3b7b39;
}
body.home-improvement #nav-specialties {
	background: #163118;
}
body.home-improvement #btn-home,body.home-improvement #btn-nav-toggle {
	background: #163118 !important;
}
body.home-improvement .btn-popout-right {
	background: #163118 !important;
}

/* Holistic Ideas */
body.holistic-ideas .btn-popout-right  {
	background:#9a885b !important;
}

/* Slick */
.slick-prev:before, .slick-next:before {
	color:#333;
}

.slick-track {
	min-width:100%;
}

.hide-likes .likes-loves-display {
	display:none;
}

#blog {
    max-width: 930px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.btn-circle {
	background-color: #DDD;
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 20px;
	text-decoration: none !important;
}

.clear {
	clear:both;
}

.article > div {
	text-align:justify;
}
.article img {
	float: right;
    padding-left: 80px;
}

.unslider img {
	max-width:100%;
}

.fancybox-content {
	min-width: 320px;
}

.btn-primary {
    border:none !important;
}

.webpage-item img {
	max-width:100%;
}