@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary-color: #0160C6;
  --second-color: #38D200;
  --third-color: #fc9a00;
  --fourth-color: #160a0a;
  --primary-color-light: #edf6ff;
  --primary-color-dark: #004b9c;
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
}

.flex-box {
  column-gap: 1rem;
  align-items: center;
}

.index__col:hover {
  transition: all 0.4s;
}
.index__col:hover {
  transform: translateY(-8px);
}

.text-color {
  color: #af9251 !important;
}
.text-green {
  color: #38D200 !important;
}

html {
  font-size: 16px;
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}
@media (max-width: 48rem) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 36rem) {
  html {
    font-size: 14px;
  }
}

body {
  background-color: #F5F5F5;
  font-family: "Noto Sans TC", "noto sans cjk tc", "Microsoft JhengHei", "微軟正黑體", sans-serif !important;
  color: #3f3f3f;
  height: 100%;
  margin: 0;
  display: flex; /*使物件依序排列*/
  flex-direction: column; /*使物件垂直排列*/
}

form {
  height: auto;
}

main, .main {
  margin-top: 0;
}

a {
  color: #0160C6;
  transition: 0.3s;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrapper {
  margin: 0;
}

.index__wrapper {
  background: #F5F5F5;
  z-index: 1;
  position: relative;
  animation: fadeInAnimation ease-in-out 0.5s;
}
.index__wrapper::after {
  content: "";
  background-image: url(../_img/index_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 520px;
  width: 100vw;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media (max-width: 62rem) {
  .index__wrapper::after {
    height: 400px;
  }
}
@media (max-width: 48rem) {
  .index__wrapper::after {
    height: 300px;
  }
}
.index__title {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  gap: 0.5rem;
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 62rem) {
  .index__title {
    padding: 3rem 0;
  }
}
.index__title img {
  height: 48px;
  width: auto;
}
.index__title h2 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 2px;
}
.index__title h3 {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 2px;
}
.index__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.index__col {
  display: block;
  position: relative;
  text-decoration: none;
  flex: 0 0 auto;
  width: calc(33% - 1rem);
}
@media (max-width: 36rem) {
  .index__col {
    width: 300px;
  }
}
.index__col:hover {
  text-decoration: none;
}
.index__col img {
  padding: 2rem;
  border-radius: 4px;
  overflow: hidden;
  z-index: 2;
  max-width: 100%;
  position: relative;
}
@media (max-width: 62rem) {
  .index__col img {
    padding: 1rem;
  }
}
.index__col h5 {
  z-index: 2;
  text-decoration: none;
  position: relative;
  text-align: center;
  padding-bottom: 2rem;
  color: #5d5d5d;
  font-weight: 400;
}
.index__col h5:hover {
  color: #5d5d5d;
}
@media (max-width: 48rem) {
  .index__col h5 {
    font-size: 1.1rem;
    padding-bottom: 1rem;
  }
}
.index__col::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background: white;
  border-radius: 4px;
  width: 100%;
  height: 70%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.0666666667);
  z-index: 1;
}

.header {
  background: white;
  position: sticky;
}
.header .navbar-brand.logo h1 {
  color: #3f3f3f;
  letter-spacing: 0;
}
.header ul {
  margin: 0;
}
.header ul a {
  text-decoration: none;
}
.header ul a:hover {
  text-decoration: none;
}

.send {
  bottom: 0;
}/*# sourceMappingURL=style.css.map */