* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

p {
	margin: 0;	
}

ul, li {
	list-style: none;
	margin: 0;
	display: inline-block;
	padding: 0;
	line-height: 1;
}

a {
	text-decoration: none;
	color: inherit;
}

body {
	font-family: "rooney-web", Helvetica, Arial, sans-serif;
	margin: 0;
	display: block;	
	line-height: 1;
	width: 100%;
	color: #5a5757;
}

/* COLUMNS a-go-go*/

.column {
	padding-left: 1%;
	padding-right: 1%;
	float: left;
	position: relative;
}

.column:after {
  display: table;
  content: '';
  clear: both;
}

.column-1 {
	width: 8.333%;
}

.column-2 {
	width: 16.667%;
}

.column-3 {
	width: 25%;
}

.column-4 {
	width: 33.333%;
}

.column-5 {
	width: 41.667%;
}

.column-6 {
	width: 50%;
}

.column-7 {
	width: 58.333%;
}

.column-8 {
	width: 66.667%;
}

.column-9 {
	width: 75%;
}

.column-10 {
	width: 83.333%;
}

.column-11 {
	width: 91.667%;
}

.column-12 {
	width: 100%;
}

.col-pad-right-13 {
	padding-right: 13%;
}

.col-pad-off {
	padding: 0;
}

/* END COLUMNS */

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.wrapper {
	max-width: 960px;
	margin: 0 auto;
	position: relative;
	padding: 0 2em;
}

.wrapper:after {
  display: table;
  content: '';
  clear: both;
}

.content-wrapper {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 1, 1);
  -moz-transition-timing-function: cubic-bezier(0, 1, 1, 1);
  -o-transition-timing-function: cubic-bezier(0, 1, 1, 1);
  transition-timing-function: cubic-bezier(0, 1, 1, 1);
}

section {
	padding: 2em 0;
	position: relative;
}

/* NAVIGATION */

.navigation {
  padding: 1.5em 0;
  z-index: 1000;
}

.menu-container {
	margin-top: .8em;
}

.navigation li {
  display: inline-block;
  margin: 0 0.75em;
  position: relative;
 }


.navigation li ul {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background: white;
  left: 0;
  margin-left: -1em;
  margin-top: 1.5em;
  width: 200%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0.1em 0.25em 0.1em rgba(0,0,0,0.15);
  -moz-box-shadow: 0 0.1em 0.25em 0.1em rgba(0,0,0,0.15);
  box-shadow: 0 0.1em 0.25em 0.1em rgba(0,0,0,0.15);
  -webkit-transform: translate3d(0, -1em, 0);
  -moz-transform: translate3d(0, -1em, 0);
  -ms-transform: translate3d(0, -1em, 0);
  -o-transform: translate3d(0, -1em, 0);
  transform: translate3d(0, -1em, 0);
  -webkit-transition-duration: 150ms;
  -moz-transition-duration: 150ms;
  -o-transition-duration: 150ms;
  transition-duration: 150ms;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 1, 1);
  -moz-transition-timing-function: cubic-bezier(0, 1, 1, 1);
  -o-transition-timing-function: cubic-bezier(0, 1, 1, 1);
  transition-timing-function: cubic-bezier(0, 1, 1, 1);
}

.navigation li:hover ul {
/*  display: block;*/
  opacity: 1;
  visibility: visible;
}

.navigation li ul li {
  display: block;
  text-align: left;
  padding: .5em 0;
}

.navigation li ul li:hover {
	color: #969494;
}

.navigation li ul li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}

.wordmark {
	font-family: "ff-cocon-web-pro";
	font-size: 2.9em;
	color: #13cc84;
	line-height: 0.8;
}

.button-orange {
  background-color: #ff9031;
  color: #fff;
  border: 2px solid #ff9031;
  font-size: .8em;
  text-transform: uppercase;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  padding: 0.8em 2em 0.8em 2em;
  margin-right: 0.25em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.85em;
  font-weight: 600;
  cursor: pointer;
}

.button-orange:hover {
  background-color: #FFB06C;
  color: #fff;
  border: 2px solid #FFB06C;
}

.menu-item-has-children {
  padding-right: 1.5em;
  background: transparent url("../images/arrow-down-03-02.svg") right center no-repeat;
  background-size: 14px;
}

.orange {
	background-color: #ff9031;
}

.blue {
	background-color: #16dff9;
}

.green {
	background-color: #13cc84;
}

.brown {
	background-color: #99865b;
}

.dark-gray {
	background-color: #505050;
}

/* CONTENT */

.hero {
  background-size: cover;
  background-position: center center;
  padding: 20% 0;
  text-shadow: 0 1px 1px rgba(5,44,48,0.5);
}

.hero-no-top-pad {
  background-size: cover;
  background-position: center center;
  padding: 0 0 2% 0;
  text-shadow: 0 1px 1px rgba(5,44,48,0.5);
}

.static {
	position: static;
}

.centered {
  float: none;
  margin: 0 auto;
  padding: 0;
}

figure {
	max-width: 200px;
	margin-bottom:.5em;
}

.push-8 {
	margin-left: 8.3333%;
}

.shadow {
    -webkit-filter: drop-shadow(  -2px -1px 7px rgba(95, 95, 95, 0.9) );
            filter: drop-shadow(  -2px -1px 7px rgba(95, 95, 95, 0.9) );
}

#chat-circle:hover {
  opacity: .7;
}

#chat-paragraph:hover {
  opacity: .7;
}

/* GET HELP */

.help-sections {
	  padding: 0 0 2em 0;
}

.help-head {
	padding-top: 40px;
}

.help-info {
	padding: 0 40px;
  	position: absolute;
  	top: 170px;
}

.paper {
	background: transparent url("../images/paper-texture.png") no-repeat;
}

.texture {
	-webkit-filter: drop-shadow( 3px 2px 3px rgba(95, 95, 95, 0.9) );
	-moz-filter: drop-shadow( 3px 2px 3px rgba(95, 95, 95, 0.9) );
	filter: drop-shadow( 3px 2px 3px rgba(95, 95, 95, 0.9) );
}

.texture img {
	max-width: 100%;
}

.help-title {

}

.help-title a:hover {
	color: gray;
}

.help-title-hiv {
	position: absolute;
  	top: 100px;
  	right: 60px;
}

.help-title-bullying {
	position: absolute;
  	top: 100px;
  	right: 55px;
}

.help-title-suicide {
	position: absolute;
  	top: 80px;
  	/*right: 50px;*/
}

.help-title-shelters {
	position: absolute;
  	top: 80px;
  	/*right: 50px;*/
}

.help-title-drug {
	position: absolute;
  	top: 80px;
  	/*right: 50px;*/
}

.help-title-depression {
	position: absolute;
  	top: 100px;
  	right: 35px;
}

/* HIV AIDS PAGE */

.hiv-title {
	padding: 1.5em 0;
}

#hiv-nav {
	padding-bottom: .2em;
  	background-color: #505050;
  	border: 2px solid #505050;
  	border-radius: 2px;
  	width: 70%;
  	margin-bottom: 2em;
}

#hiv-nav ul {
	font-size: 1.3em;
  	padding: .5em 0 .5em 1em;
}

#hiv-nav ul li {
	border-right: 2px solid white;
	padding-right: .5em;
    padding-left: 0.4em;
}

#hiv-nav ul li:last-of-type {
	border:none;
}

#hiv-nav ul li:first-of-type {
	padding-left:0;
}

.hiv-testing {
	padding-bottom: .2em;

}

.hiv-testing-title {
	padding-bottom: .2em;

}

.hiv-testing-head {
	padding-bottom: .2em;

}

.hiv-testing-info {
	 padding: 1em 0;
}

.hiv-checklist {

}

.hiv-checklist ul {
	display: block;
}

.hiv-checklist ul li {
	display: block;
  	line-height: 1.5em;
  	font-size: 1.4em;
  	background: transparent url("../images/check-02.svg") no-repeat;
  	background-size: 20px;
  	padding-left: 25px;
}

.locations {
  padding-bottom: 6em;
}

/* ANTI-BULLYING */


#bullying-nav {
  padding-bottom: .2em;
    background-color: #505050;
    border: 2px solid #505050;
    border-radius: 2px;
    width: 57%;
    margin-bottom: 2em;
}

#bullying-nav ul {
  font-size: 1.3em;
    padding: .5em 0 .5em .5em;
}

#bullying-nav ul li {
  border-right: 2px solid white;
  padding-right: .5em;
    padding-left: 0.4em;
}

#bullying-nav ul li:last-of-type {
  border:none;
}

#bullying-nav ul li:first-of-type {
  padding-left:0;
}

.verbal-bullying-checklist {
  margin-top: 2.5em;
  padding-left: 10%;

}

.verbal-bullying-checklist ul {
  display: block;
}

.verbal-bullying-checklist ul li {
    display: block;
    line-height: 2em;
    font-size: 1.4em;
    background: transparent url("../images/check-02.svg") left top no-repeat;
    background-size: 30px;
    padding-left: 35px;

}

#bull-horn {
  margin-top:3em;
}

.cyber-bullying-checklist {
  margin-top: 2.5em;
  /*padding-left: 10%;*/

}

.cyber-bullying-checklist ul {
  display: block;
}

.cyber-bullying-checklist ul li {
    display: block;
    line-height: 1.8em;
    font-size: 1.4em;
    background: transparent url("../images/check-02.svg") left top no-repeat;
    background-size: 30px;
    padding-left: 35px;

}

.physical-bullying-checklist {
  margin-top: 2.5em;
  /*padding-left: 10%;*/

}

.physical-bullying-checklist ul {
  display: block;
}

.physical-bullying-checklist ul li {
    display: block;
    line-height: 1.8em;
    font-size: 1.4em;
    background: transparent url("../images/check-gray.svg") left top no-repeat;
    background-size: 55px;
    padding-left: 35px;

}

#laptop {
  margin-top: 2em;
}

/* VOLUNTEER */

form {

}

label {

}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  margin-top: 10px;
  outline: none;
  border: 1px solid lightgrey;
  background: lightgrey;
}

input:focus {
  background: white;
  border: 1px solid #ff9031 ;
}


select {
    padding:11px;
    margin: 0;
    margin-top:10px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
/*    -webkit-box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;
    -moz-box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;
    box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;*/
    background: #D3D3D3;;
    color:#5A5757;;
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
}

/* Targetting Webkit browsers only. FF will show the dropdown arrow with so much padding. */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {padding-right:18px}
}

select {position:relative}
select:after {
    content:'<>';
    font:11px "Consolas", monospace;
    color:#aaa;
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    transform:rotate(90deg);
    right:8px; top:2px;
    padding:0 0 2px;
    border-bottom:1px solid #ddd;
    position:absolute;
    pointer-events:none;
}
select:before {
    content:'';
    right:6px; top:0px;
    width:20px; height:20px;
    background:#f8f8f8;
    position:absolute;
    pointer-events:none;
    display:block;
}


textarea {
  width: 100%;
  margin-top: 5px;
  background-color: lightgray;
  border: none;
  border: 1px solid lightgrey;

}

textarea:focus {
  background: white;
  border: 1px solid #ff9031 ;
}

#submit {
  width: 20%;
  float: right;
  border: 2px solid lightgray;
  border-radius: 5px;
  background-color: #D3D3D3;
  font-family: "rooney-web";
  font-size: 1em;
  color: #5A5757;
}

#submit:hover {
  width: 20%;
  float: right;
  border: 2px solid lightgray;
  border-radius: 5px;
  background-color: #FFF;
  font-family: "rooney-web";
  font-size: 1em;
  color: #5A5757;
  cursor: pointer;
}


/* TYPE */

.ratio {
	font-family: "ratio", sans-serif;
}

.dagny {
	font-family: "ff-dagny-web-pro", sans-serif;
}

.text-center {
	text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-white {
	color: #fff;
}

.text-green {
	color: #13cc84;
}

.text-brown {
	color: #99865b;
}

.text-orange {
	color: #ff9031;
}

.text-light-grey {
	color: #969494;
}

.text-blue {
	color: #16dff9;
}

.caps {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.semi-bold {
	font-weight: 600;
}

.text-shadow {
	text-shadow: 3px 1px 5px rgba(95, 95, 95, 0.9);
}

.italic {
	font-style: italic;
}

.small-caps {
	font-variant: small-caps;
	letter-spacing: .2em;
}

h1 {
	font-size: 3em;
	font-weight: 500;
}

h2 {
	font-size: 2.5em;
	font-weight: 400;
	margin-bottom: .5em;
	line-height:1.2em;
}

h3 {
	font-size:1.6em;
	font-weight: 400;
	margin-bottom: .3em;
}

h4 {
	font-size:1.4em;
	font-weight: 200;
	margin-bottom: .3em;
	line-height: 1.3em;
}

h5 {
	font-size: 1.2em;
	font-weight: 200;
	margin-bottom:.3em;
	line-height:1.2em;
}

h6 {
	font-size: 2em;
	font-weight: 600;
	margin-bottom:.5em;
}

h7 {
  font-size: 2.5em;
  font-weight: 200;
  margin-bottom: .3em;
  line-height: 1.2em;
}

h8 {
  font-size:2em;
  font-weight: 200;
  line-height: 1.5em;

}


.paragraph {
  font-size: 1.5em;
  line-height: 1.4em;
  font-weight: 200;
  letter-spacing: .02em;
}

.paragraph-smaller {
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 200;
  letter-spacing: .02em;
}


/* CHAT BOX */

#chat-box {
  width: 100px;
  height: 40px;
  background-color: #ff9031;
  border: 2px #ff9031 solid;
  border-radius: 5px;
  color: white;
  position: fixed;
  bottom: 0;
  right: 15%;
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  padding: 9px;
  cursor: pointer;
  z-index: 1;
}

#chat-box-big {
  display:none;
  width: 250px;
  height: 40px;
  background-color: #ff9031;
  border: 2px #ff9031 solid;
  border-radius: 5px;
  color: white;
  position: fixed;
  bottom: 250px;
  right: 15%;
  font-size: 1em;
  font-weight: 300;
  text-align: left;
  padding: 9px;
  cursor: pointer;
  background: #ff9031 url("../images/close-box.svg") right center no-repeat;
  background-size: 15px;
  background-position-x: 220px;
  z-index: 2;
}


#chat-box-input {
  display: none;
  width: 250px;
  height: 250px;
  background-color: #fff;
  border: 2px #ff9031 solid;
  border-radius: 5px;
  color: white;
  position: fixed;
  bottom: 0;
  right: 15%;
  font-size: 1em;
  font-weight: 300;
  text-align: center;
  padding: 9px;
  z-index: 3;
}



.chat-box-container{
  width:100%;
  display:block;
  margin:0 auto;
  /*box-shadow:0 2px 5px rgba(0,0,0,0.4);*/
}


.chat-box{  
  color:#a1a1a1;
  font-size: 12px;
}

.enter-message{
  /*background:#ECECEC;*/
  /*padding:0 20px;*/
  font-size: 12px;

  }
.chat-box .message-box{
/*  padding:18px 0 10px;
  clear:both;*/
}
.message-box .picture{
  float:left;
  width:50px;
  display:block;
  padding-right:10px;
}
.picture img{
  width:40px;  
  border-radius:5px;
}

.picture span{
  font-weight:bold;
  font-size:12px;
  clear:both;
  display:block;
  text-align:center;
  margin-top:3px;
}
.message{  
  display:inline-block;
  padding:12px;
  width:75%;
  border-radius:2px;
  box-shadow: 0 1px 1px rgba(0,0,0,.04);
  position:relative;
  background-color: rgba(236, 233, 233, 0.82);
}
.message:before{
  content:"";
  position:absolute;
  display:block;
  left:0;
  border-right:6px solid #EEECEC;
  border-top: 6px solid transparent;
  border-bottom:6px solid transparent;
  top:10px;
  margin-left:-6px;
}
.message span{
  color:#555;
  font-weight:bold;
}
.message p{
  padding-top:5px;
}

.enter-message{
  padding:13px 0px;
  margin-top: 54%;
  /*margin-left: -20px;*/
}
.enter-message input{
  border:2px #ff9031 solid;
  padding:10px 12px;
  background:#E5E3E3;
  width:75%;
  border-radius:2px;
  outline: none;
}
.enter-message a.send{
  padding:12px;
  background:#16dff9;
  border-radius:2px;
  float:right;
  color: #fff;
  font-weight: 500;
  margin-top:10px;
}

.enter-message input:focus{
  border:2px #ff9031 solid;
  padding:10px 12px;
  background:#fff;
  width:75%;
  border-radius:2px;
}



/* FOOTER */

.light-blue {
	background-color: #71fff0;
}

.color-pulse { 
	-webkit-animation: colorPulse 10s infinite alternate;
	-moz-animation: colorPulse 10s infinite alternate;
  	-ms-animation: colorPulse 10s infinite alternate;
 	 -o-animation: colorPulse 10s infinite alternate;
  	
}

@-webkit-keyframes colorPulse { 
	0% {background-color: #13CC84;} 50% {background-color: #71fff0;} 100% {background-color: #ff9031;} 
}

@-moz-keyframes colorPulse { 
	0% {background-color: #13CC84;} 50% {background-color: #71fff0;} 100% {background-color: #ff9031;} 
}

.footer-links {
	margin-top: .7em;
}

.footer-social-media {
	margin-top: 3.4em;
}

.footer-text-light {
	font-size: 1em;
	font-weight: 200;
}

.footer-text-normal {
	font-size: .8em;
	font-weight: 400;
}

.footer-wordmark {
	margin-bottom: .3em;
}

.footer-address {
	margin-bottom: 1em;
}

.footer-tagline {
	margin-bottom: .5em;
}

.footer-copyright {
	font-size: .7em;
	padding: 3em 0 0 0;
}

.footer-search {
	margin-top: 3.7em;
}

.search-name {
	font-size: .8em;
}

.search-bar {

}

.search-btn {
	float:right;
	background: transparent url("../images/arrow-down-02.svg") right center no-repeat;
	-ms-transform: rotate(270deg); /* IE 9 */
    -webkit-transform: rotate(270deg); /* Chrome, Safari, Opera */
    transform: rotate(270deg);
    border: 4px #13cc84 solid;
    max-width: 20px;
}

.search-bar input[type=text] {
  background: rgba(255,255,255,.3);
  color: gray;
  box-shadow: 0 0 2px rgba(0,0,0,.5) inset , 0 0 2px rgba(0,0,0,.3);
  border: 2px solid white;
  border-radius: 8px;
  padding: 3px 10px;
  width: 150px;
  float: right;
  font-size: 10px;
  opacity: .7;
  -webkit-transition: opacity .3s ease-out , width .3s ease-out;
  -moz-transition: opacity .3s ease-out , width .3s ease-out;
  -ms-transition: opacity .3s ease-out , width .3s ease-out;
  -o-transition: opacity .3s ease-out , width .3s ease-out;
  transition: opacity .3s ease-out , width .3s ease-out;
}

.search-bar input:hover {
  opacity: .8;
  width: 155px;
}

.search-bar input:focus {
  opacity: 1;
  width: 170px;
  outline:none;
}

#filter-button {
  display: block;
  width: 17px;
  height: 43px;
  background: url('../images/search-icon-01.svg') center center no-repeat;
  text-indent: -9999px;
  float: right;
  border: none;
  margin-left: 8px;
  cursor: pointer;
  padding: 0;
}

/*.search-btn img {
	max-width: 20px;
  	border: 4px #13cc84 solid;
  	text-align: right;
}*/

/* MAP STYLE */
/*
#resources-map {
        width: 100%;
        height: 100%;
}
.gm-style-iw * {
        display: block;
        width: 175px;
        float: left;
}

.gm-style-iw h4, .gm-style-iw p {
        margin: 0;
        padding: .5em;
}

.gm-style-iw a {
        color: #13cc84;
}*/




























