/* 
// Table of content
// -----------------------------------------------------------------------------
// - 1. Base
// - 2. Typography
// - 3. Helpers
*/
/* -----------------------------------------------------------------------------
// 1. Base 
// ----------------------------------------------------------------------------- */
img {
  max-width: 100%; }

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

.spinner {
  position: relative;
  top: 30%;
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: #dcb879;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out; }

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    opacity: 0; } }
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }
/* -----------------------------------------------------------------------------
// 2. Typography
// ----------------------------------------------------------------------------- */
body {
  color: #9c9c9c;
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }

p {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .5px; }
  p a {
    color: #dcb879;
    letter-spacing: .5px; }
    p a:hover, p a:focus {
      color: #181818; }

i,
.italic {
  font-style: italic; }

strong,
b {
  color: #181818;
  font-weight: 600; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  color: #181818;
  font-weight: 300; }

h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

::selection {
  background-color: #dcb879;
  color: #fff; }

::-moz-selection {
  background-color: #dcb879;
  color: #fff; }

.selected {
  background-color: #dcb879;
  color: #fff; }

mark,
.mark {
  padding: 3px;
  color: #fff;
  background-color: #4b4b4b; }

.dropcap::first-letter {
  float: left;
  margin-right: 20px;
  padding: 20px 23px;
  font-size: 24px;
  background-color: #dcb879;
  color: #fff; }

.dropcap-square::first-letter {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px; }

.dropcap-fancy::first-letter {
  background-color: transparent;
  color: #181818;
  font-weight: 700;
  font-size: 28px; }

blockquote {
  position: relative;
  margin: 15px 0;
  padding: 40px 40px 40px 120px;
  border-left: none;
  background-color: #f9f9f9;
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: italic;
  line-height: 26px;
  color: #4b4b4b; }
  blockquote:before {
    font-family: 'FontAwesome';
    content: '\f10d';
    color: #fff;
    background-color: #dcb879;
    font-style: normal;
    text-align: center;
    line-height: 180px;
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%; }
  blockquote cite {
    display: block;
    margin: 20px 0 5px 0;
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-style: italic;
    color: #fff; }
  blockquote .date {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-style: normal; }

.blockquote-bordered {
  border: 1px solid #f1f1f1;
  border-top: 3px solid #dcb879;
  background: transparent;
  color: #4b4b4b; }
  .blockquote-bordered:before {
    color: #fff;
    background-color: #dcb879; }
  .blockquote-bordered cite {
    color: #dcb879; }

.list {
  padding: 0;
  list-style: none; }
  .list li {
    margin-bottom: 15px; }
    .list li:before {
      font-family: 'FontAwesome';
      color: #dcb879;
      margin-right: 10px; }

.list-chevron-circle li:before {
  content: '\f138'; }

.list-caret li:before {
  content: '\f0da'; }

.list-star li:before {
  content: '\f005';
  font-size: 12px; }

.list-dotted li:before {
  content: '\f111';
  font-size: 10px; }

.list-check-circle li:before {
  content: '\f058'; }

.list-arrow li:before {
  content: '\f178';
  font-size: 10px; }

ol.list {
  counter-reset: li; }
  ol.list li {
    position: relative;
    margin-left: 22px;
    padding-left: 8px;
    list-style: none; }
    ol.list li:before {
      content: counter(li);
      counter-increment: li;
      position: absolute;
      left: -25px;
      width: 22px;
      margin-right: 8px;
      padding: 4px;
      font-size: 10px;
      color: #9c9c9c;
      background-color: #fff;
      border-radius: 100%;
      text-align: center; }
  ol.list.list-ordered li {
    list-style-type: upper-alpha; }
    ol.list.list-ordered li:before {
      content: none; }

.pagination > li:first-child > a, .pagination > li:last-child > a {
  border-radius: 0; }
.pagination > li.active a,
.pagination > li.active a:hover {
  background-color: #dcb879;
  border-color: #dcb879;
  color: #fff; }
.pagination > li a {
  border-radius: 0;
  color: #e5e5e5;
  border: 1px solid #e5e5e5;
  margin: 0 5px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  .pagination > li a i {
    font-size: 14px; }
  .pagination > li a:hover {
    background-color: #dcb879;
    border-color: #dcb879;
    color: #fff; }

/* -----------------------------------------------------------------------------
// 3. Helpers 
// ----------------------------------------------------------------------------- */
.space {
  padding: 100px 0; }
  .space-margin {
    margin: 100px 0; }
  .space-dark {
    background-color: #f9f9f9; }
  .space-top {
    margin-top: 50px; }
    .space-top-sm {
      margin-top: 20px; }
    .space-top-md {
      margin-top: 35px; }
  .space-bottom {
    margin-bottom: 50px; }
    .space-bottom-sm {
      margin-bottom: 20px; }
    .space-bottom-md {
      margin-bottom: 35px; }

.no-space {
  padding: 0;
  margin: 0; }
  .no-space-bottom {
    margin-bottom: 0;
    padding-bottom: 0; }
  .no-space-top {
    margin-top: 0;
    padding-top: 0; }
  .no-space-right {
    margin-right: 0;
    padding-right: 0; }
  .no-space-left {
    margin-left: 0;
    padding-left: 0; }

@media (max-width: 992px) {
  .space-mb {
    margin-bottom: 40px; } }
.text-left {
  text-align: left; }

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

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

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

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

/*# sourceMappingURL=base.css.map */

/* Custom CSS */

body {
    color: #666 !important;
}
.btn {
    padding: 15px !important;
}
.homepage .welcome .content {
    padding-left: 0 !important;
}
.navbar-default {
    background-color: rgba(24, 24, 24, 0.75) !important;
}
.navbar-brand {
    padding: 5px 15px !important;
}
.homepage .welcome p {
    margin-bottom: 15px !important;
	color: #444 !important;
}
h2, .h2 {
    font-size: 28px;
}
.homepage .counters {
    background: url(../img/hairdressers-stylists-1.jpg) center center !important;	
}
.homepage .testimonials {
    background: url(../img/testimonials-bg.jpg) center center !important;	
}
.homepage .counters p {
    color: #fff !important;	
}
.space {
    padding: 60px 0;
}
footer .footer-main {
    text-align: center !important;
	padding: 50px 0 30px 0 !important;
}
p a:hover {
	color: #9d9fa2 !important;
	text-decoration: none;
}
.gallery .hero-title {
    background: url(../img/haircut-gallery.jpg) center center !important;
}
.gallery .gallery-items .item {
    width: 25% !important;
}
.about .hero-title {
    background: url(../img/salon-bg.jpg) center center !important;
}
.services .hero-title {
    background: url(../img/hairdressing-services-bg.jpg) center center !important;
}
.contact-page .hero-title {
    background: url(../img/contact-bg.jpg) center center !important;
}
.about .pricing{
    background: url(../img/pricing-bg.jpg) center center !important;
}
.about .hair-straightening {
    background: url(../img/hair-straightening-bg.jpg) center center !important;
}
.about .hair-colouring {
    background: url(../img/hair-colouring-bg.jpg) center center !important;
}
.about .hair-cuts {
    background: url(../img/hair-cuts-bg.jpg) center center !important;
}
.about .hair-perms {
    background: url(../img/hair-perms-bg.jpg) center center !important;
}
.services .beauty-therapy {
    background: url(../img/beauty-therapy-bg.jpg) center center !important;
}
.hero-title h1 {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    padding-top: 40px;
    background-position-y: 0;
}
.about .clients {
    background: none !important;
	background-color: #f9f9f9 !important;
}
.about .aboutus h2, .about .aboutus h3, .about .service-items h2, .about .service-items h3, 
.services .service-items h2, .services .service-items h3 {
    text-transform: uppercase;
    margin-bottom: 30px;	
}
.services-section .btn-colored:hover {
    color: #fff;
	background-color: #242424 !important;
}
.service-items i, .aboutus i, .welcome i, .dropdown.hours i {
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
    text-align: center;
}
.contact-page .contact-info .item .list li {
    font-size: 18px;
}
.about .aboutus .welcome-gallery img, .services .service-items zimg  {
    margin: 0 6px 15px 6px;
    width: 45%;
}
.about .service-items .post .align {
    padding: 30px;
    background-color: #f9f9f9;
}
.about .service-items .post h4 {
    text-transform: uppercase;
    margin-bottom: 30px;
}
.about .service-items .post h4 + p {
    margin-bottom: 30px;
}
.about .service-items {
    margin-bottom: 40px;
}
.about .section-headline h3, .about .price-table h3 {
    text-transform: uppercase;
}
.price-table {
    padding: 20px 10px 20px 10px !important;
}
.price-table span {
    display: block;
	text-align: left;
	color: #9c9c9c;
	margin-bottom: 15px;
}
.price-table span:hover {
	color: #fff;
}
.navbar-default li .dropdown.hours {
    text-align: left !important;
	color: #fff;
	padding: 15px 10px;
	line-height: 26px;
}
.navbar-default li .dropdown.hours p {
    text-align: center !important;
	font-size: 22px;
	line-height: 45px !important;
}
.navbar-default li .dropdown {
    padding: 12px 15px !important;
}
.navbar-default li .dropdown a {
    padding: 7px 0 !important;
}
.dropdown {
    margin-top:-40px;
}
.services .welcome-gallery .caption {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0;
    background-color: #181818;
    background-color: rgba(24, 24, 24, 0.75);
    color: #fff;
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 22px;
}
.services .welcome-gallery .caption p {
  font-size: 24px;
  margin: 0;
}


@media (max-width: 768px) {
  .services .welcome-gallery .caption p {
    font-size: 18px;
  }
}


.services .welcome-gallery .item {
  position: relative;
  width: 45%;
  float: left;
  margin-right: 4%;
  margin-bottom: 20px;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
}
.navbar-default .navbar-nav li.active .dropdown a {
    color: #fff;
}
.navbar-default .navbar-nav li.active .dropdown a:hover {
    color: #c4c4c4;
}
.price-table h4 {
    padding-bottom: 25px !important;
    margin-bottom: 25px !important;
}
.price-table h4.double {
	padding-top: 25px !important;
	margin-top: 25px !important;
    border-top: 1px solid #ececec;
}

.price-table table {
	width: 100%;
}
.price-table table td.wide {
	width: 65%;
	padding: 0 0 0 10px !important;
}
.price-table table td.narrow {
	width: 35%;
}
.gallery .mobile-gallery a span {
    ztext-shadow: none !important;
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}
.gallery p {
    color: #fff;
}


/* Margins & Paddings */

.m-t-20 {
	margin-top: 20px;
}
.m-b-20 {
	margin-bottom: 20px;
}
.m-b-38 {
	margin-bottom: 38px;
}
.m-b-0 {
	margin-bottom: 0;
}
.m-r-20 {
	margin-right: 20px;
}
.p-r-0 {
	padding-right: 0 !important;
}
.p-t-20 {
	padding-top: 20px !important;
}
.p-t-40 {
	padding-top: 40px !important;
}
.p-b-20 {
	padding-bottom: 20px !important;
}
.p-l-24 {
	padding-left: 24px !important;
}
/* Social Icons */

.footer-social-icons {
    display:block;
    margin: 0 auto;
}
.social-icon {
    color: #fff;
}
ul.social-icons {
    margin-top: 20px;
	padding:0;
    list-style: none;
}
.social-icons li {
    display: inline;
	margin: auto 10px;
}
.social-icons a {
    font-size: 46px;
	color: #fff;
    text-decoration: none;
}


