* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #444;
  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow-x: hidden;
  font-family: "Source Sans Pro", sans-serif;
  width: 100%;
  background-image: url("../images/testimonials-bkgnd.jpg");
  background-repeat: no-repeat;
  background-size: cover auto;
  background-position-x: center;
  background-position-y: top;
  background-color: rgb(192, 189, 189);
}

html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
}
.navbar {
  background: rgb(255, 204, 0);
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80px;
  top: 0px;
  margin-bottom: 0px;
}
.nav {
  list-style: none;
  display: flex;
  align-content: center;
}
.navlink a:link,
.navlink a:visited {
  border-radius: 30px;
  padding: 10px;
  border: medium solid #86b300;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  line-height: 80px;
}

.navlink a:hover,
.navlink a:active {
  color: purple;
  font-weight: 600;
}
.header {
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 10rem;
}
.logo {
  padding: 1rem;
  top: 2rem;
  left: 20%;
  width: 35%;
  height: auto;
}
.logo h1 {
  padding: 10px 5px 10px 5px;
  background: rgba(99, 10, 241, 0.3);
  text-align: center;
  text-transform: lowercase;
  font-size: 1.6rem;
  color: #fff;
}
.logo h2 {
  padding: 10px 5px 10px 5px;
  background: rgba(99, 10, 241, 0.3);
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}
.logo p {
  padding: 5px;
  background: #e4b20d;
  text-transform: none;
  font-size: 1.1rem;
  color: #000;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-weight: 600;
}
.logo a:link,
.logo a:visited {
  border: none;
  background: none;
  text-decoration: none;
  color: #fff;
}
.logo a:hover,
.logo a:active {
  color: rgb(226, 215, 253);
}
.tagline {
  padding: 1rem;
  padding-top: 4rem;
  top: 2rem;
  right: 20%;
  width: 35%;
  height: auto;
}
.tagline h1 {
  padding: 10px 5px 10px 5px;
  border: 1px solid lightgreen;
  background: rgba(99, 10, 241, 0.3);
  letter-spacing: normal;
  text-align: center;
  font-size: 2.1rem;
  color: #fff;
}

.container {
  width: 94%;
  height: auto;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
#about {
  margin: 0 auto;
  position: relative;
  text-align: left;
  color: #000;
  width: 90%;
  background-color: rgb(255, 255, 255, 0.7);
}
#about h3 {
  margin: 1rem auto 2rem;
  font-size: 2.1rem;
}
.testimonial {
  display: block;
  font-weight: 700;
  margin: 1rem auto;
}
.testimonial p {
  line-height: 2;
  font-size: 1.3rem;
  padding-top: 3rem;
}
.em {
  font-style: italic;
}
#footer {
  width: 100%;
  height: 80px;
  background-color: #617a06;
  color: #000;
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-content: center;
  margin-bottom: 2rem;
}
.footernav {
  display: flex;
  list-style: none;
  text-decoration: none;
}

.copyright {
  display: block;
  width: 100%;
  text-align: center;
  height: 30px;
  background-color: rgb(255, 204, 0);
  color: #000;
}

@media only screen and (min-width: 1991px) {
  .navlink a:link,
  .navlink a:visited {
    border-radius: 30px;
    padding: 1rem;
    font-size: 1.5rem;
  }
  .header {
    width: 50%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .logo h1 {
    font-size: 2.1rem;
  }
  .logo h2 {
    font-size: 2.1rem;
  }
  .logo p {
    font-size: 2rem;
  }
  .container {
    width: 40%;
  }

  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 2.4rem;
    text-align: left;
    color: #000;
    width: 80%;
  }
}

@media only screen and (max-width: 1990px) {
  .navlink a:link,
  .navlink a:visited {
    border-radius: 30px;
    padding: 1rem;
    font-size: 1.5rem;
  }
  .header {
    width: 50%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .logo h1 {
    font-size: 2.1rem;
  }
  .logo h2 {
    font-size: 2.1rem;
  }
  .logo p {
    font-size: 2rem;
  }
  .container {
    width: 40%;
  }

  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 2.4rem;
    text-align: left;
    color: #000;
    width: 80%;
  }
}
@media only screen and (max-width: 1650px) {
  .header {
    width: 80%;
    gap: 6rem;
    justify-content: center;
  }
  #about {
    padding: 3rem 1rem;
    width: 85%;
  }
  #about h2 {
    padding-left: 1rem;
  }
  #about h3 {
    padding-left: 1rem;
  }
  #about p {
    padding-left: 1rem;
  }
  .logo {
    width: 40%;
  }
  .logo h1 {
    font-size: 2.2rem;
  }
  .logo h2 {
    font-size: 2rem;
  }
  .logo p {
    font-size: 1.9rem;
  }
}
/* @media only screen and (max-width: 1450px) {
  .container {
    width: 80%;
  }
  .header {
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 1.4em;
    text-align: left;
    color: #000;
    width: 70%;
  }
} */
@media only screen and (max-width: 1450px) {
  .header {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .container {
    width: 80%;
  }

  #about {
    margin: 0 auto;
    padding: 3rem 1rem;

    font-size: 1.4em;
    text-align: left;
    color: #000;
    width: 60%;
  }
}
@media only screen and (max-width: 1075px) {
  .container {
    width: 85%;
  }
  .header {
    width: 100%;
    gap: 3rem;
  }
  .logo {
    width: 33%;
  }
  .tagline {
    width: 33%;
  }
  #about {
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: left;
    color: #000;
    width: 80%;
  }
  #about h3 {
    margin: 1rem auto 2rem;
    font-size: 2.1rem;
  }
}
@media only screen and (max-width: 900px) {
  /* #container {
    width: 95%;
  }
  .header {
    width: 91%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  } */
  .logo {
    width: 43%;
  }
  .logo h1 {
    font-size: 2rem;
  }
  .logo h2 {
    font-size: 1.9rem;
  }
  .logo p {
    font-size: 1.9rem;
  }
  .tagline {
    width: 43%;
  }
  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 1.5rem;
    text-align: left;
    color: #000;
    width: 100%;
  }
}
@media only screen and (max-width: 775px) {
  .header {
    gap: 3rem;
  }
  .logo {
    width: 40%;
  }
  .logo h1 {
    font-size: 1.6rem;
  }
  .logo h2 {
    font-size: 1.5rem;
  }
  .logo p {
    font-size: 1.5rem;
  }
  .tagline {
    width: 40%;
  }
  .tagline h1 {
    font-size: 1.6rem;
  }
  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 1.5rem;
    text-align: left;
    color: #000;
    width: 94%;
  }
  #about h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    letter-spacing: 0.4px;
  }
  #about h3 {
    margin: 3rem auto;
    font-size: 1.7rem;
    line-height: 2;
    letter-spacing: 0.6px;
  }
}

@media only screen and (max-width: 540px) {
  .navbar {
    background: none;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-bottom: 0px;
  }
  .nav {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    height: auto;
    width: 90%;
    margin: 0 auto;
    margin-top: 1rem;
  }
  .navlink a:link,
  .navlink a:visited {
    border-radius: 30px;
    display: block;
    background-color: rgba(253, 251, 250, 0.7);
    padding: 10px;
    border: medium solid #555;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    padding-left: 20%;
  }
  .navlink a:hover,
  .navlink a:active {
    color: purple;
  }
  .header {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0;
    display: block;
  }
  .logo {
    display: block;
    width: 80%;
    margin: 2rem auto;
    background-color: rgba(253, 251, 250, 0.5);
  }
  .logo h1 {
    width: 100%;
    display: block;
  }
  .logo a:link,
  .logo a:visited {
    border: none;
    background: none;
    text-decoration: none;
    color: #fff;
  }
  .logo a:hover,
  .logo a:active {
    color: purple;
    font-weight: 700;
  }
  .tagline {
    width: 90%;
    margin: 2rem auto;
    display: block;
  }
  .tagline h1 {
    letter-spacing: normal;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #000;
    background-color: rgba(253, 251, 250, 0.5);
    display: block;
  }

  #about {
    margin-bottom: 3rem;
    width: 100%;
  }

  #about h3 {
    margin: 1rem auto;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: normal;
  }

  #footer {
    width: 100%;
    height: auto;
    background: none;
    color: #000;
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
  }
  .footernav {
    display: flex;
    list-style: none;
    text-decoration: none;
    flex-direction: column;
  }
  .copyright {
    display: block;
    width: 100%;
    text-align: center;
    height: 100px;
    background: none;
    color: #000;
  }
}
@media only screen and (max-width: 400px) {
  .navbar {
    background: none;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    top: 0px;
    margin-bottom: 0px;
  }
  .nav {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    height: auto;
    width: 90%;
    margin: 0 auto;
  }
  .navlink a:link,
  .navlink a:visited {
    border-radius: 30px;
    display: block;
    background-color: rgba(253, 251, 250, 0.5);
    padding: 10px;
    border: medium solid #555;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    padding-left: 20%;
  }
  .logo {
    width: 85%;
    display: block;
    margin: 2rem auto;
  }

  .tagline {
    width: 100%;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
  }
  .tagline h1 {
    letter-spacing: normal;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #000;
    background-color: rgba(253, 251, 250, 0.5);
  }

  #about {
    margin-bottom: 3rem;
  }

  #about h3 {
    margin: 3rem auto;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: normal;
  }

  #footer {
    width: 100%;
    height: auto;
    background: none;
    color: #000;
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
  }
  .footernav {
    display: flex;
    list-style: none;
    text-decoration: none;
    flex-direction: column;
  }
  .copyright {
    display: block;
    width: 100%;
    text-align: center;
    height: 100px;
    background: none;
    color: #000;
  }
}
@media only screen and (min-width: 100px) and (max-width: 290px) {
  .navlink a:link,
  .navlink a:visited {
    padding: 7px;
    font-size: 1.2rem;
    color: #000;
    padding-left: 15px;
  }

  .navlink a:hover,
  .navlink a:active {
    color: purple;
    font-weight: 600;
  }
  .container {
    width: 100%;
  }
  .masthead {
    width: 100%;
    display: block;
    padding-top: 1rem;
  }
  .logo {
    width: 100%;
    display: block;
    left: 0;
    margin: 1rem auto;
  }
  .logo h1 {
    padding: 10px 5px 10px 5px;
    background: rgb(255, 255, 255, 0.5);
    text-align: center;
    text-transform: lowercase;
    font-size: 1.6rem;
    color: #000;
  }
  .logo h2 {
    padding: 10px 5px 10px 5px;
    background: rgb(255, 255, 255, 0.5);
    text-align: center;
    font-size: 1.4rem;
    color: #000;
  }
  .logo p {
    padding: 5px;
    background-color: rgba(253, 251, 250, 0.5);
    text-transform: none;
    font-size: 1.1rem;
    color: #000;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-weight: 600;
  }
  .logo a:link,
  .logo a:visited {
    border: none;
    background: none;
    text-decoration: none;
    color: #000;
  }
  .logo a:hover,
  .logo a:active {
    color: purple;
  }
  .tagline {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 2rem auto;
  }
  .tagline h1 {
    margin: 0 auto;
    height: auto;
    font-size: 1.3rem;
    line-height: 1.1;
  }

  #about {
    padding: 1rem;
  }
  #about h3 {
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1.5rem;
    padding-bottom: 0;
  }
  .testimonial {
    display: block;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  .testimonial p {
    line-height: 2;
    font-size: 1.3rem;
    padding-bottom: 2.5rem;
  }
  .copyright {
    color: #000;
    margin-top: 2rem;
    padding-top: 2rem;
    font-size: 0.8rem;
  }
}
