body{
    overflow-x: hidden;
}

/*--------------- herosection ---------------*/

.herosection{
    margin: 48px auto 72px;
    width: 100%;
    height: 742px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../elements/pictures/hero-section-bg.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: visible;
}

.herosection .container{
    display: flex;
    align-items: center;
    max-width: 1366px;
    width: 100%;
    height: 100%;
}

.herosection .description{
    display:flex;
    flex-direction: column;
    width: 40%;
}

.herosection .text{
    margin-bottom: 72px;
}

.herosection h1{
    font-size: 120px;
    font-family: Microsoft JhengHei;
    font-weight: bold;
    color:#262626;
    margin-bottom: 24px;
}

.herosection p{
    font-family: Microsoft JhengHei;
    font-size: 24px;
    color:#000;
    opacity: 75%;
    line-height: 140%;
}

.herosection .cta{
    display:flex;
    gap: 36px;
}

.herosection .hero-picture{
    width: 60%;
    height: 100%;
    background-image: url(../elements/pictures/hero-section-picture.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.herosection .hero-picture-b{
    display:none;
    width: 100%;
    height: 400px;
    background-image: url(../elements/pictures/hero-section-picture.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.herosection .cta .outlinebtn{
    font-family: Microsoft JhengHei;
    font-size: 24px;
    font-weight: bold;
    color: #F0C11B;
    border: 2px solid #F0C11B;
    padding:24px 64px;
    border-radius: 100px;
}

.herosection .cta .filledbtn{
    font-family: Microsoft JhengHei;
    font-size: 24px;
    font-weight: bold;
    color: #FCF3D1;
    background-color: #F0C11B;
    padding:24px 64px;
    border-radius: 100px;
    border: 2px solid #F0C11B;
}

.herosection .cta .filledbtn:hover{
    color:#000;
    background-color: #FCF3D1;
    border: 2px solid #F0C11B;
}

.herosection .cta .outlinebtn:hover{
    color:#000;
    background-color: #FCF3D1;
    border: 2px solid #F0C11B;
}

@media (max-width:1366px) {
    .herosection{
        margin: 48px auto 72px;
        height: 540px;
        padding: 0 48px;
    }
    .herosection .container{
        width: 100%;
        height: 100%;
    }
    .herosection .description{
        width: 45%;
    }
    .herosection .hero-picture{
        height: 80%;
        width: 55%;
    }
    .herosection .text{
        margin-bottom: 48px;
    }
    .herosection h1{
        font-size: 72px;
        margin-bottom: 24px;
    }
    .herosection p{
        font-size: 20px;
    }
    .herosection .cta{
        gap: 24px;
    }
    .herosection .cta .outlinebtn{
        font-size: 20px;
        padding: 20px 36px;
    }
    .herosection .cta .filledbtn{
        font-size: 20px;
        padding: 20px 36px;
    }
}

@media (max-width:768px) {
    .herosection{
        margin: 36px auto 48px;
        height: auto;
        padding: 0 24px;
        background: transparent;
    }
    .herosection .container{
        width: 100%;
        height: 100%;
        flex-direction: column;
    }
    .herosection .hero-picture-b{
        display: block;
    }
    .herosection .description{
        width: 100%;
        align-items: center;
        gap: 48px;
    }
    .herosection .hero-picture{
        height: 80%;
        width: 50%;
    }
    .herosection .text{
        margin-bottom: 0px;
        text-align: center;
    }
    .herosection h1{
        font-size: 48px;
        margin-bottom: 24px;
    }
    .herosection .cta{
        gap: 16px;
    }
    .herosection .cta .outlinebtn{
        padding: 16px 48px;
    }
    .herosection .cta .filledbtn{
        padding: 16px 48px;
    }
}

@media (max-width:414px) {
    .herosection{
        padding: 0 16px;
    }
    .herosection .hero-picture-b{
        height: 280px;
    }
    .herosection .description{
        gap: 24px;
    }
    .herosection .text{
        padding: 0 40px;
    }
    .herosection h1{
        font-size: 36px;
        margin-bottom: 16px;
    }
    .herosection p{
        font-size: 16px;
    }
    .herosection .cta{
        gap: 16px;
        align-self: stretch;
    }
    .herosection .cta .outlinebtn{
        flex: 1 0 0;
        text-align: center;
        font-size: 16px;
        padding: 16px 0px;
    }
    .herosection .cta .filledbtn{
        flex: 1 0 0;
        text-align: center;
        font-size: 16px;
        padding: 16px 0px;
    }
}

/* --------------- Conpcept-Sliders --------------- */

.conceptslider{
    display:flex;
    overflow: hidden;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 80px 48px 48px;
    justify-content: center;
    align-items: center;
}

.conceptslider.play{
    background-image: url(../elements/pictures/play-bg.png);
}

.conceptslider.parenting{
    background-image: url(../elements/pictures/learn-bg.png);
}

.conceptslider.partner{
    background-image: url(../elements/pictures/heart-bg.png);
}

.conceptslider .loop{
    margin-top: 144px;
    display: flex;
}

.conceptslider .container img{
    width: 540px;
    height: 540px;
    object-fit: contain;
}

.conceptslider.play .righttoleft{
    display: flex;
    animation: marquee 7s linear infinite;
}

@keyframes marquee {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-15%, 0, 0);
    }
  }

.conceptslider.parenting .righttoleft, .conceptslider.partner .righttoleft{
    display: flex;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-15%, 0, 0);
    }
  }

.conceptslider .loop p{
    margin-left: 24px;
    color: var(--bn-w-1, #F2F2F2);
    font-family: Microsoft JhengHei;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.conceptslider .container{
    display: flex;
    max-width: 1366px;
    width: 100%;
    height: auto;
    justify-content: space-between;
    align-items: center;
}

.conceptslider .title{
    color: var(--bn-w-1, #F2F2F2);
    font-family: Microsoft JhengHei;
    font-size: 160px;
    font-style: normal;
    font-weight: 700;
}

.conceptslider .content{
    color: var(--bn-w-1, #F2F2F2);
    font-family: Microsoft JhengHei;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.conceptslider .description{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
}

.conceptslider.play .description{
    max-width: 480px;
}

.conceptslider.parenting .description{
    max-width: 400px;
}

.conceptslider.partner .description{
    max-width: 600px;
}

.conceptslider .filledbtn{
    font-family: Microsoft JhengHei;
    font-size: 24px;
    font-weight: bold;
    padding:24px 64px;
    border-radius: 100px;
}

.conceptslider.play .filledbtn{
    color: #F0C11B;
    background-color: #FCF3D1;
}

.conceptslider.parenting .filledbtn{
    color: #45BAEC;
    background-color: #DAF1FB;
}

.conceptslider.partner .filledbtn{
    color: #EB5231;
    background-color: #FBDCD6;
}

.conceptslider.play .filledbtn:hover{
    color:#FCF3D1;
    background-color: #504009;
}

.conceptslider.parenting .filledbtn:hover{
    color:#DAF1FB;
    background-color: #173E4F;
}

.conceptslider.partner .filledbtn:hover{
    color:#FBDCD6;
    background-color: #4E1B10;
}

@media (max-width:1366px) {
    .conceptslider{
        margin: 0 auto;
        padding: 64px 48px 48px;
    }
    .conceptslider .container{
        gap: 80px;
    }
    .conceptslider .container img{
        width: 400px;
        height: 400px;
        object-fit: contain;
    }
    .conceptslider .title{
        font-size: 96px;
        font-weight: 700;
    }
    .conceptslider .filledbtn{
        font-size: 20px;
        padding: 16px 48px;
    }
    .conceptslider .loop{
        margin-top: 80px;
        display: flex;
    }
}

@media (max-width:1024px) {
    .conceptslider{
        margin: 0 auto;
        padding: 64px 48px 48px;
    }
    .conceptslider .container{
        gap: 48px;
    }
    .conceptslider .container img{
        width: 360px;
        height: 360px;
        object-fit: contain;
    }
    .conceptslider .title{
        font-size: 80px;
        font-weight: 700;
    }
}

@media (max-width:768px) {
    .conceptslider{
        margin: 0 auto;
        padding: 48px 24px;
    }
    .conceptslider .container{
        gap: 48px;
    }
    .conceptslider .description{
        gap: 64px;
        width: 50%;
    }
    .conceptslider .content{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* number of lines to show */
        -webkit-box-orient: vertical;
        font-size: 16px;
    }
    .conceptslider .gif{
        width: 50%;
    }
    .conceptslider .container img{
        width: 100%;
    }
    .conceptslider .title{
        font-size: 64px;
    }
    .conceptslider .filledbtn{
        font-size: 16px;
        padding: 16px 48px;
    }
    .conceptslider .loop{
        margin-top: 48px;
    }
}

@media (max-width:414px){
    .conceptslider{
        margin: 0 auto;
        padding: 24px 24px;
    }
    .conceptslider .container{
        gap: 48px;
    }
    .conceptslider .description{
        gap: 40px;
        width: 60%;
    }
    .conceptslider .content{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* number of lines to show */
        -webkit-box-orient: vertical;
        font-size: 16px;
    }
    .conceptslider .gif{
        width: 40%;
    }
    .conceptslider .container img{
        width: 100%;
    }
    .conceptslider .title{
        font-size: 48px;
    }
    .conceptslider .filledbtn{
        display: none;
    }
    .conceptslider .loop{
        margin-top: 24px;
    }
}

/* --------------- Eventslider --------------- */

.eventbox{
    margin: 140px auto 0%;
    max-width: 1366px;
    display: flex;
    flex-direction: column;
}

.eventbox .titlebox{
    display: flex;
    padding: 12px 48px;
    flex-direction: column;
    width: fit-content;
    gap: 12px;
    border-radius: 12px;
    background: var(--major-red-main, #EB5231);
    margin-bottom: 24px;
}

.titlebox .title{
    color: #FBDCD6; 
    font-size: 54px; 
    font-family: Microsoft JhengHei; 
    font-weight: 700; 
    line-height: 110%; 
    word-wrap: break-word
}

.titlebox .subtitle{
    color: #FBDCD6; 
    font-size: 24px; 
    font-family: Microsoft JhengHei; 
    font-weight: 290; 
    line-height: 110%; 
    word-wrap: break-word
}

.eventslider{
    max-width: 1366px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.eventslider .linear-gradient{
    width: 100%;
    height: 720px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 40px;
    overflow: hidden;
}

.eventslider img{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.eventswiper{
    max-width: 1366px;
}

.eventswiper .swiper-pagination-bullet{
    background-color:#EB5231;
}

.eventinfo{
    display: flex;
    padding: 24px;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);

    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
}

.eventinfo .title{
    display: flex;
    align-items: center;
    align-self: stretch;
}

.eventinfo .h2box{
    display: flex;
    align-items: center;
    align-self: stretch;
}

.eventinfo .h2{
    display: flex;
    padding-bottom: 0px;

    /* Title/H3 */
    font-family: Microsoft JhengHei;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 57.6px */
}

.eventinfo .info{
    max-width: 1344px; 
    height: auto; 
    padding: 16px 0;
    justify-content: space-between; 
    align-items: center; 
    display: inline-flex;
}

.eventinfo .info .container{
    justify-content: flex-end; 
    gap: 48px; 
    display: flex;
}

.eventinfo .info .box{
    flex-direction: column; 
    gap: 4px; 
    display: inline-flex;
}

.eventinfo .info .h3{
    color: #262626; 
    font-size: 20px; 
    font-family: Microsoft JhengHei; 
    font-weight: 700; 
    line-height: 150%; 
    word-wrap: break-word
}

.eventinfo .info .sh3{
    text-align: center; 
    color: #262626; 
    font-size: 18px; 
    font-family: Microsoft JhengHei; 
    font-weight: 290; 
    line-height: 150%; 
    word-wrap: break-word;
}

.eventinfo .info .btn{
    display: block;
    color: #FBDCD6; 
    font-size: 24px; 
    font-family: Microsoft JhengHei; 
    font-weight: 700; 
    line-height: 24px; 
    word-wrap: break-word;
    background-color: #EB5231;
    padding: 24px 64px;
    border-radius: 100px;
}


@media (max-width:1366px) {
    .eventbox{
        margin: 140px auto 0%;
        max-width: 1366px;
    }
    .eventbox .titlebox{
        border-radius: 0 12px 12px 0px;
    }
    .titlebox .title{
        font-size: 54px; 
    }
    .titlebox .subtitle{
        font-size: 20px; 
    }
    .eventswiper{
        margin: 0 48px;
    }
    .eventslider .linear-gradient{
        height: 640px;
        border-radius: 20px;
    }
    .eventinfo{
        padding: 24px;
        gap: 24px;
        border-radius: 10px;
    }
    .slidercontainer .eventinfo .h2{
        padding-bottom: 0px;
        gap: 10px;
        /* Title/H3 */
        font-size: 36px;
    }
    .eventinfo .info{
        height: auto;
        padding: 8px 0;
    }
    .eventinfo .info .container{
        gap: 48px; 
    }
    .eventinfo .info .box{
        gap: 0px; 
    }
    .eventinfo .info .h3{
        font-size: 20px; 
    }   
    .eventinfo .info .sh3{
        font-size: 18px; 
    }
    .swiper-button-prev, .swiper-button-next{
        width: 54px !important;
        height: 54px !important;
        background-size: contain !important;
    }
    .eventinfo .info .btn{
        font-size: 20px; 
        font-weight: 700; 
        padding: 16px 48px;
    }
}

@media (max-width:1024px) {
    .eventbox .titlebox{
        gap: 12px;
    }
    .titlebox .title{
        font-size: 48px; 
    }
    .titlebox .subtitle{
        font-size: 18px; 
    }
    .eventinfo .info .hide{
        display: none;
    }
}

@media (max-width:768px) {
    .eventbox{
        margin: 80px auto 0%;
        max-width: 1366px;
    }
    .eventbox .titlebox{
        border-radius: 0 12px 12px 0px;
        gap: 8px;
    }
    .titlebox .title{
        font-size: 36px; 
    }
    .titlebox .subtitle{
        font-size: 16px; 
    }
    .eventswiper{
        margin: 0 24px;
    }
    .eventslider .linear-gradient{
        height: 480px;
        border-radius: 16px;
    }
    .eventinfo{
        padding: 0px;
        gap: 4px;
        border-radius: 10px;
        background: transparent;
        backdrop-filter: none;

        bottom: 28px;
    }
    .eventinfo .h2{
        padding-bottom: 0px;
        /* Title/H3 */
        font-size: 40px;
        font-weight: 400;
        color: #F2F2F2;
        border: none;
    }
    .eventinfo .info .container{
        gap: 24px; 
    }
    .eventinfo .info .box{
        gap: 0px; 
    }
    .eventinfo .info .h3{
        display: none;
    }   
    .eventinfo .info .sh3{
        font-size: 18px; 
        color: #F2F2F2;
    }
    .swiper-button-prev, .swiper-button-next{
        display: none;
    }
    .eventinfo .info .btn{
        display: none;
    }
}

@media (max-width:414px){
    .eventbox{
        margin: 80px auto 0%;
    }
    .eventbox .titlebox{
        border-radius: 0 12px 12px 0px;
    }
    .titlebox .title{
        font-size: 36px; 
    }
    .titlebox .subtitle{
        font-size: 16px; 
    }
    .eventswiper{
        margin: 0 16px;
    }
    .eventinfo .info .sh3{
        font-size: 14px;
    }
    .eventinfo .h2{
        font-size: 28px;
    }
}

/* --------------- Blogslider --------------- */



.blogslider{
    margin: 140px auto 0%;
    max-width: 1366px;
    display: flex;
    flex-direction: column;
}

.blogslider .titlebox{
    display: flex;
    padding: 12px 48px;
    flex-direction: column;
    width: fit-content;
    gap: 12px;
    border-radius: 12px;
    background: var(--major-blue-main, #45BAEC);
    margin-bottom: 24px;
}

.blogslider .title{
    color: var(--major-blue-tint-01, #DAF1FB);
    /* Title/H1 */
    font-family: Microsoft JhengHei;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 86.4px */
    letter-spacing: -2.88px;
}

.blogslider .subtitle{
    color: var(--major-blue-tint-01, #DAF1FB);
    /* Subtitles/Light */
    font-family: Microsoft JhengHei;
    font-size: 24px;
    font-style: normal;
    font-weight: 290;
    line-height: 125%; /* 30px */
}

.blogpostlist{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.blogcontainer{
    display:flex;
    gap: 48px;
    width: 100%;
}

.blogswiper{
    max-width: 1366px;
    width: 100%;
    padding: 0 120px;
    overflow: visible;
}

.blogpost{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog{
    width: 100%; 
    flex-direction: column; 
    gap: 4px; 
    display: inline-flex;
}

.blog .blogtitle{
    color: var(--bn-w-8, #262626);
    /* Title/H4 */
    font-family: Microsoft JhengHei;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 43.2px */
    letter-spacing: -0.72px;
    margin-top: 16px;
}

.blog .blogauthor{
    color: var(--bn-w-6, #666);
    font-family: Microsoft JhengHei;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blogcover{
    display:block;
    height: 320px;
    align-self: stretch;
    border-radius: 24px;
    object-fit: cover;
}

.blogslider .leftarrow, .blogslider .rightarrow{
    display: flex;
    align-items: center;
}

.blogslider .swiper-button-prev{
    display: block;
    color: transparent;
    background-image: url(../elements/icons/blue-left.svg);
    height: 72px;
    width: 72px;
    top: 35%;
    left: 0;
    margin: 0;
}

.blogslider .swiper-button-next{
    display: block;
    color: transparent;
    background-image: url(../elements/icons/blue-right.svg);
    height: 72px;
    width: 72px;
    top: 35%;
    right: 0;
    margin: 0;
}

.blogswiper .swiper-pagination-bullet{
    background-color:#45BAEC;
}

.blogswiper .swiper-slide{
    padding-bottom: 48px;
}

.blogslider .swiper-slide {
    opacity: 0.3;
    transition: 300ms ease all;
}

.blogslider .swiper-slide-active {
    opacity: 1;
    transition: 300ms ease all;
}

.blogslider .swiper-slide-next {
    opacity: 1;
    transition: 300ms ease all;
}

.blogpostlist .morebtn{
    display: flex;
    padding: 16px 64px;
    justify-content: center;
    align-items: center;

    gap: 10px;
    border-radius: 100px;
    border: 2px solid var(--major-blue-main, #45BAEC);

    color: var(--major-blue-main, #45BAEC);
    text-align: center;
    font-family: Microsoft JhengHei;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 24px */
    margin-top: 40px;
}

.blogpostlist .morebtn:hover{
    color: var(--major-blue-main, #DAF1FB);
    background-color: var(--major-blue-main, #45BAEC);;
}

@media (max-width:1366px) {
    .blogswiper{
        max-width: 1366px;
        padding: 0 96px;
        overflow: hidden;
    }
    .blogslider .swiper-button-prev{
        height: 48px;
        width: 48px;
        margin: 0 0 0 24px;
    }
    .blogslider .swiper-button-next{
        height: 48px;
        width: 48px;
        margin: 0 24px 0 0;
    }
    .blogslider{
        margin: 140px auto 0%;
    }
    .blogslider .titlebox{
        padding: 12px 48px;
        border-radius: 0 12px 12px 0;
        margin-bottom: 24px;
    }
    .blogslider .title{
        font-size: 54px;
    }
    .blogslider .subtitle{
        font-size: 20px;
    }
    .blogpostlist{
        gap: 24px;
    }
    .blogcontainer{
        gap: 48px;
    }
    .blogpost{
        gap: 24px;
    }
    .blog{
        width: 100%; 
        gap: 0px; 
    }
    .blogcover{
        height: 280px;
        border-radius: 12px;
    }
    .blog .blogtitle{
        margin-top: 12px;
        font-size: 24px;
        font-weight: 700;
    }   
    .blog .blogauthor{
        font-size: 16px;
        font-weight: 500;
    }
    .blogpostlist .morebtn{
        padding: 16px 64px;
        font-size: 20px;
        margin-top: 24px;
    }
}

@media (max-width:1024px) {
    .blogslider .titlebox{
        gap: 8px;
    }
    .blogslider .title{
        font-size: 48px;
    }
    .blogslider .subtitle{
        font-size: 18px;
    }
    .blogcover{
        height: 200px;
        border-radius: 12px;
    }
}

@media (max-width:768px) {
    .blogslider{
        margin: 80px auto 0%;
    }
    .blogslider .titlebox{
        gap: 8px;
    }
    .blogslider .title{
        font-size: 36px;
    }
    .blogslider .subtitle{
        font-size: 16px;
    }
    .blogcover{
        height: 240px;
        border-radius: 12px;
    }
    .blogswiper{
        max-width: 1366px;
        padding: 0px 48px;
    }
    .blogslider .swiper-slide-next {
        opacity: 0.3;
        transition: 300ms ease all;
    }
    .blogslider .swiper-button-prev, .blogslider .swiper-button-next{
        display: none;
    }
    .blog .blogtitle{
        margin-top: 12px;
        font-size: 20px;
        font-weight: 700;
    }   
    .blog .blogauthor{
        margin-top: 4px;
        font-size: 16px;
        font-weight: 500;
    }
    .blogpostlist .morebtn{
        padding: 16px 48px;
        border: 2px solid var(--major-blue-main, #45BAEC);
        font-size: 16px;
        margin-top: 0px;
    }
}

@media (max-width:414px){
    .blogswiper{
        max-width: 1366px;
        padding: 0px 32px;
    }
}

/* --------------- Sharingslider --------------- */

.sharingbox{
    margin: 144px auto 24px;
    display: flex;
    max-width: 1366px;
    flex-direction: column;
}

.sharingbox .titlebox{
    display: flex;
    padding: 12px 48px;
    flex-direction: column;
    width: fit-content;
    gap: 8px;
    border-radius: 12px;
    background: var(--major-blue-main, #F0C11B);
}

.sharingbox .title{
    color: var(--major-yellow-tint-01, #FCF3D1);
    /* Title/H1 */
    font-family: Microsoft JhengHei;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 86.4px */
    letter-spacing: -2.88px;
}

.sharingbox .subtitle{
    color: var(--major-yellow-tint-01, #FCF3D1);
    /* Subtitles/Light */
    font-family: Microsoft JhengHei;
    font-size: 24px;
    font-style: normal;
    font-weight: 290;
    line-height: 125%; /* 30px */
}

.sharingslider{
    max-width: 1366px;
    margin: 0 auto 80px;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sharingslider .sharinglist, .sharingswiper{
    display:flex;
    max-width: 1366px;
    width: 100%;
    margin-top: 48px;
    align-items: center;
}

.sharingswiper .swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.sharingswiper .swiper-pagination-bullet{
    background-color:#F0C11B;
}

.sharingswiper .swiper-slide{
    padding-bottom: 48px;
}

.sharingslider .swiper-button-prev, .sharingslider .swiper-button-next{
    position: absolute;
    color: transparent;
    height: 54px;
    width: 54px;
    top: 50% ;
}

.sharingslider .swiper-button-prev{
    left:-1%;
    background: center / cover url(../elements/icons/yellow-left.svg);
}

.sharingslider .swiper-button-next{
    right:-1%;
    background: center / cover url(../elements/icons/yellow-right.svg);
}

.comment-box{
    padding: 48px 48px 24px 48px;
    background: #FAEAB3; 
    border-radius: 16px; 
    flex-direction: column; 
    justify-content: space-between; 
    align-items: center; 
    gap: 24px; 
    display: inline-flex;
    height: 100%;
}

.comment-box .headingbox{
    align-self: stretch; 
    padding-bottom: 8px; 
    border-bottom: 0.50px #302705 solid; 
    gap: 10px; 
    display: inline-flex;
}

.comment-box .headingbox .heading{
    flex: 1 1 0; 
    color: #302705; 
    font-size: 36px;
    font-family: Microsoft JhengHei; 
    font-weight: 700; 
    line-height: 110%; 
    word-wrap: break-word;
}

.comment-box .contentbox{
    align-self: stretch; 
    gap: 10px; 
    display: inline-flex;
    flex: 1 0 0;
}

.comment-box .content{
    flex: 1 1 0; 
    color: #302705; 
    font-size: 20px; 
    font-family: Microsoft JhengHei; 
    font-weight: 290; 
    line-height: 140%; 
    word-wrap: break-word;
}

.comment-box .participant{
    width: 100%; 
    align-items: center; 
    display: inline-flex;
}

.comment-box .profile{
    flex: 1 1 0; 
    align-items: center; 
    gap: 16px; 
    display: flex;
}

.comment-box .name{
    color: #302705; 
    font-size: 18px; 
    font-family: Microsoft JhengHei; 
    font-weight: 700; 
    word-wrap: break-word;
}

.comment-box .hastagbox{
    padding: 8px 16px;
    background: #FCF3D1; 
    border-radius: 100px; 
    gap: 10px; 
    display: flex;
}

.comment-box .hastag{
    color: #302705; 
    font-size: 16px; 
    font-family: Microsoft JhengHei; 
    font-weight: 700; 
    word-wrap: break-word;
}

.sharingslider .morebtn{
    display: flex;
    padding: 16px 64px;
    justify-content: center;
    align-items: center;

    border-radius: 100px;
    border: 2px solid var(--major-blue-main, #F0C11B);

    color: var(--major-blue-main, #F0C11B);
    text-align: center;
    font-family: Microsoft JhengHei;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 24px */

    margin-top: 40px;
}

@media (max-width:1366px) {
    .sharingbox .titlebox{
        padding: 12px 48px;
        gap: 8px;
        border-radius: 0 12px 12px 0;
    }
    .sharingbox .title{
        font-size: 54px;
    }
    .sharingbox .subtitle{
        font-size: 20px;
    }
    .comment-box{
        gap: 40px; 
    }
    .comment-box .headingbox{
        padding-bottom: 8px; 
        border-bottom: 0.50px #302705 solid; 
    }
}

@media (max-width:1024px) {
    .sharingbox .titlebox{
        padding: 12px 48px;
        gap: 8px;
        border-radius: 0 12px 12px 0;
    }
    .sharingbox .title{
        font-size: 48px;
    }
    .sharingbox .subtitle{
        font-size: 18px;
    }
    .sharingslider{
        margin: 0 24px 80px;
    }
    .comment-box{
        padding: 48px;
        border-radius: 12px; 
        gap: 40px; 
    }
    .comment-box .headingbox{
        padding-bottom: 8px; 
        border-bottom: 0.50px #302705 solid; 
    }
    .comment-box .headingbox .heading{
        font-size: 28px;
    }
    .comment-box .content{
        font-size: 16px; 
        font-weight: 290; 
    }
    .comment-box .profile{
        gap: 16px; 
    }
    .comment-box .name{
        font-size: 16px; 
        font-weight: 700; 
    }
    .comment-box .hastagbox{
        padding: 8px 16px;
        border-radius: 100px; 
        gap: 10px; 
    }
    .comment-box .hastag{
        font-size: 12px; 
        font-weight: 700; 
    }
}

@media (max-width:768px) {
    .sharingslider{
        padding: 0px;
    }
    .sharingbox{
        margin: 80px auto 0%;
    }
    .sharingbox .titlebox{
        padding: 12px 48px;
        gap: 8px;
        border-radius: 0 12px 12px 0;
    }
    .sharingbox .title{
        font-size: 36px;
    }
    .sharingbox .subtitle{
        font-size: 16px;
    }
    .sharingslider .sharinglist, .sharingswiper{
        padding: 0px;
    }
    .sharingswiper .swiper-slide{
        padding: 0;
    }
    .sharingslider .swiper-button-prev, .sharingslider .swiper-button-next{
        display: none;
    }
    .comment-box{
        padding: 36px;
        border-radius: 12px; 
        gap: 40px; 
    }
    .comment-box .headingbox{
        padding-bottom: 8px; 
        border-bottom: 0.50px #302705 solid; 
    }
    .comment-box .headingbox .heading{
        font-size: 24px;
        font-weight: 700; 
    }
    .comment-box .content{
        font-size: 18px; 
        font-weight: 290; 
    }
}

@media (max-width:414px) {
    .sharingslider{
        padding: 0px;
    }
    .comment-box{
        padding: 24px;
        border-radius: 8px; 
        gap: 24px; 
    }
    .comment-box .headingbox{
        padding-bottom: 8px; 
        border-bottom: 0.50px #302705 solid; 
    }
    .comment-box .headingbox .heading{
        font-size: 24px;
        font-weight: 700;
    }
    .comment-box .content{
        font-size: 16px; 
        font-weight: 290; 
    }
}