*, *:before, *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -ms-transition: all 300ms;
  transition: all 300ms;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  background: rgb(251, 251, 251);
  color: rgb(27, 27, 27);
  font-size: 18px;
  text-rendering: optimizelegibility;
}
/* Small screens (default) */
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}
#main {
  min-height: 100%;
}
/* Medium screens (640px) */
@media (min-width: 40rem) {
  html { font-size: 108%; }
}
/* Large screens (1024px) */
@media (min-width: 64rem) {
  html { font-size: 114%; }
}
html a{
  -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    text-decoration: none;
    color: rgb(184, 35, 39);
}
#main a:hover{
    color: rgba(184, 35, 39, 0.8);
    cursor: pointer;
}
#main {
  font-family: 'Lato', sans-serif;
}
#main h1, #main h2, #main h3, #main h4 {
  font-weight: 400;
  font-family: 'Lora', sans-serif;
}

#main h1, #main h2, #main h3, #main h4 {
  font-variant: small-caps;
}

#main h1::first-letter, #main h2::first-letter, #main h3::first-letter, #main h4::first-letter {
  font-variant: normal;
  text-transform: uppercase;
}

#main p {
  font-family: 'Lato', sans-serif;
  text-align: justify;
  text-justify: inter-word;
}
.clear {
  clear: both;
}
.left {
  float: left;
}
.right {
  float: right;
}
ol li p {
  text-align: justify;
  line-height: 1.4em;
}
article {
  margin: 0 auto;
  max-width: 40rem;
}
article p {
  line-height: 1.4em;
  text-align: justify;
}

/*------------------------------ RED: #AD322A; YELLOW: #E1B32D; ------------------------------*/


/*------------------------------ START OF PAGE ELEMENTS ------------------------------*/

#outer{min-height:100%;background:#ffffcc}
* html #outer{height:100%;}/* ie6 and under*/
#warning {
  position: fixed;
  top: 10px;
  right: 50px;
  background: rgb(255, 180, 180);
  border: 2px solid rgb(180, 0, 0);
  border-radius: 2px;
  padding: 5px;
  z-index: 9;
}


/*------------------------------ HEADER ------------------------------*/


header {
  width: 100%;
  text-align: left;
  background: rgb(184, 35, 39);
}

@media (max-width: 44rem) {
  header .col3 {
    min-height: 0 !important;
  }
}



/*------------------------- NAV BAR -------------------------*/
.nav-wrapper {
  width: 100%;
  height: 60px;
  text-align: center;
  padding: 0;
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-wrapper-mobile {
  display: none;
}

.nav-mobile-init {
  display: none;
  background: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  height: 60px;
  line-height: 60px;
  vertical-align: middle;
  color: rgb(40, 40, 40);
  text-align: center;
}

.nav-mobile-init:hover {
  cursor: pointer;
  color: rgba(40, 40, 40, 0.7);
}

@media (max-width: 44rem) {
  .nav-wrapper {
    display:  none;
  }
  .nav-wrapper-mobile {
    display: block;
  }
  .nav-mobile-init {
    display: block;
  }
}

.nav-wrapper nav {
  height: 60px;
  text-align: center;
  display: inline-block;
}
.nav-wrapper nav ul {
  list-style: none;
  display: inline-block;
  position: relative;
  float: left;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}
.nav-wrapper nav ul li {
  display: inline-block;
  position: relative;
  float: left;
  height: 100%;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border-right: rgba(0, 0, 0, 0.1);
}
.nav-wrapper nav ul li a {
  height: 60px;
  vertical-align: middle;
  display: table-cell;
  padding: 0 22px;
  color: rgb(40, 40, 40);
  text-transform: uppercase;
}

.nav-wrapper nav ul li a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.nav-wrapper nav ul ul {
  display:none;
  position:absolute;
  top:100%;
  left:0;
  padding:0;
  text-align: left;
}

.nav-wrapper nav ul ul li {
  float:none;
  background: rgba(230, 230, 230, 1);
  width: 250px;
  border-bottom: 1px solid rgba(210, 210, 210, 1);
}

.nav-wrapper nav ul li:hover > ul {
  display: block;
}







.nav-wrapper-mobile {
  display: none;
}

.nav-wrapper-mobile nav {
  background: rgba(255, 255, 255, 1);
  text-align: center;
  font-size: 0.9em;
}
.nav-wrapper-mobile nav ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}
.nav-wrapper-mobile nav ul li {
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  padding: 0;
  border-top: 1px solid rgba(210, 210, 210, 1);
}
.nav-wrapper-mobile nav ul li a {
  height: 50px;
  vertical-align: middle;
  padding: 0 0 0 22px;
  color: rgb(40, 40, 40);
  text-transform: uppercase;
}

.nav-wrapper-mobile nav ul li a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.nav-wrapper-mobile nav ul ul {
  display: block;
}

.nav-wrapper-mobile nav ul ul li {
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  padding: 0;
  border-top: 1px solid rgba(210, 210, 210, 1);
}



/* --------------------------- ADMIN ---------------------------------*/

#admin-page #main {
  position: fixed;
  height: 100%;
}

#admin-panel {
  height: 100%;
  position: fixed;
  border-right: 1px solid rgba(210, 210, 210, 1);
  width: 20%;
  float: left;
}

#admin-title {
  height: 80px;
  padding: 0 0 0 20px;
  background: rgb(0, 0, 0);
  color: rgb(245, 245, 245);
}

#admin-main {
  height:  100%;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  float: left;
}

#admin-edit {
  padding: 20px;
  width: 100%;
  height: calc(100% - 80px);
  overflow-y: scroll;
}

#admin-edit table {
  width: 100%;
  font-size: 0.8em;
  margin-bottom: 50px;
}

#admin-edit table tr {
  border-bottom: 1px solid rgba(210, 210, 210, 1);
}

#admin-edit table tr:nth-child(odd) {
  background: rgb(232, 232, 232);
}

#admin-edit table thead tr {
  background: transparent !important;
}

#admin-edit table td {
  padding: 12px 5px;
  text-align: left;
}

#admin-edit table th {
  text-align: left;
}

#admin-edit table tfoot td {
  background: rgba(210, 210, 210, 1);
  color: #000;
  text-align: center;
}

#admin-edit form {
  font-size: 0.8em;
  width: 70%;
  padding-top: 0 !important;
}

#admin-logo {
  background: rgb(184, 35, 39);
  width: 100%;
  height: 80px;
  padding: 0;
}

.nav-wrapper-admin nav {
  background: rgba(255, 255, 255, 1);
  text-align: center;
  font-size: 0.9em;
}
.nav-wrapper-admin nav ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}
.nav-wrapper-admin nav ul li {
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  padding: 0;
  border-top: 1px solid rgba(210, 210, 210, 1);
}
.nav-wrapper-admin nav ul li a {
  height: 50px;
  vertical-align: middle;
  padding: 0 0 0 22px;
  color: rgb(40, 40, 40);
  text-transform: uppercase;
}

.nav-wrapper-admin nav ul li a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.nav-wrapper-admin nav ul ul {
  display: block;
}

.nav-wrapper-admin nav ul ul li {
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  padding: 0;
  border-top: 1px solid rgba(210, 210, 210, 1);
}





@media (max-width: 44rem) {
  .hidesmall {
    display: none !important;
  }
}

.sec-menu {
  background: rgba(230, 230, 230, 1);
  padding-left: 40px;
}

.sec-menu a {
  padding-left: 40px !important;
}

.showdiv {
  display: block !important;
}


/*------------------------------ BYRD --------------------------------*/

#byrdpage table {
  width: 100%;
  text-align:left;
  border: 1px solid rgba(210, 210, 210, 1);
  font-size: 0.8em;
}



#byrdpage .table-holder {
  width: 100%;
  max-width: 48rem;
  height: 400px;
  margin: 50px auto 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

#byrdpage table tr:nth-child(odd) {
  background: rgb(232, 232, 232);
}

#byrdpage table td, #byrdpage table th {
  padding: 12px 5px;
}

#byrdpage table th {
  font-size: 0.8em;
}

#byrdpage table thead tr {
  border-bottom: 1px solid rgba(210, 210, 210, 1);
}

#byrdpage table tr td:nth-child(n+4), #byrdpage table tr th:nth-child(n+4) {
  text-align: right;
}

#byrd-donate {
  text-align: center;
}

#byrd-donate h1{
  font-size: 4.0em;
  color: #AD322A;
  margin-top: 0;
}

#byrd-donate input[type="submit"] {
  background: rgb(174, 46, 174);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 7px 7px;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  color: rgb(240, 240, 240);
  text-align: center;
  font-size: 1em;
}

section.text {
  padding: 50px 150px;
}

div.donate-holder {
  margin:0 auto;
  text-align:left;
  width:30%;
}

@media (max-width: 44rem) {
  section.text {
    padding: 50px 20px;
  }

  div.donate-holder {
  padding: 20px;
  width:100%;
  }

  input[type="checkbox"] {
    -ms-transform: scale(1.4); /* IE */
    -moz-transform: scale(1.4); /* FF */
    -webkit-transform: scale(1.4); /* Safari and Chrome */
    -o-transform: scale(1.4); /* Opera */
    padding: 10px;
  }
}




/*------------------------------ SERMONS ------------------------------*/

body[id="sermons"], body[id="sermons"] p {
  font-size: 18px;
  line-height: 29px;
  font-family: 'Vollkorn', serif;
  text-align: justify;
  text-justify: inter-word;
}

body[id="sermons"] h1 {
  font-size: 23px;
  line-height: 31.5px;
  margin-bottom: 22.5px;
}

body[id="sermons"] {
  padding: 0;
  margin: 0;
  background: rgb(224, 224, 224) !important;
}

#page {
  min-height: 100%;
  width: 800px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 5px 0px;
  margin: 22px auto;
  padding:  46px 80px;
  background: rgb(251, 251, 251);

}


/*------------------------------ MAIN LAYOUT ------------------------------*/

/*------------------------------ COLUMNS ------------------------------*/


.col2 {
  width: 50%;
  float: left;
}

.col3 {
  float: left;
  width: calc(100% / 3);
}

.col3-1 {
  width: calc(100%/3);
  float: left;
}

.col3-2 {
  width: calc(100%*2/3);
  float: left;
}

.col4-1 {
  width:  calc(100%/4);
  float: left;
}

.col4-3 {
  width: calc(100%*3/4);
  float: left;
}

@media (max-width: 44rem) {
  .col2, .col3, .col4, .col3-1, .col3-2  {
    display: block;
    width: 100%;
    clear: both;
    min-height: 250px !important;
  }
}

/*------------------------------ SECTIONS ------------------------------*/

section {
  margin: 0 auto;
  padding: 0;
}

#homepage section[class="topsection"] {
  background: #000;
  background: url('img/heroHome2.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 480px;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}


#aboutpage section[class="topsection"] {
  background: url('img/heroHome2.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 472px;
  top: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
  padding: 0 10px;
}

#choirpage section[class="topsection"] {
  background: url('img/choir-banner.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  bottom: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

#peoplepage section[class="topsection"] {
  background: url('img/anglocatholicism_banner.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  bottom: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

#byrdpage section[class="topsection"] {
  background: url('img/musiclist-lg.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

#sermonspage section[class="topsection"] {
  background: url('img/sermons_banner.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 400px;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

#contactpage section[class="topsection"] {
  background: url('img/contact_banner.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  bottom: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

#supportpage section[class="topsection"] {
  background: url('img/support_banner.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  bottom: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

#whatsonpage section[class="topsection"] {
  background: url('img/whatson_banner.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  bottom: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

@media (max-width: 44rem) {
  #whatsonpage section[class="topsection"] {
    height: 650px;
  }
  .whatson-padd {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

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

.download-tile p {
  color: rgb(40, 40, 40);
  text-align: left;
}

.download-tile img {
  margin: 50px 0 0;
}

.download-tile img:hover {
  opacity: 0.8;
  cursor: pointer;
}



#connectpage section[class="topsection"] {
  background: url('img/connect_banner.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  bottom: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

.group-img-hold {
  padding: 50px;
}



#a-guide-to-the-mass section[class="topsection"] {
  background: url('img/guidetomass_banner.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

section[class="mass-long-1"] {
  background: url('img/massprep_banner.jpg') no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
}

section[class="mass-long-2"] {
  background: url('img/masspeace_banner.jpg') no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
}

section[class="mass-long-3"] {
  background: url('img/masspeace_banner2.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 250px;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
}



#who-is-st-mary-magdalen section[class="topsection"] {
  background: url('img/whoismarymags_banner.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

section[class="stmm-long-1"] {
  background: url('img/mary-mags-1.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
}



#what-is-anglo-catholicism section[class="topsection"] {
  background: url('img/anglocatholicism_banner.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  bottom: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
  color:  rgb(250, 250, 250);
}

section[class="keble"] {
  background: url('img/banner_keble.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
}

@media (max-width: 44rem) {
  section[class="keble"] {
    background-position: top right;
    top: 0;
    right: 0;
  }
}

section[class="newman"] {
  background: #000;
  background: url('img/banner_newman.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
}

@media (max-width: 44rem) {
  section[class="newman"] {
    background-position: top center;
  }
}

section[class="pusey"] {
  background: #000;
  background: url('img/banner_pusey.jpg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: -1;
  text-align: center;
  vertical-align: bottom;
}

@media (max-width: 44rem) {
  section[class="pusey"] {
    background-position: top center;
  }
}


.long-form {
  padding: 50px 0;
}

.long-form article {
  max-width: 40rem;
}

@media (max-width: 44rem) {
  .long-form {
  padding: 50px 20px;
  }
}

.about-hero-text {
  padding: 20px 30px 0 ;
  text-align: center;
}

.about-hero-text p {
  text-align: justify;
}

.people-tile {
  background: url('img/people-tile.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
}

.stmm-tile {
  background: url('img/stmm-tile.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
}

.anglo-tile {
  background: url('img/anglo-tile.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
}

.mass-tile {
  background: url('img/mass-tile.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
}



.volunteer-tile {
  background: url('img/volunteer-tile.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
}

.donate-tile {
  background: url('img/donate-tile.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
}

.charities-tile {
  background: url('img/charities-tile.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
}

.music-tile {
  background: url('img/musiclist.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
}

.parish-tile {
  background: url('img/parishnotes.jpg') no-repeat;
  background-size: cover;
  background-position: center center;
}

.people-tile:hover, .stmm-tile:hover, .anglo-tile:hover, .mass-tile:hover, .volunteer-tile:hover, .donate-tile:hover, .charities-tile:hover, .parish-tile:hover, .music-tile:hover {
  cursor: pointer;
  opacity: 0.85;
}

.contact-sec {
  padding:50px 150px;
}

#volunteer-text {
   padding-right: 150px;
}

@media (max-width: 44rem) {
  .contact-sec {
    padding: 20px 20px;
  }
  #volunteer-text {
    padding-right: 0;
  }
}

.person {
  border-bottom: 1px solid rgb(230, 230, 230);
}

.person h3 {
  color: rgb(184, 35, 39);
}

.person:nth-child(odd) {
  background: rgb(245, 245, 245);
}

.people-portrait {
  padding: 50px;
  text-align: center;
}

.people-text {
  padding: 30px 50px;
}

@media (max-width: 44rem) {
  .people-text {
    padding: 10px 20px;
  }
  .group-img-hold {
    padding: 20px;
  }
}

.people-text h1 {
  margin: 0;
}

#sermonspage .people-bio {
  margin: 0;
}

p.people-bio {
  text-align: justify;
  margin: 20px 0;
}

.people-portrait img {
  width: 70%;
}

#hero-text-spacer {
  height: 315px;
}

@media (max-width: 44rem) {
  #hero-text-spacer {
    height: 150px;
  }
}

#hero-text-content {
  height: 165px;
  max-width: 44rem;
  margin: 0 auto;
}

@media (max-width: 44rem) {
  #hero-text-spacer {
    height: 140px;
  }
  #hero-text-content {
    padding: 0 15px;
  }
}

section[id="tiles"] {
  padding:  20px 10px;
}

.tile {
  background: rgb(225, 225, 225);
  color: #000;
  border: 10px solid #fff;
  padding: 0;
}

.reg-serv {
  color: #fff;
  background: rgb(184, 35, 39);
  text-align:center;
}

.news-item {
  color: #fff;
  
  text-align:center;
}

.tile-heading {
  background: #000;
  padding: 10px;
  color: #fff;
}

.tile-heading h2 {
  margin: 0;
}

.tile-content {
  padding: 10px;
  height: 400px;
}

.tile-content h3 {
  color: rgb(231, 184, 8);
  margin: 0.5em;
}

.g-map {
  padding: 0;
}

/*---------- CALENDAR WIDGET ----------*/

.cal-event-sml {
  padding: 10px;
  color: rgb(120, 120, 120);
  border-bottom: 1px solid rgb(205, 205, 205);
  font-size: 0.85em;
}

.cal-event-sml:nth-child(odd) {
  background: rgb(232, 232, 232);
}

.cal-event-sml:hover {
  background: rgb(245, 245, 245);
  cursor: pointer;
}

.cal {
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.abbr {
  width: 100%;
  height: 50%;
  text-align: center;
  padding-right: 10px;
}

.c-day {
  color: rgb(184, 35, 39);
  font-size: 1.2em;
  padding-bottom: 3px;
}

.c-mon {
  text-transform: uppercase;
  font-variant: small-caps;
  color: rgb(60, 60, 60);
  font-size: 0.7em;

}

.event-details-sml {
  font-size: 0.8em;
  height: 50%;
}

.event-title-sml {
  color: rgb(60, 60, 60);
  font-size: 1.1em;
  height: 50%;
  padding-bottom: 3px;
}

.event-date {
  font-weight: bold;
  text-align: center;
  display: block;
  color: rgb(184, 35, 39);
}

.time-icon {
  display: inline-block;
  height: 0.7em;
  width: 0.7em;
  background: url('img/time.png') no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 0.5;
}

.location-icon {
  display: inline-block;
  height: 0.7em;
  width: 0.7em;
  background: url('img/location.png') no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 0.4;
}

.cal-event-sml .col2:nth-child(1){
  width: 40%;
}

.cal-event-sml .col2:nth-child(2){
  width: 60%;
}

.event-desc-sel {
  text-align: center !important;
  font-size: 0.5em;
  width: 100%;
  padding: 5px 0 0;
}

.event-desc {
  display: none;
  padding: 10px;
}

.topsection h1 {
    margin: 250px auto 0;
    z-index: 2;
    float: left;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 3.0rem;
    color: #fff;
    letter-spacing: 0.4rem;
}


/*------------------------------ FORMS ------------------------------*/

#contact {
  width: 100%;
  padding:  30px;
  text-align: left;
}
#contact input, #contact textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
#contact input:hover, #contact textarea:hover {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
#contact input[type="submit"] {
  background: rgb(184, 35, 39);
  color: rgb(240, 240, 240);
}
#contact input[type="submit"]:hover {
  background: rgba(155, 55, 54, 0.9);
  cursor: pointer;
}
#contact select {
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 44px;
  display: block;
  margin-bottom: 15px;
  line-height: 1;
  border-radius: 0;
}

#contact label {
  margin-bottom: 5px;
}

button {
  background: rgb(184, 35, 39);
  color: rgb(240, 240, 240);
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
}
/*------------------------- FOOTER -------------------------*/
footer {
  bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 30px 20px 50px;
  width: 100%;
  background: rgb(30, 30, 30);
  color: #666;
}

footer iframe {
  margin-bottom: 20px;
  height: 250px;
}

footer .address {
  display: inline-block;
  height: 100%;
}
footer a{
  height: 100%;
  color: #666;
}

footer a:hover{
  opacity: 0.7;
}

footer .col3:nth-child(1) {
  text-align:  left;
}

footer .col3:nth-child(2) {
  text-align:  center;
}

footer .col3:nth-child(3) {
  text-align:  right;
}

.contact-button {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 7px 7px;
  display: block;
  margin-bottom: 15px;
  float: right;
  background: rgb(184, 35, 39);
  color: rgb(240, 240, 240);
  width: 160px;
  text-align: center;
  font-size: 0.8em;
}



.contact-button-fb {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 7px 7px;
  display: block;
  margin-bottom: 15px;
  float: right;
  background: rgb(59, 89, 152);
  color: rgb(240, 240, 240);
  width: 160px;
  text-align: center;
  font-size: 0.8em;
}

.contact-button:hover {
  background: rgba(184, 35, 39, 0.9);
  cursor: pointer;
}

.contact-button-fb:hover {
  background: rgba(59, 89, 152, 0.9);
  cursor: pointer;
}

.contact-button-icon {
  height: 100%;
  float: left;
  width: 25%;
}

.contact-button-icon img {
  height: 21px;
}

.contact-button-text {
  height: 100%;
  padding: 2px 0 0;
  float: left;
  width: 75%;
  text-align: center;
}

.contact-button-donate {
  height: 100%;
  padding: 2px;
  width: 100%;
  text-align: center;
  color:  #fff;
}

.contact-button-donate-holder {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 7px 7px;
  display: block;
  width: 30%;
  margin-bottom: 15px;
  color: rgb(240, 240, 240);
  text-align: center;
  font-size: 1em;
}

.JG {
  background: rgb(174, 46, 174);
}

.CC {
  background: rgb(0, 182, 229);
}

@media (max-width: 44rem) {
  .contact-button-donate-holder {
    width: 100%;
  }
}

@media (max-width: 44rem) {
  .cal-event-sml .col2 {
    float: left !important;
    min-height: 0 !important;
    clear:  none !important;
  }
}


@media (max-width: 44rem) {
  .cal-event-sml .col2:nth-child(1) {
    width: 40%;
  }
}


@media (max-width: 44rem) {
  .cal-event-sml .col2:nth-child(2) {
    width: 60%;
  }
}


@media (max-width: 44rem) {
  .cal-event-sml .col4-1 {
    float: left !important;
    width: 25% !important;
    min-height: 0 !important;
  }
}


@media (max-width: 44rem) {
  .cal-event-sml .col4-3 {
    float: left !important;
    width: 75% !important;
    min-height: 0 !important;
  }
}


@media (max-width: 44rem) {
  .reg-serv .col2 {
    float: left !important;
    min-height: 0 !important;
    clear:  none !important;
    width: 50% !important;
  }
}
@media (max-width: 44rem) {
  footer .col3 {
    min-height: 0 !important;
    text-align: left !important;
  }

  footer .col3:nth-child(3) {
    padding-top: 30px;
  }
}

@media (max-width: 44rem) {
  .contact-button {
    width: 100%;
  }
}

@media (max-width: 44rem) {
  .contact-button-fb {
    width: 100%;
  }
}

