@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  color: #333333;
}

body {
  background-color: #F8F8F8;
}

#content-base {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-bottom: 5rem;
  min-height: calc(100vh - 18.75rem);
}
#content-base .article-content {
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
  gap: 2.5rem;
}
#content-base.to-aside {
  padding-top: 3rem;
  flex-direction: row;
  gap: 2rem;
}
#content-base.to-aside .default-width-center {
  padding: 0;
}

.content-page {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 100%;
}

.default-width-center {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.default-width-center.single-post-blog {
  padding: 0;
}

.title-base {
  font-size: 2rem;
  font-weight: bold;
}

.text-base {
  font-size: 1rem;
}

html {
  margin-top: 0 !important;
}
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6 {
  font-weight: bold;
}
html body h1 {
  font-size: 2rem;
}
html body h2 {
  font-size: 1.5rem;
}
html body h3 {
  font-size: 1.125rem;
}
html body h4 {
  font-size: 0.93rem;
}
html body h5 {
  font-size: 1rem;
}
html body h6 {
  font-size: 0.83rem;
}

@media (max-width: 46.875rem) {
  html {
    margin-top: 0 !important;
  }
  #content-base.to-aside {
    flex-direction: column-reverse;
  }
  #content-base.to-aside.blog {
    flex-direction: column;
  }
}
#hero-banner .hero-banner-center {
  max-width: 90.625rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#hero-banner .list-banner {
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero-banner .list-banner .box-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#hero-banner .list-banner .banner-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero-banner .list-banner .banner-image.mobile {
  display: none;
}
#hero-banner .glide__bullets {
  margin-top: 1.25rem;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 12px;
  width: 100%;
}
#hero-banner .glide__bullet--active {
  background-color: #A8B3BA;
}

@media (max-width: 31.25rem) {
  #hero-banner .list-banner .banner-image.mobile {
    display: flex;
  }
  #hero-banner .list-banner .banner-image.desktop {
    display: none;
  }
}
#hero-banner-video .hero-banner-center-video {
  height: 100%;
  width: 100%;
  max-width: 90.625rem;
  margin: 0 auto;
}
#hero-banner-video .hero-banner-center-video .selected_video {
  width: 100%;
  height: 100%;
  max-height: 42.1875rem;
  cursor: pointer;
}
#hero-banner-video .hero-banner-center-video .selected_video.iframe {
  aspect-ratio: 16/9;
}
#hero-banner-video .hero-banner-center-video .selected_video.mobile {
  display: none;
}

@media (max-width: 31.25rem) {
  #hero-banner-video .hero-banner-center-video .selected_video.desktop {
    display: none;
  }
  #hero-banner-video .hero-banner-center-video .selected_video.mobile {
    display: flex;
  }
}
#header {
  background-color: #F8F8F8;
}
#header .dropdownComponent > .dropdown-navegation {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  display: flex;
  justify-content: center;
}
#header .dropdownComponent:hover > .dropdown-navegation > .itens-area {
  visibility: visible;
  opacity: 1;
}
#header .dropdownComponent > .dropdown-navegation .itens-area {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  position: absolute;
  display: flex;
  gap: 2.5rem;
  background-color: rgba(0, 36, 77, 0.9019607843);
  width: 100%;
  padding: 2rem;
  border-bottom: 4px solid #fcc530;
  z-index: 8;
  max-width: 90.625rem;
}
#header .dropdownComponent > .dropdown-navegation .itens-area .group-menu-itens {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
}
#header .dropdownComponent > .dropdown-navegation .itens-area .menu-itens {
  display: flex;
  flex-direction: column;
}
#header .dropdownComponent > .dropdown-navegation .itens-area .menu-itens a {
  transition: 0s;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #F8F8F8;
  background-color: transparent;
}
#header .dropdownComponent > .dropdown-navegation .itens-area .menu-itens a:hover {
  filter: brightness(0.85);
}
#header .dropdownComponent > .dropdown-navegation .itens-area .menu-itens a:first-child {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fcc530;
}
#header .top-header .list-menu {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0.25rem 0;
}
#header .top-header .list-menu .item a {
  text-decoration: none;
  font-style: italic;
  font-weight: bold;
}
#header .top-header .list-menu .item.active a {
  color: #014898;
}
#header .bottom-header {
  background-color: #F2F2F2;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#header .bottom-header .logotype-base {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
}
#header .bottom-header .bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .bottom-header .bottom-area .navegation-list {
  display: flex;
  gap: 0.75rem;
  list-style: none;
}
#header .bottom-header .bottom-area .navegation-list .item > a {
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  border-radius: 1.25rem;
  transition: all 0.3s;
}
#header .bottom-header .bottom-area .navegation-list .item > a:hover {
  background-color: #DEE6F2;
}
#header .bottom-header .bottom-area .navegation-list .item.active a {
  border: 0.1875rem solid #014898;
  color: #014898;
  border-radius: 1.25rem;
  font-weight: bold;
  padding: 0.25rem 1.25rem;
}
#header .bottom-header .bottom-area .navegation-list .item.active a:hover {
  background-color: #DEE6F2;
}
#header .bottom-header .bottom-area .burguer-area {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  height: 1.25rem;
  cursor: pointer;
}
#header .bottom-header .bottom-area .burguer-area .burguer-button {
  display: block;
  position: relative;
  width: 2.25rem;
  height: 0.25rem;
  border: none;
  background: none;
  background-color: #001834;
  cursor: pointer;
}

@media (max-width: 46.875rem) {
  #header .bottom-header .bottom-area .burguer-area {
    display: flex;
  }
  #header .bottom-header .bottom-area .navegation-menu {
    position: absolute;
    top: 100%;
    background-color: white;
    right: -1rem;
    overflow: hidden;
    width: 0;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 0;
    transition: all 0.3s;
    z-index: 10;
  }
  #header .bottom-header .bottom-area .navegation-menu .navegation-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #header .bottom-header .bottom-area .navegation-menu .navegation-list .item a {
    display: inline-block;
  }
  #header .bottom-header .bottom-area .navegation-menu.active {
    width: calc(100vw + 1rem);
    width: calc(100dvw + 1rem);
  }
  #header .navegation-menu {
    position: absolute;
    top: 9rem;
    background-color: white;
    right: -1rem;
    overflow: hidden;
    width: 0;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 0;
    transition: all 0.3s;
    z-index: 10;
  }
  #header .navegation-menu .navegation-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #header .navegation-menu .navegation-list .item a {
    display: inline-block;
  }
  #header .navegation-menu.active {
    width: calc(100vw + 1rem);
    width: calc(100dvw + 1rem);
  }
}
.text-section .content-text {
  display: flex;
  gap: 2.5rem;
}
.text-section .content-text .image-area {
  flex: 2;
  display: flex;
  align-items: end;
}
.text-section .content-text .image-area img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.text-section .content-text .text-area {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 0;
}
.text-section .content-text .text-area .button-area-text {
  gap: 16px;
}
.text-section .content-text.reverse {
  flex-direction: row-reverse;
}
.text-section.colored {
  background-color: #014898;
}
.text-section.colored .text-area {
  padding: 2rem 1.25rem;
}
.text-section.colored .text-area * {
  color: white;
}

@media (max-width: 46.875rem) {
  .text-section .content-text {
    gap: 1.25rem;
    flex-direction: column-reverse;
  }
  .text-section .content-text .image-area img {
    max-height: 18.75rem;
  }
  .text-section .content-text.reverse {
    flex-direction: column-reverse;
  }
}
.button {
  font-size: 1rem;
  text-align: center;
  border: none;
  text-decoration: none;
  background: none;
  cursor: pointer;
}
.button.primary {
  background: #014898;
  color: white;
  padding: 0.25rem 2rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.5rem;
}
.button.primary.yellow {
  background-color: #FCC530;
  color: #333333;
}
.button.secundary {
  background: none;
  border: 2px solid;
  padding: 0.25rem 2rem;
  border-radius: 0.5rem;
}
.button.terciary {
  color: #014898;
  text-decoration: underline;
  text-align: start;
  width: -moz-fit-content;
  width: fit-content;
}

.single-post {
  display: flex;
  gap: 1.5rem;
  text-decoration: none;
}
.single-post .image-post-area {
  width: 100%;
  max-width: 18rem;
  overflow: hidden;
  height: 12.5rem;
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-post .image-post-area .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.single-post .content-post-area {
  width: 100%;
}
.single-post .content-post-area .text-post-area {
  margin-bottom: 0.75rem;
}
.single-post .content-post-area .text-post-area .title-single-post {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.single-post .content-post-area .text-post-area .text-single-post {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

@media (max-width: 46.875rem) {
  .single-post.remove-image .image-post-area {
    display: none;
  }
}
#last-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#last-posts .last-posts-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
#last-posts .last-posts-area .single-post:first-child {
  grid-row: span 3;
  flex-direction: column;
}
#last-posts .last-posts-area .single-post:first-child .image-post-area {
  height: 19.75rem;
  max-width: none;
}
#last-posts .last-posts-area .single-post:first-child .text-post-area {
  margin-bottom: 1.5rem;
}
#last-posts .last-posts-area .single-post:first-child .text-post-area .title-single-post {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
#last-posts .last-posts-area .single-post:first-child .text-post-area .text-single-post {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
#last-posts .last-posts-area .single-post:first-child .button {
  background-color: #FCC530;
  color: #333333;
}
#last-posts .button-base.terciary {
  font-size: 1.25rem;
}

@media (max-width: 46.875rem) {
  #last-posts .last-posts-area {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 31.25rem) {
  #last-posts .last-posts-area .single-post {
    flex-direction: column;
  }
  #last-posts .last-posts-area .single-post .image-post-area {
    height: 12.25rem;
    max-width: none;
  }
  #last-posts .last-posts-area .single-post .text-post-area {
    margin-bottom: 1.5rem;
  }
  #last-posts .last-posts-area .single-post .text-post-area .title-single-post {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  #last-posts .last-posts-area .single-post .text-post-area .text-single-post {
    font-size: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
  }
  #last-posts .last-posts-area .single-post:first-child {
    grid-row: span none;
  }
  #last-posts .last-posts-area .single-post:first-child .image-post-area {
    height: 12.25rem;
  }
}
#notices {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.5rem;
}
#notices .notices-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.875rem, 1fr));
  justify-content: space-between;
  gap: 1.5rem;
}
#notices .notices-area .single-post-main {
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
#notices .notices-area .single-post-main .image-post-area {
  width: 100%;
  height: 12.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#notices .notices-area .single-post-main .image-post-area .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#notices .notices-area .single-post-main .content-post-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 12px;
  gap: 16px;
  height: calc(100% - 12.5rem);
}
#notices .notices-area .single-post-main .content-post-area .title-single-post {
  font-size: 1.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
#notices .notices-area .single-post-main .content-post-area .text-single-post {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
#notices .notices-area .single-post-main .content-post-area .text-post-area {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.25rem;
}
#notices .notices-area .single-post-main .content-post-area .text-post-area .date-area {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
#notices .notices-area .single-post-main .content-post-area .button {
  width: 100%;
}

.apresentation-area .button-area .button-apresentation {
  flex: 1;
  font-size: 1.5rem;
  padding: 0.5rem;
}
.apresentation-area .button-area .button-apresentation:nth-child(odd) {
  border-radius: 0.75rem 0 0 0.75rem;
}
.apresentation-area .button-area .button-apresentation:nth-child(even) {
  border-radius: 0 0.75rem 0.75rem 0;
}
.apresentation-area .button-area .button-apresentation .secundary-text {
  font-size: 1.25rem;
}

@media (max-width: 46.875rem) {
  .apresentation-area .button-area .button-apresentation:nth-child(odd) {
    border-radius: 0.75rem;
  }
  .apresentation-area .button-area .button-apresentation:nth-child(even) {
    border-radius: 0.75rem;
  }
}
.highlight-area {
  background-color: #014898;
  color: #F8F8F8;
  padding: 2rem;
  border-radius: 1.25rem;
}
.highlight-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.highlight-area .title {
  color: #F8F8F8;
}
.highlight-area .subtitle {
  color: #F8F8F8;
}

#top-banner {
  position: relative;
  margin: 0 auto;
  max-width: 90.625rem;
  width: 100%;
  background-color: #0B7B53;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 15.625rem;
}
#top-banner .background-top-baner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
}
#top-banner .text-banner-area {
  position: absolute;
  width: 100%;
  z-index: 2;
}
#top-banner .text-banner-area h1 {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}
#top-banner .text-banner-area p {
  color: white;
}

.aside-navegation {
  width: 100%;
  max-width: 23.75rem;
  min-width: 21.875rem;
  background-color: #F2F2F2;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
}
.aside-navegation .header-aside {
  margin-bottom: 1rem;
}
.aside-navegation .header-aside .icon-down {
  display: none;
}
.aside-navegation .header-aside .title-aside {
  font-size: 1.5rem;
  font-weight: 700;
}
.aside-navegation .body-aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.aside-navegation .body-aside ul .item {
  font-size: 1.25rem;
}
.aside-navegation .body-aside ul .item.active {
  color: #014898;
  font-weight: 700;
}
.aside-navegation.transparency {
  border-radius: 0;
  border: 0.125rem solid #D1D1D1;
  padding: 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}
.aside-navegation.transparency .header-aside {
  padding: 1rem 1.25rem;
  background-color: #014898;
  margin: 0;
}
.aside-navegation.transparency .header-aside .title-aside {
  color: #F8F8F8;
  font-size: 1.25rem;
}
.aside-navegation.transparency .body-aside {
  margin: 0;
  padding: 0;
}
.aside-navegation.transparency .body-aside ul {
  gap: 0;
}
.aside-navegation.transparency .body-aside ul .item {
  border-bottom: 0.0625rem solid #D1D1D1;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
}
.aside-navegation.transparency .body-aside ul .item:last-child {
  border: none;
}

.manual-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 46.875rem) {
  .aside-navegation {
    max-width: none;
    min-width: none;
    position: relative;
    padding: 1.25rem 0;
    background: #F2F2F2;
    border-radius: 0.75rem 0.75rem 0 0;
  }
  .aside-navegation .header-aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 1.25rem;
    cursor: pointer;
  }
  .aside-navegation .header-aside .icon-down {
    display: block;
  }
  .aside-navegation .header-aside .title-aside {
    font-size: 1.25rem;
    font-weight: 700;
  }
  .aside-navegation .body-aside {
    position: absolute;
    background: #F2F2F2;
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 0.75rem 0 0.75rem 0;
    width: 0;
    opacity: 0;
    transition: all 0.3s;
    overflow: hidden;
    padding: 1.5rem 0;
    z-index: 6;
  }
  .aside-navegation.active .body-aside {
    padding: 1.5rem;
    width: 100%;
    opacity: 1;
  }
  .aside-navegation.active.transparency .body-aside {
    padding: 0;
  }
}
.cards-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cards-area-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cards-area-info .card-info {
  background-color: #F0F0F0;
  padding: 1.5rem 2rem;
  display: flex;
  border-radius: 0.75rem;
  gap: 1.5rem;
}
.cards-area-info .card-info .icon-area {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 5rem;
  max-height: 5rem;
}
.cards-area-info .card-info .image-area {
  max-width: 10rem;
  min-width: 8.75rem;
}
.cards-area-info .card-info .image-area img {
  height: 100%;
  height: auto;
  max-height: 12.5rem;
}
.cards-area-info .card-info .content-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.cards-area-info .card-info .content-card .title-card {
  font-size: 1.5rem;
  font-weight: 700;
}
.cards-area-info .card-info .content-card .footer-card {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.cards-area-info .card-info .content-card .footer-card .categories-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
}

@media (max-width: 46.875rem) {
  .cards-area-info .card-info {
    padding: 1.5rem 1.25rem;
  }
  .cards-area-info .card-info .icon-area {
    display: none;
  }
  .cards-area-info .card-info .content-card .title-card {
    font-size: 1.5rem;
  }
}
@media (max-width: 31.25rem) {
  .cards-area-info .card-info {
    flex-direction: column;
    align-items: center;
  }
  .cards-area-info .card-info .image-area {
    max-width: 12.5rem;
  }
  .cards-area-info .card-info .content-card .footer-card {
    flex-direction: column-reverse;
  }
  .cards-area-info .card-info .content-card .footer-card .categories-list {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.tag {
  background-color: #D1D1D1;
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
}

#list-cards-locate {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
#list-cards-locate .card-locate {
  padding: 2rem;
  background: #E0E7EC;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
#list-cards-locate .card-locate .content {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}
#list-cards-locate .card-locate .content .title-card {
  font-size: 1.5rem;
  font-weight: 700;
}
#list-cards-locate .card-locate .content .description-card,
#list-cards-locate .card-locate .content .description-card p {
  font-size: 1rem;
}

@media (max-width: 46.875rem) {
  #list-cards-locate {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card-edital {
  padding: 0.5rem 0;
  gap: 0.75rem;
}
.card-edital .content-action {
  align-items: center;
}

@media (max-width: 31.25rem) {
  .card-edital .content-action {
    flex-direction: column-reverse;
    gap: 0.5rem;
    align-items: start;
  }
}
.external-page-preview.default-width-center .container-iframe {
  width: 100%;
  height: 1035px;
  max-width: 700px;
  margin: 0 auto;
}
.external-page-preview.default-width-center .container-iframe iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 31.25rem) {
  .external-page-preview.default-width-center .container-iframe {
    height: 1233px;
  }
}
@media (min-width: 46.875rem) {
  .external-page-preview.default-width-center .container-iframe {
    height: 1844px;
  }
}
@media (min-width: 75rem) {
  .external-page-preview.default-width-center .container-iframe {
    height: 1844px;
  }
}
.cards-number .text-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cards-number .cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
}
.cards-number .cards-list .card-number {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  max-width: none;
}
.cards-number .cards-list .card-number .icon-area {
  width: 4.375rem;
  height: 4.375rem;
}
.cards-number .cards-list .card-number .icon-area img {
  width: 100%;
  height: 100%;
}
.cards-number .cards-list .card-number .title-card,
.cards-number .cards-list .card-number .content-number {
  color: #F2F2F2;
}
.cards-number .cards-list .card-number .icon-default {
  stroke: #F2F2F2;
}

.icons-box-area {
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
}
.icons-box-area .icon-single {
  max-width: 18.75rem;
  width: 100%;
  margin: 0 auto;
}
.icons-box-area .icon-single .button-icon {
  margin-top: auto;
}

.box-area {
  display: flex;
  flex-direction: column;
}

.programs-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.programs-area .programs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  gap: 1.5rem;
}
.programs-area .programs-list img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
}
.programs-area .programs-list a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
}

.video-carrossel-area {
  display: flex;
  gap: 2rem;
  flex-direction: column-reverse;
}
.video-carrossel-area.text-active .gallery-video {
  max-width: 100%;
  width: 100%;
}
.video-carrossel-area.text-active .text-area-video {
  max-width: 100%;
}
.video-carrossel-area.text-active.text-side {
  flex-direction: row;
}
.video-carrossel-area.text-active.text-side .gallery-video {
  max-width: 70%;
  width: 100%;
}
.video-carrossel-area.text-active.text-side .text-area-video {
  max-width: 30%;
}
.video-carrossel-area.limited-width {
  max-width: 40.625rem;
  margin: 0 auto;
}
.video-carrossel-area.limited-width .gallery-video iframe {
  max-height: 28.125rem;
}
.video-carrossel-area .gallery-video {
  max-width: 80%;
  margin: 0 auto;
}
.video-carrossel-area .gallery-video iframe {
  width: 100%;
}
.video-carrossel-area .gallery-video .list-carrossel-videos {
  width: 100%;
}
.video-carrossel-area .text-area-video {
  width: 100%;
}
.video-carrossel-area .w-full {
  overflow: hidden;
}
.video-carrossel-area .glide__slides {
  display: flex;
}

@media (max-width: 46.875rem) {
  .video-carrossel-area {
    flex-direction: column-reverse;
  }
  .video-carrossel-area.text-active .gallery-video {
    max-width: 100%;
  }
  .video-carrossel-area .gallery-video {
    max-width: 100%;
  }
  .video-carrossel-area .gallery-video iframe {
    height: 18.75rem;
  }
}
.accordion-list {
  display: flex;
  flex-direction: column;
}
.accordion-list .accordion-button {
  font-weight: bold;
}
.accordion-list .arrow-accordion {
  width: 1.25rem;
  height: 1.25rem;
}
.accordion-list .content-accordion {
  transition: all 0.3s;
  height: 0;
  overflow: hidden;
  padding: 0 2rem;
}
.accordion-list .content-accordion.disabled {
  padding: 0;
}

.card-capacitation-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  width: 100%;
}
.card-capacitation-box .card-capacitation {
  width: 100%;
  border-radius: 0.75rem;
  background-color: #ECF0F2;
  padding: 2rem;
}
.card-capacitation-box .card-capacitation .image-card-area {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 11.25rem;
}
.card-capacitation-box .card-capacitation .image-card-area img {
  width: auto;
  max-width: 100%;
  height: 80%;
  max-height: 8.125rem;
}
.card-capacitation-box .card-capacitation .content-card-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.card-capacitation-box .card-capacitation .content-card-area .category-card {
  font-size: 1rem;
}
.card-capacitation-box .card-capacitation .content-card-area .title-card {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  min-height: 6.75rem;
}

@media (max-width: 31.25rem) {
  .card-capacitation-box {
    grid-template-columns: repeat(auto-fit, 1fr);
  }
  .card-capacitation-box .card-capacitation {
    padding: 1rem;
  }
  .card-capacitation-box .card-capacitation .image-card-area {
    max-height: 6.25rem;
  }
}
.search-file-area {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 0;
  width: 100%;
}
.search-file-area label {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.search-file-area .default-input {
  width: 100%;
  border: 1px solid lightgray;
  padding: 0.25rem 1.25rem;
  border-radius: 0.25rem;
}

.archive-list-document {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1rem;
}
.archive-list-document .archive-item {
  opacity: 1;
  transition: all 0.3s;
  border: 1px solid #D1D1D1;
  border-radius: 0.5rem;
}
.archive-list-document .archive-item a {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
}
.archive-list-document .archive-item a .archive-title {
  font-size: 1.25rem;
}
.archive-list-document .archive-item a .archive-info {
  color: #333333;
}
.archive-list-document .archive-item.hidden {
  pointer-events: none;
  display: none;
}
.archive-list-document .archive-item:hover {
  background-color: #DEE6F2;
}
.archive-list-document.center_emp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0.75rem;
  opacity: 0.4;
}

.box-filter-date {
  display: none;
  margin-bottom: 1rem;
}
.box-filter-date .filter-date-active {
  font-size: 1.25rem;
}

@media (max-width: 31.25rem) {
  .search-file-area {
    display: flex;
    flex-direction: column;
  }
}
.gallery-image {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gallery-image .nav-button {
  width: 2rem;
  height: 2rem;
}
.gallery-image .galery-box {
  width: 100%;
}
.gallery-image .galery-box.grid-gallery:not(.mosaic) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1rem;
}
.gallery-image .galery-box.grid-gallery.mosaic {
  -moz-column-count: 3;
       column-count: 3;
}
.gallery-image .galery-box.grid-gallery.mosaic .image-box {
  margin-bottom: 1rem;
}
.gallery-image .galery-box .image-box {
  display: block;
}
.gallery-image .galery-box .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

@media (max-width: 31.25rem) {
  .gallery-image .galery-box.mosaic {
    -moz-column-count: 2;
         column-count: 2;
  }
  .gallery-image .galery-box .image-box {
    margin-bottom: 1rem;
    display: block;
  }
  .gallery-image .galery-box .image-box img {
    width: 100%;
    height: auto;
  }
}
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
      Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
  */
.pswp {
  position: fixed;
  z-index: var(--pswp-root-z-index);
  display: none;
  touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
    (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp,
.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp {
  position: fixed;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

    PhotoSwipe UI

  */
/*
      Error message appears when image is not loaded
      (JS option errorMsg controls markup)
  */
.pswp__error-msg-container {
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
  class pswp__hide-on-close is applied to elements that
  should hide (for example fade out) when PhotoSwipe is closed
  and show (for example fade in) when PhotoSwipe is opened
   */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10;
  /* always overlap slide content */
  pointer-events: none;
  /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
      div element that matches size of large image,
      large image loads on top of it,
      used when msrc is not provided
  */
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

    Close button

  */
.pswp__button--close {
  margin-right: 6px;
}

/*

    Arrow buttons

  */
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

    Zoom button

  */
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

    Loading indicator

  */
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
    "1 of 10" counter
  */
.pswp__counter {
  height: 30px;
  margin: 15px 0 0 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.logo-carousel-container {
  margin-bottom: 1rem;
}
.logo-carousel-container .container.default-width-center .logo-carousel-title {
  font-size: 2rem;
  margin: 0 auto 1rem;
  text-align: center;
}
.logo-carousel-container .container.default-width-center .marquee-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 2rem;
}
.logo-carousel-container .container.default-width-center .marquee-wrapper .logo-carousel-list {
  min-width: 100%;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  gap: 2rem;
  animation: marquee 10s linear infinite;
}
.logo-carousel-container .container.default-width-center .marquee-wrapper .logo-carousel-list .logo-carousel-item {
  width: 100%;
  height: 100%;
}
.logo-carousel-container .container.default-width-center .marquee-wrapper .logo-carousel-list .logo-carousel-item .item-image-container {
  width: 100%;
  height: 100%;
}
.logo-carousel-container .container.default-width-center .marquee-wrapper .logo-carousel-list .logo-carousel-item .item-image-container .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}
.wrapper-carousel-testimonials {
  margin: 0 1rem;
}
.wrapper-carousel-testimonials .slider_list.default-width-center {
  padding: 0;
}
.wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__arrows {
  display: none;
}
.wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .wrapper-container {
  display: none;
}
.wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .content-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .content-testimonial .title-testimonial {
  font-size: 2rem;
  text-align: center;
}
.wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .content-testimonial .name-testimonial {
  font-size: 1.25rem;
  font-weight: bold;
  text-wrap: wrap;
}
.wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .content-testimonial .description-testimonial * {
  text-wrap: wrap;
}
.wrapper-carousel-testimonials .slider_list.default-width-center .glide__bullets.container-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  margin: 0 auto;
  margin-top: 1rem;
  gap: 1rem;
}
.wrapper-carousel-testimonials .slider_list.default-width-center .glide__bullets.container-bullets .btn-bullet {
  height: 12px;
  width: 12px;
  background-color: #c4c4c4;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.wrapper-carousel-testimonials .slider_list.default-width-center .glide__bullets.container-bullets .btn-bullet.glide__bullet--active {
  background-color: #00244d;
}

@media (min-width: 768px) {
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__arrows {
    display: block;
  }
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__arrows .btn-slide.glide__arrow {
    height: 50px;
    width: 50px;
    background: transparent;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .wrapper-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(246, 246, 246);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgb(253, 246, 246) 50%);
  }
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .wrapper-container .container-image-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    max-width: 330px;
    max-height: 330px;
  }
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .wrapper-container .container-image-testimonial .image-testimonial {
    height: 100%;
    width: 100%;
    align-self: center;
    -webkit-clip-path: circle(50%);
            clip-path: circle(50%);
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .content-testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(246, 246, 246);
    padding: 1rem;
    gap: 1rem;
  }
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .content-testimonial .title-testimonial {
    color: #2a549f;
  }
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .content-testimonial .name-testimonial *,
  .wrapper-carousel-testimonials .slider_list.default-width-center .container-carousel-of-testimonial .glide__track .carousel-of-testimonials .glide__slides__item.carousel-item-testimonial .content-testimonial .description-testimonial * {
    color: #00244d;
  }
}
.container-horizontal-card {
  padding: 2rem;
}
.container-horizontal-card .wrapper-horizontal-card.default-width-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.container-horizontal-card .wrapper-horizontal-card.default-width-center .horizontal-card-list-title {
  font-size: 2rem;
  color: inherit;
}
.container-horizontal-card .wrapper-horizontal-card.default-width-center .horizontal-card {
  list-style: none;
  margin: 1rem;
}
.container-horizontal-card .wrapper-horizontal-card.default-width-center .horizontal-card.list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.container-horizontal-card .wrapper-horizontal-card.default-width-center .horizontal-card.list .horizontal-card-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #fff;
  color: #333;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  gap: 1rem;
}
.container-horizontal-card .wrapper-horizontal-card.default-width-center .horizontal-card.list .horizontal-card-item .title-card-item {
  font-size: 1.5rem;
  font-weight: bold;
}
.container-horizontal-card .wrapper-horizontal-card.default-width-center .horizontal-card.list .horizontal-card-item .description-card-item {
  font-weight: 300;
}

.card-gallery {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.card-gallery .container-bg-image {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 100%;
  z-index: -1;
  left: -3.75rem;
}
.card-gallery .container-bg-image .background-section {
  width: 25rem;
  height: 27.5rem;
  position: absolute;
  bottom: -100px;
  left: -70px;
}
.card-gallery .container-card-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 1;
}
.card-gallery .container-card-gallery .content-card-gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card-gallery .container-card-gallery .content-card-gallery .title-content-card-gallery {
  font-size: 2rem;
  font-weight: bolder;
}
.card-gallery .container-card-gallery .content-card-gallery .description-content-card-gallery {
  width: 100%;
}
.card-gallery .container-card-gallery .content-card-gallery .description-content-card-gallery * {
  color: inherit;
}
.card-gallery .container-card-gallery .menu-card-list .card-list {
  display: grid;
  grid-template-columns: repeat(1fr, 15.625rem);
  list-style: none;
  gap: 1rem;
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link {
  background-color: #f6f6f6;
  color: inherit;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease-in;
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link:hover {
  transform: translateY(-5px);
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link .card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.75rem;
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 0px 12px -2px rgba(0, 0, 0, 0.75);
  gap: 0;
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link .card-item.outlined {
  border-width: 2px;
  border-style: solid;
  border-color: #fcc530;
  background: transparent;
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link .card-item .card-item-image-header {
  width: 100%;
  height: auto;
  max-height: 9.375rem;
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link .card-item .card-item-image-header .card-item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link .card-item .card-item-image-header .card-item-image.icon {
  width: 4.375rem;
  height: auto;
  max-height: 4.375rem;
  align-self: start;
  margin: 1.5rem 0 0 1.5rem;
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link .card-item .card-image-content {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 0;
  gap: 1rem;
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link .card-item .card-image-content .title-container-content {
  font-size: 1.125rem;
  font-weight: bold;
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link .card-item .card-image-content .description-container-content {
  font-weight: 300;
}
.card-gallery .container-card-gallery .menu-card-list .card-list .card-link .card-item .card-image-content .description-container-content * {
  color: inherit;
}

.relative-gallery {
  position: relative;
}

@media (min-width: 1024px) {
  .card-gallery .container-card-gallery {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .card-gallery .container-card-gallery.inverted-content {
    flex-direction: row;
  }
  .card-gallery .container-card-gallery .menu-card-list .card-list {
    justify-content: center;
  }
}
.container-hero-text-video {
  width: 100%;
}
.container-hero-text-video .content-hero-text-video.default-width-center {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
}
.container-hero-text-video .content-hero-text-video.default-width-center .container-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.container-hero-text-video .content-hero-text-video.default-width-center .container-text-wrapper .container-title > .title {
  font-size: 2.5rem;
}
.container-hero-text-video .content-hero-text-video.default-width-center .container-text-wrapper .container-text {
  font-size: 1.25rem;
  font-weight: 300;
}
.container-hero-text-video .content-hero-text-video.default-width-center .container-text-wrapper .container-text * {
  color: inherit;
}
.container-hero-text-video .content-hero-text-video.default-width-center .container-text-wrapper .button.primary.btn-hero-text-video {
  font-size: 1.25rem;
}
.container-hero-text-video .content-hero-text-video.default-width-center .container-video {
  width: 100%;
  height: 22rem;
  border-radius: 1rem;
  overflow: hidden;
}
.container-hero-text-video .content-hero-text-video.default-width-center .container-video .video {
  width: 100%;
  height: 100%;
}
.container-hero-text-video .content-hero-text-video.default-width-center .container-video .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .container-hero-text-video .content-hero-text-video.default-width-center {
    flex-direction: row;
  }
  .container-hero-text-video .content-hero-text-video.default-width-center.inverted-content {
    flex-direction: row-reverse;
  }
  .container-hero-text-video .content-hero-text-video.default-width-center .container-text-wrapper {
    flex: 1;
    align-items: start;
    justify-content: center;
  }
  .container-hero-text-video .content-hero-text-video.default-width-center .container-video {
    flex: 1;
    margin: auto 0;
  }
}
.blog-list .container-blog-list.default-width-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem;
  gap: 1rem;
}
.blog-list .container-blog-list.default-width-center .blog-list-title {
  font-size: 2rem;
}
.blog-list .container-blog-list.default-width-center .blog-list {
  display: grid;
  gap: 1rem;
}
.blog-list .container-blog-list.default-width-center .blog-list .blog-list-link {
  text-decoration: none;
  max-width: 360px;
}
.blog-list .container-blog-list.default-width-center .blog-list .blog-list-link .blog-list-item .item-image-container {
  width: 100%;
  height: 170px;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.blog-list .container-blog-list.default-width-center .blog-list .blog-list-link .blog-list-item .item-image-container .image-item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-list .container-blog-list.default-width-center .blog-list .blog-list-link .blog-list-item .item-title {
  text-align: center;
}
.blog-list .container-blog-list.default-width-center .button.primary.go-to-blog-list {
  text-decoration: none;
}

@media (min-width: 768px) {
  .blog-list .container-blog-list.default-width-center .blog-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.container-our-differences {
  background-color: #f2f2f2;
  padding: 2.5rem 0;
}
.container-our-differences .wrapper-our-differences.default-width-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.container-our-differences .wrapper-our-differences.default-width-center .content-our-differences .container-title {
  margin-bottom: 1rem;
}
.container-our-differences .wrapper-our-differences.default-width-center .content-our-differences .container-title .title {
  font-size: 2rem;
  font-weight: bold;
}
.container-our-differences .wrapper-our-differences.default-width-center .content-our-differences .container-description .description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.container-our-differences .wrapper-our-differences.default-width-center .content-our-differences .container-description .description * {
  color: inherit;
}
.container-our-differences .wrapper-our-differences.default-width-center .content-our-differences-list .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  gap: 3rem 1rem;
}
.container-our-differences .wrapper-our-differences.default-width-center .content-our-differences-list .list .item {
  width: 100%;
  height: auto;
  max-width: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  gap: 1rem;
  margin: 0 auto;
}
.container-our-differences .wrapper-our-differences.default-width-center .content-our-differences-list .list .item .content-item .container-image {
  height: 5rem;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.container-our-differences .wrapper-our-differences.default-width-center .content-our-differences-list .list .item .content-item .container-image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.container-our-differences .wrapper-our-differences.default-width-center .content-our-differences-list .list .item .content-item .title {
  min-height: 3.75rem;
  line-height: 20px;
  text-align: center;
  font-weight: 600;
}

@media (min-width: 768px) {
  .container-our-differences .wrapper-our-differences.default-width-center .content-our-differences-list .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .container-our-differences .wrapper-our-differences.default-width-center {
    flex-direction: row;
  }
  .container-our-differences .wrapper-our-differences.default-width-center .content-our-differences {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 7;
  }
  .container-our-differences .wrapper-our-differences.default-width-center .content-our-differences-list {
    flex: 6;
  }
}
.footer {
  background-color: #00244d;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-content {
  height: 9.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.footer .footer-content .container-background {
  height: 2.5rem;
}
.footer .footer-content .container-background svg path {
  fill: white;
}
.footer .footer-content .social-network .list {
  display: flex;
  gap: 2rem;
}
.footer .footer-content .social-network .list .item {
  height: 32px;
  width: 32px;
  transition: all 0.3s ease-in;
}
.footer .footer-content .social-network .list .item:hover {
  transform: translateY(-5px);
}
.footer .footer-content .social-network .list .item .link {
  height: 100%;
  width: 100%;
}
.footer .footer-content .social-network .list .item .link .image {
  height: 100%;
  width: 100%;
}
.footer .container-footer-bottom {
  background-color: #014898;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .container-footer-bottom .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer .container-footer-bottom .footer-bottom * {
  font-size: 0.875rem;
  color: #F8F8F8;
  text-align: center;
}

@media (min-width: 768px) {
  .footer .footer-content {
    width: 37.5rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .footer .footer-content {
    width: 43.75rem;
  }
}
#popup-area {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 6;
}
#popup-area .popup-box {
  display: none;
  position: relative;
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  max-width: 50rem;
  max-height: 90%;
}
#popup-area .popup-box.our-differences {
  position: relative;
  max-height: 80%;
  padding: 1rem 0.5rem 1rem 0rem;
  border-radius: 0;
  scrollbar-width: 8px;
  scrollbar-color: #2e919a #f6f6f6;
}
#popup-area .popup-box.our-differences .container-image-top {
  display: none;
  position: absolute;
  top: -95px;
  left: 0;
}
#popup-area .popup-box.our-differences .container-image-top .image {
  width: 100%;
  height: 100%;
}
#popup-area .popup-box.our-differences .container-image-lateral {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 10px;
  background-repeat: repeat-y;
}
#popup-area .popup-box.our-differences .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 1.5rem 0rem 2.5rem;
  gap: 1rem;
}
#popup-area .popup-box.our-differences ::-webkit-scrollbar {
  width: 8px;
}
#popup-area .popup-box.our-differences ::-webkit-scrollbar-track {
  background-color: #f6f6f6;
  border-radius: 12px;
}
#popup-area .popup-box.our-differences ::-webkit-scrollbar-thumb {
  background: #2e919a;
  border-radius: 12px;
}
#popup-area .popup-box.our-differences ::-webkit-scrollbar-thumb:hover {
  background-color: #f6f6f6;
}
#popup-area .popup-box.active {
  display: flex;
}
#popup-area .popup-box .close-popup {
  position: absolute;
  border-radius: 50%;
  color: white;
  top: -1rem;
  right: -1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: rgb(184, 1, 1);
  box-shadow: 0 0 10px black;
  border: none;
  cursor: pointer;
  z-index: 1;
}
#popup-area .popup-box .content {
  overflow-y: auto;
  max-height: 80vh;
}
#popup-area.active {
  display: flex;
}

@media (min-width: 768px) {
  #popup-area .popup-box.our-differences .container-image-top {
    display: block;
    top: -84px;
    z-index: -1;
  }
}
@media (min-width: 1024px) {
  #popup-area .popup-box.our-differences .container-image-top {
    display: block;
    top: -94px;
  }
}
#footer_main .top-footer {
  padding: 2.5rem 1rem;
}
#footer_main .top-footer .social_media_footer {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
#footer_main .top-footer .social_media_footer a {
  text-decoration: none;
}
#footer_main .top-footer .social_media_footer a img {
  width: 1.5rem;
  height: 1.5rem;
}
#footer_main .top-footer .logotype-image {
  margin-top: auto;
  max-width: 9.375rem;
}
#footer_main .top-footer .info-area,
#footer_main .top-footer .info-area * {
  color: #fff;
}
#footer_main .top-footer .footer-area-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-left: 1.25rem;
}
#footer_main .top-footer .footer-area-item .title-footer {
  color: #FCC530;
  font-size: 1.25rem;
  display: inline-block;
}
#footer_main .top-footer .list-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#footer_main .top-footer .list-menu-footer .list-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#footer_main .top-footer .list-menu-footer .title-footer {
  color: #FCC530;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: inline-block;
}
#footer_main .top-footer .list-menu-footer .text-link-footer {
  color: #fff;
}
#footer_main .top-footer .logotype-footer svg path {
  fill: white;
}
#footer_main .bottom-footer {
  display: flex;
  flex-direction: column;
  background-color: #014898;
}
#footer_main .bottom-footer p {
  color: white;
}

@media (max-width: 46.875rem) {
  #footer_main .top-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #footer_main .top-footer .social_media_footer {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  #footer_main .top-footer .footer-area-item {
    padding: 0;
  }
}
.button-contact-float {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}
.button-contact-float img, .button-contact-float svg {
  width: 3rem;
  height: 3rem;
}

.breadcrumb-nav {
  width: 100%;
  height: 4rem;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.breadcrumb-nav .breadcrumb-nav__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumb-nav .breadcrumb-nav__list .breadcrumb-nav__item:not(:first-child) {
  margin-left: 2rem;
}
.breadcrumb-nav .breadcrumb-nav__list .breadcrumb-nav__item.active {
  color: var(--dark-blue);
  font-weight: 600;
}

.transparency__item-title {
  color: var(--dark-blue);
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.transparency__item-title::after {
  margin-top: 0.2rem;
  border-bottom: solid #f0f0f0 1px;
  content: "";
}

.transparency__header {
  display: flex !important;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
  gap: 1.5rem;
}

#transparency__links {
  margin-top: 2rem;
}

#transparency__corpo {
  margin: 0;
}

[data-page=transparency] * {
  font-family: "Open sans";
}

.transparency__p {
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 1rem;
}

.transparency__body {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.transparency__body .lateral-bar {
  order: 2;
  gap: 3rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.lateral-bar__nav {
  margin: 0;
  max-width: 400px;
  width: 354px;
  min-width: 300px;
  border: 2px solid #001834;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
}

.lateral-bar__title {
  width: 100%;
  height: 3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--dark-blue);
  padding: 0 1.25rem;
  color: white;
  text-align: center;
}

.lateral-bar__title h3 {
  width: 100%;
}

.lateral-bar__menu {
  background-color: #fff;
  padding: 0;
}

.lateral-bar__menu-item {
  padding: 14px;
  font-style: normal;
  font-weight: 325;
  color: #001834;
  border-bottom: 0.5px solid #c8c8c8;
}

.lateral-bar__menu-item:last-child {
  border-bottom: none;
}

.lateral-bar__menu-item:first-child, .lateral-bar__menu-item:last-child {
  margin: 0;
}

.transparency__menu {
  color: var(--dark-blue);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0;
  cursor: pointer;
}
.transparency__menu .transparency__menu-item {
  padding: 0.35rem 0 0.35rem 1.5rem;
  color: var(--dark-blue);
  font-weight: 400;
  display: none;
  font-size: 0.9rem;
}
.transparency__menu .transparency__menu-item:first-child {
  padding-top: 1rem;
}
.transparency__menu .transparency__menu-item:last-child {
  padding-bottom: 1.5rem;
}
.transparency__menu .transparency__menu-item.active {
  display: block;
}
.transparency__menu p {
  text-transform: none;
  color: black;
  margin-top: 1rem;
}

.transparency__iframe {
  width: 100%;
  margin-bottom: 3rem;
  height: 80vh;
}

.transparency__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: auto;
}

.menu-item__p {
  display: none;
}

main.container {
  margin-bottom: 3rem;
}

.top-cursos {
  width: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}
.top-cursos > div.owl-stage-outer {
  width: 100%;
}
.top-cursos div.owl-nav {
  width: 110%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 45%;
}

.docs-table {
  border: none;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin: 16px 0;
  background: #f0f0f0;
  padding: 0 10px;
  border-radius: 5px;
  width: 100%;
}

.text-left {
  text-align: left !important;
}

.docs-table thead tr {
  border-bottom: none !important;
}

.docs-table thead tr {
  border-radius: 5px;
  background: #bdddf7;
  border: none;
}

.docs-table thead tr {
  border-bottom: none !important;
}

.docs-table thead tr {
  border-radius: 5px;
  background: #bdddf7;
  border: none;
}

.docs-table thead tr th:last-child, .docs-table tbody tr td:last-child {
  border-radius: 0 5px 5px 0;
}

.docs-table thead tr th:first-child, .docs-table tbody tr td:first-child {
  border-radius: 5px 0 0 5px;
}

.docs-table thead tr th:last-child, .docs-table tbody tr td:last-child {
  border-radius: 0 5px 5px 0;
}

.docs-table thead tr th:first-child, .docs-table tbody tr td:first-child {
  border-radius: 5px 0 0 5px;
}

.docs-table thead tr th, .docs-table tbody tr td {
  padding: 10px;
  position: relative;
  text-align: center;
  border: none !important;
}

.docs-table thead tr th, .docs-table tbody tr td {
  padding: 10px;
  position: relative;
  text-align: center;
  border: none !important;
}

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

th {
  text-align: left;
}

td, th {
  padding: 0;
}

.title-row {
  background: #b3b2b3 !important;
}

@media only screen and (max-width: 800px) {
  .transparency__body {
    flex-direction: column-reverse;
  }
  .transparency__body .lateral-bar {
    width: 100%;
    max-width: none;
  }
  .lateral-bar__nav {
    width: 100%;
    max-width: none;
  }
}
#menu_acessibilidade {
  background-color: #f0f0f0;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: auto;
  width: 100%;
  padding: 12px 0;
}

ul.menu-acessibilidade {
  display: flex;
  flex-wrap: wrap;
}

ul.menu-acessibilidade li {
  float: left;
  display: inline-block;
  overflow: hidden;
}

ul.menu-acessibilidade li button {
  border: 0;
  background: #f8f8f8;
}

.divider {
  margin-left: 5px;
  margin-right: 5px;
}

.hc {
  background-color: #303030;
  -moz-filter: invert(100%);
  -ms-filter: invert(100%);
  -o-filter: invert(100%);
  filter: invert(100%);
}

#nav-transparencia nav ul {
  list-style-type: none;
  display: flex;
  gap: 8px;
}

#nav-transparencia nav ul li {
  font-size: 16px;
}

#nav-transparencia nav ul li a {
  text-decoration: none;
  color: #262626;
}

#nav-transparencia #back-page-transp {
  font-size: 32px;
  font-weight: 900;
  text-decoration: none;
  color: #0D2536;
}

#nav-transparencia #up-transparencia {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#nav-transparencia #up-transparencia h1 {
  max-width: 460px;
  font-size: 36px;
}

#nav-transparencia #up-transparencia h1::after {
  content: "";
  background-color: #FCC42F;
  display: block;
  width: 101px;
  height: 6px;
}

#nav-transparencia #up-transparencia p {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
}

#nav-transparencia #up-transparencia nav {
  display: flex;
  text-align: end;
  align-items: center;
  gap: 8px;
}

#nav-transparencia #up-transparencia span {
  position: relative;
  flex-direction: column;
  justify-content: space-around;
  background-color: #262626;
  width: 20px;
  height: 1.2px;
}

#nav-transparencia #up-transparencia span::before, #nav-transparencia #up-transparencia span::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #262626;
  width: 100%;
  height: 1.2px;
}

#nav-transparencia #up-transparencia span::before {
  top: -5px;
  left: 0;
}

#nav-transparencia #up-transparencia span::after {
  top: 5px;
  left: 0;
}

/* MAIN CONTENT  */
#main-content-transparencia {
  display: flex;
  gap: 32px;
  padding-top: 48px;
}

#description-transparency #mid-transparency {
  margin-bottom: 48px;
}

#description-transparency #mid-transparency h2 {
  font-weight: 350;
  font-size: 24px;
  margin-bottom: 32px;
}

#description-transparency #mid-transparency p {
  font-weight: 300;
  font-size: 20px;
  text-align: justify;
  color: #262626;
  margin-bottom: 48px;
}

/* MAIN CONTENT | CARDS  */
#cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  gap: 30px;
}

#cards .card-transparency {
  background-color: white;
  width: 100%;
  max-width: 387px;
  min-width: 350px;
  height: 100%;
  min-height: 240px;
  max-height: -moz-fit-content;
  max-height: fit-content;
  border-radius: 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: all linear 0.3s;
}

.card-transparency .card-title {
  display: flex;
  gap: 16px;
  text-decoration: none;
  text-transform: uppercase;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.card-transparency svg {
  width: 21px;
  min-width: 21px;
  height: 21px;
  min-height: 21px;
}

.card-transparency h1 {
  color: #014898;
  text-decoration: none;
  font-size: 20px;
  font-weight: 350;
}

.card-transparency .cut-overflow {
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 16px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.card-transparency .content-card {
  padding: 20px 26px;
}

.open-card .card-transparency .content-card {
  box-shadow: none;
}

.sac-transparency .card-transparency .content-card p {
  min-height: 110px;
}

.card-transparency .content-card p {
  font-weight: lighter;
  font-style: normal;
  font-size: 20px;
  color: #474747;
}

.card-transparency .content-card a {
  color: #FCC530;
  bottom: 0px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.open-card {
  overflow: hidden;
}

#close-card-p {
  display: block;
}

#open-card-p {
  display: none;
}

#cards .card-transparency.open-card.active #close-card-p {
  display: none;
}

#cards .card-transparency.open-card.active #open-card-p {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 12px;
}

#cards .card-transparency.open-card.active #open-card-p p {
  min-height: 0;
}

#open-card-p div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#open-card-p .title-card {
  font-weight: 800;
}

#cards .card-transparency.open-card.active {
  max-height: none;
  height: 735px;
}

@media (max-width: 850px) {
  #nav-transparencia #up-transparencia {
    flex-direction: column;
    gap: 16px;
  }
  #nav-transparencia #up-transparencia h1 {
    max-width: none;
    font-size: 28px;
  }
  #nav-transparencia #up-transparencia nav {
    text-align: start;
  }
  #main-content-transparencia {
    flex-direction: column;
  }
  #main-content-transparencia aside {
    max-width: none;
    width: 100%;
    gap: 10px;
  }
  #card {
    justify-content: center;
  }
  #cards .card-transparency {
    width: 40%;
    min-width: 320px;
  }
  .card-transparency .content-card p {
    font-size: 16px;
  }
  #cards .card-transparency.open-card.active {
    height: 650px;
  }
  .card-transparency .open-card.active .content-card a {
    bottom: -15px;
  }
}
.item-card-acompanhar-recorrer {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.item-card-acompanhar-recorrer p {
  min-width: 0;
}

.item-card-acompanhar-recorrer p strong {
  font-weight: 800;
}

.card-transparency .content-card ol {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  list-style-type: decimal;
  gap: 32px;
}

.card-transparency .content-card ol li {
  font-size: 20px;
}

/* FORMULÁRIO DE PROTOCOLO  */
#form-protocolo {
  width: 100%;
}

#form-protocolo h1 {
  background-color: #001834;
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  padding: 16px 40px;
}

#form-protocolo #form-send-protocolo {
  padding: 30px 40px;
  font-size: 14px;
  margin-top: 0;
}

#form-protocolo .protocolo-input {
  height: 32px;
  width: 80%;
  max-width: 526px;
  margin: 8px 0;
  border: 0.5px solid #474747;
  border-radius: 4px;
}

#form-protocolo input[type=button] {
  background-color: #FCC42F;
  color: #001834;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 130px;
  padding: 8px 16px;
  margin: 10px 0;
  background: #FCC42F;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

#form-protocolo a {
  font-size: 14px;
  color: #EB1B1B;
  text-decoration: none;
  cursor: pointer;
}

/* FORMULÁRIO DE PROTOCOLO RECUPERAR PROTOCOLO  */
#form-protocolo #form-recuperar-protocolo {
  display: none;
  padding: 30px 40px;
  font-size: 14px;
}

#form-protocolo #form-recuperar-protocolo p {
  width: 80%;
  max-width: 526px;
}

#form-protocolo #fechar-recuperar-protocolo {
  color: #00489A;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}

/* FORMULARIO DE PROTOCOLO (AVISO DE EMAIL ENVIADO) */
#form-protocolo #form-recuperar-protocolo #aviso-recuperar-protocolo {
  display: none;
}

#form-protocolo #form-recuperar-protocolo #aviso-recuperar-protocolo h3 {
  font-size: 20px;
  margin-top: 16px;
  text-transform: uppercase;
  font-weight: normal;
  color: #098315;
}

#form-protocolo #form-recuperar-protocolo #aviso-recuperar-protocolo.open {
  display: block;
}

#form-protocolo #form-recuperar-protocolo #aviso-recuperar-protocolo p {
  font-size: 14px;
}

#form-protocolo #form-recuperar-protocolo.open {
  display: block;
}

/* RESULTADO DO PROTOCOLO  */
#resultado-protocolo::before, #resultado-protocolo::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #001834;
  margin: 20px 0;
}

#resultado-protocolo {
  display: none;
  width: 100%;
}

#resultado-protocolo .title-protocolo {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

#resultado-protocolo #dados-protocolo {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 60px;
}

#resultado-protocolo #dados-protocolo .andamento-protocolo {
  color: #00489A;
}

#resultado-protocolo #dados-protocolo .cancelado-protocolo {
  color: #EB1B1B;
}

#resultado-protocolo #dados-protocolo .concluido-protocolo {
  color: #098315;
}

#resposta-protocolo p {
  font-size: 20px;
}

#resposta-protocolo .resultado-protocolo {
  background-color: #D9D9D9;
  color: #474747;
  margin-top: 16px;
  padding: 16px 48px;
}

#enviado-protocolo {
  display: flex;
  gap: 27px;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

#enviado-protocolo .check-protocolo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  max-width: 70px;
  max-height: 70px;
  min-width: 70px;
  min-height: 70px;
  border-radius: 50%;
  background-color: #098315;
  color: white;
}

#enviado-protocolo .texto-enviado-protocolo {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#enviado-protocolo .texto-enviado-protocolo h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #098315;
}

#enviado-protocolo .texto-enviado-protocolo p {
  font-size: 20px;
  color: #474747;
}

.btn-voltar-protocolo {
  width: 100%;
  display: flex;
  justify-content: end;
}

#enviado-protocolo input[type=button] {
  background-color: #FCC42F;
  color: #001834;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 130px;
  padding: 8px 16px;
  margin: 10px 0;
  background: #FCC42F;
  border-radius: 10px;
  border: none;
  justify-self: end;
  cursor: pointer;
}

#resultado-protocolo.open {
  display: block;
}

/* POPUP ERRO  */
#background-popup-erro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

#background-popup-erro.open {
  display: flex;
}

.popup-erro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: start;
  background-color: white;
  padding: 27px 20px;
  width: 100%;
  max-width: 486px;
  border: 1px solid #001834;
  box-shadow: 0px 2px 35px -7px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}

.popup-erro .erro-svg {
  background-color: #EB1B1B;
  width: 45px;
  height: 45px;
}

.popup-erro .title-erro {
  color: #EB1B1B;
  font-weight: 600;
}

.popup-erro p {
  font-size: 20px;
  text-align: justify;
  margin-bottom: 30px;
}

.popup-erro #btn-erro-popup {
  background-color: #FCC42F;
  color: #001834;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 33px;
  margin: 10px 0;
  background: #FCC42F;
  border-radius: 10px;
  border: none;
  justify-self: end;
  cursor: pointer;
}

.popup-erro #btn-erro-popup:hover {
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.25);
}

@media (max-width: 850px) {
  .card-transparency .content-card ol li {
    font-size: 16px;
  }
  #resultado-protocolo #dados-protocolo {
    flex-direction: column;
    gap: 20px;
  }
  #form-protocolo .protocolo-input {
    width: 100%;
  }
}
#cards-solicitar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  gap: 30px;
}

#form-solicitacao {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: end;
  align-items: end;
  margin-bottom: 50px;
}

#form-solicitacao input[type=submit] {
  background-color: #FCC42F;
  color: #001834;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 20px;
  max-width: 120px;
  background: #FCC42F;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.card-solicitacao.card-transparency .content-card {
  gap: 20px;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0px;
}

.title-card-solicitacao {
  justify-content: center;
}

.item-card-solicitacao, .item-card-numero {
  display: flex;
  align-items: center;
  gap: 16px;
}

.card-transparency .content-card .item-card-numero p {
  min-height: 0;
}

.item-card-numero p {
  font-weight: 200;
}

#cards-solicitar {
  display: flex;
}

#cards-solicitar .card-transparency.card-solicitacao {
  min-width: 350px;
  max-width: 40%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.numero-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-title .blog-title__text.transparency_sac {
  font-family: Gotham;
  font-weight: 800;
  font-size: 36px;
  color: #001834;
}

.transparency__content ul.style_two {
  margin: 30px 0;
  padding: 0;
  list-style-type: none;
}
.transparency__content ul.style_two > li {
  margin: 0 0 2%;
  padding: 0;
}
.transparency__content ul.style_two > li.highlight {
  box-shadow: 0 0 0 3px #495158 inset;
}
.transparency__content ul.style_two > li > a {
  display: block;
  padding: 25px 25px 25px 66px;
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  perspective: 700px;
  transform-origin: center left;
}
.transparency__content ul.style_two > li > a:hover {
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.transparency__content ul.style_two > li > a:hover span {
  transform-origin: center left;
  transform: translateY(-50%) rotateY(60deg);
}
.transparency__content ul.style_two > li > a span {
  display: block;
  width: 36px;
  height: 50px;
  color: #fff;
  /*background:$basic;*/
  box-shadow: 0 0 0 1px #78848f inset;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.transparency__content ul.style_two > li > a span:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #949ea6;
  box-shadow: 0 0 0 1px #78848f inset;
  position: absolute;
  top: 0;
  right: 0;
}
.transparency__content ul.style_two > li > a span:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: 0;
  right: 0;
}
.transparency__content ul.style_two > li > a span i {
  display: block;
  height: 20px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  font-style: normal;
  background: #1b1e20;
  border-radius: 2px;
  position: absolute;
  bottom: 8px;
  left: -5px;
  right: 5px;
}
.transparency__content ul.style_two > li > a span i:before {
  content: ".file";
}
.transparency__content ul.style_two > li > a[href$=".pdf"] span i {
  background-color: #f15642;
  box-shadow: 0 0 0 1px #bf220e inset;
}
.transparency__content ul.style_two > li > a[href$=".pdf"] span i:before {
  content: ".pdf";
}

/* Ouvidoria */
#contato-ouvidoria {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 45px;
}

#contato-ouvidoria h2 {
  font-size: 24px;
}

/* FAQ */
#cards-sanfona {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.card-sanfona .title-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card-sanfona {
  display: flex;
  flex-direction: column;
  border: 1px solid #001834;
  border-radius: 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 12px 20px;
  gap: 20px;
  cursor: pointer;
  transition: all 1s;
  transition-timing-function: ease-in-out;
  overflow: hidden;
}

.card-sanfona.active {
  max-height: none;
}

.card-sanfona.active .conteudo-card p {
  display: block;
  text-transform: none;
}

.card-sanfona.active .title-card p {
  font-weight: 300;
}

.card-sanfona .conteudo-card p {
  display: none;
}

.card-sanfona.active svg {
  transform: rotate(-90deg);
}

.card-sanfona .title-card p {
  width: 90%;
  min-width: 90%;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

.card-sanfona svg {
  max-width: 20px;
  height: 100%;
  transition: all 0.3s;
}

/* UNIDADES */
#down-transparencia {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

#down-transparencia #content-map {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#local-map {
  width: 191px;
  border: 1px solid #001834;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 25px 20px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
}

#map-show {
  background-color: blue;
  width: 100%;
  max-width: 800px;
  height: 100%;
  min-height: 500px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 21px;
}

.transparency__content {
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  background-color: #fcfcfc;
  padding: 25px;
}

#cards-unidade {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 32px;
}

#cards-unidade .card-transparency {
  max-width: 375px;
  border-radius: 15px;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#cards-unidade .content-card p {
  padding: 20px;
}

#map {
  min-height: 500px;
}

.image-size-backgroud-4594309 {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}

.image-size-backgroud-4594309 {
  background-image: url(www.portaldaindustria.com.br/);
}

.posicao {
  width: 100%;
  height: 208px;
  display: inline-block;
}

.posicao2 {
  display: inline-block;
}

.description-transparency {
  max-width: 100%;
}

.box-transparencia {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-direction: column;
}

.al-senai-shadow {
  border: 1px solid rgba(225, 225, 225, 0.5);
}

.al-senai-gratuidade {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 32px;
  background: #FFFFFF;
  border: 1px solid rgba(225, 225, 225, 0.5);
}

.al-senai-gratuidade .al-senai-gratuidade-textos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
}

.al-senai-gratuidade-select {
  width: 100%;
  border: 2px solid #A2A2A2;
  border-radius: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #222222;
  opacity: 0.64;
  padding: 10px;
}

.select-senai {
  width: 19%;
}

.al-senai-gratuidade-button-filtro {
  background-repeat: repeat-x;
  clear: both;
  background-position: top center;
  display: flex;
  justify-content: space-between;
}

.gratuidade-conteudo {
  margin-top: 26px;
  display: flex;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  flex-direction: column;
}

.gratuidade-conteudo-table {
  border: 1px solid rgb(255, 134, 44);
  background-color: #ffffff;
  overflow: hidden;
  border-radius: 4px;
  width: 87%;
  margin: 0 auto;
}

.gratuidade-conteudo table, .gratuidade-conteudo table > *, .gratuidade-conteudo table > * > *, .gratuidade-conteudo table > * > * > * {
  margin: 0 !important;
  padding: 0 !important;
  background: unset !important;
  background-color: unset !important;
  border: 0px solid #fff !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 110% !important;
}

.gratuidade-conteudo table > thead > tr > th:first-child {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  text-align: center;
  padding: 16px 8px !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.gratuidade-conteudo table > thead > tr > th:first-child {
  background-color: #014898 !important;
}

.gratuidade-conteudo table > tbody > tr > th {
  font-weight: 600 !important;
  background-color: #D0D0D0 !important;
  text-align: center !important;
  color: #000;
  border-bottom: 1px solid #C0C0C0 !important;
  border-right: 1px solid #C0C0C0 !important;
  border-radius: 0 !important;
  vertical-align: middle !important;
  padding: 8px 4px !important;
}

.gratuidade-conteudo table > tbody > tr > td {
  padding: 16px !important;
  text-align: left !important;
  background-color: #D0D0D0 !important;
  vertical-align: middle !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

td[colspan="5"], th[colspan="5"] {
  width: 62.5% !important;
}

.gratuidade-conteudo table > tbody > tr.programa > td {
  background-color: #f4f4f4 !important;
  border-bottom: 0px solid #C0C0C0 !important;
  border-right: 1px solid #C0C0C0 !important;
  font-weight: 700 !important;
}

.indicadores-fontes, .indicadores-notas, .vagas-fontes, .vagas-notas, .vagas-analises {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #222222;
  margin-top: 16px;
  margin-bottom: 16px;
}

.indicadores-notas {
  margin-bottom: 40px;
}

.materia .label {
  font-size: 14px !important;
}

.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}

.materia a {
  color: #014898;
  font-size: 14px;
  line-height: 21px;
}

.label-default {
  background-color: #777;
}

.transparencia-downloads {
  display: flex;
  align-items: center;
  justify-content: end;
}

.transparencia-downloads .btn-download {
  padding: 12px 16px;
  border: 1.4px solid #014898 !important;
  border-radius: 8px;
  background-color: transparent !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #014898 !important;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}

.transparencia-downloads button {
  margin-right: 16px;
}

.transparencia-downloads .btn-download:hover {
  opacity: 0.75;
  cursor: pointer;
}

.btn-oportunidade {
  padding: 12px;
  background-color: #014898;
  color: white;
  border-radius: 7px;
}

.btn-oportunidadediv {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.select-oportunidade {
  display: flex;
  justify-content: space-evenly;
  padding: 25px 0;
}

.select-cursos-oportunidade {
  display: flex;
  padding: 6px 85px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.article-box-oportunidade {
  width: 180% !important;
}

.btn-oportunidade-page {
  padding: 12px;
  background-color: #014898;
  color: white;
  border-radius: 7px;
  margin-bottom: 10px;
}

.btn-oportunidade-div {
  display: flex;
  justify-content: end;
}

.table-oportunidade {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.data-table {
  background: #f4f4f4;
  padding: 10px;
  margin-bottom: 15px;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

.tr-tabela {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-left: 35px !important;
  text-align: left;
  padding-top: 22px !important;
}

.azul td {
  background: #bcdcf8 !important;
}

.table-oportunidade tr td:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-left: 35px !important;
  text-align: left;
}

.table-oportunidade tr td {
  background: #ffffff;
  font-size: 16px;
  color: #000;
  text-align: left;
  padding: 20px 73px !important;
  margin: 0 !important;
}

.cinza td {
  background: #b3b2b3 !important;
}

.div-btn-oportunidade {
  display: flex;
  justify-content: space-around;
  padding-top: 25px;
}

.voltar {
  background-color: #b3b2b3 !important;
  padding: 12px 80px;
}

.sacsac {
  padding: 12px 80px;
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.custom-nav-tabs {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-bottom: unset;
}

.custom-nav-tabs > label {
  text-align: center;
  display: flex;
  width: 128%;
}

.custom-nav-tabs > label > a, .tablinks {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #222222;
  text-align: center;
  border: unset;
  padding: 12px 16px;
  display: flex;
  width: 128%;
}

.custom-nav-tabs > label > a, .tablinks {
  border-bottom: 4px solid #F8F8F8;
  transition: all 500ms ease;
}

.content_principal {
  padding-top: 48px;
  height: 320px;
  display: none;
  height: -moz-fit-content;
  height: fit-content;
}

.content_principal:target {
  display: block;
}

.result_acessibilidade {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

.collapse-header {
  color: #d96f19;
  font-weight: 600;
}

.collapsed {
  display: flex;
  width: 100%;
  padding: 10px 12.5px;
  background: transparent;
  border: 1px solid rgba(217, 111, 25, 0.2941176471);
  border-radius: 5px;
  color: #D96F19;
  justify-content: space-between;
}

.content_secundario {
  display: none;
  padding: 6px 12px;
  height: -moz-fit-content;
  height: fit-content;
}

.content_secundario:target {
  display: block;
}

.input_demonstra_result {
  display: none;
}

input[type=radio]:checked + label > a {
  top: 0;
  padding-top: 17px;
  border-bottom: 4px solid #fa911a;
}

.activeSubTab {
  border-bottom: 4px solid #fa911a;
}

.mapa-estrategico-active {
  display: block !important;
}

[id^=tab]:checked ~ [id^=tab-content] {
  display: block;
}

[id^=tab]:checked ~ [id^=tab-content2] {
  display: block;
}

.demonstra-result, .planejamento_sistematico {
  margin-top: 26px;
  display: flex;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  flex-direction: column;
}

.demonstra-result-conteudo-table, .planejamento_sistematico-conteudo-table {
  border: 1px solid rgb(255, 134, 44);
  background-color: #ffffff;
  overflow: hidden;
  border-radius: 4px;
  width: 87%;
  margin: 0 auto;
}

.demonstra-result table, .demonstra-result table > *, .demonstra-result table > * > *, .demonstra-result table > * > * > *,
.planejamento_sistematico table, .planejamento_sistematico table > *, .planejamento_sistematico table > * > *, .planejamento_sistematico table > * > * > * {
  margin: 0;
  padding: 0;
  border: 0px solid #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
}

.demonstra-result table > thead > tr > th, .planejamento_sistematico table > thead > tr > th {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 16px 8px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.demonstra-result table > thead > tr > th, .planejamento_sistematico table > thead > tr > th {
  background-color: #014898;
}

.demonstra-result table > tbody > tr > th, .planejamento_sistematico table > tbody > tr > th {
  font-weight: 600;
  background-color: #D0D0D0;
  text-align: center;
  color: #000;
  border-bottom: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  border-radius: 0;
  vertical-align: middle;
  padding: 8px 4px;
}

.demonstra-result table > tbody > tr > td, .planejamento_sistematico table > tbody > tr > td {
  padding: 16px;
  text-align: left;
  background-color: #D0D0D0;
  vertical-align: middle;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

td[colspan="5"], th[colspan="5"] {
  width: 62.5%;
}

.demonstra-result table > tbody > tr.indicador > td, .planejamento_sistematico table > tbody > tr.indicador > td {
  background-color: #e7e7e7;
}

.demonstra-result table > tbody > tr.programa > td, .planejamento_sistematico table > tbody > tr.programa > td {
  background-color: #f4f4f4;
  border-bottom: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  font-weight: 700;
}

.demonstra-result-conteudo-table table > tbody > tr.programa:hover, .planejamento_sistematico-conteudo-table table > tbody > tr.programa:hover {
  background: #bdbdbd !important;
  cursor: pointer;
}

.modal-sitemico {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: 0;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-sitemico .modal-content {
  max-width: 700px;
  padding: 24px;
  background-color: white;
  border-radius: 10px;
  margin: auto;
}

.modal-sitemico .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
}

.modal-sitemico .modal-content .modal-header h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  margin-top: 0;
  margin-bottom: 24px;
  color: #222222;
}

.modal-sitemico .modal-content .modal-header button {
  padding: 0;
  font-size: 16px;
  font-weight: 900;
  height: -moz-fit-content;
  height: fit-content;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #919191;
}

.tb-resultados {
  border: 1px solid #014898;
  border-radius: 5px;
  background: #014898;
}

.tb-resultados > table {
  padding: unset;
  background: unset;
  border-collapse: collapse;
  color: #222222;
}

.tb-resultados > table > thead {
  border: unset;
  background: unset;
}

.tb-resultados table > thead > tr {
  border: unset;
  background: unset;
}

.tb-resultados table > thead > tr > th {
  background: unset;
  background-color: #014898;
  border-left: none;
  border-right: none;
  text-align: end;
  text-transform: capitalize;
  font-style: normal;
  font-size: 14px;
  line-height: 110%;
  padding: 14px 16px;
  vertical-align: middle;
  font-weight: 700;
  color: #FFFFFF;
}

.tb-resultados table > thead > tr > th:nth-child(1) {
  text-align: start;
}

.tb-resultados > table > tbody {
  border: unset;
  background: unset;
}

.tb-resultados table > tbody > tr {
  border: unset;
  background: unset;
}

.tb-resultados table > tbody > tr > td {
  background: white;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  vertical-align: middle;
  word-break: normal;
  padding: 14px;
  border-right: 1px solid #c5c6c9;
  border-bottom: 1px solid #c5c6c9;
}

.tb-resultados table > * > tr > [colspan="3"] {
  width: 23.0769230769%;
}

.tb-resultados table > tbody > tr > td:nth-child(1) {
  /* font-weight: bold; */
  text-align: start;
}

.modal-sitemico .modal-content .tb-resultados > table {
  text-transform: none;
}

.nt-downloads {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 30px;
}

.nt-downloads .si-download {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 16px;
  width: 146px;
  height: 165px;
  background: #FFFFFF;
  border: 1px solid #646464;
  border-radius: 8px;
}

.nt-downloads .si-download section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nt-downloads .si-download section p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 16px;
  color: #014898;
}

.nt-downloads .si-download section h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px !important;
  line-height: 16px;
  color: #014898;
}

.nt-downloads .si-download section span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px !important;
  line-height: 16px;
  color: #646464;
}

.nt-downloads .si-download img {
  align-self: end;
}

.download-gestao-dn {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-direction: row;
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.custom-nav-tab {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-bottom: unset;
}

.custom-nav-tab > label {
  text-align: center;
  display: flex;
}

.custom-nav-tab > label > a, .tablinks {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #222222;
  text-align: center;
  border: unset;
  padding: 12px 16px;
  display: flex;
  width: 128%;
}

.custom-nav-tab > label > a, .tablinks {
  border-bottom: 4px solid #F8F8F8;
  transition: all 500ms ease;
}

.content_principal {
  padding-top: 48px;
  height: 320px;
  display: none;
  height: -moz-fit-content;
  height: fit-content;
}

.content_principal:target {
  display: block;
}

.result_acessibilidade {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

.collapse-header {
  color: #d96f19;
  font-weight: 600;
}

.collapsed {
  display: flex;
  width: 100%;
  padding: 10px 12.5px;
  background: transparent;
  border: 1px solid rgba(217, 111, 25, 0.2941176471);
  border-radius: 5px;
  color: #D96F19;
  justify-content: space-between;
}

.content_secundario {
  display: none;
  padding: 6px 12px;
  height: -moz-fit-content;
  height: fit-content;
}

.content_secundario:target {
  display: block;
}

.input_contrato {
  display: none;
}

input[type=radio]:checked + label > a {
  top: 0;
  padding-top: 17px;
  border-bottom: 4px solid #00244D;
}

.activeSubTab {
  border-bottom: 4px solid #00244D;
}

[id^=tab]:checked ~ [id^=tab-content] {
  display: block;
}

[id^=tab]:checked ~ [id^=tab-content2] {
  display: block;
}

.demonstra-result, .planejamento_sistematico {
  margin-top: 26px;
  display: flex;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  flex-direction: column;
}

.demonstra-result-conteudo-table, .planejamento_sistematico-conteudo-table {
  border: 1px solid rgb(255, 134, 44);
  background-color: #ffffff;
  overflow: hidden;
  border-radius: 4px;
  width: 87%;
  margin: 0 auto;
}

.demonstra-result table, .demonstra-result table > *, .demonstra-result table > * > *, .demonstra-result table > * > * > *,
.planejamento_sistematico table, .planejamento_sistematico table > *, .planejamento_sistematico table > * > *, .planejamento_sistematico table > * > * > * {
  margin: 0;
  padding: 0;
  border: 0px solid #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
}

.demonstra-result table > thead > tr > th, .planejamento_sistematico table > thead > tr > th {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 16px 8px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.demonstra-result table > thead > tr > th, .planejamento_sistematico table > thead > tr > th {
  background-color: #014898;
}

.demonstra-result table > tbody > tr > th, .planejamento_sistematico table > tbody > tr > th {
  font-weight: 600;
  background-color: #D0D0D0;
  text-align: center;
  color: #000;
  border-bottom: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  border-radius: 0;
  vertical-align: middle;
  padding: 8px 4px;
}

.demonstra-result table > tbody > tr > td, .planejamento_sistematico table > tbody > tr > td {
  padding: 16px;
  text-align: left;
  background-color: #D0D0D0;
  vertical-align: middle;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

td[colspan="5"], th[colspan="5"] {
  width: 62.5%;
}

.demonstra-result table > tbody > tr.indicador > td, .planejamento_sistematico table > tbody > tr.indicador > td {
  background-color: #e7e7e7;
}

.demonstra-result table > tbody > tr.programa > td, .planejamento_sistematico table > tbody > tr.programa > td {
  background-color: #f4f4f4;
  border-bottom: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  font-weight: 700;
}

.demonstra-result-conteudo-table table > tbody > tr.programa:hover, .planejamento_sistematico-conteudo-table table > tbody > tr.programa:hover {
  background: #bdbdbd !important;
  cursor: pointer;
}

.modal-sitemico {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: 0;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-sitemico .modal-content {
  max-width: 700px;
  padding: 24px;
  background-color: white;
  border-radius: 10px;
  margin: auto;
}

.modal-sitemico .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
}

.modal-sitemico .modal-content .modal-header h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  margin-top: 0;
  margin-bottom: 24px;
  color: #222222;
}

.modal-sitemico .modal-content .modal-header button {
  padding: 0;
  font-size: 16px;
  font-weight: 900;
  height: -moz-fit-content;
  height: fit-content;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #919191;
}

.tb-resultados {
  border: 1px solid #014898;
  border-radius: 5px;
  background: #014898;
}

.tb-resultados > table {
  padding: unset;
  background: unset;
  border-collapse: collapse;
  color: #222222;
}

.tb-resultados > table > thead {
  border: unset;
  background: unset;
}

.tb-resultados table > thead > tr {
  border: unset;
  background: unset;
}

.tb-resultados table > thead > tr > th {
  background: unset;
  background-color: #014898;
  border-left: none;
  border-right: none;
  text-align: end;
  text-transform: capitalize;
  font-style: normal;
  font-size: 14px;
  line-height: 110%;
  padding: 14px 16px;
  vertical-align: middle;
  font-weight: 700;
  color: #FFFFFF;
}

.tb-resultados table > thead > tr > th:nth-child(1) {
  text-align: start;
}

.tb-resultados > table > tbody {
  border: unset;
  background: unset;
}

.tb-resultados table > tbody > tr {
  border: unset;
  background: unset;
}

.tb-resultados table > tbody > tr > td {
  background: white;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  vertical-align: middle;
  word-break: normal;
  padding: 14px;
  border-right: 1px solid #c5c6c9;
  border-bottom: 1px solid #c5c6c9;
}

.tb-resultados table > * > tr > [colspan="3"] {
  width: 23.0769230769%;
}

.tb-resultados table > tbody > tr > td:nth-child(1) {
  /* font-weight: bold; */
  text-align: start;
}

.modal-sitemico .modal-content .tb-resultados > table {
  text-transform: none;
}

.nt-downloads {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 30px;
}

.nt-downloads .si-download {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 16px;
  width: 146px;
  height: 165px;
  background: #FFFFFF;
  border: 1px solid #646464;
  border-radius: 8px;
}

.nt-downloads .si-download section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nt-downloads .si-download section p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 16px;
  color: #014898;
}

.nt-downloads .si-download section h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px !important;
  line-height: 16px;
  color: #014898;
}

.nt-downloads .si-download section span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px !important;
  line-height: 16px;
  color: #646464;
}

.nt-downloads .si-download img {
  align-self: end;
}

.download-gestao-dn {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-direction: row;
}

.si-transparencia-busca {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #f7f7f7;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 30px;
}

.si-transparencia-busca .busca-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.03em;
}

.si-transparencia-busca .busca-content {
  display: block;
  transition: all 0.5s;
  overflow: hidden;
  max-height: 0;
}

.open {
  display: block;
}

.si-transparencia-busca.open .busca-content {
  max-height: 1000px;
  margin-top: 30px;
}

.form-group {
  margin-bottom: 15px;
}

.si-transparencia-busca .form-group {
  margin-bottom: 16px;
}

.si-transparencia-busca label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #222222;
}

.si-transparencia-busca .form-control {
  padding: 8px;
  border: 2px solid #c0c0c0;
  border-radius: 4px;
  height: unset;
}

.content_principal_infraestrutura {
  padding-top: 48px;
  height: 320px;
  height: -moz-fit-content;
  height: fit-content;
}

.box-transparencia {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-direction: column;
}

.infraestrutura-transp {
  margin-top: 26px;
  display: flex;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  flex-direction: column;
}

.infraestrutura-transp-conteudo-table {
  border: 1px solid rgb(255, 134, 44);
  background-color: #ffffff;
  overflow: hidden;
  border-radius: 4px;
  width: 87%;
  margin: 0 auto;
}

.infraestrutura-transp table, .infraestrutura-transp table > *, .infraestrutura-transp table > * > *, .infraestrutura-transp table > * > * > * {
  margin: 0;
  padding: 0;
  border: 0px solid #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  width: 100%;
}

.infraestrutura-transp table > thead > tr > th {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 16px 8px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.infraestrutura-transp table > thead > tr > th {
  background-color: #014898;
}

.infraestrutura-transp table > tbody > tr > th {
  font-weight: 600;
  background-color: #D0D0D0;
  text-align: center;
  color: #000;
  border-bottom: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  border-radius: 0;
  vertical-align: middle;
  padding: 8px 4px;
}

.infraestrutura-transp table > tbody > tr > td {
  padding: 16px;
  text-align: left;
  background-color: #D0D0D0;
  vertical-align: middle;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

td[colspan="5"], th[colspan="5"] {
  width: 62.5%;
}

.infraestrutura-transp table > tbody > tr.indicador > td {
  background-color: #e7e7e7;
  cursor: pointer;
}

.infraestrutura-transp table > tbody > tr.programa > td {
  background-color: #f4f4f4;
  border-bottom: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  font-weight: 700;
}

.infraestrutura-transp-conteudo-table table > tbody > tr.programa:hover {
  background: #bdbdbd !important;
  cursor: pointer;
}

.modal-sitemico-infra {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: 0;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-sitemico-infra .modal-content-infra {
  max-width: 780px;
  padding: 24px;
  background-color: white;
  border-radius: 10px;
  margin: auto;
}

.modal-sitemico-infra .modal-content-infra .modal-header-infra {
  display: flex;
  justify-content: end;
}

.modal-sitemico-infra .modal-content-infra .modal-header-infra h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  margin-top: 0;
  margin-bottom: 24px;
  color: #222222;
}

.modal-sitemico-infra .modal-content-infra .modal-header-infra button {
  padding: 0;
  font-size: 30px;
  font-weight: 900;
  height: -moz-fit-content;
  height: fit-content;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #919191;
}

.item-list-transparencia {
  display: flex;
  gap: 0.5rem;
}

.btn.btn-outline-success {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.4px solid #014898;
  color: #014898;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  margin-top: 30px;
}

.single-post-blog .post-image-area {
  width: 100%;
  height: 40.625rem;
  border-radius: 0 0 0.75rem 0.75rem;
  overflow: hidden;
}
.single-post-blog .post-image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-post-blog .base-info-post {
  margin-bottom: 2rem;
}
.single-post-blog .base-info-post .post-title {
  margin-bottom: 2rem;
}
.single-post-blog .base-info-post .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.single-post-blog .base-info-post .category-list .category-box {
  display: inline-block;
  background-color: #014898;
  border-radius: 1.25rem;
  color: #F8F8F8;
  padding: 0.5rem 1.25rem;
}
.single-post-blog .resume-post p {
  font-size: 1.25rem;
}
.single-post-blog .resume-post hr {
  margin: 2.5rem 0;
}
.single-post-blog .content-post {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.single-post-blog .content-post a {
  color: #014898;
  text-decoration: underline;
}
.single-post-blog .content-post ul {
  list-style: disc;
}

.date-area-post {
  display: flex;
  gap: 0.25rem;
}

@media (max-width: 46.875rem) {
  .single-post-blog .post-image-area {
    height: 31.25rem;
  }
}
@media (max-width: 31.25rem) {
  .single-post-blog .post-image-area {
    height: 25rem;
  }
}
.aside-blog-single {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 21.875rem;
  width: 100%;
}
.aside-blog-single .card-blog {
  width: 100%;
  display: block;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.aside-blog-single .card-blog .card-image-area {
  height: 12.5rem;
  width: 100%;
}
.aside-blog-single .card-blog .card-image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aside-blog-single .card-blog .card-content-area {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: start;
}
.aside-blog-single .card-blog .card-content-area .card-title-blog {
  font-size: 1.25rem;
  color: #001834;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.aside-blog-single .card-blog .card-content-area .card-excerpt-blog * {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.aside-blog-single .card-blog .card-content-area .card-button-blog {
  color: #001834;
  font-weight: bold;
}

.center-blog {
  padding: 0 1rem;
}

.blog-cards-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem 1.5rem;
}
.blog-cards-main .card-blog-main {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  height: -moz-fit-content;
  height: fit-content;
}
.blog-cards-main .card-blog-main .image-blog-card {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-cards-main .card-blog-main .card-content-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 1rem;
  height: calc(100% - 12.8125rem);
}
.blog-cards-main .card-blog-main .card-content-area .title-content-area {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #001834;
  margin-bottom: 0.75rem;
}
.blog-cards-main .card-blog-main .card-content-area .title-content-area .card-title-blog {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.blog-cards-main .card-blog-main .card-content-area .title-content-area .card-excerpt-blog {
  height: 4.5rem;
}
.blog-cards-main .card-blog-main .card-content-area .title-content-area .card-excerpt-blog * {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.blog-cards-main .card-blog-main .card-content-area .card-button-blog {
  font-weight: bold;
  color: #001834;
}
.blog-cards-main .card-blog-main:first-of-type {
  grid-area: 1/1/3/4;
  display: flex;
  gap: 2.5rem;
  box-shadow: none;
}
.blog-cards-main .card-blog-main:first-of-type .card-image-area {
  width: 100%;
  height: 26.25rem;
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-cards-main .card-blog-main:first-of-type .card-image-area img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-cards-main .card-blog-main:first-of-type .card-content-area {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
  width: 100%;
  height: auto;
  flex: 2;
}
.blog-cards-main .card-blog-main:first-of-type .card-content-area .card-title-blog {
  font-size: 2rem;
  line-height: 2.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.blog-cards-main .card-blog-main:first-of-type .card-content-area .card-excerpt-blog * {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}
.blog-cards-main .card-blog-main:first-of-type .card-button-blog {
  width: 100%;
  padding: 0.5rem 1.25rem;
  background-color: #014898;
  color: #F8F8F8;
  font-size: 1rem;
  text-transform: uppercase;
}

@media (max-width: 46.875rem) {
  .blog-cards-main {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .blog-cards-main .card-blog-main:first-of-type {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    height: -moz-fit-content;
    height: fit-content;
    gap: 0;
    flex-direction: grid;
    grid-area: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: fit-content;
  }
  .blog-cards-main .card-blog-main:first-of-type .card-image-area .image-blog-card {
    height: 200px;
    width: 100%;
  }
  .blog-cards-main .card-blog-main:first-of-type .title-content-area {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #001834;
    margin-bottom: 0.75rem;
  }
  .blog-cards-main .card-blog-main:first-of-type .title-content-area .card-title-blog {
    font-size: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-height: inherit;
  }
  .blog-cards-main .card-blog-main:first-of-type .title-content-area .card-excerpt-blog {
    height: 4.5rem;
  }
  .blog-cards-main .card-blog-main:first-of-type .title-content-area .card-excerpt-blog * {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
  }
  .blog-cards-main .card-blog-main:first-of-type .card-button-blog {
    font-weight: bold;
    color: #001834;
    padding: 0;
    background-color: transparent;
    text-transform: none;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.pagination {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.pagination .page-numbers {
  width: 2rem;
  height: 2rem;
}
.pagination .page-numbers .page-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #001834;
  color: #F8F8F8;
}
.pagination .page-numbers svg {
  width: 100%;
  max-height: 100%;
}
.pagination .page-numbers.dots {
  display: flex;
  justify-content: center;
}
.pagination .page-numbers.current .page-number {
  background-color: #FCC530;
  color: #001834;
}

.title-all-posts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.title-all-posts h1 {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.title-all-posts hr {
  width: 100%;
  border-color: #D1D1D1;
}

.title-base-blog {
  margin-bottom: 2.5rem;
}

#all-notices {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 2rem;
}
#all-notices .card-blog-geral {
  display: flex;
  gap: 1.25rem;
}
#all-notices .card-blog-geral .card-image-area {
  flex: 2;
  min-height: 14.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#all-notices .card-blog-geral .card-image-area .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#all-notices .card-blog-geral .card-image-area .image {
  border-radius: 0.75rem;
}
#all-notices .card-blog-geral .card-content-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 3;
}
#all-notices .card-blog-geral .card-content-area .title-content-area .card-title-blog {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#all-notices .card-blog-geral .card-content-area .title-content-area .card-excerpt-blog {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  font-size: 1rem;
}

@media (max-width: 46.875rem) {
  #all-notices {
    grid-template-columns: repeat(1, 2fr);
    gap: 32px;
  }
  #all-notices .card-blog-geral .card-image-area {
    display: none;
  }
}
.form-block {
  position: relative;
}
.form-block .form-data {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-block .form-data.sending {
  position: relative;
  opacity: 0.3;
}
.form-block .feedback-message {
  transition: all 0.3s;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  border-radius: 0.25rem;
}
.form-block .feedback-message.active {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.25rem 1.25rem;
  opacity: 1;
}
.form-block .feedback-message.error {
  background-color: #F8D7DA;
  color: #682B40;
}
.form-block .feedback-message.sucess {
  background-color: #D1E7DD;
  color: #3A4A28;
}
.form-block .sending-feedback {
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.label-default-form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}
.label-default-form input, .label-default-form .dynamic-select-list {
  border: 1px solid lightgray;
  padding: 4px 16px;
  border-radius: 4px;
}

.dynamic-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lds-ripple {
  /* change color here */
  color: #1c4c5b;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  box-sizing: border-box;
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
.flex-input-box {
  display: flex;
  gap: 12px;
  width: 100%;
}

@media (max-width: 46.875rem) {
  .flex-input-box {
    flex-direction: column;
  }
}
.message-default-form a {
  text-decoration: underline;
  color: #014898;
}/*# sourceMappingURL=style.css.map */