/* ==========================================================================
   Basic Setting Guide
   ========================================================================== */
/**
 * Short description using Doxygen-style comment format
 * 
 * ********************************
 * Fonts Name
 * ********************************
 * Regular => 'Gill Sans Regular'
 * SemiBold => 'Gill Sans SemiBold'
 * Light => 'Gill Sans Light'
 * Bold => 'Gill Sans Bold'
 * ********************************
 *
 */

/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Give+You+Glory');

@font-face {
	font-family: Gill Sans Regular;
	src: url(fonts/GillSans-Regular.ttf);
}

@font-face {
	font-family: Gill Sans SemiBold;
	src: url(fonts/GillSans-SemiBold.ttf);
}

@font-face {
	font-family: Gill Sans Light;
	src: url(fonts/GillSans-Light.ttf);
}

@font-face {
	font-family: Gill Sans Bold;
	src: url(fonts/GillSans-Bold.ttf);
}

/* Basic Setting */
* {
	margin: 0;
	padding: 0;
}

body,
html {
	height: 100%;
}

body {
	font-family: Gill Sans Regular;
	color: #444444;
	font-size: 16px;
	background: #000000;
	letter-spacing: 2px;
}
.site-wrapper{
	max-width: 1440px;
	margin: 0 auto;
}

h1 {
	font-family: Gill Sans Regular;
	font-size: 60px;
	line-height: 105px;
	letter-spacing: 25px;
	opacity: 0.8;
	text-transform: uppercase;
}

h2 {
	font-family: Gill Sans Regular;
	font-size: 30px;
	line-height: 45px;
	letter-spacing: 12px;
	text-transform: uppercase;
	font-weight: normal;
}

h3 {
	font-family: Gill Sans Regular;
	font-size: 24px;
	line-height: 34px;
	letter-spacing: 8px;
	text-transform: uppercase;
	font-weight: normal;
}

p {
	font-family: Gill Sans Light;
	font-size: 18px;
	line-height: 29px;
	letter-spacing: 5px;
	color: #ffffff;
}

a {
	color: #444444;
	text-decoration: none;
}

a:hover{
	color: #111111;
}

.footer-note a:hover {
	color: #999999;
}

.clear{
	clear: both;
}

/* Header */
.main-header{
	position: fixed;
	padding: 25px 2%;
	width: 96%;
	z-index: 999;
	background: url(../images/header-bg.png) repeat-x bottom;
}

.main-header .logo {
	float: left;
}

.main-header .logo img {
	opacity: 0.9;
}

/* Middle section */
.section-one{    
	height: 100vh;
    width: 100vw;
    max-width: 100%;
	color: #ffffff;
}

#section-one-inner{
	position: relative;
    height: 100vh !important;
	z-index: 9;
}

.first-content{
    width: 100vw;
    max-width: 100%;
    padding: 5vh 0;
}

.section-one:after {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(00,00,00,0.45);
	z-index: 5;
}
 
.main-title {
	position: relative;
	z-index: 99; 
	display: block;
	width: 90vw;
    max-width: 500px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
    padding-top: 20vh;
	margin: 0 auto;
}

.main-title h1 {
	font-family: Gill Sans Light;
}

.main-title h1 span { 
	will-change: opacity, filter;
	opacity: 0;
	filter: blur(0px);
	color: #ffffff;
}

.main-sub-title{
	max-width: 620px;
	margin: 0 auto;
	margin-top: 3.5%;
	text-align: center;
	font-size: 25px;
	line-height: 50px;
	position: relative;
	z-index: 9;
	opacity: 0.8;
}

.scroll-down {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: absolute;
	display: block;
	box-shadow: 0px 0px 2px 1px rgba(255, 255, 255, 0.8);
	z-index: 99;
	text-align: center;
    left: 50%;
    bottom: 25px;
    margin-left: -25px;
}

.scroll-down img{
	margin-top: 14px;
	width: 13px;
}

/* Scroll down animation  */
.scroll-down::after {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	animation-delay: 0s;
	animation: pulsate1 2.5s;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .75);
	top: -27.8%;
	left: -27.8%;
	background: rgba(198, 16, 0, 0);
}

.scroll-down:before {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	animation: pulsate2 2.5s;
	animation-delay: 1s;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .75);
	top: -27.8%;
	left: -27.8%;
	background: rgba(198, 16, 0, 0);
}

@keyframes pulsate1 {
	0% {
		transform: scale(0.7);
		opacity: 1;
		box-shadow: inset 0px 0px 10px 1px rgba(255, 255, 255, 0.75), 0px 0px 10px 2px rgba(255, 255, 255, 0.75);
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
		box-shadow: none;
	}
}
@keyframes pulsate2 {
	0% {
		transform: scale(0.7);
		opacity: 1;
		box-shadow: inset 0px 0px 5px 1px rgba(255, 255, 255, 0.75), 0px 0px 5px 2px rgba(255, 255, 255, 0.75);
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
		box-shadow: none;
	}
}

/* Section two */
.section-two {
	height: 100%; 
	width: 100%;
	color: #ffffff;
	position: relative;
	padding-top: 100px;
}
.section-two #overlay-two{
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(00,00,00,0.60);;
	z-index: 5;
	opacity: 0;
}
.im-childhood {
    max-width: 1138px;
    margin: 0 auto;
    z-index: 9;
    position: relative;
    height: calc(100vh - 160px);
    padding-top: 60px;
}

.childhood-text{
	padding: 0;
	width: 36.9%;
	float: left;
	padding-top: 32px;
}

.childhood-text p {
	letter-spacing: 2px;
    padding-top: 50px;
}

.childhood-video{
	width: 55%;
	float: right;
	position:relative;
	overflow:hidden;
	width: 48vw;
    height: 26vw;
    max-width: 710px;
    max-height: 400px;
}
iframe{
    border: none;
}

.childhood-video img{
	width: 100%;
}

h2.title-with-border {
	background: url(../images/separator.png) no-repeat center bottom;
	padding-bottom: 35px;
	margin-bottom: 32px;
}

.nav {
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 9;
	padding-left: 10px;
	text-transform: uppercase;
	font-size: 12px;
	display: none;
	background: url(../images/footer-bg.png) repeat-x bottom;
	height: 113px;
}

.nav nav {
	position: absolute;
	bottom:20px;
}

.nav nav:before {
	content: " ";
	border-top: 1px solid #ffffff;
	opacity: 0.5;
	width: 234px;
	margin: 0 auto;
	display: block;
	position: absolute;
	top: -20px;
	left: 68px;
}

.nav a {
	transition: all 0.2s ease-out;
	opacity: 0.6;
	color: #ffffff;
	width: 117px;
	max-width: 30%;
	display: inline-block;
	text-align: center;
	line-height: 18px;
	position: relative;
}

.nav a.active {
	text-align: center;
	opacity: 1;
}

.nav a:hover {
	opacity: 1;
}

.nav span.bullet {
	border: 1px solid #ffffff;
	background: transparent;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: block;
	margin: -25px auto 0 auto;
	position: absolute;
	left: 47%;
	top: 0;
	opacity: 1;
}

.nav a.active span.bullet {
	background: #ffffff;
}

.section {
	position: relative;
    max-width: 100vw;
    overflow: hidden;
}

#section-one-bg {
	width: 100%;
	height: 100%;
	z-index: 2;
	display: block;
	border: red;
	position: absolute;
	top: 0;
	left: 0;
    overflow: hidden;
}
#section-one-bg video{
    min-width: 100vw;
    min-height: 100vh;
}

#section-two-bg {
	width: 100%;
	height: 100%;
	z-index: 1;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.5;
}

.down-arrow {
	text-align: center;
	position: absolute;
	bottom: 15px;
	z-index: 9;
	width: 100%;
}

#join-the-brigade {
	background: #ffffff;
}

.col-25,
.col-50,
.col-75,
.col-100 {
	float: left;
	position: relative;
}

.col-25 {
	width: 25%;
}

.col-50 {
	width: 50%;
}

.col-75 {
	width: 75%;
}

.col-100 {
	width: 100%;
}


#section1 {
	background: #000000;
}
#section2, #section3 {
	background: #F5F5F5;
}

.childhood-title {
	max-width: 450px;
	text-align: center;
	background: url(../images/blue-border.png) no-repeat center bottom;
	padding-bottom: 30px;
	margin-bottom: 15px;
}

.childhood-title-outer {
	height: 185px;
}

.childhood-title-inner {
	right: 7%;
	top: 0;
	position: absolute;
	padding: 3% 1.8% 2% 2%;
	background: #f5f5f5;    
	z-index: 2;
}

.fixed-top {
	position: fixed;
	top: 0;
	z-index: 99;
	margin: 0;
	right: 7%;
	top: 0;
}

.photo-list {
	position: relative;
}

.childhood-sub-text {
	padding: 1.5% 4% 3% 4%;
	max-width: 382px;
	letter-spacing: 1px;
	font-size: 18px;
	line-height: 31px;
	margin: 0 auto;
	font-family: Gill Sans Light;
}

.photo-list img {
	width: 100%;
	display: block;
}

.photo-list:after {
	content: " ";
	display: block;
	clear: both;
}

.list-inner-contain {
	position: absolute;
	background: rgba(0, 0, 0, 0.5);
	top: 100%;
	left: 0px;
	right: 0px;
	bottom: 0;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	color: #ffffff;
	padding: 32% 10% 10% 10%;
	letter-spacing: 1px;
	font-size: 18px;
	line-height: 31px;
}

.list-data .go > .list-inner-contain {
	top: 0;
	opacity: 1;
	transition: all 750ms ease-in-out;
	transition-delay: 750ms;
}

.list-data .go h3 {
	top: calc(8%);
	transition: all 750ms ease-in-out;
	transition-delay: 750ms;
}

.list-inner-contain.bg-yello {
	background: rgba(219,183,70,0.75);
}

.list-inner-contain.bg-green {
	background: rgba(113,178,73,0.75);
}

.list-inner-contain.bg-magenta {
	background: rgba(178,111,169,0.75);
}

.list-inner-contain p {
	letter-spacing: 0px;
	font-size: 16px;
	line-height: 28px;
    text-align: center;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 600;
}

.list-inner-contain img.hr-line {
	width: 100px;
	margin: 0 auto 3% auto;
}

.list-inner-contain a {
	color: #ffffff;
	text-align: center;
	display: block;
    font-size: 13px;
    line-height: 24px;
	letter-spacing: 1px;
	margin-top: 30px;
}

.list-data {
	overflow: hidden;
}

.list-data h3 {
	position: absolute;
	top: calc(40%);
	text-align: center;
	color: #ffffff;
	width: 100%;
	z-index: 99;
	transition: all 0.7s ease-in-out;
}

#childhood-section {
	width: 100vw;
	max-width: 1440px;
	margin: 0 auto;
}

#mantra-section {
    background-image: url(../images/static-doodles.png), url(../images/paper.jpg);
    background-position: top center, top center;
    background-size: auto, cover;
    background-repeat: no-repeat, no-repeat;
    font-family: 'Give You Glory', cursive;
    font-size: 25px;
    line-height: 70px;
	position: relative;
	max-height: 730px;
	max-width: 1440px;
	margin: 0 auto;
}
#mantra-section:before {
	content: ' ';
	width: 100%;
	height: 15px;
	position: absolute;
	top: 0;
	left: 0;
	background: -moz-linear-gradient(top, rgba(245,245,245,1) 20%, rgba(245,245,245,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(245,245,245,1) 20%,rgba(245,245,245,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(245,245,245,1) 20%,rgba(245,245,245,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F5F5F5', endColorstr='#F5F5F5',GradientType=0 ); /* IE6-9 */
}

#mantra-section:after{
	content: ' ';
	width: 100%;
	height: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: -moz-linear-gradient(top, rgba(245,245,245,0) 0%, rgba(245,245,245,1) 80%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(245,245,245,0) 0%,rgba(245,245,245,1) 80%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(245,245,245,0) 0%,rgba(245,245,245,1) 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

.mantra-section-outer {
    padding: 175px 0;
	display: table;
	overflow: hidden;
	margin: 0 auto;
}

.mantra-section-inner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
	font-size: 44px;
}

#hearts{
    width: 85px;
    height: 99px;
    position: absolute;
    top: 170px;
    right: 90px;
    overflow: hidden;
}
#hearts img{
	position: absolute;
	top: 0;
	right: 0;
	animation: heartFade 2s ease-out infinite;
	transform-origin: center bottom;
	max-width: 100%;
}
#hearts img:nth-child(0){
	animation-delay: 300ms;
}
#hearts img:nth-child(1){
	animation-delay: 250ms;
}
#hearts img:nth-child(2){
	animation-delay: 600ms;
}
#hearts img:nth-child(3){
	animation-delay: 425ms;
}
#hearts img:nth-child(4){
	animation-delay: 30ms;
}
#hearts img:nth-child(5){
	animation-delay: 30ms;
}
#hearts img:nth-child(6){
	animation-delay: 660ms;
}
#hearts img:nth-child(7){
	animation-delay: 190ms;
}

@keyframes heartFade {
    0% {opacity: 0; transform: scale(0.1) translateY(10px);}
    90% {opacity: 1; transform: scale(1) translateY(0);}
    100% {opacity: 0; transform: scale(1) translateY(0);}
}


#rain{
	width: 214px;
	height: 232px;
	position: absolute;
	top: 20px;
	left: 175px;
    overflow: hidden;
}
#rain img {
	position: absolute;
    top: 0px;
	left: 0px;
	max-width: 100%;
}
#rain .rain-drop:nth-child(1){
	top: 80px;
	left: 20px;
	animation: rain 1.75s linear infinite;
	animation-delay: 200ms;
}
#rain .rain-drop:nth-child(2){
    top: 80px;
    left: 68px;
	animation: rain 1.65s linear infinite;
	animation-delay: 45ms;
}
#rain .rain-drop:nth-child(3){
	top: 100px;
    left: 123px;
	animation: rain 1.75s linear infinite;
	animation-delay: 800ms;
}
#rain .rain-drop:nth-child(4){
	top: 91px;
    left: 50px;
	animation: rain 1.5s linear infinite;
	animation-delay: 80ms;
}
#rain .rain-drop:nth-child(5){
    top: 60px;
    left: 40px;
	animation: rain 1.3s linear infinite;
	animation-delay: 20ms;
}
#rain .rain-drop:nth-child(6){
	top: 45px;
	left: 175px;
	animation: rain 2.05s linear infinite;
	animation-delay: 220ms;
}
#rain .rain-drop:nth-child(7){
	top: 80px;
	left: 140px;
	animation: rain 1.5s linear infinite;
	animation-delay: 320ms;
}
#rain .rain-drop:nth-child(8){
	top: 95px;
	left: 150px;
	animation: rain 1.7s linear infinite;
	animation-delay: 250ms;
}

@keyframes rain {
	0% {
		opacity: 0; 
		transform: scaleY(0.1) translateY(0px);
	}
	90% {
		opacity: 1; 
		transform: scaleY(1) translateY(150px);
	}
	100% {
		opacity: 0; 
		transform: scaleY(0.8) translateY(170px);
	}
}


#boom-box{
	width: 263px;
	height: 308px;
	position: absolute;
	bottom: 0px;
	left: 12vw;
}
#boom-box img{
	position: absolute;
	top: 0;
	right: 0;
	max-width: 100%;
}
#boom-box .note:nth-child(1){
	position: absolute;
	top: 0;
	left: 0;
	animation: 3.2s rotate infinite;
}
#boom-box .note:nth-child(2){
	position: absolute;
	top: 20px;
	left: 20px;
	animation: 2.8s rotate infinite;
}
#boom-box .note:nth-child(3){
	position: absolute;
	top: 0;
	left: 0;
	animation: 3.2s rotate infinite;
}
#boom-box .note:nth-child(4){
	position: absolute;
    top: 70px;
    left: 10px;
	animation: 2.8s rotate infinite;
}
#boom-box .note:nth-child(5){
	position: absolute;
    top: 80px;
    left: 70px;
	animation: 2.6s rotate infinite;
}
#boom-box .note:nth-child(6){
	position: absolute;
	top: 110px;
    left: 0;
	animation: 3s rotate infinite;
}
#boom-box .note:nth-child(7){
	position: absolute;
    top: 110px;
    left: 40px;
	animation: 3s rotate infinite;
}
#boom-box .note:nth-child(8){
	position: absolute;
    top: 70px;
    left: 140px;
	animation: 3s rotate infinite;
}    
@keyframes rotate{
	0%, 100%{
		transform: rotate(0) translateY(0);
	}
	50%{
		transform: rotate(6deg) translateY(5px);
	}
}

.mighty-brigade {
	background: #f5f5f5;
}

.mighty-brigade .title-right{
	letter-spacing: 1px;
    font-size: 18px;
    line-height: 31px;
    font-family: Gill Sans Light;
}

.title-outer {
	max-width: 1000px;
	margin: 0 auto;
	padding: 45px 0;
}

.title-outer:after {
	content: " ";
	clear: both;
	display: block;
}

.title-outer .title-left {
	float: left;
	width: 42%;
	padding-right: 4%;
	text-align: center;
	background:url(../images/verticle-line.png) no-repeat right center;
}

.title-outer .title-right {
	float: right;
	width: 49%;
	padding-top: 2%;
	font-size: 18px;
}

.list-mighty-brigade{
	max-width: 1440px;
    margin: 0 auto;
}

.list-mighty-brigade:after {
	content: " ";
	display: block;
	clear: both;
	width: 100%;
}

.list-mighty-brigade img.col-main-img {
	width: 100%;
	top: 0;
	z-index: 5;
	opacity: 0.55;
}

.list-mighty-brigade .col-25 {    
	height: 420px;
	overflow: hidden;    
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mighty-brigade-inner {
	z-index: 9;
	position: absolute;
	height: calc(84.5%);
	top: 0;
	color: #ffffff;
	padding: 22% 9% 5% 9%;
}


.physicians-panel,
.employees-panel,
.parent-panel,
.donors-panel {
	position: relative;
}

.physicians-panel:before,
.employees-panel:before,
.parent-panel:before,
.donors-panel:before {
	content: ' ';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	pointer-events: none;
}
.parent-panel:before {
	background:rgba(52,102,204,0.6);
}
.physicians-panel:before {
	background:rgba(219,183,70,0.6);
}

.donors-panel:before {
	background:rgba(113,178,73,0.6);
}

.employees-panel:before {
	background:rgba(231, 100, 214,0.6);
}

.description h4 {
	font-family: Gill Sans Light;
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: 7px;
	color: #d9d9d9;
}

.description h3 {
	letter-spacing: 6px;
}

.description p {
	letter-spacing: 0px;
	font-size: 16px;
	line-height: 28px;
	margin: 5% 0 7% 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 600;
}
.description a {
	color: #ffffff;
    font-size: 13px;
    line-height: 24px;
	letter-spacing: 1px;
}

.close-button {
	position: absolute;
	top: 5%;
	right: 5%;
	cursor: pointer;
}

.list-mighty-brigade .title {
	position: absolute;
	top: 10%;
	left: 10%;
	color: #ffffff;
	cursor: pointer;
    z-index: 2;
}

footer {
	background: #151515;
	color: #eeeeee;
	z-index: 999;
	position: relative;
	min-height: 237px;
}

footer a {
	color: #eeeeee;	
} 

.logo-panel {
	padding: 50px 0;
	width:94%;
	margin: 0 auto;
    max-width: 1440px;
}

.logo-panel:after {
	content: " ";
	display: block;
	clear: both;
}

.choc-logo {
	float: left;
	padding-top: 20px;
}

.other-logo {
	float: right;
}

.other-logo img {
	display: inline-block;
	margin-left: 30px;
	vertical-align: middle;
}

.footer-note {
	border-top: 1px solid #474747;
	text-align: center;
	width: 100%;
	font-size: 14px;
	padding: 30px 0;
	font-family: Gill Sans Light;
}

.social-media {
	position: absolute;
	top: 20px;
	right: 0;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 3px;
}
.social-media .social-media-title {
	margin: 0 20px 0 0;
    font-family: Gill Sans Regular;
    font-weight: bold;
	opacity: 1;
	visibility: visible;
	transition: all 250ms ease-out;
	position: absolute;
	top: 0;
	right: 0;
}
.social-media .social-media-title span{
	padding-right: 4px;
	display: inline-block;
	line-height: 23px;
}

.social-media img,
.social-media svg {
	vertical-align: middle;
}

.social-stroke{stroke: #444444;}
.social-fill{stroke: #444444;}

.light .social-stroke{stroke: #ffffff;}
.light .social-fill{stroke: #ffffff;}

.social-media .social-media-links {
	float: left;
	margin-right: 20px;
	font-size: 12px;
	font-weight: normal;
	display: block;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: -15px;
	transition: all 250ms ease-out;
}

.social-media-outer.light,
.social-media-outer.light a{
	color: #ffffff;
}

.social-media-outer:hover .social-media-title {
	opacity: 0;
	visibility: hidden;
}

.social-media:hover .social-media-links {
	opacity: 1;
	visibility: visible;
	top: 0;
}

.social-media .social-media-links li {
	display: inline-block;
	margin-right: 10px;
}

.social-media .social-media-links li:first-child {
	font-size: 14px;
	font-family: Gill Sans Regular;
	font-weight: bold;
}


#mobile-share{
	float: right;
	visibility: hidden;
	opacity: 0;
	position: relative;
    border: none;
    background: transparent;
}
#mobile-share span {    
	text-align: right;
    text-transform: uppercase;
	font-size: 13px;
	line-height: 14px;
	color: #858585;
    position: absolute;
    right: 40px;
    top: 0;
    width: 100px;
}
#mobile-share img {
	position: absolute;
    right: 8px;
    top: 2px;
}
#mobile-share-modal{
	position: fixed;
	top: 0;
    left: 0;
	width: 100vw;
	height: 100vh;
    padding: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 300ms ease-in;
}
#mobile-share-modal .modal{
	position: absolute;
	top: 150px;
    left: 5vw;
    width: 80vw;
    padding: 5vw;
	background-color: #ffffff;
	z-index: 2;
}
#mobile-share-modal.open .overlay {
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.7);
	position: fixed;
	top: 0px;
	left: 0vw;
	z-index: 1;
}
#mobile-share-modal.open .close{
	position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
}
#mobile-share-modal h6{
	text-align: center;
    font-size: 32px;
    line-height: 36px;
    color: #3268C3;
    padding: 5px 50px;
    letter-spacing: 5px;
    font-family: Gill Sans Light;
}
#mobile-share-modal ul{
	list-style: none;
    padding: 20px 0 10px 70px;
}
#mobile-share-modal ul li{
	margin-bottom: 10px;
}
#mobile-share-modal ul li a{
	color: #A4A4A4;
	font-size: 22px;
    display: block;
}
#mobile-share-modal ul li a span{
	position: relative;
	bottom: 9px;
	left: 5px;
}

.fixed-top .top-white-bg {
	height: 80px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #f5f5f5;
	z-index: 99;
}

#choc-mobile-logo {
	display: none;
}

#choc-logo {
	display: block;
}

#mobile-video{
	display: none;
	opacity: 0;
	visibility: hidden;
}
#desktop-video{
	display: block;
	opacity: 1;
	visibility: visible;
}

/* Smartphones */
@media all and (max-width : 767px) {

	#mobile-video{
		display: block;
		opacity: 1;
		visibility: visible;
	}
	.main-sub-title{
	    margin: 15vh auto;
	}
	#desktop-video{
		display: none;
		opacity: 0;
		visibility: hidden;
	}
	h1 {
		font-size: 26px;
		line-height: 60px;
		letter-spacing: 9px;
	}

	h2 {
		font-size: 22px;
		line-height: 37px;
		letter-spacing: 6px;
		font-family: Gill Sans Regular;
	}

	h3 {
		font-size: 22px;
		line-height: 33px;
		letter-spacing: 9px;
	}

	p {
		font-family: Gill Sans Light;
		font-size: 18px;
		line-height: 29px;
		letter-spacing: 10px;
		color: #ffffff;
    	bottom: 80px;
	}
	.main-header{
		background: #fdfdfd;
		border-bottom: 1px solid #d9d9d9;
		top: 0;
		left: 0;
		padding: 18px 4%;
		width: 92%;
    	max-width: 92vw;
		z-index: 9999;
	}

	.childhood-text {
		padding: 0 4%;
		width: 92%;
		float: none;
    	pointer-events: none;
	}
	.childhood-text p {
		font-size: 18px;
		line-height: 29px;
		font-family: Gill Sans Regular;
		text-align: center;
	}
	h2.title-with-border {
		text-align: center;
		font-size: 22px;
		line-height: 37px;
		letter-spacing: 6px;
		font-family: Gill Sans Regular;
	}

	.childhood-video {
		width: auto;
		height: 195px;
    	float: none;
		margin: 30px auto 0;
		padding: 0 4%;
	}
	.childhood-video iframe {
	    max-width: 92vw;
	}

	.section-two .down-arrow {
		display: none;
	}

	div.social-media-outer {
		display: none !important;
	}

	#mobile-share{
		opacity: 1;
		visibility: visible;	
	}
	#mobile-share-modal.open{
		opacity: 1;
		visibility: visible;
		pointer-events: all;	
    	z-index: 9999;
	}

	.list-mighty-brigade .col-25 {
		height: 400px;
    	width: 100vw;
	}

	#choc-mobile-logo {
		display: block;
		opacity: 0.65;
	}

	#choc-logo {
		display: none;
	}

	.nav {
		display: block !important;
		top: 61px;
		background: #f5f5f5;
		font-size: 10px;
		padding: 0;
    	width: 100vw;
		height: 60px;
		opacity: 1 !important;
		z-index: 999 !important;
	}

	.nav nav {
		position: relative;
		bottom: 0;
		max-width: 100%;
		margin: 0 auto;
		top: 8px;
		width: 370px;
	}
	
	.nav a {
		color: #909090;
		line-height: 13px;
	}

	.nav nav:before {
		border-top: 1px solid #bfbfbf;
		top: auto;
		bottom: -12px;
		width: 251px;
		left: 58px;
	}

	.nav span.bullet {
		border: 1px solid #bfbfbf;
		background: #f5f5f5;
		top: auto;
		margin: 0;
		bottom: -17px;
	}

	.nav a.active span.bullet {
		background: #595959;
		border: 1px solid #595959;
	}

	.nav a.active {
		color: #484848;
	}

	.main-title {
		padding-top: 43%;
		width: 80%;
	}
	.main-sub-title {
		max-width: 312px;
		font-size: 18px;
		line-height: 29px;
		opacity: 1;
		letter-spacing: 0.4px;
		font-weight: bold;
		font-family: Gill Sans Regular;
	}

	.main-title h1 {
		opacity: 1;
	}

	.im-childhood{
		padding-bottom: 100px;    
		padding-top: 40px;
	}

	.childhood-title-inner {
		position: relative;
		right: 0;
		padding-top: 28%;
	}

	.title-outer.animatedParent {
		padding-top: 5%;
	}

	.childhood-title {
		margin: 0 auto 8px;
		padding-bottom: 20px;
	}

	.childhood-title-outer {
		padding: 0% 0 6% 0;
		height: 450px;
	}

	.childhood-sub-text {
		padding: 1.5% 4% 3% 4%;
		max-width: 90%;
		font-family: Gill Sans Light;
		font-size: 18px;
		line-height: 29px;
	}

	.list-data{
		display: none;
	}

	.list-data.overlay-contain {
		display: block;
		float: none;
		width: 100%;
		margin: 0 auto;
	}

	.list-inner-contain {
		top: 0;
		position: absolute;
		text-align: center;
	}

	.list-inner-contain p {
		letter-spacing: 1px;
		font-size: 17px;
		line-height: 25px;
		margin: 15px 0;
	}

	.list-inner-contain img.hr-line {
		margin-top: 20px;
	}

	.list-inner-contain a {
		letter-spacing: 4px;
		line-height: 24px;
	}

	.list-data h3 {
		top: 12%;
		animation: none !important;
		transition: none !important;
	}

	#mantra-section {
		background-size: cover;
		margin-top: 30px;
	}

	.mantra-section-inner {
		max-width: 600px;
		font-size: 26px;
		line-height: 46px;
		padding: 0 20px;
	}

	.title-outer .title-left {
		float: none;
		width: 100%;
		background: url(../images/blue-border.png) no-repeat center bottom;
		padding-bottom: 15px;
		margin-bottom: 5px;
		padding: 0;
		padding: 0 0 12px 0;
		margin-bottom: 15px;
	}
	.title-outer .title-right {
		float: none;
		width: 95%;
		margin: 0 auto;
		font-family: Gill Sans Light;
		padding: 0;
		line-height: 25px;
	}

	.list-mighty-brigade .title {
		color: #ffffff;
		cursor: pointer;
		text-align: center;
		padding-top: 31px;
		letter-spacing: 5px;
		display: block;
		width: 100%;
		left: 0;
		top: 0;
	}

	.logo-panel {
		text-align: center;
		padding: 25px 0;
	}

	.choc-logo {
		float: none;
		padding: 10px 0 24px 0;
		width: 100%;
		text-align: center;
	}

	.choc-logo img {
		width: 267px;
	}

	.other-logo {
		float: none;
		width: 100%;
		text-align: center;
	}

	.other-logo img {
		margin-left: 15px;
		width: 38px;
	}

	.other-logo img:first-child {
		margin-left: 0;
	}

	.footer-note {
		width: 80%;
		padding: 20px 10%;
		font-size: 13px;
		line-height: 19px;
		letter-spacing: 0;
	}

	.mighty-brigade-inner {
		width: 81%;
	}

	.mighty-brigade .title-right{
	    text-align: center;
	}

	#rain {
		top: -50px;
		left: 5px;
		overflow: hidden;
		transform: scale(0.7);
	}
	#hearts{
		top: 20px;
		right: 10px;
	}
	#boom-box{
		bottom: -60px;
		left: auto;
		transform: scale(0.5);
		right: -110px;
	}

	.fadeInUp,
	.fadeInUp.go{
		opacity: 1 !important;
		transform: none;
		animation: none !important;
	}
	.bounceIn,
	.bounceIn.go{
		animation: none !important;
	}
}


/* Tablets */
@media all and (min-width : 768px) and (max-width : 992px) {
	
	.childhood-text {
		padding: 0 4% 15px;
		width: 92%;
		float: none;
    	pointer-events: none;
	}
	.childhood-text p {
		font-size: 18px;
		line-height: 29px;
		font-family: Gill Sans Regular;
	}
	h2.title-with-border {
		text-align: center;
		font-size: 22px;
		line-height: 37px;
		letter-spacing: 6px;
		font-family: Gill Sans Regular;
	}
	.childhood-video {
		width: 50%;
		margin-right: 25%;
	}
	.childhood-title-outer{
		height: 295px;
	}
	.childhood-title-inner {
		position: relative;
		right: 0;
		padding-top: 15px;
	}

	.childhood-title {
		margin: 0 auto 8px;
		padding-bottom: 20px;
		max-width: 550px;
	}
	.childhood-sub-text {
		padding: 1.5% 4% 3% 4%;
		max-width: 90%;
		font-family: Gill Sans Light;
		font-size: 18px;
		line-height: 29px;
	}

	.list-data h3 {
		font-size: 13px;
		letter-spacing: 3px;
		line-height: 16px;
	}
	.list-inner-contain p {
		letter-spacing: 0.1px;
		font-size: 13px;
    	line-height: 15px;
	}

	.list-inner-contain a {
		font-size: 13px;    
		line-height: 15px;
		letter-spacing: 1px;
		margin-top: 15px;
	}

	.list-inner-contain {
		padding: 32% 5% 10% 5%;
	}

	.childhood-title-inner.fixed-top {
		position: absolute;
	}

	.title-outer {
		width: 96%;
		margin: 0 auto;
	}

	.title-outer .title-left h2{
		font-size: 22px;
		line-height: 45px;
		letter-spacing: 7px;
	}
	
	.mantra-section-inner {
		font-size: 34px;
	}

	.list-mighty-brigade .title {
		font-size: 17px;
		line-height: 30px;
		letter-spacing: 5px;
		top: 6%;
	}

	.mighty-brigade-inner {
		padding: 22% 6% 5% 5%;
		width: 89%;
	}

	.description h3 {
		font-size: 18px;
		line-height: 30px;
	}

	.description p {
		letter-spacing: 1px;
		font-size: 15px;
		line-height: 22px;
	}

	.description a {
		font-size: 13px;
	}

	.close-button {
		top: 1%;
		right: 2%;
	}


	#hearts{
		top: 30px;
		right: 200px;
	}

	#rain{
		left: 200px;
		width: 175px;
	}
	#boom-box {
		width: 230px;
		left: 0vw;
	}
}


/* Laptops */
@media all and (min-width : 992px) and (max-width : 1200px) {
	
	.childhood-video {
		width: 50%;
		margin-right: 3%;
	}

	.list-data h3 {
		font-size: 17px;
		letter-spacing: 6px;
		line-height: 25px;
	}
	.list-inner-contain p {
		letter-spacing: 0.5px;
		font-size: 15px;
		line-height: 20px;
	}

	.list-inner-contain a {
		font-size: 14px;
	}

	.list-inner-contain {
		padding: 32% 5% 10% 5%;
	}

	.childhood-title-inner.fixed-top {
		position: absolute;
	}

	.title-outer {
		width: 96%;
		margin: 0 auto;
	}

	.title-outer .title-left h2 {
		font-size: 22px;
		line-height: 45px;
		letter-spacing: 7px;
	}
	
	.mantra-section-inner {
		font-size: 34px;
	}

	.list-mighty-brigade .title {
		font-size: 17px;
		line-height: 30px;
		letter-spacing: 5px;
		top: 6%;
	}


}


/* Desktops */
@media all and (min-width : 1200px) {
	


}
