.new-accordion * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 7px;
  border-top-width: 9px;
}

.new-accordion body {
  font-family: 'Lato';
}

.new-accordion h1 {
  font-size: 2em;
  padding: 2em;
  text-align: center;
}

.new-accordion .accordion dt > a {
  text-align: center;
  font-weight: 700;
  padding: 2em;
  display: block;
  text-decoration: none;
  color: #fff;
  -webkit-transition: background-color 0.5s ease-in-out;
}

.new-accordion .accordion dd {
  background-color: #FE7E6E;
  background-image: linear-gradient(30deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6), linear-gradient(150deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6), linear-gradient(30deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6), linear-gradient(150deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6), linear-gradient(60deg, #F0A18D 25%, transparent 25.5%, transparent 75%, #F0A18D 75%, #F0A18D), linear-gradient(60deg, #F0A18D 25%, transparent 25.5%, transparent 75%, #F0A18D 75%, #F0A18D);
  background-size: 28px 49px;
  background-position: 0 0, 0 0, 14px 24.5px, 14px 24.5px, 0 0, 14px 24.5px;
  color: #000000;
  font-size: 1em;
  line-height: 1.5em;
}

.new-accordion .accordion dd > p {
  padding: 1em 2em 1em 2em;
}

.new-accordion .accordion {
  position: relative;
  background-color: #fec810;
  /*background-image: linear-gradient(30deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6), linear-gradient(150deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6), linear-gradient(30deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6), linear-gradient(150deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6), linear-gradient(60deg, #F0A18D 25%, transparent 25.5%, transparent 75%, #F0A18D 75%, #F0A18D), linear-gradient(60deg, #F0A18D 25%, transparent 25.5%, transparent 75%, #F0A18D 75%, #F0A18D);*/
  background-size: 28px 49px;
  background-position: 0 0, 0 0, 14px 24.5px, 14px 24.5px, 0 0, 14px 24.5px;
}

.new-accordion .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0px;
  border-radius: 84px;
  border-top-width: 16.88889px;
  border-left-width: 63.1111px;
  font-size: 15px;
  font-family: 'Cherry Swash', serif;
}

.new-accordion .accordionTitle {
  background-color: #22313F;
  border-bottom: 1px solid #2c3e50;
}

.new-accordion .accordionTitle:before {
  content: "+";
  font-size: 1.5em;
  line-height: 0.5em;
  float: left;
  -moz-transition: -moz-transform 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}

.new-accordion .accordionTitle:hover {
  background-color: #2c3e50;
}

.new-accordion .accordionTitleActive {
  background-color: #34495e;
}

.new-accordion .accordionTitleActive:before {
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.new-accordion .accordionItem {
  height: auto;
  overflow: hidden;
}

@media all {
  .new-accordion .accordionItem {
    max-height: 50em;
    -moz-transition: max-height 1s;
    -o-transition: max-height 1s;
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
  }
}

@media screen and (min-width: 48em) {
  .new-accordion .accordionItem {
    max-height: 15em;
    -moz-transition: max-height 0.5s;
    -o-transition: max-height 0.5s;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }
}

.new-accordion .accordionItemCollapsed {
  max-height: 0;
}

.new-accordion .animateIn {
  -webkit-animation-name: accordionIn;
  -webkit-animation-duration: 0.65s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: normal;
  -moz-animation-duration: 0.65s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionIn;
  animation-duration: 0.65s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.new-accordion .animateOut {
  -webkit-animation-name: accordionOut;
  -webkit-animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: accordionOut;
  -moz-animation-duration: 0.75s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionOut;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

@keyframes accordionIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes accordionOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

.custom-faq {
  border-radius: 12px;
  box-shadow: -11px 11px 0px 10px rgb(254, 126, 110);
  border-top-left-radius: 356px;
  border-top-right-radius: 53px;
  border-bottom-right-radius: 285px;
  border-bottom-left-radius: 188px;
  /*color: var(--bs-emphasis-color);*/
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  border: 8.87px ridge #fec810;
  border-top-width: 8.33333px;
  border-right-width: 10.33333px;
  border-bottom-width: 9.33333px;
  border-left-width: 26.33333px;
  /*font-size: 22px;*/
  /*font-family: 'Bad Script', serif;*/
  /*font-weight: bold;*/
  width: 85%;
  height: auto;
  padding: 20px;
  text-align: center;
  background: linear-gradient(30deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6) 0 0 / 28px 49px, linear-gradient(150deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6) 0 0 / 28px 49px, linear-gradient(30deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6) 14px 24.5px / 28px 49px, linear-gradient(150deg, #F0C0A6 12%, transparent 12.5%, transparent 87%, #F0C0A6 87.5%, #F0C0A6) 14px 24.5px / 28px 49px, linear-gradient(60deg, #F0A18D 25%, transparent 25.5%, transparent 75%, #F0A18D 75%, #F0A18D) 0 0 / 28px 49px, linear-gradient(60deg, #F0A18D 25%, transparent 25.5%, transparent 75%, #F0A18D 75%, #F0A18D) 14px 24.5px / 28px 49px;
}

