/** Shopify CDN: Minification failed

Line 205:0 Expected "}" to go with "{"

**/
/* FAQ */
.faqCtn {
  padding: var(--chunkPadding) 0;
  background: var(--navy);
  color: white;
}
.faqGrid.solo{
  padding-left: calc(var(--padding) + var(--padding));
  padding-right: calc(var(--padding) + var(--padding));
  padding-bottom: var(--chunkPadding);
}
.faqGrid.black *{
  color: black;
  text-align: left;
}
.faqGrid.black rect{
  fill: black;
}
.faqGrid.black .singleFaq {
    border-bottom: 1px solid black;
}

.singleFaq{
  opacity: 1 !important;
}

.faqGroupHeading{
  font-weight: 800;
  font-family: var(--SangBleu);
  font-size: 28px;
  margin-top: 80px;
  opacity: 1 !important;
}

.faqGrid {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.faqFlex {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.singleFaq {
  border-bottom: 1px solid white;
}
.faqAnswer ul {
    list-style: circle;
    padding-left: 20px;
}
button.faqButton {
  width: 100%;
  height: 75px;
  border: none;
  color: white !important;
  background: none;
  font-family: var(--Montserrat);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  cursor: pointer;
}
.faqButton span {
  font-size: 18px;
  font-weight: 400;
  transition: font-weight 0.5s ease;
  text-align: left;
}

.faqButton svg {
  width: 20px;
  height: 20px;
  transform: rotate(0);
  will-change: transform;

  transition: transform 0.5s ease;
}

.faqAnswer {
  padding: 0px;
  max-height: 0;
  overflow: hidden;
  font-weight: 300;
  line-height: 26px;
    width: 95%;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.singleFaq:hover svg {
  transform: rotate(15deg);
}
.singleFaq.active svg {
  transform: rotate(45deg);
}
.faqMoreQuestions {
  /* color: wheat; */
  font-size: 32px;
  line-height: 45px;
  margin: 100px auto;
}

.faqMoreQuestions a {
  color: white;
  text-decoration: underline;
}

.faqMoreQuestions strong {
  font-weight: 600;
}

.faqThinImageCtn {
  position: relative;
  width: 100%;
  border-radius: var(--imageRadius);
  overflow: hidden;
  height: 100%;
  z-index: 0;
}

.faqThinBanner {
  position: relative;
  height: 600px;
}

.faqImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faqThinInfo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 710px;
}

.faqThinHeader {
  font-family: var(--SangBleu);
  font-size: 60px;
  line-height: 120%;
  margin: 0;
  font-weight: 400;
}
.faqThinInfo .btn.white {
    margin-top: 10px;
}
@media screen and (max-width: 1100px) {
  .faqCtn {
    /* margin: 55px 0; */
  }
  .faqGrid {
    flex-direction: column;
  }

  .faqFlex {
    width: 100%;
  }
  .faqThinInfo {
    width: calc(100% - 40px);
    padding: var(--padding);
  }

  .faqThinInfo p {
    font-size: 14px;
  }

  .faqThinHeader {
    font-size: 40px;
  }

  .faqMoreQuestions {
    font-size: 20px;
    line-height: 32px;
  }

  .faqButton span {
    /* width: 85%; */
    padding-right: 10px;
    text-align: left;
  }
  .faqGrid.solo {
    padding-left: calc(var(--padding));
    padding-right: calc(var(--padding));
    padding-bottom: var(--chunkPadding);
    margin-top: 20px;

}


/* End FAQ */
