/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-1151 {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
    position: relative;
    z-index: 1;
  }
  #contact-1151 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 44rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    -moz-column-gap: auto;
         column-gap: auto;
    /* 48px - 80px */
    row-gap: clamp(3rem, 6vw, 5rem);
    position: relative;
  }
  #contact-1151 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #contact-1151 .cs-topper {
    color: #767676;
  }
  #contact-1151 .cs-title {
    max-width: 23ch;
    margin: 0;
  }
  #contact-1151 .cs-picture {
    width: 100%;
    /* 240px - 300px */
    height: clamp(15rem, 35vw, 18.75rem);
    margin: 0 0 1.5rem;
    border-radius: 1.5rem;
    /* clips image corners */
    overflow: hidden;
    display: block;
    position: relative;
  }
  #contact-1151 .cs-picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #contact-1151 .cs-contact-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0 0 1.5rem;
    color: var(--bodyTextColor);
  }
  #contact-1151 .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
  }
  #contact-1151 .cs-li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
  }
  #contact-1151 .cs-li:hover .cs-icon-wrapper {
    transform: scale(1.1);
  }
  #contact-1151 .cs-header {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 0.75rem;
    color: var(--headerColor);
    display: block;
  }
  #contact-1151 .cs-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    color: #767676;
    display: block;
    position: relative;
  }
  #contact-1151 .cs-link:hover {
    text-decoration: underline;
  }
  #contact-1151 .cs-icon-wrapper {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0;
    border-radius: 50%;
    border: 1px solid #bababa;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing it */
    flex: none;
    transition: transform 0.3s;
  }
  #contact-1151 .cs-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #contact-1151 .cs-form {
    width: 100%;
    /* 24px - 48px top and bottom */
    /* 16px - 32px left and right */
    padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 2rem);
    /* prevents flexbox from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }
  #contact-1151 .cs-label {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    width: 100%;
    color: var(--headerColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
  }
  #contact-1151 .cs-input {
    font-size: 1rem;
    width: 100%;
    height: 3.5rem;
    padding: 0;
    padding-left: 1.5rem;
    color: var(--headerColor);
    background-color: #f7f7f7;
    border-radius: 0.5rem;
    border: none;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
  }
  #contact-1151 .cs-input::-moz-placeholder {
    color: #7d799c;
    opacity: 0.6;
  }
  #contact-1151 .cs-input::placeholder {
    color: #7d799c;
    opacity: 0.6;
  }
  #contact-1151 .cs-textarea {
    min-height: 7.5rem;
    padding-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: inherit;
  }
  #contact-1151 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #1a1a1a;
    border: none;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--secondary);
    border-radius: 0.25rem;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
  }
  #contact-1151 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #contact-1151 .cs-button-solid:hover {
    color: #fff;
  }
  #contact-1151 .cs-button-solid:hover:before {
    width: 100%;
  }
  #contact-1151 .cs-submit {
    width: 100%;
    min-width: 17.6875rem;
    border-radius: 0.5rem;
  }
  #contact-1151 .cs-submit:hover {
    cursor: pointer;
  }
  #contact-1151 .cs-graphic {
    display: none;
  }
  #contact-1151 .cs-graphic1 {
    width: 13rem;
    height: auto;
    position: absolute;
    left: -7.5rem;
    top: 8.625rem;
  }
  #contact-1151 .cs-graphic2 {
    width: 12.8125rem;
    height: auto;
    position: absolute;
    right: -9.75rem;
    top: 0.5rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-1151 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #contact-1151 .cs-contact-group {
    width: 50%;
    max-width: 39.375rem;
    /* sends it to the right in the 2nd position */
    order: 2;
  }
  #contact-1151 .cs-form {
    width: 46%;
    max-width: 36.125rem;
  }
  #contact-1151 .cs-submit {
    width: auto;
  }
}
/* Large Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
  #contact-1151 .cs-graphic {
    display: block;
  }
}
#media-press-kit {
  padding: 4rem 0;
  background-color: #fff;
  /* Light background for contrast */
  text-align: center;
}
#media-press-kit .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
#media-press-kit .content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
#media-press-kit .content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}
#media-press-kit .content p:last-of-type {
  margin-bottom: 0;
}
#media-press-kit .content .button {
  display: inline-block;
  background-color: #007bff;
  /* Primary button color */
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 1.5rem 0;
  transition: background-color 0.3s ease;
}
#media-press-kit .content .button:hover {
  background-color: #0056b3;
  /* Darker shade on hover */
}
#media-press-kit .content .link {
  color: #007bff;
  /* Link color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
#media-press-kit .content .link:hover {
  color: #0056b3;
  /* Darker shade on hover */
  text-decoration: underline;
}

#campaign-updates-enhanced {
  padding: 5rem 0;
  background-color: #f7f7f7;
  text-align: center;
}
#campaign-updates-enhanced .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#campaign-updates-enhanced .content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
#campaign-updates-enhanced .content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #e74c3c;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
#campaign-updates-enhanced .content .subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}
#campaign-updates-enhanced .content .update-list-enhanced {
  list-style: none;
  padding: 0;
  margin-bottom: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
#campaign-updates-enhanced .content .update-list-enhanced li {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  overflow: hidden;
}
#campaign-updates-enhanced .content .update-list-enhanced li:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
#campaign-updates-enhanced .content .update-list-enhanced .update-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  text-decoration: none;
}
#campaign-updates-enhanced .content .update-list-enhanced .update-item .update-icon {
  flex-shrink: 0;
  margin-right: 1.2rem;
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
#campaign-updates-enhanced .content .update-list-enhanced .update-item .update-text {
  flex-grow: 1;
}
#campaign-updates-enhanced .content .update-list-enhanced .update-item .update-text h3 {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: #2c3e50;
  line-height: 1.3;
}
#campaign-updates-enhanced .content .update-list-enhanced .update-item .update-text p {
  font-size: 0.95rem;
  color: #7f8c8d;
  margin: 0 0 0.75rem;
}
#campaign-updates-enhanced .content .update-list-enhanced .update-item .update-text .action-link {
  font-size: 0.9rem;
  font-weight: bold;
  color: #e74c3c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
#campaign-updates-enhanced .content .update-list-enhanced .update-item .update-text .action-link:hover {
  color: #c0392b;
}
#campaign-updates-enhanced .content .all-updates-button {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
}
#campaign-updates-enhanced .content .all-updates-button:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

#live-campaign-enhanced-2 {
  padding: 6rem 0;
  background-color: #fdfdfd;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
#live-campaign-enhanced-2 .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#live-campaign-enhanced-2 .content h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
#live-campaign-enhanced-2 .content h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 6px;
  background-color: var(--secondary);
  margin: 0.75rem auto 0;
  border-radius: 4px;
}
#live-campaign-enhanced-2 .content .subtitle {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #5f6a7d;
  margin-bottom: 4rem;
}
#live-campaign-enhanced-2 .content .main-social-area {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  #live-campaign-enhanced-2 .content .main-social-area {
    flex-direction: column;
    align-items: center;
  }
}
#live-campaign-enhanced-2 .content .social-links-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-shrink: 0;
  padding-top: 2rem;
}
@media (max-width: 992px) {
  #live-campaign-enhanced-2 .content .social-links-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-top: 0;
    margin-bottom: 2rem;
  }
}
#live-campaign-enhanced-2 .content .social-links-sidebar .sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background-color: #f0f4f8;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
#live-campaign-enhanced-2 .content .social-links-sidebar .sidebar-link:hover {
  background-color: #e0e7ee;
  transform: translateX(5px);
}
#live-campaign-enhanced-2 .content .social-links-sidebar .sidebar-link img {
  width: 32px;
  height: 32px;
}
#live-campaign-enhanced-2 .content .social-feed-container {
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  border: 1px solid #e0e0e0;
}
#live-campaign-enhanced-2 .content .social-feed-container .new-post-indicator {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--secondary);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.4);
}
#live-campaign-enhanced-2 .content .social-feed-container .new-post-indicator .dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
#live-campaign-enhanced-2 .content .social-feed-container .social-feed-embed-area {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  color: #78909c;
}
#live-campaign-enhanced-2 .content .social-feed-container .social-feed-embed-area p {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-style: italic;
}
#live-campaign-enhanced-2 .content .social-feed-container .social-feed-embed-area .embed-instruction {
  font-size: 0.9rem;
  color: #b0bec5;
}
#live-campaign-enhanced-2 .content .explore-social-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.8px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  margin-top: 4rem;
}
#live-campaign-enhanced-2 .content .explore-social-button:hover {
  background-color: #0056b3;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#media-press-kit-enhanced-2 {
  padding: 6rem 0;
  background-color: #f7f7f7;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
#media-press-kit-enhanced-2 .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#media-press-kit-enhanced-2 .content h2 {
  font-size: 3.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
#media-press-kit-enhanced-2 .content h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 6px;
  background-color: var(--secondary);
  margin: 0.75rem auto 0;
  border-radius: 4px;
}
#media-press-kit-enhanced-2 .content .subtitle {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #5a7d9b;
  margin-bottom: 4.5rem;
}
#media-press-kit-enhanced-2 .content .main-layout {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  #media-press-kit-enhanced-2 .content .main-layout {
    flex-direction: column;
    gap: 3.5rem;
  }
}
#media-press-kit-enhanced-2 .content .left-column,
#media-press-kit-enhanced-2 .content .right-column {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid #e0e0e0;
}
#media-press-kit-enhanced-2 .content .left-column h3,
#media-press-kit-enhanced-2 .content .right-column h3 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}
#media-press-kit-enhanced-2 .content .left-column p,
#media-press-kit-enhanced-2 .content .right-column p {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 2rem;
}
#media-press-kit-enhanced-2 .content .main-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #fff;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
  margin-top: auto;
}
#media-press-kit-enhanced-2 .content .main-download-button img {
  margin-right: 1rem;
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
#media-press-kit-enhanced-2 .content .main-download-button:hover {
  background-color: #218838;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.5);
}
#media-press-kit-enhanced-2 .content .contact-options {
  list-style: none;
  padding: 0;
  width: 100%;
  margin-top: auto;
}
#media-press-kit-enhanced-2 .content .contact-options li {
  margin-bottom: 1.25rem;
}
#media-press-kit-enhanced-2 .content .contact-options li:last-child {
  margin-bottom: 0;
}
#media-press-kit-enhanced-2 .content .contact-options .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f7f9fa;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
#media-press-kit-enhanced-2 .content .contact-options .contact-item:hover {
  background-color: #eaf1f6;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
#media-press-kit-enhanced-2 .content .contact-options .contact-item img {
  width: 28px;
  height: 28px;
  filter: invert(19%) sepia(85%) saturate(3082%) hue-rotate(209deg) brightness(97%) contrast(101%);
}
#media-press-kit-enhanced-2 .content .contact-options .contact-item span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #004080;
}
#media-press-kit-enhanced-2 .content .contact-options .contact-item small {
  margin-left: auto;
  color: #78909c;
  font-size: 0.9rem;
}
/*# sourceMappingURL=news-and-contact.css.map */