/*Full Screen Hero Image */

.hero-full-screen {
  height: 100vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: url("https://images.pexels.com/photos/595847/pexels-photo-595847.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260") center center no-repeat;
  background-size: cover;
}

.hero-full-screen .middle-content-section {
  text-align: center;
  color: #fefefe;
}

.hero-full-screen .top-content-section {
  width: 100%;
}

.hero-full-screen .bottom-content-section {
  padding: 1rem;
}

.hero-full-screen .bottom-content-section svg {
  height: 3.75rem;
  width: 3.75rem;
  fill: #fefefe;
}

.hero-full-screen .top-bar, .title-bar {
  width: 100%
}
/*END-Full Screen Hero Image */

/*START-CARDS*/
.card-user-profile {
  position: relative;
  z-index: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
  border: 0;
  border-radius: 0;
  background: #fefefe;
  box-shadow: none;
  overflow: hidden;
  color: #0a0a0a;
}

.card-user-profile > :last-child {
  margin-bottom: 0;
}

.card-user-profile:hover .card-user-profile-img {
  opacity: 1;
}

.card-user-profile-content {
  position: relative;
}

.card-user-profile-content::before {
  position: absolute;
  content: '';
  top: -3.4375rem;
  left: -1.875rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.4375rem 0 0 31.25rem;
  z-index: 0;
  border-color: transparent transparent transparent #fefefe;
}

.card-user-profile-actions {
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 1rem;
  background: #e6e6e6;
  background: #fefefe;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.card-user-profile-actions > :last-child {
  margin-bottom: 0;
}

.card-user-profile-img {
  max-width: 100%;
  opacity: 0.85;
  transition: all 0.25s ease;
}

.card-user-profile-avatar {
  position: absolute;
  bottom: 100%;
  left: 1rem;
  z-index: 2;
  max-width: 5.625rem;
}

.card-user-profile-avatar img {
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
}

.card-user-profile-name {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 1.5rem;
}

.card-user-profile-button {
  margin-bottom: 0;
  -webkit-flex: 1 0 0;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.card-user-profile-button + .card-user-profile-button {
  margin-left: 1rem;
}

.card-user-profile-info {
  font-size: 0.875rem;
  letter-spacing: 1px;
  opacity: 0.8;
}
/*END-CARDS*/

/*START-Header Nav */

#header {
  position: fixed;
  width: 100%;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.97);
  -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
/* @media (min-width: 62em) {
  #header {
    top: -80px;
  }
} 
*/

.show-header-nav {
  top: 0 !important;
}

#primary-menu {
  float: none;
}
@media (min-width: 62em) {
  #primary-menu {
    float: right;
  }
}
#primary-menu .menu {
  float: none;
  display: none;
}
@media (min-width: 62em) {
  #primary-menu .menu {
    float: right;
    display: block;
  }
}
#primary-menu a {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #444;
  height: auto;
  line-height: 14px;
}
@media (min-width: 62em) {
  #primary-menu a {
    line-height: 48px;
    height: 70px;
  }
}
#primary-menu ul > li.current a,
#primary-menu ul > li a:hover {
  color: #459CE8 !important;
  -moz-transition: color 0.2s ease-out, background 2s ease-in;
  -o-transition: color 0.2s ease-out, background 2s ease-in;
  -webkit-transition: color 0.2s ease-out, background 2s ease-in;
  transition: color 0.2s ease-out, background 2s ease-in;
}
#primary-menu .menu > li {
  display: block;
}
@media (min-width: 62em) {
  #primary-menu .menu > li {
    display: table-cell;
  }
}
#primary-menu .menu > li > a {
  padding: 1rem 0;
}
@media (min-width: 62em) {
  #primary-menu .menu > li > a {
    padding: 0.7rem 1rem;
  }
}
#primary-menu .menu > li:last-child > a {
  padding-right: 0;
  padding-bottom: 30px;
}
#primary-menu .menu.show {
  display: block;
  text-align: center;
}

#logo {
  display: block;
  float: none;
  margin: 0 auto 0 !important;
  max-width: none;
  text-align: center;
}
@media (min-width: 62em) {
  #logo {
    float: left;
    text-align: left;
  }
}

#primary-menu-trigger {
  opacity: 1;
  cursor: pointer;
  font-size: 28px;
  position: absolute;
  z-index: 10;
  top: 8px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (min-width: 62em) {
  #primary-menu-trigger {
    opacity: 0;
    display: none;
  }
}
/*END-Header Nav*/

/*START-Footer*/
#footer {
  background-color: #333;
  color: #ccc;
  padding: 4em 0;
}
.footer-bottom {
    background: #333;
    padding: 24px 0 10px;
}
.footer-bottom .footer-links {
    margin: 0;
    display: inline-block;
    padding-bottom: 0px;
}
.footer-bottom .footer-links li {
    display: block;
    float: left;
    margin-left: 6px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
}
.footer-bottom .footer-links a:hover {
    color: #eee;
}
.footer-bottom a{color:#ccc}
.footer-bottom h3{color:#aaa}
.footer-bottom .footer-links a {
    color: #ccc;
    padding: 3px 6px;
}
.footer-bottom .home-social {
    display: inline-block;
    float: none;
    margin-bottom: 8px;
    text-align: center;
}
.footer-bottom .home-social li {
    list-style: none;
    display: block;
    float: left;
    margin-left: 10px;
}

@media only screen and (max-width: 767px){
	.footer-bottom .home-social {
		float: none;
		margin: 0 0 20px 0;
		text-align: center;
		height: 44px;
		display: inline-block;
	}
	.footer-bottom {
		text-align: center;
	}
}
.footer-bottom .home-social li:first-child {
    margin-left: 0;
}
.footer-bottom .home-social a.twitter {
    background-position: center 0;
}
.footer-bottom .home-social a.facebook {
    background-position: center -200px;
}
.footer-bottom .home-social a.mail {
    background-position: center -400px;
}
.footer-bottom .home-social a.youtube {
    background-position: center -600px;
}
.footer-bottom  .home-social a:hover {
    opacity: 0.8;
}
.footer-bottom  .home-social a {
    display: block;
    height: 50px;
    width: 50px;
    background: url("../images/icon-social/social.png") no-repeat center 0;
}
.footer-bottom .logo {
    color: #858585;
    font-weight: normal;
    background: url("../images/icon-social/footer-logo.png") no-repeat;
    padding: 23px 0 0 0 !important;
    font-size: em-calc(16px);
    display: inline-block;
    width: 85px;
}
/*END-Footer*/

/*START-Page Sections*/

#main-content .row {
  position: relative;
}

.section-page {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.parallax {
  background-color: transparent;
  background-attachment: fixed;
  background-position: 50% 0;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mobile-parallax,
.video-placeholder {
  background-size: cover !important;
  background-attachment: scroll !important;
  background-position: center center;
}

.section-page .row {
  z-index: 2;
}

.section-page .row + .video-wrap {
  z-index: 1;
}

.overlay {
  width: 100%;
  position: relative;
  z-index: 10;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #EEE;
}
.overlay:after {
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.9;
  z-index: -1;
  background-color: rgba(59, 67, 71, 0.9);
}

.overlay.dark-overlay:after {
  background-color: rgba(0, 0, 0, 0.8);
}

.overlay-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(59, 67, 71, 0.8);
}

.section-page .cell {
    z-index: 2;
}
.section-title-block {
  margin-bottom: 50px;
  padding: 0 10px;
}
@media (min-width: 40em) {
  .section-title-block {
    padding: 0;
    margin-bottom: 80px;
  }
}
.section-title-block:after {
  content: "";
  display: block;
  width: 40px;
  border-top: 2px solid #111;
}
.section-title-block .title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}
.section-title-block.text-center:after {
  margin: 30px auto 0;
}
.lead {
  font-weight: 300;
  letter-spacing: 0.04em;
  font-size: 16px;
  padding: 0;
}
@media (min-width: 48em) {
  .lead {
    font-size: 20px;
    line-height: 1.8;
    padding: 0 15px;
  }
}
.heading-block {
  margin-bottom: 40px;
}
.heading-block h3 {
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.heading-block ~ p:not(.lead) {
  font-size: 15px;
}

.stand-out-title {
  margin: 0;
}
@media (min-width: 62em) {
  .stand-out-title {
    margin-bottom: 20px;
  }
}
.stand-out-title h1,
.stand-out-title h2 {
  font-size: 60px;
  letter-spacing: 1px;
  font-weight: 300;
}
.stand-out-title h1 strong,
.stand-out-title h2 strong {
  font-weight: 700;
}

#main-content .stand-out-title h1,
#main-content .stand-out-title h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
}
@media (min-width: 48em) {
  #main-content .stand-out-title h1,
  #main-content .stand-out-title h2 {
    font-size: 48px;
  }
}
/*END-Page Sections*/

/*START-Utility*/
.text-uppercase {
  text-transform: uppercase;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw700 {
  font-weight: 700;
}

.absolute-centered {
  height: auto !important;
  left: 0;
}
.centered-div {
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
}

.theme-bg {
  background-color: #459CE8;
  color: #FFF;
}

.ohidden {
  position: relative;
  overflow: hidden !important;
}

.hidden {
  display: none !important;
}

.hide-absolute-position {
  position: relative !important;
}

.hide-shadow {
  box-shadow: none;
}

.column-padding {
  padding: 60px;
}

.hide-padding {
  padding: 0 !important;
}

.hide-left-padding {
  padding-left: 0 !important;
}

.hide-right-padding {
  padding-right: 0 !important;
}

.hide-top-padding {
  padding-top: 0 !important;
}

.hide-bottom-padding {
  padding-bottom: 0 !important;
}

.all-margin {
  margin: 50px !important;
}

.left-margin {
  margin-left: 50px !important;
}

.right-margin {
  margin-right: 50px !important;
}

.top-margin {
  margin-top: 60px !important;
}

.bottom-margin {
  margin-bottom: 50px !important;
}

.clear-bottom-margin {
  margin-bottom: -50px !important;
}

.all-margin-sm {
  margin: 30px !important;
}

.left-margin-sm {
  margin-left: 30px !important;
}

.right-margin-sm {
  margin-right: 30px !important;
}

.top-margin-sm {
  margin-top: 30px !important;
}

.bottom-margin-sm {
  margin-bottom: 30px !important;
}

.clear-bottom-margin-sm {
  margin-bottom: -30px !important;
}

.all-margin-lg {
  margin: 80px !important;
}

.left-margin-lg {
  margin-left: 80px !important;
}

.right-margin-lg {
  margin-right: 80px !important;
}

.top-margin-lg {
  margin-top: 60px !important;
}

.bottom-margin-lg {
  margin-bottom: 80px !important;
}

.clear-bottom-margin-lg {
  margin-bottom: -80px !important;
}

.hide-margin {
  margin: 0 !important;
}

.hide-left-margin {
  margin-left: 0 !important;
}

.hide-right-margin {
  margin-right: 0 !important;
}

.hide-top-margin {
  margin-top: 0 !important;
}

.hide-bottom-margin {
  margin-bottom: 0 !important;
}
/*END-Utility*/

/*START-Typography*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Raleway", sans-serif;
}

h5,
h6 {
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

h4 {
  font-weight: 600;
}

h5,
h6 {
  font-weight: bold;
}

h1 > span:not(.nocolor),
h2 > span:not(.nocolor),
h3 > span:not(.nocolor),
h4 > span:not(.nocolor),
h5 > span:not(.nocolor),
h6 > span:not(.nocolor) {
  color: #459CE8;
}

p,
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset,
form {
  margin-bottom: 30px;
}

small {
  font-family: "Open Sans", sans-serif;
}

#main-content p {
  line-height: 1.7;
}
body {
  line-height: 1.5;
  color: #555;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}
/*END-Typography*/

/*START-DarkBG*/
#header.dark-bg {
  background-color: rgba(59, 67, 71, 0.9);
}
#header.dark-bg #primary-menu a {
  color: #FFF;
}
#header.dark-bg #primary-menu a:hover {
  color: #459CE8;
}
.dark-bg #primary-menu-trigger {
  color: #FFF;
}
.dark-bg a:hover, .dark-bg a:focus {
  color: #FFF;
}
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6 {
  color: #FFF;
  font-size: 30px;
  text-shadow: 1px 1px #333;
}
.dark-bg .wp-icon {
  color: #fff !important;
}
.dark-bg .section-title-block .title {
  color: #FFF;
}
.dark-bg .section-title-block:after {
  border-top: 2px solid #FFF;
}
.dark-bg .lead {
  color: #FFF;
}
.dark-bg form input:not(.button),
.dark-bg form textarea,
.dark-bg form select {
  background: none;
  color: #FFF;
}
.dark-bg form label {
  color: #FFF;
}
.dark-bg form input.error,
.dark-bg form textarea.error {
  border-color: #ff4c4c !important;
}
.dark-bg .form-processing {
  color: #FFF;
}
.dark-bg #contact-content .contact-section .contact-info .details a {
  color: #FFF;
}
.dark-bg .text-rotator {
  color: #FFF !important;
}
/*END-DarkBG*/

/*START-Contact Section*/
#contact-content .contact-section .content {
  margin-bottom: 2em;
  border-bottom: 1px solid #8a9094;
}
#contact-content .contact-section .contact-info .header p {
  font-family: "Raleway", sans-serif;
  letter-spacing: 2px;
  margin: 2em 0 1.5em;
  text-transform: uppercase;
  color: #FFF;
}
#contact-content .contact-section .contact-info .method {
  margin-bottom: 1em;
  display: table;
  width: 100%;
}
#contact-content .contact-section .contact-info .label {
  font-weight: 700;
  float: left;
  margin-right: 10px;
}
#contact-content .contact-section .contact-info .details {
  margin-left: 40px;
  line-height: 20px;
}
#contact-content .contact-form {
  margin-bottom: 0;
}
#contact-content .contact-form input:not(.button),
#contact-content .contact-form textarea {
  border: 1px solid #8a9094;
}
#contact-content .contact-form label {
  font-size: 0.8125rem;
  letter-spacing: 1px;
}
/*END-Contact Section*/

/*START-Icons*/
.icon-large i {
  font-size: 48px;
}

.icon-small i {
  font-size: 22px;
}

.icon-block h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
}
.icon-block p {
  color: #8C8C8C;
}
.icon-block .icon-block-icon {
  margin: 0 0 20px;
}

/*START-Google Reviews*/
#map-plug {display:none;}
#google-reviews {
display:flex;
flex-wrap:wrap;
/*display: grid;
grid-template-columns: repeat( auto-fit, minmax(320px, 1fr));*/
}
.review-item {
border:solid 0px rgba(190,190,190,.35);
margin:0 auto;
padding:1em;
flex: 1 1 20%;
}
@media ( max-width:1200px) {
  .review-item { flex: 1 1 40%; }
}
@media ( max-width:450px) {
  .review-item { flex: 1 1 90%; }
}
.review-meta, .review-stars {text-align:center; font-size:115%;}
.review-author { text-transform: capitalize; font-weight:bold; }
.review-date {opacity:.6; display:block;}
.review-text {  line-height:1.55; text-align:left; max-width:32em; margin:auto;}
.review-stars ul {
display: inline-block;
list-style: none !important;
margin:0; padding:0;
}
.review-stars ul li {
float: left;
list-style: none !important;
margin-right: 1px;
line-height:1;
}
.review-stars ul li i {
  color: #E4B248;
  font-size: 1.4em;
  font-style:normal;
}
.review-stars ul li i.inactive { color: #c6c6c6;}
.star:after { content: "\2605"; }

/*START-Price Table*/
.pricing-table {
  border: solid 1px #DDDDDD;}

.pricing-table  li {
    border-bottom: dotted 1px #DDDDDD;
    font-size: 0.75rem;
    padding: 0.875rem 1.125rem;
    &:last-child {
      border-bottom: 0;
    }
  }

.pricing-table .title {
    background-color: #333333;
    color: #EEEEEE;
    font-size: 0.875rem;
    border-bottom: 0;
  }

.pricing-table .price {
    background-color: #F6F6F6;
    color: #333333;
    font-size: 1.75rem;
    border-bottom: 0;
  }

.pricing-table .description {
    color: #777777;
    font-size: 0.625rem;
  }

.pricing-table .button {
    margin: 0;
  }

.colourbg{background-color:#eee}

/* ----------- Simplecart ----------- */
.simpleCart_items {
    font-size: 14px;
}

.basket{margin-bottom: 20px!important;}

.itemContainer{
width:100%;
float:left;
border-bottom: 1px dashed grey;
}

.itemContainer div{
float: left;
margin: 5px;
}

.itemContainer a{
text-decoration:none;
}

.cartHeaders{
width:100%;
float:left;
}

.cartHeaders div{
float:left;
margin: 5px 20px 5px 20px ;
}

.itemdecrement, .itemincrement{
margin: 5px 2px!important;
}
  
div .itemTotal{
text-align:right!important;
float:right!important;
}

.simpleCart_finalTotal{
float:right;
padding-right: 5px;
font-weight: bold;
}

/* ----------- Enquiry Form ----------- */
.enquiry label {margin-bottom: 0px;}

.enquiry input {
  margin-bottom: 0px;
  padding: 5px;
  font-size:14px;
  line-height:14px;}