@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700');
body {
    color: #262626;
    font-size: 16px;
    line-height: 1.8;
    font-family: '微軟正黑體';
    min-height: 100%;
    display: flex;
    flex-direction: column;
    /*background: #f4f4f4;*/
    background-image: url("../images/video-background.jpg");
    background-size: Cover;
    background-repeat: repeat;
}

html {
    height: 100%;
}

.allcontent {
    flex: 1;
}

img {
    vertical-align: baseline;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a {
    color: #262626;
}

a:visited {
    color: #757686;
}

a:hover, a:focus, a:active {
    color: #262626;
}

a:focus {
    outline: thin dotted;
}

a:hover, a:active {}

/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/

/*
# Header Bar
--------------------------------*/

.top-header-bar {
    background: #262626;
    color: #fff;
    padding: 5px;
}

.top-header-bar2 {
    background: #262222;
    /*#ff4800*/
    color: #fff;
    padding: 5px;
}

@media screen and (max-width: 576px) {
    .top-header-bar2 {
        padding: 0px;
    }
}

/*
# Header Bar Email
--------------------------------*/

.header-bar-email, .header-bar-text {
    padding: 20px 0;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

.header-bar-email a, .header-bar-text span {
    text-transform: lowercase;
    color: #fff;
    text-decoration: none;
}

.nav-bar {
    /*border-bottom: 1px solid #c3c3c3;
    margin-bottom: 10px;*/
    background: linear-gradient(90deg, #f4f4f4 90%, #d9d9d9 100%);
    background: -moz-linear-gradient(90deg, #f4f4f4 90%, #d9d9d9 100%);
    background: -webkit-linear-gradient(90deg, #f4f4f4 90%, #d9d9d9 100%);
    background: -o-linear-gradient(90deg, #f4f4f4 90%, #d9d9d9 100%);
}

.nav-bar .container {
    min-width: 100% !important;
}

/*
# marquee
--------------------------------*/

.marquee {
    display: inline-block;
    padding: 20px 20px 20px 5px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-decoration: navajowhite;
    /*border-right: 1px solid #fff;*/
    /*background: #ff5a00;*/
}

.marquee .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 40px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

.marquee i {
    background: #ff5a00;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 10px;
}

.marquee-text {
    color: #343434;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    margin: auto 0;
}

.marquee-text p {
    margin: 0;
    font-size: 48px;
}

.marquee-text span {
    color: #fff;
    text-decoration: none;
}

#divMsg {
    line-height: 60px;
    height: 60px;
    overflow: hidden;
    font-size: 48px;
}

@media screen and (max-width: 992px) {
    .marquee {
        padding: 10px 10px 10px 5px;
    }
    .marquee .fa {
        font-size: 32px;
    }
    .marquee i {
        background: #ff5a00;
        width: 50px;
        height: 50px;
        padding: 10px;
        font: 32px;
    }
    .marquee-text p {
        margin: 0;
        font-size: 32px;
    }
    .marquee-text-768 p {
        margin: 0;
        font-size: 32px;
    }
    #divMsg {
        line-height: 40px;
        height: 34px;
        overflow: hidden;
        font-size: 34px;
    }
}

@media screen and (max-width: 576px) {
    .marquee {
        padding: 5px;
    }
    .marquee .fa {
        font-size: 20px;
    }
    .marquee i {
        width: 34px;
        height: 34px;
        padding: 8px;
    }
    .marquee-text p {
        margin: 0;
        font-size: 20px;
    }
    .marquee-text-425 p {
        margin: 0;
        font-size: 20px;
    }
    #divMsg {
        line-height: 40px;
        height: 40px;
        overflow: hidden;
        font-size: 18px;
    }
}

/*
# Header Bar Text
--------------------------------*/

.header-bar-text {
    margin-left: 48px;
}

.header-bar-text p {
    margin: 0;
}

/*
# Header Bar Donate Button
--------------------------------*/

.donate-btn a {
    display: inline-block;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-decoration: navajowhite;
    letter-spacing: 1px;
    background: #262222;
}

/*
# Site Branding
--------------------------------*/

.site-branding {
    width: calc(100% - 24px);
    padding: 20px 0;
}

.site-branding a {
    margin-top: 6px;
}

@media screen and (min-width: 992px) {
    .site-branding {
        width: auto;
    }
}

/*
  Hamburger Menu
----------------------------------------*/

.hamburger-menu {
    position: relative;
    width: 24px;
    height: 22px;
    margin: 0 auto;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #262626;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 2px;
}

.hamburger-menu span:nth-child(2), .hamburger-menu span:nth-child(3) {
    top: 10px;
}

.hamburger-menu span:nth-child(4) {
    top: 18px;
}

.hamburger-menu.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

.hamburger-menu.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

/*
# Main Menu
--------------------------------*/

.site-navigation ul {
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 9999;
    width: 320px;
    max-width: calc(100% - 120px);
    height: 100%;
    padding: 30px 15px;
    margin: 0;
    background: #fff;
    list-style: none;
    overflow-x: scroll;
    transition: all 0.35s;
}

.site-navigation.show ul {
    left: 0;
}

.site-navigation ul li {
    margin: 0 16px;
}

.site-navigation ul li a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #262626;
    text-decoration: none;
    transition: color .35s;
}

@media screen and (min-width: 992px) {
    .site-navigation ul {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 0;
        overflow: auto;
        background: transparent;
    }
    .site-navigation ul li a {
        padding: 49px 0 30px;
    }
}

.site-navigation ul li a:hover, .site-navigation ul li.current-menu-item a {
    border-bottom: 3px solid #ff5a00;
    color: #ff5a00;
}

/*
# Menu SHopping Cart
--------------------------------*/

.header-bar-cart {
    margin-left: 40px;
}

.header-bar-cart a {
    width: 48px;
    height: 100%;
}

.header-bar-cart a {
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-slider {
    max-height: 820px;
}

.hero-content-wrap {
    position: relative;
    color: #fff;
}

.hero-content-overlay {
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
}

.hero-content-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}

.hero-content-overlay h1 {
    margin: 0;
    font-size: 102px;
    font-weight: 600;
    line-height: 1;
}

.hero-content-overlay h4 {
    margin: 0;
    font-size: 46px;
    font-weight: 600;
}

.hero-content-overlay p {
    font-weight: 500;
    line-height: 1.8;
}

.hero-content-overlay .entry-footer a.btn {
    color: #fff;
}

.hero-slider .pagination-wrap {
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 60px;
}

.hero-slider .swiper-pagination-bullet {
    width: 24px;
    height: 20px;
    margin-right: 6px;
    border-radius: 0;
    font-size: 12px;
    color: #fff;
    background: transparent;
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    color: #ff5a00;
}

.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
    width: 70px;
    height: 70px;
    margin-top: -35px;
    border-radius: 50%;
    background: -moz-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 90, 0, 1)), color-stop(100%, rgba(1255, 54, 0, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* ie10+ */
    background: linear-gradient(270deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5a00', endColorstr='#ff3600', GradientType=1);
    /* ie6-9 */
    transition: all .35s;
}

.hero-slider .swiper-button-next {
    right: 80px;
}

.hero-slider .swiper-button-prev {
    left: 80px;
}

.hero-slider .swiper-button-next span, .hero-slider .swiper-button-prev span {
    display: block;
    width: 36px;
    padding-top: 15px;
    margin: 0 auto;
}

.hero-slider .swiper-button-next path, .hero-slider .swiper-button-prev path {
    fill: #fff;
}

.hero-slider .swiper-button-next.swiper-button-disabled, .hero-slider .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

@media screen and (max-width: 1200px) {
    .hero-content-overlay h1 {
        font-size: 72px;
    }
    .hero-content-overlay h4 {
        font-size: 32px;
    }
    .hero-content-overlay p {
        font-size: 14px;
    }
    .hero-slider .pagination-wrap {
        height: 40px;
    }
}

@media screen and (max-width: 992px) {
    .hero-content-overlay h1 {
        font-size: 48px;
    }
    .hero-content-overlay h4 {
        font-size: 22px;
    }
    .hero-content-overlay p, .hero-slider .pagination-wrap, .hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
        display: none;
    }
    .hero-content-overlay footer {
        margin-top: 12px !important;
    }
}

/*--------------------------------------------------------------
# Elements Page
--------------------------------------------------------------*/

.elements-wrap {
    margin-top: 80px;
}

.elements-page .elements-heading .entry-title {
    font-size: 24px;
    font-weight: 600;
    color: #262626;
}

.elements-page .elements-container {
    margin-top: 54px;
}

.elements-page .btn {
    margin-right: 20px;
}

/*
# Button
----------------------------------*/

.btn {
    padding: 20px 10px;
    border: 2px solid #262626;
    border-radius: 60px;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: #262626;
    outline: none;
    /*width: 48%;*/
}

@media (max-width: 992px) {
    .btn {
        font-size: 30px;
        /*width: 48%;*/
    }
}

.btn:focus {
    outline: none;
}

.btn.orange-border {
    border-color: #ff5a00;
}

.btn.orange-border:hover, .btn.gradient-bg {
    border-color: transparent;
    background: -moz-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 90, 0, 1)), color-stop(100%, rgba(1255, 54, 0, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* ie10+ */
    background: linear-gradient(270deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5a00', endColorstr='#ff3600', GradientType=1);
    /* ie6-9 */
    color: #fff;
    width: 48%;
}

.btn.linepay-bg {
    border-color: transparent;
    background: #00C43E;
    color: #fff;
    width: 48%;
}

.btn.jkospay-bg {
    border-color: transparent;
    background-image: url("../images/pay_jko.jpg");
    background-position: center;
    background-size: cover;
    color: #fff;
    width: 48%;
}

.btn.taiwanpay-bg {
    border-color: transparent;
    background-image: url("../images/pay_taiwan.jpg");
    background-position: center;
    background-size: cover;
    color: #fff;
    width: 48%;
}

.btn.pipay-bg {
    border-color: transparent;
    background-image: url("../images/pay_pi.jpg");
    background-position: center;
    background-size: cover;
    color: #fff;
    width: 48%;
}

.btn.agent-bg {
    border-color: transparent;
    background: #0080c4;
    color: #fff;
    width: 48%;
}

.btn.confirm-bg {
    border-color: transparent;
    background: #000;
    color: #fff;
    /* width: 48%;
    margin: 20px 0;*/
}

.btn.registered-bg {
    border-color: transparent;
    background: #ff5a00;
    color: #fff;
    margin: 20px 0;
    /* width: 48%; */
}

.btn.logout-btn {
    padding: 10px 25px;
    margin: 5px;
    border: 1px solid #ffffff;
    border-radius: 24px;
    font-size: 24px;
    font-weight: 500;
    outline: none;
    color: #fff;
}

.btn.prepage-btn {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 180px;
    padding: 15px 15px 15px 5px;
    margin: 10px;
    background: #ff5a00;
    border: 0px solid #ffffff;
    border-radius: 30px;
    font-size: 28px;
    outline: none;
    color: #fff;
}

.home-btn a {
    display: inline-block;
    padding: 15px 0px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-decoration: navajowhite;
    /*letter-spacing: 1px;*/
    /*background: #262222;*/
}

.home-btn i {
    padding: 2px 5px;
    font-size: 36px;
    border-radius: 50%;
    color: #262626;
    background: #fff;
}

@media screen and (max-width: 576px) {
    body {
        line-height: 1;
    }
    .btn {
        padding: 12px;
        margin: 0;
        font-size: 18px;
        width: 85%;
    }
    .btn.logout-btn {
        padding: 2px 2px;
        font-size: 11px;
        /*width: 180px;*/
    }
    .home-btn a {
        padding: 2px 2px;
        font-size: 11px;
    }
    .btn.prepage-btn {
        width: 80px;
        font-size: 16px;
        padding: 12px 10px 12px 0px;
        margin: 10px;
    }
    .btn.jkospay-bg, .taiwanpay-bg, .pipay-bg {
        background-size: 80%;
    }
    .home-btn i {
        padding: 2px 3px;
        font-size: 20px;
        border-radius: 50%;
        color: #262626;
        background: #fff;
        margin: auto;
    }
}

/*
# Accordion
----------------------------------*/

.accordion-wrap {
    position: relative;
}

.accordion-wrap .entry-content {
    margin: 0;
}

.accordion-wrap .entry-title {
    padding: 12px 38px;
    margin-bottom: 15px;
    border-radius: 30px;
    background: #f3f3f3;
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    cursor: pointer;
}

.accordion-wrap .entry-title.active {
    border: 0;
    background: -moz-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 90, 0, 1)), color-stop(100%, rgba(1255, 54, 0, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* ie10+ */
    background: linear-gradient(270deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5a00', endColorstr='#ff3600', GradientType=1);
    /* ie6-9 */
    color: #fff;
}

.accordion-wrap .entry-title .arrow-r::before, .accordion-wrap .entry-title .arrow-d::before {
    content: "+";
    font-size: 24px;
    font-weight: 400;
}

.accordion-wrap .entry-title .arrow-d::before {
    content: "-";
}

/*
# Content
----------------------------------*/

.accordion-wrap .entry-content {
    display: none;
}

.accordion-wrap .entry-content p {
    padding: 18px 38px;
    font-size: 14px;
    line-height: 2;
    color: #929191;
}

/*
# Tabs
----------------------------------*/

ul.tabs-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.tabs-nav .tab-nav {
    padding: 12px 32px;
    margin-right: 6px;
    border-radius: 30px;
    background: #f3f3f3;
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    cursor: pointer;
    transition: all .35s;
}

ul.tabs-nav .tab-nav.active {
    border: 0;
    background: -moz-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 90, 0, 1)), color-stop(100%, rgba(1255, 54, 0, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* ie10+ */
    background: linear-gradient(270deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5a00', endColorstr='#ff3600', GradientType=1);
    /* ie6-9 */
    color: #fff;
}

.tabs .tab-nav {
    margin-bottom: -1px;
    z-index: 99;
}

.tabs-container {
    padding: 34px;
}

.tab-content {
    display: none;
}

.tab-content p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 2;
    color: #929191;
}

/*
# Circular Progress Bar
----------------------------------*/

.circular-progress-bar {
    margin: 20px 0;
    text-align: center;
}

.circular-progress-bar .circle {
    position: relative;
    width: 156px;
    height: 156px;
    margin: 0 auto;
}

.circular-progress-bar .circle strong {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -24px;
    width: 100%;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    color: #262626;
}

.circular-progress-bar .circle strong i {
    margin-top: 5px;
    font-size: 24px;
    font-style: normal;
}

.circular-progress-bar .entry-title {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 600;
    color: #262626;
}

/*
# Counter Box
----------------------------------*/

.counter-box {
    margin: 20px 0;
    text-align: center;
}

.counter-box .start-counter {
    margin-top: 10px;
    font-size: 48px;
    font-weight: 500;
    color: #262626;
}

.counter-box .counter-k {
    font-size: 24px;
    font-weight: 500;
}

.counter-box .entry-title {
    margin-top: 16px;
    font-size: 14px;
    color: #595858;
}

/*
# Icon Box
----------------------------------*/

.icon-box {
    padding: 10px;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: #ecf2f5;
    text-align: center;
    transition: all .35s;
    margin: 10px 0;
    width: 100%;
    /*background: -moz-linear-gradient(180deg, rgba(255,90,0,1) 0%, rgba(255,54,0,1) 100%); /* ff3.6+ */
    /*background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,90,0,1)), color-stop(100%, rgba(1255,54,0,1))); /* safari4+,chrome */
    /*background: -webkit-linear-gradient(180deg, rgba(255,90,0,1) 0%, rgba(255,54,0,1) 100%); /* safari5.1+,chrome10+ */
    /*background: -o-linear-gradient(180deg, rgba(255,90,0,1) 0%, rgba(255,54,0,1) 100%); /* opera 11.10+ */
    /*background: -ms-linear-gradient(180deg, rgba(255,90,0,1) 0%, rgba(255,54,0,1) 100%); /* ie10+ */
    /*background: linear-gradient(270deg, rgba(255,90,0,1) 0%, rgba(255,54,0,1) 100%); /* w3c */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5a00', endColorstr='#ff3600',GradientType=1 ); /* ie6-9 */
}

.icon-box-fb {
    background: #79C4CA;
}

.icon-box-line {
    background: #A8C269;
}

.icon-box-start1 {
    background: rgba(255, 255, 255, 0);
}

.icon-box-start2 {
    background: rgba(255, 255, 255, 0);
}

.icon-box-start1 img, .icon-box-start2 img {
    max-width: 120px;
    max-height: 120px;
    padding: 0px;
    border-radius: 50%;
}

@media screen and (min-width: 992px) {
    .icon-box {
        padding: 50px;
        margin: 30px 0;
    }
    .icon-box-start1 img, .icon-box-start2 img {
        max-width: 200px;
        max-height: 200px;
        padding: 0px;
    }
}

@media screen and (max-width: 576px) {
    .icon-box-start1 img, .icon-box-start2 img {
        max-width: 80px;
        max-height: 80px;
        padding: 0px;
    }
}

.icon-box:hover, .icon-box.active {
    background: #d0d0d0;
}

.icon-box figure {
    margin: 0;
}

.icon-box figure img:nth-of-type(1) {
    display: block;
}

.icon-box figure img:nth-of-type(2) {
    display: none;
}

.icon-box:hover figure img:nth-of-type(1), .icon-box.active figure img:nth-of-type(1) {
    display: none;
}

.icon-box:hover figure img:nth-of-type(2), .icon-box.active figure img:nth-of-type(2) {
    display: block;
}

.icon-box .entry-title {
    padding: 10px;
    color: #fff;
    /*background: #fff;*/
    border-radius: 20px;
}

.icon-box .entry-title h3 {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}

.icon-box .entry-title h5 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

@media screen and (max-width: 576px) {
    .icon-box .entry-title h3 {
        font-size: 18px;
        font-weight: 600;
    }
    .icon-box .entry-title h5 {
        font-size: 14px;
        font-weight: 500;
    }
    .icon-box .entry-title {
        padding: 5px;
    }
}

.icon-box:hover .entry-title, .icon-box.active .entry-title {
    color: #fff;
}

.icon-box .entry-content {
    margin-top: 24px;
}

.icon-box .entry-content p {
    margin: 0;
    font-size: 14px;
    color: #595858;
}

.icon-box:hover .entry-content p, .icon-box.active .entry-content p {
    color: #fff;
}

.exchange100 {
    margin: 30px;
    padding: 10px;
    background: #ff5a00;
    color: #fff;
    border-radius: 100px;
    width: 100%;
}

.exchange100 h3 {
    font-size: 50px;
}

.exchange100 span {
    font-size: 80px;
}

.qrcode h3 {
    color: #fff;
    font-size: 40px;
    line-height: 200px;
    text-align: right;
}

@media screen and (max-width: 576px) {
    #exqrcode {
        display: none;
    }
}

/*
# Bar Filler
----------------------------------*/

.barfiller {
    position: relative;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: #d6dee1;
}

.barfiller .fill {
    display: block;
    position: relative;
    width: 0px;
    height: 100%;
    border-radius: 3px;
    background: #333;
    z-index: 1;
}

.barfiller .tipWrap {
    display: none;
}

.barfiller .tip {
    left: 0;
    position: absolute;
    z-index: 2;
    width: 42px;
    height: 42px;
    padding-top: 14px;
    margin-top: -21px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    background: #ff5a00;
    color: #fff;
}

/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/

/*
# Icon Boxes
--------------------------------*/

.home-page-icon-boxes {
    padding: 50px 0 0px 0;
    /*background: #fff;*/
}

.home-page-icon-boxes a {
    text-decoration: none;
}

/*.home-page-icon-boxes a:active {
    border: 8px solid #ff5a00;
}*/

#status {
    display: none;
}

@media screen and (max-width: 576px) {
    .home-page-icon-boxes {
        padding: 0;
    }
    #status {
        display: block;
    }
}

/*
# Welcome
--------------------------------*/

.home-page-welcome {
    position: relative;
    /*padding: 96px 0;*/
    /*height: 441px;*/
    /*background: url("../images/welcome-bg.jpg") no-repeat top;*/
    background-size: cover;
    z-index: 99;
}

.home-page-welcome::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    /*background: rgba(21,21,21,.9);*/
}

.welcome-content .entry-title {
    position: relative;
    padding-bottom: 24px;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.welcome-content .entry-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: #ff5a00;
}

.welcome-content .entry-content {
    font-size: 14px;
    line-height: 2;
    color: #b7b7b7;
}

.wave img {
    display: block;
    width: 100%;
    padding: 0;
}

.logoimg img {
    display: block;
    width: 55%;
    max-width: 370px;
    padding: 20px;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .home-page-welcome img {
        /*margin-bottom: 60px;*/
    }
}

@media screen and (max-width: 576px) {
    .logoimg img {
        max-width: 300px;
    }
}

/*
# Upcoming Events
--------------------------------*/

.home-page-events {
    padding: 96px 0;
}

.section-heading .entry-title {
    position: relative;
    padding-bottom: 24px;
    font-size: 36px;
    font-weight: 600;
}

.section-heading .entry-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: #ff5a00;
}

@media screen and (max-width: 992px) {
    .home-page-events .featured-cause .section-heading {
        margin-top: 80px;
    }
}

.event-wrap {
    margin-top: 40px;
}

.event-wrap figure {
    width: 144px;
    height: auto;
}

.event-wrap figure img {
    display: block;
    width: 100%;
}

.event-content-wrap {
    width: calc(100% - 180px);
    margin-top: -10px;
}

.event-content-wrap .entry-title a {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
}

.event-content-wrap .posted-date a, .event-content-wrap .cats-links a {
    display: block;
    position: relative;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    color: #262626;
}

.event-content-wrap .posted-date a {
    padding-right: 14px;
    margin-right: 14px;
}

.event-content-wrap .posted-date a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #262626;
}

.event-content-wrap .entry-content {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 14px;
    color: #929191;
}

.event-content-wrap .entry-footer a {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #ff5a00;
    text-decoration: none;
}

/*
# Featured Cause
--------------------------------*/

.home-page-events {
    padding: 96px 0;
}

.menuwidth {
    max-width: 18%;
    margin: 0px 10PX !important;
    /*element.style */
}

@media screen and (max-width: 992px) {
    .menuwidth {
        max-width: 28%;
        margin: 0px 10PX !important;
        /*element.style */
    }
}

.featured-cause .cause-wrap {
    padding: 40px 24px;
    background: #edf3f5;
}

.featured-cause .featured-cause .cause-wrap figure {
    width: 246px;
    height: auto;
}

.cause-wrap figure img {
    display: block;
    width: 100%;
    border-radius: 50%;
}

.featured-cause .cause-content-wrap {
    width: calc(100% - 280px);
}

.cause-content-wrap .entry-title {
    font-size: 34px;
    font-weight: 600;
    color: #262626;
}

.cause-content-wrap p {
    font-size: 28px;
    font-weight: 500;
    color: #646464;
}

/*.cause-wrap a {
    text-decoration: none;
}
.cause-wrap a:active {
    border: 8px solid #ff5a00;
}*/

@media screen and (max-width: 776px) {
    .cause-content-wrap .entry-title a {
        font-size: 28px;
    }
}

@media screen and (max-width: 576px) {
    .cause-content-wrap .entry-title {
        font-size: 20px;
        font-weight: 600;
    }
    .cause-content-wrap p {
        font-size: 18px;
        font-weight: 500;
    }
}

.cause-content-wrap .posted-date a, .cause-content-wrap .cats-links a {
    display: block;
    position: relative;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    color: #262626;
}

.cause-content-wrap .posted-date a {
    padding-right: 14px;
    margin-right: 14px;
}

.cause-content-wrap .posted-date a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #262626;
}

.cause-content-wrap .entry-content {
    margin-top: 28px;
    margin-bottom: 0;
    font-size: 14px;
    color: #929191;
}

.cause-wrap .fund-raised {
    margin-top: 64px;
}

.fund-raised-details {
    font-size: 14px;
    color: #929191;
}

/*
# Home Causes
--------------------------------*/

.our-causes {
    position: relative;
    padding: 50px 0;
    background: #c7c7c7;
    z-index: 99;
}

@media screen and (max-width: 576px) {
    .our-causes {
        padding: 30px 0;
    }
}

.our-causes::before {
    content: '';
    background-color: rgba(234, 234, 234, 0.75);
    /*background-image: linear-gradient(90deg,rgba(0,0,0,.15) 50%,transparent 50%),linear-gradient(rgba(0,0,0,.15) 50%,transparent 50%);*/
    background-size: 2px 2px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.our-causes::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(232, 237, 238, .8);
}

.our-causes .swiper-container {
    /* margin: 0 40px;*/
}

.our-causes .cause-wrap {
    margin-top: 20px;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.our-causes .cause-wrap a {
    text-decoration: none;
}

.our-causes .cause-wrap img:focus, .our-causes .cause-wrap.focus img, .our-causes .cause-wrap img:active {
    outline: 0;
    box-shadow: 0 0 0 0.8rem rgb(255, 206, 0);
}

.our-causes .cause-wrap figure {
    position: relative;
}

.our-causes .cause-wrap figure .figure-overlay {
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, .7);
    transition: all .5s;
}

.our-causes .cause-wrap figure:hover .figure-overlay {
    opacity: 1;
    visibility: visible;
}

.our-causes .cause-content-wrap {
    padding: 10px;
    /*background: #fff;*/
    text-align: center;
}

.our-causes .cause-content-wrap .entry-content {
    margin-top: 20px;
}

.our-causes .cause-wrap .fund-raised {
    margin-top: 48px;
}

.our-causes .swiper-button-next, .our-causes .swiper-button-prev {
    width: 70px;
    height: 70px;
    margin-top: -35px;
    border-radius: 50%;
    background: -moz-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 90, 0, 1)), color-stop(100%, rgba(1255, 54, 0, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* ie10+ */
    background: linear-gradient(270deg, rgba(255, 90, 0, 1) 0%, rgba(255, 54, 0, 1) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5a00', endColorstr='#ff3600', GradientType=1);
    /* ie6-9 */
    transition: all .35s;
}

.our-causes .swiper-button-next {
    right: -120px;
}

.our-causes .swiper-button-prev {
    left: -120px;
}

.our-causes .swiper-button-next span, .our-causes .swiper-button-prev span {
    display: block;
    width: 36px;
    padding-top: 15px;
    margin: 0 auto;
}

.our-causes .swiper-button-next path, .our-causes .swiper-button-prev path {
    fill: #fff;
}

.our-causes .swiper-button-next.swiper-button-disabled, .our-causes .swiper-button-prev.swiper-button-disabled {
    /*opacity: 0;*/
    background: #bcbcbc;
}

@media screen and (max-width: 1400px) {
    .our-causes .swiper-button-next {
        right: 0;
    }
    .our-causes .swiper-button-prev {
        left: 0;
    }
}

@media screen and (max-width: 576px) {
    .our-causes .swiper-button-next, .our-causes .swiper-button-prev {
        /*     display: none;*/
        width: 45px;
        height: 45px;
    }
    .our-causes .swiper-button-next span, .our-causes .swiper-button-prev span {
        display: block;
        width: 30px;
        padding-top: 7px;
        margin: 0 auto;
    }
}

/*
# Home Milestone
--------------------------------*/

.home-page-limestone {
    padding: 96px 0;
}

.home-page-limestone .section-heading .entry-title {
    padding-bottom: 36px;
    line-height: 1.6;
}

.home-page-limestone .section-heading p {
    font-size: 14px;
    color: #595858;
}

/*--------------------------------------------------------------
# LINE Pay
--------------------------------------------------------------*/

.mainmenu-page .page-header .headertitle h1 {
    padding: 0;
}

@media (max-width: 576px) {
    .mainmenu-page .page-header .headertitle {
        padding: 10px 0;
    }
    .mainmenu-page .page-header .headertitle h1 {
        padding: 0;
        font-size: 20px;
    }
    .mainmenu-page .page-header .headertitle p {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# registered, login .page-header
--------------------------------------------------------------*/

.single-page {
    background: url(../images/video-background.jpg) no-repeat top;
    background-size: cover;
}

.single-page .page-header {
    position: relative;
    z-index: 99;
    padding-top: 30px;
    /*padding-bottom: 72px;*/
    background-size: cover !important;
    text-align: center;
}

.single-page .page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    /*background: rgba(0,0,0,.7);*/
}

.single-page .page-header h1 {
    position: relative;
    padding-top: 5px;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.single-page .page-header p {
    position: relative;
    color: #e3e3e3;
    /*padding-bottom: 20px;*/
    font-size: 28px;
}

.page-header .page-header-line {
    border-bottom: 3px solid #fff;
}

.page-header .page-header-line img {
    border-radius: 50%;
    width: 180px;
}

@media (max-width: 576px) {
    .single-page .page-header {
        padding-top: 10px;
    }
    .single-page .page-header h1 {
        padding-top: 0px;
        font-size: 20px;
        margin-bottom: 0px;
    }
    .single-page .page-header p {
        padding-bottom: 0px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .page-header .page-header-line img {
        width: 30%;
    }
}

/*.single-page .page-header h1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: #ff5a00;
}*/

.about-page .page-header {
    background: url(../images/about-bg.jpg) no-repeat center;
}

.about-page .welcome-wrap {
    padding: 96px 0;
}

.about-page .welcome-content .entry-title {
    color: #262626;
}

@media screen and (max-width: 992px) {
    .about-page .welcome-content .entry-title {
        margin-top: 60px;
    }
}

.about-page .welcome-content .entry-content {
    color: #929191;
}

.about-page .welcome-wrap img {
    display: block;
    width: 100%;
}

.about-stats {
    padding: 96px 0;
    background: #262626;
}

.about-stats .circular-progress-bar .circle strong, .about-stats .circular-progress-bar .entry-title {
    color: #fff;
}

.about-testimonial {
    padding: 0 0 96px;
}

.testimonial-cont {
    margin-top: 96px;
}

.testimonial-cont, .testimonial-cont p {
    position: relative;
}

.testimonial-cont::before {
    content: '“';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    font-size: 48px;
    /* font-family: 'Montserrat', sans-serif;*/
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    color: #ff5a00;
}

.testimonial-cont .entry-content {
    padding-top: 42px;
}

.testimonial-cont p {
    padding-bottom: 32px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-cont p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: #ff5a00;
}

.testimonial-cont .entry-footer img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.testimonial-cont .entry-footer h4 {
    margin-left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #595858;
}

.testimonial-cont .entry-footer h4 span {
    color: #ff5a00;
}

.help-us {
    padding: 70px 0 96px;
    background: #ff3700;
}

.help-us h2 {
    margin-top: 36px;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.help-us .btn {
    margin-top: 36px;
}

.help-us .btn, .help-us .btn:hover {
    border-color: #fff;
    color: #fff;
}

/*--------------------------------------------------------------
# Causes
--------------------------------------------------------------*/

.causes-page .page-header {
    /*background: url(../images/causes-bg.jpg) no-repeat center;*/
}

.causes-page .featured-cause {
    padding: 96px 0;
}

.causes-page .our-causes {
    position: relative;
    padding: 70px 0 96px;
    background: none;
}

.causes-page .our-causes .cause-wrap {
    margin-top: 36px;
}

.causes-page .our-causes::after {
    display: none;
}

.causes-page .our-causes .cause-content-wrap {
    border: 1px solid #e0e0e0;
    border-top: 0;
}

.causes-page .highlighted-cause {
    padding: 46px 0 96px;
    background: #262626;
}

.causes-page .highlighted-cause .entry-title {
    padding-right: 24px;
    margin-top: 60px;
    line-height: 1.6;
    color: #fff;
}

.causes-page .highlighted-cause .entry-title::before {
    display: none;
}

.causes-page .highlighted-cause .entry-content {
    font-size: 14px;
    line-height: 2;
    color: #edf3f5;
}

.causes-page .highlighted-cause img {
    width: 100%;
    margin-top: 60px;
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
    .cause-wrap figure {
        width: 100%;
    }
    .featured-cause .cause-content-wrap {
        width: 100%;
        margin-top: 40px;
    }
}

@media screen and (max-width: 576px) {
    .cause-wrap figure {
        width: 100%;
    }
    .featured-cause .cause-content-wrap {
        width: 100%;
        margin-top: 40px;
    }
}

/*--------------------------------------------------------------
# Single Cause
--------------------------------------------------------------*/

.single-cause .page-header {
    background: url(../images/single-cause-bg.jpg) no-repeat center;
}

.single-cause .highlighted-cause {
    padding: 46px 0 96px;
}

.single-cause .highlighted-cause .entry-title {
    padding-right: 24px;
    margin-top: 60px;
    line-height: 1.6;
}

.single-cause .highlighted-cause .entry-content {
    color: #929191;
}

.single-cause .highlighted-cause img {
    width: 100%;
    margin-top: 60px;
}

/*
# Donation Form
--------------------------------*/

/*.donation-form-wrap {
    padding: 96px 64px;
    margin-bottom: 96px;
    background: #edf3f5;
}

.donation-form-wrap h2 {
    font-size: 30px;
    font-weight: 500;
}*/

.amount-form {
    text-align: center;
    /*padding: 0 20px;*/
}

.amount-form .radio-label {
    display: block;
    /* margin: 0 auto;*/
}

.amount-form .radio-label>input[type="radio"] {
    visibility: hidden;
    position: absolute;
}

.amount-form .radio-label>input+.donate-amount {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 150px;
    height: 150px;
    margin: 10px;
    border: 8px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
}

.amount-form .radio-label span {
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-bottom: 10px;
    font-size: 40px;
    line-height: 1.5;
    font-weight: 600;
    color: #4a4a4a;
}

.amount-form .radio-label>input+.jko-amount {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 200px;
    height: 200px;
    /* margin: 0 15px; */
    border: 8px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
}

/*.amount-form .radio-label p{
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    padding-top: 45px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
     color: rgb(141, 148, 150);
}*/

@media screen and (max-width: 992px) {
    .amount-form {
        margin: 0 auto;
    }
    .amount-form .radio-label>input+.donate-amount {
        width: 100px;
        height: 100px;
        margin: 2px;
        border: 5px solid #e0e0e0;
        border-radius: 50%;
        font-size: 30px;
    }
    .amount-form .radio-label>input+.jko-amount {
        width: 150px;
        height: 150px;
        border: 5px solid #e0e0e0;
    }
    .amount-form .radio-label span {
        font-size: 28px;
    }
}

@media screen and (max-width: 576px) {
    .amount-form .radio-label>input+.jko-amount {
        width: 90px;
        height: 90px;
        /* margin: 10px; */
    }
    .amount-form .radio-label>input+.jko-amount span {
        font-size: 20px;
    }
}

.amount-form .radio-label>input:checked+.donate-amount {
    border-color: #ff5a00;
}

.amount-form .radio-label>input:checked+.jko-amount {
    border-color: #ff5a00;
}

/*
.amount-form .radio-label:nth-last-of-type(1) > input + .donate-amount {
    margin-right: 0;
}

.amount-form .radio-label > input:checked + .donate-amount {
    border-color: #ff5a00;
}

.amount-form .payment-type input[type="radio"] {
    visibility: hidden;
    position: absolute;
}

.amount-form .payment-type label {
    position: relative;
    margin-right: 40px;
    font-size: 14px;
    line-height: 1;
    color: #6a6a6a;
}

.amount-form .payment-type input[type="radio"] + .payment-type-radio {
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.amount-form .payment-type input[type="radio"] + .payment-type-radio + .centered-dot {
    visibility: hidden;
    display: block;
    position: absolute;
    left: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ff5e06;
}

.amount-form .payment-type input[type="radio"]:checked + .payment-type-radio {
    border-color: #ff5e06;
}


.amount-form .payment-type input[type="radio"]:checked + .payment-type-radio + .centered-dot {
    visibility: visible;
}

.billing-information input {
    width: calc(50% - 14px);
    padding: 12px 30px;
    margin-top: 28px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 1;
}

.billing-information input::placeholder {
    color: #929191;
}

@media screen and (max-width: 767px){
    .billing-information input {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .page-header {
    background: url(../images/portfolio-bg.jpg) no-repeat center;
}

.portfolio-wrap {
    padding: 96px 0;
}

.portfolio-wrap .mt-48 {
    margin-top: 45px;
}

.portfolio-wrap .mt-72 {
    margin-top: 72px;
}

.portfolio-wrap .portfolio-item {
    display: none;
    margin-bottom: 30px;
}

.portfolio-wrap .portfolio-item.visible {
    display: block;
}

.portfolio-cont {
    margin-bottom: 20px;
}

.portfolio-cont img {
    width: 100%;
}

.portfolio-cont .entry-title {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 500;
}

.portfolio-cont .entry-title a {
    color: #262626;
}

.portfolio-cont h4 {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #ff5a00;
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/

.news-page .page-header {
    background: url(../images/news-bg.jpg) no-repeat center;
}

.news-wrap {
    padding: 96px 0;
}

.news-content {
    margin-bottom: 64px;
}

.news-content:nth-last-of-type(1) {
    margin-bottom: 0;
}

.news-content img {
    display: block;
    width: 100%;
    margin: 0;
}

.news-content .entry-header {
    margin-top: 34px;
}

.news-content .entry-header .header-elements, .news-content .donate-icon {
    margin-top: 30px;
}

.news-content .entry-title {
    font-size: 24px;
    font-weight: 500;
}

.news-content .entry-title a {
    color: #262626;
}

.news-content .posted-date {
    font-size: 14px;
    font-weight: 500;
    color: #ff5a00;
}

.post-metas {
    font-size: 12px;
    line-height: 1;
    color: #929191;
}

.post-metas a {
    color: #929191;
}

.post-metas>span {
    display: block;
    padding-right: 10px;
    margin-top: 6px;
    margin-right: 10px;
    border-right: 1px solid #929191;
}

.post-metas>span:nth-last-of-type(1) {
    border: 0;
    padding-right: 0;
    margin-right: 0;
}

.news-content .entry-content {
    margin-top: 32px;
    font-size: 14px;
    color: #929191;
}

.news-content .entry-footer {
    margin-top: 56px;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

.pagination {
    margin-top: 92px;
}

.pagination a {
    margin-right: 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #262626;
    text-decoration: navajowhite;
}

.pagination a:hover, .pagination .active a {
    color: #ff3900;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media screen and (max-width: 992px) {
    .sidebar {
        margin-top: 96px;
    }
}

.sidebar h2 {
    font-size: 18px;
    font-weight: 600;
}

/*
# Search
--------------------------------*/

.search-widget input[type="search"] {
    width: calc(100% - 76px);
    height: 52px;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    outline: none;
}

.search-widget input[type="search"]::placeholder {
    color: #929191;
}

.search-widget button[type="submit"] {
    width: 75px;
    height: 54px;
    border: 0;
    margin-left: -5px;
    font-size: 14px;
    font-weight: 500;
    background: #ff5a00;
    color: #fff;
    cursor: pointer;
    outline: none;
}

/*
# Popular Posts
--------------------------------*/

.popular-posts {
    margin-top: 60px;
}

.popular-posts ul {
    list-style: none;
    margin: 60px 0 0;
}

.popular-posts li {
    margin-bottom: 15px;
}

.popular-posts li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.popular-posts figure, .popular-posts figure a, .popular-posts figure img {
    display: block;
    margin: 0;
}

.popular-posts figure {
    width: 72px;
}

.popular-posts .entry-content {
    width: calc(100% - 100px);
}

.popular-posts h3 {
    font-size: 14px;
    font-weight: 500;
}

.popular-posts h3 a {
    color: #262626;
}

.popular-posts .posted-date {
    font-size: 12px;
    color: #ff5a00;
}

/*
# Upcoming Events
--------------------------------*/

.sidebar .upcoming-events {
    margin-top: 60px;
}

.sidebar .upcoming-events ul {
    list-style: none;
    margin: 60px 0 0;
}

.sidebar .upcoming-events li {
    margin-bottom: 32px;
}

.sidebar .upcoming-events li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.sidebar .upcoming-events figure, .sidebar .upcoming-events figure a, .sidebar .upcoming-events figure img {
    display: block;
    margin: 0;
}

.sidebar .upcoming-events figure {
    width: 140px;
    /*margin-right: 24px;*/
}

.sidebar .upcoming-events .entry-content {
    width: calc(100% - 140px);
}

.sidebar .upcoming-events h3 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
}

.sidebar .upcoming-events h3 a {
    color: #262626;
}

.sidebar .upcoming-events .post-metas {
    font-size: 11px;
    line-height: 1;
    color: #262626;
}

.sidebar .upcoming-events .post-metas a {
    color: #262626;
}

.sidebar .upcoming-events .post-metas>span {
    display: block;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #262626;
}

.sidebar .upcoming-events .post-metas>span:nth-last-of-type(1) {
    border: 0;
    padding-right: 0;
    margin-right: 0;
}

.sidebar .upcoming-events p {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 14px;
    color: #929191;
}

/*
# Featured Cause
--------------------------------*/

.sidebar .featured-cause {
    margin-top: 60px;
}

.sidebar .featured-cause .cause-wrap {
    padding: 0;
    background: none;
}

.sidebar .featured-cause .featured-cause .cause-wrap figure {
    width: 100%;
}

.sidebar .cause-wrap figure img {
    display: block;
    width: 100%;
}

.sidebar .featured-cause .cause-content-wrap {
    width: 100%;
    padding: 32px;
    margin-top: 0;
    border: 1px solid #e0e0e0;
    border-top: 0;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

.contact-page .page-header {
    background: url(../images/welcome-bg.jpg) no-repeat top;
    background-size: cover;
}

.contact-page-wrap {
    padding: 0 0 96px;
    background: linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -moz-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -webkit-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -o-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
}

.contact-page-wrap .entry-content {
    margin-top: 96px;
}

.contact-page-wrap .entry-content h2 {
    font-size: 24px;
    font-weight: 500;
}

.contact-page-wrap .entry-content p {
    margin-top: 20px;
    font-size: 14px;
    color: #929191;
}

.contact-page-wrap .entry-content ul.contact-social {
    padding: 20px 0 0;
    margin: 0;
    list-style: none;
}

.contact-page-wrap .entry-content ul.contact-social li {
    margin-right: 28px;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-page-wrap .entry-content ul.contact-social li a {
    color: #ff3700;
}

.contact-page-wrap .contact-info li {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    font-size: 32px;
    color: #9b9a9a;
}

.contact-page-wrap .contact-info .fa {
    width: 28px;
    margin-right: 10px;
    font-size: 18px;
    color: #ff5a00;
    text-align: center;
}

.contact-form {
    padding: 25px 20px 50px 20px;
    margin: 0px auto;
    /*background: #edf3f5;*/
    width: 70%;
    text-align: center;
}

@media (max-width: 992px) {
    .contact-form {
        padding: 50px 20px 20px 20px;
        width: 100%;
    }
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
    width: 100%;
    padding: 10px 40px;
    margin-bottom: 40px;
    border: 5px solid #cbcbcb;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    border-radius: 50px;
}

@media (max-width: 576px) {
    .contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
        width: 100%;
        padding: 10px 20px;
        margin-bottom: 20px;
        border: 3px solid #cbcbcb;
        font-size: 18px;
        font-weight: 600;
    }
    .contact-form {
        padding: 20px;
        width: 100%;
    }
}

.contact-form input[type="text"]:focus, .contact-form input[type="email"]:focus, .contact-form textarea:focus {
    outline: none;
}

.contact-form input[type="text"]::placeholder, .contact-form input[type="email"]::placeholder, .contact-form textarea::placeholder {
    color: #5f5f5f;
}

.contact-form span {
    display: block;
    margin-top: 16px;
    text-align: center;
}

.contact-form input[type="submit"] {
    cursor: pointer;
    font-weight: 600;
}

.contact-page .contact-gmap {
    margin-top: 92px;
}

.contact-page .contact-gmap iframe {
    display: block;
    width: 100%;
    height: 440px;
}

/* ValidationTel */

.ValidationTel {
    display: block;
    font-size: 40px !important;
    font-weight: 600;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}


/* checkcontain */

.checkcontain {
    display: block;
    position: relative;
    /*padding-left: 80px;*/
    margin: 25px;
    cursor: pointer;
    font-size: 40px;
    font-weight: 600;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

@media (max-width: 576px) {
    .checkcontain {
        font-size: 18px;
        margin: 0px;
    }
}

.checkcontain a {
    color: #ffff00;
    text-decoration: underline;
}

/* Hide the browser's default checkbox */

.checkcontain input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: -5px;
    left: 40px;
    height: 50px;
    width: 50px;
    border-radius: 5px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */

.container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */

.checkcontain input:checked~.checkmark {
    background-color: #ff5a00;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.checkcontain input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.checkcontain .checkmark:after {
    left: 16px;
    top: 5px;
    width: 18px;
    height: 30px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 576px) {
    .checkmark {
        position: absolute;
        top: -13px;
        left: 40px;
        height: 24px;
        width: 24px;
        border-radius: 5px;
        background-color: #eee;
    }
    .checkcontain .checkmark:after {
        left: 8px;
        top: 0px;
        width: 10px;
        height: 20px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@media (max-width: 375px) {
    .checkmark {
        left: 0px;
    }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

.elements-page .page-header {
    background: url(../images/elements-bg.jpg) no-repeat center;
}

/*--------------------------------------------------------------
# mainmenu
--------------------------------------------------------------*/

.mainmenu-page {
    /*background: url(../images/video-background.jpg) no-repeat top;
    background-size: cover;*/
    /*text-align: center;*/
    background: #f4f4f4;
}

.mainmenu-page .page-header {
    background-image: url("../images/video-background.jpg");
    background-size: Cover;
    background-repeat: repeat;
    /*text-align: center;*/
}

.mainmenu-page .page-headerleft {
    padding: 50px 0 50px 0;
    text-align: center;
}

.mainmenu-page .page-headerleft img {
    position: relative;
    width: 150px;
    border-radius: 50%;
}

.mainmenu-page .page-headeright {
    padding: 30px 20px 20px 0px;
}

.mainmenu-page .page-headeright p {
    font-size: 32px;
    color: #fff;
    margin: 0;
}

.mainmenu-page .page-headeright span {
    font-size: 40px;
    font-weight: 500;
    color: #f5ff00;
    margin: 0;
}

.mainmenu-page .headertitle {
    position: relative;
    z-index: 99;
    padding: 15px 0;
    background-size: cover !important;
    text-align: center;
}

.mainmenu-page .headertitle h1 {
    position: relative;
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    padding: 0;
}

.mainmenu-page .headertitle p {
    position: relative;
    color: #e3e3e3;
    margin-bottom: 0px;
    font-size: 20px;
}

@media (max-width: 992px) {
    .mainmenu-page .page-headerleft {
        padding: 15px 0;
    }
    .mainmenu-page .page-headerleft img {
        width: 100px;
    }
    .mainmenu-page .page-headeright {
        padding: 5px 5px 5px 0px;
        line-height: 1.5;
    }
    .mainmenu-page .page-headeright p {
        font-size: 24px;
    }
    .mainmenu-page .page-headeright span {
        font-size: 28px;
        font-weight: 600;
    }
}

@media (max-width: 576px) {
    .mainmenu-page .headertitle {
        padding: 0;
    }
    .mainmenu-page .page-headerleft {
        padding: 10px 0 10px 0;
        text-align: center;
    }
    .mainmenu-page .page-headerleft img {
        width: 50%;
        max-width: 100px;
    }
    .mainmenu-page .page-headeright {
        padding: 10px;
    }
    .mainmenu-page .page-headeright p {
        font-size: 16px;
    }
    .mainmenu-page .page-headeright span {
        font-size: 20px;
    }
}

.menu-page-wrap {
    /*padding: 80px 80px 150px 80px;*/
    background: linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -moz-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -webkit-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -o-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    /*min-height: 945px;*/
}

/*.menu-page-wrap .test a {
    text-decoration: none;
}
.menu-page-wrap .test a:hover{
	border: 5px solid  #000;
    background: rgba(0, 0, 0, 0.5);
}
.menu-page-wrap .test a:active{
	border: 5px solid  #000;
    background: rgba(0, 0, 0, 0.5);
			}
*/

.menu-page-wrap .entry-content {
    margin-top: 96px;
}

.menu-page-wrap .entry-content h2 {
    font-size: 24px;
    font-weight: 500;
}

.menu-page-wrap .entry-content p {
    margin-top: 20px;
    font-size: 14px;
    color: #929191;
}

.menu-page-wrap .entry-content ul.contact-social {
    padding: 20px 0 0;
    margin: 0;
    list-style: none;
}

.menu-page-wrap .entry-content ul.contact-social li {
    margin-right: 28px;
    margin-bottom: 8px;
    font-size: 14px;
}

.menu-page-wrap .entry-content ul.contact-social li a {
    color: #ff3700;
}

.menu-page-wrap .contact-info li {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    font-size: 32px;
    color: #9b9a9a;
}

.menu-page-wrap .contact-info .fa {
    width: 28px;
    margin-right: 10px;
    font-size: 18px;
    color: #ff5a00;
    text-align: center;
}

/*------------------------------------------------*/

.service-box {
    /* background: rgba(249, 249, 249, 0.35);*/
    padding: 50px 0;
    margin: 30px auto;
    border-radius: 20px;
    border: 2px solid #d0d0d0;
    width: 80%;
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
}

.service-box a {
    text-decoration: none;
}

.service-box a:hover {
    background: rgba(0, 0, 0, 0.54);
    border: 5px solid #000;
}

.service-box a:active {
    background: rgba(0, 0, 0, 0.54);
}

.service-box img {
    padding: 10px 0px;
    width: 120px;
}

.service-box h1 {
    font-size: 40px;
    font-weight: 600;
    color: #343434;
    margin: 0;
}

.service-box p {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #8e8e8e;
    margin: 0;
}

.service-icon {
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .service-box {
        padding: 10px;
        margin: 10px 0px;
    }
    .service-box h1 {
        font-size: 20px;
    }
    .service-box p {
        font-size: 14px;
    }
    .service-box img {
        padding: 0px;
        width: 60%;
    }
}

/*--------------------------------------------------------------
# Recharge
--------------------------------------------------------------*/

.recharge-wrap {
    padding: 0px;
    background: linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -moz-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -webkit-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -o-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
}

.recharge-wrap .recharge-heading {
    position: relative;
    padding: 10px 0;
    background: #d9d9d9;
    border-bottom: 5px solid #fff;
}

.recharge-wrap .recharge-heading h2 {
    position: relative;
    font-size: 38px;
    font-weight: 600;
    margin: 0;
}

.recharge-wrap .recharge-heading p {
    position: relative;
    font-size: 20px;
    color: #8e8e8e;
    margin: 0;
}

.recharge-form {
    padding: 0 20px;
    margin: 0px auto;
    /*background: #edf3f5;*/
    width: 100%;
}

.recharge-form i {
    color: #ff5a00;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 20px;
}

.recharge-form label {
    color: #262626;
    font-size: 32px;
    font-weight: 500;
    /*line-height: 1;*/
}

@media (max-width: 767px) {
    .recharge-form {
        padding: 20px 20px 20px 20px;
        width: 100%;
    }
    .recharge-form label {
        color: #253b80;
        font-size: 20px;
        font-weight: 600;
        /*line-height: 1;*/
    }
    .recharge-form i {
        font-size: 30px;
        font-weight: 500;
        line-height: 1;
        padding: 0px 10px;
    }
}

.recharge-form input[type="text"], .recharge-form input[type="email"], .recharge-form textarea {
    width: 100%;
    padding: 10px 40px;
    margin-bottom: 30px;
    border: 5px solid #bababa;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    border-radius: 50px;
}

@media (max-width: 576px) {
    .recharge-form {
        width: 100%;
    }
    .recharge-form input[type="text"], .recharge-form input[type="email"], .recharge-form textarea {
        width: 100%;
        padding: 10px 20px;
        margin-bottom: 20px;
        border: 3px solid #bababa;
        font-size: 20px;
        font-weight: 500;
        line-height: 1;
    }
}

.recharge-form input[type="text"]:focus, .recharge-form input[type="email"]:focus, .recharge-form textarea:focus {
    outline: none;
}

.recharge-form input[type="text"]::placeholder, .recharge-form input[type="email"]::placeholder, .recharge-form textarea::placeholder {
    color: #5f5f5f;
}

.recharge-form span {
    display: block;
    margin-top: 16px;
    text-align: center;
}

.recharge-form input[type="submit"] {
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 767px) {
    .recharge-wrap .recharge-heading h2 {
        font-size: 24px;
    }
    .recharge-wrap .recharge-heading p {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# log
--------------------------------------------------------------*/

.log-wrap {
    padding: 0px 0px 150px 0px;
    background: linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -moz-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -webkit-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -o-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    /*min-height: 945px;*/
}

.log-wrap .log-heading {
    position: relative;
    padding: 10px 0;
    background: #d9d9d9;
    border-bottom: 5px solid #fff;
}

.log-wrap .log-heading h2 {
    position: relative;
    font-size: 50px;
    font-weight: 600;
    margin: 0;
}

.log-wrap .log-heading p {
    position: relative;
    font-size: 30px;
    color: #8e8e8e;
    margin: 0;
}

.log-wrap .log-icon-box {
    margin: 100px 100px 0px 100px;
    padding: 30px 80px;
    border-radius: 24px;
    transition: all .35s;
    border: 0;
    width: 80%;
    background: #ff5a00;
    /*font-size: 32px;
    background: linear-gradient(45deg, #ff8900 0%, #ff5a00 100%);
    background: -moz-linear-gradient(45deg, #ff8900 0%, #ff5a00 100%);
    background: -webkit-linear-gradient(45deg, #ff8900 0%, #ff5a00 100%);
    background: -o-linear-gradient(45deg, #ff8900 0%, #ff5a00 100%);*/
}

.log-wrap i {
    font-size: 100px;
    padding: 0 30px;
    color: #fff;
}

.log-wrap h3 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.log-wrap p {
    margin: 10px;
    font-size: 28px;
    color: #fff500;
}

.log-wrap a:hover, a:active {
    /*outline:#FA8000 dashed 5px;*/
    list-style: none;
    text-decoration: none;
}

@media (max-width: 992px) {
    .log-wrap .log-heading h2 {
        font-size: 38px;
    }
    .log-wrap .log-heading p {
        font-size: 20px;
    }
    .log-wrap .log-icon-box {
        margin: 40px 30px 0px 30px;
        padding: 30px 80px;
        width: 90%;
    }
    .log-wrap i {
        font-size: 40px;
        padding: 0 10px;
    }
    .log-wrap h3 {
        font-size: 38px;
        font-weight: 500;
        color: #fff;
        margin: 0;
    }
    .log-wrap p {
        margin: 0px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .log-wrap .log-heading h2 {
        font-size: 24px;
    }
    .log-wrap .log-heading p {
        font-size: 14px;
    }
    .log-wrap .log-icon-box {
        margin: 30px 15px 0px 15px;
        padding: 10px;
        border-radius: 15px;
    }
    .log-wrap i {
        font-size: 38px;
        padding: 0 5px 0 10px;
    }
    .log-wrap h3 {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        margin: 0;
    }
    .log-wrap p {
        margin: 0px;
        font-size: 14px;
        font-weight: 500;
    }
}

/*--------------------------------------------------------------
# linepay
--------------------------------------------------------------*/

.linepay-wrap {
    padding: 0px 0px 150px 0px;
    background: linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -moz-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -webkit-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -o-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
}

.linepay-wrap .linepay-heading {
    position: relative;
}

.linepay-wrap .linepay-heading img {
    margin: 40px;
}

.linepay-wrap .linepay-heading h2 {
    position: relative;
    font-size: 50px;
    font-weight: 600;
    margin: 10px;
}

.linepay-wrap .linepay-heading p {
    position: relative;
    font-size: 30px;
    color: #8e8e8e;
    margin-bottom: 5px;
}

.linepay-wrap i {
    font-size: 100px;
    padding: 0 30px;
    color: #fff;
}

.linepay-wrap h3 {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.linepay-wrap p {
    margin: 10px;
    font-size: 28px;
    color: #fff500;
}

.linepay-wrap a:hover, a:active {
    outline: 0;
    list-style: none;
    text-decoration: none;
}

@media (max-width: 992px) {
    .linepay-wrap .linepay-heading h2 {
        font-size: 40px;
    }
    .linepay-wrap .linepay-heading p {
        font-size: 32px;
    }
    .linepay-wrap h3 {
        font-size: 30px;
        font-weight: 500;
        color: #fff;
        margin: 0;
    }
    .linepay-wrap p {
        margin: 0px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .linepay-wrap .linepay-heading h2 {
        font-size: 28px;
    }
    .linepay-wrap .linepay-heading p {
        font-size: 18px;
    }
    .linepay-wrap .linepay-heading img {
        width: 40%;
    }
    .linepay-wrap h3 {
        font-size: 28px;
        font-weight: 500;
        color: #fff;
        margin: 0;
    }
    .linepay-wrap p {
        margin: 0px;
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# 內頁內容背景
--------------------------------------------------------------*/

.containerbg {
    padding: 0px 0px 50px 0px;
    background: linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -moz-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -webkit-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    background: -o-linear-gradient(90deg, #f4f4f4 70%, #d9d9d9 100%);
    /*min-height: 1005px;*/
}

.containerbg .description {
    padding: 15px;
}

.containerbg .description h6 {
    letter-spacing: 0.3px;
    font-size: 24px;
    color: #2951d6;
    line-height: 30px;
}

.containerbg .description span {
    color: #e0321b;
    font-size: 20px;
}

/*--------------------------------------------------------------
# laundry
--------------------------------------------------------------*/

/*
# Short Content
--------------------------------*/

.laundry-wrap .laundry-heading {
    position: relative;
    padding: 10px 0;
    background: #d9d9d9;
    border-bottom: 5px solid #fff;
}

.laundry-wrap .laundry-heading h2 {
    position: relative;
    font-size: 38px;
    font-weight: 600;
    margin: 0;
}

.laundry-wrap .laundry-heading p {
    position: relative;
    font-size: 20px;
    color: #8e8e8e;
    margin: 0;
}

.laundry-wrap .item {
    clear: both;
    /*border-bottom: 1px dashed #e0e0e0;*/
    display: table;
    width: 100%;
    /*padding: 0 5px ;*/
}

.laundry-wrap .item figure {
    /*width: 25%;*/
    float: left;
    position: relative;
}

.laundry-wrap .item figure img {
    width: 100%;
    max-width: 150px;
}

.laundry-wrap .item .laundry-down img {
    border: 8px solid #ff5a00;
}

.laundry-wrap .item figure .base-val {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #f15620;
    padding: 0px 10px;
    color: #FFF;
    font-size: 20px;
    z-index: 999;
}

.laundry-container {
    border-bottom: 1px solid #d8d8d8;
    padding: 0 15px;
}

.laundry-subtitle {
    padding: 10px;
    text-align: left;
}

.laundry-subtitle p {
    font-size: 32px;
}

.laundry-subtitle:before {
    content: '';
    position: absolute;
    top: 70px;
    height: 7px;
    width: 10%;
    background-color: #b2b2b2;
}

@media (max-width: 576px) {
    .laundry-wrap .laundry-heading h2 {
        font-size: 24px;
    }
    .laundry-wrap .laundry-heading p {
        font-size: 14px;
    }
    .laundry-subtitle p {
        font-size: 18px;
    }
    .laundry-subtitle:before {
        top: 35px;
        height: 4px;
        width: 10%;
        background-color: #b2b2b2;
    }
    .laundry-wrap .item .laundry-down img {
        border: 5px solid #ff5a00;
    }
}

/*--------------------------------------------------------------
# dryer
--------------------------------------------------------------*/

/*
# Short Content
--------------------------------*/

.dryer-wrap .dryer-heading {
    position: relative;
    padding: 10px 0;
    background: #d9d9d9;
    border-bottom: 5px solid #fff;
}

.dryer-wrap .dryer-heading h2 {
    position: relative;
    font-size: 42px;
    font-weight: 600;
    margin: 0;
}

.dryer-wrap .dryer-heading p {
    position: relative;
    font-size: 24px;
    color: #8e8e8e;
    margin: 0;
}

.dryer-wrap .item {
    clear: both;
    /*border-bottom: 1px dashed #e0e0e0;*/
    display: table;
    width: 100%;
    /*padding: 0 5px ;*/
}

.dryer-wrap .item figure {
    /*width: 25%;*/
    float: left;
    position: relative;
}

.dryer-wrap .item figure img {
    width: 100%;
    max-width: 150px;
}

.dryer-wrap .item .dryer-down img {
    border: 8px solid #ff5a00;
}

.dryer-wrap .item figure .base-val {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #033f90;
    padding: 0px 10px;
    color: #FFF;
    font-size: 20px;
    z-index: 999;
    background-color:
}

.dryer-container {
    border-bottom: 1px solid #d8d8d8;
    padding: 0 15px;
}

.dryer-subtitle {
    padding: 10px;
    text-align: left;
}

.dryer-subtitle p {
    font-size: 32px;
}

.dryer-subtitle:before {
    content: '';
    position: absolute;
    top: 70px;
    height: 7px;
    width: 10%;
    background-color: #b2b2b2;
}

@media (max-width: 992px) {
    .dryer-wrap .dryer-heading h2 {
        font-size: 38px;
    }
    .dryer-wrap .dryer-heading p {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .dryer-wrap .dryer-heading h2 {
        font-size: 24px;
    }
    .dryer-wrap .dryer-heading p {
        font-size: 14px;
    }
    .dryer-subtitle p {
        font-size: 18px;
    }
    .dryer-subtitle:before {
        top: 35px;
        height: 4px;
    }
    .dryer-wrap .item .dryer-down img {
        border: 5px solid #ff5a00;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-widgets {
    position: relative;
    padding: 96px 0 90px;
    font-weight: 500;
    color: #929191;
    background: url("../images/foot-bg.jpg") no-repeat center;
    background-size: cover;
    z-index: 99;
}

.footer-widgets::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 101%;
    background: rgba(22, 22, 22, .92);
}

.footer-widgets h2 {
    margin-bottom: 40px;
    font-size: 18px;
    color: #fff;
}

.footer-widgets ul {
    padding: 12px 0 0;
    margin: 0;
    list-style: none;
}

.footer-widgets ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-widgets ul li a {
    color: #a2a1a1;
    text-decoration: none;
}

.footer-widgets ul li a:hover {
    color: #ff5a00;
}

.foot-about p {
    font-size: 14px;
    line-height: 2;
    color: #929191;
}

.foot-about ul li {
    margin-right: 28px;
}

.foot-about ul li a {
    color: #fff;
}

.foot-latest-news ul li {
    display: block;
    margin-bottom: 36px;
}

.foot-latest-news ul li h3 {
    font-size: 14px;
}

.foot-latest-news ul li .posted-date {
    font-size: 12px;
    color: #ff5a00;
}

.foot-contact ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.foot-contact ul li .fa {
    width: 28px;
    margin-right: 10px;
    font-size: 18px;
    text-align: center;
    color: #ff5a00;
}

.foot-contact ul li span {
    width: calc(100% - 3px);
}

/*
# Subscribe
--------------------------------*/

.subscribe-form {
    margin-top: 50px;
}

.subscribe-form input[type="email"] {
    width: calc(100% - 70px);
    padding: 12px 16px;
    border: 0;
    font-size: 12px;
    line-height: 1;
    background: #fff;
    color: #131212;
    outline: none;
}

.subscribe-form input[type="email"]::placeholder {
    color: #9b9a9a;
    font-style: italic;
}

.subscribe-form input[type="submit"] {
    width: 68px;
    padding: 13px 0 14px;
    border: 0;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    background: #ff5a00;
    color: #fff;
    cursor: pointer;
    outline: none;
}

.footer-bar {
    padding: 30px 0;
    font-size: 12px;
    color: #7b7b7b;
    background: #131212;
    text-align: center;
}

/*--------------------------------------------------*/

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /*padding-top: 30px;*/
    height: 0;
    overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*-----------------------------------------------------*/

.log-table {
    padding: 0;
    font-size: 24px;
}

.log-table .table-header {
    background-color: #98c8ce;
    font-size: 28px;
    letter-spacing: 0.03em;
}

.log-table li {
    border-radius: 3px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.log-table .table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}

.col-1 {
    flex-basis: 10%;
}

.col-2 {
    flex-basis: 40%;
}

.col-3 {
    flex-basis: 25%;
}

.col-4 {
    flex-basis: 33%;
}

@media (max-width: 767px) {
    .log-table {
        padding: 0;
        font-size: 18px;
    }
    .log-table .table-header {
        display: none;
    }
    .log-table li {
        display: block;
    }
    .log-table .col {
        display: flex;
        padding: 5px 0;
    }
    .log-table .col {
        flex-basis: 100%;
    }
    .log-table .col:before {
        color: #6C7A89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 25%;
        text-align: right;
    }
}

/*-----------------------------------------------------*/

.ot-table {
    padding: 0;
    font-size: 24px;
    line-height: 32px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.27);
}

.ot-table .table-header-oil {
    background-color: rgb(252, 246, 92);
    font-size: 24px;
    letter-spacing: 0.03em;
}

.ot-table .table-header-invoice {
    background-color: rgb(70, 90, 155);
    font-size: 24px;
    letter-spacing: 0.03em;
    color: #fff;
}

.ot-table .table-header-exchange {
    background-color: rgb(150, 106, 147);
    font-size: 24px;
    letter-spacing: 0.03em;
    color: #fff;
}

.ot-table li {
    border-radius: 3px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    /* margin: 15px 0;*/
    border-bottom: 1px solid #cecece;
}

.ot-table .table-row1 {
    background-color: rgb(255, 255, 255);
    /*box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);*/
}

.ot-table .table-row2 {
    background-color: rgb(240, 240, 240);
    /*box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);*/
}

.ot-table span {
    color: rgb(193, 16, 16);
    font-size: 30px;
}

.col-1 {
    flex-basis: 10%;
}

.col-2 {
    flex-basis: 40%;
}

.col-3 {
    flex-basis: 25%;
}

.col-4 {
    flex-basis: 33%;
}

@media (max-width: 767px) {
    .ot-table {
        padding: 0;
        font-size: 16px;
    }
    .ot-table .table-header-oil {
        display: none;
    }
    .ot-table .table-header-invoice {
        display: none;
    }
    .ot-table .table-header-exchange {
        display: none;
    }
    .ot-table li {
        display: block;
    }
    .ot-table .col {
        display: flex;
        padding: 1px 0;
        flex-basis: 100%;
    }
    .ot-table .col {}
    .ot-table .col:before {
        color: #6C7A89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 30%;
        text-align: right;
    }
    .ot-table .col-oil:before {
        color: #525252;
        background: rgb(252, 246, 92);
        min-width: 110px;
        margin-right: 10px;
    }
    .ot-table .col-invoice:before {
        color: #fff;
        background: rgb(70, 90, 155);
        min-width: 100px;
        margin-right: 10px;
    }
    .ot-table .col-exchange:before {
        color: #fff;
        background: rgb(150, 106, 147);
        min-width: 90px;
        margin-right: 10px;
    }
}

/*-----------------------------------------------------*/

.linepay-table {
    padding: 0;
    margin: 30px;
    font-size: 30px;
    background: #e8e8e8;
    border: 1px solid #c7c7c7;
}

.linepay-table .table-header {
    background-color: #a8a5cb;
    font-size: 32px;
    letter-spacing: 0.03em;
}

.linepay-table li {
    /*border-radius: 3px;*/
    padding: 0px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #c7c7c7;
}

.linepay-table .table-row {
    /* background-color: #ffffff;*/
    /*box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);*/
}

.col-1 {
    flex-basis: 10%;
}

.col-2 {
    flex-basis: 40%;
}

.col-3 {
    flex-basis: 25%;
}

.col-4 {
    flex-basis: 33%;
}

@media (max-width: 576px) {
    .linepay-table {
        padding: 0;
        font-size: 18px;
        margin: 20px 0px;
    }
    .linepay-table .table-header {
        display: none;
    }
    .linepay-table li {
        display: block;
    }
    .linepay-table .col {
        display: flex;
        padding: 3px;
    }
    .linepayg-table .col {
        flex-basis: 100%;
    }
    .linepay-table .col:before {
        background: #a8a5cb;
        margin-right: 20px;
        padding: 0 20px;
        content: attr(data-label);
        /* flex-basis: 25%; */
        text-align: right;
    }
}

/*-----------------------------------------*/

/* Style the tab */

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */

.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */

.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

/*-------w3------*/

.w3-bar {
    width: 100%;
    overflow: hidden;
    padding: 10px 20px
    /*border-bottom: 1px solid #848484;*/
}

.w3-bar .w3-button {
    white-space: normal;
}

.w3-bar .w3-bar-item {
    margin: 10px 5px;
    padding: 0px 30px;
    /*float: left;*/
    width: auto;
    border-radius: 50px;
    /*display: block;*/
    outline: 0;
    font-size: 30px;
    font-weight: 600;
    background: #a5a5a5;
    color: #fff;
}

@media (max-width: 576px) {
    .w3-bar {
        overflow: hidden;
        padding: 10px 0;
        margin: 0 auto;
    }
    .w3-bar .w3-bar-item {
        margin: 5px 5px;
        padding: 0px 20px;
        font-size: 18px;
    }
}

.w3-blue, .w3-hover-red:hover {
    color: #fff!important;
    background-color: #ff5a00!important;
}

.w3-btn, .w3-button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.w3-btn, .w3-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.w3-black, .w3-hover-black:hover {
    color: #fff!important;
    background-color: #000!important;
}

.w3-container, .w3-panel {
    /* padding: 0.01em 16px; */
    text-align: center;
}

.w3-container:after, .w3-container:before, .w3-panel:after, .w3-panel:before, .w3-row:after, .w3-row:before, .w3-row-padding:after, .w3-row-padding:before, .w3-cell-row:before, .w3-cell-row:after, .w3-clear:after, .w3-clear:before, .w3-bar:before, .w3-bar:after {
    content: "";
    display: table;
    clear: both;
}

.w3-border {
    border: 1px solid #ccc!important;
}

.termscont {
    padding: 20px;
    margin: 40px 0;
}

.termscont p {
    font-size: 18px;
    color: #6f6f6f;
}
