@import url("https://fonts.googleapis.com/css2?family=Philosopher&display=swap");

.div_reverse {
  flex-direction: row-reverse;
}

.desktop_none {
  display: none;
}

.txt_center {
  text-align: center !important;
}

.col_rev {
  flex-direction: column-reverse;
}

@media (max-width: 768px) {
  .mb_none {
    display: none;
  }

  .desktop_none {
    display: block;
  }
}

/* section */
section {
  padding: 80px 0;
  width: 75%;
  margin: auto;
  font-weight: bold;
}

section h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  color: #f59019;
}

section .buffer {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 20px 0;
}

section .buffer span {
  width: 30%;
  flex: 1;
  height: 3px;
  background-color: #ddd;
}

section .buffer svg {
  font-size: 1.2rem;
  color: #f59019;
  margin: 0 10px;
}

section .content {
  margin: 60px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

section .content .img {
  width: 40%;
}

section .content .txt {
  width: 52%;
  text-align: justify;
  font-size: 1.2rem;
}

.txt p:last-child {
  margin-bottom: 0;
}

section .content.content2 {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

section .content.content2 h4 {
  color: #f59019;
  font-weight: bold;
}

section .content2 .section {
  margin-bottom: 20px;
}

section .content2 .section p {
  font-size: 1.1rem;
}

/* fixed_bg */
.fixed_bg_wrap {
  width: 100%;
  background-image: url(../images/banner02.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
}

.fixed_bg_wrap .blur {
  background-color: rgba(10, 22, 43, 0.7);
  height: 100%;
}

.fixed_bg_wrap h3 {
  display: flex;
  flex-direction: column;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.3rem;
}

.fixed_bg_wrap h3 span {
  margin-top: 10px;
}

/* feature */
section.feature_wrap {
  /* padding-top: 40px; */
}

section.feature_wrap .feature_all {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

section.feature_wrap .feature {
  width: 23%;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  padding: 60px 0px;
  box-shadow: 0px 13px 10px 0px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

section.feature_wrap .feature:hover {
  color: #fff;
  background-color: #f59019;
  box-shadow: 0px 13px 10px 0px rgba(0, 0, 0, 0.2);
}

section.feature_wrap .feature .title_img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  color: #f59019;
  transition: 0.5s;
}

section.feature_wrap .feature:hover .title_img {
  color: #fff;
}

section.feature_wrap .feature .title_img .img {
  margin-right: 0px;
  font-size: 3rem;
}

section.feature_wrap .feature .title_img .title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 20px;
  letter-spacing: 0.1rem;
  color: #3e3a39;
}

section.feature_wrap .feature .txt {
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  text-align: justify;
}

/* 6 feature */
section.feature_6_wrap .feature_all .feature {
  width: 30%;
  padding: 0;
}

section.feature_wrap.feature_6_wrap .feature .title_img {
  margin-bottom: 0;
  overflow: hidden;
}

section.feature_6_wrap .feature_all .title_img .img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

section.feature_6_wrap .feature_all .feature:hover .title_img img {
  transform: scale3D(1.2, 1.2, 2);
}

section.feature_6_wrap .feature_all .feature:hover .title_img .img::after {
  transform-origin: left center;
  transform: scale(1);
}

section.feature_6_wrap .feature_all .title_img img {
  transition: all 0.3s linear 0s;
}

section.feature_6_wrap .feature_all .feature .txt {
  width: 80%;
  margin: auto;
  padding: 30px 0;
  /* font-size: 1rem; */
  font-weight: normal;
}

/* data_info */
section.data_info .info_list ul {
  padding-left: 0;
}

section.data_info .info_list ul li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

section.data_info .info_list ul li:before {
  content: "\f058";
  font-family: FontAwesome;
  font-size: 1.4rem;
  display: inline-block;
  margin-right: 30px;
  color: #d27a15;
}

section.data_info .info_list ul li .title {
  color: #d27a15;
  font-size: 1.2rem;
}

section.data_info .info_list ul li .txt {
  width: 100%;
  margin-left: 57px;
  letter-spacing: 0.1rem;
}

/* faq_wrap */
section.faq_wrap {
  position: relative;
  width: 100%;
  padding-top: 60px;
  background-color: #eee;
}

section.faq_wrap .bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  background-color: #f59019;
  /* z-index: -1; */
}

section.faq_wrap h3 {
  margin-bottom: 40px;
  color: #fff;
}

.accordion_wrap {
  width: 75%;
  margin: auto;
  background-color: #fff;
  padding: 80px 0;
}

/* accordion */
.accordion {
  width: 85%;
  margin: auto;
  --bs-accordion-active-bg: #d27a15;
}

.accordion-button {
  letter-spacing: 0.1rem;
  font-size: 1.1rem;
  padding-left: 45px;
  border: 1px solid #ddd;
  margin-bottom: 30px;
  font-weight: bold;
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out,
    border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out,
    border-radius 0.5s ease;
}

.accordion-button::after {
  position: absolute;
  left: 10px;
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}

.accordion-button:focus {
  border-color: #ddd;
  box-shadow: none;
}

.accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  margin-bottom: 0;
  font-weight: normal;
}

.accordion-item {
  letter-spacing: 0.1rem;
  border: none;
  line-height: 30px;
}

.accordion-body {
  padding: 30px 0;
  width: 95%;
  margin: auto;
  text-align: justify;
}

/* contact */
section.contact {
  width: 100%;
  background-color: #245670;
  background-color: #eee;
  color: #000;
}

section.contact h3 {
  /* font-weight: normal; */
  /* margin-bottom: 40px; */
}

section.contact .buffer {
  width: 80%;
  margin: 20px auto;
}

section.contact .btn_wrap {
  width: 75%;
  margin: auto;
}

section.contact .btn_wrap .btn {
  padding: 20px;
  width: 100%;
  font-size: 1.2rem;
  margin: 20px 0;
  transition: 0.5s;
  filter: brightness(1);
  box-shadow: 0px 13px 10px 0px rgba(0, 0, 0, 0.2);
}

section.contact .btn_wrap .btn:hover {
  filter: brightness(1.1);
}

section.contact .btn_wrap .btn a {
  color: #eee;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.contact .btn_wrap .btn a svg {
  margin-right: 10px;
  font-size: 2rem;
}

section.contact .btn_wrap .btn.form {
  background-color: #e23523;
}

section.contact .btn_wrap .two_btns {
  display: flex;
  justify-content: space-between;
}

section.contact .btn_wrap .two_btns div {
  /* width: 48%; */
  flex: 1;
  margin: 20px 30px 0;
}

section.contact .btn_wrap .two_btns div:first-child {
  margin-left: 0;
}

section.contact .btn_wrap .two_btns div:last-child {
  margin-right: 0;
}

section.contact .btn_wrap .btn.line {
  background-color: #00b900;
}

section.contact .btn_wrap .btn.tel {
  background-color: #00a0dc;
}

/* map */
section.map iframe {
  width: 100%;
  height: 450px;
}

@media (max-width: 1300px) {
  section,
  section.contact .btn_wrap {
    width: 80%;
  }

  section.feature_wrap .feature .title_img .img {
    font-size: 2.8rem;
  }

  section.feature_wrap .feature .title_img .title {
    font-size: 1.4rem;
    width: 90%;
    margin: auto;
    text-align: center;
  }

  /* 6 feature */
  section.feature_wrap.feature_6_wrap .feature .title_img .img {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
    width: 90%;
  }

  section h3 {
    line-height: 35px;
  }

  section .content {
    margin: 40px 0;
    flex-direction: column;
  }

  section .content .img {
    width: 100%;
  }

  section .content .txt {
    width: 100%;
    margin-top: 30px;
  }
  section.feature_wrap {
    /* padding-top: 0px; */
    justify-content: space-between;
  }

  section.feature_wrap .feature {
    width: 45%;
    margin: 30px 0;
    padding: 30px 0;
  }

  section.feature_wrap .feature .title_img .img {
    margin-right: 0;
  }

  section.feature_wrap .feature .title_img .title {
    font-size: 1.2rem;
    text-align: center;
  }

  section.contact .buffer {
    width: 90%;
  }

  section.contact .btn_wrap {
    width: 90%;
  }

  section.contact .btn_wrap .two_btns {
    flex-direction: column;
  }

  section.contact .btn_wrap .two_btns div {
    width: 100%;
    margin: 20px 0;
  }

  /* fixed_bg */
  .fixed_bg_wrap {
    /* padding: 80px 0; */
    background-position: 30% 50%;
  }
  .fixed_bg_wrap h3 {
    font-size: 1.9rem;
    line-height: 40px;
  }

  /* 6 feature */
  section.feature_6_wrap .feature_all .feature {
    width: 100%;
  }

  section.feature_6_wrap .feature_all .feature .txt {
    width: 90%;
    font-size: 1.3rem;
    font-weight: bold;
  }

  /* data_info */
  section.data_info .info_list ul li:before {
    margin-right: 1.5rem;
  }

  section.data_info .info_list ul li .txt {
    margin-left: 3.2rem;
  }

  /* accordion */
  .accordion_wrap {
    width: 90%;
    padding: 60px 0;
  }

  .accordion {
    width: 90%;
  }

  .accordion-item {
    line-height: 20px;
  }

  .accordion-body {
    width: 90%;
  }

  /* map */
  section.map iframe {
    height: 50vh;
  }
}

@media (max-width: 380px) {
  /* fixed_bg */
  .fixed_bg_wrap {
    padding: 80px 0;
  }

  .fixed_bg_wrap h3 {
    font-size: 1.7rem;
    line-height: 30px;
  }
}
