/*
  Theme Name: Genesis Boilerplate
  Theme URI: http://github.com/bradonomics/genesis-boilerplate
  Description: Boilerplate code for Genesis child themes built on the Skeleton framework.
  Author: Brad West
  Author URI: http://bradonomics.com/
  Version: 0.8.0

  Template: genesis
*/

/* Table of contents
--------------------------------------------------
- Normalize
- Float Clearing
- Base
- Headings
- Links
- Buttons
- Forms
- Lists
- Tables
- Quotes
- Header
- Navigation
- Responsive Menu
- Grid
- Structure and Layout
- Entry Meta
- Images
- Iframe Embeds
- Widgets
- Sidebar
- Pagination
- Footer Widgets
- Footer
- Media Queries
- Customize
*/

/* normalize.css v3.0.3
-------------------------------------------------- */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

/* Float Clearing
-------------------------------------------------- */

.author-box:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
  content: " ";
  display: table;
}

.author-box:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
  clear: both;
  content: " ";
  display: table;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
}

/* Base
-------------------------------------------------- */
/* NOTE: html is set to 62.5% so all the REM measurements throughout Skeleton are based on 10px sizing. */

html {
  font-size: 62.5%;
  height: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  height: 100%;
  font-size: 1.6em; /* chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  text-rendering: optimizeLegibility;
}

::-moz-selection {
  background-color: #333;
  color: #fff;
}

::selection {
  background-color: #333;
  color: #fff;
}

/* Headings
-------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Georgia", Times New Roman, serif;
  font-style: italic;
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 3rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.5rem;
  line-height: 1.6;
}

@media (min-width: 550px) {
  h1 { font-size: 5rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3rem; }
  h5 { font-size: 2.4rem }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0;
  margin-bottom: 2.5rem;
  word-break: break-word;
}

/* Links
-------------------------------------------------- */

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

a:hover {
  color: #DB2024;
}

/* Buttons
-------------------------------------------------- */

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #FFF;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: #33C3F0;
  border-color: #33C3F0;
  border-radius: 4px;
  border: 1px solid #33C3F0;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-in-out;
     -moz-transition: all 0.1s ease-in-out;
      -ms-transition: all 0.1s ease-in-out;
       -o-transition: all 0.1s ease-in-out;
          transition: all 0.1s ease-in-out;
}

button,
.button {
  margin-bottom: 1rem;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #FFF;
  background-color: #DB2024;
  border-color: #DB2024;
}

/* Forms
-------------------------------------------------- */

form {
  margin-bottom: 2.5rem;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px;  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0;
}

textarea {
  min-height: 65px;
  margin-bottom: 1.5rem;
  padding-top: 6px;
  padding-bottom: 6px;
}

fieldset {
  margin-bottom: 1.5rem;
  padding: 0;
  border-width: 0;
}

input,
select {
  margin-bottom: 1.5rem;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
}

label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal;
}

/* Lists
-------------------------------------------------- */

ul {
  list-style: disc inside;
  -webkit-padding-start: 0;
}

ol {
  list-style: decimal inside;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 2.5rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
}

.entry-content ol ol,
.entry-content ul ul {
  margin-bottom: 0;
}

li {
  margin-bottom: 1rem;
}

/* Tables
-------------------------------------------------- */

table {
  margin-right: 2.5rem;
  margin-left: 2.5rem;
  margin-bottom: 2.5rem;
}

th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/* Quotes
-------------------------------------------------- */

blockquote {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 2rem;
  padding-left: 4rem;
  margin: 1.6rem 0;
  border-left: .5rem solid #e5e5e5;
}

@media (min-width: 400px) {
  blockquote {
    padding-right: 6rem;
  }
}

blockquote::before {
  position: relative;
  left: -20px;
  top: -10px;
  content: "“";
  display: block;
  font-size: 40px;
  font-size: 4rem;
  height: 0;
}

blockquote p {
  padding-left: 0;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote,
blockquote::before,
blockquote p {
  color: #555;
}

/* Structure and Layout
-------------------------------------------------- */

.site-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  min-height: 100%;
  width: 100%;
  position: relative;
  -webkit-transition: -webkit-transform .3s ease-in-out;
     -moz-transition:    -moz-transform .3s ease-in-out;
       -o-transition:      -o-transform .3s ease-in-out;
          transition:         transform .3s ease-in-out;
  background-color: #fff;
}

.site-inner {
  -webkit-box-flex: 2;
  -webkit-flex: 2 0 auto;
      -ms-flex: 2 0 auto;
          flex: 2 0 auto;
}

.content-sidebar-wrap {
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .content-sidebar-wrap {
    max-width: 1160px;
  }
}

.full-width-content .content-sidebar-wrap {
  max-width: 100%;
}

/* wrap used in site-header, entry-header, entry-content, entry-footer, site-footer and sidebar. */
.wrap {
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 750px) {
  .wrap {
    max-width: 760px;
  }
}

@media (min-width: 1000px) {
  .wrap {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .wrap {
    max-width: 1160px;
  }
}

/* Header
-------------------------------------------------- */

.site-header {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.site-header .wrap {
  padding: 20px 5%;
  margin-top: 10rem;
}

@media (min-width: 1000px) {
  .site-header .wrap {
    padding: 40px 0;
  }
}

.site-header .widget-area {
  width: 100%;
}

@media (min-width: 750px) {
  .site-header .widget-area {
    float: right;
    text-align: right;
    max-width: 620px;
  }
}

@media (min-width: 1200px) {
  .site-header .widget-area {
    max-width: 800px;
  }
}

.title-area {
  float: left;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

@media (min-width: 750px) {
  .title-area {
    max-width: 470px;
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .title-area {
    max-width: 530px;
  }
}

.header-full-width .title-area {
  width: 100%;
}

.site-title {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 750px) {
  .site-title {
    text-align: left;
  }
}

.site-title a,
.site-title a:hover {
  color: #333;
  text-decoration: none;
}

.header-image .site-title > a {
  background: url(images/logo.png) no-repeat left;
  float: left;
  background-size: 100%;
  min-height: 160px;
  width: 100%;
}

.header-image .site-title {
  display: block;
  text-indent: -9999px;
}

/* Navigation
-------------------------------------------------- */

.genesis-nav-menu {
  padding: 0;
  background-image: url(images/event01.jpg);
  background-size: cover;
  background-position: center right;
}

.genesis-nav-menu .menu-item {
  display: block;
  margin: 0;
  padding: 1rem 2rem;
  border-bottom: 1px solid #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.genesis-nav-menu .current-menu-item,
.genesis-nav-menu .menu-item:hover,
.genesis-nav-menu .menu-item:focus {
  text-decoration: none;
  background-color: #780C0B;
  border-color: transparent;
}

.genesis-nav-menu a:hover {
  text-decoration: none;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -28rem;
  width: 28rem;
  visibility: hidden;
  overflow-y: auto;
  font-family: 'Francois One', sans-serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, .6);
  background-color: #020202;
  -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
       -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
  text-align: center;
}

@media (min-width: 550px) {
  .sidebar {
    font-size: 1.8rem;
  }
}

.sidebar a {
  font-weight: normal;
  color: #fff;
}

.sidebar-item {
  padding: 2rem;
}

.sidebar-item p:last-child {
  margin-bottom: 0;
}

.sidebar-checkbox {
  display: none !important;
}

.sidebar-toggle {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  display: block;
  width: 4.4rem;
  padding: 10px 13px;
  color: #dedede;
  border: 2px solid #dedede;
  cursor: pointer;
  z-index: 1;
}

.sidebar-toggle:before {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: 3px;
  border-top: 7px double;
  border-bottom: 2px solid;
  border-top-width: 9px;
  border-bottom-width: 3px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.site-container,
.sidebar-toggle {
  -webkit-transition: -webkit-transform .3s ease-in-out;
     -moz-transition: -moz-transform .3s ease-in-out;
       -o-transition: -o-transform .3s ease-in-out;
          transition: transform .3s ease-in-out;
}

#sidebar-checkbox:checked + .sidebar {
  visibility: visible;
}

#sidebar-checkbox:checked ~ .sidebar,
#sidebar-checkbox:checked ~ .site-container,
#sidebar-checkbox:checked ~ .sidebar-toggle {
  -webkit-transform: translateX(-28rem);
     -moz-transform: translateX(-28rem);
      -ms-transform: translateX(-28rem);
       -o-transform: translateX(-28rem);
          transform: translateX(-28rem);
}

/* Grid
-------------------------------------------------- */

.column {
  position: relative;
  float: left;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.one-half,
.one-third,
.one-forth {
  width: 100%;
}

@media (min-width: 550px) {
  .one-half,
  .one-forth {
    width: 50%;
  }
}

@media (min-width: 750px) {
  .one-third {
    width: 33.33333333%;
  }
}

@media (min-width: 1000px) {
  .one-forth {
    width: 25%;
  }
}

/* Entry Content
-------------------------------------------------- */

.full-width-content .content {
  width: 100%;
}

.content {
  float: right;
  width: 100%;
}

@media (min-width: 1000px) {
  .content {
    width: 620px;
  }
}

@media (min-width: 1200px) {
  .content {
    width: 800px;
  }
}

.content-sidebar .content {
  float: left;
}

.entry-header,
.entry-footer,
.archive-title {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1000px) {
  .entry-header,
  .entry-footer,
  .archive-title {
    max-width: none;
  }
}

@media (min-width: 1000px) {
  .full-width-content .entry-header,
  .full-width-content .entry-footer,
  .full-width-content .archive-title {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .full-width-content .entry-header,
  .full-width-content .entry-footer,
  .full-width-content .archive-title {
    max-width: 1160px;
  }
}

.entry-title a {
  text-decoration: none;
  color: #333;
}

.entry-title a:hover {
  color: #DB2024;
}

/* Entry Meta
-------------------------------------------------- */

p.entry-meta {
  font-size: 16px;
  margin-bottom: 0;
}

.entry-header .entry-meta {
  margin-bottom: 24px;
}

.entry-footer .entry-meta {
  border-top: 2px solid #f5f5f5;
  padding-top: 24px;
}

.entry-categories,
.entry-tags {
  display: block;
}

/* Images
-------------------------------------------------- */

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

a.aligncenter img {
  display: block;
  margin: 0 auto;
}

a.alignnone {
  display: inline-block;
}

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

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

a.alignleft,
a.alignnone,
a.alignright {
  max-width: 100%;
}

img.centered,
.aligncenter {
  display: block;
  margin: 0 auto 24px;
}

img.alignnone,
.alignnone {
  margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
  margin: 0 24px 24px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
  margin: 0 0 24px 24px;
}

.wp-caption-text {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.entry-content p.wp-caption-text {
  margin-bottom: 0;
}

/* iFrame Embeds
-------------------------------------------------- */

.iframe-embed {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto
}

.iframe-embed iframe,
.iframe-embed object,
.iframe-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

/* Widgets
-------------------------------------------------- */

.widget {
  word-wrap: break-word;
}

.widget ol > li {
  list-style-position: inside;
  list-style-type: decimal;
  padding-left: 20px;
  text-indent: -20px;
}

.widget li li {
  border: none;
  margin: 0 0 0 3rem;
  padding: 0;
}

/* Sidebar
-------------------------------------------------- */

/*
.sidebar {
  float: right;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
}

@media (min-width: 1000px) {
  .sidebar {
    width: 300px;
  }
}

@media (min-width: 1200px) {
  .sidebar {
    width: 360px;
  }
}

.sidebar li {
  border-bottom: 1px dotted #ddd;
  margin-bottom: 1rem;
  padding-bottom: 10px;
}

.sidebar p:last-child,
.sidebar ul > li:last-child {
  margin-bottom: 0;
}

.sidebar .widget {
  background-color: #fff;
  margin-bottom: 4rem;
}
*/

/* Pagination
-------------------------------------------------- */

.pagination {
  clear: both;
  margin: 40px 0;
}

.pagination ul {
  text-align: center;
}

.pagination li {
  display: inline;
}

.pagination li a {
  display: inline-block;
  padding: 8px 12px;
  background-color: #333;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}

.pagination li a:hover,
.pagination .active a {
  background-color: #DB2024;
}



/* Footer Widgets
-------------------------------------------------- */

.footer-widgets {
  clear: both;
  padding: 150px 0;
  background-image: url(images/main-bottom-service.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  display: block;
  width: 100%;
}

.footer-widgets .widget {
  margin-bottom: 4rem;
}

.footer-widgets p:last-child {
  margin-bottom: 0;
}

.footer-widgets p {
  text-align: center;
  color: #FFF;
}

.footer-widgets .widgettitle {
  text-decoration: underline;
  color: #FFF;
  text-align: center;
}
.footer-widgets .widgettitle a,
.footer-widgets .textwidget a {
  color: #FFF;
}

.footer-widgets .textwidget a:hover {
  color: #DB2024;
}

.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 750px) {
  .footer-widgets-1,
  .footer-widgets-2,
  .footer-widgets-3 {
    float: left;
    width: 33.33333333%;
  }
}



/* Footer Map
-------------------------------------------------- */

.map-widgets {
  clear: both;
  padding: 80px 0;
  display: block;
  width: 100%;
}



/* Footer
-------------------------------------------------- */

.site-footer {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  font-size: 16px;
  line-height: 1;
  padding: 40px 0;
  text-align: center;
}

.site-footer a {
  color: #333;
}

.site-footer .dashicons-arrow-up-alt2 {
  position: fixed;
  bottom: 5px;
  right: 20px;
  height: initial;
  width: initial;
  margin-bottom: 20px;
  margin-top: -55px;
  padding: 17px;
  color: #fff;
  background-color: #000;
  border-radius: 4px;
}

.footer-title {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Georgia", Times New Roman, serif;
  font-style: italic;
  font-size: 4rem;
  line-height: 1.2;
}
@media (min-width: 550px) {
  .footer-title { font-size: 5rem; }
}

.site-footer p {
  margin-top: 0;
}

.site-footer a.facebook,
.site-footer a.twitter {
  font-family: "Georgia", Times New Roman, serif;
  font-style: italic;
  margin-bottom: 1rem;
}
.site-footer a.facebook { color: #234eca; }
.site-footer a.twitter { color: #3ca1d5; }

/* Media Queries
-------------------------------------------------- */
/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet (point when 2-column grid becomes active) */
@media (min-width: 550px) {
}

/* Larger than tablet (point when 3-column grid becomes active) */
@media (min-width: 750px) {
}

/* Larger than desktop (point when 4-column grid becomes active) */
@media (min-width: 1000px) {
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}

/* Customize
-------------------------------------------------- */

.content {
  padding: 100px 0;
}

.home .content {
  padding: 0;
}

.home .content {
  font-family: "Georgia", Times New Roman, serif;
  font-style: italic;
}

.home .content .info {
  margin-top: 1rem;
}

.home .content .title-event {
  font-size: 60px;
  text-transform: uppercase;
  line-height: 35px;
}

.home .content .subtitle-event {
  font-size: 25px;
  margin-bottom: 4rem;
}

.content-aboutus {
  padding: 60px 0;
}

.content-aboutus-title {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Georgia", Times New Roman, serif;
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media (min-width: 550px) {
  .content-aboutus-title { font-size: 2.4rem }
}


.content-aboutus p {
  color: #808080;
}

.content-aboutus .info {
  text-align: center;
}

.content-aboutus .info img {
  margin-bottom: 20px;
}

.content-aboutus .gimmick {
  background-image: url("images/gimmick-the-end.png");
  background-repeat: no-repeat;
  height: 30px;
  width: 100%;
  background-position: center;
}

.content-gallery {
  padding: 40px 0;
  background-image: url(images/main-mid-gallery.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  color: #fff;
}

.content-gallery-title {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Georgia", Times New Roman, serif;
  font-style: italic;
  font-size: 3.6rem;
  line-height: 1.25;
}
@media (min-width: 550px) {
  .content-gallery-title { font-size: 4.2rem }
}

.content-gallery .padg-top-30px {
    padding-top: 30px;
}


.news-events {
  padding: 100px 0;
}

.news-events .info {
  color: #333;
}

.center {
  text-align: center;
}

/* /////////// Party Packages /////////// */

.page-id-49 .entry-header {
  display: none;
}
.party-packs .title-event {
  font-size: 60px;
  text-transform: uppercase;
  line-height: 35px;
  font-family: "Georgia", Times New Roman, serif;
  font-style: italic;
}



.main-button {
  -webkit-appearance: none;
     -moz-appearance: none;
      -ms-appearance: none;
          appearance: none;
  -webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
     -moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
      -ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
          transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  background: none;
  border: solid 3px;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-size: 2rem;
  font-weight: 100;
  font-family: "Georgia", Times New Roman, serif;
  letter-spacing: 0;
  min-width: 18em;
  padding: 0 0.75em;
  line-height: 3.75em;
  text-align: center;
  text-decoration: none;
  font-style: italic;
}

.main-button.smallx2 {
  min-width: 26rem;
}

.party-packs {
  padding: 100px 0;
}

.party-packs .description {
  text-align: left;
  margin: 0 25 0 25;
  color:#333;
  padding-bottom:30px;
}

.party-packs .description li {
  text-align: left;
  line-height: 2em;
}

.social-icons {
  position: fixed;
  top: 60px;
  right: 18px;
  display: block;
}

.social-icons img {
  margin-right: 8px;
}

.icons-facebook {
  background-image: url(images/social/facebook_dark.png);
  width: 32px;
  height: 32px;
  display: block;
}
.icons-facebook:hover {
  background-image: url(images/social/facebook.png);
}


.icons-twitter {
  background-image: url(images/social/twitter_dark.png);
  width: 32px;
  height: 32px;
  display: block;
}
.icons-twitter:hover {
  background-image: url(images/social/twitter.png);
}


.icons-instagram {
  background-image: url(images/social/instagram_dark.png);
  width: 32px;
  height: 32px;
  display: block;
}
.icons-instagram:hover {
  background-image: url(images/social/instagram.png);
}

.twitter-timeline {
  height: 250px!important;
}

.blog .entry-title {
  min-height: 11rem;
}
.blog article {
  margin-bottom: 10rem;
}

.wrap-member {
  margin: 0 auto;
  width: 360px;
  display: block;
  clear: both;
  background-color: #f1f1f1;
  padding: 2rem;
}

/* //////////// Styling Gravity Forms  //////////// */
.page-id-11 {
  font-size: 1.5rem;
  font-weight: 100;
  font-family: "Georgia", Times New Roman, serif;
  letter-spacing: 0;
}
.gform_wrapper {
  margin: 0!important;
}
.gform_wrapper input[type=email], .gform_wrapper input[type=number], .gform_wrapper input[type=password], .gform_wrapper input[type=tel], .gform_wrapper input[type=text], .gform_wrapper input[type=url] {
  width: 100%;
}

body .gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium {
  width: 97.5%;
}
body .button, button, input[type="submit"], input[type="reset"], input[type="button"] {
  background-color: #333;
  border-color: #ccc;
  border-radius: 4px;
  border: 1px solid #ccc;
}

body .gform_wrapper .gfield_required {
  color: #FF0000;
}

body .gform_wrapper .ginput_complex label {
  display: none;
}

/* Custom
-------------------------------------------------- */

.site-description {
	color: #FFFFFF;
	font-size: 2.5rem;
}