/* [project]/public/styles/faq/faq.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.faq-secA .heading {
  max-width: 410px;
  margin: 0 auto 60px;
}

@media only screen and (width <= 768px) {
  .faq-secA .heading {
    margin: 0 auto 50px;
  }
}

@media only screen and (width <= 540px) {
  .faq-secA .heading {
    margin: 0 auto 40px;
  }
}

.faq-secA .heading p {
  color: var(--text);
}

.faq-secA .faqs-section {
  justify-content: space-around;
  align-items: center;
  gap: 90px;
}

@media only screen and (width <= 768px) {
  .faq-secA .faqs-section {
    flex-direction: column;
    gap: 50px;
  }
}

@media only screen and (width <= 540px) {
  .faq-secA .faqs-section {
    gap: 30px;
  }
}

.faq-secA .faqs-section .colA {
  flex: 0 auto;
  width: 30%;
}

@media only screen and (width <= 768px) {
  .faq-secA .faqs-section .colA {
    width: 100%;
  }
}

.faq-secA .faqs-section .colA .ub_icon {
  width: 100%;
  height: 390px;
  line-height: 0;
  -webkit-mask-image: url("/assets/images/about/about_ub.svg");
  mask-image: url("/assets/images/about/about_ub.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media only screen and (width <= 768px) {
  .faq-secA .faqs-section .colA .ub_icon {
    width: 200px;
    height: 225px;
    margin: 0 auto;
  }
}

@media only screen and (width <= 540px) {
  .faq-secA .faqs-section .colA .ub_icon {
    width: 150px;
    height: 170px;
  }
}

.faq-secA .faqs-section .colA .ub_icon video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.faq-secA .faqs-section .colB {
  flex: 1;
}

.faq-secA .faqs-section .colB .col {
  --padlr: 0;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all .5s;
}

.faq-secA .faqs-section .colB .col.active .title {
  background-color: #e9e9e9;
}

.faq-secA .faqs-section .colB .col.active .title h6 {
  color: var(--black);
}

.faq-secA .faqs-section .colB .col.active .title .ico:after {
  transform: scaleY(0);
}

.faq-secA .faqs-section .colB .col.active article {
  opacity: 1;
  max-height: fit-content;
}

.faq-secA .faqs-section .colB .col .title {
  cursor: pointer;
  background-color: #f5f5f5;
  border-radius: 5px;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 20px;
  transition: all .5s;
  display: flex;
  overflow: hidden;
}

@media only screen and (width <= 540px) {
  .faq-secA .faqs-section .colB .col .title {
    padding: 10px 15px;
  }
}

.faq-secA .faqs-section .colB .col .title h6 {
  color: var(--text);
  flex: 1;
  padding-right: 1rem;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: all .5s;
}

@media only screen and (width <= 540px) {
  .faq-secA .faqs-section .colB .col .title h6 {
    font-size: 16px;
  }
}

@media only screen and (width <= 345px) {
  .faq-secA .faqs-section .colB .col .title h6 {
    font-size: 14px;
  }
}

.faq-secA .faqs-section .colB .col .title .ico {
  --size: 18px;
  --border: 2px;
  --bgcolor: var(--black);
  height: var(--size);
  width: var(--size);
  flex: 0 auto;
  position: relative;
}

.faq-secA .faqs-section .colB .col .title .ico:before, .faq-secA .faqs-section .colB .col .title .ico:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--bgcolor);
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.faq-secA .faqs-section .colB .col .title .ico:before {
  top: calc(var(--size) / 2 - var(--border) / 2);
  height: var(--border);
  width: 100%;
  bottom: auto;
}

.faq-secA .faqs-section .colB .col .title .ico:after {
  left: calc(var(--size) / 2);
  width: var(--border);
  height: 100%;
  right: auto;
  translate: -50%;
}

.faq-secA .faqs-section .colB .col article {
  background: var(--white);
  opacity: 0;
  border-top: none;
  border-radius: 0 0 5px 5px;
  max-height: 0;
  transition: max-height .4s ease-in-out, opacity .3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.faq-secA .faqs-section .colB .col article .content-desc {
  padding: 15px 20px 20px;
}

.faq-secA .faqs-section .colB .col article .content-desc p, .faq-secA .faqs-section .colB .col article .content-desc ul, .faq-secA .faqs-section .colB .col article .content-desc h2, .faq-secA .faqs-section .colB .col article .content-desc h3, .faq-secA .faqs-section .colB .col article .content-desc h4, .faq-secA .faqs-section .colB .col article .content-desc h5, .faq-secA .faqs-section .colB .col article .content-desc h6 {
  margin-bottom: 16px;
}

.faq-secA .faqs-section .colB .col article .content-desc :not(button) {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.faq-secA .faqs-section .colB .col article .content-desc h1, .faq-secA .faqs-section .colB .col article .content-desc h2, .faq-secA .faqs-section .colB .col article .content-desc h3, .faq-secA .faqs-section .colB .col article .content-desc h4, .faq-secA .faqs-section .colB .col article .content-desc h5, .faq-secA .faqs-section .colB .col article .content-desc h6, .faq-secA .faqs-section .colB .col article .content-desc b {
  color: var(--black);
  font-weight: 500;
}

.faq-secA .faqs-section .colB .col article .content-desc ul {
  padding-left: 20px;
}

.faq-secA .faqs-section .colB .col article .content-desc ul li {
  list-style: none;
}

.faq-secA .faqs-section .colB .col article .content-desc ul li:before {
  background-color: var(--black);
}

@media only screen and (width <= 540px) {
  .faq-secA .faqs-section .colB .col article .content-desc ul li {
    font-size: 14px;
  }
}

.faq-secA .faqs-section .colB .col article .content-desc ul li:not(:last-child) {
  margin-bottom: 5px;
}

@media only screen and (width <= 540px) {
  .faq-secA .faqs-section .colB .col article .content-desc p {
    font-size: 14px;
  }
}


/*# sourceMappingURL=public_styles_faq_faq_4ca9ffa8.css.map*/