@font-face {
    font-family: 'The Woodlands';
    src: url('../fonts/TheWoodlands-Regular.woff2') format('woff2'),
        url('../fonts/TheWoodlands-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root{
    color-scheme: only light;
    --fontBody: 'DM Sans', Arial, sans-serif;
    --fontHead: 'DM Serif Display', Georgia, Times, serif;
    --primary: #44BFD1;
    --primaryLight: #B7F6FF;
    --secondary: #19455D;
    --bgColor1: #E7E9D2;
    --bgColor2: #CDE7EC;
    --bgColor3: #BADCDA;
    --bgColor4: #EEEADA;
    --bgColor5: #E0DAE9;
}

@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    position: relative;
    background-color: #202224 !important;
}
body {
    position: relative;
    font-family: var(--fontBody);
    background-color: #fff;
}
html,body{
    width: 100%;
    min-height: 100vh;
    height: auto;
    overflow-x: hidden;
    transform: none;
}


/* Reset */
svg {
    filter: brightness(1) !important;
}
.no-dark-mode {
    background-color: #fff !important;
    filter: none !important;
}

@media (prefers-color-scheme: dark) {
    .no-dark-mode img {
        filter: brightness(1) !important; /* Prevent darkening */
        background-color: transparent !important;
    }
}

.bgColor1{
    background-color: var(--bgColor1);
}
.bgColor2{
    background-color: var(--bgColor2);
}
.bgColor3{
    background-color: var(--bgColor3);
}
.bgColor4{
    background-color: var(--bgColor4);
}
.bgColor5{
    background-color: var(--bgColor5);
}

/* Full viewport section */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #2E3135;
    z-index: 0;
}
.hero-section:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Four divs inside the section */
.quarter {
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    background-color: #2E3135;
    background-size: 100% auto;
    opacity: 1;
    z-index: 0;
    animation: none;
}

.quarter:nth-child(odd) { animation: moveBottomToTop 50s linear infinite; }
.quarter:nth-child(even) { animation: moveTopToBottom 50s linear infinite; }

.quarter:nth-child(1) { left: 0; background-image: url(../img/bg-5.jpg); }
.quarter:nth-child(2) { left: 25%; background-image: url(../img/m-bg-6.jpg?v=1); }
.quarter:nth-child(3) { left: 50%; background-image: url(../img/m-bg-7.jpg?v=1); }
.quarter:nth-child(4) { left: 75%; background-image: url(../img/bg-8.jpg); }

@media screen and (max-width: 700px){
    .quarter:nth-child(2) { left: 25%; background-image: url(../img/m-bg-6.jpg?v=1); }
    .quarter:nth-child(3) { left: 50%; background-image: url(../img/m-bg-7.jpg?v=1); }
}

.quarter:nth-child(odd){ background-position: 0 0;}
.quarter:nth-child(even){ background-position: 0 150%;}

@keyframes moveBottomToTop {
    0% { background-position: 0 100%; }
    100% { background-position: 0 0; }
}

@keyframes moveTopToBottom {
    0% { background-position: 0 0; }
    100% { background-position: 0 150%; }
}

.hero-section .ccard{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    color: #fff;
}
#wrapper{
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding-top: 50px;
   
}
.content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #f1f1f1;
    width: 88%;
    margin-bottom: 0;
    max-width: 600px;
    padding: 5vh 20px 20px 20px;
    text-align: center;
    z-index: 2;
}
.content h1 {
    color: #f1f1f1;
    margin-bottom: 8px;
    font-family: var(--fontHead);
    font-weight: normal;
}
h1 .num{
    font-family: var(--fontHead);
    font-size: 150px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    text-align: center;
    color:#fff;
    display: block;
}
h1 .yr{
    font-family: 'The Woodlands';
    font-size: 100px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color:#21E2FF;
    display: block;
    margin-top: -60px;
    margin-bottom: 40px;
}
h1 .tag-line{
    font-family: var(--fontHead);
    font-size: 23px;
    font-weight: 400;
    line-height: 31.53px;
    text-align: center;
    color:#fff;
    display: block;
    margin-top:20px;
}
.content p {
    font-family: var(--fontBody);
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0px;
    margin-bottom: 5px;
    font-weight: 300;
}

#myBgOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.ht100_logo {
    width: 300px;
    height: auto;
    z-index: 9999;
}

.cdown {
    font-family: var(--fontBody);
    font-size: 48px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.cdown span {
    display: inline-block;
    min-width: 70px;
    padding: 10px;
    /*background-color: rgba(255, 255, 255, 0.1);*/
    border-radius: 5px;
    margin: 0 5px;
    position: relative;
}

.cdown span:nth-child(even) {
    background-color: transparent;
    min-width: auto;
    padding: 10px 0;
}

.cdown span:nth-child(1)::after,
.cdown span:nth-child(3)::after,
.cdown span:nth-child(5)::after,
.cdown span:nth-child(7)::after {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #ddd;
}

.cdown span:nth-child(1)::after { content: 'Days'; }
.cdown span:nth-child(3)::after { content: 'Hours'; }
.cdown span:nth-child(5)::after { content: 'Minutes'; }
.cdown span:nth-child(7)::after { content: 'Seconds'; }

.social-icons {
    /* margin-top: 30px; */
    text-align: center;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #f1f1f1;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a img{
    width: 36px;
    height: auto;
}

.social-icons a:hover {
    color: #ddd;
}

footer {
    position: relative;
    width: 100%;
    padding-top: 30px;
    background: transparent;
    font-family: var(--fontBody);
    color: #ddd;
    padding: 10px 0;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 12px;
}
footer .social-icons a img{
    width: 20px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin-left: 20px;
    font-size: 12px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.cta-wrap.desktop{
    display: flex;
}
.cta-wrap.mobile{
    display: none;
}

.cta-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}
.btn{
    border: 1px solid transparent;
    width: 185px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease all;
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: 10px center;
}
#openPdfBtn {
    position: relative;
    background: linear-gradient(122.32deg, #00B2CD 21.73%, #005967 81.69%);
    color: #FFF;
    border-radius: 40px;
    font-family: var(--fontBody);
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    border:0;
    overflow: hidden;
}
/*.share-btn {
    display: block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}*/
.shr-im{display: inline-block;vertical-align: bottom;margin-right: 5px;}

/* Shining animation */
#openPdfBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-20deg);
  transition: opacity 0.3s ease;
  animation: shine 3s ease-in-out infinite;
}

/* Glaze/shine effect */
@keyframes shine {
  0% {
    left: -150%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 150%;
  }
}

.special-edition.card a{
    text-decoration: none;
    color: inherit;
}


.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #00B2CD;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #000;
    margin-left: 3px;
}

.go_home{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    font-family: var(--fontBody);
    background: #011E29;
    padding: 5px 5%;
    z-index: 11;
}
.go_home a{
    display: inline-block;
    color: #ddd;
    font-size: 14px;
    text-decoration: none;
    line-height: 21px;
}
.go_home *{
    display: inline-block;
    vertical-align: middle;
}
.go_home span{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.go_home img{
    display: inline-block;
    width: 14px;
    height: auto;
    margin-right: 10px;
    margin-bottom: 0;
}

/* Share Popup Styles */
.share-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.share-popup-content {
    background-color: #2E3135;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.share-popup-content a{
    color: #000;
    text-decoration: none;
}

.share-popup h2 {
    color: #fff;
    font-family: var(--fontHead);
    font-size: 24px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.share-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    background-color: #FFF;
    border-radius: 25px;
    text-decoration: none;
    color: #2022224;
    font-family: var(--fontBody);
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.share-link:hover {
    background-color: #DDD;
    transform: translateY(-2px);
}

.share-link img {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
}

.close-share {
    display: block;
    width: 32px;
    height: 32px;
    padding: 0.75rem;
    margin-top: 1.5rem;
    background: url(../img/icon-close.svg) no-repeat center center;
    background-size: 30px;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease-in-out all;
}

.close-share:hover {
    transform: scale(1.15);
}

body.share-popup-open {
    overflow: hidden;
}
body.share-popup-open .share-popup{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#sso-wrap{position: absolute;}

.popup {
    display: none;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

body.userSubscribed #subscribedPopup,
body.userLoggedIn #loggedInPopup {
    display: flex;
}
body.userLoggedIn #subscribedPopup,
body.userSubscribed #loggedInPopup {
    display: none;
}

.popup-content {
    background-color: #fff;
    margin: 15% auto 24px auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
}
.popup-content p{
    font-family: var(--fontBody);
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.check-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background-color: #4CAF50; */
    background: url(../img/icon-check.svg) no-repeat center center;
    background-size: 80px;
    margin: 0 auto 15px;
    position: relative;
}
#subscribedPopupClose,
#loggedInPopupClose {
    width: 40px;
    height: 40px;
    padding: 0.75rem;
    margin-top: 0;
    background: url(../img/icon-close.svg) no-repeat center center;
    background-size: 36px;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease-in-out all;
}
#subscribedPopupClose:hover,
#loggedInPopupClose:hover {
    transform: scale(1.15);
}

@media screen and (max-width: 768px) {
    #wrapper{
        min-height: 100vh !important;
        padding-top:0;
    }
    .ht100_logo{width: 155px;}
    .content {
        padding-top: 8vh;
        width:100%;
        justify-content: flex-start;
        margin-bottom: 0px;
        /* top: 30%;
        transform: translate(-50%, -30%); */
    }
    /*.content h1 span:nth-child(1) {
        font-size: 75px;
    }
    .content h1 span:nth-child(2),
    .content h1 span:last-child {
        font-size: 22px;
    }*/
    .tag-line{position: relative;margin-bottom: 15px;}
    .tag-line:before {
        content: '';
        position: absolute;
        width: 49px;
        background-color: #fff;
        height: 1px;
        left: 0;
        right: 0;
        margin: 0 auto;
        display: block;
        bottom: -23px;
    }
    /*.content h1{margin-top:-20px;}*/
    .quarter:nth-child(1),
    .quarter:nth-child(4) {
        display: none;
    }

    .quarter:nth-child(2),
    .quarter:nth-child(3) {
        width: 50%;
    }

    .quarter:nth-child(2) { left: 0; }
    .quarter:nth-child(3) { left: 50%; }

    .cdown {
        font-size: 36px;
        margin-top:20px;
    }

    .cdown span {
        min-width: 50px;
        padding: 5px;
    }

    .cdown span:nth-child(1)::after,
    .cdown span:nth-child(3)::after,
    .cdown span:nth-child(5)::after,
    .cdown span:nth-child(7)::after {
        font-size: 12px;
        bottom: -20px;
    }
    /* .ht100_logo {
        top: 80px;
    } */

    .stay-tuned-btn {
        font-size: 18px;
    }
    .hero-section{position: unset;height: 100%;}
    footer{
        /*margin-bottom: 100px;*/
        /*position: absolute;bottom:0;*/
        padding:0;
    }
    .footer-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .copyright {
        /*margin-top: 10px;*/
    }

    .footer-links {
        margin-bottom: 10px;
    }

    .footer-links a {
        margin: 0 10px;
    }

    .btn{
        width: 48%;
        margin: 0;
    }
    /*.share-btn{width: 112px;}
    .stay-tuned-btn{width: 200px;}*/
    .social-icons{
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 0;
        order: 1;
        margin-bottom: 10px;
    }
    .social-icons a img{
        display: block;
        width: 26px;
        height: auto;
    }
    .cta-wrap.desktop{
        display: flex;
        margin-top:0px;
        align-items: center;
        justify-content: center;
    }
    .cta-wrap.mobile{
        display: none;
        z-index: 9;
        background: transparent;
        padding: 5px 10px;
        position: fixed;bottom:110px;
    }

    .cta-wrap{
        /*position: fixed;*/
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .desktop-video{
        display: none;
    }

    .floating-video {
        display: block;
        width: 300px;
        height: 150px;
    }

    .video-popup-content {
        width: 100%;
        padding: 10px;
    }
    .close-popup {
        top: -50px;
        right: 0;
    }
    .go_home{
        padding: 5px 15px;
    }
    .go_home span{
        font-size: 12px;
    }
    .go_home img{
        width: 18px;
        height: auto;
    }

    .share-popup-content {
        padding: 1.5rem;
    }

    .share-popup h2 {
        font-size: 20px;
    }

    .share-link {
        padding: 0.6rem 0.8rem;
        font-size: 14px;
    }

    .share-link img {
        width: 20px;
        height: 20px;
        margin-right: 0.5rem;
    }

    .close-share {
        font-size: 14px;
        padding: 0.6rem;
    }
    #event-about-wrap{
        position: relative;
    }
    #event-about-wrap:after{
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        width: 100%;
        height: 40px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    }
    #event-about-wrap.expand{
        height: auto;
        overflow: visible;
    }
    #event-about-wrap.expand:after{
        display: none;
    }
}/*max-width 768*/
@media screen and (min-width: 321px) and (max-width: 400px) {
    h1 .num{
        line-height: 1;
        font-size: 120px;
    }
    h1 .yr{
        font-size: 80px;
        margin-top: -60px;
        margin-bottom: 25px;
    }
    .cdown {
        font-size: 30px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .content{
        padding-top: 10vh;
    }
}
@media screen and (max-width: 320px) {
    .content{
        padding-top: 40px;
    }
    .content h1{
        margin-bottom: 0px;
    }
    h1 .num{
        line-height: 1;
        font-size: 80px;
    }
    h1 .yr{
        font-size: 60px;
        margin-top: -40px;
        margin-bottom: 15px;
    }
    h1 .tag-line{
        font-size: 18px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .content{
        gap: 18px;
    }
    .content p{
        font-size: 16px;
        margin-bottom: 0;
    }
    .cdown {
        font-size: 20px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .social-icons{
        bottom: 60px;
    }
    .cta-wrap.desktop{
        margin-top: 5px;
    }
}
.card-section{
    margin-top: 100px;
}
.card-details{
    width: 294px;
    height: auto;
}
.card-sumit-detail{
    padding: 14px 11px 14px 19px;
}
.card-logo-sumit{
    background-image: url("../img/back.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.card-logo-sumit img{
    margin-left: 15px;
}
.arrow{
    width: 39px;
    height: 39px;
    background: #50B6C5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.arrow i{
    display: block;
    width: 15px;
    font-weight: 400;
    color: #fff;
}
.banner-card{
    font-size: 8px !important;
    font-weight: 400;
    text-align: left;
}
.banner-card-heading{
    font-family: DM Serif Display;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
}
.banner-card-heading span{
    color: #50B9C8;
}
.scroll-arrow{
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-top: 40px;
}
.scroll-arrow:after{
    content: 'Scroll to know more';
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -75px;
    color: #FFF;
    font-family: var(--fontBody);
    font-size: 14px;
    text-align: center;
    width: 150px;
}
.arrow-animation {
    animation: arrowUpDown 2s ease-in-out infinite;
}

@keyframes arrowUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}
.lower-section{
    position: absolute;
    width: 100%;
    height: auto;
    background-color: #fff;
}
.live-section,
.video-section{
    padding: 50px 15px;
}
.video-section-heading{  
    display: block;
    padding: 0;
    text-align: center;
    margin: 0 22px 26px 22px;
    font-family: var(--fontHead);
    font-size: 35px;
    font-weight: 400;
    color: #616161;
    text-indent: -999em;
    background: url(../img/ht100-logo-full-b.png) center center no-repeat;
    background-size: contain;
}
.video-section-heading span{
    color: #5EB8C5;
}
.video-section-paragraph{
    color: #686868;
    text-align: center;
    margin: 29px 17px 0 17px;
    font-family: var(--fontBody);
    font-size: 16px;
    font-weight: 400;
}

.legency-paragraph , .event-paragraph , .merchandise-paragraph{
    font-family: var(--fontBody);
    font-size: 16px;
    font-weight: 400;
    color: #686868;
    text-align: center;
    margin: 0;
}

.event , .celebrating-legency , .merchandise{
    margin: 40px 0;
}
.legency-heading, .event-heading , .merchandise-heading{
    font-family: var(--fontHead);
    font-size: 35px;
    font-weight: 400;
    line-height: 35px;
    text-align: center;
    margin-bottom: 18px;
    color: #616161;
}
.legency-heading span , .event-heading span, .merchandise-heading span{
    color: #5EB8C5;
}
.legency-card{
    overflow: hidden;
    border-radius: 8px !important;
    object-fit: cover;
}
.Legacy-banner{
    background: linear-gradient(141.42deg, #8CD4DE 35.45%, #63BBC8 103.43%);
}
.legacy-banner-heading{
    font-family: var(--fontHead);
    font-size: 60px;
    font-weight: 400;
    line-height: 52.8px;
    text-align: left;
    color: #fff;
    width: 406px;
    height: 159px;
}
.legacy-details{
    margin-top: 38px;
    display: flex;
    align-items: center;
}
.legacy-banner-paragraph{
    font-family: var(--fontBody);
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    text-align: left;
    width: 236px;
}
.legacy-section{
    padding: 55px 0 72px 0;
}
.legacy-arrow{
    width: 44px;
    height: 44px;
    background: linear-gradient(167.95deg, #48E7FF -4.06%, #105E6A 123.39%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 22.17px;
}
.legacy-arrow i{
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    text-align: center;
}
.legacy-right img{
    height: 100%;
    padding-left: 100px;
}
.vertical-line {
    width: 1px;              /* Narrow width to make it look like a line */
    height: 50px;            /* Height of the line */
    background-color: black;  /* Line color */
    margin: 0 25px 0 24px;
}
  
.stories-section{
    position: relative;
    width: 394px;
    height: 421px;
    background: linear-gradient(141.42deg, #8CD4DE 35.45%, #63BBC8 103.43%);
    padding: 35px 23px 29px 34px;
    border-radius: 5px;
}

.stories-section a{
    display: block;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}
.stories-heading{
    font-family: var(--fontHead);
    font-size: 47px;
    font-weight: 400;
    line-height: 41.36px;
    text-align: left;
    color: #fff;
}
  
.stories-paragraph{
    width: 163px;
    height: 38px;
    font-family: var(--fontBody);
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    text-align: left;   
}
.story-arrow-paragraph{
    font-family: var(--fontBody);
    font-size: 10px;
    font-weight: 500;
    padding-top: 12.17px    ;
    margin: 0;
}
.story-arrow{
    width: 44px;
    height: 44px;
    background: linear-gradient(167.95deg, #48E7FF -4.06%, #105E6A 123.39%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.story-arrow i{
color: #fff;
font-size: 30px;
font-weight: 300;
text-align: center;
}

.read-more-lg , .read-more-lg-2{
    display: block;
    font-family: var(--fontBody);
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
    text-decoration: none;
    margin: 28px 0px 60px 0px !important;
    color: #000;
}

.floatingShare{
    display: inline-block;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: var(--primary) url(../img/share-w.svg) center center no-repeat;
    background-size: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
}

/* PDF Modal styling */
.pdf-actions{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.pdf-actions a{
    font-size: 13px;
    text-decoration: none;
    padding: 5px 16px;
    color: inherit;
    border: 1px solid #CCC;
    border-radius: 16px;
    background: linear-gradient(90deg, #FFFFFF 0%, #EEEEEE 100%);
}
.pdf-actions a img{
    width: 16px;
    height: auto;
    margin-right: 5px;
}
.custom-modal {
  display: none; 
  position: fixed;
  z-index: 999; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(0,0,0,0.5); 
}
#pdfViewer{
    margin-top: 5px;
}
.cm-close {
  color: #333;
  display: inline-block;
  float: right;
  width: 30px;
  height: 30px;
  text-indent: -999em;
  background: url(../img/icon-close-b.svg) center center no-repeat;
  background-size: contain;
  font-weight: bold;
  cursor: pointer;
  padding: 5px;
}
.cm-close:hover,
.cm-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.custom-modal-content {
  background-color: #fefefe;
  margin: 0 auto;
  padding: 5px;
  border: 1px solid transparent;
  width: 100%;
  height: 100vh;
  max-width: 800px;
  text-align: center;
}
.custom-modal-content .row{
    align-items: middle;
}
/*
.custom-modal-content .row span{
    line-height: 36px;
}
.custom-modal-content .social-share{
    cursor: pointer;
}
.custom-modal-content .social-share img{
    width: 24px;
    height: auto;
    margin-right: 5px;
}*/

.upcoming-events{
    /*margin-top: 100px;*/
    width: 100%;
    height: 100%;
    background-color: #FBF5E9;
    padding-bottom: 40px;
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    height: auto;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.upcoming-events .swiper-slide a{
    display: block;
    text-decoration: none;
    color: inherit;
    height: auto;
}
.event-card{
    width: 372px;
    /*height: -webkit-fill-available;*/
    max-height: 475px;
    margin-bottom: 22px;
    border-radius: 9.08px !important;
    overflow: hidden !important;
    transition: 0.3s ease all;
}
.event-card:hover{
    box-shadow: 0 6px 18px 0 rgba(0, 0, 0, 0.1);
}
.event-card:hover .btn.card-event-button{
    transform: scale(1.05);
}
.event-body , .store-body{
    padding: 23px 26px !important;
}
.event-body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.event-card img{
    max-height: 100px;
    width: auto;
}
.card-image{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 215px;
    padding: 43px 74px;
    overflow: hidden;
    border-radius: 9.08px 9.08px 0px 0px  !important;
}
.card-image p{
    font-family: var(--fontBody);
    font-size: 10px;
    font-weight: 500;
    line-height: 18.15px;
    text-align: center;
    color: #1C7275;
    background-color: #fff;
    border-radius: 7.5px;
    white-space: nowrap;
    padding-left: 5px;
    padding-right: 5px;
}
.card-event-title{
    font-family: var(--fontHead);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 18px;
    margin: 0 auto;
    max-width: 80%;
}
.card-event-para{
    font-family: var(--fontBody);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    padding-bottom: 18px;
    min-height: 60px;
    margin: 0;
}
.btn.card-event-button, 
.card-store-button{
    padding: 7px 22px;
    background: linear-gradient(133.26deg, #BCF5FD -15.79%, #1D8FA0 83.15%);
    white-space: nowrap;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    border: none;
    transition: 0.3s ease all;
}
.merchandise-title{
    font-family: var(--fontBody);
    font-size: 12px;
    font-weight: 600;
    line-height: 13.2px;
    text-align: left;
}
.store-card{
    width: 398px;
    margin-bottom: 32px;
}
.card-store-title{
    font-family: var(--fontBody);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
}
.card-store-para{
    font-family: var(--fontBody);
    font-size: 14px;
    font-weight: 400;
    line-height: 15.4px;
    text-align: left;
}
.btn{
    border-radius: 6px;
    padding: 12px;
}
.read-more-lg-2{
    margin: 30px 40px !important;
}
.footer{
    background: #061C28;
}
.logo-wrapes{
    margin: 40px 0px;
}
.logo-container {
    margin-bottom: 20px;
}

.connect-icons {
    display: flex;
    justify-content: center;
    gap: 18.86px; 
}

.connect-icon {
    height: 27.43px;
    width: 27.43px;
}

.footer-hr {
    width: 100%; /* Full width by default */
    margin: 10px auto; /* Center the HR */
  }
.footer-list{
    list-style: none;
}
.footer-list li {
    padding-bottom: 12px;
}
.footer-list li a{
    font-family: var(--fontBody);
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    text-align: left;
    color: #00B2CD;
    text-decoration: none;
}
.footer-last{
    font-family: var(--fontBody);
    font-size: 12px;
    font-weight: 500;
    line-height: 15.6px;
    text-align: center;    
    color: #767676;
}
.btn-buy{
    background-color: #00B2CD;
    color: #fff;
}
.legacy-card-body{
    padding: 7px 12px !important;
}
.legacy-para{
font-family: var(--fontBody);
font-size: 12px;
font-weight: 400;
line-height: 14.4px;
text-align: left;
}

/* Change pagination bullet color to black */
.swiper-pagination-bullet {
    background-color: black;
  }
.swiper-pagination {
    margin-top: 80px !important; /* Adjust the value as needed */
}
/* Change the color of the active bullet */
  .swiper-pagination-bullet-active {
    background-color: black;
  }
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
    /*margin-bottom: -11px;*/
    bottom: 0px;
  }


.home-h1{
    font-family: 'DM Serif Display', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}  
.home-h1 span{
    color: #00B2CD;
}
.tagline-wrap{
    padding: 0 30px;
}
#cardSwiper{
    position: absolute;
    bottom: 100px;
    right: 50px;
    z-index: 11;
    max-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}
#cardSwiper a{
    color: inherit;
    text-decoration: none;
}
.hero-event-item{
    display: block;
}
.hero-event-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
  background-color: #fff;
  padding: 0;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}
.image-container {
  flex: 0 0 30%;
}
.image-container img {
    display: block;
  width: 100%;
  height: auto;
  border-radius: 8px 0 0 8px;
}
.card-info {
  flex: 0 0 70%;
  padding-left: 10px;
  padding-right: 30px;
  background: url(../img/green-arrow.svg) 95% center no-repeat;
  background-size: 34px auto;
}
.hero-event-date{
    font-size: 10px;
    line-height: 1.5;
    margin: 0 0 5px 0;
    color: #666;
}
.banner-card-heading {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.1;
  color: #333;
  height: 30px;
  padding-right: 5px;
  overflow: hidden;
}
.banner-card span {
  display: block;
  font-size: 1.2rem;
  color: #5ab1c5;
}
.banner-card {
  margin-bottom: 5px;
  font-size: 0.85rem;
  color: #666;
}

.mnav {
    background-color: #061C28;
    padding: 10px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mnav svg{
    fill: #FFF;
    stroke: #FFF;
}
.main-logo{
    display: block;
}
.main-logo img{
    display: block;
    width: 200px;
    height: auto;
}
.mnav .main-logo img{
    width: 100%;
    height: auto;
}

/* Main Navigation */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #061C28;
  padding: 10px;
}
.navbar a{
    text-decoration: none;
}
.navbar .navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.navbar-toggler-icon{
    background-image: url(../img/icon-ham.svg);
    background-size: cover;
}
.navbar-toggler{
    padding: 5px 0;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.back-button {
  font-size: 1.5rem;
  color: #fff;
}

.navbar-toggler {
  border: none;
}

/*.navbar-toggler-icon {
  color: #fff;
}*/
.navbar-toggler-icon .ri-menu-line{
    display: none;
}

.navbar-collapse {
  background-color: #061C28;
  max-width: 300px;
  position: absolute;
  right: 0;
  top: 100%;
}

.navbar-collapse.show {
  display: block !important;
}

.nav-link {
  color: #fff;
  padding: 10px 15px;
}

.nav-link:hover {
  color: #f0f0f0;
}

@media (min-width: 992px) {
  .navbar-collapse {
    position: static;
    display: flex !important;
    max-width: 100%;
  }
}
/*  End of Main Navigation  */

.ytVid{
    width: 100%;
    max-width: 700px;
    height: auto;
    min-height: 350px;
}

.social-embeds{
    padding-top: 50px;
    background: linear-gradient(180deg, #D5EFF3 0%, #FFFFFF 100%);
}
.socialSwiper .swiper-wrapper{
    padding-bottom: 40px;
}
.social-card{
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}
.social-card iframe{
    width: 100%;
    min-width: 100% !important;
    min-height: 100%;
    border: none;
}
.social-card .twitter-tweet{
    margin-top: 0 !important;
}

/* Event Details */
.event-hero{
    position: relative;
    color: #FFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #202224;
}
.event-hero .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
    height: 70vh;
    min-height: 650px;
}
.event-hero .tagline{
    font-family: var(--fontBody);
    font-size: 16px;
    line-height: 1.35;
}
.eh-tagline{
    font-size: 22px;
    max-width: 80%;
  }
.event-buy-btn{
    display: inline-block;
    color: #202224;
    background: linear-gradient(101.7deg, #A0F3FF 26.3%, #12AAC0 104.73%);
    border-radius: 28px;
    text-decoration: none;
    padding: 8px 16px;
    transition: 0.3s ease all;
}
.event-buy-btn:hover,
.event-buy-btn:focus{
    transform: scale(1.1);
}
.event-section{
    padding-top: 50px;
    padding-bottom: 20px;
}
.event-section.section-sm{
    padding-top: 20px;
    padding-bottom: 20px;
}
.event-container-sm{
    max-width: 1100px;
    margin: 0 auto;
}
.text-bold{
    font-weight: bold;
}
.event-container-sm hr{
    border-color: #aaa;
}
.event-section .h2{
    font-family: var(--fontHead);
    margin-bottom: 20px;
}
.event-section .h2 span{
    font-family: inherit;
    color: var(--primary);
}
.event-section .column{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    width: 100%;
}
.event-features.event-section .column{
    border-left: 1px solid #ccc;
}
.event-features.event-section .features-row > div:first-child .column{
    border: none;
}
.event-section .column img{
    width: 36px;
    height: auto;
}
.event-section .column h4{
    font-family: var(--fontHead);
    margin-bottom: 0px;
}
.event-section .section-body,
.event-section .column p{
    color: #666;
}
.event-time-loc img{
    width: 36px;
    height: auto;
}
.event-time-loc .h4{
    font-size: 18px;
    line-height: 1.25;
}
.event-time-loc .card{
    border-color: #EEE;
}
.event-time .card{
    background: #C8F6F9;
}
.event-loc .card{
    background: #DAC7F4;
}
.event-speakers .h2{
    margin-bottom: 0;
}
.event-speakers .card{
    border-radius: 8px;
    overflow: hidden;
}
.event-speakers .card a{
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.event-speakers .card a img{
    display: block;
    width: 100%;
    height: auto;
    transition: 0.2s ease all;
}
.event-speakers .card a:hover img{
    transform: scale(1.05);
}
.event-speakers .card .meta{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 5px 5px 5px;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.event-speakers .meta .name{
    font-size: 15px;
    color: #FFF;
}
.event-speakers .meta .designation{
    font-size: 13px;
    color: #DDD;
}
.speakers-row > div{
    margin-bottom: 20px;
}
.event-speakers .past-speakers .card a img{
    filter: grayscale(100%);
}

.sponsors-grid .card img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.sponsors-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.event-hero .event-logo{
    display: block;
    margin-top: 50px;
}
.event-hero .event-logo img{
    width: 250px;
    height: auto;
}
.event-hero h1{
    font-family: var(--fontHead);
    font-size: 45px;
    line-height: 1.2;
    max-width: 600px;
    margin-top: 20px;
}
.event-hero h3{
    font-family: var(--fontBody);
    font-size: 18px;
    margin-top: 20px;
}
.live-section{
    background: #f0f0f0;
}


.pdf-share-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdf-share-popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.pdf-share-link {
  display: block;
  margin: 15px 0;
  color: #333;
  text-decoration: none;
}

.pdf-share-link img {
  width: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

.pdf-share-close {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #f00;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.event-about-rm{
    display: none;
    color: #202224;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
.event-about-rm .chev-down{
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: url(../img/chev-down.svg) center center no-repeat;
    background-size: contain;
    transition: 0.3s ease all;
}
.event-about-rm.expand .chev-down{
    transform: rotate(180deg);
}

.swiper-button-next, .swiper-button-prev{
    width: 50px;
    height: 50px;
    padding: 30px;
    z-index: 20;
}
.event-section-buy-link{
    padding-bottom: 20px
}
.card {
  position: relative;
  /* height: 300px; */
  overflow: hidden;
}

.card img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 10px;
}

.swiper-horizontal {
    position: relative;
}

.swiper-button-next, .swiper-button-prev {
    color: black;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -30px;
}

.swiper-pagination-bullet-active {
  background-color: #000 !important; /* Customize active bullet color */
}

.yt_video iframe{
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.lb-dataContainer .lb-data{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
}
#event-wrap h2.h2{
    font-family: var(--fontHead);
}
/* All Mobile */
@media screen and (max-width: 979px) {
    .yt_video iframe{       
        height: 220px;
    }
}
/* All Desktop */
@media screen and (min-width: 980px) {
    .yt_video iframe{       
        height: 340px;
    }
    .event-section .column.card{
        flex-direction: row;
        text-align: left;
    }
}

/* Contest Home */
#mcml-hero{
    background-color: #F1EBDF;
    text-align: center;
}
.process-card-title,
.mcml-title{
    font-family: var(--fontHead);
    color: var(--secondary);
    font-size: 24px;
    padding: 0 20px;
}
.mcml-tagline{
    font-family: var(--fontBody);
    color: #333;
    font-size: 24px;
    margin: 20px 0;
}
.mcml-logo{
    margin-top: 18px;
    text-indent: -9999px;
    background-image: url(../img/mcml-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.participate-btn,
.vote-btn{
    display: inline-block;
    background: linear-gradient(99.03deg, #288BC1 4.3%, #13425B 104.25%);
    border: 1px solid transparent;
    border-radius: 38px;
    padding: 10px 20px;
    color: #FFF;
    margin: 10px 10px 20px 10px;
    text-decoration: none;
    font-family: var(--fontBody);
    text-transform: uppercase;
    text-align: center;
    transition: 0.3s ease all;
    letter-spacing: 0.025em;
    min-width: 120px;
    border: none;
}
.participate-btn:hover,
.vote-btn:hover{
    background: linear-gradient(99.03deg, #4EC0FF 14.31%, #13425B 104.25%);
}
.process-card-cta{
    width: 100%;
}
.process-card-cta .cta-wrap{
    justify-content: center;
}
.edit-btn{
    display: inline-block;
    background: #FFF;
    border: 1px solid #13425B;
    border-radius: 38px;
    padding: 10px 20px;
    color: #13425B;
    margin: 10px 10px 20px 10px;
    text-decoration: none;
    font-family: var(--fontBody);
    text-transform: uppercase;
    text-align: center;
    transition: 0.3s ease all;
    letter-spacing: 0.025em;
    min-width: 120px;
}
.edit-btn:hover{
    color: #FFF;
    border-color: var(--primary);
    background: var(--primary);
}
.mcml-login-wrap,
.mcml-terms-wrap{
    font-size: 14px;
    margin-top: 10px;
}
.mcml-login-wrap a,
.mcml-terms-wrap a{
    color: var(--secondary);
    font-weight: normal;
}   
/* .mcml-login-wrap a{
    display: inline-block;
    background: #F7DEAA;
    padding: 2px 10px;
    border-radius: 5px;
    text-decoration: none;
} */
.mcml-login-wrap a{
    display: inline-block;
    text-decoration: underline;
    font-weight: bold;
}
.mcml-terms-wrap{
    margin-top: 20px;
}
.mcml-terms-wrap a{
    text-decoration: underline;
}
.mcml-static .section-title,
#mcml-jury .section-title,
#mcml-rewards .section-title,
#mcml-contest-details .section-title,
#mcml-contest-window .section-title,
#mcml-faqs .section-title,
#mcml-jury .section-title,
#mcml-featured .section-title,
#mcml-hp-cats .section-title{
    font-family: var(--fontHead);
    font-size: 32px;
    color: #19455D;
    text-align: center;
}
#mcml-hp-cats .section-sub-title,
#mcml-contest-details .container > h3{
    font-size: 20px;
    color: #19455D;
    margin: 15px 0;
}
#mcml-contest-details .contest-detail-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 16px 24px;
    min-height: 280px;
    height: 100%;
    border-radius: 8px;
    background-size: contain;
}
.step1.contest-detail-card,
.step3.contest-detail-card{
    background: url(../img/step13.png) center center no-repeat;
}
.step2.contest-detail-card,
.step4.contest-detail-card{
    background: url(../img/step24.png) center center no-repeat;
}
#mcml-contest-details .contest-detail-card h3 {
    font-family: var(--fontBody);
    font-size: 20px;
    margin-bottom: 12px;
    color: #19455D;
}
#mcml-contest-details .contest-detail-card p {
    font-family: var(--fontBody);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #13425B;
    padding: 0 20px;
}
.contest-detail-card .step{
    position: absolute;
    left: 50%;
    margin-left: -39px;
    font-family: var(--fontBody);
    font-size: 35px;
    font-weight: bold;
    width: 78px;
    height: 78px;
    line-height: 72px;
    background: #FFF;
    border-radius: 50%;
    border: 4px solid transparent;
}
.contest-detail-card.step1 .step,
.contest-detail-card.step3 .step{
    top: -39px;
    color: #64C4D3;
    border-color: #64C4D3;
}
.contest-detail-card.step2 .step,
.contest-detail-card.step4 .step{
    bottom: -39px;
    color: #55A9D6;
    border-color: #55A9D6;
}
.mcml-contest-slider-m{
    margin: 60px 0;
}
.mcml-contest-slider-d.row>*{
    padding: 0px;
}
.mcml-contest-slider-m.swiper{
    overflow: visible;
}
.mcml-contest-slider-m .swiper-horizontal>.swiper-pagination-bullets, 
.mcml-contest-slider-m .swiper-pagination-bullets.swiper-pagination-horizontal, 
.mcml-contest-slider-m .swiper-pagination-custom, 
.mcml-contest-slider-m .swiper-pagination-fraction{
    bottom: -75px;
}
#mcml-contest-details .participate-btn{
    margin-top: 50px;
}

/* Swiper custom styles */
#mcml-contest-details.contest-details-slider {
    padding: 8px 16px 32px;
    margin: 0 -16px;
}

#mcml-contest-details .contest-details-slider .swiper-slide {
    height: auto;
}
#mcml-contest-window{
    background: radial-gradient(75.29% 75.29% at 50% 50%, rgba(255, 255, 255, 0.8) 34.5%, rgba(200, 200, 200, 0.8) 100%);
}
#mcml-hp-cats h2,
#mcml-hp-cats h3,
#mcml-hp-cats p.section-desc{
    text-align: center;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
}
#mcml-hp-cats .hp-cats-wrap a{
    text-decoration: none;
    color: inherit;
}
#mcml-hp-cats .hp-cats-wrap .category-card-body{
    padding-top: 20px;
}
#mcml-hp-cats .hp-cats-wrap .cat-title{
    font-size: 18px;
    font-weight: bold;
}
#mcml-hp-cats .hp-cats-wrap .category-card-text{
    font-size: 14px;
    margin: 10px 0;
}
#mcml-hp-cats .hp-cats-wrap .cat-card-cta{
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    background: transparent;
    border: 1px solid #FFF;
    color: #FFF;
    padding: 6px 12px;
    border-radius: 5px;
    transition: 0.3s ease all;
}
#mcml-hp-cats .hp-cats-wrap img{
    transition: 0.3s ease all;
}
#mcml-hp-cats .hp-cats-wrap a:hover img{
    transform: scale(1.05);
}
#mcml-hp-cats .hp-cats-wrap a:hover .cat-card-cta{
    background: #FFF;   
    color: var(--secondary);
}
#mcml-rewards{
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}
.rewards-wrap{
    margin-top: 50px;
}
.rewards-wrap h2{
    font-family: var(--fontHead);
    margin-top: 18px;
    font-weight: bold;
    font-size: 24px;
    color: var(--secondary);
}
.reward-card{
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, #D3F9FF 0%, #FFFFFF 100%);
    /* border: 1px solid #efefef; */
}
.reward-card .img-wrap{
    position: relative;
    width: 260px;
    height: 260px;
    padding: 10px;
    transition: 0.3s ease all;
    /* background-image: 
        url('../img/border-tr.svg'),
        url('../img/border-tl.svg'),
        url('../img/border-bl.svg'),
        url('../img/border-br.svg');
    background-position:
        top left,
        top right,
        bottom left, 
        bottom right;
    background-repeat: no-repeat;
    background-size: 
        20px 20px,
        20px 20px,
        20px 20px,
        20px 20px; */
}
.rewards-wrap img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s ease all;
}
.reward-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.reward-card:hover .img-wrap{
    transform: scale(1.05);
}
#mcml-rewards .alert{
    max-width: 800px;
    margin: 30px auto 0 auto;
    background: var(--primaryLight);
    color: var(--secondary);
    font-size: 14px;
    text-align: center;
    border-radius: 6px;
}
.mcml-static .container-sm{
    max-width: 900px;
    margin: 0 auto;
}
.mcml-static .body-text-wrap{
    font-family: var(--fontBody);
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
.mcml-static .body-text-wrap .lead{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.body-text-wrap .h3{
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
}
.body-text-wrap > ul ul,
.body-text-wrap > ol ul{
    margin-bottom: 20px;
}
.body-text-wrap > ul ul > li,
.body-text-wrap > ol ul > li{
    margin: 10px 0;
}
.contest-window-list{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.contest-window-list li{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 12px 16px;
}
.contest-window-list li .icon{
    color: var(--primary);
    font-size: 48px;
    text-align: center;
}
.cw-content{
    max-width: 250px;
}
.cw-content h3{
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}
.cw-content p{
    color: #333;
    font-size: 14px;
    margin-bottom: 0;
}
/* body.contest-step{
    background: #f3f3f3;
} */
.contest-process-card-wrap{
    max-width: 920px;
    background: #FFF;
    padding: 20px;
    border-radius: 12px;
    margin: 10px auto;
}
.process-card-header{
    text-align: center;
}
.process-card-subtitle{
    font-family: var(--fontBody);
    color: #333;
    font-size: 20px;
    margin: 20px 0;
}
.contest-process-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.progressbar{
    margin: 0px auto;
    max-width: 600px;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}  
.progressbar:before{
    content: '';
    position: absolute;
    top: 108px;
    left: 50%;
    margin-left: -250px;
    width: 500px;
    height: 2px;
    background: #D9D9D9;
}
.progress-step{
    position: relative;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}
.progress-step .step{
    position: relative;
    width: 30px;
    height: 30px;
    font-family: var(--fontBody);
    line-height: 30px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    color: #FFF;
    background: #D9D9D9;
}
.progress-step.active .step{
    background: #00B2CD;
}
.progress-step .text{
    font-size: 12px;
    text-transform: uppercase;
    max-width: 80px;
    line-height: 1.35;
    margin-top: 15px;
}
.category-card{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease all;
    border: 3px solid transparent;
}
.category-card:hover{
    filter: brightness(1.075);
}
.category-card img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.category-card .counter{
    position: absolute;
    top: 10px;
    left: 10px;
    font-family:monospace;
    font-size: 11px;
    color: #000;
    background: rgba(255, 255, 255, 0.7);
    padding: 0px 8px;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.3);
}
.category-card .check{
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 22px;
    text-align: center;
    line-height: 1;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}
.category-card.selected .check{
    display: flex;
}
.category-card.selected{
    border-color: #00B2CD;
}
.category-card .category-card-body{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px;
    color: #FFF;
    font-size: 18px;
    line-height: 1.25;
    text-align: left;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
}
.category-card .category-card-body p{
    margin: 0;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
}
.upload-area {
    position: relative;
    min-height: 200px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.upload-photo-container{
    height: 100%;
}
.upload-area.dragover {
    background-color: rgba(0,0,0,0.05);
    border-color: var(--primary);
}
.preview-area {
    position: relative;
    width: 100%;
    height: 100%;
}
.preview-area img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}
.remove-file {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remove-file:hover {
    background: rgba(0,0,0,0.7);
}
.upload-prompt h3 span{
    display: block;
    font-size: 18px;
}
.upload-prompt h3 i{
    font-size: 48px;
    margin-bottom: 10px;
}
.upload-prompt p,
.note{
    margin: 0;
    font-size: 12px;
    color: #888;
}
.note a,
.note a:hover{
    color: #000;
    text-decoration: none;
}
.photo-notes{
    padding: 20px 20px 20px 30px;
    margin-left: 10px;
    font-size: 13px;
    border-left: 1px solid #ddd;
}
.photo-notes h3{
    font-size: 24px;
}
.photo-notes ul li{
    margin-bottom: 5px;
}
.process-card-body{
    width: 100%;
}
.photo-review{
    background: linear-gradient(118.21deg, #EFEFEF 29.89%, #DBDBDB 81.92%);
    border-radius: 12px;
    min-width: 350px;
}
.preview-wrap{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0px;
    background: linear-gradient(118.21deg, #EFEFEF 29.89%, #DBDBDB 81.92%);
    border-radius: 16px;
    overflow: hidden;
    min-height: 200px;
    height: 100%;
}
.preview-wrap .preview-img,
.preview-wrap .preview-details {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: inherit;
    padding: 20px;
}
.preview-wrap .preview-img {
    width: 45%;
}
.preview-img img{
    width: 100%;
    height: auto;
    max-height: 370px;
    object-fit: contain;
    border-radius: 8px;
}
.preview-wrap .preview-details {
    width: 55%;
    background: #246D95;
}
.preview-wrap .preview-details .form-label{
    color: #FFF;
    font-weight: bold;
}
.preview-wrap .preview-details .form-text{
    font-size: 11px;
    color: #CCC;
    text-align: right;
}
select.form-control{
    background: #FFF url(../img/chevron-down.svg) no-repeat 98% center;
    background-size: 18px;
}
.form-control.error {
    border-color: #dc3545;
    border-width: 2px;
}

.participate-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
#mcml-loading{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.25) url(../img/loading.gif) no-repeat center center;
    backdrop-filter: blur(4px);
    background-size: 44px auto;
    z-index: 9999;
}
.contest-step4 .process-card-title span{
    display: block;
    font-family: var(--fontHead);
    font-size: 24px;
    text-align: center;
}
.contest-step4 .process-card-title span:first-child{
    color: var(--primary);
}
.contest-step4 .process-card-text{
    color: #666;
    font-size: 14px;
}
.process-card-hr{
    margin: 30px 0;
    width: 100%;
    height: 1px;
    background-color: #666;
}
.dash-header,
.profile-bar{
    background: #F7F7F7;
    border-bottom: 1px solid #EEE;
}
.dash-header .contest-process-card-wrap{
    margin: 0 auto;
    padding: 10px 0;
}
.dash-header .container{
    padding-top: 10px;
    padding-bottom: 10px;
}
.dash-header .back-to-contest{
    display: block;
    width: 200px;
    height: auto;
}
.dash-header .back-to-contest img{
    width: 100%;
    height: auto;
}
.dash-header .profile-cta-btn{
    display: inline-block;
    padding: 4px 10px;
    background: var(--primaryLight);
    font-size: 13px;
    border: 1px solid #3AD5ED;
    color: #333;
    border-radius: 4px;
    min-width: 80px;
    white-space: nowrap;
    text-align: center;
    transition: 0.3s ease all;
}
.dash-header .profile-cta-btn:hover{
    background: var(--primary);
    color: #FFF;
}
.submit-another-btn{
    text-transform: none;
    font-weight: bold;
    border-width: 2px;
}
.submit-card-wrap .preview-img{
    background: #000;
    border-radius: 8px;
    padding: 20px 0px 0px 0px;
    background: linear-gradient(118.21deg, #EFEFEF 29.89%, #DBDBDB 81.92%);
}
.submit-card-wrap .preview-img img{
    max-height: 300px;
}
.submit-card-wrap .preview-img-overlay{
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    border-radius: 0 0 8px 8px;
    background: var(--secondary);
    color: #FFF;
    font-size: 14px;
    line-height: 1.5;
}
.preview-img-overlay .cat{
    font-weight: bold;
    margin-bottom: 10px;
}
.dash-header .contest-process-card-wrap{
    margin-top: 0;
    background: transparent;
}
.recent-submissions-slider img{
    width: 100px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
.recent-submissions-slider .img-wrap{
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center center;
    border-radius: 8px;
}
.recent-submission-item{
    position: relative;
}
.recent-submission-item h4{
    display: none;
}
.recent-submissions-slider{
    margin-top: 10px;
}
.recent-submissions-slider h4{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #FFF;
    font-size: 12px;
    margin: 0 0 5px 0;
    padding: 0 5px;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.recent-submissions-slider {
    position: relative;
    padding: 0 40px;
}

.recent-submissions-slider .swiper-button-next,
.recent-submissions-slider .swiper-button-prev {
    width: 36px;
    height: 36px;
    top: 55px;
    padding: 10px;
    line-height: 1;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.recent-submissions-slider .swiper-button-next:after,
.recent-submissions-slider .swiper-button-prev:after {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}
.recent-submissions-slider .swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.profile-cta{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mcml-stats{
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-right: 10px;
}
.mcml-stats img{
    width: 16px;
    height: auto;
    margin-right: 0px;
}
.mcml-stats span{
    display: inline-block;
    vertical-align: middle;
}
.mcml-stats .stat-count{
    min-width: 15px;
    text-align: center;
}
.mcml-stats .stat-text{
    padding-left: 5px;
    border-left: 1px solid #CCC;
}
.mstat{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
.cs-profile{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.cs-profile > div{
    min-height: 40px;
    margin-left: 10px;
}
.cs-profile a{
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}
.cs-profile .avatar img{
    display: block;
    width: 40px;
    height: auto;
    border-radius: 50%;
    border: 1px solid #CCC;
}
.cs-profile .greetings p{
    margin: 0;
    font-family: var(--fontHead);
    font-weight: bold;
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.cs-profile .greetings .name{
    display: block;
    font-family: var(--fontBody);
    font-weight: normal;
    font-size: 14px;
    color: #333;
    letter-spacing: 0px;
}
.profile-cta-btn-wrap{
    padding-left: 10px;
    border-left: 1px solid #CCC;
}
.back-to-contest{
    text-decoration: none;
    color: #333;
    font-size: 28px;
    line-height: 1;
}
.mr-2{
    margin-right: 10px;
}
.dash-nav{
    background: #D3F9FF;
}
.dash-nav-item{
    min-width: 150px;
}
.dash-nav-item,
.dash-nav-item .form-select{
    font-size: 13px;
}
.dash-nav-item .nav .nav-item a{
    color: #67B2BE;
    border-bottom: 2px solid transparent;
}
.dash-nav-item .nav .nav-item a:hover{
    color: var(--secondary);
}
.dash-nav-item .nav .nav-item.active a{
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}
.dash-nav-item .dropdown{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.mcml-share-btn{
    display: inline-block;
    padding: 8px 16px;
    font-family: var(--fontBody);
    font-size: 14px;
    color: #FFF;
    background: linear-gradient(111.66deg, #1E678F 17.9%, #091E29 113.99%);
    border-radius: 24px;
    border: none;
    text-decoration: none;
}
.mcml-share-btn:hover{
    background: linear-gradient(111.66deg, #3798cd 17.9%, #133e55 113.99%);
}
.mcml-share-btn i{
    margin-right: 5px;
}
.photo-card{
    background: #FFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 20px;
    min-height: 345px;
    transition: 0.3s ease all;
}
.photo-card:hover{
    background: #F7F7F7;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.photo-card > a{
    text-decoration: none;
    color: inherit;
}
.photo-card .cat{
    font-weight: bold;
    margin: 15px 0;
    font-size: 16px;
    color: var(--primary);
}
.photo-card .title{
    font-size: 16px;
    font-weight: normal;
}
.photo-card.card-ig .photo-info .review-status{
    padding-bottom: 0;
    margin-bottom: 0;
}
.photo-card.card-ig .title,
.photo-card.card-ig .cat,
.photo-card.card-ig .desc{
    padding-left: 10px;
    padding-right: 10px;
}
.photo-card.card-ig .desc{
    margin-bottom: 0;
}
.card-top,
.card-bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.card-top{
    align-items: flex-start;
}
.card-bottom{
    align-items: center;
}
.card-top .img-wrap{
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}
.card-top .photo-info{
    width: calc(100% - 140px);
}
.photo-info h4{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.photo-info h5{
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 5px;
}
.photo-info .review-status{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    /* border-bottom: 1px solid #E5E5E5; */
}
.photo-info .review-status .icon{
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.approved .photo-info .review-status{
    color: #74B924;
}
.approved .photo-info .review-status .icon{
    background-image: url(../img/icon-approved.svg);
}
.inreview .photo-info .review-status{
    color: #F09F42;
}
.inreview .photo-info .review-status .icon{
    background-image: url(../img/icon-inreview.svg);
}
.rejected .photo-info .review-status{
    color: #FF595B;
}
.rejected .photo-info .review-status .icon{
    background-image: url(../img/icon-reject.svg);
}
.photo-card.rejected .card-top .img-wrap{
    filter: grayscale(100%);
}
.photo-card.rejected .card-bottom{
    justify-content: flex-end;
}   
.card-middle{
    margin: 15px 0;
}
.card-middle p{
    font-size: 14px;
    color: #666;
}
.card-middle .img-wrap{
    width: 100%;
    background-size: cover;
    background-position: center center;
    border-radius: 6px;
}
.card-bottom .vote .icon{
    width: 45px;
    height: 45px;
    background-image: url(../img/vote.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.card-bottom .vote{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #666;
}
.card-bottom .vote .count{
    font-size: 27px;
    font-weight: bold;
    line-height: 0.9;
}
.vote-stats p{
    margin: 0;
}
.profile-bar{
    padding: 20px 0;
}
.profile-bar .d-flex{
    justify-content: center;
    align-items: baseline;
}
.profile-bar-item:first-child{
    margin-right: 10px;
}
.profile-bar-item img.avatar{
    width: 128px;
    height: auto;
    border-radius: 50%;
    border: 1px solid var(--primary);
    object-fit: cover;
    overflow: hidden;
    margin-right: 10px;
}
.profile-bar-item .content-stats{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.profile-bar-item .bio h1{
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}
.profile-bar-item .bio h3{
    font-size: 15px;
    font-weight: normal;
    margin: 0;
}
.profile-bar-item .bio{
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.content-stats span{
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
}
.profile-form{
    padding: 50px 0;
    background: #F7F7F7;
}
.profile-form .card{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.profile-form .card h1{
    font-family: var(--fontHead);
    font-size: 30px;
    font-weight: bold;
}
.profile-form .card h1,
.profile-form .card p{
    text-align: center;
}
.profile-form .upload-placeholder i{
    font-size: 36px;
}
.profile-form .upload-placeholder p:first-child{
    font-size: 14px;
}
.profile-form .upload-info{
    font-size: 12px;
    color: #666;
}
.profile-form label{
    font-weight: bold;
}
.dash-nav{
    padding: 5px 0;
}
.filter-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.card-ig{
    padding: 0;
}
.card-ig .card-top a,
.card-ig .card-middle a{
    text-decoration: none;
    color: inherit;
}
.card-ig .card-bottom{
    padding: 10px;
}
.card-ig .card-top{
    padding: 10px;
}
.card-ig .card-middle{
    margin: 0;
    padding: 0;
}
.card-ig .card-middle .img-wrap{
    width: 100%;
    height: 300px;
    border-radius: 0px; 
}
.card-ig .user-info{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.card-ig .user-info img{
    width: 36px;
    height: auto;
    border-radius: 50%;
    margin-right: 10px;
}
.card-ig .user-info .name{
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}
.card-ig h3{
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    margin: 10px 0;
}
.card-ig .card-bottom > div{
    width: 50%;
}
.card-ig .card-bottom .share{
    text-align: right;
    border-left: 1px solid #E5E5E5;
}
.h2.section-title{
    font-family: var(--fontHead);
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}
.breadcrumb{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
}
.breadcrumb li:not(:last-child):after{
    content: '/';
    margin-left: 10px;
}
.breadcrumb a{
    text-decoration: none;
    color: var(--primary);
    font-size: 11px;
}
.photo-details-wrap{
    margin: 30px 0;
}
.photo-details-wrap .photo-wrap{
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #333;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}
.photo-wrap .fullscreen-icon{
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 24px;
    color: #FFF;
    line-height: 1;
}
.photo-details .cat-link{
    text-decoration: none;
    color: inherit;
}
.photo-details .cat-link h2{
    font-size: 18px;
    font-weight: normal;
    color: var(--primary);
}
.photo-details .h1{
    font-family: var(--fontHead);
    font-size: 24px;
    font-weight: normal;
}
.photo-details .cta-wrap{
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    margin-top: 10px;
    padding: 10px 0;
    margin-bottom: 10px;
}
.photo-details .cta-wrap a{
    padding: 0 24px;
    min-width: 140px;
    text-align: center;
    font-size: 16px;
}
.photo-details .user-info{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.photo-details .user-info img{
    width: 45px;
    height: auto;
    border-radius: 50%;
    margin-right: 10px;
}
.photo-details .user-info p{
    margin: 0;
}
.photo-details .user-info p.name{
    font-size: 14px;
    font-weight: normal;
}
.photo-details .user-info p.location{
    font-size: 12px;
    color: #666;
}
.vote-popup{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
}
body.voted .vote-popup{
    display: flex;
}
.vote-popup .vote-popup-inner{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    background: #FFF;
    padding: 20px 10px;
    border-radius: 48px 48px 0 0;
}
.vote-popup .close-vote-popup{
    position: absolute;
    top: -45px;
    right: 10px;
    background: url(../img/close-circle.svg) no-repeat center center;
    background-size: contain;
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
}
.vote-popup .icon{
    margin-top: 10px;
    font-size: 45px;
    line-height: 1;
    color: var(--primary);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation: iconAppear 0.5s ease forwards;
    animation-delay: 0.3s;
}
@keyframes iconAppear {
0% {
    opacity: 0;
    transform: translateY(40px) scale(0.7);
}
100% {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}
.vote-popup .recent{
    border-top: 1px solid #E5E5E5;
}

.recent {
    margin-top: 20px;
    width: 100%;
}
.recent-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.recent-scroll::-webkit-scrollbar {
    display: none;
}
.recent-item {
    flex: 0 0 auto;
    width: 100px;
    text-decoration: none;
    color: inherit;
}
.recent-item .img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 8px;
}
.recent-item .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recent-item .title {
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dialogBoxWrap{
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    z-index: 9999;
}
.dialogBoxWrap .dialogBox{
    position: relative;
    border-radius: 8px;
    background: #FFF;
    width: 280px;
    padding: 20px;
    box-shadow: 0px 2px 12px 0 rgba(0, 0, 0, 0.4);
    z-index: 10000;
}
.dialogBoxWrap .dialogBox > .closeDialogBox{
    position: absolute;
    top: -30px;
    right: -30px;
    width: 30px;
    height: 30px;
    background: transparent url(../img/close-circle.svg) center center no-repeat;
    background-size: contain;
    border: none;
}
.dialogBox .icon{
    font-size: 48px;
    line-height: 1;
    margin-bottom: 10px;
}
.dialogBox > h4{
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.dialogBox > p{
    font-size: 14px;
    color: #666;
}

.success .dialogBox h4,
.success .dialogBox .icon{
    color: #74B924;
}
.warning .dialogBox h4,
.warning .dialogBox .icon{
    color: #F09F42;
}
.error .dialogBox h4,
.error .dialogBox .icon{
    color: #FF595B;
}

.dialogBox .cta-wrap{
    gap: 10px;
    justify-content: center;
}
.dialogBox .cta-btn.primary{
    display: inline-block;
    background: linear-gradient(99.03deg, #288BC1 4.3%, #13425B 104.25%);
    border: 1px solid transparent;
    border-radius: 38px;
    padding: 5px 10px;
    color: #FFF;
    margin: 10px 10px 20px 10px;
    text-decoration: none;
    font-family: var(--fontBody);
    text-transform: uppercase;
    text-align: center;
    transition: 0.3s ease all;
    letter-spacing: 0.025em;
    min-width: 90px;
}
.dialogBox .cta-btn.primary:hover{
    background: linear-gradient(99.03deg, #4EC0FF 14.31%, #13425B 104.25%);
}
.dialogBox .cta-btn.secondary{
    display: inline-block;
    background: #FFF;
    border: 1px solid #13425B;
    border-radius: 38px;
    padding: 5px 10px;
    color: #13425B;
    margin: 10px 10px 20px 10px;
    text-decoration: none;
    font-family: var(--fontBody);
    text-transform: uppercase;
    text-align: center;
    transition: 0.3s ease all;
    letter-spacing: 0.025em;
    min-width: 90px;
}
.dialogBox .cta-btn.secondary:hover{
    color: #FFF;
    border-color: var(--primary);
    background: var(--primary);
}

.participate-btn,
.vote-btn,
.process-card-btn,
.edit-btn,
.submit-another-btn,
.mcml-share-btn{
    height: 40px;
    line-height: 38px;
    padding: 0 15px;
    border-radius: 6px;
    margin: 10px 0;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: bold;
    border-width: 2px;
}
.mcml-share-btn.voteBtn{
    min-width: 100px;
    text-align: center;
}
.preview-img-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--secondary);
    padding: 10px;
    border-radius: 8px;
}
.preview-img-wrap .preview-img{
    width: 120px;
    height: 120px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
}
.preview-img-wrap .preview-img-overlay{
    flex: 1;
    border-radius: 0px;
    background: transparent;
    margin: 0;
    padding: 0;
    word-break: break-all;
    overflow-wrap: break-word;
}
.contest-step .swiper-button-next:after, 
.contest-step .swiper-button-prev:after{
    font-size: 18px;
}
.contest-step .swiper-button-next, 
.contest-step .swiper-button-prev{
    width: 20px;
    height: 20px;
    padding: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 2px 12px 0 rgba(0, 0, 0, 0.4);
}

#mcml-hero .hero-wrap .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 700px;
}
#mcml-hero .hero-wrap{
    background: #F5F5F5 url(https://images.hindustantimes.com/ht100/img/photo-contest/img/mcml-hero-desktop2.jpg) no-repeat center center;
    background-size: 100% auto;
}
#mcml-hero .hero-wrap:after{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.8) 70%, rgba(255, 255, 255, 0) 100%);
    height: 500px;
}
#mcml-hero .hero-top,
#mcml-hero .hero-bottom{
    position: relative;
    z-index: 3
}

#mcml-faqs .accordion{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
#mcml-faqs .accordion-item{
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
}
#mcml-faqs .accordion-header .accordion-button{
    font-weight: bold;
}
#mcml-faqs .accordion-button:focus,
#mcml-faqs .accordion-button:not(.collapsed){
    box-shadow: none;
}
/* #mcml-faqs .accordion-button.collapsed,
#mcml-faqs .accordion-collapse.show{
    background: #57BECD;
} */

#mcml-jury{
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}
#mcml-jury .section-desc{
    max-width: 600px;
    margin: 0 auto;
} 
.jury-wrap .jury-card-img{
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 12px auto;
}
.jury-wrap .jury-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease all;
}
.jury-card:hover .jury-card-img img{
    transform: scale(1.1);
}
.jury-wrap h3{
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}
.jury-wrap p{
    font-size: 14px;
    color: #333;
    min-height: 85px;
    margin-bottom: 0;
}
.jury-card{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}
.jury-card .jury-card-img{
    flex: 0 0 100px;
}
.jury-card .jury-card-body{
    flex: 1;
}

#mcml-faqs .accordion-button:not(.collapsed){
    background:#C1F7FF;
}
#editors-pick{
    background: #f9f9f9;
}
#editors-pick .section-title{
    font-family: var(--fontHead);
    font-size: 36px;
    line-height: 1.3;
    color: #1E678F;
}
#editors-pick .section-desc{
    color: #3C3C3C;
    font-family: var(--fontBody);
    font-size: 20px;
    line-height: 1.3;
}
#editors-pick .section-desc span{
    color: #1E678F;
    display: block;
}
#editors-pick .timestamp{
    font-size: 14px;
    color: #666;
    text-align: right;
    padding: 10px 0;
}
.editor-img-wrap {
    position: relative;
    background: #000;
    border-radius: 8px;
    z-index: 1;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}
.editor-img-wrap:before,
.editor-img-wrap:after{
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}
.editor-img-wrap:before{
    right: 20px;
    top: 20px;
    background-image: url(../img/icon-tr.png);
}
.editor-img-wrap:after{
    left: 20px;
    bottom: 20px;
    background-image: url(../img/icon-bl.png);
}
.editor-img-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    max-height: 100%;
}

.editor-img-wrap .overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 10px;
    background: transparent;
    text-align: center;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}
.editor-img-wrap .overlay .uploader span{
    display: inline-block;
    vertical-align: middle;
    color: #FFF;
    font-size: 24px;
    font-weight: normal;
    font-family: var(--fontHead);
    line-height: 1.3;
}
.editor-img-wrap .overlay .uploader span:first-child{
    font-style: italic;
    margin-right: 5px;
}
.editor-pick-item.item-details{
    padding: 20px;
    background: radial-gradient(50% 50% at 50% 50%, #f6f6f6 0%, #eee 100%);
    border-radius: 24px;
    color: #333;
    font-size: 16px;
    margin-bottom: 40px;
    min-height: 350px;
}
.editor-pick-item.item-details .category,
.editor-pick-item.item-details .title{
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.editor-pick-item.item-details .desc{
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.editors-pick-header.d-md-block{
    padding: 20px;
}

/* #mcml-faqs .accordion-item{
    background:#C1F7FF
}
#mcml-faqs .accordion-item h2:focus,
#mcml-faqs .accordion-collapse.show{
    background: #57BECD;
} */

/* All Mobile */
@media screen and (max-width: 767px) {
    #mcml-hero .hero-wrap{
        background: #F5F5F5 url(https://images.hindustantimes.com/ht100/img/photo-contest/img/mcml-hero-mobile.jpg) no-repeat center top;
        background-size: cover;
    }
    #mcml-hero .hero-bottom{
        color: #fff;
    }
    #mcml-hero .hero-wrap .container{
        justify-content: space-between;
        height: 600px;
        min-height: unset;
        padding-bottom: 20px;
        background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 70%);
    }
    #mcml-hero .hero-wrap:after{
        display: none;
    }
    #mcml-hero .hero-bottom .mcml-terms-wrap a,
    #mcml-hero .hero-bottom a.mcml-login-btn{
        color: #FFF;
    }
    #mcml-hero .mcml-title{
        font-size: 24px;
    }
    .mcml-logo{
        height: 80px;
        margin-bottom: 18px;
    }
    #mcml-hero .hero-img{
        display: block;
        max-width: 96%;
        height: auto;
        margin: 0 auto 10px auto;
    }
    .mcml-desc{
        max-width: 360px;
        margin: 0 auto 30px auto;
        font-size: 14px;
        line-height: 1.3;
    }
    #mcml-contest-details .section-desc{
        max-width: 80%;
        margin: 0 auto;
    }
    #mcml-contest-details .cta-wrap{
        justify-content: center;
    }
    .progressbar{
        display: none;
        max-width: 100%;
        margin: 0px auto 20px auto;
    }  
    .progressbar:before{
        content: '';
        position: absolute;
        top: 95px;
        left: 50%;
        margin-left: -38%;
        width: 76%;
        height: 2px;
        background: #D9D9D9;
    }
    .contest-process-card{
        gap: 10px;
    }
    .contest-process-card-wrap{
        padding: 0 0 20px 0;
        margin: 30px auto 0 auto;
    }
    .photo-notes{
        position: relative;
        padding: 20px 10px 40px 10px;
        margin-left: 0;
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 14px;
        border-left: none;
        border-top: 1px solid #ddd;
        /* max-height: 200px;
        overflow: hidden; */
    }
    .photo-notes.expanded{
        max-height: 100%;
        padding-bottom: 20px;
    }
    /* .photo-notes.expanded:after,
    .photo-notes.expanded:before{
        display: none;
    }
    .photo-notes:after{
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    }
    .photo-notes:before{
        content: 'Read more';
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        height: 20px;
        font-size: 12px;
        color: #333;
        z-index: 2;
        text-align: center;
    } */
    .photo-notes p:last-child{
        margin-bottom: 0;
    }
    .preview-wrap{
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
    .preview-wrap .preview-img,
    .preview-wrap .preview-details {
        width: 100%;
    }
    .preview-img img{
        max-height: 220px;
    }
    .recent-submissions-slider {
        padding: 0 30px;
    }
    .recent-submissions-slider .img-wrap{
        width: 80px;
        height: 80px;
    }
    .recent-submissions-slider .swiper-button-next,
    .recent-submissions-slider .swiper-button-prev {
        width: 25px;
        height: 25px;
        top: 50px
    }
    .recent-submissions-slider .swiper-button-next:after,
    .recent-submissions-slider .swiper-button-prev:after {
        font-size: 12px;
    }
    .dash-header .back-to-contest img{
        width: 140px;
    }
    .cs-profile .greetings{
        display: none;
    }
    /* .cs-profile .greetings p,
    .cs-profile .greetings .name{
        font-size: 13px;
    } */
    .dash-header .profile-cta-btn{
        padding: 4px 8px;
        font-size: 12px;
    }
    .mcml-stats{
        display: none;
    }
    .process-card-cta .edit-btn,
    .process-card-cta .participate-btn,
    .process-card-cta .vote-btn{
        min-width: 150px;
    }
    .process-card-cta .cta-wrap{
        gap: 10px;
    }
    .dash-nav-item{
        min-width: unset;
    }
    .dash-nav-item .dropdown{
        flex-direction: column;
        text-align: center;
    }
    .dash-nav-item .dropdown span:first-child{
        display: none;
    }
    .dash-nav-item .dropdown .form-select{
        padding: 10px 25px 10px 10px;
    }
    .dash-nav-item .nav .nav-item a.nav-link{
        padding: 10px;
    }
    .profile-bar-item:first-child{
        margin-right: 0px;
    }
    .profile-bar-item img.avatar{
        width: 64px;
        margin-right: 0px;
        margin-bottom: 10px;
    }
    .profile-bar .d-flex{
        justify-content: center;
        align-items: center;
    }
    .profile-bar-item .bio{
        text-align: center;
    }
    .card-ig .user-info img{
        width: 24px;
    }
    .card-bottom .vote .icon{
        width: 30px;
        height: 30px;
    }
    .card-ig .user-info .name{
        font-size: 12px;
        white-space: nowrap;
    }
    .card-ig .mcml-share-btn i{
        display: none;
    }
    .card-ig .card-bottom .vote-stats p{
        font-size: 11px;
        margin-bottom: 5px;
    }
    .card-ig .card-bottom .vote .count{
        font-size: 16px;
    }
    .card-ig h3{
        font-size: 14px;
    }
    .card-ig .card-bottom{
        padding: 5px;
    }
    .card-ig .card-bottom > div.vote{
        width: 60%;
        gap: 5px
    }
    .card-ig .card-bottom > div.share{
        width: 40%;
        border-left: none;
    }
    .filter-wrap span:first-child{
        display: none;
    }
    .photo-details-wrap{
        margin: 20px 0 40px 0;
    }
    .photo-details-wrap .photo-wrap{
        height: 350px;
        margin-bottom: 20px;
    }
    .card-ig .card-middle .img-wrap{
        width: 100%;
        height: 150px;
        border-radius: 0px; 
    }
    .uploads-wrap .card-ig .card-middle .img-wrap{
        width: 100%;
        height: 230px;
        border-radius: 0px; 
    }
    .process-card-cta{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        /* background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%); */
        background: rgba(255, 255, 255, 0.6);
        border-top: 1px solid #FFF;
        backdrop-filter: blur(6px);
    }
    .process-card-cta .note{
        color: #333;
    }
    .process-card-cta .note a{
        text-decoration: underline;
    }
    /* .process-card-body .category-card-img{
        height: 180px;
        overflow: hidden;
    } */
    .contest-home .footer{
        padding-bottom: 60px;
    }
    .contest-home .floatingShare{
        display: none;
    }
    .contest-home .contest-step1 .category-card-img{
        height: 160px;
    }
    .card .card-image img.img-fluid{
        object-fit: contain;
        max-height: 200px;
    }
    #mcml-hero .cta-wrap{
        justify-content: center;
    }
    .contest-window-list{
        flex-direction: column;
    }
    #photoCategory{
        background: #DDD;
    }
    #mcml-hp-cats .category-card-img{
        max-height: 200px;
        overflow: hidden;
    }
    .rewards-wrap .col:not(:first-child){
        margin-top: 30px;
    }
    #mcml-rewards .alert{
        margin: 0 auto;
    }
    .preview-area img {
        max-height: 200px;
    }
    #editors-pick .section-title{
        font-size: 32px;
    }
    #editors-pick .section-desc{
        font-size: 16px;
        margin-bottom: 16px;
    }
    .editor-pick-item.item-details{
        margin-bottom: 0;
        margin-top: 8px;
    }
}
/* Desktop only */
@media screen and (min-width: 768px) {
    .mcml-hero .mcml-title{
        font-size: 44px;
    }
    .mcml-logo{
        height: 100px;
    }
    #mcml-contest-details .section-desc{
        max-width: 600px;
        margin: 0 auto;
    }
    .mcml-contest-slider-d{
        margin-top: 50px;
    }
    .contest-detail-card .step{
        width: 60px;
        height: 60px;
        line-height: 54px;
    }
    .contest-detail-card.step1 .step,
    .contest-detail-card.step3 .step{
        top: 0px;
    }
    .contest-detail-card.step2 .step,
    .contest-detail-card.step4 .step{
        bottom: 0px;
    }
}