@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import '../../css/normalize.css';
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  background-color: #fff5a0;
  color: #1a457f;
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: #1a457f;
}

strong {
  font-size: 2rem;
}

.wrapper {
  position: relative;
  height: 100%;
  min-height: 100vh;
  padding-bottom: 100px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem;
  background-color: #d9bfe2;
  border-top: 0.2rem solid #1a457f;
}
.footer .fa-regular,
.footer .fa-brands {
  font-size: 2rem;
  scale: 1;
}
.footer .fa-regular:hover,
.footer .fa-brands:hover {
  scale: 1.1;
  transition: scale 200ms ease-in;
}

@media screen and (min-width: 768px) {
  .footer {
    justify-content: flex-end;
  }
}
.header {
  background-color: #d9bfe2;
  border-bottom: 0.2rem solid #1a457f;
}
.header__nav {
  opacity: 0;
  height: 0.3rem;
  transition: transform 800ms ease;
  pointer-events: none;
}
.header__nav-logo {
  margin-bottom: 1.5rem;
  width: 110px;
  height: auto;
}
.header__nav-logo--active {
  pointer-events: all;
}
.header__nav-list-item {
  padding: 1rem 0 1rem 0;
  list-style-type: none;
  border-top: 0.2rem solid #1a457f;
  transition: font-weight 300ms ease;
}
.header__nav-list-item:hover {
  font-weight: 900;
}
.header__nav--active {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  height: fit-content;
  opacity: 1;
  pointer-events: all;
}
.header__hamburger-icon {
  display: block;
  cursor: pointer;
}
.header__hamburger-icon-bar {
  display: block;
  margin: 0.3rem auto;
  height: 0.15rem;
  width: 1.5rem;
  border-radius: 0.1rem;
  background-color: #1a457f;
  transition: transform 0.3s, opacity 0.3s;
}
.header__hamburger-icon--active .header__hamburger-icon-bar:first-child {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger-icon--active .header__hamburger-icon-bar:nth-child(2) {
  opacity: 0;
}
.header__hamburger-icon--active .header__hamburger-icon-bar:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
.header label {
  padding: 2.5rem;
  width: 1.5rem;
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#header__hamburger-toggle {
  display: none;
}

.emphasise {
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .header__nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    height: 8rem;
    opacity: 1;
    pointer-events: all;
  }
  .header__nav-logo {
    margin: 1rem 3rem 1rem 2rem;
    width: 110px;
    height: auto;
  }
  .header__nav-list-item {
    display: inline-block;
    text-align: center;
    border: transparent;
    width: 7rem;
    height: 4rem;
    transition: all 400ms ease;
  }
  .header__nav-list-item:hover {
    border-bottom: 0.2rem dotted #1a457f;
  }
  .header__hamburger-icon {
    display: none;
  }
  label {
    display: none !important;
  }
}
.hero {
  padding: 6rem 3rem 6rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.hero__txt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 95%;
}
.hero__txt--heading {
  line-height: 3.8rem;
}
.hero__txt--info {
  font-size: 1.5rem;
  line-height: 2.6rem;
}
.hero__txt--btn {
  margin-top: 1rem;
  align-self: flex-start;
  border: none;
  background-color: transparent;
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
  color: #1a457f;
  cursor: pointer;
  scale: 1;
}
.hero__txt--btn:hover {
  scale: 1.1;
  transition: scale 200ms ease-in;
}
.hero__img-cont--img {
  border: 0.2rem solid transparent;
  border-top-left-radius: 20rem;
  border-top-right-radius: 20rem;
  height: 400px;
  width: auto;
}

.products {
  padding: 0 2rem 0 2rem;
  border-top: 0.2rem solid #1a457f;
  background-color: #f8a4a4;
}
.products__heading {
  padding: 1rem 0 1rem 0;
  text-align: center;
}
.products__cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem 3rem 2rem;
  gap: 2rem;
}
.products__cont--images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.products__cont--images-img {
  border: 0.2rem solid #1a457f;
  border-radius: 1.5rem;
  height: auto;
  width: 320px;
}
.products__cont--images .hide {
  display: none;
}
.products__cont--para {
  padding-top: 1.5rem;
  line-height: 2.8rem;
  font-size: 1.5rem;
}

.reviews {
  display: flex;
  flex-direction: column;
}
.reviews__review {
  padding: 3rem 3rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-top: 0.2rem solid #1a457f;
  background-color: #c0dfe1;
}
.reviews__review--txt {
  line-height: 2.5rem;
  font-size: 1.2rem;
}
.reviews__review q {
  quotes: none;
}
.reviews__review .quoted {
  font-weight: 800;
  font-size: 1.5rem;
}

@media screen and (min-width: 980px) {
  .hero {
    padding: 8rem;
    flex-direction: row;
  }
  .hero__txt {
    flex-basis: 60%;
  }
  .hero__img-cont {
    flex-basis: 35%;
  }
  .reviews__review {
    justify-content: center;
    flex-direction: row;
    gap: 9rem;
  }
  .reviews__review--txt {
    flex-basis: 33%;
  }
}
@media screen and (min-width: 768px) {
  .products {
    padding: 3rem;
  }
  .products__cont {
    padding-top: 0.8rem;
    flex-direction: column;
  }
  .products__cont--images {
    flex-direction: row;
  }
  .products__cont--images-img {
    height: 500px;
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .products__cont--images-img {
    height: 320px;
  }
  .products__cont--images .hide {
    display: flex;
  }
}
.about {
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem 3rem 3rem;
}
.about__img {
  display: none;
}
.about__cont {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.about__cont--info {
  line-height: 2.6rem;
}

@media only screen and (min-width: 1100px) {
  .about {
    flex-direction: row;
    padding-top: 3rem;
  }
  .about__img {
    display: block;
    padding: 2rem;
    border: 0.2rem solid transparent;
    border-top-left-radius: 20rem;
    border-top-right-radius: 20rem;
  }
  .about__heading {
    margin-bottom: 2rem;
  }
  .about__cont {
    padding: 0 3rem;
  }
}
.faq {
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem 5rem 3rem;
}
.faq__heading {
  align-self: center;
  margin: 2rem;
}
.faq__cont {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 1;
}
.faq__cont--question {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 0.2rem solid #1a457f;
  border-radius: 0.8rem;
  background-color: #fff;
}
.faq__cont--question-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.faq__cont--question-heading .fa-angle-down {
  font-size: 1.5rem;
}
.faq__cont--question-response {
  position: relative;
  margin: 1rem 0 1rem 0;
  line-height: 2.6rem;
  font-weight: 500;
}
.faq__cont--question-btn {
  position: absolute;
  right: 0;
  border: none;
  background-color: transparent;
  color: #1a457f;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .faq__cont {
    padding: 3rem;
  }
}
.prep {
  display: flex;
  flex-direction: column;
  padding: 3rem;
}
.prep__heading {
  align-self: center;
  margin: 2vh 2vh 3vh 2vh;
}
.prep__cont {
  display: flex;
  flex-direction: column;
  gap: 3vh;
}
.prep__cont--info {
  display: flex;
  flex-direction: column;
  padding: 3vh;
  border: 0.2rem solid #1a457f;
  border-radius: 0.8rem;
  background-color: #fff;
}
.prep__cont--info-para {
  margin-top: 1.5vh;
  line-height: 2.6rem;
}

@media screen and (min-width: 768px) {
  .prep__heading {
    margin-bottom: 0;
  }
  .prep__cont {
    padding: 3rem;
  }
}
.acuity {
  display: flex;
  flex-direction: column;
  padding: 3rem 0 0 0;
  border-bottom: 0.2rem solid #1a457f;
  background-color: #c0dfe1;
}
.acuity__heading {
  align-self: center;
  text-align: center;
  margin: 2rem;
}
.acuity__iframe {
  padding: 0 1.8rem 1.8rem 1.8rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem 5rem 3rem;
}
.pricing__heading {
  align-self: center;
  margin: 2rem;
}
.pricing__cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
}
.pricing__cont--table {
  padding: 3vh;
  border-collapse: collapse;
  border: 0.2rem solid #1a457f;
  background-color: #fff;
  line-height: 2.2rem;
}
.pricing__cont--table-border {
  padding: 1.5rem;
  border-bottom: 0.2rem solid #1a457f;
  border-left: 0.2rem solid #1a457f;
}

#cell {
  padding: 1.5rem;
}

/*# sourceMappingURL=index.css.map */
