.sf-faq-accordion { margin-top: 40px; }

.sf-faq-item{
  border-bottom: 1px solid #1E1E1E;
  overflow: hidden;

  -webkit-mask-image: -webkit-radial-gradient(white, black);
  will-change: border-radius;
  transform: translateZ(0);

  transition: border-radius .42s cubic-bezier(0, 0, 0.2, 1), border-color .35s ease;
  border-radius: 0;
}

.sf-faq-item.active{
  transition: border-radius .28s cubic-bezier(0.4, 0, 1, 1), border-color .35s ease;
  background: #fff !important;
   border-bottom: none;
}
.sf-faq-item:has(+ .sf-faq-item.active) {
  border-bottom: none;
}


.sf-faq-header{
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}

h4.sf-faq-title{
	display: flex;
	align-items: center;
  margin: 0;
  height: 100px;
  line-height:1.2;
  padding: 0 70px 0 40px !important;
  background: transparent !important;
  border-radius: 0 !important;

  font-family: "Funnel Display", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #1E1E1E;

  transition: color .25s ease;
}

.sf-faq-panel{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s cubic-bezier(0.4, 0, 0.2, 1);
}

.sf-faq-item.active .sf-faq-panel{
  grid-template-rows: 1fr;
}

.sf-faq-panel-inner{
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}

.sf-faq-item.active .sf-faq-panel-inner{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .06s;
}

.sf-faq-content{
  padding: 0 40px 40px;
  background: transparent !important;
  border-radius: 0 !important;
  color: #1E1E1E;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
}

.sf-faq-content strong{
  font-weight: 500;
}

.sf-faq-content p{
  margin-bottom: 15px;
}

.sf-faq-content p:last-of-type{
  margin-bottom: 0;
}

.sf-faq-icon{
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(0deg);
  background: url("faq-arrow.svg") no-repeat center;
  background-size: contain;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sf-faq-item.active .sf-faq-icon{
  transform: translateY(-50%) rotate(-90deg);
}


.sf-faq-content ul{
  list-style: none;
  padding-left: 0;
  margin: -10px 30px 30px;
}

.sf-faq-content li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sf-faq-content li::before{
  content: "";
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.85em;
	transform: translateY(-50%);
}