body {
  color: #000;
}

a,
a:visited {
  color: #0039a6;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
}

a:hover,
a:visited:hover {
  color: #0071ce;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  outline: none;
}

input:focus,
a:focus,
button:focus {
  outline: 2px auto Highlight !important;
}

.btn,
.btn:active,
.btn:hover {
  outline: none;
  background-image: none;
  box-shadow: none;
  border-radius: 0px;
}

nav > li > a:hover,
.nav > li > a:hover {
  outline: none;
  border-radius: 0px;
  text-decoration: none;
}

.nav-tabs > li > a,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:active {
  outline: none;
  border-radius: 0px;
  text-decoration: none;
}

.nav-tabs > li.active > a {
  color: #000;
}

.breadcrumb-item a {
  color: #0039a6;
  text-decoration-thickness: 0.5px;
  font-weight: 600;
}

.breadcrumb-item a:hover {
  color: #0071ce;
  text-decoration-thickness: 1px;
}

.breadcrumb > li + li:before {
  color: #000;
}

#s-lib-bc .breadcrumb > .active {
  color: #000;
  font-weight: 600;
}

#s-lib-bc-customer,
#s-lib-bc-site:before {
  display: none;
}

.pagination > .active > a,
.pagination > .active > a:hover {
  background-color: #0039a6;
  border-color: #0039a6;
  color: #fff;
  text-decoration: none;
}

.pagination > li > a:hover {
  background-color: #0071ce;
  border-color: #0071ce;
  color: #fff;
  text-decoration: none;
}

.pagination-sm > li > a {
  color: #0039a6;
  text-decoration: none;
}

/*******************************************************************
********************** Header Footer CSS ***************************
********************************************************************/

.gsulib-header {
  display: flex;
  align-items: flex-end;
  gap: 36px;
  padding: 16px 0;
  margin-bottom: 16px;
}

.gsulib-header::before,
.gsulib-header::after {
  content: none;
}

.gsulib-header-title {
  font-size: 48px;
  margin: 0px;
  line-height: 1.1;
}

.gsulib-header-image {
  max-width: 200px;
  width: 100%;
}

.gsulib-header-title a {
  color: #000;
  text-decoration: none;
}

.gsulib-header-title a:hover {
  text-decoration: none;
  color: #000 !important;
}

.gsulib-row {
  background-color: transparent;
}

.gsulib-column-6 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.gsulib-column {
  padding: 20px 0;
}

.gsulib-column-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gsulib-m-t-1 {
  margin-top: 1rem;
}


.gsulib-p-0 {
  padding: 0px;
}


.gsulib-footer {
  margin-top: 24px;
}

.gsulib-footer a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.gsulib-footer a:hover {
  text-decoration: underline;
  text-decoration-color: #0071ce;
}

.gsulib-footer-light {
  background-color: #f3f6f9;
  color: #000;
  padding: 0px 20px;
}

.gsulib-footer-light a {
  color: #000;
}

.gsulib-footer-light a:hover {
  color: #000;
}

.gsulib-footer-dark {
  background-color: #262e3c;
  color: #f3f6f9;
  padding: 20px;
}

.gsulib-footer-dark a {
  color: #f3f6f9;
}

.gsulib-footer-dark a:hover {
  color: #f3f6f9;
}

.gsulib-footer-gsulinks ul li:not(:first-child)::before {
  content: "| ";
}

.gsulib-footer-dark .gsulib-footer-gsulinks ul li:not(:first-child)::before {
  color: #f3f6f9;
}

.gsulib-column-right {
  text-align: right;
}

.gsulib-footer-contacts ul {
  line-height: 1.5;
}

.gsulib-footer-h2 {
  font-size: 24px;
  margin-top: 0px;
}

.gsulib-footer-h3 {
  font-size: 16px;
  margin-top: 16px;
  margin-bottom: 0px;
}

.list-inline {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gsulib-footer-gsulinks li.list-inline-item {
  padding: 0px;
}

.list-inline-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.flex-end {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .gsulib-column-right {
    text-align: left;
  }

  .gsulib-column-6 {
    grid-template-columns: 1fr;
  }

  .flex-end {
    justify-content: flex-start;
  }

  .gsulib-header-title {
    font-size: 28px;
  }

  .gsulib-header-image {
    max-width: 150px;
  }
}