html, body {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header --------------------------------------------------------*/

#nav {
  color: #5d014b;
  font-weight: bold;
  background-color: white;
  
  z-index: 100;
  position: fixed;
  top: 2vw;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  width: 96%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  
  transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s, background-color 0.3s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.headerScroll #nav {
  top: 0;
  border-radius: 0;
  max-width: 100%;
  width: 100%;
}

.bgMenu {
  display: none;
  background-color: #5d014b;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  margin: 12px;
}

.bgbar {
  display: block;
  width: 30px;
  height: 3px;
  margin: 3px 10px;
  border-radius: 5vh;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: white;
}

.bgMenu.active .bgbar:nth-child(2) {
  opacity: 0;
}
.bgMenu.active .bgbar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.bgMenu.active .bgbar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobileMenu {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  margin-top: -20px;
  text-align: center;
  top: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  padding: 20px 0px;
  padding-top: 30px;
  background-color: white;
  z-index: -1;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.4s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 12px 18px -8px;
}

.mobileMenu.active {
  transform: scaleY(1);
}

.menuLink {
  color: #5d014b;
  font-size: 20px;
  padding: 12px 8px;
}

.menuLink:hover{
  text-decoration: underline;
}

.siteTitle {
  align-items: center;
  justify-content: center;
  margin: auto 20px;
  padding-top: 4px;
}

.buttonCTA1 {
  background-color: #5d014b;
  color: white;
  padding: 12px 30px;
  border-radius: 50vh;
  margin: 40px;
  font-size: 18px;
}

.buttonCTA1:hover {
  background-color: #a8519e;
}

.headerLink {
  margin: 0px 15px;
  font-size: 18px;
  cursor: pointer;
}

.headerLink:hover {
  text-decoration: underline;
}

/* Section1 --------------------------------------------------------*/

.section1 {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  background-color: #5d014b;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.headline {
  text-align: center;
  margin: 0px auto;
  margin-bottom: 80px;
  padding-top: 80px;
  width: 600px;
  font-size: 44px;
  font-weight: bold;
  color: white;
}

/* Section2 --------------------------------------------------------*/

.section2 {
  text-align: center;
  padding: 0px 20px;
  padding-bottom: 80px;
}

.section2Title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #5d014b;
  margin: 60px auto;
  margin-top: 100px;
  width: 320px;
}

.section2Desc {
  text-align: center;
  max-width: 600px;
  margin: 60px auto;
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
}

.benefitsBox {
  width: 400px;
  height: 320px;
  border-radius: 10px;
  margin: 30px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 25px;
  padding: 20px 60px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.benefitsBox:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 30px;
}

.benefitsTitle {
  font-weight: bold;
  color: #5d014b;
  font-size: 22px;
  width: 300px;
  margin: 15px auto;
}

.benefitsDesc {
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
}

.buttonCTA2 {
  font-weight: bold;
  background-color: #ffcc00;
  font-size: 20px;
  padding: 12px 30px;
  border-radius: 50vh;
  text-align: center;
  color: #5d014b;
  display: inline-block;
  width: 220px;
  margin: 0px auto 60px auto;
}

.buttonCTA2:hover {
  background-color: #a8519e;
  color: white;
}

/* Section3 --------------------------------------------------------*/

.section3 {
  display: flex;
  flex-direction: column;
  padding: 0px 10%;
  padding-bottom: 100px;
}

.faqBox {
  margin: 20px 0px;
}

.faqAnswer {
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
}

/* Footer --------------------------------------------------------*/

.footer {
  background-color: #5d014b;
  color: white;
  padding: 60px 40px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.footerDiv {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.footerDivTitle {
  font-weight: bold;
  font-size: 22px;
  font-family: arial;
  margin-bottom: 10px;
}

.footerItems {
  margin-top: 10px;
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
  max-width: 320px;
}

a.footerItems:hover {
  text-decoration: underline;
}

.buttonCTAX {
  background-color: white;
  color: #5d014b;
  padding: 12px 30px;
  border-radius: 50vh;
  margin: 10px 0px;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  width: 200px;
}

.buttonCTAX:hover {
  background-color: #a8519e;
  color: white;
}

.footerLogo {
  margin-left: -10px;
  margin-top: -12px;
}




/* Media Queries --------------------------------------------------------*/

@media only screen and (max-width: 400px) {
  #nav {
    width: 92%;
    top: 4vw;
  }
  .logo {
    width: 154px;
    height: 60px;
    margin-left: -6px;
    border-radius: 10px;
  }
  .navLinks {
    display: none;
  }
  .bgMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .mobileMenu {
    display: flex;
  }
  .headline {
    max-width: 70%;
    font-size: 36px;
    margin-bottom: 50px;
    padding-top: 30px;
  }
  .section2 {
    padding-bottom: 40px;
  }
  .section2Title {
    margin: 20px auto;
    margin-top: 60px;
    width: 88%;
    font-size: 28px;
  }
  .section2Desc {
    width: 90%;
    margin-top: 30px;
  }
  .benefitsParentBox {
    flex-direction: column;
  }
  .benefitsBox {
    width: 90%;
    margin: 20px 0px;
    padding: 0px 5%;
  }
  .footer {
    flex-direction: column;
  }
  .footerDiv {
    margin-bottom: 40px;
  }
}


@media only screen and (min-width: 400px) and (max-width: 480px) {
  #nav {
    width: 92%;
    top: 4vw;
  }
  .logo {
    width: 154px;
    height: 60px;
    margin-left: -6px;
    border-radius: 10px;
  }
  .navLinks {
    display: none;
  }
  .bgMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .mobileMenu {
    display: flex;
  }
  .headline {
    max-width: 60%;
    font-size: 36px;
    margin-bottom: 50px;
    padding-top: 30px;
  }
  .section2 {
    padding-bottom: 40px;
  }
  .section2Title {
    margin: 20px auto;
    margin-top: 60px;
    width: 88%;
    font-size: 28px;
  }
  .section2Desc {
    width: 90%;
    margin-top: 30px;
  }
  .benefitsParentBox {
    flex-direction: column;
  }
  .benefitsBox {
    width: 85%;
    margin: 20px auto;
    padding: 0px 8%;
  }
  .footer {
    flex-direction: column;
  }
  .footerDiv {
    margin-bottom: 40px;
  }
}


@media only screen and (min-width: 480px) and (max-width: 800px) {
  #nav {
    width: 92%;
    top: 4vw;
  }
  .logo {
    width: 154px;
    height: 60px;
    margin-left: -6px;
    border-radius: 10px;
  }
  .navLinks {
    display: none;
  }
  .bgMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .mobileMenu {
    display: flex;
  }
  .headline {
    max-width: 80%;
    font-size: 36px;
    margin-bottom: 60px;
    margin-top: 10px;
    padding-top: 40px;
  }
  .section2 {
    padding-bottom: 40px;
  }
  .section2Desc {
    width: 80%;
    margin-top: 30px;
  }
  .benefitsParentBox {
    flex-direction: column;
  }
  .benefitsBox {
    width: 70%;
    margin: 20px auto;
    padding: 0px 8%;
    padding-bottom: 40px;
    height: auto;
  }
  .footer {
    flex-direction: column;
  }
  .footerDiv {
    margin-bottom: 40px;
  }
}


@media only screen and (min-width: 800px) and (max-width: 1000px) {
  #nav {
    width: 92%;
    top: 4vw;
  }
  .logo {
    width: 154px;
    height: 60px;
    margin-left: -6px;
    border-radius: 10px;
  }
  .navLinks {
    display: none;
  }
  .bgMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .mobileMenu {
    display: flex;
  }
  .benefitsBox  {
    width: 300px;
    padding: 15px 3vw;
    margin: 2vw;
  }
}


@media only screen and (min-width: 1000px) and (max-width: 1200px) {

}