.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%);
  }
}

.sehu-contact-info {
  background-color: inherit;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.sehu-contact-info .sehu-container {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
}
.sehu-contact-info .sehu-container .contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media screen and (min-width: 1024px) and (max-width: 1300px) {
  .sehu-contact-info .sehu-container .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .sehu-contact-info .sehu-container .contact-cards-grid {
    gap: 1.5rem;
  }
}
.sehu-contact-info .sehu-container .section-title {
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 64px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #00355F;
  margin-bottom: 2rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}
.sehu-contact-info .sehu-container .section-title .section-title-image {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .sehu-contact-info .sehu-container .section-title .section-title-image {
    max-width: 45px;
    max-height: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .sehu-contact-info .sehu-container .section-title {
    font-size: 2rem;
    text-align: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .sehu-contact-info .sehu-container .section-title {
    font-size: 1.75rem;
    text-align: center;
    justify-content: center;
  }
}
.sehu-contact-info .contact-card {
  position: relative;
  background-color: #D9D9D9;
  border: 2px solid #00355F;
  border-radius: 0 50px 0 50px;
  overflow: hidden;
  min-height: 400px;
}
.sehu-contact-info .contact-card .card-header {
  background-color: #00355F;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem;
}
.sehu-contact-info .contact-card .card-header .city-name {
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #F1E7D3;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .sehu-contact-info .contact-card .card-header .city-name {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .sehu-contact-info .contact-card .card-header .city-name {
    font-size: 24px;
  }
}
.sehu-contact-info .contact-card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sehu-contact-info .contact-card .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sehu-contact-info .contact-card .contact-row:last-child {
  margin-bottom: 0;
}
.sehu-contact-info .contact-card .contact-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.sehu-contact-info .contact-card .tty-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.sehu-contact-info .contact-card .contact-text {
  flex: 1;
  min-width: 0;
}
.sehu-contact-info .contact-card .address-text {
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #00355F;
  margin-top: -10px;
}
@media screen and (max-width: 1023px) {
  .sehu-contact-info .contact-card .address-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sehu-contact-info .contact-card .address-text {
    font-size: 18px;
  }
}
.sehu-contact-info .contact-card .hours-text {
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #00355F;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .sehu-contact-info .contact-card .hours-text {
    font-size: 16px;
  }
}
.sehu-contact-info .contact-card .phone-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: -10px;
}
.sehu-contact-info .contact-card .phone-text .phone-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
}
.sehu-contact-info .contact-card .phone-text .phone-line.tty-line {
  align-items: center;
}
.sehu-contact-info .contact-card .phone-text .phone-line.tty-line .tty-icon {
  margin-right: 0;
  margin-left: -33px;
}
.sehu-contact-info .contact-card .phone-text .phone-label {
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #00355F;
  min-width: fit-content;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sehu-contact-info .contact-card .phone-text .phone-label {
    font-size: 18px;
  }
}
.sehu-contact-info .contact-card .phone-text .phone-number {
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #00355F;
  text-align: right;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .sehu-contact-info .contact-card .phone-text .phone-number {
    font-size: 18px;
  }
}
.sehu-contact-info .contact-card .phone-line:first-child .phone-label {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .sehu-contact-info {
    padding: 2rem 0;
  }
}
@media (max-width: 768px) {
  .sehu-contact-info {
    padding: 1.5rem 0;
  }
}
