@charset "UTF-8";
/* CSS Document */

body {
	font-family: 'Lato', "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif !important;
	color: #fff;
	background-color #fff !important;
}

a {
	color:#ff6666;
}

p {
	font-size:1.25em;
	line-height:1.75em;
	text-align:justify;
	color: #fff;
}

h2 {
	text-transform: uppercase;
	font-size:3.4375em;
	font-weight: 700;
	line-height: 1em;
	margin-bottom:40px;
}

blockquote {
	font: italic 1.875em/1.1em 'Droid Serif', Times, serif;
	color: #fff;
	border: none;
	text-align: center;
}

.button {
	background-color:#ff6666;
	text-transform:uppercase;
	font-weight:900;
	font-size:1.3125em;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px; /* future proofing */
	-khtml-border-radius: 50px;
	letter-spacing:.04em;
	display:inline-block;
	padding: 0.65em 1.2em;
}

.button:hover  {
	color:#ff6666;
	background-color: #FFF;
}

.rescued_btn:hover {
	background-color: #dbdbdb !important;
}

/* Header Styles */

.share-bar {
	background-repeat: repeat;
	position: fixed;
	top: 330px;
	z-index: 1000;
	background-color: #FFFFFF;
}
	
	.share-bar a {
	margin: 12px 8px;
	display: block;
	}

.title_container {
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
}
/* Navigation Styles */

.top-bar {
	background-color: #fff;
}
.top-bar ul > li {
	background-color: #fff;
}
.top-bar ul > li a {
	text-transform: uppercase;
	color: #26858e;
}

.top-bar ul > li {
		border-right: 1px solid #26858e;
		text-align: center;
	}
	.top-bar ul > li:last-child {
		border-right: none;
	}


/* Section 1 Styles */

.section_01 {
	background-image: url(../img/section-1-background.jpg);
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	width:100%;
}

.section_01 .row {
	padding-top: 3.75em;
	padding-bottom: 3.75em;
}

.section_01 p {
	color:#fff;
	font-weight:600;
}

/* Infographic Section Styles */

section.infographics {
	padding-top: 2rem;
    padding-bottom: 2rem;
}

.infographic_button h3 {
	text-transform:uppercase;
	font-weight:700;
	color:#fff;
	font-size:2em;
	line-height:1.1em;
	padding-bottom: .4em;
}

.infographic_button {
	padding:3.7em 0;
}

.infographic_button .button {
	font-weight:700;
	font-style:italic;
	font-size:1.1em;
}

.info_button_01 {
	background:url(../img/inforgraphic_button01.jpg);
}

.info_button_02 {
	background:url(../img/inforgraphic_button02.jpg);
}

/* Section 2 Styles */

.section02 {
	background-color: #26858e;
	padding: 3.75em 0;
}

.section02 p {
	font-size: 18px;
	line-height: 24px;
}

.flex-video {
	margin: 3.75em 0;
}

/* Buddy & Cooper Section styles */
.section03 {
	background-image: url(../img/section-3-background.jpg);
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height:29.6875em;
	padding-top: 257px;
}

.section03 p {
	font-size: 1.5em;
	font-weight: 700;
	text-align: center;
}

/* Section 4 */

.section04 {
	background-color:#004057;
	padding: 3.75em 0;
}

.section04 p {
	font-size: 1.125em;
	line-height: 1.375em;
}

/* Section 5 */

.section05 {
	background-color:#c7ffd4;
	padding: 3.75em 0;
}

.section05 p {
	color: #003649;
	font-size: 1.125em;
	line-height: 1.375em;
}

.section05 h2 {
	color: #252525;
}

/* Saved! Section */

.section06 {
	padding: 3.75em 0;
}

.section06 h2, .section06 p {
	color:#003649;
}

.section06 p {
	font-size: 1em;
	line-height: 1.4em;
}

.section06 img {
	margin-bottom: 1em;
}

.section06 .button {
	margin-top:20px;
}

/* Section 7 Styles */

.section07 {
	background-image: url(../img/section-7-background.jpg);
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	width:100%;
}

.section07 {
	padding-top: 3.75em;
	padding-bottom: 3.75em;
}

.section07 p {
	color:#fff;
	font-weight:600;
}

/* Section 8 */

.section08 {
	background-color:#26858e;
	padding: 3.75em 0;
}

.section08 ul li {
	color:#fff;
	font-weight: 700;
	font-size: 1.5em;
	line-height: 2.25em;
	}

.section08 ul li a {
	color:#fff;
	}

	.section08 ul li a:hover {
	color:#ff6666;
	}
	
	/* popup */
.popup {
	display: none;
}
.popup__overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.75);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
}
.popup__modal {
	position: relative;
	display: inline-block;
	border: 2px solid #fff;
	border-radius: 2px;
}
.popup__close {
	position: absolute;
	top: -13px;
	right: -13px;
	border-radius: 50%;
	background-color: #fff;
	color: #000;
	font-weight: 700;
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
}
.popup__close:hover {
	cursor: pointer;
	color: #ff6666;
}


/**
FOOTER
*/

#footer{
    display: flex;
    justify-content: center;
    align-items: center;
	background:#666666;
}

.branding_footer{
	text-align: center;
}


// Small screens
@media only screen { 



} /* Define mobile styles */

@media only screen and (max-width: 40em) { 


p {
text-align: left;
}

.section_01 p {
        font-size: 1.1em;
    line-height: 1.4em;

}

h2 {
	font-size: 2.3em;
}
.infographic_button {
	margin-bottom: 2em;
}
.top-bar ul > li {
	border: none;
	text-align: left;
}
.section03 {
	height: auto;
	padding-top: 80px;
	padding-bottom: 80px;
}
.section03 p {
	font-size: 1em;
}

.section08 ul li {
    font-size: 1.2em;
    line-height: 1.3em;
	margin-bottom:15px;
}



} /* max-width 640px, mobile-only styles, use when QAing mobile issues */

// Medium screens
@media only screen and (min-width: 40.063em) {
	

	 } /* min-width 641px, medium screens */

@media only screen and (min-width: 40.063em) and (max-width: 64em) { 

} /* min-width 641px and max-width 1024px, use when QAing tablet-only issues */

// Large screens
@media only screen and (min-width: 64.063em) { 
	.infographic_button h3 {
		font-size:3.125em;
	}
	
	.button {
		font-size:1.5em;
	}
} /* min-width 1025px, large screens */

@media only screen and (min-width: 64.063em) and (max-width: 68.75em) { 
	.infographic_button h3 {
		font-size:2.5em;
	}
	
}

@media only screen and (min-width: 68.75em) { 
	.infographic_button h3 {
		font-size:3.125em;
	}
	
	.button {
		font-size:1.5em;
	}
}


@media only screen and (min-width: 64.063em) and (max-width: 90em) { } /* min-width 1025px and max-width 1440px, use when QAing large screen-only issues */

// XLarge screens
@media only screen and (min-width: 90.063em) { 

} /* min-width 1441px, xlarge screens */

@media only screen and (min-width: 90.063em) and (max-width: 120em) { } /* min-width 1441px and max-width 1920px, use when QAing xlarge screen-only issues */

// XXLarge screens
@media only screen and (min-width: 120.063em) { } /* min-width 1921px, xxlarge screens */