@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
.stellarnav>ul>li:nth-of-type(5)>ul>li:first-of-type,
.stellarnav>ul>li:first-of-type,
.stellarnav>ul>li:nth-of-type(2),
.footer_menu a:nth-of-type(2),
.footer_menu a:nth-of-type(3) {
    display: none;
}

body {
    overflow-x: hidden;
}

body.pageIndex:before {
    content: ' ';
    position: fixed;
    z-index: 999999991;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #232323;
    background: url(https://pic03.eapple.com.tw/suntranshi/bgbg.jpg) center/cover no-repeat;
    animation: fadein 8s forwards;
}

body.services_page #content {
    background: transparent;
}

body.services_page:before {
    content: ' ';
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/suntranshi/inbg.jpg) center / cover no-repeat;
}

@keyframes fadein {
    50% {
        opacity: 1;
    }

    60% {
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

body.pageIndex:after {
    content: ' ';
    position: fixed;
    z-index: 999999999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 200px;
    height: 200px;
    background: url(https://pic03.eapple.com.tw/suntranshi/tt.svg) no-repeat center/cover;
    animation: fadeease 8s forwards;
}

@keyframes fadeease {
    0% {
        opacity: 0;
    }

    45% {
        opacity: 1;
    }

    60% {
        opacity: 0;
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.main_header_area {
    position: relative;
}

.main_header_area:before {
    position: absolute;
    content: '';
    background: #111;
    width: 100%;
    height: 0;
    transition: ease .3s;
}

.sticky .main_header_area:before {
    height: 100%;
}

.header_area,
.header_area.sticky {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent);
    position: fixed;
    padding: 0;
    transition: ease .3s;
}

.header_area.sticky {
    background: transparent;
}

.me_tp_features,
.swiper-pagination {
    display: none;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-header {
    padding: 12px 0;
}

.nav-brand,
.nav-brand img {
    display: block;
}

.main_header_area .container {
    max-width: 2000px;
    padding: 0 5%;
}

.stellarnav ul {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
}

.stellarnav li.has-sub>a:after {
    content: none;
}

.stellarnav>ul>li>a,
.stellarnav>ul>li.has-sub>a:not(.dd-toggle) {
    font-size: 15px;
    padding: 0 2px;
    color: #fff;
    display: block;
    font-weight: 500;
    margin: 0 18px;
    text-transform: none;
    height: 100%;
    line-height: 60px;
    transition: all ease 0.3s;
}

.stellarnav>ul>li:hover>a,
.stellarnav>ul>li.has-sub:hover>a:not(.dd-toggle) {
    color: #ebaf6e;
}


/*次分類*/
.stellarnav ul ul {
    box-shadow: 0 10px 20px rgba(0 0 0 / 5%);
    background: transparent;
    right: 0;
}

.stellarnav>ul>li>ul {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.stellarnav li li {
    text-align: center;
    background: #6e2d28;
    border: none;
    border-bottom: 1px solid #ffffff19;
    margin-bottom: 0;
    transition: all ease .3s;
}

.stellarnav li li:hover {
    background: #641e1c;
}

.stellarnav li li:last-of-type {
    border: none;
}

.stellarnav li li a:not(.dd-toggle),
.stellarnav li li.has-sub>a:not(.dd-toggle),
.stellarnav li li.has-sub:hover li a:not(.dd-toggle) {
    color: #fff;
    padding: 10px 15px;
    font-weight: 500;
    line-height: initial;
    height: auto;
    margin: 0;
    position: relative;
    font-size: 14px;
}

.stellarnav ul ul ul {
    left: auto;
    right: 100%;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/
.swiper-wrapper .swiper-slide:nth-child(1):after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/suntranshi/wrapper_img01.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0;
}

.swiper-slide.swiper-slide-active:nth-child(1):after {
    -webkit-animation: cloud 4s linear 0s infinite alternate;
    animation: cloud 4s linear 0s infinite alternate;
    opacity: 1;
    animation-fill-mode: both;
}

@keyframes cloud {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }

    15%,
    80% {
        opacity: .85;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.swiper-wrapper .swiper-slide:nth-child(2):after {
    content: " ";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/suntranshi/wrapper_img02.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
}

.swiper-slide.swiper-slide-active:nth-child(2):after {
    -webkit-animation: cloud2 4s linear infinite alternate;
    animation: cloud2 4s linear infinite alternate;
    opacity: 1;
}

@keyframes cloud2 {
    0% {
        background-position: 0 0;
        opacity: 0;
    }

    15%,
    80% {
        opacity: .85;
    }

    100% {
        background-position: -55px 0;
        opacity: 0;
    }
}




/*場域*/
#content_main {
    background: #282828;
    font-family: 'Noto Serif TC';
}

#content {
    background: #141414;
    font-family: 'Noto Serif TC';
}

.animated-arrow {
    background: #cd914b;
}

.path {
    display: none;
}

.main_part {
    width: 90%;
    max-width: 1500px;
    margin: -40px auto 0;
    padding: 0;
}








/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    width: 100%;
    height: auto;
    aspect-ratio: 100 / 34;
    position: relative;
    min-height: auto;
    padding: 0;
    overflow: hidden;
    background: #141414;
}

.banner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 100 / 34;
    background: url(https://pic03.eapple.com.tw/suntranshi/banner.png) center/cover no-repeat;
}

.banner h5 {
    z-index: 9;
    color: #fff;
    text-shadow: 0 0 12px rgba(0, 0, 0, .75);
    font-weight: bold;
    letter-spacing: 10px;
    font-size: 40px;
    margin-top: calc(12% - 100px);
    position: relative;
    width: 100%;
    font-family: 'Noto Serif TC';
    transform: translateX(4px);
}

.banner h5:before {
    content: "SUN TRAN SHI";
    letter-spacing: 4px;
    position: absolute;
    top: calc(50% + 50px);
    left: calc(50% - 6px);
    transform: translate(-50%, -50%);
    opacity: .35;
    font-family: 'Cormorant Infant';
    font-weight: 500;
    font-size: 17px;
    z-index: -1;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
.blog_page h4.blog_category_title {
    display: none;
}

.show_content.blog_box,
.blog_le {
    padding: 1px;
}

.blog_ri {
    padding: 0 0 0 60px;
}

.blog_le,
.blog_ri {
    margin-bottom: 1vw;
}

.blog_subbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.blog_subbox:before {
    content: none;
}

.subbox_item,
.module_i_news li {
    width: 100%;
    margin: 0;
    border-bottom: none;
}

.subbox_item a,
.module_i_news li a {
    display: flex;
    flex-flow: column wrap;
    gap: 0;
}

.blog_list_le,
.i_blog_le {
    padding: 0;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.blog_list_le:after,
.i_blog_le:after {
    content: 'VIEW MORE >';
    font-family: 'Cormorant Infant';
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    width: 105%;
    height: 105%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #6e2d28;
    opacity: 0;
    transition: all .4s;

}

.subbox_item a:hover .blog_list_le:after,
.module_i_news li a:hover .i_blog_le:after {
    opacity: 1;
}

.blog_list_le img,
.i_blog_le img {
    min-width: 100%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog_list_ri,
.i_blog_ri {
    display: flex;
    flex-flow: column wrap;
    padding: 15px 0;
    position: relative;
    justify-content: center;
}

.blog_list_ri h5,
.i_blog_ri h5 {
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    font-family: 'Noto Serif TC';
    letter-spacing: 2px;
}

.blog_list_ri em,
.i_blog_ri em {
    font-weight: 400;
    margin: 6px 0 18px;
    letter-spacing: 1px;
}

.blog_list_ri p,
.i_blog_ri p {
    color: #FFF;
    line-height: 155%;
    padding: 14px 0 0;
    margin-bottom: 14px;
    -webkit-line-clamp: 2;
    text-align: justify;
    font-size: 15px;
    border-top: 1px solid #bbb;
    margin-top: 0;
    letter-spacing: .5px;
}

.subbox_item a:before,
.subbox_item a:after,
.module_i_news li a:before,
.module_i_news li a:after {
    content: none;
}

h5.blog_le_t {
    display: none;
}

.blog_le .accordion {
    border-radius: 0;
}

.accordion li .link a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px;
}

.accordion li .link {
    border-bottom: none;
}

.accordion li {
    transition: all 0.2s ease;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.open:hover,
.blog_le .accordion>li.on_this_category:hover,
.blog_le .accordion>li.open,
.blog_le .accordion>li.on_this_category {
    background: #cd914b !important;
}

.blog_le .accordion>li .link a,
.blog_le .accordion>li .link i {
    color: #fff !important;
}

.submenu {
    background: #000;
    font-size: 14px;
}

.submenu a {
    font-family: 'Noto Serif TC';
    color: #fff;
    letter-spacing: 0px;
    font-weight: 600;
    padding: 12px 12px 12px 36px;
    border-left: #000 0 solid;
    transition: all .15s;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #000;
    color: #cd914b;
}

.submenu a i {
    left: 12px;
    font-weight: var(--fa-style, 900);
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
}

.submenu a:hover {
    border-left: #000 4px solid;
}

.blog_search input[type=search] {
    background: #fff;
    font-size: 13px;
    border-radius: 0;
    padding: 12px 36px 12px 12px;
}

.blog_search input[type=submit] {
    filter: grayscale(20);
}

.blog_le .accordion li .link i {
    transition: none;
}

/*內頁*/
.articel_mainPic,
.blog_shareData {
    display: none;
}

h4.blog_category_title {
    padding: 0;
    margin-bottom: 0;
    font-size: 28px;
    color: #fff;
    font-family: 'Noto Serif TC';
    letter-spacing: 1px;
}

.blog_box_edit * {
    line-height: 170%;
}

.blog_box_edit {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

.blog_back {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-content: center;
}

.blog_back a {
    width: 100%;
    color: #fff;
    font-weight: 500 !important;
}

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev,
.blog_back a.article_btn_back {
    background: #6e2d28;
}

.news_related {
    background: #0a0a0a;
    padding: 48px 0;
    margin-top: 80px;
}

.news_related_list {
    max-width: 1400px;
    width: 90%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.news_related_list li {
    width: calc((100% - 60px) / 4);
}

.lastPage {
    margin: 40px auto 20px;
    background: #cd914b;
}

.news_related h6 span:before {
    color: #fff;
    font-family: 'Noto Serif TC';
}

.news_related_list li a p {
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 8px 5px;
}

/*首頁*/
.module_i_news ul {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.module_i_news {
    padding: 120px 0;
    background: url(https://pic03.eapple.com.tw/suntranshi/bgbg.jpg) center / cover no-repeat;
    position: relative;
}

.module_i_news:before {
    background: #000;
    width: 100%;
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    opacity: .25;
}

.module_i_news .title_i_box h4 {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 4px;
    margin-top: 10px;
}

.module_i_news .title_i_box h6 {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 4px;
    opacity: .5;
    font-family: 'Cormorant Infant';
}

.module_i_news .title_i_box h6:after {
    content: 'LATEST NEWS';
}

.module_i_news section {
    width: 90%;
    max-width: 1580px;
    z-index: 9;
    position: relative;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相簿*/
.pic-list {
    -moz-column-count: 3;
    -moz-column-gap: 20px;
    -webkit-column-count: 3;
    -webkit-column-gap: 20px;
    column-count: 3;
    column-gap: 20px;
    width: 100%;
    display: block;
}

.pic-list .item {
    width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0 0 20px;
}

.pic-list .show_pic {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: auto;
}

.pic-list .show_pic img {
    width: 100%;
}

.pic-list .item h6,
.album_descrip {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*footer*/
.footer_info li p.add2:before {
    content: none;
}

.footer_info li p.add2 a {
    font-weight: bold;
}

.footer_info li p.taxid a {
    pointer-events: none;
}

.footer_info li p.tel:before {
    content: '舒壓專線：';
}

.footer_info li p.line:before {
    content: '官方 LINE：';
}

.footer_info li p.add:before {
    content: '本館位置：';
}

.footer_info li p.taxid {
    order: 1;
}

.footer_info li p.tel {
    order: 2;
}

.footer_info li p.line {
    order: 3;
}

.footer_info li p.add {
    order: 4;
}

.footer_info li p.add2 {
    order: 5;
}

.footer {
    background: #000;
    padding: 40px 0 0;
}

.footer_logo {
    margin: 0 0 20px;
    max-width: 200px;
}

.footer_logo img {
    max-width: 100%;
    display: block;
}

.footer .center {
    max-width: 1600px;
    padding: 0 6%;
}

.footer_menu a:first-child {
    display: none;
}

.footer_info {
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
    display: block;
}

.footer_info,
.footer_info li {
    padding: 0;
}

.footer_info ul {
    display: flex;
    width: 100%;
    letter-spacing: 0;
}

.footer_info li:nth-child(1) {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.footer_info li p,
.footer_info li p a,
.footer_menu a {
    color: #fff;
    font-weight: 400;
    transition: all ease 0.3s;
}


.footer_info li p {
    display: inline-block;
    width: 45%;
    letter-spacing: 0px;
}

.footer_info li:nth-child(2) {
    width: 100%;
    position: relative;
}

.footer_menu {
    width: max-content;
    position: absolute;
    right: 0;
    margin-top: -2px;
}

.footer_menu a {
    padding: 8px 12px 10px;
    border: none;
    background: transparent;
    margin: 0;
    margin-left: 12px;
    border-radius: 30px;
    line-height: 1;
}

.footer_menu a:hover {
    background: #6e2d28;
    color: #fff;
}

.copy,
.copy a,
.copy a:hover {
    color: rgba(255, 255, 255, .35);
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
}

.privacyLinks a+a {
    border-color: rgba(255, 255, 255, .35);
}

.copy {
    justify-content: flex-start;
    text-align: left;
    padding: 5px 6% 52px;
    border-top: none;
    max-width: 1600px;
    margin: 0 auto;
}

.box_link {
    display: none;
}

@media screen and (max-width: 1360px) {
    .footer_info li p {
        width: 100%;
    }

    .pic-list {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media screen and (max-width: 1024px) {
    .footer_menu {
        position: static;
        width: 100%;
    }

    .footer_info ul {
        gap: 20px;
        padding: 0;
        flex-direction: column;
        width: 100%;
    }

    .footer_menu a {
        margin-left: -12px;
        margin-right: 16px;
    }

    .copy {
        text-align: left;
    }

    .footer .center {
        padding: 0 5%;
    }

    .copy {
        padding: 5px 5% 60px;
    }

    .footer_info li+li {
        margin-top: 0;
    }

    .footer_info li:nth-child(2) {
        width: 100%;
    }

    .header_area,
    .header_area.sticky {
        position: sticky;
        background: #111;
    }

    .nav-header {
        padding: 8px 0;
        max-width: 160px;
    }

    .banner h5 {
        letter-spacing: 8px;
        font-size: 26px;
        margin-top: calc(5% - 40px);
    }

    .banner h5:before {
        top: calc(50% + 36px);
        font-size: 13px;
    }

    .banner:after {
        height: 100%;
        aspect-ratio: auto;
    }

    .banner {
        aspect-ratio: auto;
        min-height: 200px;
    }

    .blog_subbox {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .main_part {
        margin: 40px auto 0;
    }

    .news_related_list li {
        width: calc((100% - 20px) / 2);
    }

    .module_i_news ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    #bottom_menu li:not(:first-of-type) {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 40px 0;
    }

    #to_top {
        bottom: 68px;
    }

    .stellarnav.mobile ul {
        background: #111;
    }

    body.pageIndex:after {
        max-width: 160px;
        height: 160px;
    }

    .pic-list {
        -moz-column-count: 1;
        -moz-column-gap: 0;
        -webkit-column-count: 1;
        -webkit-column-gap: 0;
        column-count: 1;
        column-gap: 0;
    }

    .pic-list .item {
        margin: 0 0 10px;
    }

    .blog_ri {
        padding: 0;
    }

    .blog_page h5.blog_le_t {
        display: block;
    }

    .main_part {
        margin: 0 auto;
    }

    .blog_subbox {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    .blog_le {
        margin-bottom: 30px;
    }

    h5.blog_le_t em {
        font-family: 'Noto Serif TC';
        font-weight: bold;
        color: #fff;
        letter-spacing: 4px;
        font-size: 22px;
    }

    a.news_menu_toggle i {
        color: #fff;
    }

    .blog_in_page .blog_le {
        display: none;
    }

    h4.blog_category_title {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .news_related {
        margin-top: 60px;
    }

    .stellarnav.mobile>ul {
        border-top: none;
        background: #0a0a0a;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #590E0E;
    }

    .stellarnav a {
        color: #fff;
    }

    .stellarnav .icon-close:before,
    .stellarnav .icon-close:after {
        border-color: #fff;
    }

    .stellarnav.mobile.left>ul {
        border-right: none;
    }

    .stellarnav ul ul {
        animation: none;
    }

    .stellarnav>ul>li {
        height: auto;
    }

    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus:after {
        border-color: #fff;
    }

    .stellarnav>ul>li>a,
    .stellarnav>ul>li.has-sub>a:not(.dd-toggle),
    .stellarnav.mobile>ul>li>a {
        padding: 10px 44px 10px 10px;
        border-bottom: none;
        line-height: 150% !important;
        margin: 0 4px;
    }

    .stellarnav li li {
        border-bottom: none;
        text-align: left;
    }

    .stellarnav.mobile li li:last-of-type a {
        border-bottom: none;
    }

    .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .stellarnav.mobile li.open {
        background: #000;
    }

    .stellarnav.mobile>ul>li {
        border-color: rgba(255, 255, 255, .25);
    }

    .stellarnav .menu-toggle {
        padding: 0;
    }

    .stellarnav .menu-toggle {
        padding: 16px 10px;
    }

    .main_header_area,
    .sticky .main_header_area {
        backdrop-filter: none;
    }

    .stellarnav>ul>li:after {
        content: none;
    }

    .stellarnav.mobile li.open li.open {
        background: #141414;
    }

    .stellarnav li.drop-left ul ul {
        left: 0;
    }

    .stellarnav.mobile li li.has-sub a:not(.dd-toggle) {
        padding-left: 15px;
    }

    .stellarnav.mobile>ul>li.open>a.dd-toggle {
        margin-top: 7px;
    }

    .stellarnav.mobile li li a.dd-toggle {
        margin-right: 2px;
        margin-top: -2px;
    }

    .stellarnav.mobile li.open li.open a.dd-toggle {
        margin-right: 1px;
        margin-top: 4px;
    }

    .stellarnav.mobile ul ul ul {
        left: 0;
        right: auto;
    }

    .main_header_area .container {
        padding: 0;
    }

    .footer_logo {
        max-width: 160px;
    }

    .privacyLinks {
        margin: 0;
    }

    .privacyLinks a {
        padding: 0 5px 0 0;
    }

    .privacyLinks a:last-of-type {
        padding: 0 0 0 5px;
    }

    .show_content,
    .module_i_news_list {
        padding: 0;
    }

    .module_i_news ul {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .module_i_news .title_i_box h4 {
        font-size: 22px;
    }

    .module_i_news .title_i_box h6 {
        font-size: 16px;
    }

    .module_i_news {
        padding: 60px 0;
    }

}