@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');
@font-face {
    font-family: Brigitka;
    src: url(./assets/fonts/Brigitka\ 400.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-BeVietnamPro);
}

body {
    background-color: var(--bgColor);
    color: var(--textColor-black);
}
body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: var(--textColor-black);
    cursor: pointer;
}

/*  Global Variables */
:root {
    --font-BeVietnamPro: 'Be Vietnam Pro', sans-serif;
    --font-Gloock: 'Gloock', serif;
    --font-Brigitka: 'Brigitka';

    --themeYellow-color: #D79F11;
    --themeBlue-color: #295883;
    --themeGray-color: #909090;
    --textColor-black: #303030;
    --textColor-white: #FCFCFC;
    --colorYellow: #E6C266;
    --bgColor: #FFFEFE;

    --hover-yellow: #b48409;
    --hover-blue: #205b8b;
    --hover-blue-2: #174066;
    --hover-black: #464646;

    --box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    --transition-1: all .3s ease-in-out;

    /* Font Weight */
    --bold-8: 800;
    --bold-7: 700;
    --bold-6: 600;
    --bold-5: 500;
    --bold-4: 400;
    --bold-3: 300;
    --bold-2: 200;
    --bold-1: 100;
}

.main-container{
    position: relative;
    /* background-color: #205b8b; */
    padding: 150px 50px;
}
.sub-container{
    border-radius: 24px;
    margin-top: 0;
    /* background-image: linear-gradient(#f7e9cb, #d1e2f4); */
    background: linear-gradient(-50deg, #f3ede0, #e7f0f9);
}
.main-section{
    position: relative;
    border-radius: 10px;
    padding: 80px 140px;
}
.main-section:before{
    /* background-color: #b48409; */
    /* position: relative; */
    background-image: url('../assets/images/maskot-bg.png');
    /* background-size: cover;
    background-position: top;
    background-repeat: no-repeat; */
    /* background-color: rgba(255, 255, 255, 0.33); */
    /* background-blend-mode: overlay; */
    display: flex;
    content: ' ';
    /* display: block; */
    position: absolute;
    left: 50%;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.6;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    border-radius: 24px;
}
.main-content{
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--themeBlue-color);
}
.main-title{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main-title h6{
    font-size: 18px;
    font-style: italic;
    font-weight: var(--bold-4);
}
.main-title h1{
    /* font-family: var(--font-Brigitka); */
    font-family: var(--font-Gloock);
    font-weight: var(--bold-6);
    font-size: 70px;
    line-height: 80px;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
}
.main-title h3{
    /* margin-top: -4px; */
    font-size: 24px;
    font-weight: var(--bold-5);
    max-width: 75%;
}
.desc{
    margin-top: 20px;
    display: flex;
}
.desc h4{
    font-size: 16px;
    font-weight: var(--bold-4);
    color: var(--textColor-black);
    max-width: 70%;
}
.desc h4 span{
    font-weight: var(--bold-6);
    font-style: italic;
}
.author{
    margin-top: 10px;
}
.author span{
    color: var(--themeBlue-color);
}
.author h4{
    font-size: 14px;
    font-weight: var(--bold-4);
    color: var(--textColor-black);
}
.author h4 span{
    font-weight: var(--bold-5);
    text-decoration: underline;
    font-style: italic;
}
.tags{
    display: flex;
    margin-top: 20px;
    gap: 10px;
}
.tags-list{
    display: flex;
    gap: 10px;
}
.tags-list h4{
    cursor: cell;
    font-size: 12px;
    font-weight: var(--bold-6);
    color: var(--textColor-black);
    border: solid 1px;
    border-radius: 40px;
    padding: 5px 10px;
}
.tags-list h4:hover{
    background-color: var(--hover-blue);
    color: var(--bgColor);
    transition: var(--transition-1);
}
.icon-share{
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-share .ph-share-network{
    font-size: 18px;
    cursor: pointer;
}
.main-btn{
    display: block;
    margin-top: 80px;
}
.main-btn .btn{
    background-color: var(--themeBlue-color);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: var(--bold-6);
    color: var(--bgColor);
    cursor: pointer;
    letter-spacing: 1px;
}
.main-btn .btn:hover{
    background-color: #174066;
    color: var(--bgColor);
    box-shadow: 0 0px 30px rgba(19, 51, 108, 0.1);
    transition: var(--transition-1);
}
.main-btn h4{
    margin-top: 2rem;
    font-size: 12px;
    font-style: italic;
    font-weight: var(--bold-4);
    color: var(--themeGray-color);
}

/* Media Query */
@media screen and (max-width: 1024px) {
    .navbar-right-section .navbar-option {
        gap: 24px;
    }
    .main-container{
        padding: 120px 30px;
    }
    .main-section{
        padding: 80px 50px;
    }
    .main-title h1{
        font-size: 70px;
    }
    .main-title h3{
        font-size: 18px;
    }
    .desc h4{
        font-size: 14px;
    }
    .author h4{
        font-size: 12px;
    }
    .tags-list h4{
        font-size: 10px;
    }
    .main-btn .btn{
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    .main-section{
        padding: 80px 50px;
    }
}

@media screen and (max-width: 620px) {
    .main-container{
        padding: 100px 30px;
    }
    .main-section{
        padding: 80px 50px;
    }
    .main-title h6{
        font-size: 12px;
    }
    .main-title h1{
        font-size: 50px;
        line-height: 45px;
    }
    .main-title h3{
        font-size: 14px;
        max-width: 90%;
    }
    .desc h4{
        font-size: 12px;
        max-width: 90%;
    }
    .author h4{
        font-size: 10px;
    }
    .tags-list h4{
        font-size: 8px;
    }
    .main-btn{
        margin-top: 60px;
    }
    .main-btn .btn{
        padding: 10px 10px;
        font-size: 12px;
    }
    .main-btn h4{
        max-width: 90%;
        font-size: 10px; 
    }
}
@media screen and (max-width: 480px) {
    .main-container{
        padding: 90px 30px;
    }
    .main-section{
        padding: 60px 20px;
    }
}

.logo-wrap-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
    padding: 60px 0;
}
.logo-section .logo{
    cursor: cell;
    height: 60px;
    width: auto;
    opacity: 20%;
    filter: grayscale(1);
}
.logo-section .logo:hover{
    opacity: 80%;
    filter: grayscale(0);
    transition: var(--transition-1);
}

@media screen and (max-width: 1024px) {
    .logo-wrap-container{
        gap: 50px;
    }
    .logo-section .logo{
        height: 40px;
    }
}
@media screen and (max-width: 620px) {
    .logo-wrap-container{
        padding: 40px 0;
    }
    .logo-wrap-container{
        gap: 40px;
    }
    .logo-section .logo{
        height: 30px;
    }
}
@media screen and (max-width: 420px) {
    .logo-wrap-container{
        justify-content: flex-start;
        overflow-x: auto;
        cursor: grabbing;
    }
    .logo-wrap-container::-webkit-scrollbar{
        display: none;
    }
}

.info-section{
    display: flex;
    flex-direction: column;
    gap: 52px;
    padding: 0 140px;
}
.about-container,
.regist-container,
.event-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.about-container .title-section,
.regist-container .title-section,
.event-container .title-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.about-container .about-desc-section,
.regist-container .regist-desc-section,
.event-container .event-desc-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.about-container .title-box,
.regist-container .title-box,
.event-container .title-box {
    display: flex;
    flex-direction: column;
}
.about-container .title-box .header,
.regist-container .title-box .header,
.event-container .title-box .header {
    font-size: 16px;
    font-weight: var(--bold-3);
    color: var(--textColor-black);
    font-style: italic;
    margin-bottom: 4px;
}
.about-container .title-box .title,
.event-container .title-box .title {
    font-size: 34px;
    font-weight: var(--bold-6);
    color: var(--themeYellow-color);
}
.regist-container .title-box .title{
    font-size: 34px;
    font-weight: var(--bold-6);
    color: var(--themeBlue-color);
}
.about-container .title-box .subtitle {    
    font-size: 14px;
    font-weight: var(--bold-4);
    color: var(--textColor-black);
    max-width: 50%;
    font-style: italic;
}
.regist-container .title-box .subtitle,
.event-container .title-box .subtitle {
    font-size: 14px;
    font-weight: var(--bold-4);
    color: var(--themeGray-color);
    max-width: 50%;
    font-style: italic;
}
.host-info{
    margin-top: 8px;
}
.host-info h5{
    font-size: 12px;
    font-weight: var(--bold-5);
}
.host-info span{
    font-weight: var(--bold-5);
    color: var(--themeBlue-color);
}
.about-desc-section .about-desc-box{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-desc-box .desc{
    margin-top: 0;
}
.about-desc-box .p1,
.about-desc-box .p2{
    font-size: 16px;
    font-weight: var(--bold-4);
    text-align: justify;
}
.about-desc-box .p1{
    color: var(--themeYellow-color);
}
.about-desc-box .p2{
    color: var(--themeGray-color);
}
.about-desc-box .p2{
    font-size: 16px;
    font-weight: var(--bold-3);
    color: var(--themeGray-color);
}
.regist-info,
.event-info{
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 4px;
}
.date-section,
.event-section{
    display: flex;
    align-items: center;
    gap: 4px;
}
.date-section i,
.event-section i{
    font-size: 20px;
}
.date-section i{
    color: var(--themeBlue-color);
}
.event-section i{
    color: var(--themeYellow-color);
}
.date-section .date,
.event-section .event{
    font-size: 14px;
    font-weight: var(--bold-6);
    color: var(--textColor-black);
}
.regist-info h4{
    font-size: 16px;
    color: var(--themeGray-color);
    font-weight: var(--bold-4);
}
.regist-desc-box{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.regist-desc-box .on-regist-section,
.regist-desc-box .off-regist-section,
.regist-desc-box .other-section{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.regist-desc-box .on-regist-section h4,
.regist-desc-box .off-regist-section h4{
    color: var(--themeBlue-color);
    font-weight: var(--bold-4);
    font-size: 24px;
}
.regist-desc-box .on-regist-section h4 span,
.regist-desc-box .off-regist-section h4 span{
    font-style: italic;
}
.regist-desc-box .on-regist-section h5,
.regist-desc-box .off-regist-section h5,
.regist-desc-box .other-section h5{
    color: var(--themeGray-color);
    font-weight: var(--bold-4);
    font-size: 16px;
}
.on-regist-section .btn-section,
.off-regist-section .btn-section,
.other-section .btn-section{
    margin-top: 20px;
    display: flex;
}
.on-regist-section .btn-section .regist-btn,
.off-regist-section .btn-section .regist-btn,
.other-section .btn-section .other-btn{
    display: block;
    color: var(--themeBlue-color);
    font-weight: var(--bold-6);
    border-radius: 4px;
    border: solid 1px var(--themeBlue-color);
    padding: 10px 30px;
    font-size: 14px;
    letter-spacing: 0.6px;
}
.on-regist-section .btn-section .regist-btn:hover,
.off-regist-section .btn-section .regist-btn:hover,
.other-section .btn-section .other-btn:hover{
    background-color: var(--themeBlue-color);
    color: var(--bgColor);
    transition: var(--transition-1);
    box-shadow: var(--box-shadow);
}
.other-section .other-title{
    display: flex;
    align-items: center;
    gap: 8px;
}
.other-title .newUpdate{
    color: var(--themeBlue-color);
    font-weight: var(--bold-4);
    font-size: 24px;
}
.other-title h6{
    background-color: var(--themeBlue-color);
    color: var(--textColor-white);
    font-weight: var(--bold-7);
    padding: 4px 8px;
    border-radius: 4px;
    /* color: var(--themeBlue-color); */
    /* border: solid 1px var(--themeBlue-color); */
}
/* NEW UPDATE STYLE */
@keyframes glow {
  0% {
    text-shadow: 0 0 1px #17436b;
    color: #17436b;
  }
  50% {
    text-shadow: 0 0 3.5px #17436b;
    color: #17436b;
  }
  100% {
    text-shadow: 0 0 1px #17436b;
    color: #17436b;
  }
}
.glow-animate {
  animation: glow 1.5s ease-in-out infinite;
}

.note-info{
    margin-top: 40px;
}
.note-info .note{
    font-size: 12px;
    color: var(--themeGray-color);
    font-weight: var(--bold-4);
    max-width: 50%;
}
.event-desc-box{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.event-desc-box .option{
    border: solid 1px var(--themeYellow-color);
    border-radius: 8px;
    padding: 15px 0;
    text-align: center;
    font-size: 18px;
    font-weight: var(--bold-5);
    color: var(--themeYellow-color);
}
.event-desc-box .option:hover{
    background-color: var(--themeYellow-color);
    color: var(--textColor-white);
    transition: var(--transition-1);
}

@media screen and (max-width: 1024px) {
    .info-section{
        gap: 52px;
        padding: 0 50px;
    }
}
@media screen and (max-width: 1200px) {
    .about-container .title-box .title,
    .regist-container .title-box .title,
    .event-container .title-box .title {
        max-width: 70%;
    }
}
@media screen and (max-width: 768px) {
    .about-container .title-box .header,
    .regist-container .title-box .header,
    .event-container .title-box .header {
        font-size: 14px;
    }
    .about-container .title-box .title,
    .regist-container .title-box .title,
    .event-container .title-box .title {
        font-size: 30px;
    }
    .about-container .title-box .subtitle,
    .regist-container .title-box .subtitle,
    .event-container .title-box .subtitle {
        font-size: 12px;
        max-width: 70%;
    }
    .host-info h5{
        font-size: 10px;
    }
    .about-desc-box .p1,
    .about-desc-box .p2{
        font-size: 14px;
    }
    .date-section i,
    .event-section i{
        font-size: 18px;
    }
    .date-section .date,
    .event-section .event{
        font-size: 12px;
    }
    .regist-info h4{
        font-size: 12px;
        max-width: 50%;
    }
    .regist-desc-box .on-regist-section h4,
    .regist-desc-box .off-regist-section h4,
    .regist-desc-box .other-section h4{
        font-size: 22px;
    }
    .regist-desc-box .on-regist-section h5,
    .regist-desc-box .off-regist-section h5,
    .regist-desc-box .other-section h5{
        font-size: 14px;
    }
    .on-regist-section .btn-section .regist-btn,
    .off-regist-section .btn-section .regist-btn,
    .other-section .btn-section .other-btn{
        padding: 10px 30px;
        font-size: 12px;
    }
    .note-info .note{
        font-size: 10px;
        max-width: 60%;
    }
    .event-desc-box{
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .event-desc-box .option{
        padding: 12px 0;
        font-size: 16px;
    }
}
@media screen and (max-width: 620px) {
    .event-desc-box .option{
        padding: 15px 0px;
        font-size: 14px;
    }
}
/* @media screen and (max-width: 580px) {
    .info-section{
        padding: 0 20px;
    }
    .about-container,
    .regist-container,
    .event-container{
        gap: 6px;
    }
    .about-container .title-box .header,
    .regist-container .title-box .header,
    .event-container .title-box .header {
        font-size: 12px;
    }
    .about-container .title-box .title,
    .regist-container .title-box .title,
    .event-container .title-box .title {
        font-size: 26px;
    }
    .about-container .title-box .subtitle,
    .regist-container .title-box .subtitle,
    .event-container .title-box .subtitle {
        font-size: 10px;
        max-width: 70%;
    }
    .host-info h5{
        font-size: 8px;
        max-width: 60%;
    }
    .about-desc-box .p1,
    .about-desc-box .p2{
        font-size: 12px;
    }
    .date-section i,
    .event-section i{
        font-size: 16px;
    }
    .date-section .date,
    .event-section .event{
        font-size: 10px;
    }
    .regist-info h4{
        font-size: 10px;
        max-width: 50%;
    }
    .regist-desc-box .on-regist-section h4,
    .regist-desc-box .off-regist-section h4,
    .regist-desc-box .other-section h4{
        font-size: 20px;
    }
    .regist-desc-box .on-regist-section h5,
    .regist-desc-box .off-regist-section h5,
    .regist-desc-box .other-section h5{
        font-size: 12px;
    }
    .on-regist-section .btn-section .regist-btn{
        padding: 10px 30px;
        font-size: 10px;
    }
    .note-info .note{
        font-size: 10px;
        max-width: 60%;
    }
    .event-desc-box{
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .event-desc-box .option{
        padding: 12px 0px;
        font-size: 12px;
    }
} */
@media screen and (max-width: 580px) {
    .info-section{
        padding: 0 20px;
    }
    .about-container,
    .regist-container,
    .event-container {
        flex-direction: column;
        gap: 16px;
    }
    .about-container .title-box .header,
    .regist-container .title-box .header,
    .event-container .title-box .header {
        font-size: 12px;
    }
    .about-container .title-box .title,
    .regist-container .title-box .title,
    .event-container .title-box .title {
        font-size: 28px;
        max-width: 100%;
    }
    .about-container .title-box .subtitle,
    .regist-container .title-box .subtitle,
    .event-container .title-box .subtitle {
        font-size: 12px;
        max-width: 100%;
    }
    .host-info h5{
        font-size: 10px;
        max-width: 100%;
    }
    .about-desc-box .p1,
    .about-desc-box .p2{
        font-size: 12px;
    }
    .regist-info, 
    .event-info{
        margin-top: 16px;
    }
    .note-info{
        margin-top: 16px;
    }
    .note-info .note{
        max-width: 100%;
    }
    .regist-desc-box{
        gap: 20px;
    }
    .regist-desc-box .on-regist-section,
    .regist-desc-box .off-regist-section,
    .regist-desc-box .other-section {
        gap: 2px;
    }
    .on-regist-section .btn-section{
        margin-top: 12px;
    }
    .event-desc-box{
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}
@media screen and (max-width:360px) {
    .main-container{
        padding: 100px 20px;
    }
    .info-section{
        padding: 0 0;
    }
}

.count-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 52px;
    /* padding: 0 140px; */
    /* gap: 24px; */
}
.top-box{
    display: flex;
    padding: 0 56px;
    width: 100%;
}
.top-count-section{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    background-color: #f6f3ec;
    padding: 30px 85px;
    border-radius: 10px 10px 0 0;
}
.count-regist h6,
.event-count h6{
    font-size: 12px;
    color: gray;
    font-weight: var(--bold-4);
}
.count-regist h4,
.event-count h4,
.main-count h4{
    font-size: 16px;
    font-weight: var(--bold-6);
}
.main-count{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.main-count h6{
    font-size: 14px;
    font-weight: var(--bold-4);
    color: gray;
}
.main-count h2{
    font-size: 60px;
    color: var(--themeBlue-color);
}
.event-count{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.main-box{
    width: 100%;
}
.main-count-section{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 60px 140px;
    background: linear-gradient(-50deg, #E6C266, #83AAD6);
    border-radius: 10px;
    gap: 20px;
}
.segment-time{
    font-size: 82px;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
    color: var(--textColor-white);
}
.segment-title{
    font-size: 20px;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
    color: var(--textColor-white);
}
.container-segment{
    display: flex;
    align-items: flex-end;
}
.bottom-box{
    width: 100%;
    padding: 0 138px;
}
.bottom-count-section{
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 28px 40px;
    background-color: var(--themeBlue-color);
    border-radius: 0 0 10px 10px;
}
.bottom-count-section .title h4{
    color: var(--textColor-white);
    font-size: 26px;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .top-count-section{
        padding: 30px;
    }
    .main-count h6{
        font-size: 14px;
    }
    .main-count h2{
        font-size: 60px;
    }
    .segment-time{
        font-size: 62px;
    }
    .segment-title{
        font-size: 16px;
    }
    .bottom-count-section{
        padding: 28px;
    }
    .bottom-count-section .title h4{
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .top-count-section{
        padding: 30px;
    }
    .main-count h6{
        font-size: 12px;
    }
    .count-regist h4,
    .event-count h4,
    .main-count h4{
        font-size: 14px;
    }
    .main-count h2{
        font-size: 50px;
    }
    .main-count-section{
        padding: 40px 50px;
    }
    .segment-time{
        font-size: 42px;
    }
    .segment-title{
        font-size: 12px;
        font-weight: var(--bold-5);
    }
    .bottom-box{
        padding: 0 60px;
    }
    .bottom-count-section{
        padding: 16px;
    }
    .bottom-count-section .title h4{
        font-size: 14px;
    }
}
@media screen and (max-width: 620px) {
    .top-box{
        padding: 0;
    }
    .top-count-section{
        padding: 30px;
    }
    .main-count h6{
        font-size: 12px;
    }
    .count-regist h6,
    .event-count h6{
        font-size: 10px;
    }
    .count-regist h4,
    .event-count h4,
    .main-count h4{
        font-size: 12px;
    }
    .main-count h2{
        font-size: 40px;
    }
    .main-count-section{
        padding: 30px;
    }
    .segment-time{
        font-size: 32px;
    }
    .segment-title{
        font-size: 10px;
    }
    .bottom-box{
        padding: 0 60px;
    }
    .bottom-count-section .title h4{
        font-size: 12px;
    }
}
@media screen and (max-width: 480px) {
    .top-count-section{
        padding: 20px;
    }
    .main-count-section{
        gap: 8px;
    }
    .main-count h6{
        font-size: 10px;
    }
    .count-regist h6,
    .event-count h6{
        font-size: 8px;
    }
    .count-regist h4,
    .event-count h4,
    .main-count h4{
        font-size: 10px;
    }
    .main-count h2{
        font-size: 30px;
    }
    .main-count-section{
        padding: 20px;
    }
    .segment-time{
        font-size: 28px;
    }
    .segment-title{
        font-size: 8px;
    }
    .bottom-box{
        padding: 0 40px;
    }
    .bottom-count-section .title h4{
        font-size: 10px;
    }
}
@media screen and (max-width: 360px) {
    .top-count-section{
        padding: 12px;
    }
    .main-count-section{
        gap: 4px;
    }
    .main-count h6{
        font-size: 8px;
    }
    .count-regist h6,
    .event-count h6{
        font-size: 8px;
    }
    .count-regist h4,
    .event-count h4,
    .main-count h4{
        font-size: 10px;
    }
    .main-count h2{
        font-size: 24px;
    }
    .main-count-section{
        padding: 20px 14px;
    }
    .container-segment{
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .bottom-box{
        padding: 0 30px;
    }
    .bottom-count-section{
        padding: 12px;
    }
    .bottom-count-section .title h4{
        font-size: 10px;
    }
}

.rundown-section{
    /* display: flex; */
    margin-top: 52px;
    padding: 0 140px;
}
.rundown-title-section{
    display: flex;
    flex-direction: column;
}
.rundown-title-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* padding: 0 140px; */
}
.rundown-section .rundown-title-box {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.rundown-section .rundown-title-box .header {
    font-size: 16px;
    font-weight: var(--bold-3);
    color: var(--textColor-black);
    font-style: italic;
    margin-bottom: 4px;
}
.rundown-section .rundown-title-box .title {
    font-size: 34px;
    font-weight: var(--bold-6);
    color: var(--themeYellow-color);
}
.rundown-box-section{
    display: flex;
    margin-top: 25px;
}
.rundown-box{
    display: flex;
    flex-direction: column;
}
.rundown-box{
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 60%;
}
.rundown-box .rundown{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    border: solid 1px var(--themeYellow-color);
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
}
.rundown-box .rundown:hover{
    box-shadow: var(--box-shadow);
    transition: var(--transition-1);
}
.rundown span i{
    color: var(--themeYellow-color);
}
.rundown-box .rundown h4{
    font-size: 16px;
    font-weight: var(--bold-4);
    color: var(--themeYellow-color);
}
.arrow-nonActive {
    display: inline;
}
.arrow-active {
    display: none;
}
.rundown.active .arrow-nonActive {
    display: none;
}
.rundown.active .arrow-active {
    display: inline;
}
.rundown-desc-section{
    width: 100%;
}
.rundown-desc-box > div {
    display: none;
}
.run-box.active {
    display: block;
}
.rundown-desc-box{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.run-box{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.run-box h4{
    font-size: 24px;
    font-weight: var(--bold-5);
    color: var(--themeYellow-color);
}
.rundown-desc-box .run-box .r1{
    margin-top: 0;
    font-size: 14px;
    font-weight: var(--bold-4);
    text-align: justify;
    color: var(--themeGray-color);
}

@media screen and (max-width: 1200px) {
    .rundown-container .rundown-title-box .title{
        max-width: 70%;
    }
}
@media screen and (max-width: 1024px) {
    .rundown-section{
        margin-top: 52px;
        padding: 0 50px;
    }
    .rundown-box{
        min-width: 80%;
    }
}
@media screen and (max-width: 780px) {
    .rundown-title-container{
        gap: 8px;
    }
    .rundown-section{
        padding: 0 50px;
    }
    .rundown-container .rundown-title-box .header {
        font-size: 14px;
    }
    .rundown-container .rundown-title-box .title {
        font-size: 30px;
    }
    .rundown-box{
        min-width: 80%;
    }
    .rundown-box .rundown{
        padding: 10px 15px;
    }
    .rundown-box .rundown h4{
        font-size: 14px;
    }
    .run-box h4{
        font-size: 22px;
    }
}
/* @media screen and (max-width: 580px) {
    .rundown-section{
        padding: 0 20px;
    }
    .rundown-container .rundown-title-box .header {
        font-size: 12px;
    }
    .rundown-container .rundown-title-box .title {
        font-size: 26px;
    }
    .rundown-box{
        min-width: 80%;
    }
    .rundown-box .rundown{
        padding: 10px 15px;
    }
    .rundown-box .rundown h4{
        font-size: 12px;
        max-width: 80%;
    }
    .run-box h4{
        font-size: 20px;
    }
    .rundown i{
        font-size: 14px;
    }
    .rundown-desc-box .run-box .r1,
    .rundown-desc-box .run-box .r2,
    .rundown-desc-box .run-box .r3{
        font-size: 12px;
    }
} */
@media screen and (max-width: 580px) {
    .rundown-section {
        padding: 0 20px;
    }
    .rundown-box{
        min-width: 80%;
    }
    .rundown-box .rundown{
        padding: 8px 10px;
    }
    .rundown-box .rundown h4{
        font-size: 10px;
        max-width: 80%;
    }
    .rundown i{
        font-size: 12px;
    }
    .run-box h4{
        font-size: 20px;
    }
    .rundown-desc-box .run-box .r1,
    .rundown-desc-box .run-box .r2,
    .rundown-desc-box .run-box .r3{
        font-size: 12px;
    }
}
@media screen and (max-width: 580px) {
    .rundown-title-container{
        flex-direction: column;
        gap: 16px;
    }
    .rundown-box-section{
        margin-top: 12px;
    }
}
@media screen and (max-width: 360px) {
    .rundown-section{
        padding: 0 0;
    }
}

.otherInfo-section{
    display: flex;
    margin-top: 52px;
    padding: 0 140px;
}
.otherInfo-title-section{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.otherInfo-title-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* padding: 0 140px; */
}
.otherInfo-section .otherInfo-title-box {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.otherInfo-section .otherInfo-title-box .header {
    font-size: 16px;
    font-weight: var(--bold-3);
    color: var(--textColor-black);
    font-style: italic;
    margin-bottom: 4px;
}
.otherInfo-section .otherInfo-title-box .title {
    font-size: 34px;
    font-weight: var(--bold-6);
    color: var(--themeBlue-color);
}
.otherInfo-container .otherInfo-title-box .subtitle {
    font-size: 14px;
    font-weight: var(--bold-4);
    color: var(--themeGray-color);
    max-width: 50%;
    font-style: italic;
}
.otherInfo-box-section{
    display: flex;
    margin-top: 25px;
}
.otherInfo-box{
    display: flex;
    flex-direction: column;
}
.otherInfo-box{
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 60%;
}
.otherInfo-box .otherInfo h4{
    font-size: 16px;
    font-weight: var(--bold-4);
    color: var(--themeYellow-color);
}
.box-info{
    display: flex;
    align-items: center;
    gap: 6px;
}
.otherInfo-info{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.otherInfo-info .box-info i{
    font-size: 16px;
    color: var(--themeBlue-color);
}
.otherInfo-info .box-info h4{
    color: var(--themeBlue-color);
    width: 100%;
}
.otherInfo-info .sum-loc h4{
    max-width: 70%;
}
.otherInfo-info .sum h4{
    font-size: 12px;
    color: var(--themeGray-color);
    font-weight: var(--bold-4);
}
.otherInfo-desc-section{
    width: 100%;
    border: solid 4px var(--themeBlue-color);
    border-radius: 12px;
}
.iframe-box iframe{
    width: 100%;
    max-height: 400px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

@media screen and (max-width: 1200px) {
    .otherInfo-container .otherInfo-title-box .title{
        max-width: 70%;
    }
}
@media screen and (max-width: 1024px) {
    .otherInfo-section{
        margin-top: 52px;
        padding: 0 50px;
    }
    .otherInfo-box{
        min-width: 80%;
    }
}
@media screen and (max-width: 780px) {
    .otherInfo-title-container{
        gap: 8px;
    }
    .otherInfo-section{
        padding: 0 50px;
    }
    .otherInfo-container .otherInfo-title-box .header {
        font-size: 14px;
    }
    .otherInfo-container .otherInfo-title-box .title {
        font-size: 30px;
    }
    .otherInfo-container .otherInfo-title-box .subtitle {
        font-size: 12px;
        max-width: 70%;
    }
    .otherInfo-box{
        min-width: 80%;
    }
    .otherInfo-box .otherInfo{
        padding: 10px 15px;
    }
    .otherInfo-box .otherInfo h4{
        font-size: 14px;
    }
    .otherInfo-info .box-info i{
        font-size: 14px;
    }
    .otherInfo-info .box-info h4{
        font-size: 14px;
    }
    .otherInfo-info .sum h4{
        font-size: 10px;
    }
    .otherInfo-desc-section{
        height: 308px;
    }
    .iframe-box iframe{
        max-height: 300px;
        border-radius: 8px;
    }
}
@media screen and (max-width: 580px) {
    .otherInfo-title-container{
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .otherInfo-section{
        padding: 0 20px;
    }
    .otherInfo-container .otherInfo-title-box .header {
        font-size: 12px;
    }
    .otherInfo-container .otherInfo-title-box .title {
        font-size: 26px;
    }
    .otherInfo-container .otherInfo-title-box .subtitle {
        font-size: 10px;
        max-width: 70%;
    }
    .otherInfo-box{
        min-width: 80%;
    }
    .otherInfo-box .otherInfo{
        padding: 10px 15px;
    }
    .otherInfo-box .otherInfo h4{
        font-size: 12px;
        max-width: 80%;
    }
    .run-box h4{
        font-size: 20px;
    }
    .otherInfo i{
        font-size: 14px;
    }
    .otherInfo-desc-section{
        height: 308px;
    }
    .iframe-box iframe{
        max-height: 300px;
        border-radius: 8px;
    }
}
@media screen and (max-width: 480px) {
    .otherInfo-box{
        min-width: 80%;
    }
    .otherInfo-box .otherInfo{
        padding: 8px 10px;
    }
    .otherInfo-box .otherInfo h4{
        font-size: 10px;
        max-width: 80%;
    }
    .otherInfo i{
        font-size: 12px;
    }
    .run-box h4{
        font-size: 20px;
    }
}
@media screen and (max-width: 420px) {
    .otherInfo-box-section{
        margin-top: 12px;
    }
}
@media screen and (max-width: 360px) {
    .otherInfo-section{
        padding: 0 0;
    }
    .otherInfo-desc-section{
        height: 210px;
        border: solid 3px var(--themeBlue-color);
    }
    .iframe-box iframe{
        max-height: 200px;
        border-radius: 10px;
    }
}

.socMed-section{
    display: flex;
    margin-top: 52px;
    padding: 0 140px;
}
.socMed-title-section{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.socMed-title-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* padding: 0 140px; */
}
.socMed-section .socMed-title-box {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.socMed-section .socMed-title-box .header {
    font-size: 16px;
    font-weight: var(--bold-3);
    color: var(--textColor-black);
    font-style: italic;
    margin-bottom: 4px;
}
.socMed-section .socMed-title-box .title {
    font-size: 34px;
    font-weight: var(--bold-6);
    color: var(--themeYellow-color);
    max-width: 90%;
}
.socMed-title-container .socMed-title-box .subtitle {
    font-size: 14px;
    font-weight: var(--bold-4);
    color: var(--themeGray-color);
    max-width: 50%;
    font-style: italic;
}
.socMed-box-section{
    display: flex;
    margin-top: 25px;
}
.socMed-box{
    display: flex;
    flex-direction: column;
}
.socMed-box{
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 60%;
}
.socMed-desc-section{
    width: 100%;
}
.socMed-desc-box{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.socialmedia-box{
    display: flex;
    align-items: center;
    gap: 4px;
}
.socialmedia-box:hover{
    color: var(--hover-yellow);
    letter-spacing: 0.8px;
    font-style: italic;
    transition: var(--transition-1);
}
.socialmedia-box i{
    color: var(--themeYellow-color);
    font-size: 16px;
}
.socialmedia-box h4{
    color: var(--themeYellow-color);
    font-size: 16px;
    font-weight: var(--bold-4);
}


@media screen and (max-width: 1200px) {
    .socMed-title-container .socMed-title-box .title{
        max-width: 70%;
    }
}
@media screen and (max-width: 1024px) {
    .socMed-section{
        margin-top: 52px;
        padding: 0 50px;
    }
    .socMed-box{
        min-width: 80%;
    }
}
@media screen and (max-width: 780px) {
    .socMed-title-container{
        gap: 8px;
    }
    .socMed-section{
        padding: 0 50px;
    }
    .socMed-title-container .socMed-title-box .header {
        font-size: 14px;
    }
    .socMed-title-container .socMed-title-box .title {
        font-size: 30px;
    }
    .socMed-title-container .socMed-title-box .subtitle {
        font-size: 12px;
        max-width: 70%;
    }
    .socialmedia-box i,
    .socialmedia-box h4 {
        font-size: 12px;   
    }
}
@media screen and (max-width: 580px) {
    .socMed-title-container{
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .socMed-section{
        padding: 0 20px;
    }
    .socMed-title-container .socMed-title-box .header {
        font-size: 12px;
    }
    .socMed-title-container .socMed-title-box .title {
        font-size: 26px;
    }
    .socMed-title-container .socMed-title-box .subtitle {
        font-size: 10px;
        max-width: 70%;
    }
    .socMed-box{
        min-width: 80%;
    }
    .socMed-box .socMed{
        padding: 10px 15px;
    }
    .socMed-box .socMed h4{
        font-size: 12px;
        max-width: 80%;
    }
    .run-box h4{
        font-size: 20px;
    }
    .socMed i{
        font-size: 14px;
    }
}
@media screen and (max-width: 360px) {
    .socMed-section{
        padding: 0 0;
    }
}