@import url('fontsets.css');







/*-- Browser Reset and Defaults --*/
html, body {
    position: relative;
    height: 100%;
    width: 100%;
    font-size: 14px;
    font-family: "HelveticaNeueLight", sans-serif;
    min-width: 320px;
    background-color: rgb(239, 239, 239);
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, li, p, form, table, tr, td, input, textarea {
    margin: 0;
    padding: 0;
}

body > div:not(.full-width) {
    position: relative;
    margin: 0 auto;
    max-width: 1100px;
    background-color: white;
    overflow: hidden;
}

body > div:nth-child(3) {
    padding-top: 70px;
}

.parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.clear {
    clear: both;
}



/*-- Text Style --*/
.parag-global-1 {
    font-size: 21px;
    letter-spacing: 1.5px;
    line-height: 28px;
    font-family: "HelveticaNeue", sans-serif;
    background-color: white;
    color: #989898;
    text-align: justify;
}








/*--  Lightbox : Class ---*/
.lightbox {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.74);
    z-index: 999;
    align-items: center;
    display: none;
}

.lightbox .control {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 25px;
    text-align: right;
}

.control .close {
    position: relative;
    left: -55px;
    top: 0px;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
}

.control .close span {
    position: absolute;
    top: 15px;
    left: 0px;
    display: block;
    height: 1px;
    width: 100%;
    margin-bottom: 3px;
    background-color: #aaaaaa;
    border-radius: 9px;
    -webkit-transition: .15s ease-in-out;
    -moz-transition: .15s ease-in-out;
    -o-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
}

.control .close:hover span {
    background: #ffffff;
}

.control .close span:nth-child(1) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.control .close span:nth-child(2) {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.lightbox .lightbox-inner {
    position: relative;
    background-color: white;
    padding: 10px;
    margin: 0 auto;
    max-height: 80%;
    max-width: 80%;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 0 15px black;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
}


.lightbox-inner iframe {
    max-width: 100%;
    max-height: 100%;
}










/*-- Navigation : Class --*/
.minimal-nav {
    position: fixed;
    width: 100%;
    min-width: 320px;
    padding: 35px 0px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(185, 185, 185, 0.6);
    z-index: 998;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
}
.small{
    padding: 18px 0;
}

#nav-home {
    display: none;
}

.minimal-nav ul {
    position: relative;
    text-align: center;
}

.minimal-nav ul li {
    vertical-align: top;
    display: inline-block;
}

.minimal-nav ul li a {
    position: relative;
    text-decoration: none;
    color: #969696;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0 15px;
}

.minimal-nav ul li a:hover,
.minimal-nav ul .active-nav a {
    color: #6f6f6f;    
}

.minimal-nav ul li:first-child a {
    padding-left: 48px;
}

.minimal-nav ul li:last-child a {
    padding-right: 0px;
}

.minimal-nav ul li:not(.desktop-branding) a {
    top: 4px;
}

.minimal-nav ul .desktop-branding a {
    position: relative;
    display: block;
    width: 310px;
}

.minimal-nav ul .desktop-branding a img {
    width: 100%;
}

.minimal-nav ul li a.header-btn {
    background: #F44336;
    color: white;
    padding: 12px 18px;
    font-weight: 600;
}

.burger-bar {
    position: absolute;
    top: 26.5px;
    right: 25px;
    width: 24px;
    height: 20px;
    cursor: pointer;
    display: none;
}

.burger-bar:before {
    position: absolute;
    left: -45px;
    top: 2px;
    font-size: 12px;
    content: 'MENU';
    color: #bababa;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.burger-bar:hover:before {
    color: #868686;
}

.burger-bar span {
    position: absolute;
    display: block;
    height: 4px;
    width: 100%;
    margin-bottom: 3px;
    background: #c4c4c4;
    border-radius: 9px;
    -webkit-transition: .15s ease-in-out;
    -moz-transition: .15s ease-in-out;
    -o-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
}

.burger-bar span:nth-child(2) {
    top: 7px;
}

.burger-bar span:nth-child(3) {
    top: 14px;
}

.burger-bar-open span ,
.burger-bar:hover span {
    background: #868686;
}


.burger-bar-open span:nth-child(1) {
    top: 7px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.burger-bar-open span:nth-child(2) {
    opacity: 0;
}

.burger-bar-open span:nth-child(3) {
    top: 7px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.burger-bar-open:before {
    opacity: 0;
}









/*-- Pin Info : Class -- */
.pin-info {
    position: relative;
    padding-top: 5%;
    padding-left: 6%;
    width: 90%;
    z-index: 9;
}

.pin-info h1 {
    position: relative;
    left: -7px;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 60px;
    letter-spacing: 3.5px;
    font-family: "AvenirMedium", sans-serif;
    margin-bottom: 5px;
}

.pin-info p {
    position: relative;
    font-size: 21px;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    line-height: 28px;
    font-family: "HelveticaNeueLight", sans-serif;
    font-weight: normal;
    -webkit-text-stroke: 0.2px;
}

.pin-info a {
    position: relative;
    font-family: "AvenirBlack", sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
}

.pin-info a:after {
    position: absolute;
    top: -5px;
    left: 108%;
    content: ' ';
    height: 30px;
    width: 30px;
    background-image: url(../images/pin-info-link.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.pin-info .white-link:after {
    background-image: url(../images/pin-info-link-white.png);
}







/*-- 2 Cols : Class --*/
.read-more-cols {
    padding-top: 50px !important;
}

.two-cols {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    white-space: nowrap;
}

.two-cols li {
    position: relative;
    display: inline-block;
    margin-right: -4px;
    width: 50%;
    height: 300px;
    vertical-align: top;
}




/*-- 1 Col & 2 Col : Common --*/
.two-cols h2,
.one-col h2{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 35px;
    text-align: center;
    font-weight: normal;
    font-family: "AvenirMedium", sans-serif;
}


.two-cols .two-col-mobile {
    display: none;
}






/*-- Information / Text Cols : Class */
.info-cols li h2 {
    position: relative;
    width: 70%;
    margin: 0 auto;
    padding: 40px 0px 20px 0px;
    white-space: normal;
}

.info-cols li h2:after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    content: ' ';
    height: 2px;
    
     /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,bcbcbc+50,ffffff+100 */
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(188,188,188,1) 50%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(188,188,188,1) 50%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(188,188,188,1) 50%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */

}

.info-cols li p {
    width: 80%;
    padding: 20px 0px 10px 0px;
    line-height: 25px;
    letter-spacing: 2px;
    margin: 0 auto;
    white-space: normal;
    text-align: justify;
    font-size: 20px;
    -webkit-text-stroke: 0.2px;
}

.info-cols li a {
    display: block;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.3px;
}














/*-- Where Seekers */
#where-seekers {
    position: relative;
    height: 700px;
    background-image: url(../images/where-seekers-md.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

#where-seekers > p {
    position: relative;
    text-transform: uppercase;
    font-size: 23px;
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
    padding-top: 10rem;
    color: #989898;
    font-family: "AvenirLight", sans-serif;
    text-align: center;
    letter-spacing: 3px;
    line-height: 30px;
    z-index: 2;
}

#where-seekers > p b {
    font-family: "AvenirBlack", sans-serif;
    font-weight: bold;
}


#where-seekers-inner {
    position: absolute;
    width: 100%;
    bottom: 8%;
}

#where-seekers-inner > div:not(.clear) {
    float: left;
    width: 40%;
}

#where-seekers-peace {
    text-align: left;
    padding-right: 10%;
}

#where-seekers-peace h1 {
    color: #989898;
    font-size: 40px;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
}

#where-seekers-peace h1 {
    font-family: "HelveticaNeue", sans-serif;
}


#where-seekers-peace h1:first-child { 
    padding-top: 1.5%;
}

.animated-h1 h1 {
    display: none;
    font-family: "AvenirBlack", sans-serif!important;
    padding: 15px 0!important;
}

.animated-h1{position:relative;}

/*#where-seekers-peace h1:last-child {
    padding-top: 3.5%;
}*/

#where-seekers-register {
    text-align: right;
    padding-left: 10%;
}

/*#where-seekers-register img {
    display: block;
    height: 105px;
    margin: 0 auto;
    padding-bottom: 4%;
    cursor: pointer;
}*/


#where-seekers-register img {
    display: block;
    height: 105px;
    margin: 0 auto;
    padding-bottom: 6%;
    cursor: pointer;
}


#where-seekers-register button {
    display: block;
    margin: 0 auto;
    background-color: #4ed9e6;
    border: none;
    color: white;
    text-transform: uppercase;
    padding: 12px 28px;
    font-size: 18px;
    letter-spacing: 3px;
    cursor: pointer;
}

#where-seekers-register span {
    position: relative;
    display: block;
    text-align: center;
    font-family: "HelveticaNeueLight", sans-serif;
    font-size: 45px;
    color: #989898;
    letter-spacing: 3px;
    -webkit-text-stroke: 0.2px;
    margin-top: 15px;
}

a.lightbox-video {
    text-decoration: none;
}


span.play-txt {
    margin: -13px 0 0 0!important;
    padding: 0 0 13px 0!important;
    font-size: 20px!important;
    text-transform: uppercase;
    font-weight: 600;
}









/*-- The Format --*/
/*#the-format {
    position: relative;
    height: 900px;
    background-repeat: no-repeat;
    background-image: url(../images/the-format-2.jpg);
    background-size: auto;
    background-position:  center center;
}*/

#the-format {
    position: relative;
    height: 700px;
    background-repeat: no-repeat;
    background-image: url(../images/the-format-2.jpg);
    background-size: auto;
    background-position: center center;
}

#the-format .pin-info {
    padding-top: 1.5%;
    color: #ffffff;
}

#the-format .pin-info h1 {
    margin-bottom: 0px;
}

#the-format .pin-info p {
    color: #ffffff;
    margin-bottom: 13px;
    text-shadow: 1px 1px 20px #000000;
}

#the-format .pin-info a {
    color: #ffffff;
}


#the-format-inner {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    z-index: 1;
}

/*#the-format-inner ul {
    position: relative;
    top: 120px;
    width: 92%;
    height: 360px;
    margin: 0 auto;
}*/

#the-format-inner ul {
    position: relative;
    top: 100px;
    width: 92%;
    height: 330px;
    margin: 0 auto;
}

/*#the-format-inner ul li {
    position: relative;
    display: inline-block;
    width: calc(99% / 3);
    height: 100%;
    margin-right: -4px;
}*/

#the-format-inner ul li {
    position: relative;
    display: inline-block;
    width: calc(99% / 3);
    height: 100%;
    margin-right: -5px;
}

#the-format-inner ul li img {
    height: 110px;
}

#the-format-inner ul li:nth-child(2) {
    text-align: center;
}

#the-format-inner ul li:nth-child(2) h2 {
    text-align: center;
}

#the-format-inner ul li:nth-child(1) h2 {
    left: -25px;
}

#the-format-inner ul li:nth-child(3) h2 {
    right: -42px;
}

#the-format-inner ul li:nth-child(3) {
    text-align: right;
}

#the-format-inner ul li h2 {
    position: absolute;
    width: 100%;
    bottom: 0px;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: normal;
    color: white;
    font-family: "HelveticaNeueBold", sans-serif;
    text-shadow: 1px 1px 20px #000;
}
/*New CSS*/
#the-format:after {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(2, 2, 2, 0.18);*/
    background: transparent;
    z-index: 0;
}








/*-- Biometrics --*/
#biometrics {
    height: 768px;
    background-image: url(../images/biometrics-md.jpg);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}

#biometrics .pin-info {
    color: #81664f;
}

#biometrics .pin-info a {
    color: #4ed9e6;
}










/*-- Sign Up Form --*/
.sign-up-form {
    position: relative;
    padding: 45px 0px 50px 0px;
    text-align: center;
    background-image: url(../images/sign-up-bg.jpg);
    background-position:  center center;
}

.sign-up-form p {
    text-transform: uppercase;
    color: white;
    font-size: 27px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.sign-up-form ul {
    position: relative;
    width: 80%;
    margin: 0 auto;
}

.sign-up-form ul li {
    display: inline-block;
    vertical-align: top;
    width: 40%;
    margin-right: -4px;
}

.sign-up-form ul li:last-child {
    width: 20%;
}

.sign-up-form ul li input {
    border: none;
    border-radius: 70px;
    padding: 15px 25px;
    font-size: 20px;
    font-family: "HelveticaNeueLight", sans-serif;
    letter-spacing: 2px;
    width: 80%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}
.sign-up-form ul li input:focus {
    outline: none;
}

.sign-up-form ul li input[type='text'],
.sign-up-form ul li input[type='email'] {
    
}

.sign-up-form ul li input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    
}

sign-up-form ul li input::-moz-placeholder { /* Firefox 19+ */
    
}

.sign-up-form ul li input[type='submit'] {
    background-color: #4ed9e6;
    color: white;
    cursor: pointer;
}









/*-- The Great Experiment  --*/
/*#the-great-experiment {
    height: 850px;
    background-image: url(../images/great-experiment-md.jpg);
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}*/

#the-great-experiment {
    height: 700px;
    background-image: url(../images/great-experiment-md.jpg);
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

#the-great-experiment .pin-info h1,
#the-great-experiment .pin-info p {
    color: #81664f;
}

#the-great-experiment .pin-info p {

}

#the-great-experiment .pin-info a {
    color: #4ed9e6;
}









/*-- The Science --*/
/*#the-science {
    position: relative;
    height: 800px;
    background-image: url(../images/the-science-md.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}*/

#the-science {
    position: relative;
    height: 700px;
    background-image: url(../images/the-science-md.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}


#the-science .pin-info h1 {
    color: #ffffff;
}

#the-science .pin-info p {
    color: #ffffff;
}

#the-science .pin-info a {
    color: #4ed9e6;
}


/*#the-science-list {
    position: absolute;
    width: 90%;
    left: 5%;
    bottom: 15%;
    z-index: 1;
}*/

#the-science-list {
    position: absolute;
    width: 70%;
    left: 14%;
    bottom: 15%;
    z-index: 1;
}

#the-science-list li {
    position: relative;
    display: inline-block;
    width: 25%;
    margin-left: -4px;
    text-align: center;
}

/*#the-science-list li > img {
    height: 328px;
}*/

#the-science-list li > img {
    height: 250px;
}


#the-science:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 2, 2, 0.18);
    z-index: 0;
}

#science-meditation p,
#science-eeg p,
#science-hrv p,
#science-gsr p,
.science-ul li{
    font-size: 18px;
    line-height: 23px;
}

.science-ul {
    padding: 1% 0 5% 12%;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 25px;
    font-family: "HelveticaNeue", sans-serif;
    background-color: white;
    color: #7c7c7c;
}
.science-ul-heading {
    padding: 2% 0 2% 3%;
    margin: 0 auto!important;
    -webkit-text-stroke: 1px;
}

.science-ul li {
    text-align: left;
}

.science-ul li a {
    text-decoration: none;
    color: #4ed9e6;
}





/*-- Partners --*/
#partners {
    height: 900px;
    background-image: url(../images/partners-md.jpg);
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

#partners .pin-info {
    padding-top: 5%;
}

#partners .pin-info h1,
#partners .pin-info p {
    color: #81664f;
}

#partners .pin-info p {
}

#partners .pin-info a {
    color: #4ed9e6;
}

#partners-list {
    position: relative;
    text-align: center;
}

#partners-list > div img {
    max-width: 341px;
    width: 90%;
    margin: 0 auto;
}

#partners-list ul li {
    display: inline-block;
    width: 100px;
    height: 80px;
    margin: 20px 5px;
}

#partners-list ul li img {
    height: 100%;
}

.partners-logo {
    width: 100%;
    height: auto;
    max-width: 165px;
    margin-bottom: 20px;
}









/*-- The Response --*/
/*#the-response {
    height: 810px;
    background-image: url(../images/the-response-md.jpg);
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}*/

#the-response {
    height: 700px;
    background-image: url(../images/the-response-md.jpg);
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

#the-response .pin-info h1,
#the-response .pin-info p,
#the-response .pin-info a {
    color: #ffffff;
}


#the-response .pin-info p {

}


#the-response ul {
    width: 95%;
    margin: 0 auto;
    padding-top: 10%;
}

#the-response ul li {
    position: relative;
    width: 25%;
    margin-right: -4px;
    display: inline-block;
    text-align: center;
}

#the-response ul li img {
    width: 95%;
    height: auto;
}









/*-- Your Guides --*/
/*#your-guides {
    height: 850px;
}*/

#your-guides {
    height: 875px;
}


#your-guides .pin-info h1,
#your-guides .pin-info p {
    color: #81664f;
}

#your-guides .pin-info p {

}

#your-guides .pin-info a {
    color: #4ed9e6;
}

#your-guides ul {
    padding-top: 7%;
    width: 70%;
    margin: 0 auto;
}

#your-guides ul li {
    width: 46%;
    margin-right: 4%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

#your-guides ul li:last-child {
    margin-right: 0;
}

#your-guides ul li img {
    width: 200px;
}

#your-guides ul li h2 {
    color: #3f3e3d;
    font-weight: normal;
    -webkit-text-stroke: 0.3px;
    letter-spacing: 1px;
    line-height: 30px;
}

#your-guides ul li h2:nth-child(2) {
    font-family: "HelveticaNeueLight", sans-serif;
    font-size: 28px;
    margin-top: 25px;
    margin-bottom: 15px;
}

#your-guides ul li h2:nth-child(3),
#your-guides ul li h2:nth-child(4),
#your-guides ul li h2:nth-child(5) {
    font-size: 18px;
}

.bio-wrapper {
    max-width: 310px;
    margin: 0 auto;
}
#your-guides ul li .bio-wrapper h2:nth-child(1) {
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 25px;
    text-align: left;
}

#your-guides ul li .bio-wrapper h2:nth-child(2), 
#your-guides ul li .bio-wrapper h2:nth-child(3), 
#your-guides ul li .bio-wrapper h2:nth-child(4) {
    font-size: 20px;
    margin: 0;
    text-align: left;
}








/*-- Lasting Inner Happiness --*/
/*#inner-happiness {
    background-image: url(../images/happiness-md.jpg);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    height: 850px;
}*/

#inner-happiness {
    background-image: url(../images/happiness-md.jpg);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    height: 700px;
}


#inner-happiness .pin-info h1,
#inner-happiness .pin-info p,
#inner-happiness .pin-info a {
    color: #ffffff;
}

#inner-happiness .pin-info h1 {
    max-width: 550px;
}

#inner-happiness .pin-info p {
    max-width: 450px;
}









/*-- Footer : Class --*/
/*.footer {
    position: relative;
    background-color: #403025 !important;
    padding: 60px 0px 0px 0px;
}*/

.footer {
    position: relative;
    background-color: #403025 !important;
    padding: 35px 0px;
}

.footer ul li {
    display: inline-block;
    width: 33.333%;
    margin-right: -4px;
    vertical-align: top;
}

.footer > ul {
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
}

.footer > ul > li {
    width: 29%;
    height: 190px;
    padding: 0 2% 0 2%;
}

.footer > ul > li h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
    margin-bottom: 10px;
}

.footer > ul > li h2,
.footer > ul > li p {
    color: #9d7559;
    font-weight: normal;
}

.footer > ul > li:nth-child(1),
.footer > ul > li:nth-child(2) {
    border-right: 1px solid #9d7559; 
}


.footer > ul > li:nth-child(1) {
    padding: 0 2% 0 0px
}


.footer > ul > li:nth-child(3) {
    padding: 0 0% 0 2%;
}

.footer > ul > li > p {
    padding-bottom: 10px;
}

.footer > ul > li > ul > li {
    height: 60px;
    width: 60px;
    margin: 0 0px;
}










/*-------------------------------------- READ MORE : Page -------------------------------------------*/









/*-- CEO header--*/
#read-more-header {
    position: relative;
    height: 350px !important;
}

#read-more-header ul {
    position: relative;
    height: 340px;
    overflow: hidden;
}

#read-more-header ul li {
    height: 100%;
    vertical-align: top;
    display: inline-block;
    margin-right: -4px;
}

#read-more-header ul li:first-child {
    width: 347px;
}

#read-more-header ul li:last-child {
    position: relative;
    width: calc(100% - 347px);
    background-image: url(../images/read-more-header.jpg);
    background-position: center center;
}

#read-more-header ul li h1 {
    text-align: center;
    position: relative;
    top: 50%;
    font-family: 'AvenirLight', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 45px;
    color: white;
}

.guides-position {
    text-align: center;
    font-weight: bold;
    color: #5c5c5c;
    display: block;
    margin: 3% 0px;
}












/*-- Read More Titles --*/
.read-more-titles-nbg {
    position: relative!important;
    max-width: 960px!important;
    margin: 0 auto!important;
    margin-top: 70px!important;
    margin-bottom: 40px!important;
}

.read-more-titles-nbg h1 {
    position: relative;
    border-bottom: 1px solid silver;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 50px;
    letter-spacing: 2.5px;
    line-height: normal;
    font-family: "AvenirMedium", sans-serif;
    color: #7c7c7c;
    padding-bottom: 20px;
}

.read-more-titles-nbg h1:after {
    position: absolute;
    right: 0px;
    bottom: -4px;
    height: 7px;
    width: 80px;
    content: ' ';
    background-color: #4ed9e6;
}


.read-more-titles {
    background: url(../images/read-more-header.jpg);
    position: relative;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 4px;
    margin-bottom: 40px;
}

.read-more-titles h1 {
    position: relative;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
    font-size: 50px;
    letter-spacing: 2.5px;
    line-height: normal;
    font-family: "AvenirMedium", sans-serif;
    color: #ffffff;
    padding-bottom: 24px;
}








/*-- Read More Paragraph Default : Class --*/
.read-more-def {
    position: relative;
}

.read-more-def > div:not(.read-more-titles) {
    width: 95%;
    max-width: 960px;

    margin: 0 auto;
    
    font-size: 22px;
    letter-spacing: 1.5px;
    line-height: 28px;
    font-family: "HelveticaNeue", sans-serif;
    background-color: white;
    color: #989898;
    text-align: justify;    
}

.read-more-def > div p {
    margin-bottom: 15px;
    color: #7c7c7c;
    font-weight: 600;
}

.read-more-def > div a {
    text-decoration: none;
    color: #2dc2d0;
    font-weight: bold;
}

.read-more-def > div:not(.read-more-titles):last-child {
    margin-bottom: 50px;
}

.read-more-def div ul {
    position: relative;
    padding: 1% 0% 2% 4%;
    color: #7c7c7c;
    font-weight: 600;
}


















/*-- Two Cols v2 --*/
.two-cols-v2-a,           
.two-cols-v2-b {
    position: relative;
    width: 95%;
    max-width: 938px;
    margin: 0 auto;
    padding-bottom: 40px;
    margin-bottom: 40px;
    font-family: "HelveticaNeue", sans-serif;
    font-size: 18px;
    border-bottom: 1px solid silver;
}

.two-cols-v2-a > div:not(.clear),
.two-cols-v2-b > div:not(.clear) {
    float: left;
    width: 50%;
    height: 100%;
    display: table;
}

.two-cols-v2-a > div > div,
.two-cols-v2-b > div > div {
    display: table-cell;
    vertical-align: middle;
}

.two-cols-v2-a > div > div h3,
.two-cols-v2-b > div > div h3 {
    color: #888893;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 25px;
    letter-spacing: 2px;
    font-family: "AvenirMedium", sans-serif;    
    margin-bottom: 10px;
}

.two-cols-v2-a > div > div p, .two-cols-v2-b > div > div p {
    font-size: 19px;
    letter-spacing: 1.5px;
    line-height: 28px;
    font-family: "HelveticaNeue", sans-serif;
    background-color: white;
    color: #7c7c7c;
    font-weight: 600;
    text-align: left;
    margin-bottom: 15px;
}


.two-cols-v2-b > div > div p a,
.two-cols-v2-a > div > div p a {
    text-align: center;
    display: block;
    text-decoration: none;
    color: #2dc2d0;
    font-weight: bold;
    font-size: 14px;
}

.two-cols-table {
    text-align: justify;
}

.two-cols-v2-a .two-cols-table {
    padding-left: 30px;
    width: calc(50% - 30px) !important;
}

.two-cols-v2-b .two-cols-table {
    padding-right: 30px;
    width: calc(50% - 30px) !important;
}

.two-cols-b-mobile {
    display: none !important;
}

.two-cols-display div iframe {
    height: 100%;
    width: 100%;
    max-height: 300px;
}


.two-cols-display div {
    text-align: center;
}

.two-cols-display div img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}





/*-- The Response IDs --*/
#dirk-du-ploy {
    height: 380px;
}

#wayne-fung {
    height: 510px;
}

#dave-wills {
    height: 350px;    
}

#jan-searle {
    height: 410px;
}

#sean-l {
    height: 320px;
}

#paul-buxton {
    height: 520px;
}

#gordon-harris {
    height: 300px;
}

#brian-jacobson {
    height: 550px;
}

#brenda-sanders {
    height: 320px;
}

#barbara-frierson {
    height: 350px;
}

#dawn-pan {
    height: 380px;
}

#rebekah-reese {
    height: 350px;
}

#merle-braley {
    height: 400px;
}

#michael-lydon {
    height: 390px;
}

#sherri-miller {
    height: 350px;
}




/*-- Biometrics IDs --*/
#bio-muse {
    height: 450px;
}

#bio-polar-heart-strap {
    height: 320px;
}



/*-- Awakening IDs --*/
#awakening-location-1 {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid silver;
    height: 450px;
}


#awakening-location-2 {
    height: 420px;
}


#awakening-location-3 {
    height: 410px;
}


#awakening-location-4 {
    height: 460px;
}








/*-- Contact Wrapper --*/
#contact-wrapper > div:not(.clear) {
    float: left;
    width: 50%;
    margin-bottom: 30px;
}

#contact-wrapper div p {
    font-size: 18px;
}

#contact-form input,
#contact-form textarea {
    position: relative;
    width: calc(100% - 30px);
    margin: 0 auto;
    font-size: 16px;
    padding: 15px;
    text-indent: 5px;
    margin-bottom: 15px;
    display: block;
    font-family: "HelveticaNeue", sans-serif;
    border: 1px solid #e6e6e6;
}

#contact-form textarea {
    height: 300px;
    color: #a2a2a2;
}


#contact-form input[type="submit"] {
    width: 60%;
    color: #ffffff;
    background-color: #4ed9e6;
    border: none;
    cursor: pointer;
}
.alert {
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    margin-bottom: 15px;
    background: #4ed9e6;
    -webkit-text-stroke: 0.2px;
}
.alert li {
    color: white;
    list-style: none;
    text-align: left;
}
.alert-danger {
    background: #e69898;
}

h2.contact-title {
    max-width: 400px;
    color: #888893;
    text-align: left;
    font-weight: normal;
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0;
    font-family: "AvenirMedium", sans-serif;
    margin-bottom: 20px;
    margin-right: 15px;
}




/*Team*/
h3.team-name {
    text-align: left!important;
}
h2.team-title, 
h2.team-role {
    font-size: 19px;
    letter-spacing: 1.5px;
    line-height: 25px;
    color: #3f3e3d;
    text-align: left;
    -webkit-text-stroke: .2px;
}
h2.team-role {
    padding: 8px 0 15px;
}








/*Video Popup*/
#swipebox-overlay {
    max-width: 100%!important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.64);
}

#swipebox-slider .slide .swipebox-video-container {
    max-width: 850px!important;
    background-color: white;
    padding: 10px;
}

#swipebox-bottom-bar {
    display: none;
}

/*Signup for Video Section*/

.container {
    position: relative;
}

.col-3 {
    float: left;
    width: 27%;
    padding-left: 1.5%;
    padding-right: 1.5%;
}

.col-9 {
    float: left;
    width: 67%;
    padding-left: 1.5%;
    padding-right: 1.5%;
}

#sign-up-video p {
    width: 90%;
    margin: 0 auto 20px;
}

#sign-up-video img {
    width: 100%;
    height: auto;
    padding: 0 0 0 6%;
}

#sign-up-video ul {
    position: relative;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

#sign-up-video ul li {
    display: block;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    margin: 0 0 15px 0;
}

#sign-up-video ul li:last-child {
    width: 30%;
    margin: 0 auto;
}

@media screen and (max-width: 1032px) {
    #sign-up-video img {
        display: none;
    }
    #sign-up-video .col-9 {
        width: 97%;
    }
    #sign-up-video ul li:last-child {
        width: 50%;
    }
}



/*Application Page*/
.application-page p {
    font-size: 18px;
    text-align: left;
    background-color: transparent;
}


.application-page strong {
    -webkit-text-stroke: .3px!important;
}


h2.application-title {
    color: #888893;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 35px;
    line-height: 39px;
    letter-spacing: 1px;
    font-family: "AvenirMedium", sans-serif;
    margin-bottom: 15px;
}

.application-page .application-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 45px!important;
    -webkit-text-stroke: .2px;
}


.application-ul {
    padding: 1% 0 5% 5%!important;
    font-size: 18px;
    text-align: left;
    letter-spacing: 1.5px;
    line-height: 25px;
    font-family: "HelveticaNeue", sans-serif;
    background-color: transparent;
}



.application-ul li {
    padding-bottom: 1.5%;
}

.application-title-small {
    color: #888893;
    text-transform: uppercase;
    text-align: left;
    font-weight: normal;
    font-size: 28px;
    letter-spacing: 1px;
    font-family: "AvenirMedium", sans-serif;
    margin-bottom: 15px;
}

.application-page button {
    display: block;
    margin: 0 auto;
    background-color: #4ed9e6;
    border: none;
    color: white;
    text-transform: uppercase;
    padding: 12px 28px;
    font-size: 18px;
    letter-spacing: 3px;
    cursor: pointer;
}
.video-vimeo {
    text-align: center!important;
}

.letter-container {
    background: #F2F7FB;
    margin:45px 0;
    padding: 3%;
    position: relative;
    display: block;
}


.headshot-area {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 45px;
}

.headshot-area .image {
    display: table;
    width: 25%;
    float: left;
}

.headshot-area .text {
    display: table;
    width: 68%;
    float: right;
    vertical-align: middle;
}

.headshot-area .text p {
    margin-top: 10%;
    letter-spacing: 3px;
    font-size: 22px;
}

.headshot-area img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}


.thumb-container {
    position: relative;
    display: block;
    margin-bottom: 50px!important;
}

.thumb-single {
    display: table;
    width: 30%;
    float: left;
    padding-right: 5%;
}


.thumb-single img{
    width: 100%;
    height: auto;
}



@media screen and (max-width: 900px) {
    .video-vimeo iframe {
    width: 568px!important;
    height: 332px!important;
    }
}

@media screen and (max-width: 690px) {
    .video-vimeo iframe {
    width: 268px!important;
    height: 160px!important;
    }

    .headshot-area .image {
    width: 30%;
    float: none;
    }

    .headshot-area .text {
    width: 70%;
    float: none;
    }

    .thumb-single {
    width: 100%;
    float: none;
    padding-right: 0;
    padding-bottom: 20px;
    }
}


/*Application Form Page*/
.fc10-sp .col-md-12 {
    max-width: 100%!important;
    width: 100%!important;
}
.textcenter{
    text-align: center;
}


button.fc10 {
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    background-color: #4ed9e6;
    border: none;
    color: white;
    text-transform: uppercase;
    padding: 12px 45px;
    font-size: 18px;
    font-weight: 600;
    -webkit-text-stroke: .2px;
    letter-spacing: 3px;
    cursor: pointer;
}


.form-group {
    margin-bottom: 25px;
}

.fc10-sp label {
    color: #989898;
    font-weight: 600;
    font-size: 20px;
    -webkit-text-stroke: .3px;
}

#helpBlock label {
    font-size: 18px;
}


.form-control:focus {
    border-color: #bca184;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control {
    font-size: 18px;
    font-weight: 600;
    height: 45px;
    padding: 10px 15px;
    border-radius: 0;
    box-shadow: none;
}

.form-ul {
    font-size: 18px;
    padding: 0 0 4% 6% !important;
}
