@charset "utf-8";
:root {
    --ub-green: #009999;
    --ub-light-green: #30c9c2;
    --ub-bg-light-green: #1bbbbb;
}

/****************** 基本 ******************/
* {
    font-family: "微軟正黑體", "Microsoft JhengHei", Arial, Geneva, sans-serif;
}

body {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #323232;
    background-color: #fff;
    height: 100%;
    position: relative;
    padding-top: 70px;
}

@media screen and (max-width: 1400px) {
    body {
        padding-top: 60px;
    }
}

hr {
    border-top: 1px solid #afafaf;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-weight: 400;
}

p {
    margin-bottom: 1.5em;
}

a {
    color: var(--ub-green);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

a:hover,
a:active,
a:focus,
a:visited {
    color: #006464;
    outline: none;
    text-decoration: none;
}

img,
object,
embed,
video {
    max-width: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: #000;
    opacity: .2;
}

/*
--- 按鈕 btn ---*/
.btn:hover,
.btn:active,
.btn:focus {
    background: #393e46 !important;
    color: #fff;
    outline: none !important;
}

.btn {
    border-radius: 0;
}

.btn.btn-primary {
    background: var(--ub-green);
    color: #fff;
    border: none !important;
    border: 2px solid transparent !important;
    display: inline-block;
    margin-top: 5px;
    margin-right: 4px;
    margin-left: 4px;
}

@media screen and (max-width: 576px) {
    .btn.btn-lg {
        padding-top: 10px;
        padding-right: 8px;
        padding-left: 8px;
        padding-bottom: 10px;
        font-size: 16px;
    }
}

/****************** 導覽列 navbar ******************/
.navbar {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
    padding: 0;
}
/*
--- LOGO navbar-brand ---*/
.navbar-brand {
    padding-right: 0;
}

.navbar .navbar-brand {
    margin-right: 50px;
    margin-left: 20px;
    width: 250px;
    height: 70px;
    background: url(../images/NNBLogo.png) no-repeat 0 50%;
    background-size: contain;
}

.navbar-header .navbar-brand img {
    width: 90%;
}

.navbar-light .navbar-toggler {
    border: none;
    position: absolute;
    right: 5px;
    top: 15px;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 153, 153, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-light .navbar-toggle .icon-bar {
    background-color: var(--ub-green);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .9);
}


.navbar-light .navbar-toggle:hover,
.navbar-light .navbar-toggle:focus {
    background-color: #f8f8f8;
}

.navbar-nav>li>a {
    margin-left: 15px;
    margin-top: 10px;
    display: block;
}

.navbar-nav>li>a:after {
    content: '';
    display: block;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    background: var(--ub-green);
    z-index: -1;
    transition: all .5s;
}

.navbar-nav>li:hover>a:after {
    /*width: 100%;*/
    transform: scaleX(1);

}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .navbar-nav>li>a {
        margin-left: 0;
    }
}

.navbar-light .navbar-nav>li>a:hover,
.navbar-light .navbar-nav>li>a:focus {
    color: #009999;
    background-color: transparent;
}

.navbar-light .navbar-nav>.active>a,
.navbar-light .navbar-nav>.active>a:hover,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav>.active>a:focus {
    color: var(--ub-green);
}

.navbar-toggle {
    margin-top: 13px;
    margin-bottom: 15px;
    border: 0px;
    border-radius: 0px;
}

.navbar-collapse {
    padding-right: 100px;
}

.navbar_btn {
    position: relative;
}

a.btn-nav-apply {
    position: absolute;
    right: 0px;
    top: 20px;
    margin-left: 15px;
    width: 100px;
    padding: 2px 15px;
    background-color: var(--ub-bg-light-green);
    border-radius: 18px;
    color: #fff;
    font-size: 16px;
}

@media screen and (max-width: 1200px) {
    a.btn-nav-apply {
        top: 15px;
    }
}

@media screen and (max-width: 768px) {
    a.btn-nav-apply {
        right: 50px;
        top: 15px;
        width: 100px;
        padding: 2px 15px;
        font-size: 16px;
    }

}

@media screen and (max-width: 330px) {
    a.btn-nav-apply {
        right: 40px;
        top: 15px;
        width: 70px;
        padding: 2px 5px;
        font-size: 14px;
    }

    .navbar-light .navbar-toggler {
        right: -5px;
    }
}

/*--- 導覽列下拉dropdown-menu ---*/
.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--ub-green);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #eaeaea;
}

@media screen and (max-width: 1200px) {
    .navbar .navbar-brand {
        margin-right: 0px;
        margin-left: 20px;
        width: 200px;
        height: 60px;
        /* 60 only*/
    }
}

@media screen and (max-width: 576px) {
    .navbar .navbar-brand {
        margin-right: 50px;
        margin-left: 15px;
    }
}

/****************** 輪播 carousel  ******************/

/*
--- 主視覺 ---*/
.topimg1 {
    background-image: url(../images/top.jpg) !important;
}

@media screen and (max-width: 576px) {
    .topimg1 {
        background-image: url(../images/top_m.jpg) !important;
        background-position-x: 60% !important;
    }
}

/****************** 主視覺下色塊 ******************/
.ribbon {
    width: 100%;    
    background-color: var(--ub-bg-light-green);
    padding-top: 30px;
    padding-bottom: 30px;
}

.ribbon h1 {
    font-size: 46px;
    line-height: 80px;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}
.ribbon h1 span { 
    color: #fafecd;
}

.ribbon h2 {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

@media screen and (max-width: 1200px) {
    .ribbon {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .ribbon h1 {
        font-size: 36px;
        line-height: 60px;
    }

    .ribbon h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media screen and (max-width: 992px) {}

@media screen and (max-width: 780px) {
    .ribbon {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .ribbon h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .ribbon h2 {
        font-size: 16px;
        line-height: 22px;
    }
}

@media screen and (max-width: 480px) {
    .ribbon {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .ribbon h1 {
        font-size: 26px;
        line-height: 36px;
    }

    .ribbon h2 {
        font-size: 14px;
        line-height: 22px;
    }
}


/****************** 版面 Container ******************/
/*
--- 活動主版 mainArea ---*/
.mainArea {
    padding-top: 50px;
    padding-bottom: 30px;
}

.mainArea h2 {
    color: #FFFFFF;
    font-size: 24pt;
    background-color: var(--ub-green);
    border-radius: 50px;
    border: 1px solid var(--ub-green);
    max-width: 300px;
    margin: 0 auto 10px;
    line-height: 28pt;
}

.mainArea h2 small {
    color: #333333;
}

.mainArea h3.date {
    /* 活動起訖日+對象 */
    line-height: 1.5;
    font-size: 1.5rem;
}

.mainArea h4 {
    /* 活動敘述文 */
    color: #2E2E2E;
    font-size: 16pt;
    line-height: 1.5;
    padding-top: 10px;
    padding-bottom: 3px;
    text-align: justify;
}

.mainArea h5 {
    /* 內文區塊下方備註 */
    color: #2A2A2A;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}

.mainArea p {
    color: #000000;
    font-size: 13pt;
    text-align: center;
    margin-bottom: 0px;
}

.mainArea img {
    margin: 0px auto;
}

@media screen and (max-width: 576px) {
    .mainArea {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .mainArea h3.date {
        /* 活動起訖日+對象 */
        font-size: 1rem;
    }

    .mainArea h4 {
        /* 活動敘述文 */
        font-size: 14pt;
        line-height: 1.5;
    }
}

/*
--- 活動內文區塊 mainText ---*/

/*
--- 備註文字 ---*/
.memoTable {
    font-size: 15px;
}

.memoTable td {
    vertical-align: top;
}

/*
--- 活動表格 ---*/
.mainArea .table thead th {
    height: 30px;
    border-bottom: 1px;
}

.mainArea .table-bordered th,
.mainArea .table-bordered td {
    padding: 3px;
    border: 1px solid #a1bbbd;
    vertical-align: middle;
}

.mainArea .table-bordered {
    text-align: center;
    line-height: 2;
    vertical-align: middle;
    border-width: 1px;
    border-color: #ddd;
    padding: 10px;
}

@media screen and (max-width: 576px) {
    .mainArea .table thead th {
        font-size: 17px;
    }

    .mainArea .table-bordered td {
        font-size: 17px;
    }

    .mainArea .table-bordered {
        line-height: 1.5;
    }
}

/*
--- 注意事項 ---*/
.noticeDesc h4 {
    font-size: 1.3rem;
}

.noticeDesc .table-bordered {}

ul.list-style {
    margin-bottom: .3rem;
    padding: 0 0 0 20px;
}

/*
--- 注意事項表格 exTable ---*/
#exTable table th,
#exTable table td {
    text-align: center;
    font-size: 12px;
    border: 1px solid #ccc;
    vertical-align: inherit;
}

#exTable table th {
    color: #fff;
    background-color: #323232;
}



/*
--- 版權宣告footer ---*/
#footer {
    background-color: #eeeeee;
}

.footerbg {
    width: 100%;
    background-color: #f4f4f4;
}

.copyright {}

.copyright a {
    color: #7f7f7f;
    outline: none;
    text-decoration: none;
}

.copyright h4,
.copyright h5 {
    margin-top: 15px;
}

.copyright h4 {
    font-size: 26px;
    text-align: right;
}

.copyright h5 {
    font-size: 12px;
    text-align: left;
    color: #777;
    margin-left: 70px;
}

.copyright p {
    font-size: 16px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.copyright .list-inline {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .copyright h4 {
        font-size: 20px;
        text-align: center;
    }

    .copyright h5 {
        font-size: 12px;
        margin-left: auto;
    }

    .copyright p {
        font-size: 12px;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    #footer {
        padding: 10px 0;
        color: #7f7f7f;
        background-color: #eeeeee;
    }

    #footer .copyright {
        margin-bottom: 0px;
        padding-bottom: 0;
    }

    .copyright h5 {
        text-align: center;
    }

    .copyright a {
        color: #7f7f7f;
        outline: none;
        text-decoration: none;
    }
}

/* animate */
.js .to-animate,
.js .to-animate-2,
.js .single-animate .js .animate-single {
    opacity: 0;
}

.js .animate-box {
    opacity: 0;
}

/*-------------------*/


/* -------大標題---------*/
h3.title_a {    
    font-size: 40px;
    color: #636363;
    text-align: center;
    display: block;
    line-height: 60px;
    padding-bottom: 30px;
    font-weight: bold;
}



/*----------------常見問題----------------------*/
.main-faq {
    padding: 3em 0 5em;
    background: #eeeeee;
}
#accordion {
    padding-right: 24px;
    padding-left: 24px;
    z-index: 1;
}

#accordion .panel {
    border: none;
    box-shadow: none;
}

#accordion .panel-heading {
    padding: 0;
    border-radius: 0;
    border: none;
}

#accordion .panel-title {
    padding: 0;
}

#accordion .panel-title a {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #056dae;
    padding: 15px 25px;
    position: relative;
    margin-left: 0px;
    transition: all 0.3s ease 0s;
    text-align: left;
}

#accordion .panel-title a .num {
    color: #5aa1f9;
}

#accordion .panel-title a.collapsed {
    color: #056dae;
    margin-left: 0;
    transition: all 0.3s ease 0s;
    text-align: left;
}

#accordion .panel-title a.collapsed:before {
    border-left-color: #1b96e3;
}

#accordion .panel-title a:after {
    content: "\f106";
    font-family: 'FontAwesome';
    position: absolute;
    top: 30%;
    right: 15px;
    font-size: 18px;
    color: #1b96e3;
}

#accordion .panel-title a.collapsed:after {
    content: "\f107";
    color: #056dae;
}

#accordion .panel-collapse {
    position: relative;
}

#accordion .panel-body {
    font-size: 17px;
    color: #333;
    border-top: none;
    z-index: 1;
}

#accordion .panel-body p {
    margin-left: 45px;
    margin-right: 10px;
    text-align: left;
}

#accordion .Outline01 {
    border-bottom: 1px solid #b7b7b7;
}

#accordion .table01 {
    border: 1px solid #008781;
}

@media (max-width: 480px) {
    #accordion {
        padding-right: 0px;
        padding-left: 0px;
        z-index: 1;
    }

    #accordion .panel-title a {
        padding: 15px 35px 15px 0px;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.5;
    }

    #accordion .panel-body p {
        margin-left: 15px;
        margin-right: 10px;
    }
}
/*----------------//常見問題----------------------*/

/*-------注意事項彈出視窗--------------------*/
.modal-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 5px;
    color: var(--ub-green);
    padding: 0;
}

.modal-content {
    border-radius: 1rem;
}

.modal-content button:focus {
    outline: none;
}

.modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
}

.close {
    font-size: 2rem;
    color: #fff;
    border: none;
    background-color: #fff;
    opacity: .5;
}

.text005 {
    font-family: "微軟正黑體", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .modal-title {
        font-size: 22px;
        letter-spacing: 0px;
        font-weight: 600;
    }

    .text005 {        
        font-size: 16px;
        line-height: 1.6;
    }
}

.modal-body h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 3px;
    color: #363636;
}

.modal-body .modal_text {
    font-size: 20px;
    line-height: 2;
    letter-spacing: 3px;
    color: #2E2E2E;
}

.modal-body .modal_text_grey {
    font-size: 18px;
    font-weight: 600;
    color: #434343;
    margin-top: 20px;
    line-height: 1.2;
    text-indent: -16px;
    padding-left: 18px;
}

.modal-body .modal_text_grey span {
    font-size: 13px;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .modal-body h4 {
        font-size: 20px;
        letter-spacing: 0px;
    }

    .modal-body .modal_text {
        font-size: 17px;
        letter-spacing: 0px;
    }
}

.modalS .modal-header {
    background: linear-gradient(to  right, #0af260 ,#1ea4e7 );
    display: block;
    text-align: center;
}

.modalS .modal-title {
    color: #fff;
    font-size: 1.5rem !important;
    font-weight: bold;
}

.modalS .modal-body {
    margin-left: auto;
    margin-right: auto;
}

.modalS .modal-footer {
    justify-content: center;
}

.modalS .btn-secondary {
    background: #1ea4e7;
    
    border: none;
} */

/* .btn-close {
    font-size: 1.5rem;
    background: transparent url("../images/close.svg") center/1em auto no-repeat;
} */

.modalS #QR-info {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out; 
  }


.modalS .modal-content {
    border-radius: 1rem;
}
.modalS .modal-headerS {
    background-color: #42bdd8 !important;
    display: flex;
    /* border-top-left-radius: calc(1rem - 1.5px);
    border-top-right-radius: calc(1rem - 1px); */
}
.modalS .modal-header .btn-close span {
    font-size: 2.5rem;
  }

.modalS .noticeImg img {
    margin-bottom: -38px;
    margin-right: 72px;
    margin-left: 30px;
  }
  
.modalS .noticeTitle {
    display: flex;
    margin-top: 8px;
  }
.modalS h4.noticeDesc2 {
    color: #fff;
    font-weight: normal;
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 0px;
}

.modalS h4.noticeDesc,
.modalS h4.noticeDesc2 {
  font-size: 40px !important;
  /* letter-spacing: 0.35rem; */
  padding-top: 5px;
}
.modalS .modal-header .btn-close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}
.modalS .btn-close {
    width: auto;
    height: auto;
    background: url(images/close.png);
}

.modalS .btn-full {
    margin-top: 2rem;
    border-width: 1px;
    text-align: center;
    --bg-opacity: 1;
    background-color: #1ea4e7;
    --text-opacity: 1;
    color: #fff;
    border-color: transparent;
    border-radius: 9999px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    width: 100%;
}

.modalS .btn-full a:visited{
    color: #F8F8F8;

}

.box1{
    margin: auto;
    border-right: 1px solid #ccc;
}

/*-------//注意事項彈出視窗--------------------*/
.target-fix {
    position: relative;
    top: -68px;
    display: block;
    height: 0;
    overflow: hidden;
}
 .main-actBT {
    padding: 3em 0;
 }

.actbox {text-align: center;}
.actbox a {
    display: block;
    background: #fff;
    border: 1px solid var(--ub-light-green); 
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.actbox img {
    transform: translateY(0px) scale(1);
    transition: .3s;
}

.act-btn {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 2;
    color: var(--ub-light-green);
    margin-top: 10px;

    transition: .3s;
}
.actbox a:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.actbox a:hover img {
    transform: translateY(-5px)  scale(1.1);
}

.actbox a:hover .act-btn {
    color: var(--ub-green);
}

@media screen and (max-width: 768px) {
    .actbox {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 576px) {
    .actbox img {
        max-width: 60%;
    }
}

/* 右側btn 立即申請 */
#applyBtn {
    color: #FFFFFF;
    display: inline;
    position: fixed;
    bottom: 30%;    
    right: 0;
    text-align: center;
    background-color: var(--ub-light-green);
    
    /* text-orientation: upright; */
    margin: 0 auto;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
    z-index: 9;
}

#applyBtn a {
    color: #fff;
    padding: 12px 10px;
    display: inline-block;
}

#applyBtn a:nth-of-type(2) {
    background-color: #17A2B8 !important;
}

@media screen and (max-width: 768px) {
    #applyBtn {
        -webkit-writing-mode: vertical-lr;
        writing-mode: vertical-lr;
        font-size: 15px;
    }

    #applyBtn a {
        padding: 12px 8px;
        letter-spacing: 2px;
    }
}

#applyBtn a:hover,
#applyBtn a:active,
#applyBtn a:focus,
#applyBtn a:visited {
    color: #FFFFFF;
    outline: none;
    text-decoration: none;
}

#applyBtn a:hover,
#applyBtn a:active,
#applyBtn a:focus,
#applyBtn a:visited {
    color: #FFFFFF;
    outline: none;
    text-decoration: none;
    background: var(--ub-bg-light-green);
    text-decoration: none;
}

.main-contact {    
    padding: 3em 0 0;
    background: url(../images/bg.jpg) no-repeat center right,
    linear-gradient(300deg, #e9f9f8 30%, #e9f9f8 70%, #baf1ee 100%);
    background-size: cover;
}
.text-shadow-wh {
    text-shadow: 0px 0px 5px #ffffffe6;
}

.fee_Box {
    text-align: center;    
    margin-top: 70px;
}

.fee_Box p {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.8em;
    color: #542626;
    margin-top: 20px;
    margin-bottom: 10px;
}
.fee-btn {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
    border: 2px solid #fff;
    background: var(--ub-light-green);
    border-radius: 50em;
    padding: 5px 30px;
    margin: 0 auto;
}
.fee-btn:hover {
    background: var(--ub-green);
}
.fee_img {}

.fee_Box .fee_text {
    font-size: 24px;
    line-height: 1.8em;
    color: #000000;
    font-weight: 600;
    padding-top: 30px;
}
.fee_Box .blue_text {
    color: #009999;
}
@media screen and (max-width: 1199px) {
    .fee_Box {
        margin-top: 20px;
    }
}
@media screen and (max-width: 1024px) {
    .contact-bg {    
        padding: 1em 0 ;}
}
@media screen and (max-width: 768px) {
    .contact-bg {    
        padding: 2em 0 0;
    }
    .fee_Box {
        margin: 0 auto;
        width: 90%;
        margin-top: -10px;
    }
}

/*--- tip --- */
.main-tip {
    padding: 3em 0;
    text-align: center;
}
.tipline {
    border-right: 1px solid #ccc;
    height: 200px;
}

.tipfontT {
    font-size: 30px;
    font-weight: 800;
    color: var(--ub-green);
    
    line-height: 35px;
}
.tipfontcolor {
   background: linear-gradient(to bottom right, #e981af 20%,#c90159 80%);
   background-clip: text;
   -webkit-background-clip: text;
   color: transparent;
   text-align: center;
   line-height: normal;
}
.tipfontL {
    font-size: 6.5rem;
    font-family: sans-serif;
    font-weight: bold;
 }
 .tipfontS {
    font-size: 3.5rem;
    font-weight: 800;
 }

 @media screen and (max-width: 992px) {
    .tipline {
        border-right: 2px solid #ccc;   
    }    
    
    .tipfontT {
        font-size: 28px;
        line-height: 30px;
    }
    .tipfontL {
        font-size: 5rem; 
     }
     .tipfontS {
        font-size: 2.5rem;   
     } 
   
}
@media screen and (max-width: 767px) {
    .tipline {
        border-right: 0;
        border-bottom: 1px solid #a6a6a6;
        margin-bottom: 50px;       
    }
    
    .tipfontT {
        font-size: 45px;
        line-height: 50px;
    }
    .tipfontL {
        font-size: 8rem; 
     }
     .tipfontS {
        font-size: 4.5rem;   
     } 
}

 @media screen and (max-width: 576px) {
    .tipfontT{
        font-size: 28px;
        line-height: 30px;
    }
    .tipfontL{
        font-size: 7rem; 
     }
     .tipfontS{
        font-size: 3.5rem;   
     } 
}
/*--- //tip ---*/

.grid-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-gap: 15px; */
}
.rowinfo {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 3;
    /* gap: 5px; */
    
    /* transition: ease .5s;
    overflow: hidden; */
    box-shadow: 1px 0px 0px 0px rgba(156, 156, 156, 0.5);
}
.rowinfo:last-of-type {
    box-shadow: none;
}

@media screen and (max-width: 768px){
    .grid-content{
        grid-template-columns: repeat(1, 1fr);
    }
    .rowinfo {
        margin-bottom: 20px;
        box-shadow: 0px 1px 0px 0px rgba(156, 156, 156, 0.5);
    }
}
/* //rowinfo */

.copyrightnew {
    text-align: center;
    font-size: 20px;
    color: #fff;
    background-color: #42bdd8;
    padding-top: 24px;
    padding-bottom: 24px;
}