@charset "utf-8";
/* CSS Document */


/* Start of Grid Rules */
.grid {
	max-width: 950px;
	margin: auto;
	font-family: 'Open Sans', sans-serif;
	display: grid;
	grid-gap: 5px;
	grid-auto-rows: auto;
	grid-template-areas:
		"hd"
		"hero"
		"story2"
		"story3"
		"upcoming"
		"newsec"
		"rankb"
		"galpor"
		"mnav"
		"ft";

}
	@media (min-width: 768px) {
		.grid {
			grid-template-columns: 1fr 1fr;
			grid-gap: 2px;
			grid-template-areas:
			"hd       hd"
			"dnav     dnav"
			"hero     hero"
			"story2   story3"
			"upcoming upcoming"
			"newsec   newsec"
			"rankb    rankb"
			"galpor	  galpor"
			"ft       ft";
			box-shadow: -1px 0px 2px #69828f, 1px 0px 2px #69828f;
			}
		}
h2 {
	font-size: 20pt;
	text-align: center;
	color: #009444;
}

h3 {
	font-size: 16pt;
	text-align: center;
}
/* End of Grid Rules */



/* Start of Header */
header {
	grid-area: hd;
	background-color: #2a3439;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.09' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
	min-height: 60px;
	max-height: 140px;
}

/* Logo */
.logo {
	margin: auto;
	display: block;
	padding: 5px 0 5px 0;
	width: 85%;
}
	@media only screen and (min-width: 500px) {
		.logo {
			width: 70%;	
		}
	}

	@media only screen and (min-width: 600px) {
		.logo {
			max-width: 450px;	
		}
	}
/* End of Header */



/* Start of Desktop Menu */
.desktop-nav {
	grid-area: dnav;
	background-color: #3a6c85;
}

.desktop-nav ul {
	background-color: #3a6c85;
	text-align: center;
	font-size: 16px;
	padding: 8px 0 8px 0;
	margin: 0 auto 0 auto;
}

.desktop-nav li {
	display: inline-block;
	margin: 0 4px 0 4px;
}

.desktop-nav a {
	text-decoration: none;
	color: white;
}

.desktop-nav a:hover {
	text-decoration: underline;
}

	@media only screen and (max-width: 767px) {
		.desktop-nav {
			display: none;
		}
	}
/* End of Desktop Menu */

	

/* Start of Main Boxes */
#hero {
	grid-area: hero;
}
#story-2 {
	grid-area: story2;
}
#story-3 {
	grid-area: story3;
	border-radius: 0 0 25px 25px;
}
	@media only screen and (min-width: 768px) {
		#story-3 {
		border-radius: 0;
		}
	}
#hero, #story-2, #story-3 {
	background-color: #3a6c85;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%232a3439' fill-opacity='0.20' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}
#hero a, #story-2 a, #story-3 a {
	text-decoration: none;
}

body img {
	width: 100%;
	height: auto;
}
#hero img, #story-2 img, #story-3 img {
	border-bottom: 1px solid white;
}

.home-headline, .home-subhead {
	color: white;
	margin: 0;
}

.home-headline {
	font-size: 15pt;
	font-weight: bold;
	text-align: left;
	padding: 10px 20px 0 20px;
}
.home-subhead {
	font-size: 12pt;
	font-weight: lighter;
	text-align: justify;
	text-justify: inter-word;
	padding: 10px 20px 20px 20px;
}

	@media only screen and (min-width: 400px) {
		.home-headline {
			font-size: 16pt;
		}
	}

	@media only screen and (min-width: 500px) {
		.home-headline {
			font-size: 17pt;
		}
		.home-subhead {
			font-size: 14pt;
		}
	}

	@media only screen and (min-width: 768px) {
		.hero-head {
			font-size: 20pt;
		}
		.story-head {
			font-size: 16pt;
		}
		.story-subhead {
			font-size: 12pt;
		}
	}
	@media only screen and (min-width: 1024px) {
			.hero-head {
				font-size: 24pt;
			}
			.hero-subhead {
				font-size: 15pt;
			}
			.story-head {
				font-size: 18pt;
			}
			.story-subhead {
				font-size: 14pt;
			}
	}
/* End of Main Boxes */



/* Start of Upcoming Events */
#upcoming {
	grid-area: upcoming;
	margin: 10px 0 20px 0;
}
.tournament-details, .venue {
	font-size: 14pt;
	line-height: 0.4;
	text-align: center;
	color: #2a3439;
}
/* End of Upcoming Events */



/* Start of Newsletter Section */
#newsletter-section {
	display: grid;
	grid-area: newsec;
	grid-template-areas:
		"desc sign test";
}
	@media only screen and (min-width: 767px) {
	#newsletter-section {
		margin: 30px auto 30px auto;
		background-color: #2a3439;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.09' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
		}
	}
.disappear {
	display: none;
}
/* End of Newsletter Section */

/* Start of Newsletter Description */
#newsletter-description {
	grid-area: desc;
	text-align: center;
	margin: auto;
	padding: 20px;
	color: white;
}
	@media only screen and (max-width: 767px) {
	#newsletter-description {
		display: none;
		}
	}
#newsletter-description ul {
	list-style-type: none;
	padding: 0;
}
#newsletter-description li {
	line-height: 2.5;
	font-weight: bold;
	font-size: 14pt;
}
/* End of Newsletter Description */

/* Start of Signup Box */
.signup {
	grid-area: sign;
	background-color: #009444;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%232a3439' fill-opacity='0.31' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
	border-radius: 15px;
	padding: 40px 20px 30px 20px;
	margin: 0 auto 30px auto;
	width: 80%;
	max-width: 470px;
	text-align: center;
}
	@media only screen and (min-width: 700px) {
		.signup {
			padding: 3% 1% 3% 1%;
		}
	}

	@media only screen and (min-width: 767px) {
		.signup {
			width: 90%;
			margin: auto;
			padding: 15px;
			border-radius: 25px;
			border: 1px solid white;
			background-image: none;
		}
	}
.signup p, .signup h2 {
	color: white;
}
.mailchimp input {
/* Placeholder Settings */
color: #2a3439;
margin: 0 auto 20px auto;
padding: 0;
text-align: center;
font-size: 16pt;
width: 90%;
height: 40px;
border: none;
border-radius: 25px;
}
/* Input box background colour */
.mailchimp input.email { 
background: white;
}
.mailchimp input[type="submit"] {
/* Button Settings */
margin: 10px auto 10px auto;
padding: 0;
background: #3a6c85;	
font-size: 15pt;
color: white;
font-weight: bold;
cursor: pointer;
border: solid 1px white;
width: 90%;
height: 70px;
}
.mailchimp input[type="submit"]:hover { 
/* Button colour under hover */
background: white; 
color: #009444;
}
.disclaimer {
	color: white;
	font-weight: bolder;
}
.spec-link {
	font-size: 14pt;
}
.spec-link a {
	text-decoration: none;
	color: white;
	font-weight: bold;
}
label {
	font-size: 10pt;
	color: #009444;
}
/* End of Signup Box */


/* Start of Testimonials */
#testimonials {
	grid-area: test;
	width: 75%;
	text-align: center;
	margin: auto;
	padding: 20px;
	color: white;
}
	@media only screen and (max-width: 767px) {
	#testimonials {
		display: none;
		}
	}
.quote {
	color: white;
	font-weight: bold;
}
#testimonials a{
	color: white;
	text-decoration: none;
}
/* End of Testimonials */



/* Start of Rankings */
#rankings-box {
	display: grid;
	grid-area: rankb;
	grid-template-columns: 1fr;
	grid-row-gap: 20px;
	grid-template-areas:
		"atpr"
		"wtar";
}
	@media (min-width: 768px) {
		#rankings-box {
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-template-areas:
			"atpr wtar";
		}
	}
#atp-rankings {
	grid-area: atpr;
}
#wta-rankings {
	grid-area: wtar;
}
#atp-rankings,#wta-rankings {
	margin: auto;
	font-size: 14pt;
	line-height: 2;
}
th, td {
	padding: 0;
	text-align: center;
}
#atp-rankings table, #wta-rankings table {
	width: 100%;
}
#atp-rankings h3, #wta-rankings h3 {
	line-height: 0;
}
.atp {
	color: #3a6c85;
}
.wta {
	color: #814885;
}
.grandslam {
	color: #857955;
}
.date {
	font-size: 12pt;
	color: #2a3439;
	text-align: center;
}
	@media (min-width: 768px) {
		#atp-rankings, #wta-rankings {
			margin: 0 10% 0 10%;
		}
	}

.number-one-ranking {
	color: #283439;
	font-weight: bold;
}

.number-one-headshot img {
	width: 40%;
	border-radius: 100px;
	border: 2px #3a6c85 solid;
	margin: auto;
	display: block;
}
/* End of Rankings */



/* Start of Gallery Portal */
#gallery-portal {
	grid-area: galpor;
}
	@media (max-width: 599px) {
		#gallery-portal img {
			border-radius: 25px;
			max-width: 95%;
			margin: auto;
			display: block;
			padding: 15px 0 15px 0;
		}
	}
/* End of Gallery Portal */



/* Mobile Menu */
.mobile-nav {
	grid-area: mnav;
	background-color: white;
	border-radius: 25px 25px 0 0;
}
	@media (min-width: 768px) {
		.mobile-nav {
			display: none;
		}
	}
.mobile-nav ul {
	list-style-type: none;
}
.mobile-nav ul li a {
	text-decoration: none;
	color:#ffffff;
	text-align: center;
	display: block;
	padding: 8px;
}


/*Accordion Menu*/
.accordion {
  background-color: #3a6c85;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  margin-bottom: 1px;
  width: 100%;
  border-color: transparent;
  border-radius: 25px 25px 0 0;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  font-size: 20px;
  transition: 0.4s;
}
.active, .accordion:hover {
  background-color: #3a6c85; 
}
.panel {
  display: none;
  background-color: #69828f;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}
.panel ul {
  list-style: none;
	margin: 0;
	padding: 0;
}
.panel ul li {
  padding: 10px 0 10px 0;
  border-bottom: solid .5px white;
  margin: 0;
}
/* End of Mobile menu */
		


/* Start of Footer */
footer {
	grid-area: ft;
	background-color: #2a3439;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.09' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
	min-height: 250px;
	color: #69828F;
}

footer ul {
	list-style: none;
	margin: 0;
	padding: 20px 0 0 0;
	text-align: center;
	font-size: 15pt;
}
footer li {
	line-height: 2.3;
}
footer p {
	text-align: center;
	padding: 2% 0 1% 0;
	font-size: 12pt;
}
	@media only screen and (min-width: 768px) {	
		footer li {
			display: inline-block;
			margin: 0px 10px 0 0;
		}
	}
footer a {
	text-decoration: none;
	color: #69828f;
}
footer a:hover {
	color: white;
}

ul#trust-logos {
	list-style: none;
	margin: auto;
	text-align: center;
	padding-top: 25px;
	max-width: 20%;
}

	@media only screen and (min-width: 768px) {	
		ul#trust-logos {
			max-width: 10%;
		}
	}

#trust-logos li {
	display: inline-block;
}

/* End of Footer */