*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background: #1F3B6B;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit
}

img {
    object-fit: cover;
    object-position: 50% 50%;
    vertical-align: middle;
    width: 100%
}

::selection {
    background: #0D2135;
    color: #fff
}

::-moz-selection {
    background: #0D2135;
    color: #fff
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .3);
    background-color: #f5f5f5
}

::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f5
}

::-webkit-scrollbar-thumb {
    background: #0D2135
}

p {
    line-height: 24px
}

h1 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
}


.container {
    position: relative;
    max-width: 1230px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
}
.container-fluid {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
}

.text-center{
    text-align: center;
}


/*header menu*/
.header {
    min-height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}
.fix {
    position: fixed;
    background: rgb(19 36 66 / 90%);
    top: 0;
    width: 100vw;
    animation: smoothScroll .5s forwards;
    box-shadow: 1px 1px 8px rgb(0 0 0 / 30%);
    z-index: 99
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-50px)
    }
    100% {
        transform: translateY(0)
    }
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}
.logo-container a{
    position: relative;
}

.logo-container img{
    width: 170px;
    height: auto;
}

.navbar {
    align-items: center;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all .25s ease-in
}

.nav-menu li {
    position: relative;
    text-align: center;
}

.nav-menu li a {
    margin: 0 30px;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    transition: 0.3s all ease;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.nav-menu li:last-child a{
    margin-right: 0px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 0;
    background-color: #2974EC;
    transition: width 0.3s ease;
}

.nav-menu li:hover a::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li:hover a,
.nav-menu li a.active {
    font-weight: bold;
    color: #2974EC;
}

.burger{
    display: none;
}


/*main*/
.main {
    position: relative;
    overflow: hidden;
}

/*homepage*/

/*hero slider*/
#hero_home{
    position: relative;
}
.hero-container {
    height:100vh;
    width:100%;
    background:transparent;
    display:flex;
    align-items: end;
    justify-content: center;
}

.hero-container::after {
      width:100%;
      height:100vh;
      content: '';
      position:absolute;
      z-index:3;
      top:0;
      left:0;
      background: linear-gradient(
        to bottom,
        rgba(31, 59, 107, 1) 2%,
        rgba(31, 59, 107, 0) 20%,
        rgba(31, 59, 107, 1) 98%,
        rgba(31, 59, 107, 1) 100% 
    );
}

.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-container video {
      width:100%;
      height:100vh;
      position:absolute;
      top:0;
      left:0;
      z-index:0;
      object-fit:cover;
}

.hero-container .caption-hero {
      position:relative;
      z-index:5;
      text-align:center;
      color:#fff;
      margin-bottom: 100px;
}

.hero-container .caption-hero h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    text-transform: uppercase;
}

.scroll-down{
    cursor: pointer;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    height:50px;
    width:auto;
    -webkit-animation:bounce 2s ease infinite;
    animation: bounce 2s ease infinite;
}
.scroll-down img{
    width: auto;
    height: 50px;
}

@-webkit-keyframes bounce{
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-15px);}
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-15px);}
}

/*video home*/
#video_home{
    margin-bottom: 100px;
}
#video_home .container-fluid{
    max-width: 1600px;
    margin: 0 auto;
    overflow: visible;
}
.video-slider{
    padding-bottom: 120px;
    overflow: visible;
}
.video-slider .swiper-slide{
    height: auto;
}
.video-slider .swiper-slide .video-img{
    height: auto;
    width: 100%;
    object-fit: contain;
}
.video-slider .swiper-pagination{
    bottom: 50px;
}
.video-slider .swiper-pagination-bullet{
    border-radius: 0px;
    width: 15px;
    height: 5px;
    background-color: #2974EC;
    opacity: 1;
}
.video-slider .swiper-pagination-bullet-active{
    background: #fff;
}

.video-bg {
    position: relative;
}

.video-bg img {
    position: relative;
}

.video-btn-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-btn-play img {
    width: 100px;
    height: 100px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    object-fit: contain;
    overflow: visible;
}

.video-btn-play img:hover {
    transform: scale(1.1);
    -webkit-filter: brightness(.8);
    filter: brightness(.8);
}

.video-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0px;
}

.video-header-left h2{
    font-size: 30px;
    line-height: 34px;
    font-weight: 400;
}

.video-header-right h2{
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: #2974EC;
    text-align: right;
}


/*modal video*/
.modal {
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    opacity: 0;
    position: fixed;
    text-align: center;
}

.modal.is-visible {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.modal-wrapper {
    position: fixed;
    z-index: 9999;
    box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}

.modal-transition {
    transition: all 0.3s 0.12s;
    transform: translateY(-10%);
    opacity: 0;
}

.modal.is-visible .modal-transition {
    transform: translateY(0);
    opacity: 1;
}

.modal-content {
    position: relative;
}

.modal-content button {
    background: transparent;
    padding: 5px 10px;
    font-weight: bold;
    color: #ffffff;
    font-size: 16px;
}

.modal-close {
    position: absolute;
    top: -25px;
    right: -5px;
    border: 0;
    cursor: pointer;
}

.ratio iframe {
    width: 800px;
    height: 450px;
}

.modal-close img {
    width: 20px;
}

.modal-content>*:first-child {
    margin-top: 0;
}

.modal-content>*:last-child {
    margin-bottom: 0;
}

.mlf-btn{
    display: block;
    width: fit-content;
    padding: 5px 15px;
    color: #fff;
    background-color: #2974EC;
    font-size: 20px;
    line-height: 30px;
    margin: 20px auto;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.mlf-btn:hover{
    transform: scale(1.1);
}

/*sustainable*/
#sustainable_home{
    position: relative;
    margin: 50px 0px;
}

#sustainable_home .container{
    overflow: visible;
}

.sustainable-title h2{
    font-size: 30px;
    line-height: 44px;
    font-weight: 400;
    margin-bottom: 50px;
}
.container-sustainable{
    display: flex;
    gap: 30px;
}

.sustainable-txt {
    flex: 1;
    text-align: justify;
    font-size: 15px;
    line-height: 20px;
}

.sustainable-txt h4{
    font-size: 26px;
    line-height: 34px;
    font-weight: 400;
    text-align: left;
    margin: 40px 0px;
}

.sustainable-txt .mlf-btn{
    margin-left: 0px;
}

.sustainable-img{
    flex: 1.5;
    text-align: center;
}

.sustainable-img img{
    width: 100%;
    height: auto;
}

/*acara home*/

#acara_home{
    position: relative;
    margin-bottom: 80px;
}

#acara_home .container{
    overflow: visible;
}

.acara-title{
    border-top: 1px solid #122C4C;
    padding-top: 80px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 80px;
}

.acara-title h2{
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
}

    .acara-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        width: 100%;
    }
    .acara-item {
        flex: 1;
        min-width: 250px;
        height: 620px;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: start;
        padding: 40px 20px;
        border-radius: 0px;
        text-align: left;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .acara-item:hover{
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    .acara-item a{
        display: block;
        height: 100%;
    }
    .acara-item h2 {
        font-size: 30px;
        font-weight: 400;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .acara-item p {
        font-size: 12px;
        line-height: 1.5;
    }
    .acara-item span {
        font-size: 15px;
        line-height: 1.5;
        position: absolute;
        width: 85%;
        top: 35%;
    }
    .acara-item-footer{
       position: absolute;
        width: 85%;
        bottom: 20%;
    }
    .acara-item-footer span{
        position: relative;
    }
    .acara-item:nth-child(1) {
        background-image: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/acara-1-bg.png');
    }
    .acara-item:nth-child(2) {
        background-image: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/acara-2-bg.png');
    }
    .acara-item:nth-child(3) {
        background-image: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/acara-3-bg.png');
    }
    .acara-item:nth-child(4) {
        background-image: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/acara-4-bg.png');
    }

/*submit award home*/
#submit_home{
    position: relative;
    background: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/award-home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 800px;
}

#submit_home::after {
      width:100%;
      height:100%;
      content: '';
      position:absolute;
      z-index:0;
      top:0;
      left:0;
      background: linear-gradient(
        to bottom,
        rgba(31, 59, 107, .3) 0%,
        rgba(31, 59, 107, .5) 10%,
        rgba(31, 59, 107, 1) 98%,
        rgba(31, 59, 107, 1) 100% 
    );
}

.submit-home-container h2{
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 20px;
}

.submit-home-container p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 80px;
}

.submit-home-period p{
    font-size: 18px;
    border-bottom: 1px solid #fff;
    width: 25%;
    margin: 80px auto 20px;
    padding-bottom: 30px;
}

.submit-home-period h3{
    font-size: 32px;
    font-weight: 400;
    margin-top: 20px;
}

/*categories home*/
#categories_home{
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}
#categories_home .container{
    overflow: visible;
}
.categories-home-container{
    border-top: 1px solid #122C4C;
    position: relative;
    padding-top: 130px;
    z-index: 1;
}

.categories-home-container h2{
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 20px;
}

.categories-home-container p{
    font-size: 16px;
    line-height: 24px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

/*timeline home*/
.timeline-home-container {
    position: relative;
    margin: 150px auto;
    margin-bottom: 0px;
    border-top: 1px solid #122C4C;
}

.timeline-home-container h2{
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 20px;
    position: absolute;
    right: 0;
    top: 200px;
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.event {
    position: relative;
    padding: 15px 20px;
    margin: 40px 0;
    width: 35%;
}

.event-txt-container{
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.event-txt-container:hover{
    transform: scale(1.1);
}

.event-title {
    font-size: 26px;
    line-height: 40px;
    font-weight: bold;
}

.event-desc {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding-top: 20px;
    margin-top: 20px;
}

.event-date {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 20px;
    margin-top: 20px;
}

.event-desc::before,
.event-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 37%;
    width: 100px;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
}

.event::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 70%;
    width: 2px;
    height: 150px;
    background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8) 3px, transparent 3px, transparent 10px);
    z-index: -1;
    transform: rotate(320deg);
}

.event:nth-child(1)::after {
    left: 70%;
}
.event:nth-child(2)::after {
    left: 70%;
}
.event:nth-child(3)::after {
    left: 62%;
}
.event:nth-child(4)::after {
    left: 45%;
}
.event:nth-child(5)::after {
    display: none;
}

.event:nth-child(1) {
    align-self: flex-start;
    z-index: 1;
}
.event:nth-child(1)::before {
    content: '';
    position: absolute;
    top: -380px;
    left: -285px;
    width: 1000px;
    height: 1000px;
    background: url(https://t-8.tstatic.net/matalokalfest/assets_2025/img/timeline-1.png);
    background-size: 1000px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}
.event:nth-child(2) {
    align-self: flex-start;
    transform: translateX(50%);
    z-index: 1;
}
.event:nth-child(3) {
    align-self: flex-start;
    transform: translateX(110%);
    z-index: 1;
}
.event:nth-child(4) {
    align-self: flex-start;
    transform: translateX(170%);
    z-index: 1;
}
.event:nth-child(5) {
    align-self: flex-end;
    transform: translateX(20%);
}
.event:nth-child(5)::before {
    content: '';
    position: absolute;
    top: -285px;
    right: -132px;
    width: 700px;
    height: 700px;
    background: url(https://t-8.tstatic.net/matalokalfest/assets_2025/img/timeline-2.png);
    background-size: 700px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}








/*article home*/
#article_home{
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 150px;
}
.latest-row h2{
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
}
.latest-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin: 0px 0px 80px 0px;
    position: relative;
}
.latest-card {
    width: calc(33.333% - 40px);
    background-color: transparent;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}
.latest-txt-container{
    padding: 20px 20px 20px 0px;
    transition: 0.3s ease;
}
.latest-heading{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-txt{
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-img-container {
    position: relative;
    overflow: hidden;
}

.latest-img-container img {
    width: 100%;
    height: 200px;
    transition: transform 0.3s ease;
}

.latest-img-container:hover img {
    transform: scale(1.2);
}
.latest-info {
    margin: 10px 0px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 20px;
    transition: 0.3s ease;
}

/*categories page*/
.main-categories{
    background: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/bg-categories.png');
    background-size: cover;
    background-repeat: no-repeat;
}
#categories_header {
    position: relative;
    background: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/header-categories.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#categories_header::after {
    width: 100%;
    height: 100vh;
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(31, 59, 107, 1) 2%,
        rgba(31, 59, 107, 0.5) 20%,
        rgba(31, 59, 107, 1) 98%,
        rgba(31, 59, 107, 1) 100%
    );
}

#categories_header .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    height: 100%;
}

#categories_header .scroll-down {
    position: absolute;
    bottom: 100px;
    left: 48%;
    z-index: 2;
}

.categories-header-txt{
    margin-top: -100px;
}

#categories_header h2{
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 40px;
}

#categories_header p{
    font-size: 18px;
    line-height: 30px;
}

/*categories section*/
#categories_tab{
    position: relative;
    padding: 80px 0px;
    padding-bottom: 0px;
    background: linear-gradient(
        to bottom,
        rgba(31, 59, 107, 1) 2%,
        rgba(31, 59, 107, .5) 20%,
        rgba(31, 59, 107, 0) 98%,
        rgba(31, 59, 107, 0) 100% 
    );
}

/*categories tab*/
.tabs-container {
    width: 100%;
}

.tabs-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs {
    display: block;
    width: 100%;
    background: transparent;
    border-radius: 10px;
}

.tabs>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.tabs>ul li {
    display: block;
}

.tabs>ul li a,
.tabs>ul li a:visited {
    display: flex;
    border-bottom: none;
    text-decoration: none;
    color: #fff;
    padding: 60px 0px;
    transition: all 0.2s ease-in-out;
    word-wrap: break-word;
    opacity: .5;
}

.tabs>ul li a:hover,
.tabs>ul li a:focus,
.tabs>ul li a:active {
    border-bottom: none;
    outline: 0;
    opacity: 1;
}

.tabs>ul li a.active-tab {
    color: #fff;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
    font-weight: bold;
    opacity: 1;
}

.tabs>ul li a:hover:not(.active-tab) {
    color: #fff;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
    font-weight: bold;
}

.tabs>ul li a>span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tabs>ul li a>span.tab-label {
    display: none;
}

.tabs section {
    width: 100%;
    display: none;
    word-wrap: break-word;
}

.tabs section>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s, transform 0.2s;
}

.tabs section.active-tab {
    display: block;
}

.tabs section.active-content>* {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
}

.tabs>ul {
    width: 100%;
}

.tabs>ul li a {
    flex-wrap: wrap;
}

.tabs>ul li a>span {
    width: 100%;
}

.tabs>ul li a>span.tab-label {
    width: 100%;
    display: block;
    font-size: 24px;
    line-height: 34px;
    text-align: left;
}
.tabs>ul li .active-tab>span.tab-label {
    width: 100%;
    display: block;
    font-size: 28px;
    line-height: 34px;
    text-align: left;
}

.tabs section {
    width: 100%;
}

.tab-line {
    border-bottom: 2px solid #ffffff;
    width: 192px;
    padding-top: 20px;
    margin-bottom: 30px;
}

/*categories accord*/
.catFaq {
    position: relative;
    z-index: 1;
}
.catFaq h3{
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
}
.catFaq p{
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: .5;
}
.catFaq a {
    color: #fff;
    text-decoration: underline 
}
.catFaq ol, .catFaq ul {
    padding-left: 15px 
}
.catFaq ol {
    list-style-type: decimal 
}
.catFaq ul {
    list-style-type: disc 
}
.catFaq-title {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-right: 20px;
}
.catFaq-content {
    display: block;
    padding: 10px 0px;
    line-height: 1.5;
    font-size: 20px;
}
.catFaq-item {
    position: relative;
    background: transparent; 
}
.catFaq-item:nth-child(2) {
    border-radius: 8px 8px 0 0 
}
.catFaq-item:last-child {
    border-radius: 0 0 8px 8px 
}
.catFaq-item.open .icon-show {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); 
}
.catFaq-item.open .catFaq-content {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    padding-bottom: 40px 
}
.catFaq-item.close .catFaq-content {
    height: 0;
    -webkit-transition: height 1s ease-out;
    transition: height 1s ease-out;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    float: left 
}
.catTrig {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    padding: 20px 0px;
    background: transparent;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
}
.icon-show {
    position: relative;
    width: 24px;
    height: 24px;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease 
}

.icon-show:after {
    position: absolute;
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    top: 50%;
    right: 8px;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0 
}

/*table*/
.table-cat table{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-spacing: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.table-cat tr td:last-child{
    text-align: right;
}
.table-cat td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.catFaq-info{
    color: rgba(255, 255, 255, .5);
    margin: 60px 0px;
}
.catFaq-info p{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

/*table timeline*/
#award_timeline{
    background: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/award-timeline.png');
    background-repeat: no-repeat;
    background-size: 750px;
    background-position: center top;
    position: relative;
    margin-bottom: 150px;
    padding-top: 80px;
}
.table-timeline {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin-bottom: 150px;
}

.table-timeline .container {
    overflow: visible;
}

.table-timeline table {
    width: 100%;
    border-spacing: 10px;
}

.table-timeline tr{
    position: relative;
}

.table-timeline td {
    font-size: 22px;
    font-weight: 400;
    padding: 40px 0px;
    vertical-align: top;
    position: relative;
}

.table-timeline tr::after {
    content: "";
    position: absolute;
    left: -50%;
    bottom: 0;
    width: 200%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.table-timeline tr td:last-child {
    text-align: right;
}

/*news page*/
.hero-art-img{
    text-align: center;
    position: relative;
    margin: 100px auto;
}

.hero-art-img img{
    width: 100%;
    height: auto;
}

#list_article{
    position: relative;
    margin-bottom: 100px;
}

.list-article-heading h2{
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}
.list-article-heading p{
    font-size: 16px;
    line-height: 22px;
    color: rgba(255, 255, 255, .5);
    text-align: center;
}

.latest-art-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 20px 0px 0px 0px;
    position: relative;
    padding-top: 40px;
}

.pagination ul {
    display: flex;
    gap:20px;
    overflow: hidden;
    padding: 0 5px 5px 0;
    margin: 0;
    width: 100%;
    justify-content: center;
    margin-top: 50px;
}

.pagination ul li a{
    font-weight: bold;
}

.pagination ul li #pagecurrent{
    color: #2974EC;
}

/*make impact page*/

#impact{
    margin: 100px auto 100px;
}
#impact h2{
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 80px;
    text-align: center;
    border-top: 1px solid #122C4C;
    padding-top: 80px;
}
.main-impact{
    background: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/impact-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

#impact .container{
    overflow: visible;
}

.impact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.impact-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.impact-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.impact-item h4 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
}

.impact-item p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.4;
  position: relative;
}

.impact-item p::after {
  content: '';
  display: block;
  width: 100px;
  height: 1px;
  background-color: #fff;
  margin-top: 30px;
}

.impact-item span {
  font-size: 14px;
  line-height: 1.4;
  color: #ccc;
}

.impact-item:nth-child(1){
    background-image: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/impact-btn-1.png');
}

.impact-item:nth-child(2){
    background-image: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/impact-btn-2.png');
}

.impact-item:nth-child(3){
    background-image: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/impact-btn-3.png');
}

.impact-item:nth-child(1) {
  flex: 1 1 100%;
}

.impact-item:nth-child(2),
.impact-item:nth-child(3) {
  flex: 1 1 calc(50% - 10px);
}

/*register award page*/
#register{
    background: linear-gradient(to bottom, rgba(31, 59, 107, 1) 2%, rgba(31, 59, 107, 0) 20%, rgba(31, 59, 107, 1) 98%, rgba(31, 59, 107, 1) 100%);
}
.main-award-register{
    background: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/regis1-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.form-container {
    max-width: 800px;
    margin: 150px auto;
}

.form-container h2{
    font-size: 30px;
    line-height: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}
.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    background: transparent;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    outline: none;
}
.form-group input:-webkit-autofill,
.form-group select:-webkit-autofill,
.form-group textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form-group input:-webkit-autofill:focus,
.form-group select:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: #fff !important;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}
.form-container button{
    appearance: none;
    border: none;
    cursor: pointer;
    margin: 50px auto;
    padding: 5px 80px;
}
.form-container button:disabled {
    background: #999;
    cursor: not-allowed;
}
.form-divider{
    margin: 100px 0;
    border: 1px solid #122C4C;
}
.terms-container {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 15px;
}
.terms-container input {
    margin-right: 20px;
    width: 20px;
    height: 20px;
}

.terms-container a{
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

/*select container*/
.select2-results{
    margin: 20px auto;
}
.select2-container--default .select2-selection--single {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    padding: 0px;
    color: #000;
    width: 100%;
    box-sizing: border-box;
}

.select2-selection__rendered {
    color: rgba(255, 255, 255, .7) !important;
}

.custom-dropdown .select2-results__option {
    border-bottom: 1px solid #fff;
    color: #fff;
    text-align: center;
    background-color: transparent;
    padding: 10px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: transparent;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #2974EC;
    background-color: transparent;
}

.select2-results__option {
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    text-align: center;
    margin: 0px 30px;
}

.select2-container--default .select2-search--dropdown {
    display: none;
}

.select2-dropdown {
    background-color: #696969;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #fff transparent;
}

#register_success{
    margin: 150px auto;
    position: relative;
    min-height: 800px;
    display: none;
}

.register-succes {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.register-succes-logo img {
    width: 150px;
}
.register-succes h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
}
.register-succes p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

/*exhibition regis page*/
.main-breakout-register{
    background: url('https://t-8.tstatic.net/matalokalfest/assets_2025/img/regis2-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

/*privacy page*/
#privacy{
    margin: 100px auto;
}
.privacy-container{
    padding: 0px 40px;
}
.privacy-container h2{
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
}
.privacy-container h3{
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.privacy-container p, .privacy-container li{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}
.privacy-container a{
    text-decoration: underline;
}

/*article page*/
#article{
    margin: 100px auto;
    position: relative;
}

.breadcrumb-wrap {
    position: relative;
    padding-bottom: 20px
}

.breadcrumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    display: inline-block;
    font-size: 14px;
    line-height: 150%;
    padding-right: 10px;
    color: #fff;
    position: relative;
}

.breadcrumb-item:after {
    content: '>';
    right: 0px;
    position: absolute;
}

.breadcrumb-item:last-child:after {
    content: ""
}

.breadcrumb-link {
    position: relative;
    display: inline-block;
}

.breadcrumb-item:last-child {
    content: "";
    color: #fff;
    font-weight: normal;
    text-decoration-line: none
}

.breadcrumb-link span {
    padding-right: 5px
}
.article-content{
    padding: 20px;
}

.article-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.article-content {
    width: 70%;
    padding: 20px;
    box-sizing: border-box;
}

.article-sidebar {
    width: 30%;
    padding: 20px;
    box-sizing: border-box;
}

.article-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.article-time {
    font-size: 14px;
    margin-bottom: 20px;
    color: #aaa;
}

.article-content-container p {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.article-img img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    margin-bottom: 10px;
}

.article-img-caption {
    font-size: 14px;
    margin-top: 5px;
    color: #aaa;
}

.article-fulltext-container{
    margin: 40px 0px;
}

.article-editor{
    font-weight: bold;
    margin-bottom: 20px;
}
.article-fulltext-container ol li {
    list-style: decimal;
}
.article-fulltext-container ul li {
    list-style: disc;
}
.article-fulltext-container ol li, .article-fulltext-container ul li {
    margin-left: 25px;
    padding-bottom: 25px;
}
.article-tag-container{
    margin-top: 40px;
}

.article-tag-container-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.article-tag-ul {
    padding: 0;
    margin: 0;
}

.article-tag-item {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 20px;
}

.article-tag-item a {
    text-decoration: none;
    background-color: #2974EC;
    padding: 5px 10px;
    color: #fff;
    font-size: 14px;
}

.article-populer-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.article-populer-card {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-align: left;
    margin-bottom: 40px;
}

.article-populer-img-container{
    margin-bottom: 10px;
}

.article-populer-img-container img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    margin-bottom: 10px;
}

.article-populer-txt-container {
    width: 100%;
}

.article-populer-txt-container h1 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.article-populer-date {
    font-size: 12px;
    color: #aaa;
}

.share-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.article-social-item {
    width: 30px;
    height: 30px;
}

.article-social-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}







/*footer*/
.footer {
    width: 100%;
    font-size: 14px;
    line-height: 30px;
    padding: 100px 0 100px;
    color: #fff;
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, .5);
}
.footer-container{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.footer-left img{
    width: auto;
    height: 150px;
}
.footer-right{
    text-align: right;
}

.footer-right ul {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-bottom: 40px;
    max-width: calc((100px + 10px) * 7);
    flex-wrap: wrap;
}
.footer-right ul li:nth-child(5) img{
    margin-right: 0px;
}
.footer-right ul li:nth-child(5)::after {
    display: none;
}
.footer-right li{
    position: relative;
}
.footer-right li:after{
    content: "";
    display: block;
    width: 1px;
    background-color: #fff;
    height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer-right li:last-child:after{
    display: none;
}
.footer-right img{
    width: auto;
    margin-right: 20px;
    height: 30px;
}
.footer-right li:last-child img{
    margin-right: 0px;
}
.footer-right p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}



/*responsive*/
@media screen and (max-width: 1024px) {
    body {
        font-size: 0.875rem;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    /* Navbar */
    .nav-menu {
        flex-direction: column;
        text-align: left;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-menu li a {
        margin: 0;
        font-size: 0.875rem;
    }

    .nav-menu li img{
        filter: brightness(0) invert(1);
    }

    .burger {
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 100;
  }

  .burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
  }
  .burger.open span {
    background: #fff;
  }

  .burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .container-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgb(19 36 66 / 90%);
    justify-content: center;
    align-items: center;
    z-index: 99;
    overflow-y: auto; 
  }

  .container-menu.active {
    display: flex;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu li a {
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin: 0;
  }

  .footer {
        padding: 50px 0;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left img {
        height: 100px;
    }

    .footer-right {
        text-align: center;
        margin-top: 20px;
    }

    .footer-right ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-right li::after {
        display: none;
    }

    .footer-right img {
        margin-right: 0;
        height: 25px;
    }

    /*homepage mobile*/

    .hero-container .caption-hero{
        margin-bottom: 150px;
    }
  .hero-container .caption-hero h1{
    font-size: 20px;
    line-height: 30px;
  }

  .video-header-left h2{
    font-size: 14px;
    line-height: 23px;
  }
  .video-header-right h2{
    font-size: 14px;
    line-height: 23px;
  }

  .video-btn-play img{
    width: 50px;
    height: 50px;
  }

  .ratio iframe {
        width: 90vw;
        height: auto;
    }

  .mlf-btn{
    font-size: 14px;
    line-height: 20px;
  }

  .container-sustainable{
    display: block;
  }

  .sustainable-img{
    margin-top: 50px;
  }

  .sustainable-title h2{
    font-size: 18px;
    line-height: 24px;
  }

  .sustainable-txt{
    font-size: 14px;
    line-height: 20px;
  }

    .acara-row {
        flex-direction: row;
        align-items: center;
    }
    .acara-item {
        width: 100%;
        max-width: 400px;
        height: 500px;
    }
    .acara-item span {
        position: absolute;
        top: 35%;
    }

    .acara-item-footer{
        position: absolute;
        bottom: 30%;
    }

    #submit_home{
        min-height: 800px;
    }

    .submit-home-container h2 {
        font-size: 40px;
    }

    .submit-home-container p{
        font-size: 14px;
    }

    .submit-home-period p{
        width: 80%;
    }

    .submit-home-period h3{
        font-size: 22px;
        line-height: 30px;
    }

    .categories-home-container h2{
        font-size: 40px;
    }

    .categories-home-container p{
        font-size: 14px;
    }

    .timeline{
        margin-top: 0px;
    }

    .timeline-home-container h2{
        position: relative;
        font-size: 40px;
        top: inherit;
        right: inherit;
        margin-top: 50px;
    }

    .event{
        width: 100%;
        padding: 30px 0px;
    }
    .event:nth-child(1) {
        align-self: flex-start;
        z-index: 1;
    }
    .event:nth-child(1)::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 500px;
        height: 500px;
        background: url(https://t-8.tstatic.net/matalokalfest/assets_2025/img/timeline-1.png);
        background-size: 500px;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
        transform: translate(-50%, -50%);
    }

    .event:nth-child(2) {
        align-self: flex-start;
        transform: none;
        z-index: 1;
    }
    .event:nth-child(3) {
        align-self: flex-start;
        transform: none;
        z-index: 1;
    }
    .event:nth-child(4) {
        align-self: flex-start;
        transform: none;
        z-index: 1;
    }
    .event:nth-child(5) {
        align-self: flex-end;
        transform: none;
    }

    .event:nth-child(5)::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 500px;
        height: 500px;
        background: url(https://t-8.tstatic.net/matalokalfest/assets_2025/img/timeline-2.png);
        background-size: 500px;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
        transform: translate(-50%, -50%);
    }

    .event::after {
        content: '';
        position: absolute;
        bottom: -120px;
        left: 50%;
        width: 2px;
        height: 130px;
        background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8) 3px, transparent 3px, transparent 10px);
        z-index: -1;
        transform: none; 
    }

    .event:nth-child(1)::after {
        left: 50%;
    }
    .event:nth-child(2)::after {
        left: 50%;
    }
    .event:nth-child(3)::after {
        left: 50%;
    }
    .event:nth-child(4)::after {
        left: 50%;
    }

    .event-desc::before, .event-date::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 100px;
        height: 2px;
        background: rgba(0, 0, 0, 0.3);
        transform: translateX(-50%);
    }

    #impact h2{
        font-size: 30px;
    }

    .impact-item h4{
        font-size: 30px;
    }


    #article_home{
        max-width: 100%;
    }

    .latest-row h2{
        font-size: 30px;
        line-height: 40px;
    }

    .latest-card {
        width: 100%;
    }
    .latest-heading{
        font-size: 18px;
        line-height: 22px;
    }
    .latest-txt{
        font-size: 14px;
        line-height: 20px;
    }
    .latest-info{
        font-size: 12px;
    }

    /*categories mobile*/

    #categories_header .scroll-down{
        bottom: 150px;
    }

    #categories_header h2 {
        font-size: 30px;
        line-height: 40px;
    }

    #categories_header p {
        font-size: 16px;
        line-height: 26px;
    }

    #categories_header .scroll-down {
        left: 45%;
    }

    .tabs>ul li .active-tab>span.tab-label {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }
    .tabs>ul li a>span.tab-label {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }
    .catFaq-title{
        font-size: 18px;
    }
    .catFaq-content {
        font-size: 12px;
    }
    .catFaq p {
        font-size: 12px;
        line-height: 18px;
        opacity: .5;
    }
    .catFaq-info p {
        font-size: 12px;
        line-height: 22px;
    }
    .table-timeline td{
        font-size: 16px;
    }

    /*news mobile*/

    .list-article-heading h2{
        font-size: 18px;
        line-height: 26px;
    }

    .list-article-heading p {
        font-size: 14px;
        line-height: 22px;
    }

    /*impact mobile*/

    .impact-item h2{
        font-size: 30px;
        line-height: 40px;
    }

    .impact-item p{
        font-size: 14px;
    }

    .impact-item span{
        font-size: 10px;
        line-height: 16px;
    }

    /*regis mobile*/
    .select2-container--default .select2-selection--single {
        width: 100% !important;
        padding: 0px;
    }

    .select2-container--default .select2-selection__rendered {
        font-size: 12px;
    }

    .custom-dropdown .select2-results__option {
        padding: 8px;
    }
    .select2-dropdown {
        width: 100vw;
        left: 0 !important;
    }

    .form-container h2 {
        font-size: 20px;
        line-height: 36px;
    }

    .form-group label{
        font-size: 12px;
    }
    .form-group input, .form-group select, .form-group textarea{
        font-size: 12px;
    }

    /*privacy mobile*/
    .privacy-container{
        padding: 0px 10px;
    }
    .privacy-container h2{
        font-size: 26px;
        line-height: 30px;
    }
    .privacy-container h3{
        font-size: 18px;
        line-height: 22px;
    }

    .privacy-container p, .privacy-container li{
        font-size: 12px;
        line-height: 18px;
    }

    /*article mobile*/
    .article-grid{
        display: block;
    }
    .article-content {
        width: 100%;
        padding: 0px;
    }
    .article-sidebar {
        width: 100%;
        padding: 0px;
    }
    .article-title {
        font-size: 24px;
        line-height: 34px;
    }





}