body {
  font-family: "Noto Sans TC", "Montserrat", sans-serif, Verdana;
  letter-spacing: 2px;
  background: #f2f2f2;
  line-height: 1.5;
  color: #535353;
}

header {
  background-color: #034166;
}

a {
  color: #034166;
  text-decoration: none;
}
a:hover {
  color: #212529;
}
/*-------- 可視寬度 --------*/

/* header */
.container-fluid {
  max-width: 1520px;
  padding: 0 50px;
}

section {
  margin: 0 auto;
  max-width: 1520px;
  padding: 0 50px;
  margin-top: 30px;
  margin-bottom: 50px;
}

/*-------- 共用title --------*/

/* 內文tilte */
.block_title {
  color: #034166;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 30px 0;
}

/* banner title */

.top_banner {
  height: 450px;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner_text {
  text-align: center;
  background: rgba(255, 98, 10, 0.7);
  padding: 10px 15px;
}

.banner_text p:nth-child(1) {
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 3px;
}

.banner_text p:nth-child(2) {
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 2.5px;
}

/*-------- nav導覽列 --------*/

/* 改bootstrap nav-bar樣式 */
.navbar-light .navbar-nav .nav-link {
  color: #e8e9e9;
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: #ff7f0a!important;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #ffa90af2;
}

.nav_phone a {
  background-color: #e8e9e9;
  line-height: 32px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.nav_line a {
  background-color: #00BB00;
  line-height: 32px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  color: #fff;
}

.nav_line,.nav_phone{
  
  width: auto;
}
.navbar-nav {
  gap: 15px;
  align-items: center;
  padding: 10px;
}
.navbar-light .navbar-toggler-icon {
  background-image: url(../image/navbar.svg);
}
.navbar-light .navbar-toggler {
  color: rgb(222 222 222 / 55%);
  border-color: rgb(223 223 223 / 20%);
  border-radius: 0.9rem;
}

/*-------- 搬家須知 --------*/

.notice_block {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.notice_content img {
  max-height: 300px;
}

.notice_title span {
  padding: 6px 17px;
  justify-content: center;
  align-items: center;
  background-color: #ff620a;
  color: #fff;
  font-size: 20px;
}
.notice_content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.notice_all_text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.notice1st {
  gap: 30px;
}
.notice2nd {
  gap: 30px;
}
.notice3rd {
  gap: 30px;
}

/*-------- 關於立森 --------*/
.about_block {
  display: flex;
  padding: 50px;
  gap: 40px;
  align-items: center;
}

.about_block p:nth-child(1) {
  color: #747474;
  font-size: 18px;
}
.about_block p:nth-child(2) {
  color: #034166;
  font-size: 18px;
}

/* footer */

footer {
  background: #136a9e;
  padding: 30px;
}

.footer_block {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  padding-bottom: 20px;
}

@media (max-width: 990px) {
  /*-------- nav導覽列 --------*/

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #e8e9e9;
    text-align: center;
  }
  /* header */
  .container-fluid {
    padding: 0 15px;
  }
  .nav_line,.nav_phone{
  
    width: auto;
  }
}
@media (max-width: 767px) {
  section {
    padding: 0px 30px;
  }

  /*-------- nav導覽列 --------*/
  .navbar-brand {
    width: 70px;
    height: auto;
  }
  /*-------- TopBanner --------*/
  .top_banner {
    height: 250px;
  }
  .banner_text p:nth-child(1) {
    font-size: 18px;
  }
  .banner_text p:nth-child(2) {
    font-size: 16px;
  }
  /*-------- 關於立森 --------*/
  .about_block {
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  /* header LOGO */
  .navbar-brand img {
    max-width: 60px;
  }

  /*-------- 搬家須知 --------*/
  .notice3rd {
    gap: 30px;
    flex-direction: column;
  }

  .notice1st {
    flex-direction: column;
  }

  .notice2nd {
    flex-direction: column-reverse;
  }
  
  /*-------- 關於立森 --------*/
  .about_block {
    padding: 50px 30px;
  }
  /* footer */
  .footer_block {
    flex-direction: column;
  }
}
