

/**umb_name:Big Date*/
.BigDate {
    font-family: Futura;
    font-size: 70px;
    color: #DDDDDD;
    margin-top: 30px;
}

/**umb_name:Section Heading*/
.SectionHeading{
    font-family: Futura;
    font-size: 17px;
    color: #404040;
    text-transform: uppercase;
    border-left: none;
    padding: 0;
    margin: 0;
        margin-bottom: 0px;
    width: 75%;
    line-height: 30px;
    letter-spacing: 0.15em;
    margin-bottom: 35px;
    display: block;
}

/**umb_name:Featured Text*/
.FeaturedText {
    font-family: Futura;
    font-size: 17px;
    color: #404040;
    text-transform: uppercase;
    border-left: none;
    padding: 0;
    margin: 0;
    margin-bottom: 0px;
    line-height: 30px;
    letter-spacing: 0.15em;
    display: block;
}

/**umb_name:Section Title*/
.SectionTitle{
    font-family: Futura;
    font-size: 24px;
    font-weight: 400;
    color: #404040;
    text-transform: uppercase;
    border-left: none;
    padding: 0;
    margin: 0;
    margin-bottom: 0px;
    line-height: 30px;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}


/**umb_name:Link Button - Dark*/
.linkbutton_dark {
    display: inline;
    text-transform: uppercase;
}

/**umb_name:Link Button Underlined*/
.LinkButtonUnderlined {
    font-weight: 400;
    font-size: 14px;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-right: 20px;
    text-decoration: none;
    border-bottom: 2px solid #414144;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    font-family: Futura;
    letter-spacing: 0.15em;
}
    .LinkButtonUnderlined a,
    .container p .LinkButtonUnderlined a {
        text-decoration: none;
    }


@media only screen and (max-width : 768px) {
    .SectionHeading {
        width: 100%;
    }
}


.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 900px;
    height: 500px;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998; /* Set a lower z-index */
  }

  
  