/* BASIC STYLE  */
* {
   padding: 0;
   margin: 0;
   box-sizing: border-box;
}

body {
    font-family: 'inter-r';
}

strong {
    font-family: 'inter-b';
}

.container {
    width: 98%;
    margin: 0 auto;
    /* max-width: 1920px; */
}

.container3 {
    width: 60%;
    margin: 0 auto;
    /* max-width: 1920px; */
}

/* MARGIN */
.mt10 {margin-top: 10px;}
.mt15 {margin-top: 15px;}
.mt20 {margin-top: 20px;}
.mt25 {margin-top: 25px;}
.mt30 {margin-top: 30px;}
.mt35 {margin-top: 35px;}
.mt40 {margin-top: 40px;}
.mt45 {margin-top: 45px;}
.mt50 {margin-top: 50px;}
.mt55 {margin-top: 55px;}
.mt60 {margin-top: 60px;}
.mt65 {margin-top: 65px;}
.mt70 {margin-top: 70px;}
.mt75 {margin-top: 75px;}
.mt80 {margin-top: 80px;}
.mt85 {margin-top: 85px;}
.mt90 {margin-top: 90px;}
.mt95 {margin-top: 95px;}
.mt100 {margin-top: 100px;}
.mt110 {margin-top: 110px;}
.mt120 {margin-top: 120px;}

.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb25 {margin-bottom: 25px;}
.mb30 {margin-bottom: 30px;}
.mb35 {margin-bottom: 35px;}
.mb40 {margin-bottom: 40px;}
.mb45 {margin-bottom: 45px;}
.mb50 {margin-bottom: 50px;}
.mb55 {margin-bottom: 55px;}
.mb60 {margin-bottom: 60px;}
.mb65 {margin-bottom: 65px;}
.mb70 {margin-bottom: 70px;}
.mb75 {margin-bottom: 75px;}
.mb80 {margin-bottom: 80px;}
.mb85 {margin-bottom: 85px;}
.mb90 {margin-bottom: 90px;}
.mb95 {margin-bottom: 95px;}
.mb100 {margin-bottom: 100px;}

/* PADDING */
.pt10 {padding-top: 10px;}
.pt15 {padding-top: 15px;}
.pt20 {padding-top: 20px;}
.pt25 {padding-top: 25px;}
.pt30 {padding-top: 30px;}
.pt35 {padding-top: 35px;}
.pt40 {padding-top: 40px;}
.pt45 {padding-top: 45px;}
.pt50 {padding-top: 50px;}
.pt55 {padding-top: 55px;}
.pt60 {padding-top: 60px;}
.pt65 {padding-top: 65px;}
.pt70 {padding-top: 70px;}
.pt75 {padding-top: 75px;}
.pt80 {padding-top: 80px;}
.pt85 {padding-top: 85px;}
.pt90 {padding-top: 90px;}
.pt95 {padding-top: 95px;}
.pt100 {padding-top: 100px;}

.pb10 {padding-bottom: 10px;}
.pb15 {padding-bottom: 15px;}
.pb20 {padding-bottom: 20px;}
.pb25 {padding-bottom: 25px;}
.pb30 {padding-bottom: 30px;}
.pb35 {padding-bottom: 35px;}
.pb40 {padding-bottom: 40px;}
.pb45 {padding-bottom: 45px;}
.pb50 {padding-bottom: 50px;}
.pb55 {padding-bottom: 55px;}
.pb60 {padding-bottom: 60px;}
.pb65 {padding-bottom: 65px;}
.pb70 {padding-bottom: 70px;}
.pb75 {padding-bottom: 75px;}
.pb80 {padding-bottom: 80px;}
.pb85 {padding-bottom: 85px;}
.pb90 {padding-bottom: 90px;}
.pb95 {padding-bottom: 95px;}
.pb100 {padding-bottom: 100px;}

/* WIDTH */
.w10 {width: 10%;}
.w15 {width: 15%;}
.w20 {width: 20%;}
.w25 {width: 25%;}
.w30 {width: 30%;}
.w35 {width: 35%;}
.w40 {width: 40%;}
.w45 {width: 45%;}
.w50 {width: 50%;}
.w55 {width: 55%;}
.w60 {width: 60%;}
.w65 {width: 65%;}
.w70 {width: 70%;}
.w75 {width: 75%;}
.w80 {width: 80%;}
.w85 {width: 85%;}
.w90 {width: 90%;}
.w95 {width: 95%;}
.w100 {width: 100%;}

/* DISPLAY */
.d-none {display: flex;}
.d-block {display: flex;}
.d-flex {display: flex;}
.d-grid {display: grid;}
.d-inline {display: inline;}
.d-inline-block {display: inline-block;}

/* POSITION */
.p-relative {position: relative;}
.p-absolute {position: absolute;}

/* DEFAULT STYLE */
h1,h2,h3,h4,h5,h6 {
    font-family: 'ave-b';
}

p, a {
    font-family: 'inter-r';
}

.f-inter-l {font-family: 'inter-l' !important;}
 
/* BASIC STYLE END */



:root {
    --black1 : #000;
    --black2 : #161518;
    --white1 : #fff;
    --brown1: #3f2924; 
    --blue1: #aae8f3; 
    --blue2: #8FDFB8; 
    --orange1: #d2542c; 
    --yellow1: #eeee22; 
    --yellow2: #FFFF1A; 
    --green1: #cac8a8; 
    --green2: #405E4E; 
    --red1: #D90A2C; 
    --grey1: #656466;  
    --grey3: #f5f5f5; 
    --grey4: #f0f0f0; 
    --grey5: #5b5a5c; 
    --grey6: #E6E6E6; 
 }


 .c-brown1 {color: var(--brown1) !important;}
 .c-white1 {color: var(--white1) !important;}
 .c-yellow1 {color: var(--yellow1) !important;}
 .c-green2 {color: var(--green2) !important;}

 .text-left {text-align: left;}
 .text-center {text-align: center;}
 .text-right {text-align: right;}
 

 nav {
    background: var(--brown1);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 101;
}

nav #nav-inner {
    height: 88px;
    display: flex;
    align-items: center;
}

nav #nav-inner {
    width: 99%;
    margin-right: 0;
    margin-left: auto;
}

nav .nav-in-left {
    width: 20%;
}

nav .nav-in-right {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

nav .nav-link {
    height: 100%;
}

nav .nav-link ul {
    height: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    /* gap: 45px; */
}

nav .nav-link ul li {
    height: 100%;
}

nav .nav-link ul a.link-btn {
    align-items: center;
    display: flex;
    height: 100%;
    color: var(--blue1);
    font-family: 'ave-b';
    text-transform: uppercase;
    font-size: 26px;
    text-decoration: none; 
    padding: 0 35px;
}

nav .nav-cta a {
    color: var(--blue1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'ave-b';
    background: var(--orange1);
    height: 88px;
    min-width: 152px;
    font-size: 26px;
    text-transform: uppercase;
    text-decoration: none;
    /* margin-left: 30px; */
}


nav .link-btn.active,
nav .nav-cta a.active,
nav .nav-cta a:hover,
nav .nav-link ul a:hover {
    background: var(--yellow1) !important;
    color: var(--brown1) !important;
    transition: 0.2s ease;
}
/* nav .nav-cta a:hover {
    opacity: 0.5;
    transition: 0.2s ease;
}

nav #nav-inner ul:hover a {
    opacity: 0.5;
    transition: 0.2s ease;
} */

nav #nav-inner ul a:hover {
    opacity: 1;
    color: var(--blue1);
}

footer .foot-top,
footer .foot-mid {
    background: var(--green1);
}

footer .foot-mid .container {
    display: flex;
}

footer .foot-mid-left,
footer .foot-mid-right {
    width: 50%;
}

footer .foot-mid-left {
    display: flex;
    gap: 40px;
}

footer .foot-mid-right {
    display: flex;
    gap: 40px;
}

footer .foot-bottom {
    background: var(--yellow1);
}

footer .foot-title {
    margin-bottom: 12px;
}

footer h4 {
    font-family: 'inter-b';
    color: var(--brown1);
    font-size: 18px;
    text-transform: uppercase;
}   

footer ul {
    list-style-type: none;
}

footer ul li {
    padding-bottom: 8px;
}

footer ul a {
    text-transform: uppercase;
    color: var(--brown1);
    letter-spacing: 1px;
    text-decoration: none;
}

footer .foot-link {
    width: 50%;
}

footer .foot-link li a {
    font-family: 'inter-b' !important;
}

footer .foot-top {
    padding-top: 20px;
} 

footer .foot-mid {
    padding-top: 35px;
    padding-bottom: 70px;
}

footer .foot-bottom {
    text-align: center;
    min-height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .foot-bottom p {
    color: var(--brown1);
    font-family: 'inter-b';
}

footer ul:hover a {
    opacity: 0.5;
    transition: 0.2s ease;
}

footer ul a:hover {
    opacity: 1;
    color: var(--brown1);
}

#sosmed-desktop {
    padding-left: 80px;
}

.br-mobonly {
    display: none;
}


#page-home #banner {
    margin-top: 88px;
}

#page-home .banner-item { 
    height: 880px;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

#page-home .banner-info-wrapper { 
    left: 0;
    right: 0;  
    /* margin-top: 60px; */
}

#page-home .banner-inner {
    width: 88%;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

#page-home .banner-inner .ban-desc {
    margin-top: 20px;
    text-align: center;
}

#page-home .banner-inner .ban-logo img {
    width: 500px; 
    margin: 0 auto;
    max-width: 90%;

}

#page-home .banner-inner h3 {
    color: var(--white1);
    text-transform: uppercase;
    font-size: 50px;
    line-height: 60px;
}

#page-home .banner-inner .banner-info {
    width: 60%; 
    margin: 0 auto;
} 

#page-home .ban-art-img {
    padding: 36px 0 30px;
}

#page-home .ban-detail {
    margin-top: 25px;
}

#page-home .ban-cta { 
    display: flex;
    gap: 25px; 
    bottom: 0;
    margin-top: 30px;
    justify-content: center;
}

#page-home .ban-desc p {
    font-size: 24px;
    line-height: 34px;
    color: var(--white1);
}


.btn-t1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: max-content; 
    height: 57px;
    font-family: 'ave-b';
    font-size: 24px;
    text-decoration: none;
    box-sizing: border-box;
    min-width: 260px;
}

#page-home .banner-inner .btn-t1 {
    min-width: 250px;
}

.btn-t1.btn-yellow {
    color: var(--brown1);
    background: var(--yellow1);
}

.btn-t1.btn-blue {
    color: var(--brown1);
    background: var(--blue1);
}

.btn-t1.btn-brown {
    color: var(--blue1);
    background: var(--brown1);
}

.btn-t1:hover {
    gap: 20px;
    /* opacity: .5; */
    transition: .2s ease-in;
    color: var(--orange1);
}

#page-home #intro-1 {
    min-height: 468px;
    background-position: center !important;
    background-size: cover !important;
    color: var(--orange1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#page-home #intro-1 .sec-in {
    height: 100%;
}

#page-home #intro-1 .countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px; 
}

#page-home #intro-1 .countdown-wrapper .sub {
    font-size: 18px;
    text-transform: uppercase;
}

#page-home #intro-1 .countdown-wrapper .main {
    font-size: 90px;
    line-height: 90px;
    font-family: 'ave-b';
}

#page-home .program-list {
    /* display: flex; */
}

#page-home .program-list .item:hover {
    transition: .3s ease-in;
}

#page-home .program-list .item {
    /* width: 20%; */
}

#page-home .program-list .prog-img {
    width: 100%;
    height: 520px;
    background-size: cover !important;
    background-position: center !important;
}

#page-home .program-list .prog-title {
    text-transform: uppercase;
    font-size: 40px;
    line-height: 50px;
    min-height: 140px;
    padding: 25px 25px 0;
    box-sizing: border-box;
}

/* #page-home .program-list .prog-title.item-1,
#page-home .program-list .prog-title.item-1 .prog-desc {
    background-color: var(--yellow1);
    color: var(--brown1);
}

#page-home .program-list .prog-title.item-2,
#page-home .program-list .prog-title.item-2 .prog-desc {
    background-color: var(--green2);
    color: var(--green1);
}

#page-home .program-list .prog-title.item-3,
#page-home .program-list .prog-title.item-3 .prog-desc {
    background-color: var(--orange1);
    color: var(--yellow2);
}

#page-home .program-list .prog-title.item-4,
#page-home .program-list .prog-title.item-4 .prog-desc {
    background-color: var(--brown1);
    color: var(--blue1);
}

#page-home .program-list .prog-title.item-5,
#page-home .program-list .prog-title.item-5 .prog-desc {
    background-color: var(--blue2);
    color: var(--brown1);
} */

#page-home #intro-3 .sec-title {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
} 

#page-home #intro-3 .sec-title .sec-left {
    width: 41%;
} 

#page-home #intro-4 {
    text-align: center;
    padding: 140px 0 90px;
}


#page-home #intro-4 .logo-top {
    width: 90%;
    margin: 35px auto 40px;
    display: flex;
    justify-content: center;
}

#page-home #intro-4 .logo-group {
    width: 25%;
}

#page-home #intro-4 .logo-list {
    display: flex;
    justify-content: center;
    gap: 60px;
} 

#page-home #intro-4 .logo-list {
    margin-top: 20px;
}

#page-home #intro-4 .logo-list .bg-img {
    width: 150px;
    height: 150px;
    background-size: contain !important;
    background-position: center !important;
}

#page-home #intro-4 .compar .logo-list .bg-img {
    width: 120px;
    height: 120px;
}

#page-home #intro-4 .logo-bottom .logo-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

#page-home #intro-4 .logo-bottom .logo-list .bg-img {
    width: 100%;
    height: 60px;
}

#page-home #intro-4 .logo-bottom .supp1 {
   width: 95%;
   margin: 35px auto 0;
}

#page-home #intro-4 .logo-bottom .supp2 {
   width: 90%;
   margin: 50px auto 0;
}

.tf-40 {
    font-size: 40px;
    line-height: 50px;
}

.tf-48 {
    font-size: 48px;
    line-height: 58px;
}

.tf-50 {
    font-size: 50px;
    line-height: 50px;
}

.tf-68 {
    font-size: 68px;
    line-height: 78px;
}

.desc-18 {
    font-size: 18px;
    line-height: 22px;
}

.desc-24 {
    font-size: 24px;
    line-height: 31px;
}

.desc-26 {
    font-size: 26px;
    line-height: 32px;
}

.desc-34 {
    font-size: 34px;
    line-height: 40px;
}

.page-wrapper {
    padding-top: 88px;
}



#page-banner {
    display: flex;
}

#page-banner .pb-left h1 {
    text-transform: uppercase;
}

#page-banner .pb-right {
    width: 70%;
}

#page-banner .bg-img {
    height: 880px;
    background-position: center !important; 
    background-size: cover !important;
}

#page-about #page-banner p {
    font-family: 'inter-l' !important;
}

#page-about #page-banner .pb-text-top {
    min-height: 30%;
}

#page-about #page-banner .pb-text-bottom {
    min-height: 70%;
    display: flex;
    align-items: end;
}

#page-about #intro-1 {
    min-height: 836px;
    background-position: center !important;
    background-size: cover !important; 
    display: flex;
    justify-content: center;
    align-items: center; 
}

#page-about #intro-1 p {
    color: var(--yellow1);
}

#page-about #intro-1 .detail {
    display: flex;
    gap: 25px;
    width: 43%;
    margin: 40px auto 0;
}

#slider-intro-2 .bg-img {
    width: 100%;
    height: 700px;
    background-size: cover !important;
    background-position: center !important;
}

#page-about #intro-2 span.text {
    font-family: 'ave-b' !important;
}

#page-about #intro-2 .big-text {
    color: var(--brown1);
    font-size: 68px;
}

#page-about #intro-2 .small-text {
    color: var(--green1);
    font-size: 40px;
}

#page-about #intro-2 .sec-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0 10px;
}

#page-about #intro-2 .sec-top .sec-left {
    width: 70%;
    display: flex;
    gap: 30px;
}

#page-about #intro-2 .sec-top .desc-18 {
    width: 49%;
}

#page-about #intro-2 .sec-top .sec-right {
    width: 30%;
}

#page-about #intro-3 #counting-list {
    display: flex;
    gap: 180px;
    justify-content: center;
    text-align: center;
    padding: 20px 0 80px;
}

#page-about #intro-3 #counting-list .sub {
    font-family: 'ave-b';
    color: var(--green2);
    font-size: 40px;
    margin-top: 10px;
}
 

#slider-intro-2 .inner {
    width: 96%;
}


#page-banner .pb-left {
    width: 30%;
    padding: 20px;
    background-position: center !important; 
    background-size: cover !important;
}


#page-programmes #intro-3 .sec-top {
    min-height: 30%;
}    

#page-programmes #intro-3 .sec-bottom {
    min-height: 70%;
    display: flex;
    align-items: end;
    width: 78%;
}    

#page-programmes #intro-1 .cat-list {
    /* display: flex; */
}

#page-programmes #intro-1 .cat-item {
    /* width: 25%;  */
}

#page-programmes #intro-1 .cat-bg { 
    background-size: cover !important;
    background-position: center !important;
    min-height: 500px;
    display: flex;
    align-items: end;
    box-sizing: border-box;
}

#page-programmes #intro-1 .cat-name {
    font-family: 'ave-b' !important;
    text-transform: uppercase;
    color: var(--white1);
}

#page-programmes #intro-2 .sec-top {
    text-transform: uppercase;
    padding: 10px 0;
} 

#page-programmes #intro-2 .sec-bottom {
    text-transform: uppercase;
} 

.event-tabs {
    display: flex;
}

.event-tabs .tab-item {
   width: 25%; 
   display: block;
   text-align: center;
   cursor: pointer;
   text-decoration: none;
}

.event-tabs .tab-item:hover {
    opacity: .5;
    transition: .3s ease-in;
}

.event-tabs .day {
    font-family: 'ave-b' !important;
}

.event-wrapper .tab-item {
    padding: 10px 0px;
}
 

.event-wrapper .tab-1,
.event-wrapper .event-1 {
    color: var(--brown1);
    background-color: var(--blue1);
} 

.event-wrapper .container {
    padding: 40px 0 20px;
}

.event-wrapper .event-1 .container {
    border-bottom: 1px solid var(--brown1);
}

.event-wrapper .tab-2,
.event-wrapper .event-2 {
    color: var(--green1);
    background-color: var(--green2);
} 

.event-wrapper .event-2 {
    border-bottom: 1px solid var(--green1);
}

.event-wrapper .tab-3,
.event-wrapper .event-3 {
    color: var(--brown1);
    background-color: var(--green1);
} 

.event-wrapper .event-3 {
    border-bottom: 1px solid var(--brown1);
}

.event-wrapper .tab-4,
.event-wrapper .event-4 {
    color: var(--blue1);
    background-color: var(--brown1);
} 

.event-wrapper .event-4 {
    border-bottom: 1px solid var(--blue1);
}

.event-list .event-item .container {
    display: flex;
}

.event-list .event-time {
    width: 30%;
}

.event-list .event-location ,
.event-list .event-speaker {
    width: 20%;
}

.event-list .event-title {
    width: 70%; 
    font-size: 38px;
    line-height: 43px;
} 

.event-item .container .left {
    display: flex;
    width: 60%;
}

.event-list .event-location,
.event-list .event-time {
    font-size: 24px;
    font-family: 'inter-b';
}

.event-list .event-speaker strong,
.event-list .event-speaker h3 {
    font-size: 30px;
}

.event-list .event-speaker p {
    font-size: 18px;
}

#page-programmes .pb-left {
    padding: 0;
}

.ban-faq-list .item {
    padding: 15px 24px 13px;
}

.ban-faq-list .item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ban-faq-list .item-body {
    margin-top: 15px;
}

.ban-faq-list .text {
    font-family: 'ave-b';
    text-transform: uppercase;
}

.ban-faq-list .text, 
.ban-faq-list p {
    font-size: 38px;
    line-height: 48px;
}

.ban-faq-list .item-1 {
    background: var(--yellow1);
}

.ban-faq-list .item-1 .text,
.ban-faq-list .item-1 p {
    color: var(--brown1); 
}

.ban-faq-list .item-2 {
    background: var(--green2);
}

.ban-faq-list .item-2 .text,
.ban-faq-list .item-2 p {
    color: var(--green1); 
}

.ban-faq-list .item-3 {
    background: var(--orange1);
}

.ban-faq-list .item-3 .text,
.ban-faq-list .item-3 p {
    color: var(--yellow1); 
}

.ban-faq-list .item-4 {
    background: var(--brown1);
}

.ban-faq-list .item-4 .text,
.ban-faq-list .item-4 p {
    color: var(--blue1); 
}

.ban-faq-list .item-5 {
    background: var(--blue1);
}

.ban-faq-list .item-5 .text,
.ban-faq-list .item-5 p {
    color: var(--brown1); 
}


#page-programmes .pb-left,
#page-programmes  .pb-right {
    flex: 1;
}

#page-programmes .pb-left {
    display: flex;
}

.ban-faq-list {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.ban-faq-list .item {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.ban-faq-list .item.active {
    flex: 11; /* bigger portion */
}

.ban-faq-list .item:not(.active) {
    flex: 1;
}

.ban-faq-list .item-body {
    flex: 1;
    overflow: auto;
}

.ban-faq-list .item-body {
    display: none;
}

.ban-faq-list .item.active .item-body {
    display: block;
}

#page-programmes .pb-left {
    flex: 0 0 30%;
}

#page-programmes .pb-right {
    flex: 0 0 70%;
}


#page-programmes #intro-3 .sec-content {
    display: flex;
}

#page-programmes #intro-3 .sec-left,
#page-programmes #intro-3 .sec-right {
   width: 50%;
}



#page-participant #intro-1 { 
    background: var(--yellow1);
}

#page-participant .sec-bottom .sec-content,
#page-participant .sec-top {
    display: flex;
    gap: 50px;
}

#page-participant .sec-bottom .sec-content .sec-right,
#page-participant .sec-bottom .sec-content .sec-left,
#page-participant .sec-top .st-right,
#page-participant .sec-top .st-left {
    width: 50%;
}

#page-participant .sec-top .st-right .form-group {
    display: flex;
}

#page-participant button {
    background: var(--blue1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--blue1);
    height: 48px;
    width: 48px;
}

#page-participant input {
    width: 100%;
    background: var(--yellow1);
    border: 3px solid var(--brown1);
    height: 48px;
    color: var(--brown1);
    font-family: 'inter-b';
    outline: none;
    padding: 10px 20px;
    font-size: 18px;
    box-sizing: border-box;
}

#page-participant .cat-list ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 50px;
    margin-top: 13px;
}

#page-participant .cat-list a {
    font-size: 18px;
    font-family: 'ave-b';
    text-transform: uppercase;
    text-decoration: none;
    color: var(--brown1);
}

.table-custom {
    color: var(--brown1);
    border-collapse: collapse;
    width: 100%;
}

.table-custom tr th {
    text-align: left;
    font-family: 'inter-b' !important;
    font-size: 18px;
}

.table-custom tr th, 
.table-custom tr td {
    border-bottom: 1px solid var(--brown1);
    vertical-align: top;
    padding: 10px 0 10px;
}

 
.table-custom tr .exh-brand-top {
    display: flex;
    gap: 10px;
}

.exh-list .cat,
.box-table .bt-body .exh-cat,
.table-custom tr .exh-cat {
    background: var(--green1);
    color: var(--brown1);
    font-family: 'ave-b';
    font-size: 18px;
    width: max-content;
    padding: 4px 11px;
    text-transform: uppercase;
}

.table-custom tr .num {
    width: 15%;
}

.table-custom tr .detail {
    width: 70%;
}

.table-custom tr .hall,
.table-custom tr .num,
.table-custom tr td .exh-name {
    font-size: 24px;
    font-family: 'ave-b';
}

.exh-list .prev-img img {
    width: 100%;
}

.exh-list .hall {
    font-family: 'ave-b'!important;
    color: var(--brown1);
}

.exh-list .hall .hall-text {
    letter-spacing: 1px;
    font-size: 18px;
}

.exh-list .hall .name {
    font-size: 30px;
}

.box-table .bt-head {
    display: flex;
    text-align: left;
    font-family: 'inter-b' !important;
    font-size: 18px;
}

.box-table .bt-body {
    display: flex;
}

.box-table .bt-head, 
.box-table .bt-body {
    border-bottom: 1px solid var(--brown1);
    padding: 10px 0 10px;
}

.box-table .bt-body:last-child {
    border-bottom: unset !important;
}

.box-table .bt-body .exh-brand-top {
    display: flex;
    gap: 10px;
}

.box-table .num {
    width: 15%;
}

.box-table .detail {
    width: 70%;
}

.box-table .bt-body .hall,
.box-table .bt-body .num,
.box-table .bt-body .exh-name {
    font-size: 24px;
    font-family: 'ave-b';
}

.exh-list .pi-link a {
    font-family: 'ave-b';
    text-decoration: none;
    font-size: 18px;
    color: var(--brown1);
    display: flex;
    gap: 10px;
    align-items: center;
}

.exh-list .prev-info {
    display: flex;
    margin-top: 20px;
}

.exh-list .pi-left {
    width: 35%;
}

.exh-list .pi-right {
    width: 65%;
}



.ban-faq-list .item-body {
    display: none;
}

.ban-faq-list .item.active .item-body {
    display: block;
}

.event-location.mobile {
    display: none;
}

#program-banner-mobile {
    display: none;
}

.ban-faq-list .item-body-img{
    display: none;
}


.foot-v2 {
    padding: 88px 0;
    background: var(--green1);
}

.foot-v2 .footer-desc {
    margin-bottom: 25px;
}

.foot-v2 .container2 {
    width: 78%;
    margin: 0 auto;
    max-width: 1920px;
}

.foot-v2 .container2 .fv2-top {
    display: flex;
}

.foot-v2 a {
    color: var(--brown1);
    text-decoration: none;
}

.foot-v2 .container2 .fv2-tl {
    flex-wrap: wrap; row-gap: 0;
}

#foot-subs {
    width: 100%;
}

.foot-v2 .container2 .fv2-tl ,
.foot-v2 .container2 .fv2-tr {
    width: 50%;
    display: flex;
    gap: 50px;
}


.banner-item .ban-second-logo img {
    width: 500px;
    max-width: 90%;
    margin: 20px auto 0;
}

#page-home #intro-2 {
    padding: 60px 0 0;
}

#page-home #intro-2 .sec-top .container {
    display: flex;
    gap: 40px;
    padding-bottom: 60px;
}

#page-home #intro-2 .sec-left {
    width: 40%;
}

#page-home #intro-2 .sec-right {
    width: 60%;
}

.video-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

#page-home #intro-2 .sec-bottom { 
    background: var(--grey6);
    padding: 60px 0;
}

.success-number-list {
    display: flex;
    text-align: center;
    justify-content: space-between;
    width: 90%;
    margin: 30px auto 0;
}

.success-number-list i {
    font-size: 80px;
    color: var(--brown1);
}

.success-number-list .item-img {
    margin: 40px 0 10px;
}

.success-number-list .item {
    width: 25%;
} 



.featured-exh {
    display: flex;
    flex-wrap: wrap; 
}

.featured-exh a {
    text-decoration: none;
}

.featured-exh .item {
    width: 50%;
    box-sizing: border-box;
    padding: 40px 60px;
}

.featured-exh .item.bg-iffina {
    background: var(--green1);
}
.featured-exh .item.bg-ifmac {
    background: var(--grey4);
}
.featured-exh .item.bg-ihf {
    background: var(--red2);
}
.featured-exh .item.bg-itj {
    background: var(--black3);
}

.featured-exh .item .item-top,
.featured-exh .item .item-bottom {
    display: flex;
    gap: 40px;
}

.featured-exh .item .item-bottom {
    margin-top: 40px;
}

.featured-exh .item .item-cta,
.featured-exh .item .item-img {
    display: flex;
    justify-content: center;
    width: 45%;
}

.featured-exh .item .item-title,
.featured-exh .item .item-info {
    width: 55%;
}

.featured-exh .item-img > div {
    width: 100%;
    height: 141px;
    background-position: top !important;
    background-size: contain !important;
}

.featured-exh .item-cta a {
    font-size: 16px;
    background: var(--white1) !important;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--black3);
    width: 170px;
    max-width: 100%;
}

.featured-exh .item-cta a:hover {
    background: var(--black3) !important;  
    transition: .3s ease-in;
    color: var(--white1);
}

.featured-exh .main-title.white {
    color: var(--white1) !important;
}

.featured-exh .main-title {
    font-size: 24px;
    font-family: 'inter-b';
    color: var(--black3);
    margin-bottom: 15px;
}

.featured-exh .item-desc p {
    color: var(--black3);
}

.featured-exh .item-info {
    font-size: 16px;
    font-family: 'inter-b';
    color: var(--black3);
} 

.featured-exh .item-light,
.featured-exh .item-light .item-title,
.featured-exh .item-light .item-info,
.featured-exh .item-light p {
    color: var(--white1) !important;
}

.featured-exh .bg-itj .item-cta a:hover {
    background: var(--green1) !important;
    color: var(--black3) !important;
}


#featured-exh {
    padding: 60px 0px 0px;
}


#page-about #about-intro {
    text-align: center;
    padding: 60px 0;
}

#page-about #about-intro .sec-in {
    width: 70%;
    margin: 0 auto;
}

#page-about #about-intro .sec-subheading {
    font-size: 22px;
    line-height: 30px;
}

#page-about #about-intro .sec-subheading p {
    font-family: 'inter-b' !important;
}

#about-intro .sec-info {
    display: flex;
    color: var(--brown1);
    justify-content: space-between;
    margin-top: 50px;
}

#about-intro .sec-info .item {
    width: 30%;
    display: flex;
}

#about-intro .sec-info .icon {
    width: 30%;
}

#about-intro .sec-info .icon i {
    font-size: 50px;
}

#about-intro .sec-info .info-text {
    text-align: left;
    width: 70%;
}

#about-intro .sec-info .info-text .main {
    font-family: 'ave-b';
    font-size: 30px;
    margin-top: 5px;
}


.ban-faq-list .item.active .icon .plus {
    display: none;
}

.cat-item {
    padding-bottom: 120px;
}

.cat-bg {
    position: relative;
}

.cat-name {
    left: 0;
    min-width: 100%;
    min-height: 150px;
    display: flex;
    padding: 20px;
    align-items: center;
    box-sizing: border-box;
}

.cat-item:hover .cat-name {
   opacity: 0;
}

.cat-item:hover .cat-desc {
    opacity: 1;
    transition: .3s ease-in;
}

.cat-desc {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    opacity: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.cat-desc .main {
    font-size: 30px;
    line-height: 38px;
    font-family: 'ave-b';
}

.cat-item.item-1 .cat-desc,
.cat-item.item-1 .cat-name {
    background: var(--yellow1);
    color: var(--brown1) !important;
}

.cat-item.item-2 .cat-desc,
.cat-item.item-2 .cat-name {
    background: var(--green2);
    color: var(--green1) !important;
}

.cat-item.item-3 .cat-desc,
.cat-item.item-3 .cat-name {
    background: var(--orange1);
    color: var(--yellow1) !important;
}

.cat-item.item-4 .cat-desc,
.cat-item.item-4 .cat-name {
    background: var(--brown1);
    color: var(--blue1) !important;
}

#maps {
    width: 100%;
    height: 500px;
}

#maps iframe {
    width: 100% !important;
    height: 100% !important;
}

#page-programmes .sec-cta {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

#page-exhibitor-profile .sec-in {
    width: 80%;
    margin: 0 auto;
}

#page-exhibitor-profile ul,
#page-exhibitor-profile ol {
    padding-left: 20px;
}


#page-why-exhibit .sec-bottom {
    width: 80%;
    margin: 40px auto 20px;
    display: flex;
    gap: 50px; 
}

#page-why-exhibit .benefit-list {
    width: 50%;
}

#page-why-exhibit .benefit-list .item {
    display: flex;
    gap: 30px; 
    margin-bottom: 30px;
}

#page-why-exhibit .benefit-list .icon {
    width: 15%;
}

#page-why-exhibit .benefit-list .desc-text {
    width: 85%;
}

#page-why-exhibit .benefit-list .icon {
    width: 90px;
    height: 90px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--yellow1);
    color: var(--brown1);
    border-radius: 50%;
}

#page-why-exhibit .benefit-list .icon img {
    width: 70px;
}

#page-why-exhibit .benefit-list .main {
    font-family: 'inter-b';
    font-size: 22px;
    margin-bottom: 5px;
}

#page-why-exhibit .sec-cta {
    display: flex;
    justify-content: center;
}


.form-group-wrapper {
    display: flex;
    gap: 30px;
}

.form-group-wrapper .form-group {
    width: 50%;
}


.container2 {
    width: 78%;
    margin: 0 auto;
    max-width: 1920px;
} 

.error {
    color: var(--red1);
    font-size: 14px;
}

.msg-success {
    color: green;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block; 
    font-size: 16px; 
    color: var(--black2);
    font-family: 'inter-b';
}

.form-group select,
.form-group input {
    width: 100%;
    border: unset;
    background: var(--grey4);
    height: 40px;
    padding: 0 20px;
    margin-top: 10px;
    box-sizing: border-box;
}

.form-cta button {
    background: var(--yellow1);
    color: var(--brown1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 40px;
    min-width: 120px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}

.form-cta button:hover {
    background: var(--black2);
    color: var(--blue1);
    transition: .3s ease-in;
}

.form-desc {
    font-size: 12px;
    line-height: 18px;
}

.form-check {
    display: flex;
    gap: 10px; 
    align-items:start;
} 

button:disabled {
    background: var(--grey3) !important;
    opacity: .5;
    cursor: no-drop;
}

button:disabled:hover {
    color: var(--black2) !important;
    opacity: .5;
} 

#page-subscribe .sec-top {
    display: flex;
    gap: 60px;
}

#page-subscribe .sec-top .sec-title {
    width: 25%;
}

#page-subscribe .sec-top .sec-desc {
    width: 75%;
}


.logo-list .bg {
    width: 80%;
    margin: 0 auto;
    height: 80px;
    background-position: center !important; 
    background-size: contain !important;
}

.icons-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-family: 'inter-b' !important;
    row-gap: 30px;
}

.icons-list .icon-text {
    margin-top: 15px;
}

.icons-list .bg {
    width: 100px; 
    margin: 0 auto;
    height:100px;
    background-position: center !important; 
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-color: var(--yellow1);
    border-radius: 50%;
}


.sec-banner {
    width: 100%;
    height: 500px;
    background-size: cover !important;
    background-position: top !important;
    display: flex;
    justify-content: end;
    align-items: end;
}

.sec-banner .sb-inner {
    background: rgba(238, 238, 34, .8);
    width: max-content;
    padding: 20px 40px;
}

.sec-banner .sb-text {
    font-family: 'ave-b';
    font-size: 50px;
    color: var(--brown1);
}

.mc-list .mc-row .mc-loop {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #E6E6E6;
}

.mc-list .mc-row .mc-img img {
    width: 100%;
    max-width: 350px;
    border-radius: 0;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    aspect-ratio: 3 / 2;
}

.mc-list .mc-row .mc-img {
    width: 31%;
    max-width: 350px;
}

.mc-list .mc-row .mc-detail {
    width: 69%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

#page-media-cover #intro-1 .sec-inner {
    width: 78%;
    margin: 40px auto 0; 
}

.mc-media-title a {
    font-family: 'inter-b';
    font-size: 25px;
    text-decoration: none;
    color: var(--brown1);
}

.mc-media-btn {
    margin-top: 10px;
}

.btn-t1-sm {
    font-size: 16px;
    height: 40px;
}


.mn-main-wrp .mn-row .mn-loop {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #E6E6E6;
}

.mn-row .mn-loop .mn-date-wrp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100px;
    min-height: 100px;
    padding: 10px;
    background: #F0F0F0;
}

.mn-main-wrp .mn-detail-wrp {
    width: 100%;
    max-width: calc(100% - 100px);
    padding-left: 20px;
}

.mn-row .mn-loop .mn-date-wrp .day {
    color: var(--brown1);
    font-size: 2.25em;
    line-height: 1.25;
    letter-spacing: 0;
    margin: 0 0 3px 0;
    font-weight: 600;
    width: 100%;
    text-align: center;
    display: block;
}

.mn-row .mn-loop .mn-date-wrp .year {
    color: var(--brown1);
    font-size: 0.875em;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 400;
    width: 100%;
    display: block;
    text-align: center;
}

.mn-row .mn-title a {
    font-family: 'ave-b';
    font-size: 22px;
    color: var(--brown1);
    text-decoration: none;
}

.mn-row .mn-content {
    margin-top: 10px;
}

.mn-row .mn-btn {
    margin-top: 10px;
}

#page-media-news #intro-3 .sec-inner,
#page-media-news #intro-2 .sec-inner,
#page-media-news #intro-1 .sec-inner {
    width: 78%;
    margin: 40px auto 0;
}

.mn-image-preview::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.mn-image-preview h2 {
    position: relative;
    z-index: 3;
}

.mn-image-preview {
    position: relative;
    width: 100%;
    min-height: 200px;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}


.tab-gallery {
    display: flex;
    gap: 10px;
}

.tab-gallery .item a.active {
    background-color: var(--yellow1);
    color: var(--brown1);
    opacity: 1;
}

.tab-gallery .item a {    
    background: var(--grey3);
    color: var(--brown1);
    opacity: .5;

    text-decoration: none;
    font-family: 'ave-b';
    width: 120px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tab-gallery .item a:hover {
    opacity: 1;
}

.content-gallery.active {
    display: grid;
}

.content-gallery {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.content-gallery .bg-preview-img {
    width: 100%;
    height: 250px;
    background-size: cover !important;
    background-position: center !important;
}


.back-btn img {
    transform: rotate(180deg);
}

.back-btn:hover {
    color: var(--orange1);
    transition: .3s ease-in;
}

.back-btn {
    color: var(--brown1);
    font-size: 18px;
    display: flex;
    gap: 10px;
    text-decoration: none;
}

.media-detail .head .bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
}

.media-detail .head .md-date {
    width: 50%;
    display: flex;
    color: var(--brown1);
    gap: 10px;
    font-size: 18px;
}

.media-detail .head .md-share ul {
    width: 50%;
    display: flex;
    color: var(--brown1);
    font-size: 18px;
    list-style-type: none;
    gap: 15px;
}

.media-detail .head .md-share i {
    color: var(--brown1);
}

.media-detail .head .md-share ul a:hover {
    color: var(--orange1);
    transition: .3s ease-in;
}

.media-detail .head .md-title {
    width: 100%;
}

.media-detail .head .md-img {
    width: 100%;
    text-align: center;
}

.media-detail .head .md-img img {
    width: 800px !important;
    max-width: 90% !important;
}

.md-btn-next {
    text-align: right;
}

.md-btn-prev .arrow img {
    transform: rotate(180deg);
}

.md-nav {
    width: 50%;
}

.md-nav a {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    column-gap: 15px;
    row-gap: 10px;
    text-decoration: none;
    color: var(--brown1) !important; 
}

.md-nav a:hover {
    color: var(--orange1);
    transition: .3s ease-in;
}

.md-nav .arrow {
    width: 20%;
}

.md-nav .text {
    width: 75%;
}

.md-nav .btn-title {
    width: 100%;
    font-size: 22px;
}

.md-nav .text {
    font-family: 'inter-b' !important;
}

.md-nav .arrow {
    border: 1px solid var(--brown1);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.media-detail .foot {
    margin: 60px 0 60px;
    display: flex;
    justify-content: space-between;
}


#page-about #introduction {
    padding: 60px 0 30px;
}

#page-about #introduction .sec-inner {
    display: flex;
}

#page-about #introduction .sec-left {
    width: 20%;
}

#page-about #introduction .sec-right {
    width: 80%;
}

#page-about #introduction .sec-right .hl-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-close-wrap {
    margin-top: 27px;
}

.menu-close-wrap img {
    transform: rotate(45deg);
    width: 26px;
}

 