* {
  margin:0px;
  padding:0px;
}

body {

  font-family: 'Roboto', sans-serif;
}

.show-menu {
	text-decoration: none;
	color: #fff;
	background: #58585a;
	text-align: center;
	padding: 10px 0;
	display: none;
	width:100%;
	margin-bottom:1px;
}

input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

p, h1 {
  margin-bottom: 20px;
}

a {
  color:#f2933c;
}

a:hover {
  text-decoration: none;
}

td, th {
  padding:5px;
}

table {
  margin:0 auto;
}

@media (min-width: 1100px) {
  .container {
    width:1100px;
    margin:0 auto;
  }

  #header {
    width:100%;
    background: #fcfcfc;
    height:60px;
    padding:20px 0px;
  }

  #header-left {
    float:left;
    width:77px;
    height:60px;
  }

  #header-right {
    float:right;
    text-align: right;
    margin-top:20px;
  }

  #header-right a {
    color:#134b60;
    text-decoration: none;
    margin-right:40px;
    font-size: 11pt;
    margin-top:-10px;
  }

  #header-right a:hover {
    color: #f2933c;
  }
  #yearly-price {
    float: right;
    padding-top: 20px;
    width: 400px;
    height: 60px;
    text-align: center;
    margin: 0;
    font-weight: bold;
    font-size: 16pt;
    margin-bottom: 30px;
  }
  #monthly-price {
    float: right;
    padding-top: 20px;
    width: 400px;
    height: 30px;
    text-align: center;
    margin: 0;
    font-weight: bold;
    font-size: 16pt;
    margin-bottom: 50px;
  }
  #range-legend {
    width: calc(100% - 10px);
    margin-left: 10px;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
  }
  #range-legend p {
  }
  #head-coach-select {
    width: 100%;
    margin-bottom: 45px;
  }
  
  input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
  }

  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
  }

  input[type=range]:focus {
    outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
  }

  input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;

    /* Hides the slider so custom styles can be added */
    background: transparent; 
    border-color: transparent;
    color: transparent;
  }

  input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #000000;
  height: 36px;
  width: 30px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  margin-top: -14px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
  }

  /* All the same stuff for Firefox */
  input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 36px;
    width: 30px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
  }

  /* All the same stuff for IE */
  input[type=range]::-ms-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 36px;
    width: 30px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
  }

  input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 15px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #134b60;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
  }

  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #134b60;
  }

  input[type=range]::-moz-range-track {
    width: 100%;
    height: 15px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    background: #134b60;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
  }

  input[type=range]::-ms-track {
    width: 100%;
    height: 15px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
  }
  input[type=range]::-ms-fill-lower {
    background: #134b60;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  }
  input[type=range]:focus::-ms-fill-lower {
    background: #134b60;
  }
  input[type=range]::-ms-fill-upper {
    background: #134b60;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  }
  input[type=range]:focus::-ms-fill-upper {
    background: #134b60;
  }
  #head-coach-indicator {
    margin-top: 30px;
    max-width: 700px;
  }
  #higher-assistant-select {
    float: left;
    width: 200px;
    height: 100px;
    background: #ccc;
    cursor: pointer;
    padding-top: 50px;
    text-align: center;
    color: black;
    font-weight: bold;
    margin: 20px 0;
    font-size: 28pt;
  }
  #assistant-divider {
    float: left;
    width: 1px;
    height: 150px;
    background-color: #333;
    margin: 20px 0;
  }
  #lower-assistant-select {
    float: left;
    width: 200px;
    height: 100px;
    background: #ccc;
    cursor: pointer;
    padding-top: 50px;
    text-align:center;
    color: black;
    font-weight: bold;
    margin: 20px 0;
    font-size: 28pt;
  }
  .quote-large{
    font-size: 24pt;
    font-weight: bolder;
  }
  .testimonials-container {
    display: flex;
    flex-direction: column;
    width: 700px;
    margin: 0 200px;
    text-align: center;
  }
  .testimonials-container p {
    text-align: center;
  }
  .testimonials-container p i {
    font-size: 17pt;
    font-weight: bold;
    color: #444;
  }
  .testimonial-info {

    font-size: 10.5pt;
    color: #555;
  }
  .school-flex {
    width: 500px;
    margin: 0 100px;
    display: flex;
    flex-direction: row;
    margin-top: -10px;
    justify-content: space-around;
    margin-bottom: 80px;
  }
  .school-flex img {
    height: 100px;
    max-width: 150px;
  }
  .school-flex div {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
  }
  .signup {
    border-radius: 5px;
    display: block;
    background: #f2933c;
    color:white !important;
    padding:10px 40px;
    width:50px;
    float:right;
    text-align: center;
  }
  .register {
    border-radius: 5px;
    display: block;
    background: #f2933c;
    color:white !important;
    padding:10px 40px;
    min-width:50px;
    float:right;
    text-align: center;
    margin-right: 125px;
    margin-bottom: 50px;
    text-decoration: none;
  }

  .demo {
    border-radius: 5px;
    display: block;
    background: #f2933c;
    color:white !important;
    padding:10px 40px;
    text-align: center;
    width:150px;
    margin:0 auto;
    text-decoration: none;
  }

  #slider {
    width:100%;
    height:497px;
    background:url('../images/sliderbg.jpg') top center no-repeat;
  }

  #slider-left {
    float:left;
    width:680px;
    margin-top:180px;
    height:200px;
    color:white;
  }

  #slider-left h1 {
    font-weight: 900;
    font-size:48pt;
    margin-bottom: 0px;
  }

  #slider-left h3 {
    font-weight:500;
    font-size:32pt;
  }

  #slider-right {
    float:right;
    width:360px;
    height:469px;
    margin-top:28px;
  }

  #testimonial {
    width:100%;
    height:40px;
    padding-top:10px;
    background: #134b60;
    color:white;
  }

  #testimonial-left {
    float:left;
    width:600px;
    font-size:18pt;
  }

  #testimonial-right {
    float:right;
    text-align: right;
    width:400px;
    font-style: italic;
    padding-top:5px;
  }

  #bodyc {
    color:#3a3a3a;
    width:100%;
    padding:40px 0px;
    background: #fcfcfc;
  }

  #body-left {
    float:left; 
    width:580px;
    margin-right:20px;
  }

  #body-left h1 {
    font-size:18pt;
    margin-bottom: 20px;
  }

  #body-right {
    width:500px;
    float:right;
  }

  iframe {
    width:500px;
    height:280px;
    margin:40px auto;
    display: block;
  }

  #callouts {
    width:100%;
    background: #e7e7e7;
    padding:40px 0px;
  }

  .callout {
    float:left;
    width:315px;
    margin-right:51px;
    text-align: center;
    font-size:12pt;
  }

  .callout i {
    font-size: 32pt;
    margin-bottom: 20px;
    color:#f2933c;
  }

  .callout h3 {
    margin-bottom: 20px;
    font-size:18pt;
    font-weight: 900;
  }

  #footer {
    width:100%;
    background: #134b60;
    padding:40px 0px;
    color:white;
    font-size: 11pt;
  }

  #footer a {
    color:white;
  }

  #footer a:hover {
    text-decoration: none;
  }

  #footer-left {
    float:left;
    width:500px;
  }

  #footer-right {
    float:right;
    width:200px;
    text-align: right;
  }

}



@media screen and (max-width : 1099px){
  .container {
    width:100%;
    margin:0 auto;
  }

  .container img {
    width:100%;
    height: auto;
  }

  #header {
    width:100%;
    background: #fcfcfc;
    height:150px;
    padding:20px 0px;
  }

  #header-left {
    width:77px;
    height:60px;
    margin:0 auto 20px auto;
  }

  #header-right {
    text-align: center;
    margin-top:20px;
  }

  #header-right a {
    color:#134b60;
    text-decoration: none;
    margin:0px 15px 20px 15px;
    font-size: 11pt;
  }

  #header-right a:hover {
    color: #f2933c;
  }

  .signup {
    border-radius: 5px;
    display: inline-block;
    background: #f2933c;
    color:white !important;
    padding:10px 20px;
    width:50px;
    text-align: center;
    margin: 20px 0px 20px 0px !important;
  }
  .register {
    border-radius: 5px;
    background: #f2933c;
    color:white !important;
    padding:10px 20px;
    width:50px;
    text-align: center;
    margin: 20px calc(50% - 47.25px) 40px !important;
    text-decoration: none;
  }
  .bottom-spacer {
    width: 100%;
    height: 40px;
  }

  #slider {
    width:100%;
    height:497px;
    background:url('../images/sliderbg.jpg') top center no-repeat;
    overflow: hidden;
  }

  #slider-left {
    padding-top:30px;
    color:white;
  }

  #slider-left h1 {
    font-weight: 900;
    font-size:28pt;
    text-align: center;
    margin-bottom: 0px;
  }

  #slider-left h3 {
    font-weight:500;
    font-size:20pt;
    text-align: center;
  }

  #slider-right {
    text-align: center;
    height:469px;
    margin-top:28px;
  }

  #yearly-price {
    float: right;
    padding-top: 20px;
    width: 400px;
    height: 60px;
    text-align: center;
    margin: 0;
    font-weight: bold;
    font-size: 16pt;
    margin-bottom: 30px;
  }
  #monthly-price {
    float: right;
    padding-top: 20px;
    width: 400px;
    height: 30px;
    text-align: center;
    margin: 0;
    font-weight: bold;
    font-size: 16pt;
    margin-bottom: 50px;
  }
  #range-legend {
    width: calc(100% - 10px);
    margin-left: 10px;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
  }
  #range-legend p {
  }
  #head-coach-select {
    width: 100%;
    margin-bottom: 45px;
  }
  
  input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
  }

  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
  }

  input[type=range]:focus {
    outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
  }

  input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;

    /* Hides the slider so custom styles can be added */
    background: transparent; 
    border-color: transparent;
    color: transparent;
  }

  input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #000000;
  height: 36px;
  width: 30px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  margin-top: -14px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
  }

  /* All the same stuff for Firefox */
  input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 36px;
    width: 30px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
  }

  /* All the same stuff for IE */
  input[type=range]::-ms-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 36px;
    width: 30px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
  }

  input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 25px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #134b60;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
  }

  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #134b60;
  }

  input[type=range]::-moz-range-track {
    width: 100%;
    height: 25px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    background: #134b60;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
  }

  input[type=range]::-ms-track {
    width: 100%;
    height: 25px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
  }
  input[type=range]::-ms-fill-lower {
    background: #134b60;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  }
  input[type=range]:focus::-ms-fill-lower {
    background: #134b60;
  }
  input[type=range]::-ms-fill-upper {
    background: #134b60;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  }
  input[type=range]:focus::-ms-fill-upper {
    background: #134b60;
  }
  #head-coach-indicator {
    margin-top: 30px;
    max-width: 700px;
  }
  #higher-assistant-select {
    float: left;
    width: calc(50% - 1px);
    height: 40vw;
    max-width: 250px;
    max-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ccc;
    cursor: pointer;
    color: black;
    font-weight: bold;
    margin: 20px 0;
    font-size: 28pt;
  }
  #assistant-divider {
    float: left;
    width: 2px;
    height: 40vw;
    max-height: calc(200px);
    background-color: #333;
    margin: 20px 0;
  }
  #lower-assistant-select {
    float: left;
    width: calc(50% - 1px);
    height: 40vw;
    max-width: 250px;
    max-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ccc;
    cursor: pointer;
    color: black;
    font-weight: bold;
    margin: 20px 0;
    font-size: 28pt;
  }
  .school-flex {
    min-height: 100px;
  }
  .school-flex div{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 100px;
    margin-bottom: 10%;
  }

  

  .school-flex img {
    max-height: 100px;
    max-width: 150px;
    height: auto;
    width: auto;
    float: right;

    margin-right: 5%;
    margin-left: 5%;

  }
  .testimonials-container {
    max-width: 500px;
    margin: 0 auto;
  }
  .testimonials-container p {
    clear: both;
  }
  .testimonial-info {
    clear: none !important;
    font-size: 10.5pt;
  }
  .testimonial-info i {
    font-size: 15pt;
    font-weight: bold;
    color: #444;
  }
  #testimonial {
    width:90%;
    padding:20px 5%;
    padding-top:10px;
    background: #134b60;
    color:white;
    text-align: center;
  }

  #testimonial-left {
    font-size:14pt;
    margin-bottom: 10px;
  }

  #testimonial-right {
    font-style: italic;
    padding-top:5px;
  }

  #bodyc {
    color:#3a3a3a;
    width:90%;
    padding:40px 5%;
    background: #fcfcfc;
  }

  #body-left {
    margin-bottom: :20px;
  }

  #body-left h1 {
    font-size:18pt;
    margin-bottom: 20px;
  }

  #body-right {
    margin-bottom: 20px;
  }

  iframe {
    width:100%;
    min-height:280px;
    margin:40px auto;
  }

  #callouts {
    width:90%;
    background: #e7e7e7;
    padding:40px 5%;
  }

  .callout {
    margin:0px auto 20px auto;
    text-align: center;
    font-size:12pt;
    max-width: 300px;
  }

  .callout i {
    font-size: 32pt;
    margin-bottom: 20px;
    color:#f2933c;
  }

  .callout h3 {
    margin-bottom: 20px;
    font-size:18pt;
    font-weight: 900;
  }

  .demo {
    border-radius: 5px;
    display: block;
    background: #f2933c;
    color:white !important;
    padding:10px 40px;
    text-align: center;
    width:150px;
    margin:0 auto;
    text-decoration: none;
  }

  #footer {
    width:100%;
    background: #134b60;
    padding:40px 0px;
    color:white;
    font-size: 11pt;
    text-align: center;
  }

  #footer a {
    color:white;
  }

  #footer a:hover {
    text-decoration: none;
  }

  #footer-left {
    margin-bottom: 20px;
  }

  #footer-right {
    text-align: center;
  }

  #footer img {
    width:30%;
    height: auto;
  }
}