:root {
  --section-main-bg-color: #fff;
  --section-secondary-bg-color: #fff4ef;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; 
}

.layout.container {
  min-height: 600px;
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;

  padding-top: 70px;
  padding-bottom: 0;
}
main {
  /* padding: 25px; */
}
#spy-links {
  display: flex;
  flex-direction: row;
  font-family: "NeueHaasGroteskDisplayProBold";
  font-style: italic;
  gap: 1em;
  justify-content: center;
  margin-top: 110px;
}
#spy-links a {
  font-size: 18px;
}

#faq {
  background: var(--section-secondary-bg-color);
  min-height: 400px;
}

.question-tab {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #d8d4d1;
}

.question-tab.last {
  border-bottom: 1px solid #d8d4d1;
}

.question-tab.opened.last {
  border-bottom: 0;
}

.answer-tab {
  font-family: Messina Sans;
  font-size: 15px;
  color: #2a2928;
  overflow: hidden;
  display: none;
}

.question-wrap {
  font-family: Messina Sans;
  font-weight: bold;
  font-size: 18px;
  color: #2a2928;
  color: rgb(42, 41, 40);
  line-height: 1.5;
  text-transform: uppercase;
  user-select: none;
  cursor: pointer;
}

.question-wrap .faq-icon {
  user-select: none;
}

.question-wrap .faq-icon:after {
  content: "+";
  font-size: 32px;
  width: 32px;
  height: 39px;
  text-align: right;
  line-height: 1;
  float: right;
  display: inline-block;
  position: relative;
  top: -4px;
  cursor: pointer;
  font-weight: normal;
}

.opened .question-wrap .faq-icon:after {
  content: "-";
}

.question-tab.opened + .answer-tab {
  display: block;
  padding-bottom: 30px;
}

#banner {
  background: url("/mysite/images/how-it-works/how-it-works-banner.jpeg") center
    no-repeat;
  background-size: cover;
  height: 35vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.banner-box {
  max-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-box-title {
  font-family: "NeueHaasGroteskDisplayProBold";
  font-size: 56px;
  color: #fff;
  margin-bottom: 10px;
}
.buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.buttons .btn {
  width: 100%;
}
/* :target:before {
  content: "";
  display: block;
  height: 70px;
  margin: -70px 0 0;
  background: #fff;
} */
section .inner {
  max-width: 800px;
  margin: 0 auto;
}
section .inner ul {
  list-style-type: "- ";
  padding-left: 15px;
  margin-bottom: 40px;
}
section {
  padding-top: 40px;
  padding-bottom: 20px;
}
section .inner ul li {
  font-size: 15px;
}
.section-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 0;
  font-family: "NeueHaasGroteskDisplayProBold";
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  html {
   
    scroll-padding-top: 0; 
  }
  
  .layout {
    background: #fff;
    padding: 15px;
    padding-bottom: 0;
  }
  #spy-links {
    margin: 0;
  }
  #faq {
    background: var(--section-secondary-bg-color);
    min-height: 400px;

    margin-right: -15px;
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #banner {
    height: 100vw;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 0;
  }
  .banner-box {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .banner-box-title {
    font-size: 38px;
  }
  .section-title {
    margin-bottom: 30px;
    font-size: 32px;
    text-align: left;
  }
  #faq .section-title {
    margin-bottom: 30px;
  }
  /* :target:before {
    content: "";
    display: block;
    height: 5px;
    margin: -5px 0 0;
    background: #fff;
    margin-right: -15px;
    margin-left: -15px;
  } */
}
