.tp-banner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center;
  background-color: #004561;
  color: #ffffff;
  width: 100%;
  height: 120px;
  margin: 0 auto;
  box-sizing: border-box;
  gap: 50px;
}

@media (max-width: 768px) {
  .tp-banner {
    flex-direction: column !important;
    align-items: stretch !important;
    height: auto;
    padding: 40px 57px;
    gap: 0;
  }
}

.tp-banner__item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 15px;
  padding: 0;
}

@media (max-width: 768px) {
  .tp-banner__item {
    padding-bottom: 30px;
    padding-top: 30px;
    gap: 20px;
    border-bottom: 2px solid #FFFFFF;
  }

  .tp-banner__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .tp-banner__item:first-child {
    padding-top: 0;
  }
}

.tp-banner__icon-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.tp-banner__icon-circle {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  min-height: 60px !important;
  border-radius: 60px;
  background-color: #AFE5E1;
  border: 3px solid #FFFFFF;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1;
}

.tp-banner__icon {
  width: 30px !important;
  height: 30px !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(55%) saturate(540%) hue-rotate(167deg) brightness(96%) contrast(101%);
}

.tp-banner__text-wrapper {
  display: flex !important;
  flex-direction: row !important;
  gap: 5px;
  align-items: center !important;
}

.tp-banner__label {
  color: #FFFFFF !important;
  font-family: "Duplicate Ionic", sans-serif !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2px;
}

.tp-banner__value {
  color: #FFFFFF !important;
  font-family: "Duplicate Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2px;
}

@media (min-width: 769px) {
  .tp-banner__value {
    white-space: nowrap;
  }
}

.tp-banner__divider {
  width: 2px;
  height: 60px;
  background: #FFF;
  border: #FFFFFF;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tp-banner__divider {
    display: none;
  }
}