.features-component {
  width: 100%;
  margin: 0 auto;
  font-family: "Discovery_Fs", Sans-serif;
}
.features-component[data-desktop-layout=true] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}
.features-component[data-desktop-layout=true] .feature-item {
  display: none;
}
.features-component[data-desktop-layout=true] .desktop-content-wrapper,
.features-component[data-desktop-layout=true] .desktop-nav-wrapper {
  display: block;
}
.features-component[data-desktop-layout=true] .desktop-content-wrapper {
  display: flex;
}
.features-component[data-desktop-layout=false] .feature-item {
  display: block;
  border-bottom: 1px solid #EAEBF0;
}
.features-component[data-desktop-layout=false] .desktop-content-wrapper,
.features-component[data-desktop-layout=false] .desktop-nav-wrapper {
  display: none;
}
.features-component .feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  text-align: right;
  transition: background 0.3s ease;
  padding: 2rem;
  border-radius: 8px;
}
@media (max-width: 1023px) {
  .features-component .feature-header {
    padding: 20px;
    border-radius: 0;
    margin-bottom: 0;
  }
}
.features-component .feature-header .header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.features-component .feature-header .feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
/*
@media(max-width:1023px){
	.features-component .feature-header .feature-icon {
		width:9vw;
		height:9vw;
	}

}
*/
.features-component .feature-header .feature-main-title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 400;
  color: #505F79;
  transition: color 0.3s ease;
}

@media (max-width: 1023px) {
  .features-component .feature-header .feature-main-title {
    font-size: 1.8rem;
  }
}

.features-component .feature-header .feature-arrow {
  width: 12px;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
@media (max-width: 1023px) {
  .features-component .feature-header .feature-arrow {
    transform: rotate(-90deg);
    /*width: 2vw;*/
  }
}
.features-component .feature-header:not(:last-child) {
  border-bottom: 1px solid #98A0BC;
  border-radius: 0;
}
.features-component .feature-header:hover .feature-main-title {
  color: #0436C9;
}
.features-component .feature-header.active {
  background: linear-gradient(to left, #EBF3FF, #FFFFFF);
}
.features-component .feature-header.active .feature-main-title {
  color: #0436C9;
}
.features-component .feature-header.active .feature-arrow {
  transform: rotate(90deg);
}
.features-component .feature-content-panel {
  display: none;
  max-height: none;
  background: none;
  overflow: visible;
  flex-direction: column;
  justify-content: center;
}
.features-component .feature-content-panel.active {
  display: flex;
}
@media (max-width: 1023px) {
  .features-component .feature-content-panel {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }
  .features-component .feature-content-panel.active {
    max-height: 1500px;
    transition: max-height 0.6s ease-in;
  }
}
.features-component .feature-content-panel .feature-content-inner {
  padding: 0;
}
@media (max-width: 1023px) {
  .features-component .feature-content-panel .feature-content-inner {
    padding: 20px;
  }
}
.features-component .feature-content-panel .feature-sub-title {
  font-size: 2.8rem;
  font-weight: 400;
  color: #0436C9;
  margin: 0rem 0 1rem;
}

@media (max-width: 1023px) {
  .features-component .feature-content-panel .feature-sub-title {
    font-size: 1.8rem;
  }
}

.features-component .feature-content-panel .feature-text {
  font-size: 1.6rem;
  color: #505F79;
  line-height: 1.4;
}

@media (max-width: 1023px) {
  .features-component .feature-content-panel .feature-text {
    font-size: 1.6rem;
  }
}

.features-component .feature-content-panel .feature-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
}

.feature-steps {
  font-family: "Discovery_Fs", Sans-serif;
}
.feature-steps .feature-steps__content {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.feature-steps .feature-steps__content .feature-step {
  padding: 2rem;
  box-shadow: 4px 0px 20px 0px rgba(204, 204, 204, 0.75);
  border-radius: 16px;
  position: sticky;
  top: 100px;
  z-index: 4;
  background-color: #ffffff;
}
.feature-steps .feature-steps__content .feature-step h3 {
  font-size: 3.4rem;
  margin-bottom: 1rem;
  color: #252250;
  font-weight: 400;
}
/*
@media (max-width: 1023px) {
  .feature-steps .feature-steps__content .feature-step h3 {
    font-size: 7vw;
  }
}
*/
.feature-steps .feature-steps__content .feature-step p {
  font-size: 2rem;
  line-height: 1.4;
  color: #8085A8;
}
/*
@media (max-width: 1023px) {
  .feature-steps .feature-steps__content .feature-step p {
    font-size: 5vw;
  }
}
*/
.faq-list {
  font-family: "Discovery_Fs", Sans-serif;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-list .faq-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.4rem 1.6rem;
}
.faq-list .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #0056b3;
  font-weight: 600;
  transition: background-color 0.2s ease;
  font-size: 2.8rem;
  font-weight: 500;
  font-family: "Discovery_Fs", Sans-serif;
}

@media (max-width: 1023px) {
  .faq-list .faq-item .faq-question {
    font-size: 1.8rem;
  }
}

.faq-list .faq-item .faq-question .faq-icon {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-left: 2px solid #0056b3;
  border-bottom: 2px solid #0056b3;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  margin-left: 20px;
}
.faq-list .faq-item .faq-answer {
  display: none;
  line-height: 1.4;
  color: #505F79;
  padding: 0.4rem 0;
  max-width: 60rem;
}
.faq-list .faq-item.active .faq-question {
  color: #025BFF;
}
.faq-list .faq-item.active .faq-icon {
  transform: rotate(135deg);
}/*# sourceMappingURL=gal.css.map */