.breakpointWrapper {
  position: relative;
}
.breakpointWrapper::after {
  content: "desktop";
  position: fixed;
  bottom: 7.5%;
  right: 0;
  background-color: black;
  color: white;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .breakpointWrapper::after {
    content: "mobile";
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .breakpointWrapper::after {
    content: "tablet";
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .breakpointWrapper::after {
    content: "desktop";
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .breakpointWrapper::after {
    content: "widescreen";
  }
}
@media screen and (min-width: 1408px) and (max-width: 1919px) {
  .breakpointWrapper::after {
    content: "fullhd (1440p)";
  }
}
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .breakpointWrapper::after {
    content: "ultrahd (1080p+)";
  }
}
@media screen and (min-width: 2560px) {
  .breakpointWrapper::after {
    content: "qhd (1440p+)";
  }
}
.breakpointWrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 999998;
  opacity: 0.25;
}
@media screen and (max-width: 768px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(255, 0, 0, 0.9) calc(8.333% - 1px), rgba(255, 0, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(0, 0, 255, 0.9) calc(8.333% - 1px), rgba(0, 0, 255, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(0, 255, 0, 0.9) calc(8.333% - 1px), rgba(0, 255, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(255, 165, 0, 0.9) calc(8.333% - 1px), rgba(255, 165, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1408px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(128, 0, 128, 0.9) calc(8.333% - 1px), rgba(128, 0, 128, 0.9) 8.333%);
  }
}

.subscribe-block {
  --subscribe-title-color: #00355F;
  --subscribe-description-color: #2F3546;
  --subscribe-label-color: #2F3546;
  --subscribe-input-bg: #FFFFFF;
  --subscribe-input-text: #000000;
  --subscribe-input-border: #CCCCCC;
  --subscribe-button-bg: #00355F;
  --subscribe-button-text: #FFFFFF;
  --subscribe-button-hover-bg: #002039;
  --subscribe-button-hover-text: #FFFFFF;
  --subscribe-text-align: left;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
  padding-bottom: 0;
}
.subscribe-block__content {
  text-align: var(--subscribe-text-align);
  max-width: 600px;
  margin: 0;
  text-transform: none;
}
.subscribe-block__title {
  margin: 0 0 0.75rem 0;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  color: var(--subscribe-title-color);
  text-transform: none;
  text-align: left;
}
.subscribe-block__description {
  margin: 0 0 1.5rem 0;
  font-family: "Public Sans", sans-serif;
  color: var(--subscribe-description-color);
  line-height: 1.6;
  text-transform: none;
  text-align: left;
}
.subscribe-block__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.subscribe-block__field {
  width: 100%;
  max-width: 400px;
  text-align: left;
}
.subscribe-block__label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  color: var(--subscribe-label-color);
  text-transform: none;
  text-align: left;
}
.subscribe-block__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--subscribe-input-bg);
  color: var(--subscribe-input-text);
  border: 2px solid var(--subscribe-input-border);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.subscribe-block__input:focus {
  border-color: var(--subscribe-button-bg);
  box-shadow: 0 0 0 2px rgba(0, 53, 95, 0.1);
}
.subscribe-block__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.subscribe-block__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}
.subscribe-block__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  text-transform: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, text-decoration 0.2s ease;
  min-width: 120px;
}
.subscribe-block__button:hover, .subscribe-block__button:focus {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.subscribe-block__button:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}
.subscribe-block__notice {
  padding: 1rem 1.5rem;
  background-color: #FEF3C7;
  border: 1px solid #F59E0B;
  border-radius: 0;
}
.subscribe-block__notice p {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  color: #92400E;
}
@media screen and (max-width: 768px) {
  .subscribe-block__content {
    padding: 0 1rem;
  }
  .subscribe-block__field {
    max-width: 100%;
  }
  .subscribe-block__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }
  .subscribe-block__button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .subscribe-block__input, .subscribe-block__button {
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .subscribe-block__input:focus {
    outline: 3px solid currentColor;
    outline-offset: 2px;
  }
  .subscribe-block__button:focus {
    outline: 3px solid currentColor;
    outline-offset: 2px;
  }
}
