@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;
  justify-content: center;
  gap: 5rem;
  padding-bottom: 5rem;
}
#content-base .article-content {
  display: flex;
  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 .article-content.with-aside {
    max-width: 300px;
    max-width: 100%;
  }
  #content-base.to-aside {
    flex-direction: column-reverse;
  }
  #content-base.to-aside.blog {
    flex-direction: column;
  }
}
@media (min-width: 46.875rem) {
  #content-base .article-content.with-aside {
    max-width: 350px;
  }
}
@media (min-width: 1024px) {
  #content-base .article-content.with-aside {
    max-width: 630px;
  }
}
@media (min-width: 1400px) {
  #content-base .article-content.with-aside {
    max-width: 830px;
  }
}
.section-accordion .container-accordion {
  display: flex;
  flex-direction: column;
}
.section-accordion .container-accordion:last-child {
  border-bottom: 2px solid #f0f0f0;
}
.section-accordion .container-accordion .header-accordion {
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 2px solid #f0f0f0;
  cursor: pointer;
}
.section-accordion .container-accordion .header-accordion:hover {
  opacity: 0.8;
}
.section-accordion .container-accordion .header-accordion .content-icon-accordion {
  height: 1.5rem;
  width: 1.5rem;
}
.section-accordion .container-accordion .header-accordion .content-icon-accordion .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-accordion .container-accordion .header-accordion .accordion-title {
  font-size: 1.25rem;
  font-weight: bold;
  padding-left: 1rem;
}
.section-accordion .container-accordion .header-accordion .accordion-button {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
}
.section-accordion .container-accordion .header-accordion .accordion-button .icon {
  font-size: 1.5rem;
}
.section-accordion .container-accordion .content-accordion {
  display: none;
}
.section-accordion .container-accordion .content-accordion.visible {
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 24px;
  padding-bottom: 24px;
  animation: slide-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.section-accordion .container-accordion .content-accordion.hidden {
  animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-bottom {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
    display: none;
  }
}
.container-apresentation-area.default-width-center {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.container-apresentation-area.default-width-center .content-apresentation-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.container-apresentation-area.default-width-center .content-apresentation-area .title {
  font-size: 1.5rem;
  font-weight: bold;
}
.container-apresentation-area.default-width-center .content-apresentation-area .description {
  font-weight: 400;
  font-size: 1rem;
  min-width: 56rem;
}
.container-apresentation-area.default-width-center .button-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}
.container-apresentation-area.default-width-center .button-area .button-apresentation {
  flex: 1;
  background-color: #129edd;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 400;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.container-apresentation-area.default-width-center .button-area .button-apresentation.bottom {
  background-color: inherit;
  color: inherit;
  font-size: 1.125rem;
}

@media (min-width: 46.875rem) {
  .container-apresentation-area.default-width-center .button-area {
    flex-direction: row;
  }
  .container-apresentation-area.default-width-center .button-area .button-apresentation.group {
    border-radius: none;
  }
  .container-apresentation-area.default-width-center .button-area .button-apresentation.group:nth-child(odd) {
    border-radius: 0.75rem 0 0 0.75rem;
  }
  .container-apresentation-area.default-width-center .button-area .button-apresentation.group:nth-child(even) {
    border-radius: 0 0.75rem 0.75rem 0;
  }
}
.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 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  gap: 0.75rem;
}
.archive-list-document .archive-item a .container-archive-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.archive-list-document .archive-item a .container-archive-item div .archive-title {
  font-size: 1.25rem;
}
.archive-list-document .archive-item a .container-archive-item div .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;
  }
}
.aside-navegation {
  width: 100%;
  max-width: 23.75rem;
  min-width: 20.625rem;
  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;
  }
}
@media (min-width: 46.875rem) {
  .manual-aside {
    max-width: 350px;
  }
}
.blog-list .container-blog-list.default-width-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem !important;
  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: 0.5rem;
  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;
  }
}
.box-area {
  display: grid;
  grid-template-columns: 1fr;
}
.box-area.with-border-radius {
  border-radius: 0.75rem;
}
.box-area.default-width-center {
  padding: 0 1rem !important;
}
.box-area.default-width-center .default-width-center {
  padding: 0 !important;
}

.button {
  display: flex;
  font-size: 1rem;
  padding: 0.5rem 2rem;
  text-align: center;
  border: none;
  text-decoration: none;
  background: none;
  cursor: pointer;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.button.small {
  font-size: 0.75rem;
  padding: 0.25rem 2rem;
}
.button.large {
  font-size: 1.25rem;
  padding: 0.75rem 2.5rem;
}
.button.primary {
  background-color: #014898;
  color: white;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.5rem;
}
.button.secondary {
  width: -moz-fit-content;
  width: fit-content;
  color: #014898;
  border-radius: 0.5rem;
  border: 2px solid #014898;
}
.button.tertiary {
  width: -moz-fit-content;
  width: fit-content;
  color: #014898;
  text-decoration: underline;
  text-align: start;
  padding: 0;
}
.button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.button:hover {
  opacity: 0.9;
}

.container-card-capacitation.default-width-center .session_title {
  margin-bottom: 1rem;
}
.container-card-capacitation.default-width-center .card-capacitation-box {
  width: 100%;
  display: grid;
  gap: 2.5rem;
}
.container-card-capacitation.default-width-center .card-capacitation-box .card-capacitation {
  width: 100%;
  border-radius: 0.75rem;
  background-color: #ecf0f2;
  padding: 1rem;
}
.container-card-capacitation.default-width-center .card-capacitation-box .card-capacitation .image-card-area {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 11.25rem;
}
.container-card-capacitation.default-width-center .card-capacitation-box .card-capacitation .image-card-area .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container-card-capacitation.default-width-center .card-capacitation-box .card-capacitation .image-card-area .image.icon {
  height: 7.5rem;
  width: 7.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.container-card-capacitation.default-width-center .card-capacitation-box .card-capacitation .content-card-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.container-card-capacitation.default-width-center .card-capacitation-box .card-capacitation .content-card-area .category-card {
  font-size: 1rem;
}
.container-card-capacitation.default-width-center .card-capacitation-box .card-capacitation .content-card-area .text-area {
  margin-top: 0.75rem;
}
.container-card-capacitation.default-width-center .card-capacitation-box .card-capacitation .content-card-area .text-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;
}

.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;
  }
}
.cards-section {
  display: flex;
  flex-direction: column;
  padding: 1rem !important;
  gap: 1.25rem;
}
.cards-section .cards-area-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cards-section .cards-area-info .card-info {
  display: flex;
  background-color: #f0f0f0;
  padding: 1.5rem;
  border-radius: 0.75rem;
  gap: 1.5rem;
}
.cards-section .cards-area-info .card-info .icon-area {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 7.5rem;
  max-height: 7.5rem;
}
.cards-section .cards-area-info .card-info .icon-area img {
  border-radius: 0.5rem;
}
.cards-section .cards-area-info .card-info .image-area {
  min-width: 8.75rem;
  max-width: 10rem;
}
.cards-section .cards-area-info .card-info .image-area img {
  height: 100%;
  height: auto;
  border-radius: 0.5rem;
  max-height: 12.5rem;
}
.cards-section .cards-area-info .card-info .content-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
}
.cards-section .cards-area-info .card-info .content-card .title-card {
  font-size: 1.5rem;
  font-weight: 700;
}
.cards-section .cards-area-info .card-info .content-card .footer-card {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.cards-section .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;
  }
}
.card-gallery {
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.card-gallery .container-bg-image {
  position: absolute;
  margin: 0 auto;
  max-width: 90rem;
  width: 100%;
  top: 0;
  height: 100%;
  z-index: -1;
}
.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 .card-list {
  display: grid;
  grid-template-columns: repeat(1fr, 15.625rem);
  list-style: none;
  gap: 1rem;
}
.card-gallery .container-card-gallery .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 .card-list .card-link.no-link {
  cursor: default;
}
.card-gallery .container-card-gallery .card-list .card-link:hover {
  transform: translateY(-5px);
}
.card-gallery .container-card-gallery .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 .card-list .card-link .card-item.outlined {
  border-width: 2px;
  border-style: solid;
  border-color: #fcc530;
  background: transparent;
}
.card-gallery .container-card-gallery .card-list .card-link .card-item .card-item-image-header {
  width: 100%;
  height: auto;
  max-height: 9.375rem;
}
.card-gallery .container-card-gallery .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 .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 .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 .card-list .card-link .card-item .card-image-content .title-container-content {
  font-size: 1.125rem;
  font-weight: bold;
}

@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 .card-list {
    justify-content: center;
  }
}
.container-card-list-sge.default-width-center {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 0;
  gap: 1.5rem;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .container-image-card-sge {
  width: 100%;
  height: 200px;
  position: relative;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .container-image-card-sge .image-card-sge {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .container-image-card-sge .container-float-img {
  position: absolute;
  width: 100%;
  top: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .container-image-card-sge .container-float-img .container-area-name {
  background-color: #00489a;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .container-image-card-sge .container-float-img .container-area-name .area-name {
  color: #f8f8f8;
  font-size: 1rem;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .container-image-card-sge .container-float-img .container-tag-sge {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.5rem;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .container-image-card-sge .container-float-img .container-tag-sge .tag {
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #00489a;
  background-color: #f8f8f8;
  border-radius: 0.25rem;
  color: #00489a;
  font-size: 0.625rem;
  padding: 0 12px;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .card-item-sge-description {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .card-item-sge-description .type-course-sge {
  color: #00489a;
  font-size: 1.25rem;
  line-height: 24px;
  height: 48px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .card-item-sge-description .description {
  line-height: 22px;
  height: 88px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}
.container-card-list-sge.default-width-center .card-list-sge-content .card-list-sge .card-item-sge .card-item-sge-description a {
  width: 100%;
  justify-content: center;
}

.cards-number.default-width-center {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.25rem;
  gap: 2.5rem;
}
.cards-number.default-width-center .text-area .description * {
  color: inherit;
}
.cards-number.default-width-center .text-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cards-number.default-width-center .text-area .title * {
  color: inherit;
}
.cards-number.default-width-center .cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  gap: 1rem;
}
.cards-number.default-width-center .cards-list .card-number {
  width: 100%;
  background-color: #2a549f;
  color: #f2f2f2;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  max-width: none;
  border-radius: 0.25rem;
  padding: 1.5rem;
  gap: 1rem;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}
.cards-number.default-width-center .cards-list .card-number .container-header-card {
  display: flex;
  justify-content: space-between;
}
.cards-number.default-width-center .cards-list .card-number .container-header-card .title-card * {
  color: inherit;
}
.cards-number.default-width-center .cards-list .card-number .container-header-card .icon-area {
  width: 6.25rem;
  height: 6.25rem;
}
.cards-number.default-width-center .cards-list .card-number .container-header-card .icon-area .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cards-number.default-width-center .cards-list .card-number .content-number * {
  color: inherit;
}

@media (min-width: 75rem) {
  .cards-number.default-width-center {
    margin: 0 auto;
  }
}
.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;
}

.container-events-summary-offer.default-width-center {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.container-events-summary-offer.default-width-center .container-title .title {
  font-size: 2rem;
  font-weight: 500;
  color: #e84910;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__arrows {
  align-self: flex-end;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 1rem;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu.grid .glide__slides__item.link {
  transition: all 0.3s ease-in;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu.grid .glide__slides__item.link:hover {
  transform: translateY(-5px);
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu .glide__slides__item.link {
  background-color: #f2f2f2;
  padding: 1rem;
  padding-bottom: 1.5rem;
  border-radius: 0.5rem;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu .glide__slides__item.link.solo {
  width: 300px;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu .glide__slides__item.link .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu .glide__slides__item.link .item .container-image {
  width: 100%;
  height: auto;
  min-height: 10.625rem;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu .glide__slides__item.link .item .container-image .image {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu .glide__slides__item.link .item .title {
  font-size: 1.25rem;
  font-weight: bold;
  text-wrap: wrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu .glide__slides__item.link .item .date {
  font-weight: bold;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu .glide__slides__item.link .item .description {
  text-wrap: wrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  min-height: 6rem;
}
.container-events-summary-offer.default-width-center .slider_list.menu-nav .glide__track .glide__slides.menu .glide__slides__item.link .item .button.event-summary-offer {
  margin: 0 auto;
}
.container-events-summary-offer.default-width-center .go-to-all-events {
  font-size: 1.125rem;
  color: #e84910;
  text-decoration: underline;
}

.footer-main {
  background-color: #00244d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.footer-main .top-footer.default-width-center {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 2.5rem 1rem;
  gap: 1rem;
}
.footer-main .top-footer.default-width-center .list-menu-footer {
  color: #f8f8f8;
}
.footer-main .top-footer.default-width-center .list-menu-footer:first-child {
  border: none;
  padding-left: 0;
}
.footer-main .top-footer.default-width-center .container-list-menu-footer {
  display: flex;
  flex-direction: column;
}
.footer-main .top-footer.default-width-center .container-list-menu-footer .title-footer {
  font-size: 1.25rem;
  color: #fcc530;
}
.footer-main .top-footer.default-width-center .container-list-menu-footer .list-submenu * {
  color: #f8f8f8;
  font-size: 0.75rem;
}
.footer-main .top-footer.default-width-center .footer-area-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-main .top-footer.default-width-center .footer-area-item .title-footer {
  font-size: 1.25rem;
  color: #fcc530;
}
.footer-main .top-footer.default-width-center .footer-area-item .social-media-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-main .top-footer.default-width-center .footer-area-item .social-media-footer .social-media-footer-list {
  display: flex;
  gap: 1rem;
}
.footer-main .top-footer.default-width-center .footer-area-item .social-media-footer .social-media-footer-list .link {
  display: block;
  height: 24px;
  width: 24px;
  transition: all 0.3s ease-in-out;
}
.footer-main .top-footer.default-width-center .footer-area-item .social-media-footer .social-media-footer-list .link:hover {
  transform: translateY(-1.5px);
}
.footer-main .top-footer.default-width-center .footer-area-item .social-media-footer .social-media-footer-list .link .social_media_icon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-main .top-footer.default-width-center .footer-area-item .logotype-footer .logotype-footer-container-image {
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-main .top-footer.default-width-center .footer-area-item .logotype-footer .logotype-footer-container-image .logotype-footer-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-main .top-footer.default-width-center .footer-area-item .logotype-footer .logotype-footer-container-image svg * {
  fill: #f8f8f8;
}
.footer-main .top-footer.default-width-center.simplify .logotype-footer .logotype-footer-container-image {
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-main .top-footer.default-width-center.simplify .logotype-footer .logotype-footer-container-image .logotype-footer-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-main .top-footer.default-width-center.simplify .logotype-footer .logotype-footer-container-image svg * {
  fill: #f8f8f8;
}
.footer-main .bottom-footer {
  width: 100%;
  background-color: #014898;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  text-align: center;
}
.footer-main .bottom-footer * {
  color: #f8f8f8;
}

@media (min-width: 768px) {
  .footer-main .top-footer.default-width-center {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-main .top-footer.default-width-center .list-menu-footer,
  .footer-main .top-footer.default-width-center .footer-area-item {
    border-left: 1px solid #f8f8f8;
    padding-left: 1rem;
  }
  .footer-main .top-footer.default-width-center.simplify .logotype-footer .logotype-footer-container-image {
    margin: 0 auto;
  }
}
.gallery-image.default-width-center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gallery-image.default-width-center .nav-button .icon {
  font-size: 2rem;
}
.gallery-image.default-width-center .gallery-box {
  width: 100%;
}
.gallery-image.default-width-center .gallery-box.grid-gallery {
  display: grid;
  gap: 1rem;
}
.gallery-image.default-width-center .gallery-box.grid-gallery:not(.mosaic) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 300px));
  gap: 1rem;
}
.gallery-image.default-width-center .gallery-box.grid-gallery.mosaic {
  -moz-column-count: 3;
       column-count: 3;
}
.gallery-image.default-width-center .gallery-box .image-box {
  display: block;
}
.gallery-image.default-width-center .gallery-box .image-box .container-image {
  height: 100%;
  width: 100%;
}
.gallery-image.default-width-center .gallery-box .image-box .container-image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 31.25rem) {
  .gallery-image.default-width-center .galery-box.mosaic {
    -moz-column-count: 2;
         column-count: 2;
  }
  .gallery-image.default-width-center .galery-box .image-box {
    margin-bottom: 1rem;
    display: block;
  }
  .gallery-image.default-width-center .galery-box .image-box .image {
    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;
}

.video-carrossel-area.default-width-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.video-carrossel-area.default-width-center .video-carrossel-gallery-video {
  width: 328px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.video-carrossel-area.default-width-center .video-carrossel-gallery-video .container-selected-video {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
.video-carrossel-area.default-width-center .video-carrossel-gallery-video .container-selected-video .selected_video {
  width: 100%;
  height: 100%;
}
.video-carrossel-area.default-width-center .video-carrossel-gallery-video .glide-videos.list-carrossel-videos {
  width: 100%;
}
.video-carrossel-area.default-width-center .video-carrossel-gallery-video .glide-videos.list-carrossel-videos .glide__track {
  width: 100%;
}
.video-carrossel-area.default-width-center .video-carrossel-gallery-video .glide-videos.list-carrossel-videos .glide__track .glide__slides {
  width: 100%;
}
.video-carrossel-area.default-width-center .video-carrossel-gallery-video .glide-videos.list-carrossel-videos .glide__track .glide__slides .glide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
}
.video-carrossel-area.default-width-center .video-carrossel-text-area-video {
  display: flex;
  flex-direction: column;
  margin: 0 1rem;
  gap: 1rem;
}

@media (min-width: 425px) {
  .video-carrossel-area.default-width-center .video-carrossel-gallery-video {
    width: 393px;
  }
}
@media (min-width: 768px) {
  .video-carrossel-area.default-width-center .video-carrossel-gallery-video {
    width: 736px;
  }
  .video-carrossel-area.default-width-center .video-carrossel-gallery-video .container-selected-video {
    height: 400px;
  }
  .video-carrossel-area.default-width-center .video-carrossel-gallery-video .glide-videos.list-carrossel-videos {
    height: 200px;
  }
  .video-carrossel-area.default-width-center .video-carrossel-gallery-video .glide-videos.list-carrossel-videos .glide__track {
    width: 100%;
    height: 100%;
  }
  .video-carrossel-area.default-width-center .video-carrossel-gallery-video .glide-videos.list-carrossel-videos .glide__track .glide__slides .glide__slide {
    height: 200px;
    width: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .video-carrossel-area.default-width-center .video-carrossel-gallery-video {
    width: 922px;
  }
}
@media (min-width: 1200px) {
  .video-carrossel-area.default-width-center .video-carrossel-gallery-video {
    width: 100%;
  }
  .video-carrossel-area.default-width-center.text-active {
    flex-direction: row-reverse;
  }
  .video-carrossel-area.default-width-center.text-active .video-carrossel-gallery-video {
    width: 60%;
  }
  .video-carrossel-area.default-width-center.text-active .video-carrossel-text-area-video {
    width: 40%;
    align-self: self-start;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.google-map iframe {
  width: 100%;
  height: 18.75rem;
}

.graduated-startups.default-width-center {
  width: 328px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem !important;
}
.graduated-startups.default-width-center .startups-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.graduated-startups.default-width-center .startups-content .graduated-startups-title {
  font-weight: bolder;
  font-size: 2rem;
}
.graduated-startups.default-width-center .slider_list {
  width: 100%;
  max-width: 730px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1rem;
}
.graduated-startups.default-width-center .slider_list .glide__arrows {
  padding: 0.5rem;
}
.graduated-startups.default-width-center .slider_list .glide__arrows .btn-slide .fa-solid {
  color: #000000;
  font-size: 2rem;
}
.graduated-startups.default-width-center .slider_list .glide__track .glide__slides.startups-list .glide__slides__item.startups-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
}
.graduated-startups.default-width-center .slider_list .glide__track .glide__slides.startups-list .glide__slides__item.startups-item .container-image {
  max-width: 300px;
  height: 100%;
  max-height: 300px;
  padding: 1rem;
  margin: 0 auto;
  cursor: pointer;
}
.graduated-startups.default-width-center .slider_list .glide__track .glide__slides.startups-list .glide__slides__item.startups-item .container-image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 425px) {
  .graduated-startups.default-width-center {
    width: 393px;
  }
}
@media (min-width: 768px) {
  .graduated-startups.default-width-center {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .graduated-startups.default-width-center {
    flex-direction: row;
  }
  .graduated-startups.default-width-center.with-aside {
    flex-direction: column;
  }
  .graduated-startups.default-width-center.with-aside .startups-content {
    width: 100%;
  }
  .graduated-startups.default-width-center.with-aside .slider_list {
    width: 100%;
  }
  .graduated-startups.default-width-center .startups-content {
    width: 35%;
  }
  .graduated-startups.default-width-center .slider_list {
    width: 65%;
  }
}
#header {
  background-color: #f8f8f8;
}
#header .top-header {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 1rem;
}
#header .top-header .list-menu {
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 1.25rem;
}
#header .top-header .list-menu .link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .top-header .list-menu .link .item {
  height: 100%;
}
#header .top-header .list-menu .link .item img,
#header .top-header .list-menu .link .item p {
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
#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: #00244d;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
#header .bottom-header .bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .bottom-header .bottom-area .container-logo {
  height: 40px;
}
#header .bottom-header .bottom-area .container-logo .container-logo-link .container-logo-image {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .bottom-header .bottom-area .navegation-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.75rem;
}
#header .bottom-header .bottom-area .navegation-list .item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f8f8f8;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  border-radius: 1.25rem;
}
#header .bottom-header .bottom-area .navegation-list .item a:hover {
  background-color: #dee6f2;
  color: #00244d;
}
#header .bottom-header .bottom-area .navegation-list .item.active a {
  color: #f8f8f8;
  font-weight: bold;
  border: 0.125rem solid #f8f8f8;
  border-radius: 1.25rem;
  padding: 0.25rem 1.25rem;
}
#header .bottom-header .bottom-area .navegation-list .item.active a:hover {
  background-color: #dee6f2;
  color: #00244d;
}
#header .bottom-header .bottom-area .navegation-list .item.logout-button a {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
#header .bottom-header .bottom-area .navegation-list .item.logout-button a svg {
  transition: all 0.3s;
  fill: #f8f8f8;
  width: 1rem;
  height: 1rem;
}
#header .bottom-header .bottom-area .navegation-list .item.logout-button a:hover {
  background-color: #ffd7d7 !important;
  color: #b50c0c;
}
#header .bottom-header .bottom-area .navegation-list .item.logout-button a:hover svg {
  fill: #b50c0c !important;
}
#header .bottom-header .bottom-area .navegation-list .dropdownComponent .dropdown-navegation {
  width: 100%;
  top: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
}
#header .bottom-header .bottom-area .navegation-list .dropdownComponent .dropdown-navegation .itens-area {
  width: 100%;
  max-width: 90.625rem;
  background-color: rgba(0, 36, 77, 0.9019607843);
  display: flex;
  position: absolute;
  border-bottom: 4px solid #fcc530;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  gap: 2.5rem;
  z-index: 8;
}
#header .bottom-header .bottom-area .navegation-list .dropdownComponent .dropdown-navegation .itens-area .group-menu-itens {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
}
#header .bottom-header .bottom-area .navegation-list .dropdownComponent .dropdown-navegation .itens-area .menu-itens {
  display: flex;
  flex-direction: column;
}
#header .bottom-header .bottom-area .navegation-list .dropdownComponent .dropdown-navegation .itens-area .menu-itens a {
  color: #f8f8f8;
  background-color: transparent;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: 0s;
}
#header .bottom-header .bottom-area .navegation-list .dropdownComponent .dropdown-navegation .itens-area .menu-itens a:first-child {
  color: #fcc530;
  font-size: 1.125rem;
  font-weight: 600;
}
#header .bottom-header .bottom-area .navegation-list .dropdownComponent .dropdown-navegation .itens-area .menu-itens a:not(:first-child):hover {
  background-color: #dee6f2;
  color: #001834;
}
#header .bottom-header .bottom-area .navegation-list .dropdownComponent:hover .dropdown-navegation .itens-area {
  visibility: visible;
  opacity: 1;
}
#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 {
  width: 2.25rem;
  height: 0.25rem;
  display: block;
  position: relative;
  border: none;
  background: none;
  background-color: #f8f8f8;
  cursor: pointer;
}
#header .bottom-header.default {
  background-color: #f2f2f2;
  border: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#header .bottom-header.default .bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .bottom-header.default .bottom-area .navegation-list {
  display: flex;
  list-style: none;
  gap: 0.75rem;
}
#header .bottom-header.default .bottom-area .navegation-list .item a {
  color: #333333;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  border-radius: 1.25rem;
  transition: all 0.3s;
}
#header .bottom-header.default .bottom-area .navegation-list .item a:hover {
  background-color: #dee6f2;
}
#header .bottom-header.default .bottom-area .navegation-list .item.active a {
  color: #014898;
  font-weight: bold;
  padding: 0.25rem 1.25rem;
  border: 0.1875rem solid #014898;
  border-radius: 1.25rem;
}
#header .bottom-header.default .bottom-area .navegation-list .item.active a:hover {
  background-color: #dee6f2;
}
#header .bottom-header.default .bottom-area .navegation-list .item.logout-button a svg {
  fill: #333333;
}
#header .bottom-header.default .bottom-area .navegation-list .item.logout-button a svg:hover {
  fill: #b50c0c;
}
#header .bottom-header.default .bottom-area .burguer-area .burguer-button {
  background: none;
  background-color: #001834;
}

@media (max-width: 46.875rem) {
  #header .bottom-header .bottom-area .burguer-area {
    display: flex;
  }
  #header .bottom-header .bottom-area .navegation-menu {
    width: 0;
    background-color: #00244d;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 100%;
    right: -1rem;
    padding: 1.25rem 0;
    overflow: hidden;
    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 .logout-button a svg {
    transition: all 0.3s;
    fill: white;
    width: 1rem;
    height: 1rem;
  }
  #header .bottom-header .bottom-area .navegation-menu .navegation-list .logout-button a:hover svg {
    fill: #b50c0c;
  }
  #header .bottom-header .bottom-area .navegation-menu.active {
    width: calc(100vw + 1rem);
    width: calc(100dvw + 1rem);
  }
  #header .bottom-header .bottom-area .navegation-menu.active .item a {
    color: white;
  }
  #header .bottom-header .bottom-area .navegation-menu.active .item a:hover {
    color: #00244d;
  }
  #header .bottom-header .bottom-area .navegation-menu.active .item.active a {
    color: white;
    border: 0.1875rem solid white;
  }
  #header .bottom-header .bottom-area .navegation-menu.active .item.active a:hover {
    color: #00244d;
    border-color: transparent;
  }
  #header .bottom-header .bottom-area .navegation-menu.active .item.logout-button a {
    color: white;
  }
  #header .bottom-header .bottom-area .navegation-menu.active .item.logout-button a svg {
    fill: white;
  }
  #header .bottom-header .bottom-area .navegation-menu.active .item.logout-button a:hover {
    color: #b50c0c;
  }
  #header .bottom-header .bottom-area .navegation-menu.active .item.logout-button a:hover svg {
    fill: #b50c0c;
  }
  #header .bottom-header.large .bottom-area .burguer-area {
    display: flex;
  }
}
#hero-banner .hero-banner-center {
  max-width: 90.625rem;
  width: 100%;
  max-height: 35rem;
  margin: 0 auto;
  position: relative;
}
#hero-banner .list-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  max-height: 35rem;
}
#hero-banner .list-banner .carousel-item {
  position: relative;
}
#hero-banner .list-banner .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 30px;
  min-width: 230px;
  width: 100%;
  transform: translate(-60px) scaleX(0);
  opacity: 0;
  transition: all 0.3s;
  transform-origin: left;
  gap: 1rem;
  color: black;
}
#hero-banner .list-banner .text-box .width-text-box {
  max-width: 80%;
}
#hero-banner .list-banner .text-box .button-area {
  margin-top: 24px;
}
#hero-banner .list-banner .text-box * {
  color: inherit;
}
#hero-banner .list-banner .glide__slide--active .text-box {
  transform: translate(0px) scaleX(1);
  opacity: 1;
}
#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 {
  bottom: 20px;
  position: absolute;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#hero-banner .bullet {
  border: 4px solid transparent;
  width: 12px;
  height: 12px;
  background: white;
  transition: all 0.3s ease-in-out;
}
#hero-banner .bullet.glide__bullet--active {
  border: 4px solid white;
  background: none;
  width: 24px;
  height: 24px;
}

@media (max-width: 46.875rem) {
  #hero-banner .list-banner .text-box {
    max-width: 85%;
  }
}
@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 .list-banner .text-box {
    max-width: none;
    padding: 16px;
  }
  #hero-banner .list-banner .text-box h1,
  #hero-banner .list-banner .text-box h2,
  #hero-banner .list-banner .text-box h3 {
    font-size: 1.25rem;
  }
  #hero-banner .list-banner .text-box p {
    font-size: 0.75rem;
  }
}
#hero-banner-video .hero-banner-center-video {
  max-width: 90.625rem;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
#hero-banner-video .hero-banner-center-video .selected_video {
  width: 100%;
  height: auto;
}
#hero-banner-video .hero-banner-center-video .desktop {
  display: none;
}
#hero-banner-video .hero-banner-center-video .mobile {
  display: flex;
}
#hero-banner-video .hero-banner-center-video.force-desktop .desktop {
  display: flex !important;
}
#hero-banner-video .hero-banner-center-video.force-desktop .mobile {
  display: none !important;
}

@media (min-width: 31.25rem) {
  #hero-banner-video .hero-banner-center-video .desktop {
    display: flex;
  }
  #hero-banner-video .hero-banner-center-video .mobile {
    display: none;
  }
}
.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-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;
  }
}
.highlight-area-container.default-width-center .highlight-area {
  background-color: #014898;
  color: #f8f8f8;
  display: grid;
  padding: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  gap: 2rem;
}
.highlight-area-container.default-width-center .highlight-area .card-highlight-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.highlight-area-container.default-width-center .highlight-area .card-highlight-area .card-icon {
  width: 7.5rem;
  height: 7.5rem;
}
.highlight-area-container.default-width-center .highlight-area .card-highlight-area .card-icon .icon-card {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.highlight-area-container.default-width-center .highlight-area .card-highlight-area .card-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}
.highlight-area-container.default-width-center .highlight-area .card-highlight-area .card-content .title {
  font-size: 1.25rem;
  font-weight: 600;
  color: inherit;
}
.highlight-area-container.default-width-center .highlight-area .card-highlight-area .card-content .subtitle {
  font-size: 1rem;
  color: inherit;
}
.highlight-area-container.default-width-center .highlight-area .card-highlight-area .container-button-highlight-area {
  margin-top: auto;
}

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

#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);
  }
}
.list-editais.default-width-center {
  display: flex;
  flex-direction: column;
  background-color: #e0e7ec;
  border-radius: 0.5rem;
  padding: 1.5rem !important;
  gap: 1rem;
}
.list-editais.default-width-center .title {
  font-size: 1.25rem;
}
.list-editais.default-width-center .container-list-editais {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list-editais.default-width-center .container-list-editais .content-list-editais {
  display: flex;
  flex-direction: column;
  border-top-width: 2px;
  border-color: #9ca3af;
  padding-bottom: 1rem;
  padding-top: 1rem;
  gap: 1.25rem;
}
.list-editais.default-width-center .container-list-editais .content-list-editais:first-child {
  border-top-width: 0;
  padding-bottom: 0;
}
.list-editais.default-width-center .container-list-editais .content-list-editais .title {
  font-size: 1rem;
}
.list-editais.default-width-center .container-list-editais .content-list-editais .content-action {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}
.list-editais.default-width-center .container-list-editais .content-list-editais .content-action .download {
  background-color: #2a549f;
  color: white;
  padding: 0.5rem 3rem;
  font-weight: bold;
  border-radius: 0.5rem;
}
.list-editais.default-width-center .container-list-editais .content-list-editais .content-action .date {
  font-weight: 400;
}

.container-list-of-cards.default-width-center {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.container-list-of-cards.default-width-center .container-title .title {
  font-weight: 600;
  font-size: 1.5rem;
}
.container-list-of-cards.default-width-center .list {
  background-color: rgba(230, 100, 59, 0.1);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px dashed #e6643b;
  border-radius: 1rem;
  list-style: decimal;
  gap: 0.5rem;
}
.container-list-of-cards.default-width-center .list .link {
  display: block;
  margin-left: 1.5rem;
}
.container-list-of-cards.default-width-center .list .link .item {
  font-weight: bold;
}
.container-list-of-cards.default-width-center .list .link .item .container-item {
  display: flex;
  gap: 0.5rem;
}
.container-list-of-cards.default-width-center .list .link .item .container-item .text {
  display: inline-block;
  text-decoration: underline;
  gap: 1px;
}
.container-list-of-cards.default-width-center .list .link .item .container-item .badge {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  padding: 0.375rem;
  background-color: #e84910;
  color: #f8f8f8;
  border-radius: 50%;
}

@media (min-width: 46.875rem) {
  .container-list-of-cards.default-width-center .container-title .title {
    font-weight: 600;
    font-size: 2rem;
  }
  .container-list-of-cards.default-width-center .list .link .item .container-item .badge {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  .container-list-of-cards.default-width-center .list .link .item .container-item .badge::after {
    display: block;
    content: "Novo";
    font-size: 14px;
    font-weight: 500;
    border-radius: 0.5rem;
  }
}
#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%;
}

.container-our-differences {
  background-color: #f2f2f2;
  border-radius: 0.5rem;
}
.container-our-differences .wrapper-our-differences.default-width-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem !important;
  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);
  }
  .container-our-differences .wrapper-our-differences.default-width-center.with-aside .content-our-differences-list .list {
    grid-template-columns: repeat(2, 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.inverted {
    flex-direction: row-reverse;
  }
  .container-our-differences .wrapper-our-differences.default-width-center.with-aside {
    flex-direction: column;
  }
  .container-our-differences .wrapper-our-differences.default-width-center.with-aside .content-our-differences-list .list {
    grid-template-columns: repeat(3, 1fr);
  }
  .container-our-differences .wrapper-our-differences.default-width-center .content-our-differences {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1.5;
  }
  .container-our-differences .wrapper-our-differences.default-width-center .content-our-differences-list {
    flex: 2;
  }
}
@media (min-width: 1400px) {
  .container-our-differences .wrapper-our-differences.default-width-center.with-aside {
    flex-direction: row;
  }
  .container-our-differences .wrapper-our-differences.default-width-center.with-aside.inverted {
    flex-direction: row-reverse;
  }
}
.list-page-card ul {
  padding: 1rem;
}
.list-page-card .grid-type {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.list-page-card .page-card {
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
}
.list-page-card .page-card .image-area {
  width: 100%;
  height: 200px;
}
.list-page-card .page-card .image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-page-card .page-card .text-area {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 31.25rem) {
  .list-page-card .page-card .image-area {
    height: 150px;
  }
}
#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;
  scrollbar-width: 8px;
  scrollbar-color: #2e919a #f6f6f6;
}
#popup-area .popup-box.our-differences .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 1.5rem 0rem 2.5rem;
}
#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.graduated-startups .close-popup {
  align-self: self-end;
}
#popup-area .popup-box.graduated-startups .close-popup .icon {
  font-size: 2rem;
  color: black;
}
#popup-area .popup-box.graduated-startups .content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
#popup-area .popup-box.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#popup-area .popup-box .close-popup {
  align-self: self-end;
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  cursor: pointer;
  z-index: 1;
}
#popup-area .popup-box .close-popup .icon {
  font-size: 2rem;
}
#popup-area .popup-box .content {
  overflow-y: auto;
  max-height: 80vh;
}
#popup-area.active {
  display: flex;
}

.programs-area {
  display: flex;
  flex-direction: column;
  padding: 0;
  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;
}

.container-redirect {
  width: 100%;
  height: 800px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.responsive-image-area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.responsive-image-area img {
  width: 100%;
}
.responsive-image-area img.image-mobile {
  display: none;
}

@media (max-width: 31.25rem) {
  .responsive-image-area img.image-desktop {
    display: none;
  }
  .responsive-image-area img.image-mobile {
    display: flex;
  }
}
.container-share-this-page {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.container-share-this-page .box-share {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.container-share-this-page .container-title .title {
  font-size: 1.125rem;
  font-weight: bold;
}
.container-share-this-page .list {
  display: flex;
  gap: 1rem;
}
.container-share-this-page .list .link {
  cursor: pointer;
  position: relative;
}
.container-share-this-page .list .link .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  padding: 0.75rem;
}
.container-share-this-page .list .link .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.container-share-this-page .list .link .item.chain {
  background-color: red;
  transition: all 0.2s ease-in-out;
}
.container-share-this-page .list .link .item.chain.verify {
  background-color: #25d366;
}
.container-share-this-page .list .link .item.chain .icon {
  color: #fff;
}
.container-share-this-page .list .link .item.whatsapp {
  background-color: #25d366;
}
.container-share-this-page .list .link .item.whatsapp .icon {
  color: #fff;
}
.container-share-this-page .list .link .item.linkedin {
  background-color: #0077b5;
}
.container-share-this-page .list .link .item.linkedin .icon {
  color: #fff;
}
.container-share-this-page .list .link .item.facebook {
  background-color: #3b5998;
}
.container-share-this-page .list .link .item.facebook .icon {
  color: #fff;
}
.container-share-this-page .list .link .item.instagram {
  background: linear-gradient(180deg, #c13584, #f77737, #f9d94d);
}
.container-share-this-page .list .link .item.instagram .icon {
  color: #fff;
}
.container-share-this-page .list .link .toast {
  display: none;
  position: absolute;
  bottom: -50px;
  width: -moz-fit-content;
  width: fit-content;
  text-wrap: nowrap;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d1d1;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.container-share-this-page .list .link .toast.slide-in-bottom {
  display: block;
  animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-bottom {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.icon-single {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.icon-single .icon-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-single .icon-container .image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.icon-single .title {
  font-weight: bold;
  font-size: 1.5rem;
}

.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.tertiary {
  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;
  }
}
.tag {
  background-color: #d1d1d1;
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
}

.countdown-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.countdown-wrapper .countdown-container {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}
.countdown-wrapper .countdown-container .countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-wrapper .countdown-container .countdown-block .countdown-value {
  display: flex;
  gap: 4px;
}
.countdown-wrapper .countdown-container .countdown-block .countdown-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 32px;
  height: 40px;
  font-size: 1rem;
  font-weight: bold;
}
.countdown-wrapper .countdown-container .countdown-block .countdown-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.countdown-wrapper .countdown-container .countdown-separator {
  padding: 0 4px;
  margin-top: 8px;
  font-size: 1rem;
}

@media (min-width: 31.25rem) {
  .countdown-wrapper .countdown-container.small .countdown-block .countdown-value .countdown-box {
    width: 32px;
    height: 40px;
    font-size: 1rem;
  }
  .countdown-wrapper .countdown-container.small .countdown-separator {
    font-size: 1rem;
  }
  .countdown-wrapper .countdown-container.default .countdown-block .countdown-value .countdown-box {
    width: 32px;
    height: 40px;
    font-size: 1rem;
  }
  .countdown-wrapper .countdown-container.default .countdown-separator {
    font-size: 1rem;
  }
  .countdown-wrapper .countdown-container.large .countdown-block .countdown-value .countdown-box {
    width: 52px;
    height: 68px;
    font-size: 2.5rem;
  }
  .countdown-wrapper .countdown-container.large .countdown-separator {
    font-size: 2.5rem;
    margin-top: 0px;
  }
}
.wrapper-carousel-testimonials {
  margin: 0 1rem;
  width: 330px;
}
.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 {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  border-radius: 0.75rem;
  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 .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: #d1d1d1;
  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: 425px) {
  .wrapper-carousel-testimonials {
    width: 390px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .wrapper-carousel-testimonials {
    width: 720px;
  }
  .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;
  }
  .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;
    -webkit-clip-path: circle(50%);
            clip-path: circle(50%);
    border-radius: 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 .image-testimonial {
    height: 100%;
    width: 100%;
    align-self: center;
    -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 {
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1rem 2rem;
  }
}
@media (min-width: 1024px) {
  .wrapper-carousel-testimonials {
    width: 990px;
    max-width: 1200px;
  }
}
@media (min-width: 1440px) {
  .wrapper-carousel-testimonials {
    width: 1200px;
  }
}
.content-text {
  display: flex;
  flex-direction: column-reverse;
  border-radius: 0.75rem;
  gap: 1.25rem;
  overflow: hidden;
}
.content-text .text-section-image-area {
  display: flex;
  justify-content: center;
  flex: 2;
}
.content-text .text-section-image-area .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-text .text-area {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem !important;
  padding-bottom: 1rem !important;
  margin-top: 1.5rem;
  gap: 1.5rem;
}
.content-text .text-area .button-area-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.content-text .text-area .button-area-text.center {
  justify-content: center;
}
.content-text .text-area .button-area-text.right {
  justify-content: flex-end;
}
.content-text .text-area .button-area-text.left {
  justify-content: flex-start;
}
.content-text.full {
  padding-top: 0 !important;
}
.content-text.full .text-area {
  padding: 0 !important;
}
.content-text.full .text-section-image-area .image {
  -o-object-fit: cover;
     object-fit: cover;
}
.content-text.colored {
  background-color: #014898;
}
.content-text.colored .text-area {
  padding: 2rem 1.25rem;
}

@media (min-width: 46.875rem) {
  .content-text {
    flex-direction: row;
    gap: 2.5rem;
  }
  .content-text.full {
    padding-left: 1rem !important;
    padding: 0 !important;
  }
  .content-text.full .text-area {
    padding-right: 0 !important;
  }
  .content-text.left {
    flex-direction: row-reverse;
  }
  .content-text.left.full {
    padding-right: 1rem !important;
  }
  .content-text.left .text-area {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
#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;
}

.container-video-section {
  padding: 1rem 0;
}
.container-video-section .content-video-section.default-width-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.container-video-section .content-video-section.default-width-center .video-list-video-section {
  width: 100%;
  display: grid;
  gap: 1rem;
}
.container-video-section .content-video-section.default-width-center .video-list-video-section .item-video-section {
  max-height: 31.25rem;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-video-section .content-video-section.default-width-center .video-list-video-section .item-video-section .video {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.5rem;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container-video-section .content-video-section.default-width-center {
    flex-direction: row;
  }
  .container-video-section .content-video-section.default-width-center.inverted-content {
    flex-direction: row-reverse;
  }
  .container-video-section .content-video-section.default-width-center.with-text .content-description-video-section {
    width: 30%;
  }
  .container-video-section .content-video-section.default-width-center.with-text .video-list-video-section {
    width: 70%;
  }
  .container-video-section .content-video-section.default-width-center.with-text.just-one .content-description-video-section {
    width: 60%;
  }
  .container-video-section .content-video-section.default-width-center.with-text.just-one .video-list-video-section {
    width: 40%;
  }
}
.container-short-code.default-width-center .content-short-code .wpcf7 form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: #f8f8f8;
}
.container-short-code.default-width-center .content-short-code .wpcf7 form label {
  display: flex;
  flex-direction: column;
  color: #333333;
  gap: 0.5rem;
}
.container-short-code.default-width-center .content-short-code .wpcf7 form input[type=text],
.container-short-code.default-width-center .content-short-code .wpcf7 form input[type=email],
.container-short-code.default-width-center .content-short-code .wpcf7 form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d1d1;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease-in-out;
}
.container-short-code.default-width-center .content-short-code .wpcf7 form textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
}
.container-short-code.default-width-center .content-short-code .wpcf7 form input:focus,
.container-short-code.default-width-center .content-short-code .wpcf7 form textarea:focus {
  border-color: #014898;
  outline: none;
}
.container-short-code.default-width-center .content-short-code .wpcf7 form input[type=submit] {
  width: 100%;
  background-color: #014898;
  color: #f8f8f8;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.container-short-code.default-width-center .content-short-code .wpcf7 form input[type=submit]:hover {
  opacity: 0.8;
}

.container-virtual-visit .container-content-virtual-visit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  gap: 32px;
  border-bottom: 0.25rem solid #e84910;
}
.container-virtual-visit .container-content-virtual-visit .text-content {
  color: inherit;
}
.container-virtual-visit .container-content-virtual-visit .text-content * {
  color: inherit;
}
.container-virtual-visit .container-content-virtual-visit .button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.container-virtual-visit .container-content-virtual-visit .button .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.container-virtual-visit .container-iframe {
  height: 31.25rem;
}
.container-virtual-visit .container-iframe .iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (min-width: 768px) {
  .container-virtual-visit .container-content-virtual-visit {
    flex-direction: row;
    justify-content: space-between;
  }
  .container-virtual-visit .container-iframe {
    height: 43.75rem;
  }
}
.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;
  }
}
.container-button-repeater {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.container-button-repeater.left {
  justify-content: left;
}
.container-button-repeater.center {
  justify-content: center;
}
.container-button-repeater.right {
  justify-content: right;
}

.form-rd-with-select .container-rd-with-select {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-rd-with-select .form-rd-select-list {
  display: flex;
  width: 100%;
  border-radius: 0.5rem;
  color: #333;
  padding: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.form-rd-with-select .form-rd-select-list:hover {
  background-color: #f2f2f2;
}
.form-rd-with-select .form-rd-select-list:focus {
  border-color: #0073e6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.2);
}
.form-rd-with-select .form-rd-select-list:disabled {
  background-color: #eee;
  cursor: not-allowed;
  color: #888;
}

.rd-loading-message {
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 1rem;
  color: #333333;
}

.loader {
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #dee6f2 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #dee6f2);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}

@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
.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;
  color: #333;
}

.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;
}

.dynamic-checkbox-single label {
  display: flex;
  gap: 0.5rem;
}
.dynamic-checkbox-single label a {
  text-decoration: underline;
  color: #014898;
}

.auth-area {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 44px;
  padding: 2.5rem 1rem;
}
.auth-area .image-area {
  width: 100%;
}
.auth-area .image-area img {
  width: 100%;
}
.auth-area .auth-box {
  max-width: 31.25rem;
  width: 100%;
  padding: 2.5rem 1.5rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: white;
  font-weight: 500;
  border-radius: 1rem;
}
.auth-area .auth-box .header-login {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.auth-area .auth-box .form-area #login-form {
  display: flex;
  flex-direction: column;
}
.auth-area .auth-box .form-area .label-form-base {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.auth-area .auth-box .form-area .label-form-base input {
  padding: 8px 20px;
  border-radius: 8px;
  border: 2px solid #d1d1d1;
}
.auth-area .auth-box .form-area .login-submit {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.auth-area .auth-box .form-area .login-submit input {
  width: 100%;
  font-size: 20px;
}
.auth-area .auth-box .form-area .forgot-pass {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.75rem;
}
.auth-area .auth-box .text-bottom .info-pad {
  display: flex;
  gap: 8px;
}

@media (max-width: 46.875rem) {
  .auth-area .image-area {
    display: none;
  }
}
@media (max-width: 31.25rem) {
  .auth-area .auth-box {
    padding: 0 12px;
    box-shadow: none;
    background: none;
  }
  .auth-area .auth-box .title-login {
    font-size: 1.5rem;
  }
}
.alert-box {
  padding: 4px 16px;
  background-color: #DBDBDB;
  color: #999999;
  border-radius: 8px;
  font-weight: 500;
}
.alert-box a {
  text-decoration: underline;
}
.alert-box.warning {
  background-color: #FFE3B0;
  color: #332200;
}
.alert-box.error {
  background-color: #FCD4D4;
  color: #771818;
}
.alert-box.info {
  background-color: #E8F0FF;
  color: #01234A;
}
.alert-box.sucess {
  background-color: #BEDFBF;
  color: #023404;
}

.form-area .button-loader-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-area .error-feedback {
  font-size: 14px;
  font-style: italic;
  color: #b73535;
}

.banner-top-area {
  display: block;
}

@media (max-width: 31.25rem) {
  .banner-top-area {
    display: none;
  }
}
.container-restrict {
  display: flex;
  gap: 1rem;
}
.container-restrict .image-area {
  flex: 4;
}
.container-restrict .info-restrict {
  flex: 5;
  align-self: center;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
.container-restrict .info-restrict .button-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 46.875rem) {
  .container-restrict {
    flex-direction: column;
  }
}
.download-container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 1rem;
}
.download-container .container-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.download-container .container-header__title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
.download-container .container-header .container-button-excel-and-drop-database {
  display: flex;
}
.download-container .container-header .container-button-excel-and-drop-database .button.secondary.drop-database {
  padding: 1rem;
  color: red;
  border: 2px solid red;
  margin-right: 1rem;
}
.download-container .container-header .container-button-excel-and-drop-database .button.primary.export-excel {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}
.download-container .container-header .container-button-excel-and-drop-database .button.primary.export-excel .loader {
  display: none;
}
.download-container .container-modal-export-excel {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  z-index: 1000;
}
.download-container .container-modal-export-excel.show {
  visibility: visible;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 1rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: opacity 0.3s ease;
}
.download-container .container-modal-export-excel .content-buttons-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 0.5rem;
  color: #333333;
  padding: 1rem;
  border: 2px solid #333333;
  gap: 1rem;
}
.download-container .container-modal-export-excel .content-buttons-confirmation .title-export-excel {
  font-size: 1.5rem;
  text-align: center;
  color: inherit;
  margin-bottom: 1.25rem;
}
.download-container .container-modal-export-excel .content-buttons-confirmation .container-buttons-confirmation {
  display: flex;
  justify-content: space-around;
  gap: 0.75rem;
}
.download-container .container-modal-export-excel .content-buttons-confirmation .container-buttons-confirmation .button {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.download-container .container-modal-export-excel .content-buttons-confirmation .container-buttons-confirmation .button.primary {
  background-color: #3498db;
  color: white;
}
.download-container .container-modal-export-excel .content-buttons-confirmation .container-buttons-confirmation .button.primary:hover {
  background-color: #2980b9;
}
.download-container .container-modal-export-excel .content-buttons-confirmation .container-buttons-confirmation .button.secondary {
  background-color: #e74c3c;
  color: white;
}
.download-container .container-modal-export-excel .content-buttons-confirmation .container-buttons-confirmation .button.secondary:hover {
  background-color: #c0392b;
}
.download-container .container-filters-download-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.download-container .container-filters-download-list .content-filter-download-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.download-container .container-filters-download-list .content-filter-download-list .container-header-filter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  gap: 0.25rem;
}
.download-container .container-filters-download-list .content-filter-download-list .container-header-filter .date-label {
  font-weight: bolder;
  font-size: 1rem;
  color: #333333;
  text-align: left;
}
.download-container .container-filters-download-list .content-filter-download-list .container-header-filter .filter-field {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d1d1;
}
.download-container .container-filters-download-list .content-filter-download-list .container-header-filter .filter-field:focus-visible {
  outline: none;
  border-radius: 0.5rem 0.5rem 0 0;
}
.download-container .container-filters-download-list .content-filter-download-list .container-header-filter .filter-results-list-download-list {
  display: none;
  flex-direction: column;
  width: 100%;
  border: 1px solid #d1d1d1;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 100%;
  left: 0;
}
.download-container .container-filters-download-list .content-filter-download-list .container-header-filter .filter-results-list-download-list .filter-results-item-download-list {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #d1d1d1;
  z-index: 999;
}
.download-container .container-filters-download-list .content-filter-download-list .container-header-filter .filter-results-list-download-list .filter-results-item-download-list:last-child {
  border: 0;
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: hidden;
}
.download-container .container-filters-download-list .content-filter-download-list .container-header-filter .filter-results-list-download-list .filter-results-item-download-list:hover {
  background-color: #e5e5e5;
  cursor: pointer;
}
.download-container .container-filters-download-list .content-filter-download-list .container-header-filter .filter-results-list-download-list .filter-results-item-download-list.hidden {
  display: none;
}
.download-container .container-filters-download-list .content-filter-download-list.date {
  display: flex;
  border-radius: 8px;
  gap: 1rem;
}
@media (max-width: 600px) {
  .download-container .container-filters-download-list .content-filter-download-list.date {
    flex-direction: column;
    align-items: stretch;
  }
}
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-initial-date,
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-end-date,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-initial-date,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-end-date {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-initial-date .initial-date-tooltip,
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-initial-date .end-date-tooltip,
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-end-date .initial-date-tooltip,
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-end-date .end-date-tooltip,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-initial-date .initial-date-tooltip,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-initial-date .end-date-tooltip,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-end-date .initial-date-tooltip,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-end-date .end-date-tooltip {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-initial-date .initial-date-tooltip .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-initial-date .end-date-tooltip .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-end-date .initial-date-tooltip .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-end-date .end-date-tooltip .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-initial-date .initial-date-tooltip .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-initial-date .end-date-tooltip .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-end-date .initial-date-tooltip .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-end-date .end-date-tooltip .tooltiptext {
  display: none;
}
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-initial-date .initial-date-tooltip:hover .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-initial-date .end-date-tooltip:hover .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-end-date .initial-date-tooltip:hover .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .content-end-date .end-date-tooltip:hover .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-initial-date .initial-date-tooltip:hover .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-initial-date .end-date-tooltip:hover .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-end-date .initial-date-tooltip:hover .tooltiptext,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .content-end-date .end-date-tooltip:hover .tooltiptext {
  display: block;
  width: 200px;
  position: absolute;
  background-color: #333333;
  color: #f8f8f8;
  padding: 8px;
  border-radius: 8px;
  z-index: 1;
}
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date .date,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date .date {
  font-weight: bolder;
}
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date input[type=date],
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date input[type=date] {
  padding: 0.5rem;
  font-size: 1rem;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
  transition: all 0.2s ease;
}
.download-container .container-filters-download-list .content-filter-download-list.date .container-initial-date input[type=date]:focus,
.download-container .container-filters-download-list .content-filter-download-list.date .container-end-date input[type=date]:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.download-container .container-filters-download-list .content-filter-download-list .filter-selected-list-download-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.download-container .container-filters-download-list .content-filter-download-list .filter-selected-list-download-list .filter-selected-item-download-list {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaeaea;
  color: #333333;
  font-size: 0.75rem;
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  gap: 0.25rem;
  transition: all 0.3s ease-in-out;
}
.download-container .container-filters-download-list .content-filter-download-list .filter-selected-list-download-list .filter-selected-item-download-list:hover {
  background-color: #dedede;
}
.download-container .container-filters-download-list .content-filter-download-list .filter-selected-list-download-list .filter-selected-item-download-list .icon {
  color: inherit;
}
.download-container .container-error-message-download-list {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: #f2f2f2;
  background-color: red;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.download-container .container-error-message-download-list.show {
  display: block;
}
.download-container .container-error-message-download-list .message {
  color: #f8f8f8;
}
.download-container .container-filter-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.download-container .container-filter-button .button {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}
.download-container .container-filter-button .button.filter-download-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.download-container .container-filter-button .button.filter-download-list .icon {
  color: #f8f8f8;
}
.download-container .container-filter-button .button.clear-filters {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
}
.download-container .container-filter-button .button.clear-filters .icon {
  color: inherit;
}
.download-container .qty-message {
  font-weight: 300;
}
.download-container .table-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: auto;
}
.download-container .table-wrapper .download-table {
  width: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
  white-space: nowrap;
  overflow: hidden;
}
.download-container .table-wrapper .download-table__header {
  background-color: #014898;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.download-container .table-wrapper .download-table__row:nth-child(odd) {
  background-color: #d1d1d1;
}
.download-container .table-wrapper .download-table__cell {
  padding: 0.75rem;
  text-align: center;
  color: #f2f2f2;
  width: 30%;
  min-width: 9.375rem;
}
.download-container .table-wrapper .download-table__cell--header {
  font-weight: bold;
  text-align: center;
}
.download-container .table-wrapper .download-table__cell.items {
  color: #333333;
  text-wrap: wrap;
}
.download-container .table-wrapper .download-table__cell.items a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.download-container .table-wrapper .download-table__cell.date {
  width: 10%;
}
.download-container .table-wrapper .loading-skeleton {
  display: none;
  flex-direction: column;
  width: 100%;
}
.download-container .table-wrapper .loading-skeleton .loading-skeleton__item {
  width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
}
.download-container .table-wrapper .loading-skeleton .loading-skeleton__item:nth-child(odd) {
  background-color: #d1d1d1;
}
.download-container .table-wrapper .loading-skeleton .loading-skeleton__item::after {
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  animation: loadingAnimation 1.5s infinite linear;
}
.download-container .table-wrapper .loading-skeleton .loading-skeleton__item:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}
.download-container .container-pagination-download-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.download-container .container-pagination-download-list .pagination-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  gap: 0.5rem;
}
.download-container .container-pagination-download-list .pagination-container .pagination-nav {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #014898;
  color: #f8f8f8;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.download-container .container-pagination-download-list .pagination-container .pagination-nav:hover:not(.disabled) {
  background: #0160cb;
}
.download-container .container-pagination-download-list .pagination-container .pagination-nav.disabled {
  opacity: 0.4;
  cursor: default;
}
.download-container .container-pagination-download-list .pagination-container .pagination-nav .icon {
  color: inherit;
  font-size: 1rem;
}
.download-container .container-pagination-download-list .pagination-container .pagination-item {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  color: #014898;
  border: 1px solid #014898;
  border-radius: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.download-container .container-pagination-download-list .pagination-container .pagination-item:hover:not(.disabled):not(.active) {
  background: #80bcfe;
}
.download-container .container-pagination-download-list .pagination-container .pagination-item.active {
  background: #014898;
  color: #fcc530;
  font-weight: bold;
}
.download-container .container-pagination-download-list .pagination-container .pagination-item.disabled {
  opacity: 0.4;
  cursor: default;
}
.download-container .container-pagination-download-list .pagination-container .pagination-ellipsis {
  color: #333333;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.download-container .container-empty-data-download {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.download-container .container-empty-data-download.visible {
  display: flex;
}

@media (min-width: 768px) {
  .download-container .container-header {
    flex-direction: row;
    justify-content: space-between;
  }
  .download-container .container-filters-download-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
  .download-container .container-filters-download-list .content-filter-download-list.date {
    grid-column: 1/3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }
}
@keyframes loadingAnimation {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}/*# sourceMappingURL=style.css.map */