@charset "UTF-8";
html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

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

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

img[src$=".svg"] {
  width: 100%;
}

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

*:focus {
  outline: none;
}

input[type=text], input[type=email], input[type=submit], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/*==============================================================*/
/*==============================================================*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* colors */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid.flex-end {
  justify-content: flex-end;
}
.grid.flex-start {
  justify-content: flex-start;
}
.grid.flex-center {
  justify-content: center;
}
.grid .w-100 {
  width: 100%;
}
.grid .w-50 {
  width: 100%;
}
@media (min-width: 925px) {
  .grid .w-50 {
    width: 50%;
  }
}
.grid .w-33 {
  width: 100%;
}
@media (min-width: 925px) {
  .grid .w-33 {
    width: 33.3333333%;
  }
}
.grid .w-25 {
  width: 100%;
}
@media (min-width: 600px) {
  .grid .w-25 {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .grid .w-25 {
    width: 25%;
  }
}

.mobile {
  display: block;
}
@media (min-width: 925px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 925px) {
  .desktop {
    display: block;
  }
}

.wrap700 {
  max-width: 700px;
  width: 94%;
  margin: 0 auto;
}

.wrap900 {
  max-width: 900px;
  width: 94%;
  margin: 0 auto;
}

.wrap1100 {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
}

.wrap1200 {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
}

.wrap1400 {
  max-width: 1400px;
  width: 94%;
  margin: 0 auto;
}

@media (max-width: 924px) {
  .mobile-full {
    width: 100% !important;
  }
}

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

body, html {
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  width: 100%;
  overflow-x: hidden;
}
@media (min-width: 925px) {
  body, html {
    font-size: 18px;
    scroll-behavior: smooth;
  }
}

main.not-home {
  margin-top: 60px;
}
@media (min-width: 925px) {
  main.not-home {
    margin-top: 80px;
  }
}

.page-base {
  margin: 60px auto 90px;
}

a {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

.custom-select {
  position: relative;
  background: #000000;
  border: 1px solid transparent;
}
.custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #b01a1a;
}
.custom-select select {
  font-size: 0.9em;
  border: none;
  background: transparent;
  height: 40px;
  padding-left: 10px;
  width: 100%;
  color: #ffffff;
  -webkit-appearance: none !important;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.custom-select:after {
  display: block;
}

.button:not(.menu-item) {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  background: #000000;
  color: #ffffff !important;
  font-size: 16px;
  padding: 12px 20px;
  line-height: normal;
  min-width: 200px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 925px) {
  .button:not(.menu-item) {
    font-size: 16px;
  }
}
.button:not(.menu-item):hover {
  background: #b01a1a;
}
.button:not(.menu-item).disabled {
  background: #e6e6e6;
  color: #8a8a8a !important;
  pointer-events: none;
}
.button:not(.menu-item).button-alt {
  background: #b01a1a;
}
.button:not(.menu-item).button-alt:hover {
  background: #000000;
}

.base.alt p, .base.alt h2, .base.alt .h2, .base.alt h3, .base.alt .h3, .base.alt h4, .base.alt .h4 {
  color: #ffffff;
}
.base.alt a.button:hover {
  background: #ffffff;
  color: #000000 !important;
}
.base p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.base p.large {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.base strong {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.base em {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.base em strong,
.base strong em {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.base a {
  color: #b01a1a;
}
.base a:hover {
  color: #000000;
}
.base .border-bottom {
  border-bottom: 8px solid #e6e6e6;
}
.base h2, .base .h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 925px) {
  .base h2, .base .h2 {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .base h2, .base .h2 {
    font-size: 45px;
  }
}
.base h3, .base .h3 {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
  color: #b01a1a;
  font-size: 27px;
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: normal;
}
@media (min-width: 600px) {
  .base h3, .base .h3 {
    font-size: 32px;
  }
}
@media (min-width: 925px) {
  .base h3, .base .h3 {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .base h3, .base .h3 {
    font-size: 45px;
  }
}
.base h4, .base .h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #b01a1a;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (min-width: 925px) {
  .base h4, .base .h4 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .base h4, .base .h4 {
    font-size: 30px;
  }
}
.base hr {
  margin: 20px 0;
  border: none;
  background: #b01a1a;
  height: 2px;
  width: 90px;
}
.base blockquote {
  border-left: 5px solid #b01a1a;
  padding-left: 20px;
}
@media (min-width: 925px) {
  .base blockquote {
    padding-left: 40px;
  }
}
.base blockquote p {
  margin: 0 auto 30px;
  font-size: 20px;
}
@media (min-width: 925px) {
  .base blockquote p {
    font-size: 22px;
  }
}
.base ul {
  margin: 0 0 30px 0px;
  list-style: none;
}
@media (min-width: 925px) {
  .base ul {
    margin: 0 0 40px 30px;
  }
}
.base ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 12px;
  line-height: 1.3;
}
.base ul li::before {
  position: absolute;
  font-size: 16px;
  top: 0px;
  left: 8px;
  color: #b01a1a;
  text-indent: -8px;
  content: "•";
}
.base p + ul {
  margin-top: -10px;
}
.base ol {
  margin: 0 0 30px 0px;
  list-style: none;
  counter-reset: a;
}
@media (min-width: 925px) {
  .base ol {
    margin: 0 0 40px 30px;
  }
}
.base ol li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
  line-height: 1.3;
}
.base ol li::before {
  position: absolute;
  text-indent: -18px;
  counter-increment: a;
  content: counter(a);
  font-weight: 700;
}
.base .alignleft, .base .alignright, .base .aligncenter {
  clear: both;
  display: block;
  margin: 30px auto 30px;
}
@media (min-width: 925px) {
  .base .alignleft {
    display: inline;
    float: left;
    margin: 0px 30px 30px 0;
  }
}
@media (min-width: 925px) {
  .base .alignright {
    display: inline;
    float: right;
    margin: 0px 0 30px 30px;
  }
}

header {
  z-index: 999;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  height: 60px;
  background: #ffffff;
}
@media (min-width: 925px) {
  header {
    height: 80px;
    background: #000000;
  }
}
@media (min-width: 925px) {
  header.home-nav {
    background: transparent;
  }
}
@media (min-width: 925px) {
  header.home-nav .menu-primary-container {
    width: 100% !important;
  }
}
@media (min-width: 925px) {
  header.home-nav .menu {
    justify-content: center;
  }
}
header.sticky {
  background: #ffffff;
  box-shadow: 0px 0px 11px 11px rgba(0, 0, 0, 0.2);
}
header.sticky .main-navigation {
  justify-content: space-between;
  height: 60px;
}
@media (min-width: 925px) {
  header.sticky .main-navigation {
    height: 80px;
  }
}
@media (min-width: 925px) {
  header.sticky .menu-primary-container {
    width: calc(100% - 190px) !important;
  }
}
@media (min-width: 1200px) {
  header.sticky .menu-primary-container {
    width: calc(100% - 235px) !important;
  }
}
header.sticky .logo {
  position: relative;
  visibility: visible;
  opacity: 1;
  left: 0;
}
header.sticky .logo.not-scrolled {
  display: none;
}
@media (min-width: 925px) {
  header.sticky .menu {
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    right: -20px;
    padding-right: 20px;
    position: relative;
  }
  header.sticky .menu a {
    text-shadow: none !important;
    color: #000000;
  }
  header.sticky .menu .menu-item-207 a {
    color: #ffffff !important;
  }
  header.sticky .menu .menu-item-207 a:hover {
    background: #000000;
    color: #ffffff;
  }
}
header.sticky .menu li {
  position: relative;
}
@media (min-width: 925px) {
  header.sticky .menu li {
    margin: 0 4px;
    height: 100%;
  }
}
header .logo {
  width: 190px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 925px) {
  header .logo {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: -100%;
  }
}
@media (min-width: 1200px) {
  header .logo {
    width: 235px;
  }
}
header .logo.not-scrolled {
  display: none;
  position: relative;
  left: 0;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 925px) {
  header .logo.not-scrolled {
    display: block;
  }
}
header .main-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
@media (min-width: 925px) {
  header .main-navigation {
    justify-content: center;
    height: 80px;
  }
}
header .menu-primary-container {
  position: absolute;
  visibility: hidden;
  left: 0;
  right: 0;
  width: 100%;
  top: calc(-100% - 40px);
  display: block;
  background: #000000;
  padding: 20px 0 30px;
  opacity: 0;
}
@media (min-width: 925px) {
  header .menu-primary-container {
    padding: 0px;
    background: transparent;
    top: auto;
    left: 0;
    right: 0;
    width: calc(100% - 190px);
    visibility: visible;
    opacity: 1;
    position: relative;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  header .menu-primary-container {
    width: calc(100% - 235px);
  }
}
header .menu {
  display: block;
}
@media (min-width: 925px) {
  header .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
}
@media (min-width: 925px) {
  header .menu li {
    position: relative;
    height: 100%;
    margin: 0 4px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 925px) {
  header .menu li.current_page_item a {
    color: #b01a1a;
  }
}
@media (min-width: 925px) {
  header .menu li.current_page_item {
    box-shadow: inset 0 4px 0 0 #b01a1a;
  }
}
header .menu li.menu-item-has-children {
  align-self: flex-end;
}
header .menu li.menu-item-has-children > a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}
header .menu li.menu-item-has-children > a::after {
  position: absolute;
  right: 0;
  z-index: 2;
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  width: auto;
  height: 43px;
  font-size: 30px;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #b01a1a;
}
@media (min-width: 925px) {
  header .menu li.menu-item-has-children > a {
    border: none;
  }
  header .menu li.menu-item-has-children > a::after {
    display: none;
  }
}
header .menu li.menu-item-has-children:hover a, header .menu li.menu-item-has-children:focus a, header .menu li.menu-item-has-children:active a {
  background: #000000;
  color: #ffffff;
}
header .menu li.menu-item-has-children:hover a + .sub-menu, header .menu li.menu-item-has-children:focus a + .sub-menu, header .menu li.menu-item-has-children:active a + .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
}
header .menu .sub-menu {
  background: transparent;
  position: relative;
  z-index: 3;
}
@media (min-width: 925px) {
  header .menu .sub-menu {
    background: #000000;
    display: block !important;
    visibility: hidden;
    top: 80px;
    left: 0px;
    opacity: 0;
    background: #000000;
    position: absolute;
    height: auto !important;
    padding: 10px 0px 20px;
    min-width: 265px;
    border-bottom: 8px solid #b01a1a;
    box-shadow: 0px 11px 6px -10px rgba(0, 0, 0, 0.4);
  }
}
header .menu .sub-menu.focused {
  visibility: visible !important;
  opacity: 1 !important;
}
header .menu .sub-menu li {
  margin: 0;
  display: block;
  text-align: left;
  transition-delay: 0 !important;
}
@media (min-width: 925px) {
  header .menu .sub-menu li {
    margin: 0 12px;
  }
}
@media (min-width: 1200px) {
  header .menu .sub-menu li {
    margin: 0 15px;
  }
}
@media (min-width: 1400px) {
  header .menu .sub-menu li {
    margin: 0 20px;
  }
}
header .menu .sub-menu li.current_page_item {
  box-shadow: none;
}
header .menu .sub-menu li.current_page_item a {
  color: #b01a1a;
}
header .menu .sub-menu li a {
  color: #ffffff;
  display: block;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 16px;
  margin: 0 auto;
  text-transform: uppercase;
  padding: 12px 0px;
  border: none !important;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}
header .menu .sub-menu li a:hover {
  color: #b01a1a;
}
header .menu li.button {
  margin-right: 0;
}
header .menu li.button a {
  background: #b01a1a;
  padding: 12px 30px 15px;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 10px auto;
}
@media (min-width: 925px) {
  header .menu li.button a {
    padding: 12px 20px 15px;
    margin: 0;
    height: 40px;
  }
}
@media (min-width: 1200px) {
  header .menu li.button a {
    padding: 12px 30px 15px;
    height: 45px;
  }
}
header .menu li.button a:hover {
  background: #ffffff;
  color: #b01a1a;
}
header .menu a {
  width: 94%;
  padding: 12px 0;
  margin: 0 auto;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-size: 16px;
  cursor: pointer;
}
@media (min-width: 925px) {
  header .menu a {
    padding: 0;
    margin: 0;
    width: auto;
    font-size: 15px;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
  }
}
@media (min-width: 1200px) {
  header .menu a {
    font-size: 17px;
    padding: 0 15px;
  }
}
@media (min-width: 1400px) {
  header .menu a {
    font-size: 20px;
    padding: 0 20px;
  }
}
header .menu a:hover {
  color: #b01a1a;
}

footer {
  position: relative;
  background: #000000;
  padding: 20px 0 60px;
}
footer .top {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 40px;
  position: relative;
  z-index: 2;
  top: -40px;
}
footer .menu-container {
  margin: 30px auto 70px;
  position: relative;
  text-align: center;
  display: none;
}
@media (min-width: 925px) {
  footer .menu-container {
    display: block;
  }
}
footer .menu-footer-menu-container {
  display: inline-block;
}
footer .menu {
  padding: 0 20px;
  background: #000000;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .menu li {
  margin: 0 15px;
}
footer .menu li.menu-item-1173 a {
  background: #b01a1a;
  padding: 5px 30px 8px;
  letter-spacing: 0.05em;
}
footer .menu li.menu-item-1173 a:hover {
  color: #b01a1a;
  background: #ffffff;
}
footer .menu a {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-size: 16px;
}
@media (min-width: 1024px) {
  footer .menu a {
    font-size: 18px;
  }
}
footer .menu a:hover {
  color: #b01a1a;
}
footer .sub-menu {
  display: none !important;
}
footer .line {
  height: 2px;
  background: #b01a1a;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
}
footer .social {
  max-width: 500px;
  margin: 0 auto;
  width: 94%;
}
footer .social .logo-container {
  width: 160px;
  margin: 0 auto 30px;
}
@media (min-width: 600px) {
  footer .social .logo-container {
    width: 190px;
  }
}
@media (min-width: 925px) {
  footer .social .logo-container {
    width: 220px;
  }
}
footer .social .logo-container a {
  display: block;
}
footer .social .grid {
  justify-content: center;
}
footer .social .grid li {
  margin: 0 10px;
}
footer .social .grid a {
  color: #b01a1a;
  font-size: 32px;
}
footer .social .grid a:hover {
  color: #ffffff;
}
footer .copy {
  position: relative;
  text-align: center;
  margin: 60px auto 30px;
}
footer .copy p {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #000000;
  margin: auto;
  padding: 0 20px;
  color: #ffffff;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}
footer .siteby a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
footer .siteby a:hover {
  color: #ffffff;
}

.home-hero {
  position: relative;
}
.home-hero .overlay {
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-hero .overlay .site-logo {
  max-width: 160px;
  margin: 0 auto;
  text-align: center;
  height: auto;
  position: relative;
  width: 94%;
  height: auto;
  top: calc(50% + 30px);
  transform: translateY(-50%);
}
@media (min-width: 480px) {
  .home-hero .overlay .site-logo {
    max-width: 250px;
  }
}
@media (min-width: 768px) {
  .home-hero .overlay .site-logo {
    max-width: 350px;
  }
}
@media (min-width: 925px) {
  .home-hero .overlay .site-logo {
    max-width: 500px;
    top: 50%;
  }
}
@media (min-width: 1200px) {
  .home-hero .overlay .site-logo {
    max-width: 650px;
  }
}
@media (min-width: 1400px) {
  .home-hero .overlay .site-logo {
    max-width: 850px;
  }
}
.home-hero video {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.home-events {
  position: relative;
  background: #b01a1a;
}
.home-events .top, .home-events .bottom {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 40px;
  position: relative;
  z-index: 2;
}
.home-events .overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.home-events .wrap1400 {
  position: relative;
  z-index: 5;
  padding: 30px 0 0;
  text-align: center;
  margin-top: -70px;
}
.home-events .slide {
  padding: 30px 0 0px;
}
.home-events .slide.slick-current .base {
  opacity: 1;
}
@media (min-width: 925px) {
  .home-events .slide.slick-current .card:first-of-type img {
    top: -30px;
    opacity: 1;
    visibility: visible;
    transform: rotate(-15deg);
  }
  .home-events .slide.slick-current .card:last-of-type img {
    top: -30px;
    opacity: 1;
    visibility: visible;
    transform: rotate(15deg);
  }
}
.home-events .grid {
  padding: 0 45px;
}
@media (min-width: 1024px) {
  .home-events .grid {
    padding: 0 50px;
  }
}
@media (min-width: 1200px) {
  .home-events .grid {
    padding: 0 55px;
  }
}
@media (min-width: 1400px) {
  .home-events .grid {
    padding: 0 120px;
  }
}
.home-events .card {
  position: relative;
  order: 1;
  width: 50%;
}
@media (min-width: 925px) {
  .home-events .card {
    width: 175px;
    order: inherit;
  }
}
@media (min-width: 1024px) {
  .home-events .card {
    width: 195px;
  }
}
@media (min-width: 1200px) {
  .home-events .card {
    width: 225px;
  }
}
@media (min-width: 1400px) {
  .home-events .card {
    width: 250px;
  }
}
.home-events .card:first-of-type img {
  margin: 0 0 0 auto;
  transform: rotate(-15deg);
}
@media (min-width: 925px) {
  .home-events .card:first-of-type img {
    visibility: hidden;
    top: -120%;
    opacity: 0;
  }
}
.home-events .card:last-of-type img {
  transform: rotate(15deg);
}
@media (min-width: 925px) {
  .home-events .card:last-of-type img {
    visibility: hidden;
    top: 120%;
    opacity: 0;
  }
}
.home-events .card img {
  width: 150px;
  transition: all 0.7s cubic-bezier(0.25, 0.75, 0.5, 1.25);
}
@media (min-width: 925px) {
  .home-events .card img {
    position: absolute;
    width: 100%;
  }
}
.home-events .base {
  order: 3;
  color: #ffffff;
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
  opacity: 0;
  transition: all 1s cubic-bezier(0.25, 0.75, 0.5, 1.25);
}
@media (min-width: 925px) {
  .home-events .base {
    max-width: 400px;
    order: inherit;
  }
}
@media (min-width: 1024px) {
  .home-events .base {
    max-width: 450px;
  }
}
@media (min-width: 1200px) {
  .home-events .base {
    max-width: 575px;
  }
}
.home-events .base h3 {
  color: #000000;
}
.home-events .base .h2 {
  margin-bottom: 10px;
  letter-spacing: 0.15em;
}
.home-events .base .h2, .home-events .base .h4 {
  color: #ffffff;
  display: block;
}
.home-events .base .h2 span, .home-events .base .h4 span {
  color: #000000;
}
.home-events .base .h4 {
  letter-spacing: normal;
}
.home-events .base .button {
  margin-top: 20px;
}
.home-events .base .button:hover {
  background: #ffffff;
  color: #b01a1a !important;
}

.home-columns {
  position: relative;
  padding: 90px 0 30px;
  margin-top: -2px;
}
.home-columns .overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-columns .wrap1400 {
  position: relative;
  z-index: 2;
}
.home-columns .grid {
  margin: 0 -30px;
}
.home-columns .grid-item {
  margin: 0 auto 60px;
  position: relative;
  z-index: 10;
  -webkit-transition: transform opacity 0.6s cubic-bezier(0.25, 0.75, 0.5, 1.25);
  -moz-transition: transform opacity 0.6s cubic-bezier(0.25, 0.75, 0.5, 1.25);
  -ms-transition: transform opacity 0.6s cubic-bezier(0.25, 0.75, 0.5, 1.25);
  -o-transition: transform opacity 0.6s cubic-bezier(0.25, 0.75, 0.5, 1.25);
  transition: transform opacity 0.6s cubic-bezier(0.25, 0.75, 0.5, 1.25);
}
@media (max-width: 925px) {
  .home-columns .grid-item:nth-of-type(2) {
    order: -1;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
}
.home-columns .grid-item:nth-of-type(1) {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.home-columns .grid-item:nth-of-type(2) {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.home-columns .grid-item:nth-of-type(3) {
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -ms-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.home-columns .column-inner {
  text-align: center;
  padding: 0 30px;
}
@media (min-width: 925px) {
  .home-columns .column-inner {
    height: 100%;
  }
}
.home-columns .column-inner p {
  color: #000000;
}
.home-columns a {
  max-width: 370px;
  margin: 0 auto;
  display: block;
}
@media (min-width: 925px) {
  .home-columns a {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .home-columns a .button {
    margin: auto auto 0;
  }
}
.home-columns a:hover span.button {
  background: #b01a1a;
}
.home-columns .icon {
  max-width: 190px;
  margin: 0 auto 10px;
}
@media (min-width: 1200px) {
  .home-columns .icon {
    max-width: 220px;
  }
}

.two-panels {
  position: relative;
}
.two-panels .box {
  padding: 200px 0;
  position: relative;
  z-index: 2;
}
.two-panels .box .base {
  background: #b01a1a;
  padding: 45px 30px 15px;
  max-width: 700px;
  width: 94%;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 600px) {
  .two-panels .box .base {
    padding: 75px 80px 45px;
  }
}
.two-panels .box .overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.two-panels .box .container {
  position: relative;
  z-index: 3;
}
.two-panels .overlay-dark {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.two-panels .grid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.two-panels .grid-item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.news .top {
  display: none;
}
@media (min-width: 925px) {
  .news .top {
    display: block;
    transform: rotate(180deg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 40px;
    position: relative;
    z-index: 2;
    top: 0px;
  }
}
.news .headline {
  margin: 50px auto 60px;
}
.news .headline .cat {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 27px;
  display: block;
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 600px) {
  .news .headline .cat {
    font-size: 32px;
  }
}
@media (min-width: 925px) {
  .news .headline .cat {
    font-size: 40px;
  }
}
.news .headline h1 {
  font-size: 50px;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
  color: #b01a1a;
  padding-top: 40px;
}
@media (min-width: 600px) {
  .news .headline h1 {
    font-size: 72px;
  }
}
@media (min-width: 925px) {
  .news .headline h1 {
    padding: 0;
    font-size: 120px;
  }
}

.recent-article {
  margin: 60px auto 90px;
}
.recent-article .overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.recent-article .content {
  position: relative;
  z-index: 2;
}
.recent-article .container {
  background: #333333;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -120px;
  z-index: 2;
  position: relative;
  padding: 40px 30px 60px;
  color: #ffffff;
}
@media (min-width: 600px) {
  .recent-article .container {
    padding: 40px 60px 60px;
  }
}
.recent-article .container .button {
  background: #b01a1a;
}
.recent-article .container .button:hover {
  background: #ffffff;
}
.recent-article .container h3 a {
  display: inline-block;
  line-height: normal;
  border-bottom: 2px solid #b01a1a;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 600px) {
  .recent-article .container h3 a {
    font-size: 27px;
  }
}
.recent-article .container h3 a:hover {
  color: #b01a1a;
}
.recent-article .container p {
  font-size: 20px;
  margin-bottom: 30px;
}
.recent-article .img-container {
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
}
.recent-article .img-container:hover img {
  transform: scale(1.1);
}
.recent-article .img-container img {
  width: 100%;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.recent-article .meta {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 0;
}
.recent-article .meta .red {
  color: #b01a1a;
}

.post-list {
  justify-content: center;
  margin: 0 -30px;
}
.post-list .grid-item {
  margin-bottom: 60px;
}
.post-list .img-container {
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
}
.post-list .img-container:hover img {
  transform: scale(1.1);
}
.post-list .img-container img {
  width: 100%;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.post-list .inner {
  padding: 0 30px;
}
.post-list .button {
  font-size: 14px;
  width: 160px;
  min-width: 0;
  padding: 10px 20px;
}
.post-list h3 {
  font-size: 32px;
}
@media (max-width: 600px) {
  .post-list h3 {
    font-size: 27px;
  }
}
.post-list .meta {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 0;
  color: #000000;
  border-top: 2px solid #e6e6e6;
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 10px;
}
.post-list .meta .red {
  color: #b01a1a;
}

.nav-container {
  padding: 30px 0;
  margin: 0px auto 60px;
  background: #e6e6e6;
}
.nav-container .nav-links {
  display: flex;
  justify-content: space-between;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
}
.nav-container .nav-links a:hover {
  color: #b01a1a;
}

.blog-sidebar {
  margin: 60px auto 90px;
}
.blog-sidebar .grid-item {
  position: relative;
}
.blog-sidebar .grid-item:first-of-type {
  background: #b01a1a;
}
.blog-sidebar .grid-item:first-of-type h3 {
  border-bottom: 2px solid #000000;
}
.blog-sidebar .grid-item:last-of-type {
  background: #333333;
}
.blog-sidebar .grid-item:last-of-type .base {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.blog-sidebar .grid-item:last-of-type h3 {
  border-bottom: 2px solid #b01a1a;
}
.blog-sidebar .grid-item:last-of-type .button {
  background: #b01a1a;
}
.blog-sidebar .grid-item .base.alt {
  padding: 70px 30px;
  z-index: 3;
  position: relative;
}
.blog-sidebar .grid-item .base.alt h3 {
  margin: 0 auto 20px;
  display: inline-block;
  padding-bottom: 5px;
}
.blog-sidebar .grid-item .overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.blog-sidebar .custom-select {
  max-width: 350px;
  margin: 0 auto;
}

.single-news .featured-container {
  margin: 60px auto 20px;
}
.single-news .featured-container img {
  width: 100%;
}
.single-news .news-intro {
  margin-bottom: 60px;
}
.single-news .news-intro h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 925px) {
  .single-news .news-intro h1 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .single-news .news-intro h1 {
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .single-news .news-intro h1 {
    font-size: 55px;
  }
}
.single-news .news-intro .meta {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 0;
  color: #000000;
  border-top: 2px solid #e6e6e6;
  border-bottom: 2px solid #e6e6e6;
  margin-top: 20px;
}
.single-news .news-intro .meta .red {
  color: #b01a1a;
}

.page-about {
  margin-bottom: 30px;
}
.page-about .wrap900, .page-about .wrap1100 {
  margin-bottom: 40px;
}
.page-about .mission-photo {
  margin-bottom: 40px;
}
.page-about .grid {
  margin: 0 -30px;
}
.page-about .grid-item {
  margin-bottom: 40px;
}
.page-about .grid-item .base {
  padding: 0 30px;
}
.page-about .grid-item .base img {
  width: 100%;
}

.page-get-involved .base img {
  width: 100%;
}

.get-involved-blocks {
  margin-bottom: 60px;
}
@media (min-width: 925px) {
  .get-involved-blocks .grid {
    margin: 0 -30px;
  }
}
@media (min-width: 1200px) {
  .get-involved-blocks .grid {
    margin: 0px -50px;
  }
}
.get-involved-blocks .grid-item {
  padding-bottom: 30px;
}
@media (min-width: 925px) {
  .get-involved-blocks .grid-item {
    padding-bottom: 60px;
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
  }
}
.get-involved-blocks .grid-item:nth-of-type(even) {
  border-right: none;
}
.get-involved-blocks .base {
  border-top: 1px solid #e6e6e6;
  padding: 40px 0px 0;
}
@media (min-width: 925px) {
  .get-involved-blocks .base {
    border-top: none;
    padding: 60px 30px 0;
  }
}
@media (min-width: 1200px) {
  .get-involved-blocks .base {
    padding: 60px 50px 0;
  }
}
.get-involved-blocks .base img {
  width: 100%;
}

.page-recruitment {
  margin: 60px auto;
}
.page-recruitment .grid {
  justify-content: center;
}
.page-recruitment .grid .grid-item:first-of-type {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 925px) {
  .page-recruitment .grid .grid-item:first-of-type {
    width: 450px;
  }
}
@media (min-width: 1200px) {
  .page-recruitment .grid .grid-item:first-of-type {
    width: 500px;
  }
}
.page-recruitment .grid .grid-item:first-of-type .countdown-container {
  padding: 40px 20px;
  max-width: 500px;
  background: #000000;
  margin: 0 auto;
}
.page-recruitment .grid .grid-item:first-of-type .countdown-container h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.page-recruitment .grid .grid-item:first-of-type .countdown-container h3 {
  margin-bottom: 15px;
}
.page-recruitment .grid .grid-item:first-of-type .photo {
  display: none;
}
@media (min-width: 925px) {
  .page-recruitment .grid .grid-item:first-of-type .photo {
    display: block;
    height: 450px;
    border-bottom: 8px solid #e6e6e6;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.page-recruitment .grid .grid-item:first-of-type .countdown .element_conteiner {
  background: #b01a1a;
  color: #ffffff;
  padding: 15px 0 20px;
  margin: 0 3px 8px !important;
  min-width: 65px !important;
}
@media (min-width: 600px) {
  .page-recruitment .grid .grid-item:first-of-type .countdown .element_conteiner {
    min-width: 90px !important;
    padding: 20px 0 25px;
  }
}
@media (min-width: 1200px) {
  .page-recruitment .grid .grid-item:first-of-type .countdown .element_conteiner {
    min-width: 105px !important;
  }
}
.page-recruitment .grid .grid-item:first-of-type .countdown .time_description {
  color: #ffffff !important;
  text-transform: uppercase !important;
  font-family: "Source Sans Pro", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding-top: 5px !important;
  letter-spacing: 0.15em !important;
}
@media (min-width: 600px) {
  .page-recruitment .grid .grid-item:first-of-type .countdown .time_description {
    font-size: 16px !important;
  }
}
.page-recruitment .grid .grid-item:first-of-type .countdown .time_left {
  padding: 0px !important;
  background: #b01a1a !important;
  color: #ffffff !important;
  font-family: "Permanent Marker", cursive !important;
  font-size: 36px;
}
@media (min-width: 600px) {
  .page-recruitment .grid .grid-item:first-of-type .countdown .time_left {
    font-size: 40px !important;
  }
}
@media (min-width: 1200px) {
  .page-recruitment .grid .grid-item:first-of-type .countdown .time_left {
    font-size: 50px !important;
  }
}
.page-recruitment .grid .grid-item:last-of-type {
  width: 100%;
}
@media (min-width: 925px) {
  .page-recruitment .grid .grid-item:last-of-type {
    width: calc(100% - 450px);
    padding-left: 40px;
  }
}
@media (min-width: 1200px) {
  .page-recruitment .grid .grid-item:last-of-type {
    width: calc(100% - 500px);
    padding-left: 80px;
  }
}

.flags {
  margin: 60px auto;
}
@media (min-width: 925px) {
  .flags {
    margin: 60px auto 90px;
  }
}
.flags .flag-container {
  position: relative;
}
.flags .flag-container .line {
  position: absolute;
  height: 2px;
  background: #e6e6e6;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 1;
}
.flags .grid {
  justify-content: center;
  position: relative;
  z-index: 2;
}
.flags .grid img {
  margin: 0 10px;
  width: 60px;
}
@media (min-width: 600px) {
  .flags .grid img {
    width: 90px;
  }
}
@media (min-width: 925px) {
  .flags .grid img {
    width: 120px;
  }
}

.two-column {
  margin: 60px auto 30px;
}
.two-column .grid {
  align-items: center;
  justify-content: center;
}
.two-column .grid-item {
  margin-bottom: 40px;
}
@media (min-width: 925px) {
  .two-column .grid {
    margin: 0 -30px;
  }
}
@media (min-width: 925px) {
  .two-column .base {
    padding: 0 30px;
  }
}
.two-column .base img {
  width: 100%;
}

.page-derby-academy .intro-photo {
  margin: 60px auto;
}
@media (min-width: 925px) {
  .page-derby-academy .intro-photo {
    margin: 60px auto 90px;
  }
}

.levels section {
  position: relative;
  text-align: center;
  margin: 60px auto;
}
@media (min-width: 925px) {
  .levels section {
    margin: 60px auto 90px;
  }
}
.levels section .line {
  position: absolute;
  top: 50%;
  height: 2px;
  left: 0;
  width: 100%;
  background: #e6e6e6;
  z-index: 1;
}
.levels section .base, .levels section span {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 0 20px;
  margin: 0 auto;
}
.levels section span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  line-height: 1.2;
  display: block;
}
@media (min-width: 600px) {
  .levels section span {
    display: inline;
  }
}
@media (min-width: 925px) {
  .levels section span {
    font-size: 16px;
  }
}
@media (min-width: 925px) {
  .levels .grid {
    margin: 0 -30px;
  }
}
@media (min-width: 1200px) {
  .levels .grid {
    margin: 0 -45px;
  }
}
.levels .grid-item {
  margin-bottom: 40px;
}
@media (min-width: 925px) {
  .levels .grid-item {
    margin-bottom: 0;
  }
}
@media (min-width: 925px) {
  .levels .grid-item:first-of-type {
    border-right: 2px solid #e6e6e6;
  }
}
.levels .grid-item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 925px) {
  .levels .grid-item .base {
    padding: 0 30px;
  }
}
@media (min-width: 1200px) {
  .levels .grid-item .base {
    padding: 0 45px;
  }
}
.levels .grid-item .base h4 {
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: normal;
}
@media (min-width: 600px) {
  .levels .grid-item .base h4 {
    font-size: 18px;
  }
}
@media (min-width: 925px) {
  .levels .grid-item .base h4 {
    font-size: 20px;
  }
}

.signup {
  margin: 60px auto;
  background: #e6e6e6;
  padding: 40px 0 0;
}
@media (min-width: 1024px) {
  .signup {
    padding: 40px 0;
  }
}
.signup .grid-item {
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  .signup .grid-item {
    border-left: 2px solid #ffffff;
    margin: 0;
  }
}
.signup .grid-item:first-of-type {
  border: none;
}
.signup .icon-container {
  width: 80px;
  height: 80px;
  margin: 0px auto;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999em;
  border: 2px solid #8a8a8a;
}
@media (min-width: 1024px) {
  .signup .icon-container {
    margin: -80px auto 0;
    border: 2px solid #e6e6e6;
  }
}
.signup .icon-container img {
  width: 50px;
}
.signup .base {
  padding: 20px 30px 0;
}

.below {
  margin: 30px auto 90px;
}

.teams {
  margin: 40px auto 90px;
}
@media (min-width: 600px) {
  .teams {
    margin: 60px auto 90px;
  }
}
.teams .grid.filter-grid {
  display: flex;
  justify-content: flex-start;
}
.teams .w-25 {
  width: 50%;
  background: #000000;
}
@media (min-width: 600px) {
  .teams .w-25 {
    width: 33.3333333%;
  }
}
@media (min-width: 925px) {
  .teams .w-25 {
    width: 25%;
  }
}
.teams .inner {
  position: relative;
}
.teams .inner:hover img {
  transform: scale(1.1);
}
.teams .img {
  margin-bottom: -2px;
  overflow: hidden;
}
.teams .img img {
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.teams .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(51, 51, 51, 0.8);
  text-align: center;
  border-bottom: 10px solid;
  padding: 5px 10px 10px;
}
@media (min-width: 600px) {
  .teams .text {
    padding: 15px 10px 20px;
  }
}
.teams .text h3, .teams .text h4 {
  color: #ffffff;
}
.teams .text h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1;
}
@media (min-width: 600px) {
  .teams .text h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.teams .text h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}
@media (min-width: 600px) {
  .teams .text h4 {
    font-size: 14px;
  }
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 60px -5px 40px;
}
@media (min-width: 600px) {
  .checkbox-group {
    justify-content: center;
    margin: 60px auto 40px;
  }
}
.checkbox-group .checkbox {
  position: relative;
  padding: 0 5px;
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: row-reverse;
  margin-bottom: 10px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 600px) {
  .checkbox-group .checkbox {
    margin-bottom: 20px;
    display: block;
    width: 165px;
  }
}
.checkbox-group .checkbox .card-container {
  display: block;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 600px) {
  .checkbox-group .checkbox .card-container {
    display: none;
  }
}
.checkbox-group .checkbox .card {
  width: 40px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .checkbox-group .checkbox .card {
    width: 80px;
  }
}
.checkbox-group .checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 36px;
  z-index: 2;
  margin: 0;
  cursor: pointer;
}
.checkbox-group .checkbox input[type=checkbox]:checked + label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
}
.checkbox-group .checkbox input[type=checkbox]:checked + label + .card-container {
  display: block;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: flip 0.4s;
}
.checkbox-group .checkbox label {
  position: relative;
  display: block;
  border: none;
  color: #8a8a8a;
  border-bottom: 10px solid;
  background: transparent;
  font-size: 13px;
  padding: 0 0px 10px 19px;
  cursor: pointer;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: calc(100% - 45px);
  margin-left: 5px;
}
@media (min-width: 600px) {
  .checkbox-group .checkbox label {
    margin-left: 0;
    font-size: 15px;
    width: auto;
  }
}
.checkbox-group .checkbox label::before,
.checkbox-group .checkbox label::after {
  position: absolute;
  content: "";
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.checkbox-group .checkbox label::before {
  height: 16px;
  width: 16px;
  border: 1px solid;
  left: 0px;
  top: 0px;
}
.checkbox-group .checkbox label::after {
  height: 5px;
  width: 9px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  left: 4px;
  top: 5px;
}
.checkbox-group .checkbox input[type=checkbox] + label::after {
  content: none;
}
.checkbox-group .checkbox input[type=checkbox]:checked + label::after {
  content: "";
}

.first-event {
  margin: 60px auto;
  background: #e6e6e6;
}
@media (min-width: 925px) {
  .first-event {
    margin: 90px auto;
  }
}
.first-event .grid {
  justify-content: center;
  align-items: center;
}
.first-event .base {
  width: 500px;
  padding: 40px 0;
}
.first-event .base .h2 {
  margin-bottom: 10px;
  letter-spacing: 0.15em;
}
.first-event .base .h2, .first-event .base .h4 {
  color: #000000;
  display: block;
}
.first-event .base .h2 span, .first-event .base .h4 span {
  color: #b01a1a;
}
.first-event .base .h4 {
  letter-spacing: normal;
}
.first-event .base .button {
  background: #b01a1a;
  margin-top: 20px;
}
.first-event .base .button:hover {
  background: #000000;
}
.first-event .cards {
  display: flex;
  position: relative;
}
@media (min-width: 925px) {
  .first-event .cards {
    width: calc(100% - 500px);
  }
}
@media (min-width: 1400px) {
  .first-event .cards {
    padding-left: 60px;
  }
}
.first-event .versus {
  z-index: 3;
  width: 100px;
  height: 100px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) !important;
}
@media (min-width: 600px) {
  .first-event .versus {
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 1200px) {
  .first-event .versus {
    width: 165px;
    height: 165px;
  }
}
.first-event .card img {
  padding: 0 20px;
  max-width: 300px;
  width: 100%;
}
@media (min-width: 600px) {
  .first-event .card img {
    padding: 0 30px;
  }
}
@media (min-width: 925px) {
  .first-event .card img {
    max-width: none;
  }
}
.first-event .card:first-of-type img {
  transform: rotate(-15deg);
}
.first-event .card:last-of-type img {
  transform: rotate(15deg);
}

.other-events {
  margin: 60px auto 0;
}
@media (min-width: 925px) {
  .other-events {
    margin: 90px auto 0;
  }
}
@media (min-width: 600px) {
  .other-events .grid {
    margin: 0 -15px;
  }
}
.other-events .grid-item {
  border-top: 1px solid #e6e6e6;
}
.other-events .grid-item:nth-of-type(1) {
  border-top: none;
}
.other-events .grid-item:nth-of-type(1) .inner {
  margin-top: 0;
}
@media (min-width: 600px) {
  .other-events .grid-item:nth-of-type(1) .inner {
    margin-top: 40px;
  }
}
@media (min-width: 600px) {
  .other-events .grid-item:nth-of-type(2) {
    border-top: none;
  }
}
@media (min-width: 1024px) {
  .other-events .grid-item:nth-of-type(3), .other-events .grid-item:nth-of-type(4) {
    border-top: none;
  }
}
.other-events .grid-item:last-of-type .inner, .other-events .grid-item:nth-of-type(4n) .inner {
  border-right: none !important;
}
@media (min-width: 600px) {
  .other-events .grid-item:nth-of-type(2n) .inner {
    border-right: none;
  }
}
@media (min-width: 1024px) {
  .other-events .grid-item:nth-of-type(2n) .inner {
    border-right: 1px solid #e6e6e6;
  }
}
.other-events .inner {
  margin: 40px auto;
}
@media (min-width: 600px) {
  .other-events .inner {
    padding: 0 15px;
    border-right: 1px solid #e6e6e6;
  }
}
.other-events .date {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000000;
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 925px) {
  .other-events .date {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .other-events .date {
    font-size: 36px;
  }
}
.other-events .team-container {
  position: relative;
}
.other-events .team-container .container {
  margin: 50px auto 0px;
}
.other-events .team-container .container:first-of-type {
  margin-top: 20px;
}
.other-events .team-container .versus {
  z-index: 3;
  width: 40px;
  height: 40px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: calc(50% - 10px);
  transform: translateY(-50%) !important;
}
.other-events .team-logo {
  height: 70px;
}

.playoffs .grid {
  border-top: 1px solid #e6e6e6;
}
@media (min-width: 925px) {
  .playoffs .grid {
    margin: 0 -30px;
  }
}
.playoffs .grid-item {
  border-top: 1px solid #e6e6e6;
}
@media (min-width: 925px) {
  .playoffs .grid-item {
    border: none;
  }
}
.playoffs .grid-item:nth-of-type(2n) .inner {
  border-right: none;
}
.playoffs .grid-item:first-of-type() {
  border-top: none !important;
}
.playoffs .inner {
  margin: 40px auto;
}
@media (min-width: 925px) {
  .playoffs .inner {
    padding: 0 30px;
    border-right: 1px solid #e6e6e6;
  }
}
.playoffs img {
  max-width: 600px;
  margin: 30px auto 0;
}
.playoffs .date {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000000;
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 925px) {
  .playoffs .date {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .playoffs .date {
    font-size: 36px;
  }
}

.events-callouts {
  margin: 60px auto;
}
.events-callouts .headline {
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .events-callouts .headline .h3 {
    font-size: 48px;
  }
}
.events-callouts .grid {
  position: relative;
}
.events-callouts .grid .angle {
  z-index: 3;
  position: absolute;
  top: -2px;
  width: 200px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.events-callouts .grid-item {
  position: relative;
}
.events-callouts .grid-item:first-of-type {
  background: #b01a1a;
}
.events-callouts .grid-item:first-of-type h3 {
  border-bottom: 2px solid #000000;
}
.events-callouts .grid-item:last-of-type {
  background: #333333;
}
.events-callouts .grid-item:last-of-type .base {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.events-callouts .grid-item:last-of-type h3 {
  border-bottom: 2px solid #b01a1a;
}
.events-callouts .grid-item:last-of-type .button {
  background: #b01a1a;
}
.events-callouts .grid-item:last-of-type p span {
  color: #b01a1a;
}
.events-callouts .base.alt {
  padding: 70px 30px 40px;
}
.events-callouts .base.alt .container {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  max-width: 450px;
  text-align: center;
}
.events-callouts .base.alt .container h3 {
  margin: 0 auto 20px;
  display: inline-block;
  padding-bottom: 5px;
}
.events-callouts .overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.share {
  margin: 60px auto;
}
.share .ssba-share-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  font-size: 16px;
}
.share .ssba, .share .ssba a {
  height: 30px;
  opacity: 0.9;
}
.share .ssba:hover, .share .ssba a:hover {
  opacity: 1;
}

.sponsors {
  margin: 60px auto 0;
}
.sponsors .grid {
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .sponsors .grid {
    margin: 0 -30px;
  }
}
.sponsors .grid-item {
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #e6e6e6;
}
@media (min-width: 600px) {
  .sponsors .grid-item {
    border-bottom: none;
  }
}
.sponsors .sponsor {
  padding: 0 30px;
  margin: 0 auto;
  max-width: 400px;
}
.sponsors a {
  display: block;
}
.sponsors a:hover h4 {
  color: #000000;
}
.sponsors img {
  margin: 0 auto;
  margin-bottom: 20px;
  width: 100%;
}
.sponsors h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #b01a1a;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sponsors p {
  margin: 0 auto 10px;
  line-height: 1.6;
}

.page-id-191 .button-container {
  display: flex;
  justify-content: center;
}
.page-id-191 .button-container .button {
  margin: 0 10px 20px;
  width: 250px;
}

.template-two-column {
  margin: 60px auto 30px;
}
.template-two-column .grid {
  margin: 0 auto;
  align-items: flex-start;
}
.template-two-column .grid-item:first-of-type {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 925px) {
  .template-two-column .grid-item:first-of-type {
    width: calc(100% - 450px);
  }
}
@media (min-width: 925px) {
  .template-two-column .grid-item:first-of-type .base {
    padding-right: 40px;
  }
}
.template-two-column .grid-item:last-of-type {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 925px) {
  .template-two-column .grid-item:last-of-type {
    width: 450px;
  }
}
@media (min-width: 925px) {
  .template-two-column .sidebar {
    padding-left: 40px;
    border-left: 2px solid #e6e6e6;
  }
}
.template-two-column .widget {
  background: #b01a1a;
  border-bottom: 10px solid #000000;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 30px;
}
.template-two-column .widget:first-of-type .button {
  background: #000000;
}
.template-two-column .widget:first-of-type .button:hover {
  background: #ffffff;
  color: #b01a1a !important;
}
.template-two-column .widget:nth-of-type(2) {
  background: #e6e6e6;
  border-color: #b01a1a;
  color: #000000;
}
.template-two-column .widget:nth-of-type(2) h3 {
  color: #b01a1a;
}
.template-two-column .widget:nth-of-type(2) .button {
  background: #b01a1a;
}
.template-two-column .widget:nth-of-type(2) .button:hover {
  background: #000000;
  color: #ffffff !important;
}
.template-two-column .widget:nth-of-type(3) {
  background: #333333;
  border-color: #8a8a8a;
}
.template-two-column .widget:nth-of-type(3) .button {
  background: #b01a1a;
}
.template-two-column .widget:nth-of-type(3) .button:hover {
  background: #ffffff;
  color: #000000 !important;
}
.template-two-column .widget .text {
  padding: 30px 20px;
  text-align: center;
}
.template-two-column .widget h3 {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 10px;
}
@media (min-width: 925px) {
  .template-two-column .widget h3 {
    font-size: 30px;
  }
}
.template-two-column .widget p {
  line-height: 1.6;
  margin-bottom: 30px;
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
/*==============================================================*/
/*==============================================================*/
.base .gform_wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.base .gform_wrapper .gform_description {
  margin: 0 0 40px;
  color: #b01a1a;
  display: block;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: italic;
}
@media (min-width: 925px) {
  .base .gform_wrapper .gform_description {
    font-size: 24px;
  }
}
.base .gform_wrapper ul.gform_fields {
  margin: 0;
  display: table;
  width: 100%;
  clear: both;
}
.base .gform_wrapper li {
  width: 100%;
  float: left;
  padding-left: 0;
  margin-bottom: 30px;
  line-height: 1;
}
.base .gform_wrapper li:before {
  display: none;
}
.base .gform_wrapper li label {
  display: block;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 4px 0 0 0;
}
.base .gform_wrapper li label.gfield_label {
  color: #333333;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 5px 0;
  font-size: 18px;
  letter-spacing: normal;
  text-transform: none;
}
.base .gform_wrapper .gfield_required {
  color: #b01a1a;
  margin-left: 3px;
}
.base .gform_wrapper input, .base .gform_wrapper textarea {
  width: 100%;
  box-shadow: none;
  border: 1px solid transparent;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9em;
  padding: 8px;
  height: 40px;
  background: #e6e6e6;
}
.base .gform_wrapper textarea {
  height: 200px;
}
.base .gform_wrapper .gform_validation_container {
  display: none;
}
@media (min-width: 768px) {
  .base .gform_wrapper .form-left, .base .gform_wrapper .name_first {
    width: 48%;
    clear: left;
    float: left;
  }
}
@media (min-width: 768px) {
  .base .gform_wrapper .form-right, .base .gform_wrapper .name_last {
    width: 48%;
    float: right;
    clear: right;
  }
}
@media (max-width: 768px) {
  .base .gform_wrapper .name_first {
    display: block;
    margin-bottom: 30px;
  }
}
.base .gform_wrapper .ginput_container_select .custom-select {
  position: relative;
  background: #e6e6e6;
  border: 1px solid transparent;
}
.base .gform_wrapper .ginput_container_select .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #b01a1a;
}
.base .gform_wrapper .ginput_container_select select {
  font-size: 0.9em;
  border: none;
  background: transparent;
  height: 40px;
  padding-left: 10px;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .base .gform_wrapper .ginput_container_select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.base .gform_wrapper .ginput_container_select:after {
  display: block;
}
.base .gform_wrapper ul.gfield_checkbox, .base .gform_wrapper ul.gfield_radio {
  margin: 0;
}
.base .gform_wrapper ul.gfield_checkbox li, .base .gform_wrapper ul.gfield_radio li {
  display: inline-block;
  margin: 5px 20px 10px 0;
  padding: 0;
}
.base .gform_wrapper ul.gfield_checkbox li input, .base .gform_wrapper ul.gfield_checkbox li label, .base .gform_wrapper ul.gfield_radio li input, .base .gform_wrapper ul.gfield_radio li label {
  display: inline-block;
  margin: 0;
  height: auto;
  width: auto;
  text-transform: none;
  letter-spacing: normal;
  vertical-align: middle;
  padding: 0;
}
.base .gform_wrapper ul.gfield_checkbox li label, .base .gform_wrapper ul.gfield_radio li label {
  color: #000000;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
.base .gform_wrapper .form-nolabel label.gfield_label {
  display: none !important;
}
.base .gform_wrapper .gform_footer {
  text-align: center;
  clear: both;
  margin: 30px auto;
}
.base .gform_wrapper .gform_button {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  background: #b01a1a;
  color: #ffffff;
  font-size: 16px;
  padding: 15px 20px;
  height: auto;
  width: 200px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 925px) {
  .base .gform_wrapper .gform_button {
    font-size: 16px;
  }
}
.base .gform_wrapper .gform_button:hover {
  background: #000000;
}
.base .gform_wrapper .validation_error {
  display: none;
}
.base .gform_wrapper li.gfield_error input, .base .gform_wrapper li.gfield_error textarea, .base .gform_wrapper li.gfield_error .custom-select select {
  border: 1px solid #b01a1a;
}
.base .gform_wrapper li.gfield_error .validation_message {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #b01a1a;
  font-size: 14px;
  display: block;
  clear: both;
  margin-top: 5px;
}

.gform_confirmation_message {
  color: #b01a1a;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4em;
  padding: 30px 0;
  text-align: center;
  font-size: 22px;
}
@media (min-width: 925px) {
  .gform_confirmation_message {
    font-size: 27px;
  }
}

.page-id-256 header .row1 .grid:first-of-type {
  justify-content: flex-end;
}
.page-id-256 header .grid-item.show-1400 {
  display: none !important;
}
.page-id-256 header .hide-1400 {
  display: none !important;
}

#modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
#modal .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
#modal .popup {
  text-align: center;
  background: #b01a1a;
  position: relative;
  max-width: 700px;
}
#modal .popup div.overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#modal .header {
  position: relative;
  padding: 10px 20px;
  background: #961616;
  text-align: left;
  z-index: 2;
}
@media (min-width: 600px) {
  #modal .header {
    padding: 20px;
    text-align: center;
  }
}
#modal .header img {
  width: 170px;
  margin: 0;
}
@media (min-width: 600px) {
  #modal .header img {
    width: 200px;
    margin: 0 auto;
  }
}
#modal #closeModal {
  position: absolute;
  top: 13px;
  right: 10px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  z-index: 2;
  justify-content: center;
  align-items: center;
}
@media (min-width: 600px) {
  #modal #closeModal {
    top: 25px;
    right: 20px;
  }
}
#modal #closeModal:hover .close-text {
  color: #000000;
}
#modal .icon-close {
  font-size: 17px;
  width: 27px;
  height: 27px;
  color: #ffffff;
  background: #000000;
  border-radius: 999em;
  padding: 4px;
  margin-left: 5px;
}
#modal .close-text {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 600px) {
  #modal .button {
    padding: 9px 10px 10px;
    font-size: 15px;
  }
}
#modal .text {
  padding: 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 600px) {
  #modal .text {
    padding: 30px;
  }
}
@media (max-width: 600px) {
  #modal h3 {
    font-size: 23px;
  }
}
#modal p {
  margin: 20px auto;
  font-size: 15px;
}
@media (min-width: 600px) {
  #modal p {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  #modal p {
    font-size: 21px;
  }
}

#modal.on {
  display: block;
}

.page-hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero .top, .page-hero .bottom {
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 28px;
  position: relative;
  z-index: 2;
}
.page-hero .top.bottom, .page-hero .bottom.bottom {
  background-position: top;
  bottom: -2px;
}
.page-hero .top.top, .page-hero .bottom.top {
  display: none;
}
@media (min-width: 925px) {
  .page-hero .top.top, .page-hero .bottom.top {
    display: block;
  }
}
.page-hero h1 {
  font-size: 50px;
  padding: 60px 0;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.4);
}
@media (min-width: 600px) {
  .page-hero h1 {
    font-size: 72px;
  }
}
@media (min-width: 925px) {
  .page-hero h1 {
    font-size: 120px;
    padding: 100px 0;
  }
}

.mobile-toggle-container {
  position: relative;
  width: 60px;
  height: 100%;
  cursor: pointer;
  right: -10px;
  top: -2px;
  z-index: 999;
  display: block;
}
@media (min-width: 925px) {
  .mobile-toggle-container {
    display: none;
  }
}

.mobile-toggle {
  display: flex;
  height: 100%;
  align-items: center;
}
.mobile-toggle:hover .menu-icon::after, .mobile-toggle:hover .menu-icon::before {
  background: #b01a1a;
}
.mobile-toggle:hover .menu-icon span {
  background: #b01a1a;
}

.menu-icon {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
}
.menu-icon::after, .menu-icon::before {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40px;
  height: 3px;
  background: #b01a1a;
  content: "";
  opacity: 1;
  transition: all 0.2s ease;
}
.menu-icon::before {
  top: -11px;
  transition: all 0.2s ease;
  transition-timing-function: cubic-bezier(0.75, 0.15, 0.36, 1);
}
.menu-icon::after {
  bottom: -13px;
  transition: all 0.2s ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.29, 1.01);
}
.menu-icon span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  display: block;
  width: 40px;
  height: 3px;
  background: #b01a1a;
  transition: all 0.2s ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.29, 1.01);
}

@media (max-width: 925px) {
  .menu-open .menu-primary-container {
    z-index: 999;
    margin: 0 auto;
    top: 60px !important;
    left: 0;
    right: 0;
    z-index: 2;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .menu-open .menu-primary-container li a {
    display: block;
  }
  .menu-open .menu-primary-container .button {
    transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu-open .menu-primary-container .button:hover {
    transform: none;
    box-shadow: none;
  }
  .menu-open .mobile-toggle:hover .menu-icon::after, .menu-open .mobile-toggle:hover .menu-icon::before {
    right: 0px !important;
  }
  .menu-open .mobile-toggle:hover .menu-icon span {
    left: 0px !important;
  }
  .menu-open .mobile-toggle .menu-icon::after, .menu-open .mobile-toggle .menu-icon::before {
    opacity: 0 !important;
    transition: all 0.6s ease;
  }
  .menu-open .mobile-toggle .menu-icon-left {
    transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu-open .mobile-toggle .menu-icon-right {
    transform: rotate(-225deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 22;
  transition: ease-in 222ms;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
  cursor: pointer;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "icomoon";
  font-size: 38px;
  line-height: 0.8;
  padding: 3px;
  width: 40px;
  height: 40px;
  border-radius: 999em;
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  transition: ease-in 222ms;
  color: #b01a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0px;
}
.slick-prev:hover:before, .slick-prev:focus:before {
  color: #b01a1a;
  background: #fff;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -35px;
}
.slick-prev:before {
  content: "";
}
[dir=rtl] .slick-prev:before {
  content: "";
}

.slick-next {
  right: 0px;
}
.slick-next:hover:before, .slick-next:focus:before {
  color: #b01a1a;
  background: #fff;
}
[dir=rtl] .slick-next {
  left: -35px;
  right: auto;
}
.slick-next:before {
  content: "";
}
[dir=rtl] .slick-next:before {
  content: "";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 0.75;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "icomoon";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 1;
}

/*# sourceMappingURL=base.css.map */
