/*
Theme Name: Mindspike
Theme URI: http://underscores.me/
Author: Christopher Cook
Author URI: http://mindspikedesign.com
Description: Mindspike Starter Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mindspike
Tags: grid-layout, featured-images

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

Mindspike is based on Underscores http://underscores.me/, (C) 2012-2016 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 http://necolas.github.com/normalize.css/
*/


/* ==============================
== General
============================== */
html {
	font-size: 100%;
}

body {
	width: 100%;
	margin: 0 0 !important;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	color: #4c4e56;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html, body {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

a {
  color: #ed1776; 
	text-decoration: none;
	-webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

a.more-link {
  font-weight: 500;
  letter-spacing: 2px;
}

a:focus, button:focus, input:focus, textarea:focus {
	outline: none !important;
}

p {
  margin: 0 0 15px 0 !important;
}

.page-wrapper {
	padding: 0 0;
}

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

.max800 {
  max-width: 800px !important;
  margin: 0 auto !important;
}

.max500 {
  max-width: 500px !important;
  margin: 0 auto !important;
}

.grecaptcha-badge {
  display: none !important;
}





/* ==============================
== WordPress Core
============================== */

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

.gallery-caption {
	
}

.sticky {
	
}

.bypostauthor {
	
}






.rsc_message {
  padding: 32px 0;
}




/* ==============================
== Header
============================== */
.main-header{
	width: 100% !important;
	background: #111;
}

.header-inner {
	width: 100%;
	margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  justify-content: space-between
}

.logo {
	width: 150px !important;
  padding: 10px 0 !important;
}

.header-logo {
  width: 150px !important;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end ;
	text-align: right;
}






#ubermenu-nav-main-2-primary li a:after {
  position: absolute;
  width: 60px;
  margin-left: -30px;
  top: 80%;
  left: 50%;
  right: 50%;
  bottom: 0;
  content: "";
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 15px solid #ed1776;
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#ubermenu-nav-main-2-primary li a:hover:after {
  opacity: 1;
}

.ubermenu-item-normal a:after {
  position: relative;
  width: 0px !important;
  margin-left: 0px !important;
  top: 0;
  content: "";
  border: none !important;
}



/* ==============================
== Typography
============================== */

h1, h2, h3, h4, h5 {
	line-height: 1.2em;
  margin: 0 0 .6em 0 !important;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2.4em;
}

h3 {
	font-size: 1.8em;
}

h4 {
	font-size: 1.2em;
}

.cursive {
  font-family: 'Patrick Hand SC', cursive !important;
  letter-spacing: 1px;
}

.large-text {
  font-size: 2em;
  line-height: 1.2em;
}

.xlarge-text {
  font-size: 3em;
  line-height: 1.2em;
}

.big {
  font-size: 1.3em !important;
  line-height: 1.2em;
}

.white {
	color: #fff !important;
}

.blue {
  color: #2dccd3 !important;
}

.green {
  color: #cedc00 !important;
}

.pink {
  color: #e31c79 !important;
}

.orange {
  color: #f0b323 !important;
}

.grey {
  color: #4c4e56 !important;
}

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




.colors-bar{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-box {
  width: 100%;
  padding: 15px 0;
}

.pink-box {
  background: #e31c79 !important;
}

.blue-box {
  background: #2dccd3 !important;
}

.orange-box {
  background: #f0b323 !important;
}

.green-box {
  background: #cedc00 !important;
}





.pink-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(237,23,118,0.9);
}

.blue-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(61,193,205,0.9);
}

.green-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(198,212,45,0.9);
}

.z999 {
  z-index: 999 !important;
}




.owl-item {
  text-align: center !important;
}


/* ==============================
== Buttons
============================== */

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px 5px 5px 0;
}

.vc_btn3 {
  font-weight: 600 !important;
  letter-spacing: 1px !important;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.btn-white-outline {
  display: inline-block;
  border: 2px #fff solid;
  padding: 15px 30px;
  color: #fff !important;
  letter-spacing: 1px;
  font-weight: 700;
}

.btn-white-outline:hover {
  background: #fff;
  color: #e31c79 !important;
}


.btn-pink {
  display: inline-block;
  background: #e31c79;
  padding: 15px 30px;
  color: #fff !important;
  letter-spacing: 1px;
}


.vc_btn3-inline {
  margin-right: 15px !important;
}




/* ==============================
== Homepage
============================== */


.relative {
  position: relative !important;
}

#triangle-left-blue {
  position: absolute;
  z-index: 999;
  right: 0;
  width: 80px;
  height: 200px;
  margin-top: -100px;
  border-top: 100px solid transparent;
  border-right: 80px solid #3dc1cc;
  border-bottom: 100px solid transparent;
}

#triangle-right-pink {
  position: absolute;
  z-index: 999;
  top: 250px;
  left: 0;
  width: 80px;
  height: 200px;
  margin-top: -100px;
  border-top: 100px solid transparent;
  border-left: 80px solid #ed1776;
  border-bottom: 100px solid transparent;
}

#triangle-right-green {
  position: absolute;
  z-index: 999;
  left: 0;
  width: 80px;
  height: 200px;
  margin-top: -100px;
  border-top: 100px solid transparent;
  border-left: 80px solid #c6d32d;
  border-bottom: 100px solid transparent;
}

.border-white{
  border: 1px #fff solid;
  padding: 30px 30px !important;
}







#donateBoxes {
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
}


#donateFlex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.donate-hover-bg {
  width: 100%;
	height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 15px;
  background: rgba(61,193,205,0.7) !important;
  color: #fff !important;
  opacity: 1;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  cursor: default;
}

.donate-hover-bg h2 {
 font-weight: 700 !important; 
}

.donate-hover-bg:hover {
  opacity: 0;
}

#donateBox {
  width: 23%;
  color: #e31c79;
  background-size: cover !important;
  background-position: center !important;
  border: 10px #fff solid;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.15);
  margin: 1% 1%;
  font-weight: 700;
}


/* Shutter Out Horizontal */
.hvr-donate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-donate:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2dccd3;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-donate:hover, .hvr-donate:focus, .hvr-donate:active {
  color: #fff !important;
}
.hvr-donate:hover:before, .hvr-donate:focus:before, .hvr-donate:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}






/* ==============================
== Chapters
============================== */


.chapter-slider {
  width: 100% !important;
  height: 600px;
  margin: 0 0 !important;
}

.chapter-slider .bx-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  margin: 0 0 !important;
  padding: 0 0 !important;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
  margin-bottom: 0 !important;
}

.chapter-slider .bx-viewport {
  width: 100% !important;
  height: 100% !important;
  margin: 0 0 !important;
  display: block;
}

.chapter-slider .chapter-bxslider {
  position: relative;
  margin: 0 0 !important;
  width: 100%;
  height: 100%;
  display: block;
}


.chapter-slider .chapter-bxslider .slide {
  height: 100%;
  margin: 0 0 !important;
  background-size: cover !important;
  background-position: center !important;
}




.chapter-page-title {
  width: 100%;
  background: #111;
  padding: 60px 15px 0 15px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.chapter-page-title h1 {
  margin: 0 0 !important;
}


#chapterSubscribe {
  text-align: center;
  padding-bottom: 32px;
}

.chapter-subscribe-title {
  width: 100%;
  background: #111;
  padding: 60px 15px 0 15px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 90px !important;
}

.chapter-subscribe-title h3 {
  margin: 0 0 !important;
}




.chapter-location-img {
  max-width: 128px;
  margin: 0 auto -64px auto;
}




#chapterBoxes {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

#chapterBoxes .btn-white-outline {
  margin: 5px 5px !important;
}

.chapter-box {
  width: 33.333%;
  padding: 60px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 500px;
}



.chapter-box-one {
  background: #e31c79;
}

.chapter-box-two {
  background-size: cover !important;
  background-position: center !important;
}

.chapter-box-three {
  background: #cedc00;
}

.chapter-box-four {
  background-size: cover !important;
  background-position: center !important;
}

.chapter-box-five {
  background: #2dccd3;
}

.chapter-box-six {
  background-size: cover !important;
  background-position: center !important;
}










#chapterLower {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.chapter-testimonials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #f0b323;
}

.chapter-testimonials p, .chapter-testimonials h2, .chapter-testimonials h3,
.chapter-testimonials h4 {
  color: #fff !important;
}

.chapter-videos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #111;
}

.chapter-events {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #e31c79;
  color: #fff !important;
}



.bx-wrapper {
  box-shadow: none !important;
  border: 0px solid #fff !important;
  background: #fff;
  margin-bottom: 0 !important;
}


.testimonials-slider {
  width: 100% !important;
  height: 100% !important;
  margin: 0 0 !important;
}

.testimonials-slider .bx-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  margin: 0 0 !important;
  padding: 0 0 !important;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}

.testimonials-slider .bx-viewport {
  width: 100% !important;
  height: 100% !important;
  margin: 0 0 !important;
  display: block;
}

.testimonials-slider .bxslider {
  position: relative;
  margin: 0 0 !important;
  width: 100%;
  height: 100%;
  display: block;
}

.testimonials-slider .bxslider .slide {
  height: 100%;
  margin: 0 0 !important;
  background-size: cover !important;
  background-position: center !important;
}








#chapterVideo {
  position: relative;
  width: 100%;
  padding: 100px 15px;
  background-size: cover !important;
  background-position: center !important;
  text-align: center;
}

#chapterVideo a {
  display: block;
}








#chapterSponsors {
  width: 100%;
  background: #fff;
  padding: 30px 15px;
}

.sponsor-slider .slide {
  width: 150px;
  height: 150px;
}

.sponsor-slider .slide img {
  width: 150px;
}



.chapter-sponsor-slider {
  width: 100% !important;
  height: 100%;
  margin: 0 0 !important;
}

.chapter-sponsor-slider .bx-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  margin: 0 auto !important;
  padding: 0 60px !important;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}

.chapter-sponsor-slider .bx-viewport {
  width: 100% !important;
  height: 100% !important;
  margin: 0 0 !important;
  display: block;
}

.chapter-sponsor-slider .bxslider {
  position: relative;
  margin: 0 0 !important;
  width: 100%;
  height: 100%;
  display: block;
}

.chapter-sponsor-slider .slide {
  margin: 0 5px !important;
}

.chapter-sponsor-slider .bx-pager {
  display: none;
}


.ctct-form-button {
  padding: 14px 14px !important;
}






.page-header-images {
  width: 100%;
  display: flex;
}

.header-image-box {
  width: 100%;
  min-height: 300px;
  background-size: cover !important;
  background-position: center !important;
}





.ctct-form-field {
  min-width: 300px !important;
}



/* ==============================
== WP Google Maps
============================== */

.gm-style-iw {
  padding-right: 12px !important;
  padding-bottom: 12px !important;
}

.wpgmza_markerbox p {
  margin-bottom: 0 !important;
}

.wpgmza_gd {
  display: none !important;
}

.wpgmza_infowindow_link {
  margin-top: 10px !important;
}




/* ==============================
== Blog
============================== */

.blog-post {
	width: 100%;
  border: 1px #ddd solid;
	margin-bottom: 32px !important;
}

.blog-post-inner {
  background: #eee;
  padding: 30px 30px;
}

.post-meta {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px #ddd solid;
}

.entry {
	margin-bottom: 26px;
}

.post-featured {
  line-height: 0 !important;
}

.view-full-post a {
  display: inline-block;
  background: #e31c79 !important;
  color: #fff !important;
  text-transform: uppercase;
  padding: 10px 20px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.view-full-post a:hover {
  opacity: 0.7
}

.post-share {
  display: block;
  height: 60px;
}





/* ==============================
== Sidebar
============================== */

#sidebar-main {
	background: #fff;
	padding: 15px;
}

#sidebar-main  .widget {
  margin-bottom: 30px;
}

#sidebar-main #gform_wrapper_1 {
  padding: 0 0 !important;
}

#sidebar-main h2 {
	margin-top: 0 !important;
	font-size: 1.4em;
}

#sidebar-main ul {
	margin: 0 0 !important;
	padding: 0 0 !important;
	list-style: none !important;
}

#sidebar-main ul li {
	padding: 0 0 10px 0 !important;
  margin-bottom: 10px;
	border-bottom: 1px #f2f2f2 solid;
}

#sidebar-main ul li:lastchild {
	border: none;
}

#sidebar-main h4 {
	color: #1c3458;
}

#sidebar-main h5 {
	font-size: 1em;
	color: #1c3458;
}





/* ==============================
== Search Form
============================== */

#searchform input {
  padding: 10px 10px;
  font-size: 15px;
}

#searchform button {
  padding: 11px 11px;
  font-size: 15px;
  cursor: pointer;
}





/* ==============================
== Contact Form
============================== */

.gform_wrapper textarea, .gform_wrapper input, .gform_wrapper select {
  padding: 10px 10px !important;
  border: 1px #ccc solid !important;
}

.gform_wrapper input[type=submit] {
  background: #ed1776 !important;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 15px 30px !important;
  cursor: pointer !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none !important;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.gform_wrapper input[type=submit]:hover {
  opacity: 0.7;
}







/* Home page subscribe form */

#gform_wrapper_1 {
  border: 1px #fff solid !important;
  padding: 30px 30px !important;
}

#gform_fields_1 li {
  padding: 0 0 !important;
  margin: 10px 0 !important;
}

#gform_fields_1 li input {
  margin: 0 0 !important;
  background: #fff !important;
  border: none !important;
}

#gform_wrapper_1 .gform_footer input[type=submit] {
  width: 100% !important;
  background: #ed1776 !important;
  color: #fff !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
}

#gform_wrapper_1 .gform_footer {
  padding: 0 0 !important;
  margin: 0 0 !important;
  clear: both;
  width: 100%;
}








input[type=checkbox] {
  padding: 10px 10px !important;
}



/* ==============================
== Footer
============================== */

.footer {
	background-color: #3dc1cc;
  padding: 40px 15px 0 15px;
  width: 100%;
}

.copyright {
	background: #111;
	color: #fff;
	padding: 30px 0;
	font-size: .9em !important;
}

.copyright a {
	color: #fff !important;
  
}

.credit {
  text-align: right;
}

.footer-container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}


.footer-column-one, .footer-column-two, .footer-column-three, .footer-column-four {
  background: rgba(255,255,255,0.9);
  padding: 30px 15px;
  text-align: center;
  margin: 0 1% 40px 1%;
  width: 31.333%;
}



.footer-social {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.footer-social a {
  display: inline-flex;
  margin: 10px 10px;
  width: 45px;
  height: 45px;
  background: none;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 5px 5px;
  border: 2px #fff solid;
  
}

.footer-social a:hover {
  background: #ed1776;
}


.rc-anchor, .rc-anchor-invisible, #recaptcha-accessible-status {
  display: none !important;
}




/* ==============================
== Media Queries
============================== */

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

	
	
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	
  .nav-menu {
    display: none !important;
  }
}



/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
  
  #chapterBoxes {
    flex-direction: column
  }
	
	#donateBox {
    width: 48%;
  }

  .chapter-box {
    width: 100%;
    padding: 60px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 500px;
  }

  .credit {
    text-align: left;
  }
  
  .footer-column-one, .footer-column-two, .footer-column-three, .footer-column-four {
    width: 48%;
  }

}



/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  
	.footer-column-one, .footer-column-two, .footer-column-three, .footer-column-four {
    width: 98%;
  }
  
  .ctct-form-custom, #email_address_field_0 {
    display: flex !important;
    flex-direction: column !important;
  }
  
  #donateBox {
    width: 92%;
    margin: 4% 4%;
  }
  
  #triangle-left-blue, #triangle-right-pink, #triangle-right-green {
    display: none;
  }
  
  .col-reverse {
    flex-direction: column-reverse;
  }
  
  .chapter-slider {
    height: 450px;
  }


}



/* Small Devices, Tablets */
@media only screen and (max-width : 765px) {
	
  
	
}



/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
  
  .logo {
    padding: 10px 0 15px 0 !important;
  }

  .chapter-slider {
    height: 250px;
  }
  
  .header-image-box {
    min-height: 200px;
  }
  
  h1 {
    font-size: 2.4em;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.6em;
  }

  h4 {
    font-size: 1.2em;
  }
	
}

