@charset "utf-8";

/* ---------------------------------- */
/*  index-banner
------------------------------------- */
@media screen and (max-width: 480px) {
    .index-banner-title {
        transform: scale(1.8);
        margin-top:-30px;
    }

    .index-banner-text {
        transform: scale(2.2);
        margin-left:-50px;
    }
}


/* ---------------------------------- */
/*  bg-gradient 漸層背景
------------------------------------- */
.bg-gradient {
    background: #002A3B;
    background: radial-gradient(800px 800px at 30% 60%, #00425c 0%, #002A3B 100%)!important;
}


/* ---------------------------------- */
/*  more-btn
------------------------------------- */
.more-btn {
    display: block;
    border-radius: 999rem;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    transition: 0.3s!important;
}
.more-btn:hover {
    border: 1px solid var(--fourth-color);
    background-color: var(--fourth-color);
}

@media screen and (max-width: 767px) {
    .more-btn {
        font-size: 1rem;
    }
}

@media screen and (max-width: 540px) {
    .more-btn {
        margin-top: 12px;
        font-size: 0.9rem;
    }
}


/* ---------------------------------- */
/*  special-title 特殊標題
------------------------------------- */
.special-title {
    font-size: 3.8rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    text-align: center;
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {
    .special-title {
        font-size: 3rem;
        -webkit-text-stroke: 1.5px var(--primary-color);
    }
}


/* ---------------------------------- */
/*  product-agent 產品代理
------------------------------------- */
.product-agent {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 3vw auto 2vw auto;
}

.agent-item {
    flex: 1;
    border-left: 2px solid #333333;
    padding: 0 1.8rem;
}

.agent-item-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    height: 10rem;
}

/* 圓形 */
.agent-item-title::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 10px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: var(--third-color);
    z-index: -1;
}

/* 代理公司 英文 */
.agent-item-title .agent-en {
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    font-size: 17px;
    text-transform: uppercase;
}

.agent-item-title h3 {
    font-size: 1.85rem;
    line-height: 1.4;
    text-align: end;
}

.agent-item-title h3 span {
    display: block;
    font-size: 1.2rem;
}

.agent-item .agent-logo {
    object-fit: scale-down;
    object-position: 0% 50%;
    height: 40px;
}

.agent-item-content {
    margin-top: 2rem;
}

@media screen and (max-width: 1200px) {
    .agent-item {
        flex: 50%;
        margin-bottom: 1.8rem;
    }
}

@media screen and (max-width: 767px) {
    .product-agent {
        padding: 0 10px;
    }

    .agent-item {
        flex: 100%;
        padding-right: 8px;
    }
}