@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}

h6 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

p,
a,
span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}

li {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #031c2b;
  color: #ffffff;
}

/* CSS */
[data-aos=blur-up] {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(10px);
  transition: all 0.1s ease;
}

[data-aos=blur-up].aos-animate {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

h2 {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}

.split {
  display: inline-block;
  overflow: hidden;
  text-shadow: 0 1.3em currentColor; /* 和 JS 位移一致 */
  will-change: transform;
  padding: 1 1rem;
}

.char {
  display: inline-block;
  position: relative;
}

section {
  padding: 8rem 0rem;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

a {
  text-decoration: none;
  color: #031c2b;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.all-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.35;
}
.all-bg img {
  width: 100%;
  height: 100%;
}

.cta-link {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
  /* 避免子項目被等寬拉伸，同時維持靠右貼齊 */
  align-items: flex-end;
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    right: 0.5rem;
  }
}
.cta-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.cta-link a.ig {
  background: #dd2a7b;
}
.cta-link a.line {
  background: #39cd00;
}
.cta-link a.tel {
  background: #e85f23;
}
.cta-link a.tel svg #background {
  fill: #e85f23;
}
.cta-link a.tel svg #icon {
  fill: white;
}
.cta-link a .icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.cta-link a .icon svg {
  width: 50px;
}
.cta-link a .label {
  white-space: nowrap;
  overflow: hidden;
  color: white;
  /* 用可動畫屬性取代 display */
  opacity: 0;
  visibility: hidden;
  max-width: 0; /* 或用 width，依喜好 */
  margin-left: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
.cta-link a:hover {
  gap: 0.5rem;
}
.cta-link a:hover .label {
  opacity: 1;
  visibility: visible;
  max-width: 200px;
  margin-left: 0rem;
  padding-right: 1rem;
  transform: translateX(0);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s;
}
.cta-link .dropdown-menu {
  margin-right: 0.25rem;
  margin-left: 0;
}

.navbar.scrolled {
  background: #031c2b;
}
.navbar.scrolled .navbar-brand img {
  width: 180px;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 120px;
  }
}
.navbar.scrolled .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: white;
  background: none;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-toggler {
  border-color: white;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .navbar-brand {
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .navbar-brand img {
  width: 250px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 150px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    padding-top: 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav {
    gap: 0.5rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  background: #e0e5ea;
  border-radius: 5rem;
  padding: 0.5rem 1rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #031c2b;
}

.parallax-fixed {
  position: relative;
  height: 100vh; /* 可自行調整高度 */
  overflow: hidden;
}
.parallax-fixed .parallax-img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 120%;
}
.parallax-fixed .parallax-img img {
  width: 100%;
  height: 100%;
}

.parallax-dynamic {
  position: relative;
  /* 高度交給圖片本身決定 */
}
.parallax-dynamic .parallax-media {
  overflow: hidden;
  line-height: 0; /* 移除 img 作為 inline 元素的行高縫隙 */
}
.parallax-dynamic .parallax-media img {
  display: block;
  width: 100%;
  height: auto;
  /* 關鍵：先往上、並放大一點，避免上下兩端出現空白 */
  transform: translateY(-12%) scale(1.12);
  transform-origin: center;
  will-change: transform;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: "";
  position: absolute;
  top: 5rem;
  left: -5rem;
  background: url("../images/banner/bg.avif") no-repeat;
  width: 60%;
  height: 100%;
  background-position: bottom left;
  background-size: cover;
  filter: invert(1);
  opacity: 0.15;
  z-index: -1;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 118.5px;
  }
}
#hero .swiper {
  width: 100%;
  height: 100%;
  will-change: transform;
}
@media (max-width: 768px) {
  #hero .swiper {
    height: 40vh;
  }
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 8s ease; /* 控制漸進放大 */
}
#hero .swiper .swiper-slide-active img {
  transform: scale(1.1); /* 只要變 active 就開始放大 */
}
#hero .cta-box {
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: start;
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 0.5rem;
  }
}
#hero .cta-box .cta-content {
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    padding: 0;
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 2rem;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
  color: rgb(212, 212, 212);
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#hero .cta-box .cta-content .btn-box a {
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box a {
    padding: 0.5rem 1rem;
  }
}
#hero .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .cta-box .cta-content .btn-box a:first-child {
  background: #031c2b;
  background: #e85f23;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: gray;
  background: white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #031c2b;
}

/* 共用區塊標題（深色背景適用） */
.section-title, #contact h2 {
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.section-title .en, #contact h2 .en {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}
.section-title .en::before, #contact h2 .en::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: #e85f23;
  border-radius: 999px;
}
.section-title .zh, #contact h2 .zh {
  font-size: clamp(1.75rem, 2.1vw, 2.35rem);
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
}

/* 關於我們 */
#about {
  background: #031c2b;
}
#about .about-card {
  background: rgba(27, 38, 59, 0.85);
  border: 1px solid rgba(65, 90, 119, 0.35);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  #about .about-card {
    padding: 1.4rem;
    border-radius: 1rem;
  }
}
#about .about-lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #ffffff;
  font-weight: 700;
}
#about .about-text {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.95;
  font-size: 1rem;
}
#about .about-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
#about .about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.95rem;
  background: rgba(3, 28, 43, 0.55);
  border: 1px solid rgba(65, 90, 119, 0.35);
}
#about .about-points li i {
  flex: 0 0 auto;
  font-size: 1.2rem;
  line-height: 1;
  color: #e85f23;
  margin-top: 0.15rem;
}
#about .about-points li span {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 600;
}
#about .about-media {
  position: relative;
}
#about .about-frame {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  background: #031c2b;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
#about .about-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 20% 10%, rgba(232, 95, 35, 0.25), transparent 55%), radial-gradient(780px 520px at 85% 90%, rgba(65, 90, 119, 0.35), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
#about .about-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(224, 229, 234, 0.2);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}
#about .about-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
}
#about .about-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(3, 28, 43, 0.92);
  border: 1px solid rgba(65, 90, 119, 0.45);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}
#about .about-badge i {
  font-size: 1.25rem;
  color: #e85f23;
  line-height: 1;
}
#about .about-badge .txt {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
#about .about-badge .txt .t {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  line-height: 1.1;
}
#about .about-badge .txt .s {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  #about .about-badge {
    left: 0.75rem;
    right: auto;
    bottom: 0.75rem;
    padding: 0.75rem 0.9rem;
  }
}

#services {
  /* 不用 $frost 這種白到刺眼，改用深色但有層次 */
  background: #1b263b;
  position: relative;
  overflow: hidden;
  /* 背景不做光暈，改成「工程感線條 + 細格」 */
  /* 這區塊在深色底上，h2 會更穩 */
  /* 大圖：真的給客戶看的，所以要大 */
}
#services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background: linear-gradient(0deg, rgba(3, 28, 43, 0.55), rgba(3, 28, 43, 0.55)), repeating-linear-gradient(90deg, rgba(65, 90, 119, 0.18) 0, rgba(65, 90, 119, 0.18) 1px, transparent 1px, transparent 84px), repeating-linear-gradient(0deg, rgba(65, 90, 119, 0.12) 0, rgba(65, 90, 119, 0.12) 1px, transparent 1px, transparent 84px);
}
#services .container {
  position: relative;
  z-index: 1;
}
#services .section-title .en, #services #contact h2 .en, #contact #services h2 .en {
  color: rgba(255, 255, 255, 0.65);
}
#services .section-title .zh, #services #contact h2 .zh, #contact #services h2 .zh {
  color: #ffffff;
}
#services .service-card {
  height: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(65, 90, 119, 0.35);
  background: rgba(3, 28, 43, 0.58);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
#services .service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 95, 35, 0.5);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
#services .service-media {
  position: relative;
  height: 500px; /* 大張 */
  border-bottom: 1px solid rgba(65, 90, 119, 0.25);
  background: rgba(3, 28, 43, 0.35);
  /* 圖上標籤（不用太亮，強調用 $accent 一筆就好） */
}
#services .service-media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.02);
}
#services .service-media .service-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(3, 28, 43, 0.82);
  border: 1px solid rgba(65, 90, 119, 0.45);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
#services .service-media .service-chip i {
  color: #e85f23;
  font-size: 1.15rem;
  line-height: 1;
}
#services .service-media .service-chip span {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  line-height: 1;
}
#services .service-body {
  padding: 1.2rem 1.2rem 1.35rem;
}
#services .service-title {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.25;
  font-size: 1.1rem;
}
#services .service-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}
#services .service-list li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}
@media (max-width: 768px) {
  #services .service-media {
    height: 200px;
  }
  #services .service-body {
    padding: 1rem 1rem 1.15rem;
  }
}

#process {
  /* 接在 services 後面，色調延續但再壓一階 */
  background: #031c2b;
  position: relative;
  /* 左上步驟數字：穩、不浮誇 */
}
#process .container {
  position: relative;
  z-index: 1;
}
#process .section-title .en, #process #contact h2 .en, #contact #process h2 .en {
  color: rgba(255, 255, 255, 0.6);
}
#process .section-title .zh, #process #contact h2 .zh, #contact #process h2 .zh {
  color: #ffffff;
}
#process .process-card {
  position: relative;
  height: 100%;
  padding: 2rem 1.6rem 1.8rem;
  border-radius: 1.25rem;
  background: rgba(27, 38, 59, 0.75);
  border: 1px solid rgba(65, 90, 119, 0.35);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
}
#process .process-step {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 3em;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(65, 90, 119, 0.7);
  line-height: 1;
  pointer-events: none;
}
#process .process-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(3, 28, 43, 0.7);
  border: 1px solid rgba(65, 90, 119, 0.45);
  margin-bottom: 1rem;
}
#process .process-icon i {
  font-size: 1.5rem;
  color: #e85f23;
  line-height: 1;
}
#process .process-title {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: #ffffff;
}
#process .process-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}
#process .process-list li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}
@media (max-width: 768px) {
  #process .process-card {
    padding: 1.6rem 1.4rem 1.5rem;
  }
  #process .process-step {
    font-size: 2.1rem;
  }
}

.auto-carousel {
  padding: 0;
}
.auto-carousel .swiper {
  width: 100%;
  transform: rotate(0deg);
  position: relative;
}
.auto-carousel .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
.auto-carousel .swiper .swiper-slide {
  width: 600px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .auto-carousel .swiper .swiper-slide {
    width: 300px;
  }
}
.auto-carousel .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #e85f23;
  color: #031c2b;
}
#works .nav-pills .nav-link {
  color: #e85f23;
  border: 1px solid #e85f23;
}
#works .img-box {
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: inline-block;
}
@media (max-width: 768px) {
  #works .img-box {
    height: 150px;
  }
}
#works .img-box:hover img {
  transform: scale(1.1);
}
#works .img-box img {
  transition: 1s;
  width: 100%;
  height: 100%;
}

#contact {
  background: #031c2b;
  position: relative;
  overflow: hidden;
  /* 背景：工程感格線，不用光暈 */
  /* 讓你原本的 h2 自動套用共用樣式 */
  /* 右側空欄：做成「資訊面板」質感底 */
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background: linear-gradient(0deg, rgba(3, 28, 43, 0.55), rgba(3, 28, 43, 0.55)), repeating-linear-gradient(90deg, rgba(65, 90, 119, 0.18) 0, rgba(65, 90, 119, 0.18) 1px, transparent 1px, transparent 92px), repeating-linear-gradient(0deg, rgba(65, 90, 119, 0.12) 0, rgba(65, 90, 119, 0.12) 1px, transparent 1px, transparent 92px);
}
#contact .container {
  position: relative;
  z-index: 1;
}
#contact h2 {
  /* 如果你 h2 沒包 .en/.zh，也能正常顯示 */
  color: #ffffff;
}
#contact .contact-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  /* 卡片改成深色層次，不亮 */
  background: rgba(27, 38, 59, 0.72);
  border: 1px solid rgba(65, 90, 119, 0.38);
  padding: 1.15rem 1.2rem;
  border-radius: 1.15rem;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.2rem;
  /* icon 改成「方圓角 + 細邊框」更俐落 */
  /* 你的 line svg 也套同樣規格（不要硬白） */
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 0.9rem;
    padding: 1rem;
    border-radius: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box h3 {
  margin: 0 0 0.35rem;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: 1.05rem;
}
#contact .contact-box p {
  margin: 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}
#contact .contact-box .icon-box {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(3, 28, 43, 0.65);
  border: 1px solid rgba(65, 90, 119, 0.45);
}
#contact .contact-box .icon-box i {
  color: #e85f23;
  font-size: 1.65rem;
  line-height: 1;
}
#contact .contact-box .svg-box svg {
  width: 26px;
  height: 26px;
  fill: #e85f23;
}
#contact .contact-box a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.6;
}
#contact .contact-box a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(232, 95, 35, 0.9);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
#contact .contact-box a.small {
  margin-top: 0.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}
#contact .contact-box a.small:hover {
  color: #ffffff;
}
#contact .contact-box span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.65);
}
#contact .col.align-self-stretch {
  position: relative;
}

footer {
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
  color: #e85f23;
}/*# sourceMappingURL=all.css.map */