/*----- Importing Google fonts -----*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shrikhand&display=swap');

@font-face {
  font-family: "Grotesque";
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Regular.eot"), url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Regular.ttf"), url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Regular.woff");
  font-weight: normal;
}
@font-face {
  font-family: "Grotesque Black";
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Black.eot"), url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Black.ttf"), url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Black.woff");
  font-weight: bold;
}

:root {
  --primary-color: #C39B6A;
  --secodary-color: #874F2A;
  --background-color: #F9EFD4;
  --accent-color: #d66853;
  --text-color: #383838;
  --white-color: #fff;
  --black-color: #000;

  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-seimibold: 600;
  --font-weight-bold: 700;

  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-C: 50%;

  --site-max-width: 1300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-optical-sizing: auto;
  font-family: "Oswald", sans-serif;
  background-color: var(--background-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}


.container {
  min-height: 100vh;
  display: flex;
  /*align-items: center;*/
  align-content: center;
  text-align: center;
  padding-top: 80px;
}

.section-content {
  max-width:var(--site-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--black-color);

}

.section-title {
  width: 100%;
  text-align: left;
  font-size: var(--font-size-xxl);
  margin: 20px auto;
  margin-bottom: 10%;
  color: var(--black-color);
}

.section-break {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.section-break:after {
  content: '';
  flex-grow: 1;
  height: 5px;
  background: #d66853;
  min-width: 20px;
  margin: auto;
}
.section-break:before {
  content: '';
  flex-grow: 1;
  height: 5px;
  background: #d66853;
  min-width: 20px;
  margin: auto;
}
.section-break:after {
  margin-left: 20px;
}

.section-break:before {
  margin-right: 20px;
}

/*--------------------------------
************ HEADER *************
--------------------------------*/
header {
  position: fixed;
  background-color: var(--primary-color);
  width: 100%;
  z-index: 100;
}

header .nav-bar {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: grid;
}
.nav-bar .logo-shadow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: -5px 5px 6px rgba(0, 0, 0, 0.2);
}
.nav-bar .nav-logo .logo-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.logo-shadow-top .logo-shadow-bottom {
  grid-column: 1;
  grid-row: 1;
}

.nav-bar .nav-menu {
  display: flex;
  /*gap: 15px;*/
  font-weight: var(--font-weight-medium);

}

.nav-bar .nav-menu .nav-link {
  padding: 27px 20px;
  padding-bottom: 23px;
  color: var(--text-color);
  font-size: var(--font-size-l);
  transition: 0.3s ease;

}
.nav-bar .nav-menu .nav-link:hover {
  color: var(--accent-color);
  background: var(--background-color);
  border-bottom: 5px solid var(--accent-color);
}

#menu-nav-button {
  display: none;
}

/*--------------------------------
************* HERO **************
--------------------------------*/
#hero {
  align-items: center;
}

.hero-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-h1 {
  font-size: 4rem;
  color: var(--secodary-color);
  font-family: 'Shrikhand', sans-serif;
}

.hero-image {
  width: 40%;
  min-width: 300px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: var(--font-size-m);
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary {
  background: #E8A87C;
  color: var(--text-color);
}

.btn-primary:hover {
  background: #D4956A;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--text-color);
}

.btn-secondary:hover {
  background: #7B9CAD;
  color: white;
  border: 2px solid white;
  transform: translateY(-2px);
}


/*--------------------------------
************* ABOUT **************
--------------------------------*/

.about-content {
  display: flex;
  align-items: center;
}

.about-image {
  height: 400px;
  width: 400px;
  margin: auto 2rem auto 0;
}

.about-text {
  height: auto;
  width: var(--site-max-width);
  text-align: left;
  font-size: var(--font-size-l);
}


/*--------------------------------
*********** PRODUCTS ************
--------------------------------*/
.product-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

div.card {
  width: 350px;
  height: 350px;
  border-radius: 6%;
  box-shadow: 0 1px 7px rgba(0, 0, 0, .3);
  overflow: hidden;
}

div.card .thumb {
  width: auto;
  height: 260px;
  background-image: url("../assets/images/Nav-logo1.svg");
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}

div.card .infos {
  width: auto;
  height: 350px;
  position: relative;
  padding: 14px 24px;
  background: #F9EFD4;
  transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  text-align: left;
}

div.card .infos .title {
  position: relative;
  margin: 10px 0;
  letter-spacing: 3px;
  color: #152536;
  font-family: 'Grotesque Black', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  text-shadow: 0 0 0 #32577f;
}

div.card .infos .price, div.card .infos .txt-short {
  margin-bottom: 10px;
  text-transform: none;
  font-size: 0.95rem;
  color: rgba(21, 37, 54, .7);
  font-family: 'Grotesque', sans-serif;
}

div.card .infos .txt-short {
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  opacity: 0;
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}

div.card .infos .txt {
  font-family: 'Merriweather', sans-serif;
  line-height: 2;
  font-size: 0.95rem;
  color: rgba(21, 37, 54, .7);
  opacity: 0;
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}

div.card .infos .details {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 10px 0;
  padding: 20px 24px;
  letter-spacing: 1px;
  font-family: 'Grotesque Black', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transition: 0.1s 0.1s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  text-decoration: none;
}

div.card:hover .infos {
  transform: translateY(-260px);
}

div.card:hover .infos .txt-short, div.card:hover .infos .txt, div.card:hover .infos .details {
  opacity: 1;
}

#sd-classic {
  /*  Classic Sourdough - Always a classic
      Handcrafted with organic flour and natural sourdough starter,
      delivering a robust flavor and chewy texture, perfect for any occasion. */
  background-image: url("../assets/images/sd-classic.jpeg");
}

#sd-oce {
  /*  Old Ellicott City Sourdough Loaf - Perfect for cozy meals or holiday gatherings
      A savory sourdough masterpiece infused with Parmigiano Reggiano, fragrant thyme, rosemary, and just a hint of roasted garlic.
      Golden, aromatic, and bursting with flavor in every slice!   */
  background-image: url("../assets/images/sd-oce.jpeg");
}

#sd-chocolatechip {
  /*	Chocolate Chips Sourdough - A classic with a chocolaty twist
      Soft, sweet, and wholesome ingredients, offer a delightful blend of rich chocolate and moist, fluffy texture	*/
  background-image: url("../assets/images/sd-chocolatechip.jpeg");
}

#sd-baconcheddar {
  /*	Bacon and Cheddar Loaf - Bacon
      It's got bacon, enough said.*/
  background-image: url("../assets/images/sd-baconcheddar.jpeg");
}

#sd-roastedgarlic {
  /*	Roasted Garlic & White Cheddar Sourdough - Not for vampires
      A crunchy outer crust with tender roasted garlic gloves & hunks of aged white cheddar cheese.*/
  background-image: url("../assets/images/sd-roastedgarlic.jpeg");
}

#sd-doublechocolate {
  /*	Double Chocolate Organic Loaf - When you want bread for dessert
      Made with organic cocoa powder that accentuates the classic sourdough flavor we all know and love and brimming with a generous amount of semi-sweet chocolate chips, perfect for a cozy morning frenchtoast or midnight snack.	*/
  background-image: url("../assets/images/sd-doublechocolate.jpeg");
}

#sd-butter {
  /*	The Butterloaf - Perfect for toast, sandwiches, or just tearing into warm.
      A tender, golden sourdough loaf enriched with real butter for a soft, rich crumb and a delicate hint of croissant-like flavor. Naturally leavened and slow-fermented, this loaf brings together the tang of sourdough and the indulgence of buttery layers. */
  background-image: url("../assets/images/sd-butter.jpeg");
}

#c-brownbutter {
  /*  Brown Butter Pumpkin Oatmeal Cookies - The perfect treat for cozy afternoons or any time you crave a taste of autumn!
      Irresistibly soft and chewy. Infused with the nutty essence of brown butter,
      the subtle sweetness of pumpkin puree, and the warm spices of fall. */
  background-image: url("../assets/images/c-brownbutter.jpeg");
}

#c-midnightvelvet {
  /*  Midnight Velvet Cookie - Familiar, indulgent, and completely irresistible
      A classic cookie with a nostalgic twist. A creamy, silky smooth white chocolate filling sandwiched between two soft,
      dark chocolate cookies made with black cocoa for a deep, rich flavor.  */
  background-image: url("../assets/images/c-midnightvelvet.jpeg");
}

#c-hazleheart {
  /*  Hazel Heart - Rich, nutty, and unforgettable… just like love at first bite!
      A double chocolate cookie packed with semi-sweet chocolate chips and toasted hazelnuts.
      Filled with a Ferrero Rocher wrapped in creamy Nutella ganache that creates a heart of gold in every bite.  */
  background-image: url("../assets/images/c-hazelheart.jpeg");
}

#sd-foccacia {
  /*	Sourdough Focaccia - Deliciously Different
      A rustic blend of organic ingredients, with a crisp crust and tender crumb, topped with aromatic herbs and infused olive oil.	*/
  background-image: url("../assets/images/sd-foccacia.jpeg ");
}

#c-4packgift {
  /*	4-Cookie Gift Box - A gift for you
      Our best seller, now perfectly packed for a grab and go treat.
      This box of 4 Brown Butter Oatmeal Chocolate Chip Cookies is the ideal gift for any holiday or a delightful indulgence for yourself.	*/
  background-image: url("../assets/images/c-4packgift.jpeg");
}
#c-chocolatechipscones {
  /*	Sourdough Chocolate Chips Scones - A box of heaven
  Fluffy sourdough scones, brimming with chocolate chips.
  2 scones per box */
  background-image: url("../assets/images/c-chocolatechipscones.jpeg");
}

#bittyclub {
  /*	Bitty Bread Club - Membership perks!
  A monthly membership for sourdough lovers that guarantees you an organic classic sourdough loaf each week one of which can be swapped out for a special flavor once a month. Your first delivery or pickup will include a reusable Bitty Bread Bakers branded tote bag.	*/
  background-image: url("../assets/images/BittyBreadClub.jpeg");
}


/*--------------------------------
********* TESTIMONIALS **********
--------------------------------*/
.testimonial-section {
  text-align: center;
  padding: 50px 20px;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-template-areas:
                "b b a a a"
                "c c c d d"
                "e g g g f";
  flex-wrap: nowrap; /* Default: No wrapping for larger screens */
}
.card-a {
  grid-area: a;
}

.card-b {
  grid-area: b;
}

.card-c {
  grid-area: c;
}

.card-d {
  grid-area: d;
}

.card-e {
  grid-area: e;
}

.card-f {
  grid-area: f;
}

.card-g {
  grid-area: g;
}

.testimonial-card {
  min-width: 300px;
  margin: 10px 10px;
  padding: 20px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  align-content: center;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

.testimonial-text {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 15px;
}

/*--------------------------------
************** FAQ ***************
--------------------------------*/

.faq-content {
  display: grid;
  width: 800px;
  /*max-width: 850px;*/
  height: max-content;
  margin: 0 auto;
  justify-content:  center;
  color: rgba(48, 69, 92, 0.8);
}
.faq-questions {
  display: inline-block;
  position: relative;
  max-width: calc(var(--site-max-width)*.9);
  min-width: 325px;
  padding: 10px 20px 20px;
  border-radius: var(--border-radius-m) ;
}

.faq-questions h2 {
  font-size: var(--font-size-m);
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
  color: var(--black-color);
}
.faq-questions p {
  color: rgba(48, 69, 92, 0.8);
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}
.faq-questions ul {
  list-style: none;
  padding: 0 20px 10px;
  margin: 0;
  background-color: var(--white-color);
  border-radius: 5px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2),
  0 2px 2px 0 rgba(255, 255, 255, 0.19);
}
.faq-questions ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
}

.faq-questions ul li:nth-child(1){ border:none; }
.faq-questions ul li:nth-of-type(1) { animation-delay: 0.5s; }
.faq-questions ul li:nth-of-type(2) { animation-delay: 0.75s; }
.faq-questions ul li:nth-of-type(3) { animation-delay: 1.0s; }
.faq-questions ul li:last-of-type { padding-bottom: 0; }

.faq-questions ul li .arrow {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}
.faq-questions ul li .fas{
  color: var(--accent-color);
  font-size: 15px;
  margin-right: 10px;
}
.faq-questions ul li .arrow:before, ul li .arrow:after {
  content: "";
  position: absolute;
  background-color: var(--accent-color);
  width: 3px;
  height: 9px;
}
.faq-questions ul li .arrow:before {
  transform: translate(-2px, 0) rotate(45deg);
}
.faq-questions ul li .arrow:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.faq-questions ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
}
  .faq-questions ul li label {
  cursor: pointer;
  position: absolute;
  display: block;
  width: 100%;
  height: 90%;
  z-index: 3;
}
.faq-questions ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
.faq-questions ul li input[type=checkbox]:checked ~ .arrow:before {
  transform: translate(2px, 0) rotate(45deg);
}
.faq-questions ul li input[type=checkbox]:checked ~ .arrow:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

.transition, p, ul li .arrow:before, ul li .arrow:after {
  transition: all 0.25s ease-in-out;
}

.flipIn, h1, ul li {
  animation: flipdown 0.5s ease both;
}
.no-select, h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}
.purchase-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin:10%;
  padding: 10px 0;
}

/*--------------------------------
************* FOOTER **************
--------------------------------*/
.footer-container{
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
footer {
  background: #FFFFEE;
  padding: 2rem 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: var(--text-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a img {
  width: 35px;
  height: 35px;
}

.social-links a:hover {
  background: #E8A87C;
  transform: translateY(-2px);
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  opacity: 85%;
}

.tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.bottom-logo{
  color: var(--secodary-color);
  font-family: 'Shrikhand', sans-serif;
}

.footer-note {
  color: #6B7075;
}

/*--------------------------------
********* MEDIA QUERIES **********
--------------------------------*/
@media only screen and (max-width: 1100px) {

  .testimonial-carousel {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 810px) {

  .about-content {
    flex-direction: column;
  }

  .about-image {
    width: 100%;
    height: auto;
    /*scale: 85%;*/
    margin: 0 10px;
  }

  .about-content .about-text {
    width: 100%;
  }

  .faq-content {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 835px) or (hover: none) {
  div.card {
    display: grid;
    width: 80vw;
    height: max-content;
    grid-template-columns: repeat(6, 1fr);
    border-radius: var(--border-radius-s);
  }

  /* Product Cards*/
  div.card .thumb {
    grid-column: 1 / 3;
    min-height: 100%
  }

  div.card .infos {
    grid-column: 3 / 7;
    height: max-content;

  }

  div.card:hover .infos {
    transform: translateY(0px);
  }

  div.card .infos .txt-short, div.card .infos .txt, div.card .infos .details {
    opacity: 1;
  }

  .faq-content {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 720px){
  .hero-h1 {
    font-size: 3rem;
  }

  .faq-content {
    width: 100%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 600px){
  /* Hamburger Menu */
  .burger-wrapper {
    cursor: pointer;
  }

  #menu-links{
    background: var(--primary-color);
    height: 100vh;
    width: 70%;
    position: fixed;
    right: 0;
    transition-timing-function: cubic-bezier(10,2,3,1);
    transform: translateX(50rem);
    top: 0;
    z-index: 99;
    transition: 0.5s;

  }

  #menu-nav-button {
    display: none;
  }

  #menu-nav-button:checked ~ #menu-links {
    transform: translateX(0rem);
  }

  #burger {
    position: absolute;
    cursor: pointer;
    width: 3rem;
    height: 2rem;
    right: 1rem;
    top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 15px;
  }

  #burger > div {
    height: 3px;
    background-color: var(--white-color);
    transition: 0.5s;
    z-index: 999;
  }

  #menu-nav-button:checked ~ #burger > div {
    background-color: var(--white-color);
  }

  #menu-nav-button:checked ~ #burger > div:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
  }
  #menu-nav-button:checked ~ #burger > div:nth-child(2) {
    opacity: 0;
  }
  #menu-nav-button:checked ~ #burger > div:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
  }

  .nav-menu {
    flex-direction: column;
    height: 50vh;
    margin: 25vh 0;
    width: 100%;
    max-height: 900px;
  }

  .nav-bar .nav-menu {
    gap: 0;
  }
  .nav-link {
    font-size: var(--font-size-xxl);
    text-align: center;
  }

  .nav-bar .nav-menu .nav-item {
    /*width: 100%;*/
    height: 20vh;
    align-content: center;
  }

  .nav-bar .nav-menu .nav-link {
    display: block;
    font-size: var(--font-size-xl);
    border-radius: 0;
    width: 100%;
    height: 100%;
    align-content: center;
  }

  #overlay {
    transition: 0.5s ease;
  }

  #menu-nav-button:checked ~ #overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
  }

  /* Other sections*/
  .container {
    justify-content: center;
  }

  .section-content {
    max-width: 90vw;
    padding: 0 5px;
    margin: 0 5px;
  }

  .section-title {
    flex-direction: column;
    font-size: var(--font-size-l);
    text-align: center;
  }

  .section-break {
    align-items: center;
  }

  .section-break:before {
    display: none;
  }
  .section-break:after {
    content: '';
    flex-grow: 1;
    height: 5px;
    background: #d66853;
    min-width: 85vw;
    margin: auto;
  }

  .hero-h1 {
    font-size: 2.5rem;
  }

  /* about section */
  .about-content {
    flex-direction: column;
  }

  .about-image {
    width: 100%;
    height: auto;
    /*scale: 85%;*/
    margin: 0 10px;
  }

  .about-content .about-text {
    width: 100%;
  }

  .testimonial-carousel {
    display: flex;
    flex-direction: column;
  }

  /* products section*/
  div.card {
    display: grid;
    width: 80vw;
    height: max-content;
    grid-template-rows: auto 1fr;
    border-radius: var(--border-radius-s);
  }

  /* Product Cards*/
  div.card .thumb {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
    min-height: 100%
  }

  div.card .infos {
    grid-column: 1 / 7;
    grid-row: 2 / 3;
    height: max-content;

  }

  div.card:hover .infos {
    transform: translateY(0px);
  }

  div.card .infos .txt-short, div.card .infos .txt, div.card .infos .details {
    opacity: 1;
  }

  /*faq section*/

  .faq-content {
    width: 100%;
    margin: 0;
  }
  .faq-questions h2 {
    font-size: var(--font-size-s);
  }
}

