/*!
Theme Name: bluewellness
Theme URI: http://underscores.me/
Author: Richie Hiney
Author URI: https://funinelkcity.com
Description: Custom theme for Blue Wellness by Fun In Elk City
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bluewellness
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bluewellness is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

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

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height:100%;
}

body {
  font-size: 16px;
line-height:20px;
  font-family: 'Montserrat', sans-serif;
  color: #3d3536;
  background-color: white;
}

p,
.row p {
  font-size: 16px;
  line-height: 20px;    
  font-family: 'Montserrat', sans-serif;

}

h1,
.row h1 {
  font-size: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight:600;    
  color: #20a3b5;    
}

h2,
.row h2 {
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight:600;    
  color: #20a3b5;    
}

h3,
.row h3 {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight:600;   
  color:#494c49;
}

h4,
.row h4 {
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight:600;
  color: #20a3b5;     
}

h5,
.row h5 {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight:600;
  color: #494c49;     
}

a {
  color: #20a3b5;
  text-decoration: none;
}

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

Navigation

-------------------------------- */
.rh-main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #20a3b5;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.rh-main-header:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

.rh-main-header__logo {
  float: left;
  margin: 0 0 0 5%;
  height:80px;
}

.rh-main-header__logo img {
  display: block;
  height:100%;    
}

@media only screen and (min-width: 768px) {
  .rh-main-header {
    height: 80px;
  }
  .rh-main-header__logo {
    margin: 0 0 0 5%;
  }
}

.rh-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("/wp-content/themes/bluewellness/img/rh-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}

.rh-main-nav__list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
    z-index: -9;    
}

.rh-main-nav__list.rh-main-nav__list--is-visible {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
    padding:100px 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-animation: fadein .5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein .5s; /* Firefox < 16 */
        -ms-animation: fadein .5s; /* Internet Explorer */
         -o-animation: fadein .5s; /* Opera < 12.1 */
            animation: fadein .5s;      
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.rh-main-nav__list a {
  display: block;
  height: 70px;
  line-height: 60px;
  border-top:;
  color: #ffffff;
  text-align: center; 
  text-decoration: none;
  font-weight: 700;
  font-size:26px;    
}

.rh-main-nav__list a:hover {
    color:#002c41;
}

@media only screen and (min-width: 1310px) {
  .rh-main-nav {
    /* reset style */
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .rh-main-nav__list {
    /* reset style */
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    line-height: 80px;
  }
  .rh-main-nav__list.rh-main-nav__list--is-visible {
    /* reset style */
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .rh-main-nav__list li {
    display: inline-block;
    margin-left: 1em;
  }
  .rh-main-nav__list a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #ffffff;
    text-decoration: none;  
    text-transform: ;
    font-weight: 600;
    font-size: 16px;
  }
  .rh-main-nav__list a:hover {
    color: #002c41;
  }
}

@media only screen and (min-width: 960px) {
li .menu-btn,
#menu-item-191 a {
    font-size:16px;
    color:#ffffff!important;
    padding:14px 24px;
    font-weight: 600;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: background-color .5s ease-out;
    -moz-transition: background-color .5s ease-out;
    -o-transition: background-color .5s ease-out;
    transition: background-color .5s ease-out;
    background-color: #002c41;  
}

li .menu-btn:hover,
#menu-item-191 a:hover {
    color:#ffffff!important;  
    text-decoration: none!important; 
    background-color: #39997f;    
}
}

.more-btn {
    font-size:16px;
    color:#494c49!important;
    padding:14px 24px;
    margin:50px 0;
    font-weight: 600;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-decoration:none; 
    -webkit-transition: background-color .5s ease-out;
    -moz-transition: background-color .5s ease-out;
    -o-transition: background-color .5s ease-out;
    transition: background-color .5s ease-out;
    background-color: #20a3b5;    
}

.more-btn:hover {
    color:#ffffff!important;  
    text-decoration: none!important; 
    background-color: #39997f;    
}

.main-content {
  position: relative;
  z-index: 1;     
  background-color:#ffffff; 
  overflow: hidden;    
}

/* FULL HEIGHT BANNER */

.rh-fixed-bg {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.rh-fixed-bg__content, .rh-fixed-bg h2 {
  position: absolute;
  left: 65%;
  top: 60%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 50%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left; 
}

.rh-fixed-bg h1, .rh-fixed-bg h2 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
  font-weight: 600!important; 
  font-size: 50px!important;    
}

.rh-fixed-bg.rh-fixed-bg--0 {
  background-color:#1a1a1a;
}

.rh-fixed-bg.rh-fixed-bg--1 {
  background-image: url("/wp-content/themes/bluewellness/img/bluewellness_image1.png");
}

.rh-fixed-bg.rh-fixed-bg--2 {
  background-image: url("/wp-content/themes/bluewellness/img/404-image.png");
}

@media only screen and (min-width: 768px) {
  .rh-fixed-bg h1, .rh-fixed-bg h2 {
    font-size: 60px;
  }
}

@media only screen and (min-width: 1170px) {
  .rh-fixed-bg h1, .rh-fixed-bg h2 {
    font-size: 4.8rem;
    font-weight: 300;
  }
  @supports (background-attachment: fixed) {
    /* fix bug on IE11 and below */
    .rh-fixed-bg {
      background-attachment: fixed;
    }
  }
}

.respvid {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media only screen and (max-width: 420px) {   
.respvid {
  /*object-fit: cover;*/   
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;    
  width: auto;
  height: auto;
  z-index: -1;    
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);       
}
}

@media only screen and (max-width: 764px) {
.rh-fixed-bg h1, .rh-fixed-bg h2 {
  font-size: 30px!important;    
}  
.rh-fixed-bg__content {
  position: absolute;
  left: 50%;
  top: 60%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 50%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left; 
}    
.rh-fixed-bg.rh-fixed-bg--1 {
  background-image: url("https://www.wakeplus.co.uk/wp-content/uploads/2023/09/wakeplus-hero.png");
  background-position: -200px;
  background-color: #232323;    
}    
}

/* THIN BANNER */

.rh-fixed-bg-thin {
  position: relative;
  min-height: 40vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  background-color: #000000;  
  margin-top:79px;    
}

.rh-fixed-bg-thin__content,
.rh-fixed-bg-thin a {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  margin: 0 auto;
  z-index: 999;
  min-width:220px;
}

.rh-fixed-bg-thin p {
    color:#20a3b5;
    font-size:14px;    
}

.rh-fixed-bg-thin h3 {
    color:#ffffff;
    font-size:22px;    
}

.rh-fixed-bg-thin .page-sign {
    position: absolute;
    color:#ffffff;
    font-size:120px;
    line-height: 100px;
    font-weight:700;
    left:5%;
    bottom:-10px;    
}

.rh-fixed-bg-thin h1, .rh-fixed-bg-thin h2 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
  font-weight: 600!important; 
  font-size: 50px!important;    
}

.rh-fixed-bg-thin.rh-fixed-bg--1 {
  background-image: url("/wp-content/themes/bluewellness/img/bluewellness_image1.png");
}

.rh-fixed-bg-thin.rh-fixed-bg--2 {
  background-image: url("/wp-content/themes/bluewellness/img/bluewellness_image2.png");  
}


@media only screen and (min-width: 768px) {
  .rh-fixed-bg-thin h1, .rh-fixed-bg-thin h2 {
    font-size: 60px;
  }
}

@media only screen and (min-width: 1170px) {
  .rh-fixed-bg-thin h1, .rh-fixed-bg-thin h2 {
    font-size: 4.8rem;
    font-weight: 300;
  }
  @supports (background-attachment: fixed) {
    /* fix bug on IE11 and below */
    .rh-fixed-bg-thin {
      background-attachment: fixed;
    }
  }
}

.rh-fixed-bg-thin.rh-fixed-bg--3:before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		left: 0;
        background-size: 400px;
        background-repeat: no-repeat;
        background-position: top right;
        background-color: rgba(0, 0, 0, 0.6);
        z-index:-10;
}

.rh-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 1em 0;
  line-height: 1.6;
  z-index: 2;
}

.rh-scrolling-bg.rh-scrolling-bg--color-1 {
  background-color: #ffffff;
  color: #1c1c1c;
}

.rh-scrolling-bg.rh-scrolling-bg--color-2 {
  background-color: #494c49;
  color: #ffffff;
}

.rh-scrolling-bg.rh-scrolling-bg--color-3 {
  background-color: #394141;
  color: #ffffff;
}

.rh-scrolling-bg.rh-scrolling-bg--color-4 {
  background-color: #1a1a1a;
  color: #ffffff;
}

.rh-scrolling-bg__content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;    
}

.rh-scrolling-bg__content2 {
  width: 100%;
  margin: 0 auto;
  z-index: 2;    
}

@media only screen and (min-width: 768px) {
  .rh-scrolling-bg {
    padding: 2em 0;
    font-size: 16px;
    font-weight: 300;
  }
}

.footer-container {
  position:relative;
  width: 100%;    
  height:100vh;
  z-index:-1;    
}

.reveal-footer {
    width:100%;
    position:fixed;
    bottom:0;
    padding-top:100px;
    height:100vh;
    color:#ffffff;
    background-color:#002c41;
    z-index:-1;
}

.reveal-footer h2 {
    color: #20a3b5;
    font-size:20px;
    margin-top:20px;
}

.reveal-footer h3 {
    color: #fff;
    border-bottom: 4px solid #20a3b5;
}

.reveal-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size:16px;
}

.reveal-footer a:hover {
    color:#20a3b5;
}

.footer-logo {
    width:200px;
    margin-top:100px;
}

.space {
    padding: 0;
}

.bleed {
  background-color:#002c41;
  padding:40px;   
}

.bleedy {
  background-color:#20a3b5;
  padding:40px;    
}

.bleedy a {
  color:#ffffff;    
}

.pullin {
    margin-left:-50px;
}

@media only screen and (max-width: 768px) {
.rh-fixed-bg-thin .page-sign {
    position: absolute;
    color:#ffffff;
    font-size:70px;
    line-height: 60px;
    font-weight:700;
    left:5%;
    bottom:-10px;    
}    
.pullin {
    margin-left:0px;
    padding:40px!important;
} 
.footer-logo {
    display:none;
}   
.reveal-footer h2 {
    color: #20a3b5;
    font-size:14px;
    margin-top:20px;
}
.space {
    padding: 20px 0;
}    
}

.staff a {
  text-decoration: none;
  color:#494c49;
  font-weight: 600;
  font-size:14px;    
}

.staff a:hover {
    color: #20a3b5;    
}

.staff h3 {
    color: #494c49;
    margin:10px 0 -4px 0;
}


.card-body {
  margin-bottom: 20px;    
}

#wpadminbar {
    top:80px;
}

.hotlink {
    width:auto;
    height: auto;
    padding:0;
}

.hotlink img {
    max-width:100%;
    height:auto;
}

.waves {
    margin: -4px -4px 0;
    width:200%;
}

@media only screen and (max-width: 768px) {
.waves {
    margin: -10px -10px 0;
    width:400%;
}    
}

.tilt {
  transform: scale(0.9);    
  -webkit-transition: -webkit-transform .2s ease-in-out;
          transition:         transform .2s ease-in-out;    
}

.tilt:hover{
  transform: scale(0.5);    
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}


/* News section */

.header-wrap {
  height:60vh;    
  text-align: left;
  padding: 5%;
}
.header-wrap h1.entry-title {
  font-size: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight:600;    
  color: #20a3b5; 
  margin-top:40vh;   
  text-shadow: 1px 1px 2px black;
}

.search-form .screen-reader-text,
.more-link .screen-reader-text {
    display:none;
}

.entry-title a:hover {
    color:#20a3b5;
}

.postview .entry-title a:hover {
    color:#ffffff;
}

.widget-area ul{
    list-style: none;
    padding-left:0;
    margin-left:0;
}


.more-link {
    font-size:16px;
    color:#494c49!important;
    padding:14px 24px;
    font-weight: 600;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-decoration:none; 
    -webkit-transition: background-color .5s ease-out;
    -moz-transition: background-color .5s ease-out;
    -o-transition: background-color .5s ease-out;
    transition: background-color .5s ease-out;
    background-color: #20a3b5;  
}

.more-link:hover {
    color:#ffffff!important;  
    text-decoration: none!important; 
    background-color: #20a3b5;    
}

.search-submit {
    font-size:16px;
    color:#494c49!important;
    padding:4px 10px;
    font-weight: 600;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-decoration:none; 
    -webkit-transition: background-color .5s ease-out;
    -moz-transition: background-color .5s ease-out;
    -o-transition: background-color .5s ease-out;
    transition: background-color .5s ease-out;
    background-color: #20a3b5;
    border: 0;
}

.search-submit:hover {
    color:#ffffff!important;  
    text-decoration: none!important; 
    background-color: #20a3b5;    
}

.search-form {
    margin-bottom: 20px;
}

.search-field {
    padding:4px 10px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;    
    border: 2px solid #20a3b5;
    max-width: 200px;
}

.widget a {
    font-weight:600;
    color:#494c49!important;
}

.widget a:hover {
    color:#002c41!important;    
}

.posted-on,
.entry-footer {
    display:none;
}

.post-thumbnail img {
    max-width:100%;
    height:auto;
}

.postview p,
.postview .byline {
    color:#fff;
}

/* Contact form */

.nf-form-fields-required,
.nf-field-label,
.ninja-forms-req-symbol {
    display:none;
}

#nf-label-field-5 {
  font-size: 16px;
  line-height: 20px; 
  font-weight:400;    
  font-family: 'Montserrat', sans-serif;    
    color:#ffffff;
}

@media (max-width: 770px) { .rellax { transform: translate3d(0,0,0) !important; } }
