@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Philosopher');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

a, a:hover, a:active, a:visited, a:focus {
  text-decoration: none;
  /* color: rgba(246, 246, 246, 0.9); */
}

/* CSS Variables */
:root {
  --primary: #ddd;
  --dark: #333;
  --light: #fff;
  --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
}

html, body {
  max-width: 1800px;
  min-height: 100vh;
}

html {
  box-sizing: border-box;
  font-family: Philosopher;
  color: var(--dark);
  margin: auto;
}

body {
  /* background: #ccc; */
  /* background: #cef1f4; */
  margin: 0px 50px 10px 50px;
  line-height: 1.4;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+20,2989d8+50,1e5799+80&0+0,0.8+15,1+19,1+81,0.8+85,0+100;Blue+Two+Sided+Transparent */
  background: -moz-linear-gradient(top, rgba(30, 87, 153, 0) 0%, rgba(30, 87, 153, 0.8) 15%, rgba(30, 87, 153, 1) 19%, rgba(30, 87, 153, 1) 20%, rgba(41, 137, 216, 1) 50%, rgba(30, 87, 153, 1) 80%, rgba(30, 87, 153, 1) 81%, rgba(30, 87, 153, 0.8) 85%, rgba(30, 87, 153, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(30, 87, 153, 0) 0%, rgba(30, 87, 153, 0.8) 15%, rgba(30, 87, 153, 1) 19%, rgba(30, 87, 153, 1) 20%, rgba(41, 137, 216, 1) 50%, rgba(30, 87, 153, 1) 80%, rgba(30, 87, 153, 1) 81%, rgba(30, 87, 153, 0.8) 85%, rgba(30, 87, 153, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgba(30, 87, 153, 0.8) 15%, rgba(30, 87, 153, 1) 19%, rgba(30, 87, 153, 1) 20%, rgba(41, 137, 216, 1) 50%, rgba(30, 87, 153, 1) 80%, rgba(30, 87, 153, 1) 81%, rgba(30, 87, 153, 0.8) 85%, rgba(30, 87, 153, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001e5799', endColorstr='#001e5799', GradientType=0);
  /* IE6-9 */
}

ul, li {
margin: 0;
padding: 0;
border: 0;
}

h1 span {
  text-shadow: 0.5px 0px red;
}

h4 {
  padding: 0;
  margin: 0;
  line-height: 1.6rem;
}

h5 {
  padding: 0;
  margin: 0;
  font-size: 1em;
  font-weight: normal;
  text-shadow: 0.5px 0px red;
  line-height: 1.4rem;
}

.btn {
  background: var(--dark);
  color: var(--light);
  padding: 0.6rem 1.3rem;
  text-decoration: none;
  border: 0;
}

img {
  max-width: 100%;
}

.wrapper {
  display: grid;
  grid-gap: 20px;
}

/* Navigation */
.main-nav ul {
  display: grid;
  /* background: #ffffff; */
  grid-gap: 10px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
}

.main-nav a {
  background: var(--primary);
  display: block;
  text-decoration: none;
  padding: 0.4rem;
  text-align: center;
  color: var(--dark);
  text-transform: uppercase;
  font-size: 1.0rem;
  box-shadow: var(--shadow);
}

.main-nav a:hover {
  background: var(--dark);
  color: var(--light);
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

.logosmall {
  display: block;
  padding: 0.4rem;
  text-align: center;
}

/* Main nav for home page */
.main-nav-home ul {
  display: grid;
  /* background: #ffffff; */
  grid-gap: 10px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
}

.main-nav-home a {
  background: var(--primary);
  display: block;
  text-decoration: none;
  padding: 0.4rem;
  text-align: center;
  color: var(--dark);
  text-transform: uppercase;
  font-size: 1.0rem;
  box-shadow: var(--shadow);
}

.main-nav-home a:hover {
  background: var(--dark);
  color: var(--light);
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

/* Top Container */
.top-container {
  /* background: rgb(0, 2, 6); */
  background: #cef1f4;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat (4, 1fr);
  grid-template-rows: repeat (2, 1fr);
  grid-template-areas:
    'showcase showcase showcase top-box-a'
    'showcase showcase showcase top-box-a';
}

.top-container-staff {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat (4, 1fr);
  grid-template-rows: auto;
  grid-template-areas:
    'showcase showcase showcase showcase'
    'showcase showcase showcase showcase';
}

.top-container-squash {
  background: #cef1f4;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat (4, 1fr);
  grid-template-rows: auto;
  grid-template-areas:
    'showcase showcase showcase top-box-a'
    'showcase showcase showcase top-box-a';
}

.logo {
  opacity: 0;
  grid-area: showcase;
  position: relative;
  top: 50%;
  left: 50%;
  max-width: 600px;
  max-height: auto;
  min-width: 320px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  align-items: center;
  animation: logofade 15s linear;
  z-index: 1;
}

.squash_bg {
  opacity: 0.82;
  grid-area: showcase;
  position: relative;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: auto;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  align-items: center;
  animation: squashfade 12s linear;
  z-index: 1;
}

.tagline {
  display: block;
  opacity: 0;
  max-height: 70px;
  grid-area: showcase;
  justify-self: center;
  align-self: flex-end;
  animation: taglinefade 15s linear forwards;
  z-index: 10;
}

.tagline h1 {
  font-size: 3rem;
  margin-top: 0;
  color: var(--dark);
  /* background: rgba(10, 10, 10, 0.4); */
  width: 100%;
  text-align: center;
  border-radius: 50px;
}

.homeSlides {
  opacity: 0;
  grid-area: showcase;
  align-self: baseline;
  position: relative;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: auto;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  align-items: center;
  animation: hsfade 15s linear 8s forwards;
  z-index: 1;
}

.squashSlides {
  opacity: 0;
  grid-area: showcase;
  align-self: baseline;
  position: relative;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: auto;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  align-items: center;
  animation: sqsfade 0s linear 18s forwards;
  z-index: 2;
}

.bg__video {
  opacity: 0;
  grid-area: showcase;
  min-height: 400px;
  max-height: 780px;
  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  width: 100%;
  -webkit-animation: fadeInFromNone 15s ease-out;
  -moz-animation: fadeInFromNone 15s ease-out;
  -o-animation: fadeInFromNone 15s ease-out;
  animation: fadeInFromNone 15s ease-out;
}

.fullscreen-bg__video {
  position: relative;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Showcase */
.showcase {
  background: #ccc;
  grid-area: showcase;
  min-height: 400px;
  max-height: 780px;
  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  width: 100%;
}

.showcase h1 {
  font-size: 1.8rem;
  margin: 0 auto 2.6vh auto;
  color: var(--primary);
  background: rgba(10, 10, 10, 0.4);
  width: 100%;
  text-align: center;
  border-radius: 50px;
}

.showcase p {
  font-size: 1.3rem;
  margin-top: 0;
  /* color: var(--light); */
  color: #000000;
}

.showcaseCopy {
  grid-area: showcase;
  min-height: 400px;
  max-height: 780px;
  background-image: url("../images/about-bg.png");
  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  width: 100%;
}

.showcaseCopy h1 {
  font-size: 1.8rem;
  margin: 0 auto 2.6vh auto;
  color: var(--primary);
  background: rgba(10, 10, 10, 0.4);
  width: 100%;
  text-align: center;
  border-radius: 50px;
}

.showcaseCopy p {
  padding: 5px 8px;
  font-size: 1.3rem;
  margin-top: 0;
  /* background: rgba(10, 10, 10, 0.6); */
  color: #ffffff;
  text-shadow: 1px 1px #000000;
  /* border-radius: 5px; */
  z-index: 10;
}

.showcaseCopy p>a {
  color: rgb(85, 228, 50);
  text-decoration: underline;
}

.showcaseCopyFitness {
  grid-area: showcase;
  min-height: 400px;
  max-height: 780px;
  background-image: url("../images/fitness-bg.png");
  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  width: 100%;
}

.showcaseCopyFitness h1 {
  font-size: 1.8rem;
  margin: 0 auto 2.6vh auto;
  color: var(--primary);
  background: rgba(10, 10, 10, 0.4);
  width: 100%;
  text-align: center;
  border-radius: 50px;
}

.showcaseCopyFitness p {
  padding: 5px 8px;
  font-size: 1.3rem;
  margin-top: 0;
  /* background: rgba(10, 10, 10, 0.6); */
  color: #ffffff;
  text-shadow: 1px 1px #000000;
  /* border-radius: 5px; */
  z-index: 10;
}

.showcaseCopyFitness p>a {
  color: rgb(85, 228, 50);
  text-decoration: underline;
}

.ftilist {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  font-size: 1.2rem;
  margin-top: 0;
  color: #ffffff;
  text-shadow: 1px 1px #000000;
  text-align: center;
  z-index: 10;
}

.ftilist div:nth-child(even) {
  justify-self: center;
  min-width: 100%;
  padding: 2px 8px;
  background-color: rgba(108, 162, 234, 0.2);
}

.ftilist div:nth-child(odd) {
  justify-self: center;
  min-width: 100%;
  padding: 5px 8px;
  background-color: rgba(0, 0, 0, 0.40);
}

.atitle {
  font-size: 1.8rem;
  margin: 0 auto 2.6vh auto;
  color: var(--primary);
  background: rgba(10, 10, 10, 0.2);
  width: 100%;
  text-align: center;
  border-radius: 50px;
}

.showcase svg {
  width: 100%;
}

.colorOverlay {
  grid-area: showcase;
  opacity: 0.5;
  min-height: 400px;
  max-height: 780px;
  background-size: cover;
  background-position: center;
  background-color: #000000;
  padding: 3rem;
  z-index: 1;
}

/* Squash Section */
.showcaseCopySquash {
  grid-area: showcase;
  min-height: 400px;
  max-height: 780px;
  width: 100%;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 3px;
  align-items: stretch;
  justify-content: center;
  box-shadow: var(--shadow);
  width: 100%;
}

.showcaseCopySquash>div {
  margin: 0 auto 2.6vh auto;
  font-size: 1.6rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  text-shadow:
    0 0 2px #fff,
    0 0 15px red,
    0 0 16px red,
    0 0 37px #07d9f6,
    0 0 77px #07d9f6,
    0 0 87px #07d9f6,
    0 0 97px #07d9f6,
    0 0 146px #07d9f6;
  width: 100%;
  text-align: center;
  z-index: 10;
  padding: 0.4em;
  box-shadow: 0 0 .1rem #fff,
    inset 0 0 1.3rem #cef1f4;
  border-radius: 5%;
}

.showcaseCopySquash>div:nth-child(odd) {
  cursor: url("../images/racquet.png") 2 2, pointer;
  /* animation: bounce 0.2s 6 alternate ease-out; */
}

.showcaseCopySquash>div:nth-child(even) {
  cursor: url("../images/squashball.png") 2 2, pointer;
  /* animation: bounce 0.24s 6 alternate ease-out; */
}

.showcaseCopySquash>div:hover {
  animation: flicker 1.5s infinite alternate;
  color: #ffffff;
  border-radius: 5%;
  animation: borderchange 0.24s ease-out;
}

.showcaseCopySquash p {
  padding: 5px 8px;
  font-size: 1.3rem;
  margin-top: 0;
  /* background: rgba(10, 10, 10, 0.6); */
  color: #000000;
  text-shadow: 1px 1px #000000;
  /* border-radius: 5px; */
  z-index: 10;
}

.showcaseCopySquash p>a {
  color: rgb(85, 228, 50);
  text-decoration: underline;
}

/* End Squash Section */
/* Staff section */
video {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.showcaseStaff {
  grid-area: showcase;
  position: relative;
  max-width: 100%;
  min-height: 220px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 5px;
  grid-row-gap: 4px;
  align-items: center;
  justify-content: center;
  /* box-shadow: var(--shadow); */
  width: 100%;
}

.showcaseStaff>div:nth-child(odd) {
  box-shadow: 2px 2px red;
  grid-column: 1/2;
  text-align: center;
  align-self: auto;
}

.showcaseStaff>div:nth-child(even) {
  background: rgb(6, 0, 74);
  text-align: left;
  justify-self: center;
  align-self: auto;
  padding: 5px 8px;
  font-size: 1.1rem;
  color: #ffffff;
  text-shadow: 0px 1px #000000;
  z-index: 10;
  border-radius: 5px;
}

.showcaseStaff h1 {
  margin-top: 0px;
  background: #000000;
  font-size: 1.8rem;
  color: var(--primary);
  background: rgba(10, 10, 10, 0.4);
  width: 100%;
  text-align: center;
}

.showcaseStaff p {
  padding: 5px 8px;
  font-size: 1.3rem;
  margin-top: 0;
  /* background: rgba(10, 10, 10, 0.6); */
  color: #ffffff;
  text-shadow: 1px 1px #000000;
  /* border-radius: 5px; */
  z-index: 10;
}

.showcaseStaff p>a {
  color: rgb(85, 228, 50);
  text-decoration: underline;
}

.showcaseStaff>div img {
  /* background: #ffffff; */
  border: 5px solid rgba(11, 46, 195, 0.73);
  box-shadow: 1px 2px rgba(11, 46, 195, 0.73);
  border-radius: 10%;
}

/* End Staff Section */
/* Pickleball */
.showcaseCopy_pb {
  grid-area: showcase;
  min-height: 400px;
  max-height: 780px;
  background-image: url("../images/pbBG.png");
  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  width: 100%;
}

.showcaseCopy_pb p {
  padding: 0px 8px;
  font-size: 1.6rem;
  margin-top: 0;
  color: #ffffff;
  text-shadow: 1px 1px #000000;
  z-index: 10;
}


.showcaseCopy_pb p a {
  color: #ffffff;
  text-shadow: 2px 2px red;
  text-decoration: underline;
  z-index: 10;
}

.showcaseCopy_pb p a:hover {
  text-shadow: 2px 2px #000000;
  text-decoration: none;
}

/* End Pickleball */
/* Contact */
.showcaseCopyContact {
  grid-area: showcase;
  min-height: 400px;
  max-height: 780px;
  background-image: url("../images/ClubSolar.jpg");
  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  width: 100%;
}

.showcaseCopyContact h1 {
  font-size: 1.8rem;
  margin: 0 auto 2.6vh auto;
  color: var(--primary);
  background: rgba(10, 10, 10, 0.4);
  width: 100%;
  text-align: center;
  border-radius: 50px;
}

.showcaseCopyContact p {
  padding: 5px 8px;
  font-size: 1.3rem;
  margin-top: 0;
  /* background: rgba(10, 10, 10, 0.6); */
  color: #ffffff;
  text-shadow: 1px 1px #000000;
  /* border-radius: 5px; */
  z-index: 10;
}

.showcaseCopyContact p>a {
  color: rgb(85, 228, 50);
  text-decoration: underline;
}

.showcaseCopyContact ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 5px 8px;
  font-size: 1.3rem;
  margin: 0 auto;
  background: rgba(25, 41, 3, 0.64);
  color: #ffffff;
  text-shadow: 1px 1px #000000;
  text-align: center;
  z-index: 10;
}

.showcaseCopyContact ul lh {
  text-decoration: underline;
}
.showcaseCopyContact ul li {
  width: 100%;
  display: grid;
  padding: 10px 20px;
  justify-content: center;
}

/* End Contact */

/* Forms Section */
.showcaseForms {
  background: #ccc;
  grid-area: showcase;
  min-height: 400px;
  max-height: 780px;
  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  width: 100%;
}

.showcaseForms h1 {
  font-size: 1.8rem;
  margin: 0 auto 2.6vh auto;
  color: var(--primary);
  background: rgba(10, 10, 10, 0.4);
  width: 100%;
  text-align: center;
  border-radius: 50px;
}

.showcaseForms p {
  font-size: 1.6rem;
  margin-top: 0;
  /* color: var(--light); */
  color: #000000;
  text-decoration: underline overline;
}
.showcaseForms p a:hover {
  color: red;
  font-weight: bold;
}
/* End Forms */
/* Top Box */
.top-box {
  max-width: 100%;
  background: var(--primary);
  display: grid;
  /* grid-template-columns: 1fr; */
  align-items: center;
  justify-items: center;
  box-shadow: var(--shadow);
  padding: 0rem 1rem;
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: normal;
  text-shadow: 0.5px 0 #000000;
}


.top-box h4 {
  align-self: flex-start;
  padding-top: 10px;
  max-width: 350px;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3rem;
  display: flex;
  justify-content: center;
}

.top-box .price {
  font-size: 1.4rem;
  margin-bottom: 0px;
}

.top-box ul {
  list-style: none;
  padding-top: 0px;
  grid-row: 5 / 7;
}

.top-box ul lh {
  max-width: 350px;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3rem;
  display: flex;
  justify-content: center;
}

.top-box ul li {
  text-align: center;
  max-width: 350px;
}

.joinnow {
  grid-row: 4 / 5;
  padding: 1.8rem 0rem;
}

.top-box a:hover {
  text-shadow:
    0 0 2px #fff,
    0 0 15px red,
    0 0 16px red,
    0 0 37px #07d9f6,
    0 0 77px #07d9f6,
    0 0 87px #07d9f6,
    0 0 97px #07d9f6,
    0 0 146px #07d9f6;

}

.top-box-a {
  grid-area: top-box-a;
}

.top-box-a {
  grid-area: top-box-a;
}

.top-box-a-squash {
  grid-area: top-box-a;
  text-align: center;
}

/* Boxes */
.boxes {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.box {
  background: var(--primary);
  text-align: center;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
}

.socialimg {
  border-radius: 28%;
}

/* Info */
.info {
  background: var(--primary);
  box-shadow: var(--shadow);
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  padding: 3rem;
}

/* Portfolio */
.portfolio {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.portfolio img {
  width: 100%;
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  margin-top: 2rem;
  background: rgb(0, 2, 6);
  color: var(--light);
  text-align: center;
  padding: 1rem;
}

/* SVG */
.court {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: dash 2s linear forwards, courtfade 15s linear forwards;
}

.crosscourt1 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear forwards;
}

.crosscourt2 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear .5s forwards;
}

.crosscourt3 {
  opacity: 1;
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  animation: shot .25s linear 1s forwards;
}

.rail1 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear 1.25s forwards;
}

.rail2 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear 1.8s forwards;
}

.roll1 {
  opacity: 1;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: shot .5s linear 2.25s forwards;
}

.roll2 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear 2.6s forwards;
}

.roll3 {
  opacity: 1;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: shot .5s linear 3s forwards;
}

.lrail1 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear 3.3s forwards;
}

/* 2nd iteration of SVG */
.crosscourt12 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear 4s forwards;
}

.crosscourt22 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear 4.5s forwards;
}

.crosscourt32 {
  opacity: 1;
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  animation: shot .25s linear 5s forwards;
}

.rail12 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear 5.25s forwards;
}

.rail22 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear 5.8s forwards;
}

.roll12 {
  opacity: 1;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: shot .5s linear 6.25s forwards;
}

.roll22 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear 6.6s forwards;
}

.roll32 {
  opacity: 1;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: shot .5s linear 7s forwards;
}

.lrail12 {
  opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shot .5s linear 7.3s forwards;
}

/* Animations */
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes shot {
  to {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes logofade {
  0% {
    display: none;
    opacity: 0;
  }

  25% {
    display: block;
    opacity: 0.3;
  }

  75% {
    display: block;
    opacity: 0.3;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes taglinefade {
  0% {
    display: none;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes hsfade {
  0% {
    display: none;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes sqsfade {
  0% {
    display: block;
    opacity: 1;
  }

  1% {
    display: block;
    opacity: 1;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes courtfade {
  0% {
    display: block;
    opacity: 1;
  }

  95% {
    display: block;
    opacity: 1;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes staffbgfade {
  0% {
    display: none;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 0.3;
  }
}

@keyframes squashfade {
  0% {
    display: none;
    opacity: 0;
  }

  10% {
    display: block;
    opacity: 1;
  }

  90% {
    display: block;
    opacity: 1;
  }

  100% {
    display: block;
    opacity: 0.7;
  }
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow:
      0 0 4px #fff,
      0 0 11px #fff,
      0 0 19px #fff,
      0 0 40px #0fa,
      0 0 80px #0fa,
      0 0 90px #0fa,
      0 0 100px #0fa,
      0 0 150px #0fa;
  }

  20%, 24%, 55% {
    text-shadow: none;
  }
}

/*
@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50px); }
} */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-25px);
  }
}

@keyframes borderchange {
  50% {
    border-radius: 750px 550px 350px 750px / 350px 750px 550px 450px;
  }

  100% {
    border-radius: 750px 250px 750px 250px / 250px 750px 250px 750px;
  }
}

/*
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
} */
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }

  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #fce300, 0 0 40px #fce300, 0 0 50px #fce300, 0 0 60px #fce300, 0 0 70px #fce300, 0 0 80px #fce300;
  }
}

/* Media Queries */
@media (max-width: 1420px) {
  .top-container {
    grid-template-areas:
      'showcase showcase'
      'top-box-a top-box-a';
  }

  .top-container-squash {
    /* background: rgb(0, 2, 6); */
    background: #cef1f4;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat (2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      'showcase showcase'
      'top-box-a top-box-a';
  }

  /* Showcase */
  .showcase {
    grid-area: showcase;
    min-height: 400px;
    max-height: 480px;
    background-size: cover;
    background-position: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    width: 100%;
  }

  .showcase h1 {
    font-size: 2.5rem;
  }

  .tagline {
    display: block;
    opacity: 0;
    max-height: 70px;
    grid-area: showcase;
    justify-self: center;
    align-self: center;
    animation: taglinefade 15s linear forwards;
    z-index: 10;
  }


  .top-box h4 {
    align-self: flex-start;
    padding-top: 10px;
    max-width: 350px;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.3rem;
    display: flex;
    justify-content: center;
  }

  .top-box .price {
    font-size: 1.4rem;
    margin-bottom: 0px;
  }

  .top-box ul {
    list-style: none;
    padding-top: 0px;
    grid-row: 5 / 7;
  }

  .top-box ul lh {
    max-width: 350px;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.3rem;
    display: flex;
    justify-content: center;
  }

  .top-box ul li {
    text-align: center;
    max-width: 350px;
  }

  .joinnow {
    grid-row: 4 / 5;
    padding: 2rem 0rem;
  }

}

@media (max-width: 764px) {
  .top-container {
    grid-template-areas:
      'showcase showcase'
      'top-box-a top-box-a';
  }

  .showcase h1 {
    font-size: 2.5rem;
  }

  .showcaseCopy {
    grid-area: showcase;
    min-height: 400px;
    max-height: 100%;
    background-size: cover;
    background-position: center;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    width: 100%;
  }

  .showcaseCopy h1 {
    font-size: 1.2rem;
    margin: 0 auto 2.6vh auto;
    color: var(--primary);
    background: rgba(10, 10, 10, 0.4);
    width: 100%;
    text-align: center;
    border-radius: 8px;
  }

  .showcaseCopy p {
    font-size: 1rem;
    margin-top: 0;
    /* color: var(--light); */
    color: #ffffff;
  }

  .showcaseCopy_pb {
    grid-area: showcase;
    min-height: 400px;
    max-height: 100%;
    background-image: url("../images/pbBG.png");
    background-size: cover;
    background-position: center;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    width: 100%;
  }

  .showcaseCopy_pb p {
    padding: 0px 2px;
    font-size: 1.4rem;
    margin: 0 auto;
    color: #ffffff;
    text-shadow: 1px 1px #000000;
    z-index: 10;
  }
  .showcaseCopyFitness {
    max-height: 100%;
  }

  .showcaseCopySquash {
    max-height: 100%;
  }

  .main-nav ul {
    grid-template-columns: 1fr;
  }
  .main-nav-home ul {
    grid-template-columns: 1fr;
  }
  .info {
    grid-template-columns: 1fr;
  }

  .info .btn {
    display: block;
    text-align: center;
    margin: auto;
  }
}

@media (max-width: 500px) {
  .top-container {
    width: 100%;
    display: grid;
    grid-template-areas:
      'showcase'
      'showcase'
      'top-box-a'
      'top-box-a';
  }

  .logo {
    min-width: 100%;
  }

  .logosmall {
    min-width: 100%;
  }

  .showcaseStaff {
    grid-area: showcase;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 220px;
    padding: 3rem;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); */
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-column-gap: 5px;
    grid-row-gap: 4px;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 430px) {
  .top-container {
    /* background: rgb(0, 2, 6); */
    background: #cef1f4;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      'showcase'
      'top-box-a'
      'top-box-a';
  }

  .showcaseStaff {
    grid-area: showcase;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 220px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-column-gap: 1px;
    grid-row-gap: 4px;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
  }

  .showcaseCopyContact {
    grid-area: showcase;
    min-height: 400px;
    max-height: 780px;
    background-image: url("../images/ClubSolar.jpg");
    background-size: cover;
    background-position: center;
    padding: 0rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1rem;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    width: 100%;
  }

  .showcaseCopyContact ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0px;
    font-size: 1.3rem;
    margin: 0 auto;
    background: rgba(25, 41, 3, 0.64);
    color: #ffffff;
    text-shadow: 1px 1px #000000;
    text-align: center;
    z-index: 10;
  }

  .top-container-squash {
    /* background: rgb(0, 2, 6); */
    background: #cef1f4;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      'showcase'
      'top-box-a'
      'top-box-a';
  }
}
