﻿@charset "UTF-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
}

body {
    /*display: block;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    */
    color: var(--white);
    line-height: 1.5;

}

.img {
    max-width: 100%;
}

@media (min-width: 576px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.6666666667%;
    }
}





:root {
    --primary: #EAB3A6;
    --primary-100: #FDF6EF;
    --secondary: #71A2BC;
    --secondary-800: #24456D;
    --secondary-900: #15315A;
    --secondary-400: #96C4D6;
    --success: #00b37a;
    --info: #008cff;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #4C4C4C;
    --primary-light: #FFFBF8;
    --secondary-light: #FDF6EF;
    --white: #fff;
    --white-85: hsla(0, 0%, 100%, 0.85);
    --white-70: hsla(0, 0%, 100%, 0.7);
    --white-50: hsla(0, 0%, 100%, 0.5);
    --black: #000;
    --black-50: rgba(0, 0, 0, 0.5);
    --black-30: rgba(0, 0, 0, 0.3);
    --black-15: rgba(0, 0, 0, 0.15);
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

/* ----------- Home Page -------------*/
/* Cover */
.Home_header {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.cover_bg {
    width: 100%;
    height: 750px;
    background-image: url(../images/img_cover_background.jpg);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    opacity: 100;
    overflow: hidden;
}


.Home_navbarBrand {
    width: 100%;
    height: 10%;
}

.logo {
    position: relative;
    width: 200px;
    height: 46px;
    fill: var(--primary-100);
}



.Home_jumbotron {
    position: relative;
    top: 30%;
}

/*第二段*/

.Home_introduce {
    width: 100%;
    background: linear-gradient(to top, var(--secondary-800), var(--secondary));

}


.Home_container {
    position: relative;
    z-index: 50;
    width: 80%;
}

.Home_sectionTitle {
    padding-top: 10%;
}

.titleFlash_left {
    width: 8rem;
    position: relative;
    padding-left: 1rem;
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.titleFlash_right {
    width: 8rem;
    padding-left: 1rem;
    position: relative;
}


.Home_sectionText {
    width: 70%;
    line-height: 2;
}

.Home_introduceList {
    position: relative;
    min-width: 33.3333%;
    padding-right: 3.5rem;
    padding-left: 3.5rem
}

.Home_introduceList img {
    max-width: 100%;
}


.img_ripple {
    position: absolute;
    top: 80rem;
    width: 100%;
    height: 370px;
    background: url(../images/img_ripple.svg);
    background-size: cover;
    opacity: 0.5;
}


/*頁尾*/

.footer {
    width: 100%;
    height: 145px;
    background: var(--secondary-900);
    color: var(--secondary-400);
    text-align: center;
}

.connect {
    padding: 2.5rem 0 0;
}

.footer a {
    color: var(--white);
}

.footer a:hover {
    color: var(--primary);
}


@media (max-width: 830px) {

    .cover_bg {
        height: 800px;
        background-image: url(../images/img_cover_m_background.jpg);

    }

    .Home_jumbotron {
        position: relative;
        top: 5%;
        padding: 0 2rem;
    }

    .Home_jumbotron h1 {
        font-size: 2rem;
    }


    p {
        font-size: 1.2rem;
    }


    .titleFlash_left,
    .titleFlash_right {
        width: 0rem;
        padding-left: 0rem;
    }

    .Home_container {
        width: 100%;
        padding: 0 2rem;
    }


    .Home_sectionText {
        width: 100%;
        line-height: 1.5;
    }

    .img_ripple {
        position: relative;
        top: 0;
        width: 100%;
        height: 80px;
        background: url(../images/img_ripple.svg);
        background-size: cover;
        opacity: 0.5;
    }


}



@media (max-width: 440px) {
    .logo {
        margin-top: 1rem;
        margin-left: 1rem;
        width: 150px;
        height: auto;
    }

    .footer {
        text-align: left;
        height: auto;
        padding: 0.5rem 2rem;
    }


}


@media (max-width: 320px) {
    .logo {
        margin-top: 0.5rem;
        margin-left: 0.5rem;
        width: 150px;
        height: auto;
    }

    .Home_jumbotron {
        position: relative;
        top: 0;
    }


}



/* ----------- Privacy Policy Page -------------*/

.Privacy {
    background: var(--primary-100);
    color: var(--dark);
}

.Privacy h1,
h4 {
    color: var(--secondary-900);
}

.Privacy_content {
    width: 100%;
}

@media (max-width: 760px) {
    .Privacy_content {
        width: 95%;
    }


}