/*
Watch Me Grow
Version: 1.0

===========================
  General and Typography
============================ */
html{
	width: 100%;
	height: 100%;
}

body{
	width: 100%;
	height: 100%;
	font-family: 'Open Sans',sans-serif;
	font-weight: 400;
	color:#696767;
	background-image: url(../img/bg1.png);
	background-position:bottom center;
    background-repeat:repeat-x;
	background-attachment:fixed;
}

p{
    font-size: 15px;
    line-height: 30px;
}

.small-txt {
	font-size: 13px;
}

/* Headings */

h1 {
    font-size: 50px;
    margin-bottom: 10px;
    font-family: 'Montserrat',serif;
    margin-top: 20px;
	letter-spacing:1px;
    line-height: 62px;
    font-weight: 700;
	text-transform: uppercase;

}

h2 {
	font-size: 44px;
    font-family: 'Montserrat',serif;
	font-weight:700;
	letter-spacing:-0.5px;
	color:#2F2F2F;
	text-align:center;
	margin-top:0px;
}

h2:before {
 	content: "\f12b";
	font-family: 'Flaticon';
	font-weight: normal;
	font-size: 30px;
	margin-right:10px;
}


h3 {
	font-family: 'Montserrat',serif;
	color:#333;
	font-weight:700;
	font-size: 34px;
	line-height:44px;
	margin-top: 0px;
	position: relative;
}

h4 {
	font-family: 'Crafty Girls',serif;
	font-size: 28px;
	border-radius:10px;
	color:#333;
	font-weight:400;
	margin-bottom:10px;
}

h5 {
	font-size: 22px;
    margin: 0;
    font-family: 'Montserrat',serif;
	color:#333;
	margin-bottom: 20px;
}

h6 {
	font-size: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-family: 'Montserrat',sans-serif;
	font-weight: 800;
	color:#333;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
	text-transform:none;
	font-family: 'Open Sans',sans-serif;
}

/* Links */

a {font-weight:600;transition: color .2s ease-in-out;}

a:hover,
a:focus {text-decoration: none;}

/* Others */

.subtitle {
	font-weight:500;
	font-size: 20px;
	letter-spacing: 0.3px;
}

.text-light {color: #fff;}

i {transition: all .2s ease-in-out;}


/*===========================
  Preloader
============================ */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
	background:#fff;
}

.preloader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 115px;
	height: 25px;
	margin: 0px 0 0 -55px;
	z-index: 1500;
}


.flower-loader {
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  width: 16px;
  height: 16px;
  background: #e96;
  border-radius: 100%;
  -moz-box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
  -webkit-box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
  box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
  -moz-animation: flower-loader 5s infinite ease-in-out;
  -webkit-animation: flower-loader 5s infinite ease-in-out;
  animation: flower-loader 5s infinite ease-in-out;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

@keyframes flower-loader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
    -webkit-box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
    box-shadow: white 0 0 15px 0, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px;
  }
  50% {
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
    -moz-box-shadow: white 0 0 15px 0, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px;
    -webkit-box-shadow: white 0 0 15px 0, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px;
    box-shadow: white 0 0 15px 0, #fd8 12px 12px 0 4px, #fd8 -12px 12px 0 4px, #fd8 -12px -12px 0 4px, #fd8 12px -12px 0 4px;
  }
}

/*===========================
 Top Bar
============================ */

.top-bar {
	transition: all .2s ease-in-out;
}

.top-bar ul,ol {
    margin-bottom: 0px;
    padding: 0px;
}

.top-bar a {color: #fff;}

.top-bar .contact-details p {
    font-size: 13px;
    display: inline-block;
    color: #fff;
    margin-right: 20px;
		margin-bottom: 0;
    line-height: 30px;
}
.top-bar i {margin-right:10px;}

/*.top-bar .contact-details p:first-child {margin-left: 0px;}*/

/* HTML5 Marquee */

.top-bar .marquee {
    margin: 0 auto;
	  font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
	color:#fff;

}

.marquee p{
	animation: marquee 15s linear infinite;
	line-height:36px;
	    line-height: 37px;
    margin: 0px;
}
/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}


/*===========================
  Navigation
============================ */

.navbar {
	margin-bottom: 0;
	z-index:999;
	border:0px;
	background:#fff;
	border-radius: 0px 0px 20px 20px;
	box-shadow: 6px 6px 10px rgba(195, 191, 191, 0.2);
}

.navbar-nav > li > a {padding: 10px 20px;}

.navbar-custom ul.nav li a {
    font-size: 14px;
    font-weight: 600;
    /* line-height: 70px; */
    text-align: center;
    transition: all .2s ease-in-out;
    font-family: 'Open Sans',sans-serif;
    background: transparent;
    color: #333;
    /*letter-spacing: 0.5px; */
    border-radius: 30px 10px;
    display: inline-block;
    margin: -5px
}

.navbar-custom ul.nav li a:hover,
.navbar-custom .nav > .active > a {
	color:#fff;
}

.navbar-custom ul.nav ul.dropdown-menu {
	border-radius: 0px 0px 20px 20px;
	text-align: center;
	border: 0px;
}

.navbar-custom ul.nav ul.dropdown-menu li:last-child {border-bottom: none;}

.navbar-custom ul.nav ul.dropdown-menu li a {
	margin: 5px;
    line-height: 40px;
	display:inline-block;
}

/* Responsive navbar  */

.navbar-toggle:focus,
.navbar-toggle:active{outline: 0;}

.navbar-toggle{
	font-size: 35px;
	color: #fff;
	transition: all .2s ease-in-out;
	position: relative;
	float: right;
	border-radius: 50%;
	min-width: 70px;
}

.navbar-right {
	margin-right: 0px;
	height: 70px;
	line-height: 70px;
}

.alert.alert-top {
		font-weight:500;
    margin-top: 0px;
	color:#333;
	padding:3px;
	border-radius:0px!important;
  margin-bottom:0;
}
.alert-top .close {
	    padding: 0px 20px;
    font-size: 28px;
    font-weight: 600;
    opacity: 1;
}

/*===========================
  Logo
============================ */

.navbar-brand  {
    margin: auto;
    position: absolute;
    transition: all .2s ease-in-out;
}

.navbar-brand img {
	max-width: 225px;
    position: absolute;
    left: 0;
    right: 0;
	top: 20%;
}

/* ===========================
 Main Slider
============================ */

#layerslider{
	height:700px!important;
  margin-top: 98px;
}

.ls-bottom-nav-wrapper{
    display: none;
}
.ls-inner, .ls-slide {
    border-radius: 0px 0px 50px 50px;
}

.ls-bg-mt {
	margin-top: 0 !important;
}

.ls-bg-mt1 {
	margin-top: -50px !important;
}

.ls-bg-mt2 {
	margin-top: -120px !important;
}

/* Slider text boxes  */

.header-text {
	padding-bottom: 170px !important;
	padding-top: 60px !important;
    text-align: center;
    min-width:60%;
    border-radius: 30px;
    background: #fff;
}

.title {
	font-size: 50px;
	display: block;
	font-family: 'Crafty Girls',serif;
	text-transform: none;
	color: #2F2F2F;
}
/* Parallax itens  */

.parallax1{
	top:62%!important;
   left:75%!important;
}

.parallax2{
	top:74%!important;
   left:18%!important;
}
.ls-l.video{top:20%!important; left:40%!important;}


/*===========================
  Services section
============================ */

.service  {margin-bottom:50px;}

.service h4 {
	text-align: center;
	position: relative;
	transition: background 0.5s ease-out;
	padding:15px;
	border-radius:30px 10px;
	color:#fff;
	font-weight:400;
	display:inline-block;
	margin-bottom:30px;
	margin-left: -100px;
}
.service h4.right {
	margin-right: -100px;
	z-index:10;
}
/* Carousel services boxes */

.owl-carousel .service h4 {
	margin-left: 0px;
	display: block;
	margin-top: -20px;
}
.owl-carousel.service h4.right {
	margin-right: 0px;
	display: block;
}
.owl-carousel .service  {
   padding:20px;
    border-radius: 20px;
}


/* ===========================
  About Us Page
============================ */

/* Jumbotron */

#about .jumbotron {
	background : url(../img/about.jpg) no-repeat;
}

/* ===========================
--- About Us section
============================ */

/* Feature icons */

#about .media i{font-size:70px;
    margin: 20px;
    padding: 10px;
    vertical-align: middle;
}

#about .media-heading {
    margin-top: 0;
    margin-bottom: 5px;
    border-bottom: 2px dashed;
    padding-bottom: 10px;
}
.row.features{margin: 40px 0 40px;}

.row.features .media{margin-top: 0px;}

/* ===========================
--- Testimonials section
============================ */

#testimonials {
	background: url(../img/flower_ornament.png)bottom right no-repeat;
	background-color: #fff;
}

#owl-testimonials img{
    margin-bottom: -50px;
	z-index: 10;
    position: relative;
}

/* Quote */

.quote-test {margin-top:10px;}

.quote-test p {font-size:18px; display:inline;}

.quote-test blockquote {padding: 30px 20px 0px 20px;}

.quote-test small{
	margin-top: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
	font-family: 'Montserrat',serif;
	color:#333;
}

.quote-test i{margin-right:10px;}

/* ===========================
  Curriculum Page
============================ */

#curriculum .jumbotron {
	background : url(../img/curriculum.jpg) no-repeat;
}

.box_icon > .icon {
    text-align: center;
    position: relative;
}

.box_icon > .icon > .image {
    position: relative;
    z-index: 2;
    margin: auto;
    width: 88px;
    height: 88px;
    border: 7px solid white;
    line-height: 68px;
    border-radius: 50%;
    vertical-align: middle;
	font-size: 50px;
	color:#fff;
	transition: all 0.3s;
}


.box_icon > .icon > .info {
    margin-top: -24px;
    padding: 15px 0 10px 0;
	padding: 40px;
	border-radius:20px;
}

/* ===========================
 Menu Page
============================ */

#menu .jumbotron {
	background : url(../img/menu.jpg) no-repeat;
}
/* menu calendar */
.fc-grid .fc-day-content {
	clear: both;
	padding: 20px 2px 20px; /* distance between events and day edges */
}

.fc-event-inner {
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-align:center;
}
.fc-event {
	border:0px;
	padding: 5px 0px 5px 0;
	font-size: 14px;
	cursor: default;
}

.fc-inner-day-header{
   text-align:center;
   font-weight:800;
   padding: 15px 0px 5px 0;
   border-bottom: 1px dashed #cecece;
}
.fc-widget-header {
	color:#fff;
	padding: 15px!important;
	text-transform:uppercase;
	text-align:center;
}
.fc-view {
	border-radius: 20px;
}

.fc-widget-header,
.fc-widget-content {
	border: 0px ;
}

.fc-header-left {
	display:none;
}
.menu-table th {
	display: none;
	color:#fff;
	font-weight: 800;
	text-transform: uppercase;
}
.menu-table th, .menu-table td:before {
	font-weight: 800;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.menu-page h3 {margin-bottom:30px;}

.menu-table {
	width:100%;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 50px;
}

.menu-table th, .menu-table td {
	display: table-cell;
	padding: .25em .5em;
}
.menu-table th:first-child, .menu-table td:first-child {padding-left: 0;}

.menu-table th:last-child, .menu-table td:last-child {padding-right: 0;}

.menu-table th, .menu-table td {
	padding: 1em !important;
	line-height: 26px;
}

/*===========================
  Staff
============================ */

#staff .jumbotron {
	background : url(../img/staff.jpg) no-repeat;
}

.team-item img {
  max-width: 100%;
  transition: all 0.3s;
  border: 10px solid;
  border-radius:10px 10px 0px 0px;
}

.team-item .team-caption {
    transition: all 0.3s;
    padding: 5px;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 0px 0px 5px 5px;

}

.team-item .team-caption h5,
.team-item .team-caption p {
  margin: 0;
  color: #fff !important;
  font-weight:400;
  padding:0px;
}
.team-item a,.team-item a:hover{color:#fff;}

.team-item:hover img {border:10px solid}

/*===========================
  Staff Single Page
============================ */

#staff-single .jumbotron {
	background : url(../img/staffsingle.jpg) no-repeat;
}

/*===========================
  Staff section
============================ */
#staff-homepage {
	background: url(../img/bird_ornament.png) no-repeat;
	background-color: #fff;
}

/* ===========================
--- Calendar
============================ */

#calendar .jumbotron {
	background : url(../img/calendar.jpg) no-repeat;
}

#calendar1 {width: 100%;}

#calendar-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

#calendar-wrap li {
  display: block;
  float: left;
  width: 14.38%;
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  margin-right: -1px;
  margin-bottom: -1px;
  transition: all 0.3s;
  font-weight: 800;
}

#calendar1 ul.weekdays {
  height: 40px;
}

#calendar1 ul.weekdays li {
  text-align: center;
  text-transform: uppercase;
  line-height: 20px;
  border: none !important;
  padding: 10px 6px;
  color: #fff;
  font-size: 13px;
}

#calendar1 .cal-days li {
  height: 180px;
  transition: all 0.3s;
}

#calendar1 .cal-date {
     text-align: center;
    margin-bottom: 5px;
    padding: 4px;
    width: 20px;
    border-radius: 50%;
    float: right;
    font-weight: 800;
}

#calendar1 .event {
  clear: both;
  display: block;
  font-size: 12px;
  border-radius: 4px;
  padding: 5px;
  margin-top: 40px;
  margin-bottom: 5px;
  line-height: 14px;
  color: #fff;
  text-decoration: none;
  font-weight:800;
}

#calendar1 .event-desc {
	color: #fff;
	margin: 3px 0 7px 0;
	text-decoration: none;
	font-size: 15px;
	line-height:18px;
	font-weight:400;
}

/* ===========================
--- Gallery section
============================ */

#gallery {
	background: url(../img/cloud_ornament.png) right top no-repeat;
	background-color: #fff;
}

.portfolio-item{
	margin: 10px;
    position:relative;
}

/* Isotope */

.isotope-item { z-index: 2 }
.isotope-hidden.isotope-item { z-index: 1 }
.isotope,
.isotope .isotope-item {transition-duration: 0.8s;}

.isotope-item {
    margin-right: -1px;
    backface-visibility: hidden;
}

.isotope {transition-property: height, width;}

.isotope .isotope-item {transition-property: transform, opacity;}

/* Gallery */

.gallery-item.selected img {transition: opacity 1s ease-in-out;}

.gallery-thumb {
    display: block;
    position: relative;
    overflow: hidden;
	border-radius: 20px;
}

.scrollimation .gallery-thumb {
    transform: translateY(100px);
    opacity: 0;
    transition: opacity .4s ease-out, transform .4s ease-out;
}

.touch .scrollimation .gallery-thumb,
.scrollimation .gallery-thumb.in {
    transform: translateY(20px);
    opacity: 1;
}

/* thumbnail Overlay */

.gallery-thumb .overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
	border-radius: 20px;
    transition: opacity .3s ease-out;
}

.gallery-thumb:hover .overlay-mask {opacity:1;border:10px solid ;}

.gallery-thumb .link {
    display: inline-block;
    margin: 0;
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    opacity: 0;
    position: absolute;
    height: 80px;
    width: 80px;
    top: 0%;
	vertical-align:middle;
    left: 50%;
    text-align: center;
    z-index: 3;
    margin-left: 20px;
    transform: translateX(200px);
    transition: all .3s ease-out;
	border-radius:20px;
}

.gallery-thumb:hover .link {
    transform: translate(0);
    opacity: 1;
    transition: all .3s ease-out .3s;
}

.gallery-thumb .link.centered {
    margin-left: 20%;
    transition-delay: 0s;
}

.gallery-thumb i {transition: all 0.2s ease-in-out;color:#fff;}

.gallery-thumb:hover .link.centered {
    transform: translateY(0);
    transition-delay: 0.1s;
	line-height:70px;
}


/*===========================
 Blog Posts & Blog home
============================ */

/* Jumbotron */

#blog-main .jumbotron {
	background : url(../img/blogmain.jpg) no-repeat;
}
#blog-post .jumbotron {
	background : url(../img/blogpost.jpg) no-repeat;
}


/*Headers */

.blog-post h3 {
    padding: 20px 0px 0px;
	transition: all 0.2s ease-in-out;
}

#blog-page h6 {margin-bottom :10px;}

/* date & category badge */

.date-category {
	position: absolute;
	z-index: 10;
	color: #fff;
	border-radius: 10px;
	min-width:130px;
	padding-top: 20px;
	right: 7%;
    margin-top: 10px;
}

.date-category p {
	color: #fff;
    font-family: crafty girls;
    font-size: 20px;
    line-height: 24px;
}

/* Post info */

.post-info {
	margin-bottom: 10px;
}
.post-info p {
	margin-right: 5px;
	display: inline-block;
	font-weight:600;
}
.post-info p + p {
    line-height: 0px !important;
}
.post-info i {
	margin-right: 5px;
}

/* blog post */

.blog-post {
	border-bottom: 1px dashed #cecece;
	padding: 60px 40px 60px 0px;
	transition: all 0.2s ease-in-out;

}
.blog-post:last-child {border-bottom: 0px;}

.blog-post:first-child{padding-top:0px;}

.blog-post i {margin-right : 5px;}

.single-page .blog-post h3{margin-top:0px;}

.post-main img{margin-bottom:20px;}

/* Blog tags */

.blog-tags a {
	padding : 10px;
	color : #fff;
	display : inline-block;
	font-size : 16px;
	line-height : 11px;
	border-radius : 10px;
	margin-bottom : 5px;
	margin-right : 2px;
	text-decoration : none;
	font-family: 'Montserrat',serif;
	transition: all .2s ease-in-out;
}

.blog-tags a:hover {color : #fff;}

.post-info .blog-tags {margin-top:20px;}

/* Comments */
.comment-form.media{
	margin-top:30px;
}

.comments-block{
	padding:20px;
	margin:30px 0px 60px 0px;
}

.comment.media-body {margin-right: 10px;}

.comments-block .btn{padding: 5px;}

.comments-block .media-object{
	max-width:120px;
   float: left;
   margin-right:10px;
}

.comment {
  margin: 40px auto 20px;
  padding: 30px;
  position: relative;
}

.comment {
 border-radius:20px;
}

.comment:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid #313a47;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 21px;
  left: -15px;
}

.comment .content:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 13px solid #cc3925;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: absolute;
  left: -13px;
}
.nested {display: inline-block;}


/*===========================
 Call to Action section
============================ */

#call-to-action{
	background-image: url(../img/schedule-a-tour.jpg);
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
	padding-top:120px;
}

/*===========================
  Contact
============================ */
#contact .jumbotron {
	background : url(../img/contact.jpg) no-repeat;
}

#contact i{
	font-size:25px;
	vertical-align:middle;
	margin-right:8px;
}

.contact-info p:first-child {margin-left: 0px;}

.contact-info p {
	margin-left: 10px;
	display: inline-block;
}

.tour .col-lg-6 {
	margin-bottom: 50px;
}

/*Map */

#map-canvas {
	max-width:100%;
	height: 300px;
	border-radius:20px;
	margin-top:60px;
}


/*===========================
  Footer
============================ */

/* footer */

footer {padding:25px; border-radius:30px; margin-bottom:70px;}

footer p{
	text-align:center;
	line-height:20px;
}
footer i{
	margin-right:8px;
}

footer h6{
	margin-top:30px;
    margin-bottom:20px;
}

footer img{max-width: 250px;}

footer .footer2,
footer .footer3 {
	 padding: 25px 0;
 }

 @media (min-width:1200px) {
 	 .social-media_lindsay {
		 margin-top: 80px !important;
	 }

	 .social-media_riggs {
		 margin-top: 50px !important;
	 }
 }

 .footer3 .hours {
	 font-size: 20px;
 }

 .footer2 .social-media {
	 margin: 10px 0;
 }

 .footer2 .social-media a i {
	 font-size: 16px;
 }

 .footer2 .social-media a:first-child i {
	 padding: 10px;
 }

 .footer2 .social-media a:nth-child(2) i {
	 padding: 10px;
 }

.footer2 .social-media a i,
.footer3 .social-media a i {
	padding: 7px 10px;
}

.footer2 p,
.footer3 p {
	text-align: center;
}

/* Mailchimp message */

#mce-error-response,
#mce-success-response{display:none;}

/* Go to top icon */

.back-to-top {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 42px;
	z-index:119;
}

.back-to-top i {
    display: block;
    width: 44px;
    height: 44px;
    line-height: 40px;
	font-size:42px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

/*===========================
  Miscellaneous
============================ */

/* Parallax objects */

.parallax-object1{
	position:absolute;
	top:auto;
	margin-top:100px;
	right:0;
	z-index:99;
}

.parallax-object2{
	position:absolute;
	top:auto;
	left:0;
	z-index:99;
}

.parallax-object3{
	position:absolute;
	top:auto;
	left:0%;
	z-index:99;
}

/* Owl-carousel */

.owl-carousel {padding:0px 40px;}

.owl-carousel .owl-item {perspective: 1000px;}

.owl-prev,.owl-next{
      position: absolute;
    top: 50%;
    margin-top: -50px;
    text-align: center;
}
.owl-prev{
	border-radius: 10px;
    left: 0px;
    box-shadow: 6px 6px 0px rgba(103, 102, 102, 0.2);
}
 .owl-next {
   border-radius: 10px;
	right: 0px;
    box-shadow: 6px 6px 0px rgba(103, 102, 102, 0.2);
}

.owl-prev:hover, .owl-next:hover {transition: all .3s ease-in-out;}

.owl-prev i, .owl-next i {
	color:#fff;
    font-size: 30px;
    padding: 20px 10px;
}

.owl-carousel.owl-loaded {
    display: block;
    clear: both; /* Important fix */
}

.owl-dots{
	text-align:center;
	margin-top:20px;
}

.owl-theme .owl-dots .owl-dot{display:inline-block;}

.owl-theme .owl-dots .owl-dot span{
	border: 2px solid #cecece;
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 1rem;
	height: 1rem;
	margin: 0 0.5rem;
	border-radius: 50%;
	cursor: pointer;
	color:#333;
}

.owl-theme .owl-dots .owl-dot span:before{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	transition: transform 0.3s;
	transform: translate(-50%, -50%) scale(0);
}

.owl-theme .owl-dots .owl-dot span:hover:before {
	transform: translate(-50%, -50%) scale(1);
}

.owl-theme .owl-dots .owl-dot.active span:before {
	transform: translate(-50%, -50%) scale(1);
}

/* Sections */

section .container,
section .container-fluid  {
	padding-top: 70px;
    padding-bottom: 70px;
	margin-bottom:70px;
	margin-top:70px;
}

.small-section .container {padding:70px 0 70px 0;}

section{background:#fff;}

.locations .btn {
	margin: 0 10px;
}

/* Sections heading */

.section-heading{
	margin-bottom:50px;
	text-align:center;
	z-index:99;
}

/* elements page */

.elements {
	margin-top:40px;
	margin-bottom:40px;
}
.elements h5 {
	padding: 10px;
    border-bottom: 2px solid;
}

.glyph {
	display: inline-block;
	text-align: center;
	vertical-align: top;
}
.glyph .glyph-icon {
	padding: 10px;
	display: block;
	font-family:"Flaticon";
	font-size: 44px;
	line-height: 1;
}
.glyph .glyph-icon:before {
	font-size: 42px;
	color: #2F2F2F;
	margin-left: 0;
}
.page-header {border-bottom: none;}

/* Img Shapes */

.img-circle {border: 10px solid;}

.img-paragraph{margin: 0px 25px 10px 0px;}

.img-curved {border-radius: 30px 10px;}

/* Image Gradient Hover effect */

.img-effect {overflow:hidden;}

.img-effect img{transition: opacity 0.7s, transform 2.5s;}

.img-effect:hover img {
	transform: scale3d(1.2,1.2,1);
}
.img-effect.no-grad:hover img {
	opacity: 1;
	transform: scale3d(1.2,1.2,1);
	background: 0;
}

/* Dropdown */

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    border-radius: 20px;
	transition: all .2s ease-in-out;
}
/* Pagination */

.pagination>li>a,
.pagination>li>span {
	margin: 0 5px;
	border:0;
	font-weight:600;
	color:#fff;
	border-radius:50%!important;
	transition: all .2s ease-in-out;
}

.pagination>li>a:hover,
.pagination>li>a:focus {color:#fff;}

/* Alerts */

.alert {
	padding: 25px;
	margin-bottom: 20px;
	border: 1px solid transparent;
    border-radius: 30px 10px;
	font-size: 16px;
}

/* Breadcrumbs */

.breadcrumb {
    padding: 8px 25px;
    margin-bottom: 20px;
    list-style: none;
	text-align:center;
	display:inline-block;
	font-size:18px;
	border-radius: 30px 10px;
}

.breadcrumb a{color: #fff;}

/* Labels */

.label {
    padding: .2em .6em .3em;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    color: #fff;
    border-radius: 10px;
}

/* Progress bar */

.progress-bar {
	height:10px;
	box-shadow: 6px 6px 0px rgba(103, 102, 102, 0.2);
}

.progress {box-shadow: none;}

/* fade tab transition */

.fade {
	opacity: 0;
	transition: opacity 0.55s linear;
}
/* Page  */

.pages.boxed {margin-top:160px;}

.pages .container {margin-top:0px;padding-top:0px;}

.image-page {margin:20px 0;}

/* Dropdown */

.dropdown-menu {
    font-size: 16px;
    border: 0px;
    border-radius: 30px;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
	color:#fff;
	transition: all .2s ease-in-out;
}

/* Pager */

.pager li > a, .pager li > span {
    display: inline-block;
    padding: 10px 24px;
    font-size: 18px;
    color: #fff;
    border: 1px solid;
	font-family: 'Crafty Girls',serif;
    border-radius: 0px;
    border-radius: 30px 10px;
	transition: all .2s ease-in-out;
}

.pager li > a:hover { color:#fff;}

/* tab content */

.tab-content {
    padding: 30px;
    border-radius: 20px;
}
/* Nav-tabs */

.nav-tabs {
	text-align:center;
	border-bottom: 0;
}

.nav.nav-tabs > li.active > a:hover,
.nav.nav-tabs > li.active > a:focus,
.nav.nav-tabs > li >a:hover{ border: 0;}

.nav.nav-tabs > li {
    float:none;
    display:inline-block;
	margin-bottom:20px;
}

.nav.nav-tabs > li > a {
	position: relative;
	display: block;
	letter-spacing:0.2px;
	min-height: 50px;
	line-height: 57px;
	border: 0;
	font-family: 'Montserrat',serif;
	padding: 10px 35px;
	color:#fff !important;
	font-size: 22px;
	border-radius: 30px 10px;
	transition: all .2s ease-in-out;
}

/* Panels */

.panel {border: 0; background: transparent; box-shadow: none;}

.panel-title {font-size: 18px;}

.panel-default > .panel-heading + .panel-collapse > .panel-body {border: 0;}

.panel-heading a {
	border-radius:0px;
	display: block;
	text-transform:none;
    color: #fff;
    padding: 20px;
	border:0px;
	transition: all .2s ease-in-out;
	border-radius: 30px 10px;
}
.panel-heading a:hover, .panel-heading a:focus{color: #fff;}

.panel-group .panel+.panel {margin-top: 0px; }

.panel-group .panel-heading {border-bottom: 0px;}

.panel-group .panel-heading+.panel-collapse>.panel-body {border-top: 0px;}

.panel-heading {padding: 10px 0px;  }

.panel-heading [data-toggle="collapse"]:after {
	content: "\f077";
	font-family: FontAwesome;
	float: right;
	font-size: 18px;
	line-height: 22px;
}

.panel-heading [data-toggle="collapse"].collapsed:after {transform: rotate(180deg);}

/* Lists */

ul {
    line-height: 30px;
}
ul.no-margin{
    margin: 20px;
    padding: 0;
}

/* Buttons */

.btn {
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    padding: 12px 25px;
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 1em;
    outline: none;
    position: relative;
    font-size: 14px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-shadow: 10px 6px 0px rgba(103, 93, 98, 0.23);
}
.btn:after {
  content: "";
  position: absolute;
  height: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}
.btn:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  background-color: inherit;
  border-radius: 10px;
  z-index: -1;
}

.btn:hover:after {height: 100%;}

.btn-group.open .dropdown-toggle {box-shadow: none;}

.btn-slide {
	padding: 12px 25px !important;
	font-size: 14px !important;
	box-shadow: 10px 11px 0 rgba(103, 93, 98, 0.23);
}

/* Forms */


.form-control {
    display: block;
    width: 100%;
    height: 47px;
    border: 0;
    font-size: 17px;
    outline: 0;
    box-shadow: none;
    /*padding: 23px;*/
    border-radius: 10px;
    border: 1px solid;
	margin-bottom: 10px;

}

.input-group-btn:last-child>.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
	margin-top: -3px;
}
.input-group-btn .btn{margin-top:-1px;}

.input-group-btn span,.btn span{color:#fff;}

.form-control.form-control.input-lg{margin-top:0px;}

.input-group .form-control:focus {box-shadow: 0 0 10px rgba(255, 255, 255, 1);}

.form-control,.textarea-field:focus,.input-field:focus {outline:0 none;}

textarea {
	height:150px;
	resize:none;
}

textarea.form-control:focus{outline:0 none;}

/* search form */

.search-group .input-group-addon{
    background: white !important;
    border-radius: 0px 10px 10px 0px;
	border:0px;
}
.search-group .form-control{
	 border:0;
}
.search-group button{
    border:0px;
    background:transparent;
}
.search-group .fa{
    color:#808080;
}
/* BIG Social Media Icons */

.social-media {
	width:100%;
	text-align: center;
	margin-top:30px;
	margin-bottom:30px;
}

.social-media a {
	display:inline-block;
	font-size:30px;
}

.social-media a i {
    font-weight: normal;
    color: #fff;
    transition: .3s;
    margin: 3px;
    padding: 10px 20px;
    border-radius: 30px 10px;
}

.social-media i{transition: color .3s ease-in-out;}

/* Small Social Media Icons */

.smaller.social-media a i {
    font-size: 18px;
    transition: .3s;
	margin:0px;
    min-width: 25px;
    border-radius: 50%;
    background: none;
	padding:0;
	color:#fff;
}

.smaller.social-media a i:hover {background: none;}

.smaller.social-media {
	margin-top:10px;
	margin-bottom:10px;
}
/* Centered columns */

.col-centered{
    float: none;
    margin: 0 auto;
}

/* Blockquote */

 blockquote {
    padding: 30px;
    font-size: 18px;
	line-height:26px;
	font-weight: 700;
	border-radius:20px;
	border-left: none;
	text-align: center;
	font-family: 'Crafty Girls',serif;
}

 blockquote:before {
  content: "\f118";
  font-family: 'Flaticon';
  font-size: 2.3em;
  line-height: 0.1em;
  margin-right: 0.5em;
  vertical-align: 0.2em;
}

/* Nav-pills */

.nav-pills{
	display: inline-block;
	margin-bottom:20px;
}

.nav-pills>li>a {
	transition: all .2s ease-in-out;
	border-radius: 30px 10px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.nav-pills>li>a:hover,
.nav-pills>li>a,
.nav-pills .nav > li > a:hover{
	color: #fff;
	font-size:20px;
	font-weight:400;
	margin:5px;
	padding:15px;
}

/* Tables */

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid;
}

/*.table > tbody > tr:first-child > td {border: none;}*/

/* Wells */

.well.white {background-color:#fff;}

.well{
	border-radius: 20px;
    border: 0;
    box-shadow: none;
    margin-bottom: 20px;
    padding: 20px;
}

.small-section .well{
	padding: 30px;
    margin-bottom: -70px;
}

.well .list-unstyled {
    padding-left:5px;
    list-style: none;
    line-height: 30px;
	font-weight:400;
	font-family: 'Open Sans',sans-serif;
}

.well .list-unstyled li:before {
	font-family: 'Flaticon';
	content: '\f127';
	font-weight:normal;
	font-size: 13px;
	margin:0 10px 0 10px;
}

/* Media */

.media {margin-top: 45px;}

.media-heading small {
    font-weight: 700;
    display: block;
    margin: 10px 0 20px;
	line-height: 20px;
}
/* Margins */

.margin1 {margin-top: 50px;}

/* Boxed theme */

.boxed {
	max-width:1000px;
	margin:0 auto;
}
.boxed .navbar .container{
    width: 1200px!important;
    margin: 0 auto;
}

.boxed section{border-radius:40px;}

/* Jumbotron */

.jumbotron {
	background-size:cover !important;
	background-position:center center !important;
	padding:40px;
	height:300px;
	color:#fff;
	border-radius: 40px;
	border-bottom: 10px solid;
	text-align: center;
	margin-bottom:60px;
}
.jumbotron h1 {
    color: #fff;
    display: inline-block;
    border-radius: 30px 10px;
    padding: 20px 30px;
    text-align: center;
    margin-top: 190px;
	font-size:50px;
}
/* Sidebar */

.sidebar{
    border-left: 1px dashed #cecece;
}
.sidebar.side-left{
    border-right: 1px dashed #cecece;
	border-left:0px;
}

/* List group */

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    border: 1px solid #fff;
	transition: all 0.6s;
}
a.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover {
    color: #fff;
    text-decoration: none;
}
/*===========================
  Media Queries
============================ */

/************ min width 1200px *************/

@media (min-width: 1200px) {
  .container {
    width: 900px!important;
  }
}

/************ max width 1200px *************/

@media (max-width: 1200px) {

	.navbar-nav > li > a {padding: 10px 10px;}

	/* background */

	#owl-about {background-image:none;}

 	#call-to-action {background-attachment:scroll;}

	/* Slider */

	#layerslider{height:600px!important;}


}

/************ min width 992px *************/

@media (min-width: 992px) {
	.top-bar {
		padding: 10px 0;
	}
}



/************ max width 991px *************/

@media (max-width: 991px) {

	/* Slider */

	#layerslider{height:480px!important; }

	.subtitle {
		font-size: 18px;
		line-height:25px;
	}
	.ls-bottom-nav-wrapper {margin-top: -20px!important;}

	/* Stop Float on hover*/

	.float:hover {margin-top: 0px;}

	/* Responsive margin*/

	.res-margin  {
		padding-top: 30px;
	}
	/*navbar */

	.nav>li {text-align: center; font-size:20px;}

	/* navbar collapse at 991px */
	.navbar-header {
		float: none;
	}

	.navbar-toggle {
		display: block;
	}

	.navbar-collapse.collapse {
		display: none !important;
	}

	.navbar-collapse.collapse.in {
		display: block !important;
		overflow-y: auto !important;
	}

	.navbar-nav {
		margin: 0;
		float: none !important;
			height: 100%;
	}
	.navbar-right {
	 line-height: 0px;
	}

	.navbar-nav li {
		float: none;
	}

	.navbar-nav li > .dropdown-menu {
		border: 0;
		float: none;
		width: auto;
		position: static;
		box-shadow: none;
		background: inherit;
	}

	/* Logo */

	.navbar-brand {
		position: relative;
		height: 80px;
		padding: 0px;
		margin: 0;
		left:3%;
	}
	.navbar-brand img {max-height: 65px;}

	/* Top-bar */

	.top-bar{padding: 10px;}

	/* Space between sections */

	.section-heading {margin-bottom: 30px;}

	/* Nav tabs */

	.nav-tabs > li {margin-bottom: 10px;}

	.nav.nav-tabs > li > a {border-radius: 20px;}

	/* miscelaneous */

	.service h4.right {
		margin-right:0px;
		text-align:center;
    }
	.service h4 {
		text-align: center;
		 margin-left:0px;
     }
	.social-media a {margin-top: 30px;}

	.sidebar{border:0px;}

	.back-to-top{display:none;}

	.blog-post {padding: 30px; }

	.img-paragraph {margin: 0px 0px 20px 0px;}

    #staff-homepage,#testimonials,#gallery{background-image:none;}


}
/************ min width 768px *************/

@media (min-width: 768px){

  #navbar-brand .container {
	min-width: 700px !important;
	max-width:1170px;
	width: 100%;
  }

  .pages.boxed {margin-top: 160px;}

}
/************ max width 767px *************/

@media (max-width: 767px) {

	#layerslider{height:300px!important;margin-top: 70px;}

	.header-text{padding-bottom: 70px !important;}

	.ls-nav-prev,.ls-nav-next {display: none !important; }

	.ls-bottom-nav-wrapper{margin-top: 0px!important;}

	#callout .container {background-image:none;}

	.pages.boxed {margin-top: 80px;}

   	.top-bar {text-align:center!Important;}

	#calendar1 .weekdays,
	#calendar1 .other-month {display: none;}

	#calendar1 li {
	height: auto !important;
	border: 1px solid #ededed;
	width: 100%;
	padding: 10px;
	margin-bottom: -1px;
	}

	#calendar1 .cal-date {float: none;}

	.btn-slide {
	    padding: 5px 8px !important;
	    font-size: 10px !important;
			border-radius: 5px !important;
			box-shadow: 5px 3px 0px rgb(103 93 98 / 23%) !important;
	}

	.btn-slide:before,
	.btn-slide:after {
		display: none;
	}

}
/************ min width 480px *************/

@media (min-width: 768px) {

	/* Slider */

	#layerslider{margin-top: 140px;}
}

/************ max width 480px *************/
@media (max-width: 480px) {

	/* Menu table */
	  .menu-table th {
    display: none;
    }

	.menu-table td {
		display: block;
	}
	.menu-table td:first-child {
		padding-top: .5em;
	}
	.menu-table td:last-child {
		padding-bottom: .5em;
	}
	.menu-table td:before {
		content: attr(data-th) ": ";
		font-weight: bold;
		width: 6.5em;
		display: inline-block;
	}

	.menu-table th, .menu-table td {
		margin: .5em 1em;
		line-height: 30px;
	}
	.menu-table th, .menu-table td {text-align: left;}

	.menu-table td {display: table-caption;}

	/* navbar */

    .navbar-brand {
		background:none;
		height:50px;
		width:60px;
	}

	.navbar-brand img {
		max-width: 140px;
		position: absolute;
		left: 0;
		right: 0;
		top: 42%;
		margin: auto;
	}

	.navbar-toggle {
		font-size: 25px;
		color: #fff;
		transition: all .2s ease-in-out;
		position: relative;
		float: right;
		border-radius: 50%;
		min-width: 55px;
    }

	/* slider */

	#layerslider{
		height:190px!important;
	}

	.header-text{padding-bottom: 10px !important;}


	.ls-bottom-nav-wrapper {display:none;}

	/* section */

	section .container {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.section-heading h2{
		border: 0;
		line-height: 32px;
		letter-spacing: 0px;
		font-size: 28px;
    }
	.section-heading {margin-bottom: 3rem;}

	/* titles*/

	.jumbotron h1 {
		border-radius: 30px 10px;
		padding: 10px;
		word-break: break-all;
		margin-top:120px;
     }

	h1 {
		font-size: 30px!important;
		line-height: 38px;
	}

	h3 {
		font-size:28px;
		text-align:center;
	}
	.blog-post h3 {
		text-align:left;
	}

	/* Miscellaneous */
	footer p {
		text-align: left;
		line-height: 20px;
		word-wrap: break-word;
    }
	.input-group-btn:last-child>.btn,.input-group .form-control:first-child{
		border-radius:10px;
		margin-top:10px;
	}
	.search-group.input-group-btn:last-child>.btn,.search-group.input-group .form-control:first-child{
		border-radius:10px 0px 0px 10px;
		margin-top:0px;
	}

	.input-group .form-control,  .input-group-btn {display: inline;}

	blockquote{padding:40px 0;}

	.section-heading{margin-bottom:3em;}

	.navbar.navbar-custom.navbar-fixed-top {margin-bottom: 30px;}

	.nav-pills> li.active:after, .nav-pills> li.active:before {top: -45%;}

	.nav-pills > li {float: none;}

	.cloud-divider {display:none;}

	.date-category {display:none;}

	.comment {padding: 10px;}

	.comments-block .media-object {
		max-width: 100%;
		float: none;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 20px;
    }
	.comment.media-body {margin-right: 0px;}

	.owl-carousel {padding: 20px;}

	.tab-pane h3 {margin-top:10px;}

	.glyph .glyph-icon:before {font-size: 24px;}

	.box_icon > .icon > .info {padding: 20px;}

	.jumbotron {
		padding: 10px;
		height:150px;
	}

}

/************ max width 300px *************/
@media (max-width: 300px) {

	.navbar-brand img {
		max-width: 120px;
		top: 42%;
	}

	/* Slider */

	#layerslider {height:120px!important; }

	.header-text{padding-bottom: 2px !important;}


	/* Miscellaneous */

	.small-section .well {padding: 10px;}

	.pricing-palden .pricing-price {font-size: 3em;}

	.container-fluid {
		padding-right: 0px;
		padding-left:0px;
	}

	.label,.table {font-size: 14px;}

	.table table,
	.table thead,
	.tabletbody,
	.table th,
	.table td,
	.table tr { display: block; }

	td.text-left,td.text-right{text-align:center;}

	.owl-prev i, .owl-next i{display:none;}

	/* Nav-tabs */

	.nav.nav-tabs > li > a {
	    min-height: 30px;
		font-size: 16px;
		padding: 15px 15px;
		line-height: 15px;
	}
	/* Headers */

	.section-heading h2,.page-header h2 {
		line-height: 26px;
		font-size: 24px;
	}
	h1,.jumbotron h1{font-size:22px !important;}

	h2:before{display:none;}

	h4{font-size:16px;}

	h5{font-size:16px;text-transform:uppercase;}

}
