* {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
}
html{
    scroll-behavior: smooth;
    padding: 0;
    height: 100%;
    
}
:root{
    --darkColor: #030d2a;
    --redColor: #d83646;
    --whiteColor: white;
}
body{
    background-color: var(--darkColor);
    color: white;
    padding: 0;
    margin: 0;
}
body .showOnMobile{
    display: none !important;
}
.noScroll {
    overflow: hidden;
}
.maxWidth{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.mobileOnly{
    display: none;
}
.sectionPaddingLeftRight{
    padding-left: 40px;
    padding-right: 40px;
}
.sectionPaddingTopBottom{
    padding-top: 60px;
    padding-bottom: 60px;
}
.displayFlex{
    display: flex !important;
    flex-direction: row;
}
.displayFlexCenter{
    display: flex !important;
    flex-direction: row;
    align-items: center;
}
.spaceBetween{
    justify-content: space-between;
}
.alignCenter{
    align-items: center;
}
.flexWrap{
    flex-wrap: wrap;
}
.flexGapMin{
    gap: 7px;
}
.flexGapSmall{
    gap: 10px;
}
.flexGapMedium{
    gap: 20px;
}
.flexGapBig{
    gap: 25px;
}
main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 103px);
}
.freeSpace{
    width: 100%;
    flex: 1;
    background-color: white;
}
header{
    padding: 10px 40px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: transparent !important;
    padding-top: 50px;
}
header .logo {
    filter: saturate(120%);
    margin-left: -10px;
}
.headerSignUp{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}
.hamburgerMenuContainer{
    display: block;
    width: 26px;
    position: relative;
}
.hamburgerMenu {
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 22px;
    z-index: 2;
}

.hamburgerMenu span {
    background: white;
    height: 3.5px;
    width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
    position: absolute;
}

.hamburgerMenu span:nth-child(1) {
    top: 0;
}

.hamburgerMenu span:nth-child(2) {
    top: 8px;
}

.hamburgerMenu span:nth-child(3) {
    top: 16px;
}
.hamburgerMenu.open span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburgerMenu.open span:nth-child(2) {
    top: 8px;
    transform: rotate(-45deg);
}

.hamburgerMenu.open span:nth-child(3) {
    top: 8px;
    transform: rotate(45deg);
}
.heroSection {
    padding-top: 110px;
    padding-bottom: 0px;
    height: 720px;  /* Fixed height */
    position: relative;
    overflow: hidden;
    margin-top: -110px;
}

.homepageHeroSection::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 110vw;  /* Extend width beyond the parent */
    height: 720px; /* Fixed height matching the heroSection */
    background: url('/assets/images/PNG/eagle_1.png') no-repeat bottom right;
    background-size: auto 540px; /* Force the image height to 720px, auto-adjusting the width */
    z-index: 1;
}
.heroContainer{
    position: relative;
    padding-top: 40px;
    z-index: 1;
}
.OverlineText{
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: white;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
}
.heroSection h1{
    font-size: 78px;
    line-height: 65px;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    max-width: none;
}
.heroSection p{
    max-width: 500px !important;
}
.heroSection p.OverlineText{
    max-width: 580px !important;
    margin-top: 0;
}
.redGradientText {
    background: linear-gradient(17deg, rgb(166, 23, 87) 0, rgb(237, 140, 95) 58.99%) padding-box text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: contrast(110%) brightness(110%) saturate(110%);
}
menu{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0;
    margin: 0;
}
.menuBackground{
    display: none;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #04081900;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    transition:
        background-color 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
        -webkit-backdrop-filter 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
        backdrop-filter 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.menuBackground.open{
    background-color: #04081971;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.menuContainer {
    position: fixed;
    z-index: 2;
    top: -101%;
    left: 0;
    width: 100%;
    height: fit-content;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    background: linear-gradient(to bottom, #030d2a 20%, rgb(10, 26, 62));
    padding-top: 180px;
    padding-bottom: 40px;
    opacity: 0;
    filter: blur(40px);
    transition:
        top 0.45s cubic-bezier(0.4, 0.0, 0.2, 1),
        opacity 0.45s cubic-bezier(0.4, 0.0, 0.2, 1),
        filter 0.45s cubic-bezier(0.4, 0.0, 0.2, 1),
        -webkit-backdrop-filter 0.45s cubic-bezier(0.4, 0.0, 0.2, 1),
        backdrop-filter 0.45s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.menuContainer.open {
    top: 0;
    opacity: 1;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    filter: blur(0px);
}
.menuContainer .logo{
    margin-bottom: 40px;
}
.menuContainer .menuSectionLikeContainer p{
    max-width: 450px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400 !important;
    opacity: 1;color: #c4d2f2;
}
.menuContainer .menuSectionLikeContainer .menuAbig{
    font-size: 17px;
    line-height: 22px;
    width: 100%;
    max-width: 360px !important;
    font-weight: 600 !important;
    letter-spacing: 0.7px;
    opacity: 1;
    color: white;
    margin-bottom: 20px;
}
.menuFooterContainer{
    margin-top: 50px;
    justify-content: left;
    gap: 35px;
}
.menuFooterContainer p{
    margin: 0;
}
.menuFooterContainer span{
    opacity: 0.25;
    color: #b7c5fc;
}
.menuFooterContainer .smallLinks {
    font-size: 14px;
    line-height: 14px;
}
.SocialMediaLink{
    line-height: 16px;
}
h1{
    font-size: 52px;
    font-weight: 800;
    line-height: 52px;
    margin: 0;
}
h2{
    margin: 0;
    font-size: 28px;
    line-height: 30px;
    letter-spacing: 0px;
    width: 100%;
    max-width: 350px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 1;
    color: white;
    margin-bottom: 20px;
}
h3{
    font-size: 26px;
    line-height: 28px;
    letter-spacing: 0px;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 15px;
}
p{
    margin: 0;
    margin-top: 25px;
    margin-bottom: 20px;
    line-height: 18px;
    font-weight: 400;
    line-height: 1.3;
    font-size: 16px;
    color: #c4d2f2;
}
.pMaxWidthMedium{
    width: 100%;
    max-width: 550px;
}
.pMaxWidthWide{
    width: 100%;
    max-width: 950px;
}
a{
    text-decoration: none;
    color: white;
    cursor: pointer;
}
a img{
    filter: saturate(110%);
}
h1{
    width: 100%;
    max-width: 400px;
    font-size: 60px;
    line-height: 55px;
}
.callForPapers h1{
    font-size: 45px;
    line-height: 45px;
    font-weight: 700;
    max-width: 600px;
    margin-top: 30px;
}
.heroSection p{
    width: 100%;
    max-width: 600px;
}
.heroTextPart{
    padding-top: 40px;
    padding-bottom: 40px;
    flex: 0.6;
}
.heroCTAdiv{
    margin-top: 30px;
    padding: 30px 40px;
    padding-right: 50px;
    width: fit-content;
    max-width: 450px;
    border-radius: 16px;
    border: 0.75px solid #829ddd25;
    background-color: rgb(10, 26, 62);
    margin-left: -5px;
}
.heroCTAdiv h2{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}
.heroCTAdiv p{
    max-width: 350px;
    margin-top: 20px;
}
.buttonWithArrow{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    margin-left: 10px;
    font-size: 16px;
}
.buttonWithArrow img{
    transition: margin-left 100ms ease;
}
.buttonWithArrow:hover img{
    margin-left: 5px;
}
.buttonNoBg{
    margin-top: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 5px;
}
.heroImageContainer{
    width: 100%;
    min-height: 530px;
    /* background: linear-gradient(to right, #121b3200, #121b32); */
    flex: 1;
    position: relative;
}
.heroImage{
    position: absolute;
    bottom: 30px;
    left: 50px;
    width: 90%;
    max-width: 800px;
    filter: saturate(110%);
}
.marqueeContainer {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to right, #a41c2a, #e93547 25%, #e93547 75%, #a41c2a);
    filter: saturate(110%);
    padding-top: 3px;
    padding-bottom: 7px;
    color: var(--whiteColor);
    white-space: nowrap;
}

.marqueeContent {
    display: inline-flex;
    align-items: center;
    animation: marqueeAnimation 75s linear infinite;
}

.marqueeContent span {
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 15px;
}

.sponsorMarquee{
    position: relative;
    background: none;
    background-color: rgb(10, 26, 62);
    padding: 28px 0;
}

.sponsorMarquee .horizontalDivider{
    display: flex;
    align-items: center;
    gap: 25px;
}
.sponsorMarquee .horizontalDivider img{
    max-width: 180px;
    height: 40px; 
    width: auto;
    object-fit: contain;
}
.sponsorMarquee .horizontalDivider img.bigger {
    max-width: 180px;
    height: 50px; 
    width: auto; 
}
.sponsorMarquee .horizontalDivider img.smallest{
    max-width: 80px;
    height: 30px; 
    width: auto;
}
.sponsorMarquee .horizontalDivider img.smaller {
    max-width: 140px;
    height: 40px; 
    width: auto;
}

.sponsorMarquee::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 20%;
    height: 100%;
    background: linear-gradient(to left, rgb(10, 26, 62) 20%, rgba(10, 26, 62, 0));
}

.sponsorMarquee::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, rgb(10, 26, 62) 20%, rgba(10, 26, 62, 0));
}

.textOnlyATF h1{
    font-size: 38px;
    max-width: 600px;
    line-height: 40px;
    font-weight: 600;
    text-wrap: wrap;
    text-transform: uppercase;
}
.textOnlyATF p{
    max-width: 600px;
    font-weight: 500;
}
.textOnlySection h2{
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 20px;
    max-width: 950px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}
.textOnlySection h3{
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: none;
    margin: 0;
    margin-bottom: 20px;
    max-width: 950px;
    font-weight: 600;
    font-size: 16px;
}
.textOnlySection p{
    margin-bottom: 40px;
    font-weight: 400;
}
.textOnlySection *{
    color: var(--darkColor) !important;
}
.textOnlySection p b{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}
.textOnlySection ul{
    max-width: 900px;
    margin-bottom: 40px;
}
.textOnlySection li{
    margin: 0;
margin-top: 5px;
font-size: 13px;
line-height: 18px;
font-weight: 400;
}

@keyframes marqueeAnimation {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.whiteSection{
    background-color: white;
    color: var(--darkColor);
    width: 100%;
    position: relative;
    padding-top: 60px;
}
.whiteSection a{
    color: rgb(39, 117, 205);
    font-weight: 500;
}
.whiteSection p{
    margin-bottom: 20px;
    font-weight: 400;
}
.transparentNinjasImage{
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    margin-top: -40px;
    position: absolute;
    right: 40px;
    bottom: 20px;
}
.whiteSectionOne{
    padding-bottom: 20px;
}
.darkGradientOverlay{
    position: relative;
}
.darkGradientOverlay div{
    z-index: 1;
}
.darkGradientOverlay::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #00195524, rgba(10, 26, 62, 0.887) 40%, #007bff00);
}
.highlightsContainer{
    padding: 16px 30px;
    width: 100%;
    max-width: 525px;
}
.highlights{
    font-size: 14px;
}
.highlights ul{
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlights ul li::marker{
    color: #97a2ca23;
}

.darkGradientOverlayRotate{
    position: relative;
}
.darkGradientOverlayRotate div{
    z-index: 1;
}
.darkGradientOverlayRotate::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #030d2a, rgba(10, 26, 62, 0.887) 40%, #030d2a);
}

.whyAttendSection p{
    max-width: 750px;
}

.threeColumnGridContainer{
    display: flex;
    margin-top: 50px;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.whyAttendSection .threeColumnGridContainer h3{
    text-transform: none;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.whyAttendSection .threeColumnGridContainer p{
    line-height: 20px;
    font-weight: 400;
    font-size: 14px;
    color: #c4d2f2;
}
.whyAttendSection .threeColumnGridContainer p b{
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    
}

.whyAttendSection .threeColumnGridContainer .threeColumnGridItem{
    background-color: rgb(10, 26, 62);
    background: linear-gradient(to bottom, rgb(10, 26, 62) 30%, rgba(10, 26, 62, 0));
    padding: 50px 25px;
    padding-top: 50px;
    border-radius: 28px;
    width: fit-content;
    max-width: 400px;
    flex: 1;
    filter: saturate(110%);
}


.bottomCenterLinkContainer{
    margin: 0 auto;
    margin-top: 25px;
    width: fit-content;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: rgb(10, 26, 62);
    border-radius: 18px;
    padding: 30px 40px;
}

.bottomCenterLinkContainer p{
    color: #b0b5de;
}

.noBgCTAdiv{
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 0;
    justify-content: center;
}

.noBgCTAdiv h3{
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 0;
}

.bulletPoints{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
}

.bulletPointsWithBackground{
    background-color: rgb(10, 26, 62);
    filter: saturate(110%);
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 500;
    line-height: 13px;
    margin-top: 2px;
    width: fit-content;
}

.bulletPointsWithBackground sup{
    font-size: 11px;
}

.ninjasImage{
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    max-width: 900px;
    height: auto;
}

.registerPage header{
    padding-top: 20px;
}

.cfpCTA{
    background: linear-gradient(to bottom, rgb(10, 26, 62) 30%, rgba(10, 26, 62,10));
padding: 50px 25px;
padding-top: 20px;
padding-bottom: 40px;
border-radius: 18px;
width: 100%;
max-width: 980px;
flex: 1;
filter: saturate(110%);
margin: 0 auto;
padding-left: 40px;
padding-right: 40px;
}
.cfpCTA h2{
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: none;
    margin: 0 auto;
text-align: center;
justify-content: center;
flex-wrap: wrap;
font-size: 36px;
line-height: 36px;
font-weight: 800;
}
.cfpCTA p{
    margin: 0 auto;
text-align: center;
justify-content: center;
margin-top: 20px;
}
.cfpCTA .noBgCTAdiv{
    margin: 0 auto;
text-align: center;
justify-content: center;
margin-top: 20px;
}
.cfpSection{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

footer{
    text-align: center;
    padding-bottom: 30px;
}

footer p{
    margin: 0;
    color: #c4d2f263;
    font-size: 15px;
    line-height: 18px;
}

.footerWhite{
    background-color: white;
}

.footerWhite p{
    color: #c7cedf;
}

/* =========================
   2025 Gallery (carousel + lightbox)
   ========================= */

   .wpnGalleryTabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 14px;
    flex-wrap: wrap;
  }
  
  .wpnGalleryTab {
    border: 1px solid rgba(32, 45, 92, 1);
    background: rgba(10, 22, 59, 1);
    color: rgba(255,255,255,0.92);
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-size: 15px;
  }
  
  .wpnGalleryTab.isActive {
    border-color: rgba(67, 85, 138, 1);
    background: rgba(20, 35, 78, 1);
  }
  
  .wpnCarouselShell {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .wpnCarouselNav {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,1);
    cursor: pointer;
    font-size: 37px;
    line-height: 1;
  }
  
  .wpnCarouselNav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }
  
  .wpnPhotoCarousel {
    flex: 1;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 14px 6px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    min-height: 328px;
  }
  
  .wpnPhotoCarousel {
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }

  .wpnCarouselItem {
    flex: 0 0 auto;
    width: 440px;
    max-width: 70%;
    height: auto;
    border: 1px solid rgba(32, 45, 92, 1);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    scroll-snap-align: center;
    padding: 0;
  }
  
  .wpnCarouselItem img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  
  .wpnGalleryStatus {
    margin: 8px auto 0;
    text-align: center;
    opacity: 0.9;
    display: none;
  }
  
  /* Lightbox */
  .wpnLightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.86);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 18px;
  }
  
  .wpnLightbox.isOpen {
    display: flex;
  }
  
  .wpnLightboxFigure {
    margin: 0;
    width: min(1100px, 100%);
    text-align: center;
  }
  
  .wpnLightboxFigure img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
  }
  
  .wpnLightboxCaption {
    margin-top: 20px;
    font-size: 16px;
    opacity: 1;
  }
  
  .wpnLightboxClose {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,1);
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
  }
  
  .wpnLightboxNav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,1);
    cursor: pointer;
    font-size: 37px;
    line-height: 1;
  }
  
  .wpnLightboxNav.prev { left: 14px; }
  .wpnLightboxNav.next { right: 14px; }
  
  .wpnNoScroll {
    overflow: hidden;
  }

  .fancyList{
    display: flex;
    flex-direction: column;
    gap: 44px;
    width: 100%;
  }

  .fancyListItem{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .fancyListItem h3{
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .fancyListItem p{
    max-width: 600px;
    margin: 0;
  }

  #photos{
    padding: 0;
    padding-top: 40px;
  }

  #photos .maxWidth{
    max-width: 1400px;
  }


  @media only screen and (max-width: 1600px){

    .homepageHeroSection::before {
        background-size: auto 480px;
    }

  }

@media only screen and (max-width: 1300px){

    .homepageHeroSection::before {
        right: -130px;
    }
    .homepageHeroSection::before {
        background-size: auto 440px;
        right: -100px;
    }
}

@media only screen and (max-width: 1100px) {
    .heroSection{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .heroSection .maxWidth{
        flex-direction: column-reverse;

    }
    .sectionPaddingLeftRight{
        padding-left: 20px;
        padding-right: 20px;
    }
    header{
        padding-left: 20px;
        padding-right: 20px;
    }
    .heroSection .heroTextPart{
        padding-left: 20px;
        padding-right: 20px;
    }
    .transparentNinjasImage{
        position: relative;
        right: auto;
    }
    .heroCTAdiv{
        width: 100%;
        margin-top: 20px;
    }
    .homepageHeroSection::before {
        width: 100%;
        height: 650px;
        background-size: auto 320px;
        right: -70px;
    }
}

@media only screen and (max-width: 1100px) {
    header{
        padding-top: 20px !important;
    }
    header .logo{
        margin-left: 0;
    }
    .mobileOnly{
        display: block;
    }
    .heroImageContainer{
        padding-top: 30px;
        height: fit-content;
        min-height: 0;
    }
    .heroImage{
        width: 100%;
        max-width: none;
        left: 0;
        bottom: 5px;
        position: relative;
    }
    header{
        margin-top: 0;
    }
    .menuContainer{
        padding-top: 100px;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    header .logo{
        width: 100%;
        max-width: 250px;
    }
    header .headerSignUp{
        display: none;
    }
    h1{
        font-size: 35px;
        font-weight: 700;
        line-height: 40px;
        letter-spacing: -0.5px;
    }

    .callForPapers h1{
        font-size: 35px;
        font-weight: 700;
        line-height: 40px;
        letter-spacing: -0.5px;
    }
    .textOnlyATF h1{
        font-size: 38px;
        line-height: 40px;
    }
    h3{
        letter-spacing: 0;
        margin-bottom: 15px;
    }
    .sectionPaddingLeftRight{
        padding-left: 10px;
        padding-right: 10px;
    }
    header{
        padding-left: 10px;
        padding-right: 10px;
    }
    .heroSection .heroTextPart{
        padding-left: 10px;
        padding-right: 10px;
    }
    .sectionPaddingTopBottom{
        padding-top: 40px;
    }
    .marqueeContent span{
        font-size: 11.5px;
        margin: 0 10px;
    }
    .marqueeContent img{
        width: 15px;
        height: 15px;
    }
}

@media only screen and (max-width: 950px){
    header{
        padding-top: 20px !important;
    }
    header .logo{
        margin-left: 0;
    }
.heroSection {
    padding-top: 80px;
    padding-bottom: 0px;
    background: linear-gradient(to top, #030d2a 20%, #212e5d 100%);
    height: 620px;  /* Fixed height */
    position: relative;
    overflow: hidden;
    margin-top: -81px;
}

.heroSection h1{
    font-size: 60px;
line-height: 50px;
font-weight: 900;
letter-spacing: -1px;
}
.heroSection p{
    max-width: 405px !important;
}
.whyAttendSection .threeColumnGridContainer{
    justify-content: center;
}
.whyAttendSection .threeColumnGridContainer p{
    min-width: 300px;
}
.whyAttendSection .noBgCTAdiv{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.whyAttendSection h2{
    text-align: center;
    margin: 0 auto;
}
.whyAttendSection p{
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    max-width: 560px;
}
.bottomCenterLinkContainer{
    width: 100%;
    max-width: 500px;
}
.bottomCenterLinkContainer p{
    text-align: left;

}
.whyAttendSection .threeColumnGridItem p{
    text-align: left;
}
}

@media only screen and (max-width: 950px){
    .heroSection {
        padding-top: 80px;
        padding-bottom: 0px;
        height: fit-content !important;
        position: relative;
        overflow: hidden;
        margin-top: -81px;
        background: linear-gradient(to top, #030d2a 70%, #212e5d 100%);
    }

    .homepageHeroSection::before {
        display: none;
    }
.threeColumnGridItem{
    background: none !important;
    padding: 15px 10px !important;
    min-width: 280px;
}
.whyAttendSection .threeColumnGridItem h3{
    margin-bottom: 5px;
    font-size: 25px;
    line-height: 25px;
}
.whyAttendSection{
    padding-bottom: 15px;
}
.whyAttendSection .noBgCTAdiv{
    margin-top: 50px;
}
.bottomCenterLinkContainer{
    padding: 30px 20px;
}
.bottomCenterLinkContainer h3{
    margin-bottom: 5px;
}
.bottomCenterLinkContainer p{
    margin-top: 10px;
}
.OverlineText{
    font-size: 21px;
}
.menuFooterContainer{
    flex-direction: column;
justify-content: left;
align-items: baseline;
gap: 30px;
font-size: 18px !important;
}
.smallLinks{
    font-size: 15px !important;
    order: 3;
}
.callForPapersLink{
    order: 1;
    font-size: 18px !important;
    font-weight: 500;
}
.SocialMediaLink{
    order: 3;
    font-size: 17px !important;
    font-weight: 500;
}
.privacyLink{
    font-size: 15px !important;
    font-weight: 500;
    opacity: 0.45;
    color: #c4d2f2;
}
.newHeroImage{
    display: flex !important;
}

}

@media only screen and (max-width: 670px){

    .heroSection{
        height: fit-content;
    }
.homepageHeroSection::before {
    content: none;
}
.hideOnMobile{
    display: none !important;
}
body .showOnMobile{
    display: flex !important;
}

.mobileHeroImage{
    width: 100%;
    border-radius: 18px;
    margin-top: 20px;
}
.mobileMainButton{
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
}
.wpnCarouselNav{
    display: none;
}
.removeOnMobile{
    display: none !important;
}
.heroSection p{
    text-align: center;
    margin: 0 auto;
}
.heroSection p.OverlineText{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.heroSection h1{
    text-align: center;
}
.bulletPoints{
    align-items: center;
}
#photos{
    padding-bottom: 10px !important;
}
.cfpSection{
    padding-top: 5px !important;
}
.wpnPhotoCarousel{
    padding-bottom: 0px !important;
}

}