:root {
  --head-height: 117px;
  --foot-height: 180px;
  --blue: #03D3FC;
  --head-height1000: 127px;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  font-size: 12pt;
}

body {
  overflow-y: scroll;
  font-family: 'Roboto', sans-serif;
  background-color: #EEEEEE;
  color: #111111;
}

h1 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: 'Comfortaa', sans-serif;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: 'Comfortaa', sans-serif;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: 'Comfortaa', sans-serif;
}

h4 {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}

strong {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 10px 0;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: #000000;
}

section, article, div {
  display: flex;
}

section {
  padding: 0 30px;
}

header {
  position: fixed;
  width: 100%;
  z-index: 100;
  color: #EEEEEE;
  background-color: var(--blue);
  box-shadow: 0px 5px 20px 0px #00000070;
}

#banner {
  display: flex;
  justify-content: center;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  top: var(--head-height);
  padding: 10px;
  width: 100%;
  background-color: #CC0000;
  color: #FFFFFF;
  z-index: 99;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
}

main {
  position: relative;
  width: 100%;
  top: var(--head-height);
  min-height: calc(100vh - var(--head-height) - var(--foot-height));
}

footer {
  position: relative;
  top: var(--head-height);
  font-size: 1.1rem;
  line-height: 2;
  background-color: var(--blue);
}

.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

header a {
  color: #000000;
}

#title {
  font-family: 'Comfortaa', sans-serif;
}

#title a {
  display: flex;
  align-items: center;
}

#title div {
  flex-direction: column;
  padding: 25px 20px;
}

#title img {
  border-radius: 10px;
}

#title span:first-child {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #000000DD;
}

#title span:last-child {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 550;
  color: #000000AA;
}

#nav-bar ul {
  display: flex;
  list-style-type: none;
}

#nav-bar li {
  margin: 0 12px;
  text-align: right;
}

#nav-bar a {
  color: #000000DD;
  font-size: 1rem;
}

#nav-bar a:hover { color: #FFFFFFDD; }
#nav-bar a.current { color: #000000; font-weight: 600; }

main .container {
  flex-direction: column;
  padding-top: 50px;
}

main section {
  margin: 25px 0;
}

main article {
  margin: 25px 0;
}

footer section {
  width: 100%;
  justify-content: space-between;
  flex-direction: column;
  font-size: 1.2rem;
  color: #000000DD;
  margin: 30px 0;
}

footer a {
  color: #000000AA;
}

footer a:hover {
  color: #FFFFFFDD;
}

.icon {
  text-decoration: none;
  font-size: 1.1rem;
  line-height: 2;
}

.icon:before {
  font-family: "Material Icons";
  position: relative;
  margin-right: 10px;
  top: 3px;
}

.email:before { content: "\e0be"; }
.phone:before { content: "\e0cd"; }
.location:before { content: "\e0c8"; }
.document:before { content: "\e873"; }
.shop:before { content: "\e8cc"; }

@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  src: local('Comfortaa'), url('/assets/fonts/comfortaa.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  src: local('Roboto'), url('/assets/fonts/roboto.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  src: local('Material Icons'), url('/assets/fonts/icons-round.woff2') format('woff2');
}

#intro {
  flex-direction: column;
  text-align: center;
}

#intro article {
  flex-direction: row;
  text-align: justify;
  align-items: center;
  justify-content: space-around;
}

#intro article p {
  max-width: 500px;
}

#intro span {
  background-color: var(--blue);
  color: #000000AA;
  font-size: 1.8rem;
  text-align: center;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  flex: 1 1 0;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#intro h1 {
  font-size: 3rem;
}

#intro h2 {
  font-size: 2rem;
  margin: 30px 0 0 0;
}

#intro img {
  border-radius: 50px;
}

#intro div {
  flex-direction: column;
}

#overview {
  flex-direction: column;
  text-align: center;
}

#overview article {
  justify-content: space-evenly;
  align-items: center;
}

#overview article:nth-child(odd) { flex-direction: row-reverse; }
#overview article:nth-child(even) { flex-direction: row; }

#overview div {
  flex-direction: column;
}

#overview h1 {
  font-size: 3rem;
}

#overview h2 {
  font-size: 2rem;
}

#overview p {
  max-width: 400px;
}

#overview a {
  font-size: 1.1rem;
  text-decoration: underline;
  color: #000000;
}

#overview img {
  border-radius: 50px;
}

#services {
  flex-direction: column;
  text-align: center;
}

#services article {
  justify-content: space-evenly;
  align-items: center;
  margin: 50px 0;
}

#services article:nth-child(odd) { flex-direction: row-reverse; }
#services article:nth-child(even) { flex-direction: row; }
#services article:last-child { flex-direction: row; }

#services div {
  flex-direction: column;
}

#services div div {
  margin: 30px 0;
}

#services p {
  max-width: 500px;
  text-align: justify;
}

#services h1 {
  font-size: 3rem;
}

#services h2 {
  font-size: 2rem;
  margin: 40px 0 0 0;
}

#services img {
  border-radius: 50px;
}

#notice {
  display: none;
  max-width: 600px;
  margin: 20px auto 0;
  background-color: var(--blue);
  color: #000000AA;
  padding: 10px;
  border-radius: 10px;
}

#notice p {
  max-width: 100%;
  font-size: 1.4rem;
  text-align: center;
}

#megan {
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
}

#megan article {
  flex-direction: column;
  text-align: justify;
}

#megan p {
  max-width: 600px;
}

#megan img {
  border-radius: 50px;
}

#megan a {
  text-decoration: underline;
}

#megan span:first-of-type {
  margin-bottom: 50px;
}

#watsu {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

#watsu article {
  flex-direction: column;
  text-align: justify;
}

#watsu h2 {
  color: #33333399;
}

#watsu p {
  max-width: 600px;
}

#watsu img {
  border-radius: 50px;
}

#expectations {
  flex-direction: row;
}

#expectations article {
  flex-direction: column;
  text-align: justify;
  justify-content: space-around;
}

.water {
  min-width: 150px;
  margin: 25px;
  border-radius: 30px;
  background-image: url('/assets/images/water.png');
  background-color: var(--blue);
  background-repeat: no-repeat;
}

#expectations div {
  flex-direction: column;
  padding: 0 30px;
}

#expectations a {
  font-size: 1.1rem;
  text-decoration: underline;
}

#expectations img {
  border-radius: 25px;
  height: 100%;
}

#process {
  flex-direction: column;
}

#bookings {
  flex-direction: column;
}

#bookings article {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

#bookings div {
  flex-direction: column;
}

#bookings p {
  max-width: 700px;
}

.button {
  background-color: var(--blue);
  color: #000000AA;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 20px 40px;
}

#forms {
  flex-direction: row;
}

#forms article {
  flex-direction: column;
}

#forms a {
  text-decoration: underline;
}

#resources {
  flex-direction: column;
}

#moves {
  flex-direction: column;
}

#moves article {
  flex-direction: column;
}

#moves article div {
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#moves img {
  margin: 20px 20px;
  border-radius: 10px;
}

#benefits {
  flex-direction: column;
}

#benefits article {
  flex-direction: column;
}

@media ( max-width: 1000px ) {

  main { top: var(--head-height1000); min-height: calc(100vh - var(--head-height1000) - var(--foot-height)); }
  footer { top: var(--head-height1000); }
  #title img { max-width: 75px; max-height: 75px; }
  #title span:first-child { font-size: 1.6rem; }
  #title span:last-child { font-size: 1.2rem; }
  section { padding: 0 15px; }
  #nav-bar a { font-size: 1rem; }
  header .container { min-height: 127px; }
  #banner { top: var(--head-height1000); }

}

@media ( max-width: 900px ) {

  #nav-bar ul { flex-direction: column; }
  #intro article { flex-direction: column; }
  #megan { flex-direction: column; }
  #watsu { flex-direction: column; }
  .water { display: none; }
  
}

@media ( max-width: 600px ) {

  #title img { display: none; }
  section { padding: 0 5px; }
  #overview article:nth-child(odd), #overview article:nth-child(even) { flex-direction: column; }
  #services article:nth-child(odd), #services article:nth-child(even), #services article:last-child { flex-direction: column; }
  #services article:last-child img { display: none; }
  #bookings article { flex-direction: column; }
  #resources { align-items: center; }
  #moves { align-items: center; }
  #moves article { align-items: center; justify-content: center; }

}

@media ( max-width: 450px ) {

  #title span:last-child { display: none; }
  #intro img { max-width: 250px; max-height: 250px; }
  
}
