@import "animate.css";

:root {
    --black: #000;
    --oneone-red: #D1080F;
}

.bg-red {
    background: var(--oneone-red);
}

.reduce {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: normal;
}

.display-web {
    display: inline-block;
}

.display-mobile {
    display: none;
}

@media screen and (max-width:500px) {

    .display-web {
        display: none !important;
    }

    .display-mobile {
        display: inline-block !important;
    }
}

/*flex橫排均分*/
.flex-between {
    display: flex;
    justify-content: space-between;
}

/*flex靠左對齊*/
.flex-left {
    display: flex;
    justify-content: flex-start;
}

/*flex靠右對齊*/
.flex-right {
    display: flex;
    justify-content: flex-end;
}

/*flex靠中對齊*/
.flex-center {
    display: flex;
    justify-content: center;
}

/*flex靠上對齊*/
.flex-start {
    display: flex;
    align-items: flex-start;
}

/*flex上下對齊*/
.flex-middle {
    display: flex;
    align-items: center;
}

.flex-bottom {
    display: flex;
    align-items: flex-end;
}

img {
    max-width: 100%;
    height: auto;
}


/* content */
body {
    font-family: "Microsoft JhengHei", sans-serif, Verdana, Geneva;
    background: #fff;
    font-size: 16px;

}

.container {
    width: 100vw;
    max-width: 100vw !important;
    padding: 0;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
}

h1 {
    margin: 0
}

h1 img {

    max-height: 25vh;
    margin: 40px 0;
}

h2 {
    margin: 0;
    padding: 10px 0 20px;
}

.modal h2 {
    border-left: 0px;
}

hr {
    margin: 2rem 0;
}

.btn,
.btn:hover {
    color: #fff;
    background: #000;
    font-weight: bolder;
    width: 280px;
    font-size: 18px;
    height: 50px;
    line-height: 36px;
    max-width: 100%;
    border-radius: 500px;
    display: block;
    margin: 10px auto;
    border: 0;
}

.btn:hover {
    background: #444;
}

.btn.teeter {
    margin: 0px auto 25px;
}

@media screen and (max-width:500px) {

    h1 img {

        max-height: 23vh;
        margin: 20px 0;
    }

    .btn,
    .btn:hover {
        height: 45px;
        line-height: 30px;
        margin: 7px auto;
    }

    .btn.teeter {
        margin: 0px auto 25px;
    }
}

@media screen and (max-width:380px) {
    h1 img {

        max-height: 20vh;
        margin: 10px 0;
    }

    .btn,
    .btn:hover {
        font-size: 16px;
        width: 250px;
        height: 36px;
        line-height: 25px;
        margin: 7px auto;
    }

    .btn.teeter {
        margin: 0px auto 20px;
    }

    .btn-pink img {
        margin: -5px 0 0 0 !important;
    }
}

.btn-red {
    background: var(--oneone-red)
}

.btn-red:hover {
    background: #e22727;
}

.btn-pink {
    background: #EA67A2;
}

.btn-pink:hover {
    background: #F98AC1;
}

.btn-pink img {
    max-height: 100%;
    width: auto;
    margin: -2px 0 0 0;
}

.btn-ig {
    background: linear-gradient(0deg, #f09433, #cc2366, #8f27d6);
}

.btn-ig:hover {
    background: linear-gradient(0deg, #f5a54d, #db4b7b, #9f45db);

}

.btn-fb {
    background: #204cb0;
}

.btn-fb:hover {
    background: #486fde;
}

.btn-yt {
    background: #b30000;
}

.btn-yt:hover {
    background: #d32222;
}

.badge-circle {
    background: #fff;
    border-radius: 100px;
    color: var(--oneone-red);

    padding: 5px 3px;
    font-size: 16px;
    font-weight: bolder;
}

a {
    color: #008fe2;
    text-decoration: none;
}

.center {
    text-align: center !important;
}

header {
    background: url(../img/header-bg.png) top center no-repeat;
    background-size: cover;
    width: 100VW;
    overflow: hidden;
}



.bg-orange {
    background: #e3843a;
    padding: 40px 0 0;
}

.bg-brown {
    background: #492920;
}

p {
    font-size: 20px;
    color: #000;
    margin: 20px auto;
    width: 280px;
    text-align: left;
}

h3 img {
    vertical-align: top;
}

h3 {
    margin: 0 0 5px;
    font-size: 16px;
}

.content {
    background: #fff;
    text-align: center;
    width: 100vw;
    margin: 0;
    padding: 10px 0 72px;

}



@media screen and (max-width:500px) {

    .row>* {

        padding-right: calc(var(--bs-gutter-x) * .2);
        padding-left: calc(var(--bs-gutter-x) * .2);

    }



}



/*FOOTER*/
footer {
    width: 100vw;
    padding: 10px 0;
    background: #000;
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

footer img {
    width: 100px;
    height: auto;
    margin: 0 10px 5px
}


footer p {

    font-size: 10px;
    margin: 0 auto;
    color: #fff;
}



.close {
    background: 0 0;
    position: absolute;
    right: 15px;
    border: none;
    padding: 0;
}

.close img {
    width: 30px;
    height: 30px;
    opacity: .5;
    transition: all .3s ease-out;
}

.modal-header {
    border: none;
}