/* general */
.fcl-wrap .button {
  background-color: #4584F2;
}

.fcl-wrap .button:hover {
  color: #fff;
  background-color: #0f5adb;
}

/* hero_video and sbs */
/* .hv-wrap {
  margin-top: 50px;
  margin-bottom: 50px;
} */

.sbs-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center !important;
}

@media screen and (max-width: 768px) {
  .sbs-wrap {
    flex-direction: column !important;
  }
  .sbs-col {
    width: 100% !important;;
  }
}

.sbs-col {
  flex: 0 0 auto;
  width: 50%;
  padding-right: 10px;
  padding-left: 10px;
  position: relative;
}

.hv-play-button {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
  transition: all .5s;
}

.vid-con:hover .hv-play-button {
  transform: translateX(8px);
}

/* sbs with background */
.sbs-background-wrap {
  background-size: cover;
  background-position: top center;
  padding: 70px;
  border-radius: 30px;

}

.sbs-background-col p {
  color: #ffffff;
  font-weight: bold;
}

/* full width content */
/* .fwc-wrap {
  margin-top: 50px;
} */

/* sbs fields */
/* .sbs-wrap {
  margin-top: 50px;
} */

/* tabbed content */
/* .tabbed-content-wrap {
  margin-top: 50px;
} */

.tab-nav {
  display: flex !important;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  align-items: center !important;
}

.tab-nav-li {
  flex: 1;
  text-align: center !important;
  padding: 10px;
  margin-top: 0px;
  min-height: 100px;
  cursor: pointer;
  transition: .25s;
}

.tabs-wrap {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  border-left: 1px solid #999;
  border-right: 1px solid #999;
}

.tab-nav li:not(.tab-active) {
  background: #f6f6f6;
  border-bottom: 1px solid #999;
  border-left: 1px solid #999;
  border-right: 1px solid #999;
  margin-left: -1px;
}

.tab-nav li:not(.tab-active):hover {
  background: #ffffff;
}

.tab-content {
  padding: 20px;
}

.tab-content {
  display: none;
}

.tab-content.tab-active {
  display: block;
}

.tab-nav-li:last-child {
  border-right: none !important;
}

@media screen and (max-width: 768px) {
  .tab-nav-li {
    flex: 1 1 auto !important;
    min-height: auto !important;
    border-right: none !important;
    border-bottom: 1px solid #999 !important;
  }
}

/* faqs */
.faq-answer {
  display: none;
}

.faq-unit {
  border: 1px solid #999;
  padding: 20px;
  cursor: pointer;
  position: relative;
}

.faq-status {
  width: 25px;
  height: 25px;
  background: #2B7DE1;
  border-radius: 20px;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -10px;
}

.faq-status:after {
  content: "+";
  font-size: 30px;
  color: #ffffff;
  line-height: 12px;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 5px;
}

.faq-active .faq-status:after {
  content:'-';
}

.faq-unit {
  margin-bottom: 20px;
}

.faq-answer {
  padding-top: 20px;

}

.faq-question {
  font-weight: bold;
  position: relative;
}

.two-column-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

}
.faq-wrap {
  /* margin-top: 50px; */
}
@media screen and (max-width: 768px) {
  .two-column-faq {
    grid-template-columns: 1fr;
   }
}
