@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jaro:opsz@6..72&family=Oswald:wght@200..700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --primary-red: #EE2738;
    --dark-bg: #1c1c23;
    --black-color: #1c1c23;
    --darker-bg: #0f0f0f;
    --light-gray: #b9b9b9;
    --common-gray: #DBDBDB;
    --white: #ffffff;
    --gold: #D4AF37;
    --footer-bg: #2a2a2a;
}


/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background-color: var(--darker-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

.text-primary-red {
    color: var(--primary-red);
}

.text-gray {
    color: #989898;
}

.container {
    position: relative;
    z-index: 2;
}

/* Loader */
.loader{
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader svg, .loader img{
  width: 250px;
  height: auto;
  padding: 3px;
}


.loader svg path {
  fill: none;              /* hide fill */
  stroke: #fff;            /* color of stroke */
  stroke-width: 2;         /* thickness */
  stroke-linecap: round;
  stroke-linejoin: round;

  /* animation setup */
  stroke-dasharray: 1000;  /* large number: total path length */
  stroke-dashoffset: 1000; /* fully hidden initially */
  /* animation: draw 5s linear forwards; */
  animation: drawLines 2.5s linear infinite alternate;
}

.dashed-top-border{
    border-top: 1px dashed #6a6a6a;
}

@keyframes drawLines {
 
  to {
    stroke-dashoffset: 0;
  }
 
}


/* ===== HEADER ===== */

#ist-datetime{
    position: absolute;
    right: 10px;
    top: 6px;
    font-size: 13px;
    font-weight: 300;
    /* z-index: 9999; */
}

.header-section {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    background: transparent;
    backdrop-filter: none;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: transparent;
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.fixedHeader .navbar-brand{
    opacity: 1;
}

.logo-image {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-item {
    position: relative;
}


/* SVG positioning */

.nav-item a{
    position: relative;
    z-index: 2;
}

.nav-item svg {
  width: 100%;
  height: 150%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-60%);
  z-index: 1;
}

/* Default path state (no animation yet) */
.nav-item path {
  width: 100%;  
  stroke: #fff;
  stroke-width: 4;
  fill: none;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  /* transition: stroke-dashoffset 0.3s; */
}

/* When hovered, trigger the draw animation */
.nav-item:hover path, .nav-item.active path {
  animation: draw 2s ease forwards;
}
  
  @keyframes draw {
    to {
      stroke-dashoffset: 0;

    }
  }

 


.navbar-nav .nav-link {
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    letter-spacing: 0.5px;
    font-weight: 300;
    cursor: pointer;
}

.navbar-toggler {
    border-color: var(--white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: end;
    overflow: hidden;
    padding-bottom: 2rem;
}

.fullHeight{
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.heroTextImage{
    opacity: 0;
    transform: scale(0.9);
}

@media(max-width:576px){
    .heroTextImage{
        opacity: 1;
    }
}

.heroTextImage svg{
    width: 100%;
    height: auto;
}

.heroLogo img{
    width: 100%;
    height: auto;
}
.heroLogo {
    width: 200px;
    margin-bottom: 2rem;
}




.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 35, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Jaro', cursive;
    font-size: 7rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--common-gray);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 5rem;
    line-height: 1.2;
    padding-top: 1rem;
    text-align: right;
}

.hero-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.countdown-box {
    background: transparent;
    border: none;
    /* padding: 1.5rem 2rem; */
    border-radius: 0;
}

.countdown-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3.5px;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.countdown-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--white);
    font-weight: 400;
}

.btn-participate {
    /* background: var(--white); */
    border: 3px solid #fff;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    /* transform: scale(1) translateX(-24%); */
    transform: scale(1);
    font-size: 1.4rem;
    position: relative;
    cursor: pointer;
}

.countdown-box, .celebrateLine{
    min-width: 292px;
}

.btn-participate:hover{
    transform: scale(1.05);
    background: #fff;
    color: var(--primary-red);
}

.btn-participate span{
    position: relative;
    z-index: 2;
}

.btn-participate svg {
  width: 100%;
  height: 150%;
  position: absolute;
  top: 37%;
  left: 0;
  transform: translateY(-55%);
  z-index: 1;
  
}

/* Default path state (no animation yet) */
.btn-participate path {
  width: 100%;  
  stroke: #fff;
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
   animation: draw_new 3s ease-in-out infinite alternate;
  transition: all 0.3s ease-in-out;
}

.btn-participate:hover path {
    stroke: var(--primary-red);
    fill:rgba(0, 0, 0, 0.5);
}

  
@keyframes draw_new {
    to {
        stroke-dashoffset: 0;
    }
}


/* .btn-participate:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    
} */

.mouse {
    width: 25px;
    height: 45px;
    border-radius: 20px;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mouse:hover{
    background: var(--primary-red);
}

.mouseWheel {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--white);
    transform: translateY(-8px);
    animation: mouseWheel 1s infinite alternate;
}

@keyframes mouseWheel {
    0% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(2px);
    }
}

/* ===== SECTION BADGES ===== */
.section-badge {
    display: inline-block;
    color: var(--darker-bg);
    padding: 0.5rem 0rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    position: relative;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.section-badge svg, .section-badge-light svg{
    width: calc(120% + 30px);
    height: auto;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.section-badge svg path, .section-badge-light svg path{
    fill: none;
    stroke-width: 2;
}

.section-badge svg path{
    stroke: #000;
}

.section-badge-light svg path{
    stroke: #fff;
}


.section-badge-light {
    display: inline-block;
    color: #fff;
    padding: 0.5rem 0rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    position: relative;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* .dotted-pattern{
    width: 40%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/dotted-pattern.png) repeat-x;
    background-size: auto 100%;
    opacity: 0.2;
    animation: movePattern 10s linear infinite;
} */

@keyframes movePattern {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1000px 0;
  }
}

/* ===== ABOUT SECTION ===== */

.about-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    
    background: #fff;
}

.about-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.about-section {
    padding: 5rem 0 0;
    background: var(--darker-bg);
}

.section-title {
    /* font-family: 'Oswald', sans-serif; */
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.font-medium{
    font-weight: 500;
}

@media(min-width:1200px){
    .border-right-gray{
        border-right: 1px solid #ccc;
    }
}

.medal-icon{
    max-width: 80px;
}
.medal-icon svg{
    width: 100%;
    height: auto;
    fill: #dccdbe;
}

.medal-icon svg path{
    fill: #dccdbe;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 55%;
    text-align: justify;
}

.about-image-container {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 48%;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.redText{
    color: #000;
    font-weight: 500;
}

.aboutContent {
    z-index: 2;
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 5/3.7;
    /* height: auto; */
    display: block;
    object-fit: cover;
    
}

.separator-banner {
    background: var(--white);
    color: var(--darker-bg);
    text-align: center;
    padding: 0rem 0 0;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 0.7;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    gap: 0rem;
    
}

.separator-banner span {
    color: var(--primary-red);
}

.animateText{
animation: marquee 30s linear infinite;
 white-space: nowrap;

 padding: 1rem 5rem 0rem;
}

@keyframes marquee {
    0% {
        translate: 0;
    }

    100% {
        translate: -100%;
    }
}

/* ===== AWARDS SECTION ===== */
.awards-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.awards-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.awards-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.3);
}

.awards-section .container {
    position: relative;
    z-index: 2;
}

.awards-image-container {
    position: relative;

}

.awards-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    max-width: 100%;
}

.prizes-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-left: 2rem;
}

.prize-item {
    margin-bottom: 1.5rem;
    /* display: flex;
    justify-content: flex-start; */
}

.prize-item:last-of-type {
    margin-bottom: 2.5rem;
}

.prize-image {
    width: 100%;
    height: auto;
    vertical-align: top;
}

/* .winner-announcement {
    margin-top: 2rem;
} */

.winner-announcement h4{
    /* font-family: 'Oswald', sans-serif; */
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.announcement-arrow {
    width: 100px;
    height: auto;
    vertical-align: middle;
    margin-left: 20px;
}

.winner-announcement p {
    font-family: 'Inter', sans-serif;
    color: var(--light-gray);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.winner-announcement p strong{
    color: #fff;
}

.gold{
    color: #C3B762;
}

.silver{
    color: #C8C8C8;
}

.bronz{
    color:#EBAD6F;
}

.prize-money{
    text-align: center;
    position: relative;
}

.prize-disclaimer{
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    font-style: italic;
}

.prize-money label{
    font-size: 1rem;
    position: relative;
    white-space: nowrap;
    display: block;
    padding-top: 15px;
    /* right: inherit; */
}

.prize{
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    transform: translateX(15px);
}

.extra-winner-prize{
    font-size: 3rem;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-align: left;
    color: #dccdbe;
    /* transform: translateX(15px); */
}

.prize span{
    font-weight: 300;
}

.top_25 .galleryImg{
    width: 20%;
}

.top_3 img{
    /* border: 3px solid #fff; */
    transition: all 0.2s ease-in-out;
}

.top_25 img{
    /* border: 1px solid #fff; */
    transition: all 0.2s ease-in-out;
}

.top_3 img:hover, .top_25 img:hover{
    transform: scale(1.03);
}

/* ===== ELIGIBILITY SECTION ===== */
.eligibility-section {
    padding: 5rem 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.eligibility-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.eligibility-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eligibility-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 1.5rem;
}

.rules-subtitle {
    /* font-family: 'Oswald', sans-serif; */
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.rules-list li::before {
    content: '•';
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 3px;
    line-height: 1;
}

/* ===== JURY SECTION ===== */
.jury-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.jury-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000;
}

.jury-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.jury-section .container {
    position: relative;
    z-index: 2;
}

.jury-title {
    /* font-family: 'Oswald', sans-serif; */
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.jury-card {
    text-align: center;
    position: relative;
    z-index: 2;
    display: block;
    text-decoration: none;
    
}

a.jury-card{
    cursor: pointer;
}

.jury-image-container {
    width: 100%;
    /* max-width: 280px; */
    aspect-ratio: 3 / 3.1;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: none;
    background: var(--light-gray);
    transition: all 0.3s ease-in-out;
}

.jury-image-container:hover{
    background: #fff;
}

.jury-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.jury-image:hover {
    filter: grayscale(0%);
}

.jury-card:first-child .jury-image-container {
    border: none;
}

.jury-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.jury-designation {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--light-gray);
    font-style: italic;
}


.fancybox__slide h4, .fancybox__slide p{
color: #0f0f0f;
}

.jury-card.f-html{
    max-width: 900px;
}

.form-submit-btn.terms-condition-btn{
    text-transform: capitalize;
    text-decoration: none;
}

.jury-card.f-html .jury-image-container:hover{
    background: var(--light-gray);
}

.jury-card.f-html .jury-image-container img{
    filter: grayscale(0);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
}

h1.tc_heading{
    font-size: clamp(2rem,4vw,4rem);
    text-align: center;
    font-weight: 400;
    position: absolute;
    inset: 0;
    margin: auto;
    display: table;
    height: auto;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

@media(min-width:992px){
    h1.tc_heading{
        transform: translateY(100px);
    }
}

/* .contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
} */

/* .contact-info {
    margin-top: 2rem;
} */

.contact-item {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 1rem; */
    margin-bottom: 1.5rem;
    color: #E3E3E3;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact-item a{
    color: #fff;
    text-decoration: none;
}

.contact-item svg {
    color: var(--primary-red);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.contact-image-container {
    position: relative;
    z-index: 2;
}

.contact-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    filter: saturate(0);
}

.mb-40{
    margin-bottom: 1.5rem;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: 5rem 0;
    background: #E3E3E3;
}

.partners-title {
    /* font-family: 'Oswald', sans-serif; */
     font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partners-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--darker-bg);
}

.partner-logo-container {
    text-align: center;
}

.partner-logo-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    filter: grayscale(100);
}

.winner-announcement-bg{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.winner-announcement-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.winnerData{
    position: relative;
    z-index: 9;
}

/* ===== FOOTER ===== */
.footer-section {
    padding: 3rem 0;
    background: var(--dark-bg);
}

/* .footer-form-field{
    width: 25%;
} */

/* .footer-btn-field{
    width: 11.25%;
} */

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--white);
    padding: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    outline: none;
}

.form-check-input{
    border: 1px solid var(--black-color);
}

.footer-input::placeholder {
    color: var(--light-gray);
}

.footer-input:focus, .footer-input:-internal-autofill-selected{  
    background-color: none !important;
    border-bottom-color: var(--primary-white);
}

.btn-submit {
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.8rem 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    border-radius: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--white);
    color: var(--primary-red);
}

/* .footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
} */

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
}

.social-icons {
    display: inline-flex;
    vertical-align: middle;
    gap: 1rem;
    margin-right: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    background: var(--primary-red);
}

.footer-brand {
    font-family: 'Inter', sans-serif;
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 400;
}

/*********************************************************/

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.popupCont{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

header.fixedHeader .fixed-top{
    background: var(--black-color);
}

.popupOverlay{
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.swal2-container{
  z-index: 99999 !important;
}

.form{
    max-width: 65%;
    max-height: 95vh;
    overflow: auto;
    background-color: #fff;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.form .container{
    max-width: 100%;
}

.t_c{
    font-size: 0.8rem;
}

.form p{
    color: var(--black-color);
}

.form h5{
color: #000;
font-family: 'Oswald', sans-serif;
font-size: 1.6rem;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
}

.form label{
    color: var(--black-color);
    font-size: 1rem;
    padding-bottom: 10px;
}

.form h5 span, .form label span{
    color: var(--primary-red);
}

.form-control{
border-radius: 5px;
border: 1px solid #1C1C23;
background: rgba(255, 255, 255, 0.00);
height: 50px;
}

textarea.form-control{
    height: 100px;
}

.form-submit-btn{
    padding: 0.7rem 3rem;
    background: var(--primary-red);
    color: #fff;
    border: none;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
}

input.fileUpload{
    position: absolute;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.form .fileUploadLabel{
    display: flex;
    width: 100%;
    height: 100px;
    border: 1px dashed var(--black-color);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    box-sizing: border-box;
    cursor: pointer;
}

.form .fileUploadLabel:hover {
    border-color: var(--primary-red);
    background-color: rgba(238, 39, 56, 0.04);
}

.form .fileUploadLabel span.blackColor{
    display: block;
    color: var(--black-color);
    font-size: 0.8rem;
}

.form .fileUploadLabel svg{
    width: 30px;
    height: auto;
}

.closePopup svg{
    width: 18px;
    height: auto;
    cursor: pointer;
}

.check-rules{
    color: var(--black-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
}

.form-submit-btn:hover{
    background: var(--black-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #000 !important;
}

/*******************************************/

.selectField svg{
    position: absolute;
    width: 15px;
    height: auto;
    right: 10px;
    top: 50%;
    fill: #1c1c23;
    transform: translateY(-50%);
    pointer-events: none;
}

.subTitle{
    font-weight: 300;
}

.is-fullsize{
    background: #fff;
    border-radius: 10px;
}

.winner-head{
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/***************************************************/

.winner-annoncement-details{
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: stretch;
}

.winner-annoncement-details h5{
    font-size: clamp(14px,1vw,1.5rem);
     line-height: clamp(1.3rem,1.7vw,2rem);
     font-weight: 300;
     letter-spacing: 1px;
     /* text-align: center; */
}

.winner-annoncement-details h5 strong{
    display: block;
    font-size: clamp(16px,1.3vw,1.4rem);
    font-weight: 500;
    letter-spacing: 1px;
}
.winner-annoncement-details h5 span{
    letter-spacing: 2px;
}

.vLine{
    width: 1px;
    border-right: 1px solid #ccc;
}

.annoncement-details-data h2{
    font-size: clamp(24px,2vw,3rem);
    /* font-family: 'Oswald', sans-serif; */
    /* font-family: 'Inter', sans-serif; */
    font-weight: 400;
    color: var(--light-gray);
}

.annoncement-details-data p{
    text-align: justify;
    font-weight: 300;
    letter-spacing: 1px;
}

.celebrateLine{
    letter-spacing: 1px;
}

@media(min-width:1200px){
    .celebrateLine{
        font-size: 1.05vw;
    }
}

.celebrateLine span{
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    color: #dedede;
}

.font-italic{
    font-style: italic;
}

.annoncement-details-data h6{
    font-weight: 300;
    line-height: 1.5rem;
}

.annoncement-details-data h6 strong{
    font-weight: 500;
}

.annoncement-details-data h6 span{
    font-style: italic;
}

.executive-chair{
    max-width: 300px;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    /* border: 1px solid rgba(255, 255, 255, 0.4); */
    border-radius: 5px;
    background: #989898;
    margin-bottom: 15px;
    filter: grayscale(10);
    box-shadow: 2px 2px 8px rgba(255, 255, 255, 0.1);
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
}