/**
* Template Name: Avilon
* Template URL: https://bootstrapmade.com/avilon-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/**
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

    .section-title h2:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

.section-title p {
    margin-bottom: 0;
}



.hero.section.dark-background {
    background: #0ea8ac;
    position: relative;
    color: white;
    overflow: hidden;
    padding: 120px 0 160px;
    font-family: "Poppins", sans-serif;
}

/* Carousel Container */
#hero-carousel .carousel-container {
    max-width: 700px;
    height: 200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

#hero-carousel h2 {
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff; /* 淡綠色 */
}

#hero-carousel p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.btn-get-started {
    background: #8bc34a;
    padding: 10px 28px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

    .btn-get-started:hover {
        background: #aed581;
        color: #222;
        text-decoration: none;
    }

/* 波浪 SVG */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150%;
    height: 120px;
    z-index: 1;
    line-height: 0;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}


    /* 波浪顏色及透明度 */
    .hero-waves .wave1 use {
        fill: #f6f9ff;
        animation: move-forever1 10s linear infinite;
        animation-delay: -2s;
        opacity: 0.6;
    }

    .hero-waves .wave2 use {
        animation: move-forever2 8s linear infinite;
        animation-delay: -2s;
        fill: #f6f9ff;
        opacity: 0.4;
    }

    .hero-waves .wave3 use {
        animation: move-forever3 6s linear infinite;
        animation-delay: -2s;
        fill: #f6f9ff;
    }



@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}



/* 輪播箭頭顏色 */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    color: white;
}


/*--------------------------------------------------------------
    # About Section
    --------------------------------------------------------------*/
.about .inner-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 30px 0;
}

@media (min-width: 991px) {
    .about .inner-title {
        max-width: 65%;
        margin: 0 0 80px 0;
    }
}

.about .our-story {
    padding: 40px;
    /*background-color: color-mix(in srgb, #212529, transparent 96%);*/
    background-color: rgba(33, 37, 41, 0.04); /* #212529 加透明度 4% */
}

@media (min-width: 991px) {
    .about .our-story {
        padding-right: 35%;
    }
}

.about .our-story h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    /*color: color-mix(in srgb, var(--default-color), transparent 50%);*/
    color: rgba(33, 37, 41, 0.5);
}

.about .our-story h3 {
    font-size: 2.25rem;
    font-weight: 700;
    /*color: color-mix(in srgb, var(--default-color), transparent 20%);*/
    color: rgba(33, 37, 41, 0.8);
}

.about .our-story p:last-child {
    margin-bottom: 0;
}

.about ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .about ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }

    .about ul i {
        font-size: 1.25rem;
        margin-right: 0.5rem;
        line-height: 1.2;
        color: var(--accent-color);
    }

.about .watch-video i {
    font-size: 2rem;
    transition: 0.3s;
    color: var(--accent-color);
}

.about .watch-video a {
    font-weight: 600;
    /*color: color-mix(in srgb, var(--default-color), transparent 20%);*/
    color: rgba(33, 37, 41, 0.8);
    margin-left: 8px;
    transition: 0.3s;
}

.about .watch-video:hover a {
    color: var(--accent-color);
}

.about .about-img {
    min-height: 400px;
    position: relative;
}

@media (min-width: 992px) {
    .about .about-img {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 420px;
    }
}

.about .about-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}




/*--------------------------------------------------------------
        # Services Section
        --------------------------------------------------------------*/
.services .service-item {
    background-color: #ffffff;
    text-align: center;
    border: 3px solid rgba(33, 37, 41, 0.15);
    padding: 80px 20px;
    transition: border ease-in-out 0.3s;
    height: 100%;
}



    .services .service-item .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #ffffff;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: 0.3s;
    }

        .services .service-item .icon i {
            color: red;
            font-size: 50px;
            transition: ease-in-out 0.3s;
        }

    .services .service-item h3 {
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 22px;
        transition: 0.3s;
    }

    .services .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .service-item:hover {
        border-color: #1dc8cd;
    }

        .services .service-item:hover h3 {
            color: #1dc8cd;
        }


