@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap');

/*-------------------------------TOPNAV---------------------------

/* Add a black background color to the top navigation */
.topnav {
    z-index: 1;
    background-color: rgb(22, 48, 80);
    overflow: hidden;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    left: 0;
    width: 100%; /* Full width */
    height: 90px;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {

    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 30px;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
  }

  .topnav b {
    padding: 15px 15px;
    margin: auto;
    float: left;
    display: block;
  }
  .topnav c {
    padding: 15px 30px;
    margin: auto;
    float: left;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 40px;
    font-family: 'Oswald', sans-serif;
    color:  rgb(242, 182, 73);
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    color: rgb(242, 182, 73);
  }
  
  /* Add an active class to highlight the current page */
  .topnav a.active {
    color: rgb(242, 182, 73);
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }

  /* Main content */
    .main {
        margin-top: 90px; /* Add a top margin to avoid content overlay */
        font-family: 'Oswald', sans-serif;
        color: rgb(22, 48, 80);
  }


/*-------------------------------SIDENAV---------------------------


  /* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background-color: rgb(22, 48, 80);
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
  color: #f2f2f2;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: rgb(242, 182, 73);
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  float: right;
  padding: 22px;
  top: 0;
  right: 9px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/*----------------------------------SCREEN SIZE-------------------------

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

  /* When the screen is less than 425x pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 425px) {
  .topnav .logo {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .about {
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
    .topnav a {
      display: none;
    }    

    .topnav .icon {
      float: right;
      display: block;
    }

    .about {
      width: 70%;
    }
  }


/* --------------------------SLIDE SHOW-------------------------------------


  /* Slideshow container */
  .slideshow-container {
    max-width: 100%;
    margin: auto;
    position: relative;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 10px 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  /* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
  .active, .dot:hover {
    background-color: #717171;
  }
  

/* --------------------------CONTACT FORM-------------------------------------

/* Style inputs with type="text", select elements and textareas */

.coaches {
  padding:20px;
}
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}
input[type=email], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
.submit {
  background-color: rgb(22, 48, 80);
  color: white;
  width: 100%; /* Full width */
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  
}

/* When moving the mouse over the submit button, add a darker green color */
.submit:hover {
  background-color: rgb(71, 135, 187);
}

/* Add a background color and some padding around the form */
.contactdiv {
  font-size: 20px;
  border-radius: 5px;
  background-color: #f1f1f1;
  padding: 20px;
}

/* --------------------------NEWSLETTER FORM-------------------------------------

/* Style the form element with a border around it */
form {
  border: 4px solid #f1f1f1;
}

/* Add some padding and a grey background color to containers */
.container {
  text-align: center;
  padding: 10px;
  background-color: #f1f1f1;
}

/* Style the input elements and the submit button */
input[type=text], input[type=submit] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-bottom: 16px; /* Bottom margin */
}

/* --------------------------Home about-------------------------------------*/
.homeinfo{
  background-color: rgb(22, 48, 80);
  color: white;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
}
.button {
  background-color: rgb(242, 182, 73);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 12px;
}

/* --------------------------About-------------------------------------*/
.about {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  color:  rgb(22, 48, 80);
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
}

/* --------------------------Thanks-------------------------------------*/
.thanks {
  text-align: center;
}
/* --------------------------Timer-------------------------------------*/
.timer {
  text-align: center;
}