@charset "UTF-8";
:root {
  --bs-font-sans-serif: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-bg: #ffffff;
  --bs-link-color: #375A82;
  --bs-link-hover-color: #95B4A2;
}

h3 {
  margin-bottom: 0px;
}

p {
  font-size: 1.2rem;
  margin: 0px;
}

a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--bs-link-hover-color);
}

.img-fit {
  max-width: 100%;
  max-height: 100vh;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.container {
  padding: calc(1rem);
  text-align: center;
}

.sub-container {
  color: var(--bs-link-color);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-container-content {
  max-width: 35rem;
  text-align: justify;
}

.sub-container-footer {
  width: 520px;
}

.divider-custom {
  /* margin: 4.25rem 0 1.5rem; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.divider-custom .divider-custom-line {
  width: 100%;
  max-width: 7rem;
  height: 0.25rem;
  background-color: #2c3e50;
  border-radius: 1rem;
  border-color: #2c3e50;
}
.divider-custom .divider-custom-line:first-child {
  margin-right: 1rem;
}
.divider-custom .divider-custom-line:last-child {
  margin-left: 1rem;
}
.divider-custom .divider-custom-icon {
  color: #2c3e50;
  font-size: 2rem;
}
.divider-custom.divider-light .divider-custom-line {
  background-color: #375A82;
}
.divider-custom.divider-light .divider-custom-icon {
  color: #375A82;
}