/*
global variables

blue = rgba(32,52,102,1);
red = rgba(188,23,49,1);

light blue = rgba(232,235,240,1);  
light red = rgba(248,232,234,1);  

*/

@charset "UTF-8";
html {
  font-size: 62.5%;
}

body.freeze {
  height: 100vh;
  overflow-y: hidden;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 0;
  min-width: 0;
}
*:focus {
  outline: none;
}

body#homepage {
  background: url(/assets/images/homepage/baseball-field.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 12rem 6rem;
}

    @media (max-width: 1024px) {
      body#homepage {
        padding: 6rem 2rem;
      }
    }

body#homepage::before {
  height: 50rem;
  width: 100% ;
  display: block;
  content: "";
  background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}

#homepage h1 {
  font-size: 5.4rem;
  line-height: 140%;
  color: white;
  text-align: center;
  max-width: 128rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 8rem;
}
    @media (max-width: 1440px) {
      #homepage h1 {
        font-size: 4.2rem;
        max-width: 1024px;
        margin-bottom: 6rem;
      }
    }

    @media (max-width: 1024px) {
      #homepage h1 {
        font-size: 3.6rem;
        margin-bottom: 4rem;
      }
    }

    @media (max-width: 600px) {
      #homepage h1 {
        font-size: 2.6rem;
        margin-bottom: 2rem;
      }
    }

#homepage #container{
  max-width: 1024px;
  width: auto;
  margin: 2rem auto;
}

    @media (max-width: 600px) {
      #homepage #container{
        margin: 2rem 0;
      }
    }

#homepage .column {
  float: left;
  width: calc(50% - 2rem);
  display: block;
  border: 2rem #FFF solid;
  border-radius: 3rem;
  text-align: center;
  padding-bottom: 4rem;
}


    @media (max-width: 768px) {
      #homepage .column {
        float: none;
        margin: 0 auto;
        width: 100%;
        padding-bottom: 2rem;
      }
    }

#homepage .column .button{
  display: inline-block;
  line-height: 60px;
}

#homepage .column.baseball {
  margin-right: 2rem;
  background-color: rgba(232,235,240,1);  
}

#homepage .column.baseball .button{
  background-color: rgba(32,52,102);  
}
#homepage .column.baseball .button:hover{
  background-color: rgba(32,52,102,.7);  
}


#homepage .column.softball {
  margin-left: 2rem;
  display: block;
  background-color: rgba(248,232,234,1);  
}

#homepage .column.softball .button{
  background-color: rgba(188,23,49,1);  
}
#homepage .column.softball .button:hover{
  background-color: rgba(188,23,49,.7);  
}

    @media (max-width: 1024px) {
      #homepage .column .button {
        width: 300px;
        font-size: 15px;
      }  
      #homepage .column.baseball {
        margin-right: 1rem;
      }
      #homepage .column.softball {
        margin-left: 1rem;
      }
    }

    @media (max-width: 768px) {
      #homepage .column .button {
        text-align: center;
        margin: 0 2rem;
      }  
      #homepage .column.baseball {
        margin-right: 0;
        margin-bottom: 1rem;
      }
      #homepage .column.softball {
        margin-left: 0;
      }
    }
    @media (max-width: 600px) {
      #homepage .column .button {
        width: calc(100% - 4rem);
      }  
    }

#homepage .column img{
  width: calc(100% - 12rem);
  margin: 4rem 6rem 3rem;
}
    @media (max-width: 768px) {
      #homepage .column img{
        margin: 4rem 2rem;
      }
    }
    @media (max-width: 600px) {
      #homepage .column img{
        width: calc(100% - 4rem);
        margin: 2rem 2rem;
      }
    }


h1, h2, h3, h4, h5, p, ul, ol, li, strong, input, select, dl, dt, dd {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-family: "Spartan", sans-serif;
}
@media (max-width: 600px) {
  h1, h2, h3, h4, h5, p, ul, ol, li, strong, input, select, dl, dt, dd {
    font-size: 1.5rem;
    line-height: 2.3rem;
  }
}

ul, ul li, ul li ul, ul li ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol, ol li, ol li ol, ol li ol li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ol a, ol li a, ol li ol a, ol li ol li a {
  font-weight: bold;
}

h2 {
  font-size: 4.2rem;
  line-height: 5rem;
  margin: 0 0 4rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
}
@media (max-width: 600px) {
  h2 {
    font-size: 2.8rem;
    line-height: 3.4rem;
    letter-spacing: -0.1rem;
    margin: 0 0 2rem;
  }
}

p.small {
  font-size: 1.3rem;
  line-height: 1.5rem;
}
p a {
  font-weight: bold;
}
p a:hover {
  cursor: pointer;
}

span.small {
  font-size: 1.3rem;
  line-height: 1.5rem;
}

.center {
  text-align: center;
}

a.button {
  background-color: #c1162d;
  color: white;
  max-width: 100%;
  line-height: 6.3rem;
  height: 6rem;
  border-radius: 1rem;
  padding: 0 3rem;
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  text-decoration: none;
  line-height: 2rem;
  font-size: 2.1rem;
  font-family: "Spartan", sans-serif;
  font-weight: 800;
  letter-spacing: .05rem;
}

a.button:hover {
  cursor: pointer;
  background-color: #e6243e;
}

a.button svg {
  vertical-align: middle;
  margin-bottom: 0.4rem;
  margin-right: 1rem;
}

/*
██     ██ ██████   █████  ██████  ██████  ███████ ██████  
██     ██ ██   ██ ██   ██ ██   ██ ██   ██ ██      ██   ██ 
██  █  ██ ██████  ███████ ██████  ██████  █████   ██████  
██ ███ ██ ██   ██ ██   ██ ██      ██      ██      ██   ██ 
 ███ ███  ██   ██ ██   ██ ██      ██      ███████ ██   ██ 
*/
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3rem;
}
@media (max-width: 1024px) {
  .wrapper {
    padding: 6rem 3rem;
  }
}
@media (max-width: 600px) {
  .wrapper {
    padding: 7rem 5rem;
  }
}
@media (max-width: 512px) {
  .wrapper {
    padding: 5rem 2rem;
  }
}
.wrapper.half {
  flex-direction: row;
}
.wrapper.white {
  background-color: #ffffff;
  color: #1F3365;
}
.wrapper.white a {
  color: #1F3365;
}
.wrapper.white a:visited {
  color: #1F3365;
}
.wrapper.white .inset {
  background-color: rgba(0, 31, 96, 0.05);
}


.wrapper.red {
  background-color: rgba(188,23,49,1);
  color: #ffffff;
}
.wrapper.red.light {
  background-color: rgba(188,23,49,.7);
  color: #ffffff;
}
.wrapper.red a {
  color: #ffffff;
}
.wrapper.red a:visited {
  color: #ffffff;
}
.wrapper.red .inset {
  background-color: rgba(255, 255, 255, 0.1);
}


.wrapper.blue {
  background-color: rgba(32,52,102,1);;
  color: #ffffff;
}
.wrapper.blue.light {
  background-color: rgba(32,52,102,.7);;
  color: #ffffff;
}
.wrapper.blue a {
  color: #ffffff;
}
.wrapper.blue a:visited {
  color: #ffffff;
}
.wrapper.blue .inset {
  background-color: rgba(255, 255, 255, 0.1);
}


.wrapper.grey {
  background-color: #eeeeee;
  color: #1F3365;
}
.wrapper.grey a {
  color: #1F3365;
}
.wrapper.grey a:visited {
  color: #1F3365;
}
.wrapper.grey .inset {
  background-color: #e1e1e1;
}
.wrapper.black {
  background-color: #000000;
  color: #ffffff;
}
.wrapper.black a {
  color: #ffffff;
}
.wrapper.black a:visited {
  color: #ffffff;
}

/*
 ██████  ██████  ███    ██ ████████  █████  ██ ███    ██ ███████ ██████ 
██      ██    ██ ████   ██    ██    ██   ██ ██ ████   ██ ██      ██   ██
██      ██    ██ ██ ██  ██    ██    ███████ ██ ██ ██  ██ █████   ██████ 
██      ██    ██ ██  ██ ██    ██    ██   ██ ██ ██  ██ ██ ██      ██   ██  
 ██████  ██████  ██   ████    ██    ██   ██ ██ ██   ████ ███████ ██   ██
*/
.container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
  /*
  border: 1px #F00 solid;
  */
  max-width: 102.4rem;
}
@media (max-width: 1024px) {
  .container {
    max-width: 102.4rem;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 102.4rem;
  }
}
@media (max-width: 512px) {
  .container {
    max-width: 102.4rem;
  }
}
.container.full-width {
  max-width: 100%;
  /*
  border: 1px #00F solid;
  */
}
.container.normal-width {
  max-width: 200rem;
  /*
  border: 1px #00F solid;
  */
}
.container.two-column-text {
  column-count: 2;
  column-gap: 4rem;
  display: block;
}
.container.two-column-text p {
  margin-top: 0;
}
.container.two-column-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 960px) {
  .container.two-column-text {
    column-count: 1;
  }
}
.container.two-column {
  flex-direction: row;
}
@media (max-width: 960px) {
  .container.two-column {
    flex-direction: column;
  }
}
.container.two-column .content {
  flex: 1;
  width: 50%;
}
@media (max-width: 960px) {
  .container.two-column .content {
    width: 100%;
  }
}
.container.three-column {
  flex-direction: row;
}
@media (max-width: 960px) {
  .container.three-column {
    flex-direction: column;
  }
}
.container.three-column .content {
  flex: 1;
  width: 33.3333333333%;
  padding: 0 2rem;
}
@media (max-width: 960px) {
  .container.three-column .content {
    width: 100%;
  }
}
.container.four-column {
  flex-flow: row wrap;
}
.container.four-column .content {
  width: 25%;
}
.container.four-column .content img {
  max-width: 100%;
  padding: 0 2rem;
}
@media (max-width: 1200px) {
  .container.four-column .content {
    width: 33%;
  }
}
@media (max-width: 720px) {
  .container.four-column .content {
    width: 50%;
  }
}
.container.six-column {
  flex-flow: row wrap;
}
.container.six-column .content {
  width: 16.6666%;
}
.container.six-column .content p {
  margin-bottom: 0;
}
.container.six-column .content img {
  max-width: 100%;
  padding: 0 1rem;
}
@media (max-width: 1440px) {
  .container.six-column .content {
    width: 20%;
  }
}
@media (max-width: 1024px) {
  .container.six-column .content {
    width: 25%;
  }
}
@media (max-width: 900px) {
  .container.six-column .content {
    width: 33.33333333%;
  }
}
@media (max-width: 600px) {
  .container.six-column .content {
    width: 50%;
  }
}
.container.inset {
  padding: 1rem 3rem;
  margin-top: 6rem;
  margin-bottom: -6rem;
}
@media (max-width: 1024px) {
  .container.inset {
    margin-bottom: -3rem;
  }
}
@media (max-width: 960px) {
  .container.inset {
    margin-top: 2rem;
    margin-bottom: -2rem;
  }
}
@media (max-width: 512px) {
  .container.inset {
    margin-bottom: -3rem;
  }
}
.container.inset p, .container.inset h3 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.container.inset h3 {
  font-size: 2.4rem;
  margin-bottom: 0;
}

.hamburger {
  z-index: 1000;
  position: fixed;
  display: none;
  cursor: pointer;
  width: 7rem;
  height: 6.5rem;
  margin: auto;
  padding: 2rem;
  left: 0;
  top: 0;
}
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  background-color: #666666;
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
}
.hamburger:hover span {
  background-color: #c1162d;
}
.hamburger.active span {
  background-color: white;
}
.hamburger span:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.hamburger span:nth-child(2) {
  margin: 0.7rem 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.hamburger span:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.hamburger.active span:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}
.hamburger.active span:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}
.hamburger.active span:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

/*
██   ██ ███████  █████  ██████  ███████ ██████  
██   ██ ██      ██   ██ ██   ██ ██      ██   ██ 
███████ █████   ███████ ██   ██ █████   ██████  
██   ██ ██      ██   ██ ██   ██ ██      ██   ██ 
██   ██ ███████ ██   ██ ██████  ███████ ██   ██ 
*/

#baseball #header {
  background-color: white;
}

#softball #header {
  background-color: white;
}

#header {
  position: relative;
  top: 0;
  padding: 0;
  background-color: white;
  width: 100%;
  height: 25rem;
  border-bottom: 1px #ccc solid;
  transition: height 0.3s;
}
@media (max-width: 512px) {
  #header {
    height: 20rem;
  }
}


#header img {
  max-width: 100vw;
  height: 24.9rem;
  transition: height 0.3s;
  padding: 2rem;
}
@media (max-width: 512px) {
  #header img {
    height: 20rem;
  }
}

#header img.little-league-logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 150px;
  height:  auto;
  padding: 0;
}

@media (max-width: 1024px) {
  #header img.little-league-logo {
    display: none;
  }
}

#header p.facebook {
  position: absolute;
  right: 3rem;
  top: 1rem;
  font-size: 1.5rem;
  line-height: 2.1rem;
  text-align: right;
  float: right;
  display: block;
  width: 35rem;
  padding-right: 5.6rem;
  height: 4.4rem;
}
@media (max-width: 900px) {
  #header p.facebook {
    top: 0rem;
    right: 1rem;
  }
  #header p.facebook span {
    display: none;
  }
}
#header p.facebook a {
  font-weight: normal;
  color: black;
  text-decoration: none;
}
#header p.facebook a svg {
  display: inline-block;
  float: right;
  position: absolute;
  top: 0;
  right: 0;
}
#header p.facebook a:hover {
  text-decoration: underline;
  pointer: cursor;
}

@media (max-width: 1024px) {
  .scrolled-down #header {
    position: fixed;
    z-index: 998;
    height: 12rem;
    transition: height 0.3s;
  }
  .scrolled-down #header img {
    height: 11.9rem;
    transition: height 0.3s;
  }
  .scrolled-down #masthead_image {
    margin-top: 18rem;
  }
}
/*
███    ███  █████  ███████ ████████ ██   ██ ███████  █████  ██████      ██ ███    ███  █████   ██████  ███████ 
████  ████ ██   ██ ██         ██    ██   ██ ██      ██   ██ ██   ██     ██ ████  ████ ██   ██ ██       ██      
██ ████ ██ ███████ ███████    ██    ███████ █████   ███████ ██   ██     ██ ██ ████ ██ ███████ ██   ███ █████   
██  ██  ██ ██   ██      ██    ██    ██   ██ ██      ██   ██ ██   ██     ██ ██  ██  ██ ██   ██ ██    ██ ██      
██      ██ ██   ██ ███████    ██    ██   ██ ███████ ██   ██ ██████      ██ ██      ██ ██   ██  ██████  ███████ 
*/
#masthead_image {
  display: block;
  min-height: 40rem;
  height: 50vh;
  background: url(/assets/images/header.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*
███    ██  █████  ██    ██ ██  ██████   █████  ████████ ██  ██████  ███    ██ 
████   ██ ██   ██ ██    ██ ██ ██       ██   ██    ██    ██ ██    ██ ████   ██ 
██ ██  ██ ███████ ██    ██ ██ ██   ███ ███████    ██    ██ ██    ██ ██ ██  ██ 
██  ██ ██ ██   ██  ██  ██  ██ ██    ██ ██   ██    ██    ██ ██    ██ ██  ██ ██ 
██   ████ ██   ██   ████   ██  ██████  ██   ██    ██    ██  ██████  ██   ████ 

*/

#baseball #navigation {
  background-color: rgba(32,52,102,1);
}

#softball #navigation {
  background-color: rgba(188,23,49,1);
}

#navigation {
  /* mobile */
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  padding: 4rem 3rem 5rem 6rem;
  font-weight: bold;
  color: #FFFFFF;
  left: -100%;
  transition: left 0.5s;
  overflow: scroll;
  /* desktop */
}
#navigation.active {
  left: 0;
}
#navigation ul {
  padding-left: 0rem;
}
#navigation ul li {
  margin-top: 4rem;
  font-size: 3.2rem;
}
#navigation ul li:hover {
  cursor: pointer;
}
#navigation ul li a {
  text-decoration: none;
}
#navigation ul li ul {
  margin-top: 1rem;
  padding-left: 3rem;
}
#navigation ul li ul li {
  padding-top: 2rem;
  font-size: 2.4rem;
  margin-top: 1rem;
  list-style-type: disc;
}
#navigation ul li ul li ul {
  padding-left: 3rem;
}
@media (max-width: 1024px) {
  #navigation ul li ul li ul.hide {
    display: none;
  }
}
#navigation ul li ul li ul li {
  padding-top: 1rem;
  font-size: 1.8rem;
  border-bottom: none;
}
#navigation li a {
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  #navigation {
    position: none;
    top: auto;
    left: auto;
    padding: 0;
    background-color: white;
    position: relative;
    height: 6rem;
    overflow: visible;
  }
  #navigation ul {
    height: 6rem;
    text-align: center;
    margin: 0;
    width: 100%;

  }
  #navigation ul li {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    line-height: 6rem;
    font-size: 1.5rem;
    margin: 0;
  }
  #navigation ul li:hover {
    opacity: 1;
    color: #000;
  }
  #navigation ul li.dropdown {
    padding: 0 2rem;
  }
  #navigation ul li.dropdown:hover {
    color: #ffffff;
    background-color: rgba(255,255,255,.1);
  }
  #navigation ul li a {
    display: block;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    line-height: 6rem;
    padding: 0 1.8rem;
    font-size: 1.5rem;
  }
  #baseball #navigation ul li a:hover {
    /* opacity: 1; */
    background-color: rgba(255,255,255,.1);
  }

  #softball #navigation ul li a:hover {
    /* opacity: 1; */
    background-color: rgba(255,255,255,.1);
  }

  #navigation ul li a.donate {
    background-color: rgba(255,255,255,.3);
    color: white;
  }

  #baseball #navigation ul li a.donate:hover {
    background-color: rgba(255,255,255,.1);
  }

  #softball #navigation ul li a.donate:hover {
    background-color: rgba(255,255,255,.1);
  }

  #navigation ul li ul {
    visibility: hidden;
    opacity: 0;
    padding: 0;
    margin: 0;
    width: auto;
    min-width: 20rem;
    position: absolute;
    height: auto;
    padding: 1rem 0;
    left: 0;
    text-align: left;
    font-weight: normal;
    border: none;
  }

  #baseball #navigation ul li ul {
    background-color: rgba(32,52,102,.9);
  }
  
  #softball #navigation ul li ul {
    background-color: rgba(188,23,49,.9);
  } 

  #navigation ul li ul li {
    margin: 0;
    display: block;
    height: 3.6rem;
    line-height: 3.6rem;
    font-weight: normal;
    color: #ffffff;
    font-size: 1.5rem;
  }
  #navigation ul li ul li.dropdown:hover {
    background-color: rgba(255,255,255,.2);
  }
  #navigation ul li ul li.dropdown::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 0.5rem solid transparent;
    border-right: 0.5rem solid transparent;
    border-top: 0.5rem solid #ffffff;
    position: absolute;
    right: 1.2rem;
    top: 1.4rem;
    transform: translateY(-50%);
    transform: rotate(-90deg);
  }
  #navigation ul li ul li ul {
    top: -1rem;
    left: 100%;
    padding-left: 0;
  }
  #navigation ul li ul li ul li {
    padding-top: 0;
  }
  #navigation ul li ul li ul li a {
    font-size: 1.5rem;
    line-height: 3.6rem;
    height: 3.6rem;
    color: #ffffff;
    font-weight: normal;
  }
  #navigation ul li ul li ul li a:hover {
    color: #ffffff;
    background-color: rgba(255,255,255,.2);
  }
  #navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
  }
}

/*
██     ██  █████  ██████  ███    ██ ██ ███    ██  ██████  
██     ██ ██   ██ ██   ██ ████   ██ ██ ████   ██ ██       
██  █  ██ ███████ ██████  ██ ██  ██ ██ ██ ██  ██ ██   ███ 
██ ███ ██ ██   ██ ██   ██ ██  ██ ██ ██ ██  ██ ██ ██    ██ 
 ███ ███  ██   ██ ██   ██ ██   ████ ██ ██   ████  ██████  
*/
#warning {
  padding: 0.5rem 3rem;
}
#warning p, #warning strong {
  font-size: 1.5rem;
  line-height: 2.3rem;
  letter-spacing: normal;
}

/*
 █████  ██████   ██████  ██    ██ ████████ 
██   ██ ██   ██ ██    ██ ██    ██    ██    
███████ ██████  ██    ██ ██    ██    ██    
██   ██ ██   ██ ██    ██ ██    ██    ██    
██   ██ ██████   ██████   ██████     ██    
*/
#about .container a:hover {
  opacity: 70%;
}

/*
██████  ███████  ██████  ██ ███████ ████████ ███████ ██████  
██   ██ ██      ██       ██ ██         ██    ██      ██   ██ 
██████  █████   ██   ███ ██ ███████    ██    █████   ██████  
██   ██ ██      ██    ██ ██      ██    ██    ██      ██   ██ 
██   ██ ███████  ██████  ██ ███████    ██    ███████ ██   ██ 
*/
#in-person-registration .container h2 {
  margin-bottom: 0rem;
}
#in-person-registration .container h3 {
  margin-bottom: 4rem;
}
#in-person-registration .container .normal-width {
  margin-bottom: 2rem;
}

#register-volunteer .container .content {
  padding: 0 10rem;
}
#register-volunteer .container .content:first-child {
  border-right: 1px rgba(255, 255, 255, 0.3) solid;
}
@media (max-width: 960px) {
  #register-volunteer .container .content {
    padding: 0;
  }
  #register-volunteer .container .content:first-child {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
    border-right: none;
  }
}

#register ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 6rem;
}
#register ol li {
  counter-increment: my-awesome-counter;
  position: relative;
  text-align: left;
  margin-bottom: 3rem;
}
#register ol li a:hover {
  opacity: 70%;
}
#register ol li::before {
  content: counter(my-awesome-counter) ". ";
  font-size: 3.7rem;
  font-weight: 800;
  position: absolute;
  left: -6rem;
  line-height: 3.2rem;
  width: 3.2rem;
  height: 3.2rem;
  top: 0;
}

/*
██    ██  ██████  ██      ██    ██ ███    ██ ████████ ███████ ███████ ██████  
██    ██ ██    ██ ██      ██    ██ ████   ██    ██    ██      ██      ██   ██ 
██    ██ ██    ██ ██      ██    ██ ██ ██  ██    ██    █████   █████   ██████  
 ██  ██  ██    ██ ██      ██    ██ ██  ██ ██    ██    ██      ██      ██   ██ 
  ████    ██████  ███████  ██████  ██   ████    ██    ███████ ███████ ██   ██ 

The volunteer form is done entirely in Wufoo

*/
/*
██       ██████   ██████  █████  ████████ ██  ██████  ███    ██ ███████ 
██      ██    ██ ██      ██   ██    ██    ██ ██    ██ ████   ██ ██      
██      ██    ██ ██      ███████    ██    ██ ██    ██ ██ ██  ██ ███████ 
██      ██    ██ ██      ██   ██    ██    ██ ██    ██ ██  ██ ██      ██ 
███████  ██████   ██████ ██   ██    ██    ██  ██████  ██   ████ ███████ 
*/
#locations .content {
  padding: 0 2rem;
}
@media (max-width: 960px) {
  #locations .content {
    padding: 0;
  }
  #locations .content.first {
    margin-bottom: 3rem;
  }
}
#locations .content p {
  margin-bottom: 5rem;
}
@media (max-width: 960px) {
  #locations .content p {
    margin-bottom: 2rem;
  }
}
#locations .content iframe {
  border: none;
  width: 100%;
  height: 50rem;
}
@media (max-width: 960px) {
  #locations .content iframe {
    height: 40rem;
  }
}

/*
███████  ██████ ██   ██ ███████ ██████  ██    ██ ██      ███████ 
██      ██      ██   ██ ██      ██   ██ ██    ██ ██      ██      
███████ ██      ███████ █████   ██   ██ ██    ██ ██      █████   
     ██ ██      ██   ██ ██      ██   ██ ██    ██ ██      ██      
███████  ██████ ██   ██ ███████ ██████   ██████  ███████ ███████ 
*/
#schedule a.button {
  background-color: #c1162d;
  color: white;
  max-width: 30rem;
  line-height: 6.3rem;
  height: 6rem;
  border-radius: 1rem;
  display: block;
  margin: 0 auto;
}
#schedule a.button:hover {
  cursor: pointer;
  background-color: #e6243e;
}
#schedule a.button svg {
  vertical-align: middle;
  margin-bottom: 0.4rem;
  margin-right: 1rem;
}

/*
███████  █████   ██████  ███████ 
██      ██   ██ ██    ██ ██      
█████   ███████ ██    ██ ███████ 
██      ██   ██ ██ ▄▄ ██      ██ 
██      ██   ██  ██████  ███████ 
*/
#faqs dl {
  border-bottom: 1px #ccc solid;
  padding-bottom: 1rem;
  text-align: left;
}
#faqs dl dt {
  border-top: 1px #ccc solid;
  padding: 1rem 0 1rem 3rem;
  margin: 1rem 0 0 0;
}
#faqs dl dt a {
  font-weight: bold;
  text-decoration: none;
}
#faqs dl dt:before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 3px #1F3365 solid;
  border-right: 3px #1F3365 solid;
  left: -3rem;
  top: 1.6rem;
  position: relative;
  transform: rotate(45deg);
}
#faqs dl dt.active:before {
  transform: rotate(135deg);
}
#faqs dl dd {
  padding: 0 0 1rem 3rem;
  margin: 0;
}
#faqs dl dd p {
  margin-top: 0;
  margin-bottom: 1rem;
}
#faqs dl dd p a:hover {
  opacity: 70%;
}

/*
 ██████  ██    ██ ██████      ██████   ██████   █████  ██████  ██████  
██    ██ ██    ██ ██   ██     ██   ██ ██    ██ ██   ██ ██   ██ ██   ██ 
██    ██ ██    ██ ██████      ██████  ██    ██ ███████ ██████  ██   ██ 
██    ██ ██    ██ ██   ██     ██   ██ ██    ██ ██   ██ ██   ██ ██   ██ 
 ██████   ██████  ██   ██     ██████   ██████  ██   ██ ██   ██ ██████  
*/
#our-board a:hover {
  opacity: 70%;
}

/*
 ██████  ██████  ███    ██ ████████  █████   ██████ ████████     ██    ██ ███████ 
██      ██    ██ ████   ██    ██    ██   ██ ██         ██        ██    ██ ██      
██      ██    ██ ██ ██  ██    ██    ███████ ██         ██        ██    ██ ███████ 
██      ██    ██ ██  ██ ██    ██    ██   ██ ██         ██        ██    ██      ██ 
 ██████  ██████  ██   ████    ██    ██   ██  ██████    ██         ██████  ███████ 
*/
#contact-us a:hover {
  opacity: 70%;
}

/*
███████ ██████   ██████  ███    ██ ███████  ██████  ██████  ███████ 
██      ██   ██ ██    ██ ████   ██ ██      ██    ██ ██   ██ ██      
███████ ██████  ██    ██ ██ ██  ██ ███████ ██    ██ ██████  ███████ 
     ██ ██      ██    ██ ██  ██ ██      ██ ██    ██ ██   ██      ██ 
███████ ██       ██████  ██   ████ ███████  ██████  ██   ██ ███████ 
*/
/*
███████  ██████   ██████  ████████ ███████ ██████  
██      ██    ██ ██    ██    ██    ██      ██   ██ 
█████   ██    ██ ██    ██    ██    █████   ██████  
██      ██    ██ ██    ██    ██    ██      ██   ██ 
██       ██████   ██████     ██    ███████ ██   ██ 
*/
#footer {
  padding: 2rem 3rem;
}
#footer .container {
  display: flex;
  flex-direction: row;
}

#footer .container .links {
  flex: 1 0 70%;
  justify-content: center;
  align-self: center;}

#footer .container .links p {
  text-align: left;
  font-size: 1.5rem;
  line-height: 2.4rem;
  margin: 0;
}
#footer .container .links ul {
  text-align: left;
  padding:  0;
  margin-bottom:  0;
}
#footer .container .links ul li {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 2.4rem;
  margin: 0 2rem 0 0;
}

#footer .container .links ul li a {
  font-weight: bold;
}
#footer .container .links ul li a:hover {
  opacity: 70%;
}

#footer .container .logo {
  flex: 2 0 30%;
  text-align: right;
}

@media (max-width: 768px) {
  #footer .container {
    flex-direction: column;
  }
  #footer .container .links p,
  #footer .container .links ul {
    text-align: center;
  }
  #footer .container .logo {
    margin-top: 2rem;
    text-align: center;
  }
}

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes inM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes outM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0.9rem) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0.9rem) rotate(135deg);
  }
}
@keyframes inT {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(0.9rem) rotate(0deg);
  }
  100% {
    transform: translateY(0.9rem) rotate(135deg);
  }
}
@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0.9rem) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0.9rem) rotate(135deg);
  }
}
@keyframes outT {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(0.9rem) rotate(0deg);
  }
  100% {
    transform: translateY(0.9rem) rotate(135deg);
  }
}
@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-0.9rem) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-0.9rem) rotate(135deg);
  }
}
@keyframes inBtm {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-0.9rem) rotate(0deg);
  }
  100% {
    transform: translateY(-0.9rem) rotate(135deg);
  }
}
@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-0.9rem) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-0.9rem) rotate(135deg);
  }
}
@keyframes outBtm {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-0.9rem) rotate(0deg);
  }
  100% {
    transform: translateY(-0.9rem) rotate(135deg);
  }
}

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