.trouble_search {
  padding: 111px 0;
}
.trouble_search .head {
  color: #161f30;
}
.trouble_search .head h2 {
  letter-spacing: 0;
}
.trouble_search form {
  background-color: #fff;
  border: 2px solid #e3800b;
  border-radius: 37px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-width: 800px;
  margin-top: 25px;
  overflow: hidden;
}
.trouble_search form input[type="text"] {
  width: 100%;
  background-color: transparent;
  font-size: 19px;
  line-height: 27px;
  padding: 23px 2.3rem;
}
.trouble_search form .search_btn {
  background-color: transparent;
  font-size: 19px;
  line-height: 31px;
  min-width: 153px;
  color: #fff;
  background-color: #e3800b;
  border-radius: 29px;
  padding: 15px 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 4px;
  gap: 10px;
  margin-right: 8px;
  cursor: pointer;
}
.trouble_search form .search_btn::before {
  display: inline-block;
  content: "";
  width: 21px;
  aspect-ratio: 1;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  filter: brightness(100);
}
.trouble_search form input[type="submit"] {
  display: none;
}
.trouble_start .box {
  padding: 261px 0 272px;
  min-height: 300px;
  border-radius: 41px;
  background-size: 110%;
  background: url(../img/trouble1.jpg) no-repeat center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-size: cover !important;
}
.trouble_start .box::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  background-color: rgba(45, 24, 14, 0.44);
  z-index: 0;
}
.trouble_start .title {
  font-size: 72px;
  line-height: 98px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  z-index: 2;
  position: relative;
}
.trouble_start .btn_trans {
  border-color: #fff;
  color: #fff;
  border-width: 2px;
  z-index: 2;
  position: relative;
  text-transform: capitalize;
}
.trouble_start .btn_trans:hover {
  border-color: transparent;
}
.trouble_about {
  padding: 79px 0;
}
.trouble_about .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 2.1%;
}
.trouble_about .list .item {
  border-radius: 30px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 17.5% 6%;
  font-size: 24px;
  line-height: 47px;
  transition: all 0.3s;
}
.trouble_about .list .item .icon {
  display: block;
  content: "";
  width: 120px;
  aspect-ratio: 1;
  background: no-repeat center / cover;
  background-color: #f3efec;
  border-radius: 50%;
}
.trouble_about .list .item .title {
  margin: 19px 0 16px;
}
.trouble_about .list .item .btn_trans {
  color: #242424;
  border-color: #919191;
  text-transform: capitalize;
}
.trouble_about .list .item .btn_trans:hover {
  background-color: #e3800b;
  color: #fff;
  border-color: transparent;
}
.trouble_about .list .item .btn_trans.active {
  background-color: #e3800b;
  color: #fff;
  border-color: transparent;
}
.trouble_about .list .item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.trouble_faq {
  padding: 40px 0 152px;
}
.trouble_faq .container {
  border-top: 10px solid #e3800b;
}
.trouble_faq .btns_wrapper {
  padding: 40px 0;
}
.trouble_faq .btns_wrapper ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 27px;
}
.trouble_faq .btns_wrapper .active .btn_more {
  color: #fff;
  background-color: var(--theme_color);
}
.trouble_faq .btns_wrapper .btn_more {
  border-color: transparent;
  color: #232220;
  background-color: #dad0c6;
  padding: 10px 42px;
  text-transform: capitalize;
}
.trouble_faq .btns_wrapper .btn_more:hover {
  color: #fff;
  background-color: var(--theme_color);
  transform: translateY(-5px);
}
.trouble_faq .faqs_title {
  font-size: 42px;
  line-height: 65px;
  font-weight: 700;
  padding: 9px 0 34px;
  text-transform: capitalize;
}
.trouble_faq .faqs {
  margin-top: 20px;
  margin-bottom: 20px;
}
.trouble_faq .faqs .faq.active .Q {
  border-bottom-color: transparent;
}
.trouble_faq .faqs .faq.active .Q::after {
  transform: rotate(45deg);
}
.trouble_faq .faqs .faq.active .A {
  display: block;
}
.trouble_faq .faqs .faq .Q {
  position: relative;
  font-size: 28px;
  line-height: 47px;
  color: #1a1a1a;
  font-weight: 550;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding: 17px 0;
  cursor: pointer;
}
.trouble_faq .faqs .faq .Q::after {
  position: absolute;
  display: inline-block;
  content: '';
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  aspect-ratio: 1;
  background: url("../img/trouble-icon4.svg");
  transition: all 0.3s;
}
.trouble_faq .faqs .faq .A {
  display: none;
}
.trouble_faq .faqs .faq .A .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 18px;
  line-height: 30px;
  color: #565656;
  font-weight: 500;
  padding: 3px 0 20px;
  border-bottom: 1px solid #787875;
  min-height: 324px;
}
.trouble_faq .faqs .faq .A ul > li {
  padding-left: 10px;
  position: relative;
}
.trouble_faq .faqs .faq .A ul > li::before {
  display: inline-block;
  content: '-';
  position: absolute;
  left: 0;
}
.trouble_faq .faqs .faq .A .btn {
  margin: 32px 0;
}
.trouble_faq .faqs .faq .A .help {
  color: #202020;
  font-weight: 550;
  gap: 18px;
  margin-top: auto;
}
.trouble_faq .faqs .faq .A .help .praise {
  font-size: 19px;
  color: #383838;
  cursor: pointer;
}
.trouble_faq .faqs .faq .A .help .praise::before {
  display: inline-block;
  content: '';
  width: 17px;
  aspect-ratio: 1;
  background: url("../img/trouble-icon5.svg") no-repeat center / contain;
  margin-right: 5px;
}
.trouble_faq .faqs .faq .A .help .praise.active::before{
  background-image: url('../img/trouble-icon-color.svg');
}
.trouble_faq .flex:has(.pagination) {
  margin: 40px 0 92px;
}
.trouble_faq .pagination {
  display: flex;
  align-items: center;
}
.trouble_faq .pagination .active a {
  color: #a66e4d;
  cursor: not-allowed;
}
.trouble_faq .pagination .disabled a {
  opacity: 0.6;
  cursor: not-allowed;
}
.trouble_faq .pagination li a {
  display: block;
  font-size: 23px;
  line-height: 33px;
  font-family: 'BaiJamjuree-SemiBold';
  font-weight: 500;
  padding: 0 6px;
  transition: all 0.3s;
}
.trouble_faq .pagination li a:hover {
  color: #a66e4d;
}
.trouble_faq .pagination li:nth-child(1) > a,
.trouble_faq .pagination li:nth-last-child(1) > a {
  content: '';
  width: 39px;
  aspect-ratio: 1;
  background: url("../img/trouble-icon6.svg") no-repeat center / contain;
  margin: 0 19px;
}
.trouble_faq .pagination li:nth-last-child(1) > a {
  background-image: url("../img/trouble-icon7.svg");
  margin-right: 0;
}
.trouble_faq .contact {
  flex: 1;
  max-width: 792px;
  font-size: 18px;
  line-height: 30px;
  color: #5b5a5b;
  font-weight: 500;
}
.trouble_faq .contact a {
  color: #e69d47;
  text-decoration: underline;
}
.trouble_faq .contact ~ .btn {
  border-radius: 6px;
  padding: 13px 58px;
  line-height: 32px;
  max-height: 54px;
}
.trouble_join .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
.trouble_join .item {
  background-color: #e6dfd7;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  padding: 12% 18px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}
.trouble_join .item .info {
  padding-left: 7%;
}
.trouble_join .item .info .title {
  font-size: 42px;
  line-height: 65px;
  color: #271913;
  font-weight: 700;
  margin-bottom: 22px;
}
.trouble_join .item .info .desc {
  font-size: 18px;
  line-height: 30px;
  color: #565656;
  font-weight: 500;
  margin-bottom: 33px;
}
.trouble_join .item .info .btn {
  min-width: 192px;
  margin-bottom: 66px;
}
.trouble_join .item .img {
  width: 89%;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.3s;
}
.trouble_join .item .img:hover img {
  transform: scale(105%);
}
.trouble_join .item:nth-child(2) {
  background: url("../img/trouble5.png") no-repeat center / cover;
  z-index: 1;
  padding-bottom: 18px;
  align-items: unset;
}
.trouble_join .item:nth-child(2) .info {
  padding: 0 8px;
}
.trouble_join .item:nth-child(2) .info .title {
  color: #ffffff;
  margin-bottom: 31px;
}
.trouble_join .item:nth-child(2) .img {
  width: 100%;
  aspect-ratio: 526/341;
  border-radius: 24px;
}
.trouble_join .item:nth-child(2)::after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(39, 25, 19, 0.74);
  z-index: -1;
}
.trouble_join .item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.trouble_register {
  padding: 173px 0 220px;
}
.trouble_register h2 {
  font-size: 42px;
  line-height: 65px;
  color: #23120b;
}
.trouble_register h2 ~ .btn {
  background-color: #e7820c;
  color: #ffffff;
}
.trouble_register h2 ~ .btn:hover {
  background-color: var(--theme_color);
}
.trouble_register .model {
  background-color: #fff;
  border-radius: 30px;
  padding: 1.7% 8.85% 5.9%;
  margin-top: 61px;
}
.trouble_register .model .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 74px;
}
/*# sourceMappingURL=trouble.css.map */

.faq_con{
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.faq_con.active{
  -webkit-line-clamp: 9999;
}
.switch-faq{
  display: none;
}
.switch-faq.active{
  display: block;
}