.z-index-up {
  z-index: 1;
}

body a.em-item-read-more.button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background-color: #003A70 !important;
  color: #fff !important;
  border-radius: 3px;
  border: 1px solid #C1C8D9 !important;
  padding: 12px 20px;
}
body a.em-item-read-more.button .icon {
  margin-left: 12px;
}
body a.em-item-read-more.button .icon svg {
  display: block;
  transform: translate(0, 0);
  transition: ease all 300ms;
}
body a.em-item-read-more.button:hover {
  opacity: 1;
  background-color: rgb(0, 31.5892857143, 61) !important;
}
body a.em-item-read-more.button:hover .icon svg {
  transform: translate(2px, -2px);
}

* {
  box-sizing: border-box;
}

.block--tabbed-services {
  background-color: #fff;
}
.block--tabbed-services .logomark {
  top: 10%;
  left: -8%;
}
.block--tabbed-services .tabbed-services__content {
  position: relative;
}
.block--tabbed-services .tabbed-services__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.block--tabbed-services .tabbed-services__tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.block--tabbed-services .tabbed-services__tab:hover {
  background-color: #fff;
  box-shadow: 0 1.25rem 6.25rem 0 rgba(0, 0, 0, 0.1);
}
.block--tabbed-services .tabbed-services__tab.active {
  background-color: #fff;
  box-shadow: 0 1.25rem 6.25rem 0 rgba(0, 0, 0, 0.1);
}
.block--tabbed-services .tabbed-services__tab .tab-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.block--tabbed-services .tabbed-services__tab .tab-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.block--tabbed-services .tabbed-services__tab .tab-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: #111;
  flex: 1;
}
.block--tabbed-services .tabbed-services__image {
  position: relative;
}
.block--tabbed-services .tabbed-services__image .tab-image-wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.block--tabbed-services .tabbed-services__image .tab-image-wrapper.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.block--tabbed-services .tabbed-services__image .tab-image-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 397/455;
}
.block--tabbed-services .tabbed-services__details {
  display: flex;
  flex-direction: column;
}
.block--tabbed-services .tabbed-services__details .tab-content {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.block--tabbed-services .tabbed-services__details .tab-content.active {
  opacity: 1;
  visibility: visible;
  max-height: none;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.block--tabbed-services .tab-category {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1.25rem;
  background: linear-gradient(to left, rgba(240, 244, 253, 0), #e6edff);
  height: 2.5rem;
  margin-bottom: 3rem;
}
.block--tabbed-services .tab-category .category-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block--tabbed-services .tab-category .category-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.block--tabbed-services .tab-category .category-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  color: #003A70;
}
.block--tabbed-services .tab-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #111;
}
.block--tabbed-services .tab-description ul, .block--tabbed-services .tab-description ol {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.block--tabbed-services .tab-description ul li, .block--tabbed-services .tab-description ol li {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}
.block--tabbed-services .tab-description ul li:before, .block--tabbed-services .tab-description ol li:before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #c1c8d9;
  flex-shrink: 0;
}
.block--tabbed-services .tab-description ul li, .block--tabbed-services .tab-description ol li {
  font-family: "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: #111;
}
.block--tabbed-services .tab-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.125rem;
  background-color: #003A70;
  border: 1px solid #c1c8d9;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.block--tabbed-services .tab-button:hover {
  background-color: rgb(0, 31.5892857143, 61);
  color: #fff;
}
.block--tabbed-services .tab-button span {
  font-family: "Rubik", sans-serif;
  font-size: 0.9375rem;
}
.block--tabbed-services .tab-button svg {
  transform: rotate(90deg);
}
