.padding-all{
    padding: 60px 100px;
}
.content{
    padding: 60px 100px 100px 100px;
}
.banner-top{
    height: 70px;
}
.banner{
    position: absolute;
    top: 70%;
    left: 23%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.title{
    font-size: 35px;
    font-weight: bold;
}
.subtitle{
    font-size: 20px;
}

.breadcrumb{
    font-size: 15px;
    margin-top: 50px;
}
.breadcrumb a{
    color: white;
}

.font-size-16 {
    font-size: 16px;
}
.font-size-20 {
    font-size: 20px;
}
.font-size-32 {
    font-size: 32px;
}

/* 標籤列樣式 */
.tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #B0B0AF;
}
.tab {
    padding: 20px 40px;
    cursor: pointer;
    border-bottom: none;
    background-color: white;
}
.tab.active {
    background-color: #F9F9F9;
    font-weight: bold;
    color: #0070BD;
}
.tab-title {
  display: inline-block;
  position: relative;
  font-weight: bold;
  text-align: center;
  padding-bottom: 12px;
}
.tab-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background-color: #0070BD;
}

button:hover, button:focus {
    background-color: #EFF4F8;
    color: #0070BD;
}
button:disabled, button:disabled:hover {
    background-color: white;
    border: 1px solid #B0B0AF;
    color: #B0B0AF;
}
.btn-icon {
    width: 20px;
    height: 20px;
}

#contact-info {
    scroll-margin-top: 70px;
}
#iframe-container{
    border: none;
    display: block;
}

@media (min-width: 900px) and (max-width: 1024px) {
    .banner-top {
        height: 0px !important;
    }
    .banner{
        top: 60%;
        left: 23%;
    }
    .title{
        font-size: 25px;
    }
    .subtitle{
        font-size: 15px;
    }
    .breadcrumb{
        font-size: 15px;
        margin-top: 30px;
    }
    #contact-info {
        scroll-margin-top: 80px;
    }
}

@media (max-width: 899px) {
    .banner-top {
        height: 0px !important;
    }
    .title{
        display: none;
    }
    .subtitle{
        display: none;
    }
    .breadcrumb{
        display: none;
    }
    #contact-info {
        scroll-margin-top: 80px;
    }
}

@media (min-width: 640px) and (max-width: 991px) {
    .padding-all{
        padding: 60px 55px;
    }
    .content{
        padding: 60px 55px 100px 55px;
    }
}

@media (max-width: 639px) {
    .content{
        padding: 30px 25px 100px 25px;
    }
    .padding-all{
        padding: 30px 25px;
    }
    .tab {
        padding: 20px 20px;
    }
}