body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  
}

.lato-100 {
	font-family: 'Lato', sans-serif;
	font-weight: 100;
}

.lato-300 {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
}

.lato-700 {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
}

.lato-900 {
	font-family: 'Lato', sans-serif;
	font-weight: 900;
}

.lato-300-i {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-style: italic;
}

/* jumbotron image */
.jumbotron-front-page-bottom {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../media/mural.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
}

/* jumbotron image */
.jumbotron-front-page-bottom-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../media/mural.jpg") center no-repeat;
 background-size: cover;
 height: 600px;
}

/* navigation css */
.overlay-navigation {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content-navigation {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay-navigation a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay-navigation a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay-navigation .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay-navigation a {font-size: 20px}
  .overlay-navigation .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

  /* changes the margin at the top of the carousel */
    .margin-lines {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-right: auto;
      margin-left: auto;
      margin-top: 60px;
      background-color:white;
      border-top: 6px solid #ca192d;
      border-bottom: 6px solid #ca192d;
    }

  /* changes the margin at the top of the carousel */
    .margin-lines-top-bottom {
      border-top: 6px solid #ca192d;
      border-bottom: 6px solid #ca192d;
    }

 /* changes the margin at the top of the carousel */
    .margin-lines-bottom {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-right: auto;
      margin-left: auto;
      margin-top: 60px;
      background-color:white;
      border-bottom: 6px solid #ca192d;
    }

 /* changes the margin at the top of the carousel */
    .margin-red-lines-bottom {
      border-bottom: 6px solid #ca192d;
    }

 /* changes the margin at the top of the carousel */
    .margin-lines-top {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-right: auto;
      margin-left: auto;
      margin-top: 60px;
      background-color:white;
      border-top: 6px solid #ca192d;
    }

.header {
  text-align: center;
  padding: 32px;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column-photo-column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column-photo-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column-photo-column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column-photo-column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

/* fonts */
div p.modish {
	font-family: modish, sans-serif;
	font-weight: 400;
	font-style: normal;
}

div p.modish-shadow {
	font-family: modish, sans-serif;
	font-weight: 400;
	font-style: normal;
	text-shadow: 2px 2px #000;
}

/* button on image */
div .container-button p {
	
}

/* Container needed to position the button. Adjust the width as needed */
.container-button {
  position: relative;
  width: 100%;
}

/* Make the image responsive */
.container-button img {
  width: 100%;
  height: auto;
}

/* Style the button and place it in the middle of the container/image */
.container-button .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #000;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.container-button .btn:hover {
  background-color: red;
}


/* text on an image */
.container-text {
  position: relative;
  text-align: center;
  color: white;
}

.bottom-left-text {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left-text {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right-text {
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right-text {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* gradient on an image */
.img-text {
   width: auto;
   mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2049194677871149) 0%, rgba(0,0,0,0.2049194677871149) 100%);
   -webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0.7035189075630253) 0%, rgba(0,0,0,0.7035189075630253) 100%);
}

.margin-top-navbar{
	margin-top: -32px;
}

.margin-top{
	margin-top: -1px;
}


.padding-bottom {
	padding-bottom: -20px;
	
}

.padding-top-mobile-text {
	padding-top: 340px;
	
}

/* create the lines for navigation */
.box {
	border-width: thin;
	border-bottom-style: solid;
	border-top-style: solid;
}

/* create the lines for navigation */
.box-right {
	border-right-style: solid;
	border-width: thin;
}

/* Countdown for the front of the page */
#world-premiere .heading{
    text-align:center;
    font-size: 1em;
}

#world-premiere .my-countdown .countdown-row {
    display:block;
    text-align:center;
}

#world-premiere .my-countdown .countdown-section {
    display:inline-block;
    width: 150px;
}

#world-premiere .my-countdown .countdown-amount {
    display:block;
    color:#000;
    font-size:5em;
    line-height:55px;
}

#world-premiere .my-countdown .countdown-period {
    display:block;
    color:#000;
    font-size:0.8em;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-top:15px;
	margin-bottom:20px;
}


@media screen and (max-width: 630px) {

#world-premiere{
    font-size: 9px;
    min-height:60px;
}

#world-premiere h3{
    line-height:20px;
}

#world-premiere .my-countdown .countdown-section {
    width: 70px;
}
}
/* End of Countdown */

/* jumbotron 2023 cesar-chavez */
.jumbotron-cesar-chavez-2023-01 {
 background: url("../23/media/cesar-chavez/major-about-to-throw-the-ball.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 cesar-chavez */
.jumbotron-cesar-chavez-2023-02 {
 background: url("../23/media/cesar-chavez/catch-in-endzone.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 ccesar-chavez */
.jumbotron-cesar-chavez-2023-03 {
 background: url("../23/media/cesar-chavez/turning-and-running.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 cesar-chavez */
.jumbotron-cesar-chavez-2023-04 {
 background: url("../23/media/cesar-chavez/center-set-for-play.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 cesar-chavez */
.jumbotron-cesar-chavez-2023-05 {
 background: url("../23/media/cesar-chavez/coach-ashak-firing-up-the-team.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 mesa */
.jumbotron-mesa-2023-01 {
 background: url("../23/media/mesa/looking-for-signals.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 mesa */
.jumbotron-mesa-2023-02 {
 background: url("../23/media/mesa/looking-for-space-to-run.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 mesa */
.jumbotron-mesa-2023-03 {
 background: url("../23/media/mesa/interception.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 mesa */
.jumbotron-mesa-2023-04 {
 background: url("../23/media/mesa/focused-on-coach.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 mesa */
.jumbotron-mesa-2023-05 {
 background: url("../23/media/mesa/celebration-by-desert-ridge.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron mtn-view-2024 */
.jumbotron-mtn-view-2024-01 {
 background: url("../24/media/mtn-view/teammates-talking-on-sidelines-jumbo.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron mtn-view 2024 */
.jumbotron-mtn-view-2024-02 {
 background: url("../24/media/mtn-view/eyeing-in-the-huddle-jumbo.webp") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron mtn-view-2024 */
.jumbotron-mtn-view-2024-03 {
 background: url("../24/media/mtn-view/tackling-the-ball-carrier-jumbo.webp") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron mtn-view-2024 */
.jumbotron-mtn-view-2024-04 {
 background: url("../24/media/mtn-view/carrying-the-ball-up-the-field-jumbo.webp") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron mtn-view-2024 */
.jumbotron-mtn-view-2024-05 {
 background: url("../24/media/mtn-view/cheering-on-the-team-jumbo.webp") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron williams-field-2024 */
.jumbotron-williams-field-2024-01 {
 background: url("../24/media/williams-field/coach-johns-jumbo.webp") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron williams-field-2024 */
.jumbotron-williams-field-2024-02 {
 background: url("../24/media/williams-field/jackson-focused-jumbo.webp") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron williams-field-2024 */
.jumbotron-williams-field-2024-03 {
 background: url("../24/media/williams-field/defensive-lineman-jumbo.webp") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron williams-field-2024 */
.jumbotron-williams-field-2024-04 {
 background: url("../24/media/williams-field/QB-throwing-the-ball-jumbo.webp") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron williams-field-2024 */
.jumbotron-williams-field-2024-05 {
 background: url("../24/media/williams-field/field-goal-attempt-jumbo.webp") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 westwood */
.jumbotron-westwood-2023-01 {
 background: url("../23/media/westwood/hayes-with-the-catch.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 westwood */
.jumbotron-westwood-2023-02 {
 background: url("../23/media/westwood/offensive-lineman-set-for-the-play.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 westwood */
.jumbotron-westwood-2023-03 {
 background: url("../23/media/westwood/austin-about-to-make-the-catch.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 westwood */
.jumbotron-westwood-2023-04 {
 background: url("../23/media/westwood/rogers-listening-to-coach.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 westwood */
.jumbotron-westwood-2023-05 {
 background: url("../23/media/westwood/celebrating-the-touchdown.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 cienega */
.jumbotron-cienega-2023-01 {
 background: url("../23/media/cienega/desert-ridge-announced.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 cienega */
.jumbotron-cienega-2023-02 {
 background: url("../23/media/cienega/jaguars-making-the-tackle.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 cienega */
.jumbotron-cienega-2023-03 {
 background: url("../23/media/cienega/major-jumping-over-a-tackle.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 cienega */
.jumbotron-cienega-2023-04 {
 background: url("../23/media/cienega/touchdown-celebration.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron 2023 cienega */
.jumbotron-cienega-2023-05 {
 background: url("../23/media/cienega/post-game-celebration.jpg") fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top:60px;
}

/* jumbotron chandler */
.jumbotron-2010-chandler {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../schedules/media/10/chandler-post-game.jpg") center no-repeat;
 background-size: cover;
 height: 700px;
 padding-top: 200px;
}

/* jumbotron chandler mobile */
.jumbotron-2010-chandler-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../schedules/media/10/chandler-post-game.jpg") center no-repeat;
 background-size: cover;
 height: 600px;
 padding-top: 120px;
}

/* jumbotron hamilton */
.jumbotron-2010-football {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../schedules/media/10/drhs-vs-hamilton-championship.jpg") center no-repeat;
 background-size: cover;
 height: 700px;
 padding-top: 200px;
}


/* jumbotron hamilton mobile */
.jumbotron-2010-football-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../schedules/media/10/drhs-vs-hamilton-championship.jpg") center no-repeat;
 background-size: cover;
 height: 600px;
 padding-top: 120px;
}

/* jumbotron gilbert */
.jumbotron-2010-gilbert {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../schedules/media/10/gilbert-final-score.jpg") center no-repeat;
 background-size: cover;
 height: 700px;
 padding-top: 200px;
}


/* jumbotron gilbert mobile */
.jumbotron-2010-gilbert-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../schedules/media/10/gilbert-final-score.jpg") center no-repeat;
 background-size: cover;
 height: 600px;
 padding-top: 120px;
}

/* jumbotron desert vista */
.jumbotron-2010-desert-vista {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../schedules/media/10/desert-vista-joey-counts.jpg") center no-repeat;
 background-size: cover;
 height: 700px;
 padding-top: 200px;
}


/* jumbotron zoo trip mobile */
.jumbotron-2010-desert-vista-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../schedules/media/10/desert-vista-joey-counts.jpg") center no-repeat;
 background-size: cover;
 height: 600px;
 padding-top: 120px;
}

/* jumbotron highland */
.jumbotron-nau-challenge-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/nau-football-challenge/lumberjack-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}

/* jumbotron highland mobile */
.jumbotron-nau-challenge-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/nau-football-challenge/lumberjack-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron practice august 10 */
.jumbotron-august-10-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/august-10/major-calling-plays-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}

/* jumbotron practice august 10 mobile */
.jumbotron-august-10-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/august-10/major-calling-plays-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron 2024-schedule */
.jumbotron-2024-schedule {
background: rgb(0,0,0);
background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 100%), url("../24/media/2024-poster-jumbo.webp") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}

/* jumbotron 2024-schedule mobile */
.jumbotron-2024-schedule-mobile {
background: rgb(0,0,0);
background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 100%), url("../24/media/2024-poster-mobile.webp") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-all-region-2023 {
background: rgb(0,0,0);
background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 100%), url("../23/media/logan-rogers-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}

/* jumbotron highland mobile */
.jumbotron-all-region-2023-mobile {
background: rgb(0,0,0);
background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 100%), url("../23/media/logan-rogers-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-asu-challenge-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/asu-challenge/offenseive-huddle-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}

/* jumbotron highland mobile */
.jumbotron-asu-challenge-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/asu-challenge/offenseive-huddle-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-spring-game-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/spring-game/tip-ball-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}

/* jumbotron highland mobile */
.jumbotron-spring-game-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/spring-game/tip-ball-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-roy-lopez-camp-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/lopez-camp/celebration-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}

/* jumbotron highland mobile */
.jumbotron-roy-lopez-camp-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/lopez-camp/celebration-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-all-region-2022 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../22/media/jumbo-jayden-cathey.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}

/* jumbotron highland mobile */
.jumbotron-all-region-2022-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../22/media/jumbo-jayden-cathey-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron hamilton */
.jumbotron-hamilton-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/cienega/post-game-celebration-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}


/* jumbotron hamilton mobile */
.jumbotron-hamilton-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/cienega/post-game-celebration-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-red-mountain-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/cienega/desert-ridge-huddle-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}


/* jumbotron highland mobile */
.jumbotron-red-mountain-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/cienega/desert-ridge-huddle-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-williams-field-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/lineman-desert-ridge-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}


/* jumbotron highland mobile */
.jumbotron-williams-field-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/lineman-desert-ridge-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-major-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/major-running-the-ball-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}


/* jumbotron highland mobile */
.jumbotron-major-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/major-running-the-ball-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron tolleson */
.jumbotron-tolleson-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/cesar-chavez/desert-ridge-breaking-huddle-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}


/* jumbotron tolleson mobile */
.jumbotron-tolleson-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/cesar-chavez/desert-ridge-breaking-huddle-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron cesar-chavez */
.jumbotron-cesar-chavez-2023 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/cesar-chavez/desert-ridge-football-excited-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}


/* jumbotron cesar-chavez mobile */
.jumbotron-cesar-chavez-2023-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/cesar-chavez/desert-ridge-football-excited-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-mountain-pointe-2022 {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../22/media/mountain-pointe/jaguar-offensive-line-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}


/* jumbotron highland mobile */
.jumbotron-mountain-pointe-2022-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../22/media/mountain-pointe/jaguar-offensive-line-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-football-alumni {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../alumni/media/alex-banner.png") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 120px;
}


/* jumbotron highland mobile */
.jumbotron-football-alumni-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../alumni/media/alex-barrett.png") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}

/* jumbotron highland */
.jumbotron-football-highland {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../22/media/highland/team-introduction.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}


/* jumbotron highland mobile */
.jumbotron-football-highland-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../22/media/highland/team-introduction-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 600px;
 padding-top: 150px;
}

/* jumbotron desert vista */
.jumbotron-jaion-signing {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../22/media/jaion-jordan/jaion-jordan-with-the-football-team-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 200px;
}


/* jumbotron coin toss mobile */
.jumbotron-jaion-signing-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../22/media/jaion-jordan/jaion-jordan-with-the-football-team-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 400px;
 padding-top: 120px;
}

/* jumbotron desert vista */
.jumbotron-23-schedule {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/2023-schedule-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}


/* jumbotron coin toss mobile */
.jumbotron-23-schedule-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../23/media/2023-schedule-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 400px;
 padding-top: 10px;
}

/* jumbotron desert vista */
.jumbotron-condie-signing {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../22/media/condie/jacob-signing-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 500px;
 padding-top: 100px;
}


/* jumbotron coin toss mobile */
.jumbotron-condie-signing-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../22/media/condie/jacob-signing-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 400px;
 padding-top: 120px;
}

/* jumbotron desert vista */
.jumbotron-football {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../media/desert-ridge.jpg") center no-repeat;
 background-size: cover;
 height: 700px;
 padding-top: 200px;
}


/* jumbotron coin toss mobile */
.jumbotron-football-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../media/desert-ridge-coin-toss-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 600px;
 padding-top: 120px;
}

/* jumbotron varsity page */
.jumbotron-varsity {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../media/desert-ridge-fired-up.jpg") center no-repeat;
 background-size: cover;
 height: 700px;
 padding-top: 200px;
}


/* jumbotron varsity page mobile */
.jumbotron-varsity-mobile {
background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), url("../media/desert-ridge-fired-up-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 600px;
 padding-top: 120px;
}

/* jumbotron tempe town lake */
.jumbotron-middle-picture-2022 {
background:  url("../23/media/cesar-chavez/coach-ashak-firing-up-the-team.jpg") center no-repeat;
 background-size: cover;
 height: 700px;
 padding-top: 100px;
 margin-top:-16px;
}


/* jumbotron tempe town lake mobile */
.jumbotron-middle-picture-2022-mobile {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 100%), url("../23/media/cesar-chavez/coach-ashak-firing-up-the-team-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 600px;
 padding-top: 200px;
}

/* jumbotron playoffs */
.jumbotron-playoffs-2023 {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,1) 100%), url("../23/media/jaguars-line-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top: 100px;
}

/* jumbotron playoffs mobile */
.jumbotron-playoffs-2023-mobile {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,1) 100%), url("../23/media/jaguars-line-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 420px;
}

/* jumbotron highland */
.jumbotron-highland-2023 {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,1) 100%), url("../23/media/mesa/looking-for-space-to-run-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top: 100px;
}

/* jumbotron tempe town lake mobile */
.jumbotron-highland-2023-mobile {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,1) 100%), url("../23/media/mesa/looking-for-space-to-run-mobile-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 420px;
}

/* jumbotron westwood */
.jumbotron-desert-ridge-mesa-2023 {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,1) 100%), url("../23/media/westwood/offensive-lineman-set-for-the-play-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top: 100px;
}

/* jumbotron tempe town lake mobile */
.jumbotron-desert-ridge-mesa-2023-mobile {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,1) 100%), url("../23/media/westwood/offensive-lineman-set-for-the-play-mobile-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 420px;
}

/* jumbotron westwood */
.jumbotron-desert-ridge-westwood-2023 {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,1) 100%), url("../23/media/westwood/hayes-with-the-catch-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top: 100px;
}

/* jumbotron tempe town lake mobile */
.jumbotron-desert-ridge-westwood-2023-mobile {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,1) 100%), url("../23/media/westwood/hayes-with-the-catch-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 420px;
}

/* jumbotron tempe town lake */
.jumbotron-desert-ridge-roster {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 100%), url("../media/desert-ridge-jumbo.jpg") center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top: 100px;
}

/* jumbotron tempe town lake mobile */
.jumbotron-desert-ridge-roster-mobile {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 100%), url("../media/desert-ridge-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 420px;
}

/* jumbotron tempe town lake */
.jumbotron-desert-ridge-alumni {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 100%), url("../22/media/highland/team-introduction.jpg")fixed center no-repeat;
 background-size: cover;
 height: 450px;
 padding-top: 100px;
}

/* jumbotron tempe town lake mobile */
.jumbotron-desert-ridge-alumni-mobile {
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 100%), url("../22/media/highland/team-introduction-mobile.jpg") center no-repeat;
 background-size: cover;
 height: 420px;
}

.background-color-light-gray {
	background-color:#F3F3F3 ;
}

/* links for a white bg */
a.black:link{
    color: black;
}

/* visited link */
a.black:visited {
    color: black;
}

/* mouse over link */
a.black:hover {
    color: #575757;
}

/* selected link */
a.black:active {
    color: black;
}

/* hide h1 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
}

/* google icons */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://example.com/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'),
    url(https://example.com/MaterialIcons-Regular.woff) format('woff'),
    url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

.atocha-regular {
	font-family: atocha, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.atocha-regular-shadow {
	font-family: atocha, sans-serif;
	font-weight: 400;
	font-style: normal;
	filter: drop-shadow(6px 6px 4px #000000);
}

.atocha-caps-regular {
	font-family: atocha-caps, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.card-photography{
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.6);
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.title-photography {
  color: #AA0002;
  font-size: 18px;
}

.button-photography {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

a-photography {
  text-decoration: none;
  font-size: 22px;
  color: black;
}

button-photography:hover, a:hover {
  opacity: 0.7;
}

.calendar-desktop {
	width:800px;
	height:600px;
	frameborder:1px;
}

.calendar-mobile {
	width:340px;
	height:600px;
	frameborder:1px;
}

.icon-size {
	font-size: 56px;
}

.countdown-clock {
	margin-top: -16px;
}

.top-lift {
	margin-top: -16px;
	padding-top: 100px;
	height: 350px;
}

/* maps and videos */
.embed-media-lightroom {
	width:100%; 
	height:100%; 
	position: absolute; 
	top:0; 
	left:0;	
}

/* maps and videos */
.embed-media {
	width:100%;
	height: 100%;
}

/* code for the tournament bracket */
main{
  display:flex;
  flex-direction:row;
}

main-two{
  display:flex;
  flex-direction:row;
}

main-mobile{
  display:flex;
  flex-direction:row;
}

.round{
  display:flex;
  flex-direction:column;
  justify-content:center;
  width:200px;
  list-style:none;
  padding:0;
}
  .round .spacer{ flex-grow:1; }
  .round .spacer:first-child,
  .round .spacer:last-child{ flex-grow:.5; }

  .round .game-spacer{
    flex-grow:1;
  }

li.game{
  padding-left:20px;
}

li.right {
    padding-right: 16px;
}

  li.game.winner{
    font-weight:bold;
  }
  li.game span{
    float:right;
    margin-right:5px;
  }

  li.game-top{ border-bottom:1px solid #aaa; }

  li.game-spacer{
    border-right:1px solid #aaa;
    min-height:35px;
  }

  li.game-spacer-left{
    border-left:1px solid #aaa;
    min-height:98px;
  }

  li.game-spacer-left-champ{
    border-left:1px solid #aaa;
    min-height:380px;
  }

  li.game-spacer-left-semi{
    border-left:1px solid #aaa;
    min-height:190px;
  }

  li.game-spacer-middle{
    border-left:1px solid #aaa;
    border-right:1px solid #aaa;
    min-height:40px;
  }

  li.game-bottom{
    border-top:1px solid #aaa;
  }

.bracket {
	font-size:.8em;
}
/* end code for the tournament */  