@charset "utf-8";
/* CSS Document */
/*Global Colour Palette for Acupuncture Site: Sticking Point */
:root {
     --primary-colour: ##91E5F6; /*Non Photo blue*/
     --secondary-colour: #212529; /*charcoal*/
     --tertiary-colour: #95D9DA; /*Tiffany Blue*/
     --bnt-a-colour: #133C55; /*Indigo dye */
}
body, html {
    padding: 0px;
    margin: 0px;
    color: #212529;
	font-family: "Space Grotesk", sans-serif;
    font-size: 1.2em;
}
.splash {
    margin: 0 auto;
    width: 80%;
}
.splash-heading, .splash-link {
    padding: 0.7em 1em;
    font-size: 3em;
    font-weight: 700;
    line-height: 1em;
    border-radius: 9px;
    border: 3px solid white;
    word-wrap: break-word;	
}
.splash-subheading {
    letter-spacing: 0.05em;
    text-align: center;
}
.splash-link a {
    padding: 0.8em;
    margin: auto;
    width: 35%;
    display: block;
    border: 3px solid #4D7CD3;
}
.splash-link a:hover, .splash-link a:focus {
    color: white;
    background-color: #4D7CD3;
    border: 3px solid black;
}
nav {
    padding-bottom: 3em;
    background-color: #91E5F6;
    background-image: -webkit-linear-gradient(180deg,rgba(145,229,246,1.00) 0%,rgba(145,229,246,1.00) 100%);
    background-image: -moz-linear-gradient(180deg,rgba(145,229,246,1.00) 0%,rgba(145,229,246,1.00) 100%);
    background-image: -o-linear-gradient(180deg,rgba(145,229,246,1.00) 0%,rgba(145,229,246,1.00) 100%);
    background-image: linear-gradient(270deg,rgba(145,229,246,1.00) 0%,rgba(145,229,246,1.00) 100%);
}
nav ul {
    margin: 0;
    display: flex;
    list-style-type: none;
    flex-direction: column;
}
nav ul li a {
    padding: 20px;
    display: block;
    color: #212529;
    font-weight: 700;
    text-transform: uppercase;
    flex-direction: column;
}
nav ul li a:hover , nav ul li a:focus{
    border: 0px;
    color: #000000;
}
h1 , h2 ,h3 {
    text-align: center;
	font-family: "Madimi One", sans-serif;
}
.content-wrapper {
    padding: 1.5em;
    margin: 0 auto;
    max-width: 55em;
}
.foot-wrapper {
    padding: 0em 0.5em;
}
section  h2 {
    color: #91E5F6;
    text-shadow: 2px 1px 3px #212529;
}
a  {
    color: #133C55;
    text-decoration: none;
}
a:hover , a:focus{
    color: #00A593;
    border-bottom: thin solid #00A593;
}
footer {
    text-align: center;
}
#hero {grid-area:hero;}
#section1 {grid-area:section1;}
#section2 {grid-area:section2;}
#section3 {grid-area:section3;}
#section4 {grid-area:section4;}
#foot1 {grid-area:foot1;}
#foot2 {grid-area:foot2;}
#foot3 {grid-area:foot3;}
#foot4 {grid-area:foot4;}

@media screen and (min-width:1000px){
	main {
		display: grid;
		grid-template-areas: "hero hero hero hero"
			"section1 section1 section2 section2"
			"section3 section3 section4 section4"
			"foot1 foot2 foot3 foot4";
		column-gap: 1em;
		justify-consent: space-around;
	}
	nav ul {
    display: flex;
    flex-direction: row;
	}
	input, textarea {
 	 font-size: 0.8em;
	  line-height: 1.4em;
 	 margin: 0.4em 0em;
	}
	#submit {
 	 padding: 0.5em 0.7em;
 	 color: white;
 	 font-size: 1.1em;
 	 border-radius: 10px;
 	 background-color: #133C55;
	 cursor: pointer;
	}
	#submit:hover {
 	 background-color: #4D7CD3;
	  color: black;
	}
}

img, iframe {
    max-width: 100%;
}
