
    /* Import fonts */
    @import url('https://fonts.googleapis.com/css2?family=DM+Sans&family=Montserrat:wght@100;900&family=Playfair+Display:wght@400;900&display=swap');

    /* Reset and basic styles */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; background-color: #f8f8f8; text-align: center; }

    /* Tooltip Styles */
    .info-icon {
      position: relative;
      display: inline-block;
      color: #255B93;
      font-weight: bold;
      cursor: help;
      font-size: 16px;
      margin-left: 5px;
    }
    .info-icon .tooltip-text {
      visibility: hidden;
      width: 250px;
      background-color: #555;
      color: #fff;
      text-align: left;
      border-radius: 6px;
      padding: 5px;
      position: absolute;
      z-index: 100000;
      bottom: 125%;
      left: 50%;
      margin-left: -125px;
      opacity: 0;
      transition: opacity 0.3s;
      font-size: 12px;
      pointer-events: none;
    }
    .info-icon .tooltip-text::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #555 transparent transparent transparent;
    }
    .info-icon:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
    }
    .info-icon.active-tooltip .tooltip-text {
      visibility: visible;
      opacity: 1;
    }

    /* Header & Slider Styles */
    header {
      position: relative;
      width: 100%;
      height: 70vh;
      overflow: hidden;
    }
    .header-logo {
      position: absolute;
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1100;
    }
    .header-logo img { max-width: 100%; height: auto; width: 300px; }
    .slider { position: relative; width: 100%; height: 100%; }
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .slide.active { opacity: 1; }
    .slide img { width: 100%; height: 100%; object-fit: cover; }
    .slide-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 50px;
      text-align: center;
      font-family: "Playfair Display", serif;
      padding: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    }
    .slider-nav {
      position: absolute;
      bottom: 20px;
      right: 20px;
      z-index: 10;
      display: flex;
      gap: 8px;
    }
    .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
    }
    .nav-dot.active { background: rgba(255,255,255,0.9); }
    .scroll-down {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
    }
    .scroll-down img { width: 40px; height: auto; }

    /* Gallery Styles */
    main { margin-top: 0; }
    .gallery { padding: 40px 5%; background: #F8F8F8; }
    .gallery h2 {
      margin-bottom: 20px;
      font-family: "Montserrat", sans-serif;
      font-weight: 300;
      text-transform: uppercase;
      margin-top: 60px;
      letter-spacing: 2px;
    }
    .selection-instruction {
      margin-bottom: 30px;
      font-size: 18px;
      line-height: 1.7em;
      font-family: "Montserrat", sans-serif;
      letter-spacing: 1px;
      padding: 0 15%;
      color: #000;
      font-weight: 500;
    }
    /* On the gallery page, show the selected items as their original numbers (ex: #1, #4, #6, #9) */
    #selectedDisplay {
      margin-bottom: 20px;
      font-family: "Montserrat", sans-serif;
      font-weight: 600;
      font-size: 18px;
    }
    /* Filter & Search Containers */
    .filter-container, .search-container, .email-container { margin-bottom: 20px; }

    /* Responsive Grid using auto-fit */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1460px;
      width: 100%;
      margin: 0 auto;
      padding: 20px 0;
    }
    .item {
      background-color: transparent;
      position: relative;
      cursor: pointer;
    }
    .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: opacity 0.3s ease;
      position: relative;
      z-index: 1;
    }
    .item.selected img { opacity: 0.7; }
    .item .item-number {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0,0,0,0.6);
      color: white;
      padding: 5px;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      z-index: 2;
    }
    .favorite {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 20px;
      color: red;
      pointer-events: none;
    }

    /* Buttons */
    #emailButton, #toggleView, button.sbmt {
      position: relative;
      overflow: hidden;
      background: #255B93;
      color: #fff;
      border: none;
      padding: 20px 45px;
      font-size: 16px;
      font-family: "Montserrat", sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      cursor: pointer;
      transition: background-position 0.5s ease;
    }
    #emailButton, #toggleView, button.sbmt {
      background: linear-gradient(to right, #255B93 50%, #000 50%);
      background-size: 200% 100%;
      background-position: left bottom;
    }
    #emailButton:hover, #toggleView:hover, button.sbmt:hover {
      background-position: right bottom;
    }
    .pagination {
      margin-top: 20px;
      display: none;
    }
    .pagination-info { font-size: 16px; margin-bottom: 10px; }
    .pagination button {
      background-color: #255B93;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      margin: 0 5px;
      transition: 0.3s ease;
    }
    .pagination button:hover { background-color: #1E4A78; }

    /* Footer Styles */
    footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 20px 5%;
      background: #f1f1f1;
      text-align: center;
      padding-top: 100px;
      padding-bottom: 200px;
    }
    .footer-section { flex: 1; margin: 10px; min-width: 250px; text-align: center; }
    .footer-content {
      margin: 0 auto;
      text-align: left;
      width: 100%;
      max-width: 300px;
    }
    .ctheader {
      font-family: "Montserrat", sans-serif;
      text-transform: uppercase;
      font-weight: 400;
      margin-bottom: 15px;
      font-size: 17px;
      color: #121212;
      letter-spacing: 2px;
    }
    .ftter {
      width: 100%;
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      line-height: 1.5em;
      color: #121212;
      margin-top: 20px;
    }
    .copyright-bar {
      background: #f1f1f1;
      color: #121212;
      text-align: left;
      padding: 0 5%;
      padding-bottom: 40px;
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      text-transform: uppercase;
    }
    .newsletter-input {
      padding: 18px;
      width: 90%;
      max-width: 250px;
      margin-top: 10px;
      border: 1px solid #ccc;
      border-radius: 0;
    }
    .newsletter-button {
      padding: 20px 50px;
      margin-top: 10px;
      background: #121212;
      color: white;
      border: none;
      border-radius: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
    }
    input, textarea {
      border: 1px solid #ccc;
      width: 100%;
      height: 30px;
      margin-top: 10px;
      padding: 10px;
    }
    textarea { height: 100px; }
    label { font-family: "Montserrat", sans-serif; letter-spacing: 2px; font-weight: 600; }
    button { border: none; font-family: "Montserrat", sans-serif; background: #255B93; color: #fff; padding: 20px 45px; font-size: 16px; text-transform: uppercase; letter-spacing: 2px; }
    button.sbmt { width: 100%; margin-bottom: 30px; }
    button.close { background: #000; }

    /* Image Preview Modal Styles */
    #imageModal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
      z-index: 1200;
    }
    #imageModal img {
      max-width: 90%;
      max-height: 90%;
    }
    #imageModal .closeImageModal {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #000;
      color: #fff;
      padding: 10px 15px;
      cursor: pointer;
      font-family: "Montserrat", sans-serif;
    }
    
    p.selection-instruction {
      padding: 0 15%;
      color: #000;
      font-weight: 500;
    }
    .scroll-down img {
      width: 40px;
      height: auto;
      display: none;
    }
    /* Gallery selection display: show the selected item numbers as before */
    #selectedDisplay {
      font-family: "Montserrat", sans-serif;
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 20px;
    }
    input#searchInput {
      height: 45px;
      width: 250px;
      margin-top: 15px;
      margin-bottom: 15px;
      border: 1px solid #dcdcdc;
      padding: 10px;
    }
    button#clearSelectionDisplay {
      padding: 9px 35px;
      background: rgba(0,0,0,0.4);
      color: #fff;
      border: none;
      text-transform: uppercase;
    }
    select#filter {
      height: 35px;
      padding: 5px;
    }
    textarea#userMessage {
      width: 100%;
      height: 100px;
      border: 1px solid #ccc;
    }
    /* Media Queries for Responsiveness */
    @media (max-width: 768px) {
      .slide-text { font-size: 32px; }
      .grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }
    @media (max-width: 480px) {
      .slide-text { font-size: 24px; }
      .header-logo img { width: 200px; }
    }
    
    /* Ensure Email Modal is On Top */
    #emailModal {
      z-index: 99999 !important;
    }
  </style>
  
   <style>
    /* Import fonts */
    @import url('https://fonts.googleapis.com/css2?family=DM+Sans&family=Montserrat:wght@100;900&family=Playfair+Display:wght@400;900&display=swap');

    /* Reset and basic styles */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; background-color: #f8f8f8; text-align: center; }

    /* Tooltip Styles */
    .info-icon {
      position: relative;
      display: inline-block;
      color: #255B93;
      font-weight: bold;
      cursor: help;
      font-size: 16px;
      margin-left: 5px;
    }
    .info-icon .tooltip-text {
      visibility: hidden;
      width: 250px;
      background-color: #555;
      color: #fff;
      text-align: left;
      border-radius: 6px;
      padding: 5px;
      position: absolute;
      z-index: 100000;
      bottom: 125%; /* position above the icon */
      left: 50%;
      margin-left: -125px;
      opacity: 0;
      transition: opacity 0.3s;
      font-size: 12px;
      pointer-events: none;
    }
    .info-icon .tooltip-text::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #555 transparent transparent transparent;
    }
    /* Show tooltip on hover */
    .info-icon:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
    }
    /* Show tooltip when active on mobile */
    .info-icon.active-tooltip .tooltip-text {
      visibility: visible;
      opacity: 1;
    }

    /* Header & Slider Styles */
    header {
      position: relative;
      width: 100%;
      height: 70vh;
      overflow: hidden;
    }
    .header-logo {
      position: absolute;
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1100;
    }
    .header-logo img { max-width: 100%; height: auto; width: 300px; }
    .slider { position: relative; width: 100%; height: 100%; }
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .slide.active { opacity: 1; }
    .slide img { width: 100%; height: 100%; object-fit: cover; }
    .slide-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 50px;
      text-align: center;
      font-family: "Playfair Display", serif;
      padding: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    }
    .slider-nav {
      position: absolute;
      bottom: 20px;
      right: 20px;
      z-index: 10;
      display: flex;
      gap: 8px;
    }
    .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
    }
    .nav-dot.active { background: rgba(255,255,255,0.9); }
    .scroll-down {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
    }
    .scroll-down img { width: 40px; height: auto; }

    /* Gallery Styles */
    main { margin-top: 0; }
    .gallery { padding: 40px 5%; background: #F8F8F8; }
    .gallery h2 {
      margin-bottom: 20px;
      font-family: "Montserrat", sans-serif;
      font-weight: 300;
      text-transform: uppercase;
      margin-top: 60px;
      letter-spacing: 2px;
    }
    .selection-instruction {
      margin-bottom: 30px;
      font-size: 18px;
      line-height: 1.7em;
      font-family: "Montserrat", sans-serif;
      letter-spacing: 1px;
      padding: 0 15%;
      color: #000;
      font-weight: 500;
    }
    .filter-container, .email-container { margin-bottom: 20px; }

    /* Responsive Grid using auto-fit */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1460px;
      width: 100%;
      margin: 0 auto;
      padding: 20px 0;
    }
    .item {
      background-color: transparent;
      position: relative;
      cursor: pointer;
    }
    .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: opacity 0.3s ease;
      position: relative;
      z-index: 1;
    }
    .item.selected img { opacity: 0.7; }
    .item .item-number {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0,0,0,0.6);
      color: white;
      padding: 5px;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      z-index: 2;
    }
    .favorite {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 20px;
      color: red;
      pointer-events: none;
    }

    /* Buttons */
    #emailButton, #toggleView, button.sbmt {
      position: relative;
      overflow: hidden;
      background: #255B93;
      color: #fff;
      border: none;
      padding: 20px 45px;
      font-size: 16px;
      font-family: "Montserrat", sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      cursor: pointer;
      transition: background-position 0.5s ease;
    }
    #emailButton, #toggleView, button.sbmt {
      background: linear-gradient(to right, #255B93 50%, #000 50%);
      background-size: 200% 100%;
      background-position: left bottom;
    }
    #emailButton:hover, #toggleView:hover, button.sbmt:hover {
      background-position: right bottom;
    }
    .pagination {
      margin-top: 20px;
      display: none;
    }
    .pagination-info { font-size: 16px; margin-bottom: 10px; }
    .pagination button {
      background-color: #255B93;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      margin: 0 5px;
      transition: 0.3s ease;
    }
    .pagination button:hover { background-color: #1E4A78; }

    /* Footer Styles */
    footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 20px 5%;
      background: #f1f1f1;
      text-align: center;
      padding-top: 100px;
      padding-bottom: 200px;
    }
    .footer-section { flex: 1; margin: 10px; min-width: 250px; text-align: center; }
    .footer-content {
      margin: 0 auto;
      text-align: left;
      width: 100%;
      max-width: 300px;
    }
    .ctheader {
      font-family: "Montserrat", sans-serif;
      text-transform: uppercase;
      font-weight: 400;
      margin-bottom: 15px;
      font-size: 17px;
      color: #121212;
      letter-spacing: 2px;
    }
    .ftter {
      width: 100%;
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      line-height: 1.5em;
      color: #121212;
      margin-top: 20px;
    }
    .copyright-bar {
      background: #f1f1f1;
      color: #121212;
      text-align: left;
      padding: 0 5%;
      padding-bottom: 40px;
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      text-transform: uppercase;
    }
    .newsletter-input {
      padding: 18px;
      width: 90%;
      max-width: 250px;
      margin-top: 10px;
      border: 1px solid #ccc;
      border-radius: 0;
    }
    .newsletter-button {
      padding: 20px 50px;
      margin-top: 10px;
      background: #121212;
      color: white;
      border: none;
      border-radius: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
    }
    input, textarea {
      border: 1px solid #ccc;
      width: 100%;
      height: 30px;
      margin-top: 10px;
      padding: 10px;
    }
    textarea { height: 100px; }
    label { font-family: "Montserrat", sans-serif; letter-spacing: 2px; font-weight: 600; }
    button { border: none; font-family: "Montserrat", sans-serif; background: #255B93; color: #fff; padding: 20px 45px; font-size: 16px; text-transform: uppercase; letter-spacing: 2px; }
    button.sbmt { width: 100%; margin-bottom: 30px; }
    button.close { background: #000; }

    /* Image Preview Modal Styles */
    #imageModal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
      z-index: 1200;
    }
    #imageModal img {
      max-width: 90%;
      max-height: 90%;
    }
    #imageModal .closeImageModal {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #000;
      color: #fff;
      padding: 10px 15px;
      cursor: pointer;
      font-family: "Montserrat", sans-serif;
    }
    
    p.selection-instruction {
      padding: 0 15%;
      color: #000;
      font-weight: 500;
    }
    .scroll-down img {
      width: 40px;
      height: auto;
      display: none;
    }
    div#selectedDisplay {
      font-family: "Playfair Display", serif;
      font-weight: 600;
      font-size: 22px;
      font-style: italic;
      padding-bottom: 20px;
    }
    input#searchInput {
      height: 45px;
      width: 250px;
      margin-top: 15px;
      margin-bottom: 15px;
      border: 1px solid #dcdcdc;
      padding: 10px;
    }
    button#clearSelectionDisplay {
      padding: 9px 35px;
      background: rgba(0,0,0,0.4);
      color: #fff;
      border: none;
      text-transform: uppercase;
    }
    select#filter {
      height: 35px;
      padding: 5px;
    }
    div#selectedDisplay {
      margin-bottom: 50px;
    }
    div#selectedDisplay {
      font-family: "Montserrat", sans-serif;
      font-weight: 600;
      font-size: 18px;
    }
    textarea#userMessage {
      width: 100%;
      height: 100px;
      border: 1px solid #ccc;
    }
    /* Media Queries for Responsiveness */
    @media (max-width: 768px) {
      .slide-text { font-size: 32px; }
      .grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      
      .gallery h2 {
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 60px;
    letter-spacing: 2px;
    padding-top: 0px;
    margin-top: 0px;
}
    }
    @media (max-width: 480px) {
      .slide-text { font-size: 24px; }
      .header-logo img { width: 200px; }
    }
    
    /* Ensure Email Modal is On Top */
    #emailModal {
      z-index: 99999 !important;
    }
    
    div#emailModal > div > p {
    font-size: 16px !important;
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.5em;
}

div#selectedDisplay {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 10px 10px 16px -17px rgba(0, 0, 0, 0.75);
}

.info-icon:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    line-height: 1.9em;
    padding: 10px;
}

  @media screen and (max-width:768px) {
  .slide-text {
        font-size: 32px;
        padding: 0px;
        font-size: 40px;
        width: 100%;
    }}
    
    .item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 10px 10px 16px -17px rgba(0, 0, 0, 0.75);
}

button, 
input[type="button"], 
input[type="submit"], 
.clr, 
#clearSelectionDisplay, 
#emailButton, 
#toggleView {
  cursor: pointer;
}

.item.selected img {
  filter: brightness(0.2);
  transition: filter 0.15s ease;
}

.item .item-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

div#confirmationMessage {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 300 !important;
    line-height: 1.3em;
    background: #f8f8f8;
    padding: 10px;
    margin-bottom: 10px;
}

.ctheader {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 17px;
    color: #121212;
    letter-spacing: 2px;
}

.copyright-bar {
    background: #f1f1f1;
    color: #121212;
    text-align: left;
    padding: 0 5%;
    padding-bottom: 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

footer {
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 5%;
    background: #f1f1f1;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 200px;
}

.footer-content {
    margin: 0 auto;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 250px;
    text-align: center;
    padding: 0px 2%;
}

footer {
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 5%;
    background: #f1f1f1;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.ftter {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    color: #121212;
    margin-top: 20px;
}

a.resources {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    color: #121212;
    margin-top: 20px;
    text-decoration: none !important;
}

a.resources:hover {
    color: #255B93;
    transition: 400ms;
}


.ctheader {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 15px;
    color: #121212;
    letter-spacing: 2px;
}

.gallery h2 {
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 60px;
    letter-spacing: 2px;
}

.gallery h2 {
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    text-transform: none;
    margin-top: 60px;
    letter-spacing: 0px;
    font-size: 35px;
}

div#selectedDisplay {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
}

button#clearSelectionDisplay:hover {
    background: #255B93;
    transition: 400ms;
}
 
 div#selectedDisplay {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.filter-container, .email-container {
    margin-bottom: 10px;
}

@media screen and (max-width:768px){
    button#clearSelectionDisplay {
    padding: 9px 35px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    text-transform: uppercase;
    margin-top: 5px;
}

p.selection-instruction {
    padding: 0 2%;
    color: #000;
    font-weight: 500;
}

}

p.selection-instruction {
    padding: 0 5%;
    color: #000;
    font-weight: 500;
}

button#clearSelectionDisplay {
    padding: 9px 35px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    text-transform: uppercase;
    margin-left: 20px;
}

p.selection-instruction {
    padding: 0 5%;
    color: #000;
    font-weight: 500;
    font-family: helvetica;
}

.ftter {
    width: 100%;
    font-family: helvetica;
    font-size: 15px;
    line-height: 1.5em;
    color: #121212;
    margin-top: 20px;
}

div#emailModal > div > p {
    font-size: 16px !important;
    margin-top: 10px;
    font-family: helvetica;
    line-height: 1.5em;
}

a.resources {
    width: 100%;
    font-family: helvetica;
    font-size: 15px;
    line-height: 1.5em;
    color: #121212;
    margin-top: 20px;
    text-decoration: none !important;
}

.slider-nav {
    display: none !important;
}
