/* Color Variables */
:root {
  --blue: #1c2d3a;
  --yellow: #efd967;
  --lightblue: #79cfe2;
  --turquoise: #baf1ff;
}

/* Root */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

/* Default */
a {
  text-decoration: none;
  color: var(--blue);
}


.yellowButton {
  font-family: "Comfortaa", sans-serif;
  background-color: var(--yellow);
  color: var(--blue);
  padding: 7px 20px;
  border: 0 solid var(--blue);
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.5em;
  letter-spacing: 2px;
}


.yellowButton:hover, button:hover {
  background-color: var(--lightblue);
  color: var(--blue);
  transition: 0.2s ease-in-out;
}


button {
  font-family: "Comfortaa", sans-serif;
  background-color: var(--blue);
  color: white;
  padding: 7px 20px;
  border: 0 solid var(--blue);
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.25em;
  letter-spacing: 2px;
}

h1 {
  font-family: "Comfortaa", sans-serif;
  font-weight: 800;
  font-size: 4em;
  letter-spacing: 2px;
  color: var(--blue);
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 30px;
  color: var(--blue);
  padding-bottom: 5px;
  max-width: 550px;
}

h3 {
  font-weight: 700;
}

h4 {
  font-size: 2.5em;
}

h5 {
  font-size: 2em;
  font-weight: 600;
}

p {
  font-family: "Poppins", sans-serif;
  color: var(--blue);
}

/* Header & Primary Navigation */
.logo img {
  width: 200px;
  min-width: 200px;
}

.nav_Desktop {
  display: flex;
  align-items: center;
  min-height: 150px;
}

.nav_Desktop-navLists {
  display: flex;
  justify-content: flex-end;
}

.nav_Desktop-navlinks, .nav_Desktop-login {
  display: flex;
}

.nav_Desktop-navlinks {
  background-color: var(--lightblue);
  padding: 2px;
  border-radius: 5px;
}

nav {
  display: none;
  justify-content: space-around;
  align-items: center;
  min-height: 150px;
  background-color: white;
}

.nav-links {
    background-color: white;
    border-radius: 5px;
}

nav button {
  font-family: "Comfortaa", sans-serif;
  background-color: transparent;
  color: var(--blue);
  font-weight: 1000;
  font-size: 1.25em;
  letter-spacing: 2px;

}

nav button:hover {
  background-color: var(--turquoise);
  transition: 0.4s ease-in-out;
}

nav .button-white {
  background-color: var(--blue);
  color: white;
  padding: 7px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.25em;
  letter-spacing: 2px;
}

nav .button-white:hover {
  text-decoration: none;
  font-weight: 1000;
  background-color: var(--lightblue);
  color: var(--blue);
  transition: 0.2s ease-in-out;
}

ul li {
  list-style: none;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 60%;
  max-width: 850px;
  vertical-align: baseline;
}

.burger {
  display: none;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--blue);
  margin: 5px;
  transition: all 0.3s ease;
}

/* Footer */
#footer {
  background-color: var(--blue);
  padding: 4em;
  display: flex;
  margin: 0 auto;
}

.footer_span {
  display: flex;
}

.footer_spanLeft p a {
  font-size: 1.5em;
  font-weight: 800;
  line-height: 25px;
}

.footer_span p,
.footer_span a {
  color: white;
  letter-spacing: 1px;
  font-family: "Comfortaa", sans-serif;
}

.footer_spanRight {
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 4em 2em 3em;
}

.footer_spanRight h3 {
  font-family: "Comfortaa", sans-serif;
  color: white;
  font-size: 1.5em;
  margin-left: -10em;
  letter-spacing: 2px;
}

.footer_spanRight p {
  font-size: 1em;
  font-weight: 400;
  line-height: 15px;
  padding-left: 5em;
}

/* Index */

/* Hero */
#index_hero {
  padding: 5em 0;
  display: flex;
  justify-content: center;
  vertical-align: center;
}

.index_subHero {
  margin: 0 2em;
  text-align: right;
}

.index_subHero h1 {
  margin-top: 10px;
}

.index_subHero h1,
.index_subHero h2 {
  width: 500px;
}

.index_subHero h2 {
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
  font-size: 1.75em;
  margin-bottom: 15px;
}

.index_subHero-Image {
  max-width: 300px;
  border-radius: 180px;
  margin-bottom: 3em;
}

/* Our Locations */
#index_Locations {
  background-color: var(--yellow);
  padding: 10em 10em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Our Belief */
#index_ourBelief, #comingSoon {
  background-color: white;
  padding: 6em 10em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Login (Coming Soon) */
#comingSoon {
  display: flex;
  justify-content: center;
  margin: 11.5% auto;
}

/* Fluff */
/* Hero */
.fluff_hero {
  padding: 4em 1em;
  width: 90%;
  display: grid;
  justify-content: center;
  margin: 0 auto;
}

.fluff_hero h1, .faq h1, .contact h1, .locations h1 {
  font-family: "Comfortaa", sans-serif;
  font-size: 2.5em;
  letter-spacing: 1px;
  max-width: 1000px;
  font-weight: 800;
  text-align: center;
}

.fluff_hero span {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.fluff_hero img {
  margin-top: 1em;
  max-width: 125px;
}

.fluff_hero p {
  font-family: "Poppins", sans-serif;
  font-size: 1.5em;
  font-weight: 200;
  line-height: 35px;
  max-width: 250px;
  padding: 1em;
}

/* Contact */
.contact_Inquiries {
  padding: 8em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact_Inquiries img {
  max-width: 25px;
  float: left;
  padding-right: 5px;
}

.contact_Inquiries p {
  float: right;
}

/* FAQ */
.faq {
  padding: 2em 2em 6em 2em;
  display: grid;
}

.faq h1 {
    margin: auto;
}

.faq_sub {
  width: 100%;
  padding: 1.35em 0;
}

.faq_sub h2 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 auto;
}

.faq_sub p {
    max-width: 40%;
    margin: 0 auto;
    min-width: 250px;
}

/* Locations */
.locations {
padding: 5em 0;
}

.locations h1 {
  margin: 0 auto 2em auto;
}

.locations h2 {
  font-size: 2.5em;
  margin: 3em auto 2em;
  text-align: center;
}

.locations_Container{
  display: flex;
  justify-content: center;
  vertical-align: center;
  margin: 0 auto;
}

hr {
  width: 30%;
  margin: 0 auto;
}

.locations_subInfo {
  margin: 0 2em;
  text-align: left;
}

.locations_sub img {
  max-width: 200px;
  border-radius: 100%;
  margin-top: -30px;
}

/* About */
#about_body {
  background-image: url("../images/images/about_bcImage.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: darkgray;
}

.about_background {
  padding-top: 20px;
  display: grid;
  align-items: center;
  justify-content: center;
}

.about {
  background-color: white;
  border-radius: 25px;
  width: 400px;
  padding: 2em 2.5em 2em 2.5em;
  box-shadow: 0 0 10px #888;
  display: flex;
  flex-direction: column;
}

.about-left {
  transform: translateX(-50%);
  margin: 50px 0;
}

.about-right {
  transform: translateX(50%);
  margin: 0 0 50px 0;
}

@media only screen and (max-width: 1000px) {
  /* Primary Navigation */
  body {
    overflow-x: hidden;
    overflow-y: scroll;
    margin-left: auto;
    margin-right: auto;
  }

  .button-white {
    margin: 0 0 0 15px;
  }

  .nav_Desktop {
    display: none;
  }

  nav {
    display: flex;
  }

  nav .logo {
    margin-top: 2em;
  }
}

  .nav-links {
    position: absolute;
    right: 0px;
    height: 60vh;
    padding: 2em 0 2.5em 2em;
    top: 8vh;
    background-color: var(--lightblue);
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 60%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    z-index: 1;
  }

  nav button {
    background-color: var(--lightblue);
  }

  .nav-links li {
    opacity: 1;
  }

  .burger {
    display: block;
    cursor: pointer;
    z-index: 3;
    background-color: var(--lightblue);
    padding: 5px;
    border-radius: 5px;
  }

  .nav-active {
    transform: translateX(0%);
  }

  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }

  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .toggle .line2 {
    opacity: 0;
  }

  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .faq h1 {
    margin-bottom: 2em;
  }

@media all and (max-width: 953px) {
  /* fluff */
  /* Hero */
  .fluff_hero-images {
    width: 50%;
    min-width: 200px;
    margin: 0 auto;
  }
}


@media all and (max-width: 888px) {
  /* Index */
  /* Hero */
  #index_hero {
    flex-direction: column;
    align-items: center;
  }

  .index_subHero {
    text-align: center;
  }

  .index_subHero h1 {
    max-width: 85%;
    margin: 0 auto;
  }

  .subHero2 {
    margin-top: 80px;
  }
}

@media all and (max-width: 785px) {
  /* FAQ */
  .faq h2 {
    text-align: center;
  }
}

@media all and (max-width: 760px) {
  /* Footer */
  .footer_span {
    display: block;
  }

  .footer_span h3 {
    display: none;
  }
}


@media all and (max-width: 700px) {
  /* Contact */
  .contact {
    flex-direction: column;
  }
}

@media all and (max-width: 800px) {
  /* Contact */
  #index_Locations {
    padding: 8em 10%;
  }

  #index_Locations h1 {
   font-size: 3em;
   min-width: 80%;
  }
}

@media all and (max-width: 550px) {
  /* Locations */
  .locations h1 {
    margin: 0 auto;
  }
  
  .locations h2 {
    font-size: 2.5em;
    margin: 1em auto 2em;
    text-align: center;
  }
  
  .locations_Container{
    display: flex;
    flex-direction: column;
  }

  .locations_sub {
    margin: 0 auto;
  }

  .locations_sub img {
    margin: 0 auto 1.5em 0;
  }

  .locations_sub h3, .locations_sub p {
    text-align: center;
  }
}

@media all and (max-width: 576px) {
  /* Our Belief */
  #index_ourBelief, #comingSoon {
    flex-direction: column;
    align-items: center;
    padding: 5em;
  }
}

@media all and (max-width: 465px) {
  /* Fluff */
  /* Hero */
  .fluff_hero h1, .faq h1, .contact h1, .locations h1 {
    line-height: 65px;
    letter-spacing: 1px;
  }
}

@media all and (max-width: 440px) {
  /* Footer */
  #footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer_span {
    padding-top: 2.5em;
    display: block;
  }

  .footer_spanRight {
    display: none;
  }

  .footer_span p,
  .footer_span a {
    font-size: 15px;
  }

  hr {
    margin-top: 7px;
  }
}

/* Media larger than 1900px */
@media all and (min-width: 1900px) {
  /* FAQ */
  .faq {
    margin-top: 7%;
    margin-bottom: 7.5%;
  }
}

/* Media taller than 1440px */
@media all and (min-height: 1441px) {
  /* Index */
  .index_hero,
  #index_ourBelief, #comingSoon {
    padding-top: 6vh;
    padding-bottom: 6.5vh;
  }

  /* FAQ */
  .faq {
    margin-top: 25vh;
    margin-bottom: 25vh;
  }
}
