/**
* Governo do Estado do Rio Grande do Norte
* Main Style
* André Souza - arodriguesso@minsait.com
* 2023 May
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

body {
  color: rgba(var(--color-primary-rgb), 1);
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

#main {
  margin: 0;
}

::selection {
  background: var(--color-links);
  color: #fff;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 3rem 0;
  overflow: hidden;
  scroll-margin-top: 70px;
}

section.header,
section.header-dia {
  padding: 0;
}

.section-header {
  text-align: center;
  margin: 0 0 1.5rem 0;
  color: var(--color-black);
}

.section-header h5{
  color: var(--color-default);
}

.border-bottom-orange {
  border-bottom: 5px solid var(--color-govrn-orange);
  padding-bottom: 4px;
}

.border-bottom-green {
  border-bottom: 5px solid var(--color-govrn-green);
  padding-bottom: 4px;
}

.border-bottom-yellow {
  border-bottom: 5px solid var(--color-govrn-yellow);
  padding-bottom: 4px;
}

.border-bottom-blue {
  border-bottom: 5px solid var(--color-govrn-blue);
  padding-bottom: 4px;
}

.section-header p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# features
--------------------------------------------------------------*/

.features {
  background: var(--color-secondary-light);
}

.features .section-header h3 {
  color: var(--color-primary);
}

.features .card {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.3s;
  height: 100%;
  border: 0 none;
  background: var(--color-white);
  box-shadow: 0px 0px 10px 1px rgba(110, 123, 131, 0.15);
  border-radius: 0.375rem;
}

.features .card:hover {
  box-shadow: 0px 0px 10px 1px rgba(110, 123, 131, 0.15);
  transition: all ease-in-out 0.3s;
}

.features i {
  font-size: 50px;
  margin: 1rem;
  color: var(--color-govrn-blue);
}

.features .card-link {
  color: var(--color-default);
  padding: 50px 15px;
  width: 100%;
  height: 100%;
}

.features .card-link:hover {
  color: var(--color-govrn-blue);
  background: #e1f2fc;
  border-radius: 0.375rem;
}

@media (max-width: 576px) {
  .features .card {
    width: 80%;
    margin: 0 auto;
  }
  .features .card-link {
    padding: 20px;
  }
  .features h5 {
    margin: 0;
    padding: 10px 0;
  }
}

/*--------------------------------------------------------------
# marketing content
--------------------------------------------------------------*/

.marketing {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  text-align: center;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */

/*--------------------------------------------------------------
# Carousel homepage
--------------------------------------------------------------*/

/* Carousel base class */
.carousel {
  margin-top: 6rem;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
  word-wrap: break-word !important;
  width: 500px;
}

@media (max-width: 991.98px) {
  .carousel-caption {
    bottom: 2rem;
  }
  .carousel-img {
    object-fit: none;
    object-position: 10%;
  }
}

.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3,
.carousel-caption h5 {
  font-family: var(--font-secondary);
}

/* Declare heights because of positioning of img element */
.carousel-item {
  max-height: 500px;
}

.carousel-item img {
  min-height: 250px;
  width: 100%;
  max-height: 500px;
}

.carousel-img {
  object-fit: cover;
}

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}

/*--------------------------------------------------------------
# accordion-govrn
--------------------------------------------------------------*/

.accordion-govrn .accordion-item {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0 none;
  background: var(--color-white);
  box-shadow: 0px 0px 10px 1px rgba(110, 123, 131, 0.05);
  border-radius: 0.375rem;
}

.accordion-govrn .accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-govrn .accordion-button:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(13, 172, 227, 0.5);
  border: none;
  outline: none;
}

.accordion-govrn .accordion-button:not(.collapsed) {
  color: var(--color-white);
  background-color: var(--color-govrn-blue);
  box-shadow: none;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background: var(--color-default);
  width: 50px;
  height: 50px;
  transition: all 0.4s;
  color: var(--color-white);
}

.scroll-top i {
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-govrn-orange);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

header {
  position: -webkit-sticky;
  position: sticky;
  top: -2px;
  z-index: 1020;
}

header[stuck] {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/*--------------------------------------------------------------
# Header-dia
--------------------------------------------------------------*/

@media (max-width: 575.98px) {
  header.header-dia {
    position: relative;
  }
  header.header-dia[stuck] {
    box-shadow: 0 0.5rem 1rem transparent !important;
  }
}

/*--------------------------------------------------------------
# Page title - ADI
--------------------------------------------------------------*/

.page-title {
  font-family: var(--font-secondary);
  font-weight: 300;
  color: var(--color-pimary);
  /*font-size: 1.5rem;
  line-height: 2rem;*/
}

.page-title:hover {
  color: var(--color-black);
}

@media (max-width: 575.98px) {
  .page-title-size {
    margin-right: 1.5rem;
  }
  /*.page-title {
    font-size: 1.4rem;
    line-height: 2rem;
  }*/
}

@media (min-width: 576px) {
  .page-title-size {
    margin-right: 2rem;
  }
}

@media (min-width: 992px) {
  .page-title-size {
    margin-right: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .page-title-size {
    margin-right: 7rem;
  }
}

/*--------------------------------------------------------------
# Buttons 
--------------------------------------------------------------*/

/* Form Input Fields */
.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--color-black);
}

.btn:active,
.btn:focus {
  outline: none;
}

.btn.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn.btn-primary:hover {
  background-color: var(--color-default);
  border-color: var(--color-default);
}

.btn-govrn {
  --bs-btn-padding-x: 1rem;
  --bs-btn-color: #fff;
  --bs-btn-bg: #0dace3;
  --bs-btn-border-color: #0dace3;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #089dd8;
  --bs-btn-hover-border-color: #089dd8;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #028bca;
  --bs-btn-active-border-color: #028bca;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #87ccf2;
  --bs-btn-disabled-border-color: #87ccf2;
  --bs-gradient: none;
  font-weight: 500;
}

.btn-govrn-outline {
  --bs-btn-padding-x: 1rem;
  --bs-btn-color: #028bca;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #028bca;
  --bs-btn-hover-color: #028bca;
  --bs-btn-hover-bg: rgba(135, 204, 242, 0.25);
  --bs-btn-hover-border-color: #028bca;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #028bca;
  --bs-btn-active-bg: rgba(135, 204, 242, 0.5);
  --bs-btn-active-border-color: #028bca;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #87ccf2;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #87ccf2;
  --bs-gradient: none;
  font-weight: 500;
}

.btn-govrn-border0 {
  --bs-btn-padding-x: 1rem;
  --bs-btn-color: #028bca;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #028bca;
  --bs-btn-hover-bg: rgba(135, 204, 242, 0.25);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #028bca;
  --bs-btn-active-bg: rgba(135, 204, 242, 0.5);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #87ccf2;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
  --bs-gradient: none;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Dropdown - Form
--------------------------------------------------------------*/

.drop-form {
  width: 400px;
  border: 0;
}

@media (max-width: 575.98px) {
  .drop-form {
    width: 100%;
  }
}

.drop-form .dropdown-header {
  font-weight: 600;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px var(--color-primary) solid;
  padding: 0 0 10px 0;
  margin: 1.75rem 0;
}

.drop-form .form-label {
  font-weight: 500;
  padding: 0;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

.top-info {
  background: var(--color-primary);
  font-family: var(--font-secondary);
  padding: 9px 0;
}

.essencial-links,
.social-links {
  display: inline-flex;
  align-items: center;
}

.essencial-links .vr,
.social-links .vr {
  height: 30px;
  color: var(--color-secondary-dark);
  margin: 0 5px;
}

.essencial-links a,
.social-links a {
  color: var(--color-secondary-dark);
  text-transform: uppercase;
  transition: 0.3s;
  padding: 4px;
  margin: 0 7px;
  display: inline-block;
}

.essencial-links button,
.social-links button {
  color: var(--color-secondary-dark);
  background: var(--color-primary);
  text-transform: uppercase;
  border: 0;
  margin: 0 10px;
  padding: 4px;
}

.social-links .dropdown-menu {
  padding: 0px;
  border: 1px var(--color-default) solid;
  border-radius: 0;
}

.social-links .dropdown-item {
  padding: 10px 20px;
  text-align: center;
  margin: 0;
  border-bottom: 1px var(--color-default) solid;
  background: var(--color-primary);
}

.social-links .dropdown-item:hover {
  background-color: var(--color-default);
}

.essencial-links a:hover,
.essencial-links button:hover,
.social-links a:hover,
.social-links button:hover,
.social-links button:focus {
  color: var(--color-secondary-light);
}

/*--------------------------------------------------------------
# Top bar - top-info-dia
--------------------------------------------------------------*/

.top-info-dia {
  background: linear-gradient(
    135deg,
    white,
    #ced4da 60%
  ); /*45deg, #e9ecef, #ced4da*/
  font-family: var(--font-secondary);
  padding: 9px 0;
  height: 80px;
}

.top-info-dia img.logo {
  max-height: 60px;
}

@media (max-width: 768px) /*md*/ {
  .top-info-dia img.logo {
    max-height: 50px;
  }
  .top-info-dia {
    height: 72px;
  }
}

.top-info-dia .social-links {
  display: inline-flex;
  align-items: center;
  /*font-size: 14px;*/
}

.top-info-dia .social-links .vr {
  height: 30px;
  color: var(--color-secondary-dark);
  margin: 0 5px;
}

.top-info-dia .social-links a {
  color: var(--color-primary-light);
  padding: 4px;
  margin: 0 6px;
  font-weight: 500;
  text-transform: uppercase;
}

.top-info-dia .social-links button {
  color: var(--color-primary-light);
  background: none;
  border: 0;
  margin: 0 10px;
  padding: 4px;
  font-weight: 500;
  text-transform: uppercase;
}

.top-info-dia .social-links .dropdown-menu {
  padding: 0px;
  border: 1px var(--color-secondary-dark) solid;
  border-radius: 0;
  /*font-size: 12px;*/
}

.top-info-dia .social-links .dropdown-item {
  padding: 10px;
  text-align: center;
  margin: 0;
  border-bottom: 1px var(--color-secondary-dark) solid;
  background: #dee2e6;
}

/*
.top-info-dia .social-links .dropdown-item.aumentar-fonte {
  font-size: 16px;
  font-weight: bold;
}

.top-info-dia .social-links .dropdown-item.diminuir-fonte {
  font-size: 14px;
  font-weight: bold;
}*/

.top-info-dia .social-links .dropdown-item:hover {
  background-color: var(--color-secondary);
}

.top-info-dia .social-links a:hover,
.top-info-dia .social-links button:hover,
.top-info-dia .social-links button:focus {
  color: var(--color-primary-dark);
}

/*
@media (max-width: 400px) {
  .top-info-dia .social-links {
    font-size: 12px;
  }
}*/

/*--------------------------------------------------------------
# Alphabet-list - Acesso rápido - Órgãos do Governo
--------------------------------------------------------------*/

.org-gov .modal-header {
  background: var(--color-secondary);
  border: 0;
}

.org-gov .modal-title,
.org-gov .btn-close {
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

.org-gov .list-group-item {
  display: inline-flex;
  align-items: center;
}

.org-gov ol h6 {
  font-size: 1.15rem;
  margin: 0 0 0 20px;
  padding: 10px 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
}

.header img.logo {
  max-height: 80px;
}

@media (max-width: 768px) /*md*/ {
  .header img.logo {
    max-height: 60px;
  }
}

.govrnbar {
  height: 8px;
  display: block;
}

.govrn-orange {
  background: var(--color-govrn-orange);
}

.govrn-green {
  background: var(--color-govrn-green);
}

.govrn-yellow {
  background: var(--color-govrn-yellow);
}

.govrn-blue {
  background: var(--color-govrn-blue);
}

/*--------------------------------------------------------------
# Sidebar / Menu / Navbar
--------------------------------------------------------------*/

.btn-menu {
  font-weight: bold;
  font-size: 43px;
  vertical-align: middle;
  color: var(--color-govrn-blue);
}

.btn-menu:hover {
  color: var(--color-default);
}

.sidebar .dropdown-menu {
  border: 0;
  box-shadow: 0px 5px 20px 0px rgba(110, 123, 131, 0.2);
  border-radius: 0;
  padding: 0.5rem;
}

.sidebar .dropdown-item {
  background: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: calc(100% - 0.05rem);
}

@media (max-width: 991.98px) {
  .sidebar {
    background-color: var(--color-govrn-blue);
  }

  .sidebar .btn-close {
    background: transparent
      url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
      center/1em auto no-repeat;
  }

  .offcanvas.sidebar {
    width: 333px;
  }

  .offcanvas.sidebar,
  .offcanvas.sidebar .offcanvas-body {
    padding: 0;
  }

  .offcanvas.sidebar .offcanvas-header {
    padding: 30px 20px 40px 20px;
  }

  .offcanvas.sidebar .offcanvas-title {
    text-align: end;
    color: white;
    width: 100%;
    padding-right: 1rem;
  }

  .sidebar .brasao {
    width: 160px;
  }

  .sidebar .offcanvas-body a {
    display: block;
    color: #fff;
    transition: 0.3s;
    padding: 15px 20px;
  }
  
  .sidebar a:hover {
    text-decoration: underline;
    background: none;
  }

  .offcanvas.sidebar .navbar-nav a,
  .offcanvas.sidebar .navbar-nav a:hover {
    color: white;
  }

  .offcanvas.sidebar .navbar-nav a marker:hover{
    text-decoration: underline;
    color: black;
  }

  .offcanvas.sidebar .dropdown-menu {
    background-color: var(--color-links);
    border-radius: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .offcanvas.sidebar .nav-item{
    border-bottom: 1px var(--color-links) solid;
  }

  .offcanvas.sidebar .dropdown-menu li{
    border-bottom: 1px var(--color-govrn-blue) solid;
  }

  .offcanvas.sidebar .dropdown-menu li:last-child{
    border-bottom: 0;
  }
  
  .sidebar .accordion-flush .accordion-item {
    border: 0;
    border-bottom: 1px var(--color-links) solid;
    border-radius: 0;
  }
  
  .sidebar .accordion-header a,
  .sidebar .accordion-header button {
    background-color: var(--color-govrn-blue);
    color: #ffffff;
  }
  
  .sidebar .accordion-button {
    font-size: inherit;
  }
  
  .sidebar .accordion-button:hover {
    z-index: 2;
    text-decoration: underline;
  }
  
  .sidebar .accordion-button:focus {
    z-index: 3;
    border: 0;
    outline: none;
    box-shadow: none;
  }
  
  .sidebar .accordion-button:not(.collapsed) {
    color: #fff;
    font-weight: bold;
  }
  
  /* change accordion arrow color to white */
  .sidebar .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  
  .sidebar .accordion-collapse {
    padding: 0;
    margin: 0;
    background-color: var(--color-links);
  }
  
  .sidebar .list-group-item {
    background-color: var(--color-links);
    padding: 0;
    margin: 0;
  }
  
  .sidebar .sidebar-info {
    margin: 30px 0;
    padding: 0 0 0 20px;
  }
  
  .sidebar .sidebar-info h6 {
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--font-secondary);
    color: var(--color-white);
  }
  
  .sidebar .sidebar-info img {
    max-width: 20px;
    margin-right: 10px;
  }
  
  .sidebar .sidebar-info a {
    padding: 15px 0 0 0;
  }
}

/*small devices*/
@media (max-width: 576px) {
  .offcanvas.sidebar {
    width: 100%;
  }
}

.sidebar .navbar-nav a{
  color: black;
}

.sidebar .navbar-nav a:hover{
  color: var(--color-govrn-blue);
}

.navbar-govrn .navbar-brand a{
  color: var(--color-primary-dark);
}

/*--------------------------------------------------------------
# Menu - Wordpress
--------------------------------------------------------------*/
/*
.menu-menu-govrn-container .menu {
  background-color: var(--color-govrn-blue);
  font-size: 18px;
  color: #ffffff;
}

.menu-menu-govrn-container ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-menu-govrn-container a {
  border-bottom: 1px var(--color-links) solid;
}

.menu-menu-govrn-container .sub-menu {
  background-color: var(--color-links);
  font-size: 16px;
  color: #ffffff;
}

.menu-menu-govrn-container .sub-menu .menu-item {
  border-bottom: 1px var(--color-links-hover) solid;
  padding-left: 10px;
}*/

/*--------------------------------------------------------------
# Search Box
--------------------------------------------------------------*/

.search-icon {
  width: 60px;
  height: 60px;
  font-size: 29px;
}

.search-box {
  border-radius: 40px;
  height: 70px;
  width: 100%;
  background: var(--color-secondary-light);
  padding: 0 75px 0 25px;
  border: none;
  outline: none;
}

@media (min-width: 992px) {
  .search-box {
    width: 450px;
  }
}

.btn-search-box {
  --bs-btn-padding-x: 1rem;
  --bs-btn-color: #028bca;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0dace3;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  margin-right: 10px;
  transition: 0.5s;
  display: flex;
  align-items: center;
}

.search:hover > .btn-search-box {
  background: #0dace3;
  color: #fff;
}

.search-mobile .offcanvas-title {
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

/* mobile */

@media (max-width: 400px) {
  .search-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
  }
  .btn-menu {
    font-size: 24px;
  }
  .offcanvas-top.search-mobile {
    height: 200px;
  }
}

/*
.search-box {
  height: 70px;
  padding: 10px;
  border-radius:40px;
  position: absolute;
  right: 0;
  background: var(--color-secondary-light);
}

.search-txt {
  border: none;
  background: none;
  outline: none;
  padding: 0;
  line-height: 40px;
  color: #000;
  font-size: 17px;
  width: 360px;
  padding: 0 10px;
  transition: .5s;
  font-weight: normal;
}

.search-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
  font-size: 22px;
}

.search-box:hover > .search-btn {
  background: #0dace3;
  color: #fff;
}

.search-box:hover > .search-txt {
width: 400px;
}

@media (max-width: 992px) {
  .search-txt {
  width: 0;
  padding: 0;
  }
  .search-box:hover > .search-txt {
  width: 400px;
  padding: 0 10px;
  }
}
*/

/* mobile 

/*Galaxy Fold
@media (min-width: 280px) and (max-width: 290px) {
  .header img.logo {
  max-width: 130px;
  }
  .search-txt {
  width: 0;
  padding: 0;
  }
  .search-box{
    background: #f8f8f8;
  }
  .search-box:hover{
    background: var(--color-secondary-light);
  }
  .search-box:hover > .search-txt {
  width: 188px;
  padding: 0 10px;
  font-size: 16px;
  }
}

/*Galaxy S20
@media (min-width: 360px) and (max-width: 365px) {
  .search-txt {
  width: 0;
  padding: 0;
  }
  .search-box:hover > .search-txt {
  width: 268px;
  padding: 0 10px;
  }
}

/*iPhone SE
@media (min-width: 375px) and (max-width: 385px) {
  .search-txt {
  width: 0;
  padding: 0;
  }
  .search-box:hover > .search-txt {
  width: 281px;
  padding: 0 10px;
  }
}

/*iPhone 12Pro
@media (min-width: 390px) and (max-width: 400px) {
  .search-txt {
  width: 0;
  padding: 0;
  }
  .search-box:hover > .search-txt {
  width: 300px;
  padding: 0 10px;
  }
}

/*Galaxy S20 Ultra - iPhone XR
@media (min-width: 412px) and (max-width: 424px) {
  .search-txt {
  width: 0;
  padding: 0;
  }
  .search-box:hover > .search-txt {
  width: 321px;
  padding: 0 10px;
  }
}
*/

/*--------------------------------------------------------------
# Search Result
--------------------------------------------------------------*/

.nav-underline {
  border-bottom: 1px solid var(--bs-gray-500);
  margin-bottom: 3rem;
}

.nav-underline a {
  color: var(--color-default);
  padding-bottom: 15px;
}

.nav-underline a:hover {
  text-decoration: underline;
  color: var(--color-default);
}

.nav-underline a.active {
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 5px solid var(--color-govrn-blue);
}

/*--------------------------------------------------------------
# Banner Fixed 
--------------------------------------------------------------*/

section.banner-fixed {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Banner Slide
--------------------------------------------------------------*/

.banner-slide-post {
  background-color: var(--color-govrn-blue);
}

.banner-bg {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center;
  height: 250px;
}

.banner-bg:before {
  position: absolute;
  content: "";
  /*background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);*/
  opacity: 0.5;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  top: 0;
}

.banner-caption {
  padding: 2rem 3.5rem;
  color: var(--color-white);
}

.banner-caption span {
  padding: 0.05em;
  line-height: 1.4em;
  background: var(--color-govrn-blue);
}

@media (min-width: 768px) {
  .banner-bg {
    height: 450px;
  }
  .banner-caption {
    position: absolute;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(to top, #000, transparent);
    width: 100%;
  }
  .banner-caption h2 {
    max-width: 750px;
  }
}

/*
.banner-bg .banner-slide-caption {
  z-index: 2;
  width: 100%;
  padding: 20px 50px 40px 50px;
  margin: 0;
  background: linear-gradient(to top, #000, transparent);
}*/

/*
.banner-bg .banner-slide-caption h2,
.banner-bg .banner-slide-caption p {
  max-width: 750px;
  color: var(--color-white);
}*/

/*
.banner-slide-caption span {
  padding: 0.05em;
  line-height: 1.4em;
  background: var(--color-govrn-blue);
}*/
/*
@media (max-width: 465px) {
  .banner-slide-post .swiper-slide {
    height: 610px;
    background: var(--color-govrn-blue);
  }
  .banner-bg {
    height: 250px;
  }
  .banner-bg .banner-slide-caption {
    position: absolute;
    top: 250px;
    background: var(--color-govrn-blue);
  }
}

@media (min-width: 466px) and (max-width: 566px) {
  .banner-slide-post .swiper-slide {
    height: 540px;
  }
  .banner-bg {
    height: 300px;
  }
  .banner-bg .banner-slide-caption {
    height: 240px;
    position: absolute;
    top: 300px;
    background: var(--color-govrn-blue);
  }
}

@media (min-width: 567px) and (max-width: 667px) {
  .banner-slide-post .swiper-slide {
    height: 540px;
  }
  .banner-bg {
    height: 300px;
  }
  .banner-bg .banner-slide-caption {
    height: 240px;
    position: absolute;
    top: 300px;
    background: var(--color-govrn-blue);
  }
}*/
/*@media (min-width: 678px) and (max-width: 768px) {*/

  /*
@media (min-width: 668px) and (max-width: 768px) {
  .banner-slide-post .swiper-slide {
    height: 550px;
    background: var(--color-govrn-blue);
  }
  .banner-bg {
    height: 300px;
  }
  .banner-bg .banner-slide-caption {
    position: absolute;
    top: 300px;
    background: var(--color-govrn-blue);
  }
}*/




/*--------------------------------------------------------------
# Swiper - gallery-post
--------------------------------------------------------------*/

.gallery-post {
  padding: 1rem 0 3rem 0;
}

.gallery-post-image .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.gallery-post-image .swiper-slide img,
.gallery-post-thumb .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper.gallery-post-image,
.swiper.gallery-post-thumb {
  margin: 0 auto;
}

/*XS mobile*/
@media (max-width: 450px) {
  .swiper.gallery-post-image {
    height: 240px;
  }
  .swiper.gallery-post-thumb {
    height: 60px;
  }
}

@media (min-width: 451px) and (max-width: 575.98px) {
  .swiper.gallery-post-image {
    height: 320px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .swiper.gallery-post-image {
    width: 580px;
    height: 386px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .swiper.gallery-post-image {
    width: 580px;
    height: 386px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .swiper.gallery-post-image {
    width: 700px;
    height: 466px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .swiper.gallery-post-image {
    width: 740px;
    height: 493px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

@media (min-width: 1400px) {
  .swiper.gallery-post-image {
    width: 760px;
    height: 506px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

.gallery-post-thumb {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  cursor: pointer;
}

.gallery-post-thumb .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.gallery-post-thumb .swiper-slide-thumb-active {
  opacity: 1;
}

.gallery-post-caption {
  margin: 15px auto 5px auto;
  text-align: center;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Accordion Services - Hot / Star
--------------------------------------------------------------*/

.hot-services .accordion-button h6,
.star-services .accordion-button h6 {
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--font-secondary);
  text-decoration: none;
  margin: 0;
}

.hot-services .accordion-button:focus,
.star-services .accordion-button:focus {
  z-index: 3;
  outline: none;
  box-shadow: none;
  border: none;
}

.hot-services .accordion-button:not(.collapsed),
.star-services .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #b3a688;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}

/*change accordion arrow color to white*/

.hot-services .accordion-button:not(.collapsed)::after,
.star-services .accordion-button:not(.collapsed)::after,
.accordion-govrn .accordion-button:not(.collapsed)::after{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.hot-services .accordion-button::after,
.star-services .accordion-button::after,
.accordion-govrn .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.hot-services a {
  display: block;
  padding: 2px 0;
  width: 100%;
}

.star-services a {
  display: block;
  padding-bottom: 1.5px;
}

.hot-services .accordion-item,
.star-services .accordion-item {
  box-shadow: 0px 5px 30px 0px rgba(110, 123, 131, 0.2);
}

.hot-services .accordion-body,
.star-services .accordion-body {
  min-height: 330px;
}

/* specific color icons */
.hot-services .bi-fire {
  color: var(--color-govrn-orange);
}

.star-services .bi-star-fill {
  color: var(--color-govrn-yellow);
}

.hot-services .accordion-body .list-group-item,
.star-services .accordion-body .list-group-item {
  color: var(--color-secondary-dark);
}

/*--------------------------------------------------------------
# Services-banner
--------------------------------------------------------------*/

.services-banner,
.services-banner .card,
.services-banner .card-img {
  border: none;
  border-radius: 0;
}

.services-banner a {
  color: #fff;
}

.services-banner .card-title {
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--font-secondary);
}

.services-banner .card-img-overlay {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

@media (max-width: 1199.98px) {
  .services-banner .card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .services-banner .card {
    margin: 0 1rem 1.5rem 1rem;
  }
}

/*--------------------------------------------------------------
# Services Section - Category
--------------------------------------------------------------*/

.services-category {
  background: #f0f0f0;
}

.services-category .card {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.3s;
  height: 100%;
  border: 0 none;
  background: var(--color-white);
  box-shadow: 0px 5px 20px 0px rgba(110, 123, 131, 0.2);
}

.services-category .card:hover {
  box-shadow: 0px 5px 20px 0px rgba(110, 123, 131, 0.1);
  transition: all ease-in-out 0.3s;
}

.services-category i {
  font-size: 50px;
  margin: 1rem;
  color: var(--color-govrn-blue);
}

.services-category .card-link h5 {
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-primary);
}

.services-category .card-link {
  color: var(--color-default);
  padding: 40px 20px;
  width: 100%;
  height: 100%;
}

.services-category .card-link:hover {
  color: var(--color-govrn-blue);
}

/*--------------------------------------------------------------
# Programs
--------------------------------------------------------------*/

.embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.embed-video {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}

/*--------------------------------------------------------------
# Social-widgets
--------------------------------------------------------------*/

.social-widgets {
  
}


/*--------------------------------------------------------------
# Posts Section
--------------------------------------------------------------*/

section.posts {
  padding: 2rem 0 1rem 0;
}

.posts .card,
.posts .card-img,
.posts .card-img-top {
  /*remove default card & img borders */
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.posts .card-body,
.posts .card-img,
.secondary-posts .card-body {
  padding: 0;
  margin: 0;
}

.crop-adjust {
  object-fit: cover;
  object-position: 50% 50%;
}

/*XXL and up*/
@media (min-width: 1400px) {
  .posts .card-img-top {
    height: 289px;
  }
}

/*between XL and XXL*/
@media (max-width: 1399.98px) {
  .posts .card-img-top {
    height: 249px;
  }
}

/*between LG and XL*/
@media (max-width: 1199.98px) {
  .posts .card-img-top {
    height: 315px;
  }
}

/*between MD and LG*/
@media (max-width: 991.98px) {
  .posts .card-img-top {
    height: 235px;
  }
}

/*between SM and MD*/
@media (min-width: 500px) and (max-width: 767.98px) {
  .posts .card-img-top {
    height: 355px;
  }
}

/*between SM and MD*/
@media (min-width: 400px) and (max-width: 499.98px) {
  .posts .card-img-top {
    height: 305px;
  }
}

/*less than SM*/
@media (max-width: 399px) {
  .posts .card-img-top {
    height: 200px;
  }
}

.posts .card h6,
.secondary-posts .card h6 {
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--font-secondary);
}

.link-video {
  position: relative;
}

.link-video span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  background-color: rgba(var(--color-black-rgb), 0.3);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Secondary-posts
--------------------------------------------------------------*/

.secondary-posts {
  background: #f8f8f8;
  padding: 3rem 0;
}

.secondary-posts .section-header {
  position: relative;
  height: 20px;
  margin: 0 0 2.5rem 0;
}

.line {
  width: 100%;
  height: 1%;
  background: var(--color-secondary);
  top: 0px;
}

.secondary-posts .card {
  background: none;
  border: none;
  margin: 0 0 1rem 0;
}

/*--------------------------------------------------------------
# Main Content - Single-post
--------------------------------------------------------------*/

pre {
  margin: 0;  
  white-space: pre-wrap; 
  font-family: var(--font-primary);
  display: block;
  font-size: medium;
  font-weight: 400;
  text-align: justify;
}

.equipe{
  padding-bottom: 50px;
  padding-top: 10px;
}

.gridEquipe{  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: 60px;
  margin-top: 50px;
}
.itemEquipe {
  width: 45%;
  margin-bottom: 20px;
}

@media screen and (max-width: 820px) {
  .gridEquipe{
    margin-left: 0px;
  }
  .itemEquipe {
    width: 100%;
  }
}

.perfilEquipe{
 
}
.cargoEquipe{
  
}

.list-news{
  padding: 20px 0;
  margin: 20px 0 0 0;
}


.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.float-end {
  float: right !important;
}

.col-lg-4 col-md-6{
  padding: 20px;
}

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

.creditoFoto{
  text-align: center;
  margin-bottom: 8px;
  margin-top: 8px;
}

.single-image img {
  display: block;
  width: 75%;
  height: auto;
  margin: 0px auto;
}

.noticiaDetalhes mt-4{
  float: center;
}

.row.gy-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
  display: flex !important;
  flex-wrap: wrap !important;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
  flex-direction: row;
}

.col-xl-3{
  flex: 0 0 auto;
  width: 25%;
}

.card{
  border: none;
  border-radius: 0;
}

#myInput {
  background-image: url('/css/searchicon.png');
  background-position: 10px 12px; 
  background-repeat: no-repeat; 
  width: 100%; 
  font-size: 16px;
  padding: 12px 20px 12px 40px; 
  border: 1px solid #ddd; 
  margin-bottom: 12px;
}

.dropdown-item:hover {
  cursor: pointer;
  text-decoration: underline;
}

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

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



.btn-govrn{
margin-left: 5px;
}

.nomeOrgao{
  font-size: 1.3rem;
  font-weight: bold; 
  margin-bottom: -10px;
}
.nomeEquipe{      
  font-size: 1rem;
}

section.main-content {
  margin-top: 6rem;
}

.main-content .post-category {
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--font-secondary);
  color: var(--color-gray);
}

.single-post {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
  line-height: 1.8rem;
}

.single-post h1,
.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post h6 {
  padding: 2.5rem 0 2rem 0;
}

.single-post a {
  text-decoration: none;
}

.single-post a.btn {
  text-decoration: none;
}

.breadcrumb {
  margin-bottom: 35px;
}

.breadcrumb a {
  text-decoration: none;
}

.title {
  color: var(--color-primary);
  margin: 0.75rem 0;
}

.post-date {
  margin: 2rem 0;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.share,
.share button {
  display: inline-flex;
  align-items: center;
  height: 30px;
}

.share button {
  margin-left: 15px;
  border: 0;
  background: none;
}

.share button i {
  color: var(--color-links);
}

.share button i:hover {
  color: var(--color-links-hover);
}

.modal-share-link i {
  color: var(--color-govrn-blue);
}

/*
@media (max-width: 576px) {
  .share span,
  .time span {
    display:block;
  }
}
*/

.post-footer {
  border-top: 1px var(--bs-gray-300) solid;
  padding: 2rem 0 0 0;
}

.tag {
  display: inline-block;
  color: var(--color-default);
  padding: 6px 9px;
  border: 1px var(--bs-gray-300) solid;
  border-radius: 5px;
  margin: 0 7px 10px 0;
  transition: 0.3s all ease;
  text-decoration: none;
}

.tag:hover,
.tag:focus {
  color: var(--color-default);
  border: 1px var(--color-default) solid;
}

.single-post blockquote {
  font-size: 1.3em;
  width: 70%;
  margin: 50px auto;
  font-family: Open Sans;
  font-style: italic;
  padding: 30px 30px 30px 75px;
  border-left: 8px solid var(--color-govrn-blue);
  line-height: 1.6;
  position: relative;
  color: var(--color-primary-light);
  background: var(--color-secondary-light);
}

@media (max-width: 600px) {
  .single-post blockquote {
    font-size: 1.3rem;
    width: 90%;
  }
}

.single-post blockquote::before {
  font-family: Arial;
  content: "\201C";
  color: var(--color-govrn-blue);
  font-size: 5em;
  position: absolute;
  left: 10px;
  top: -10px;
}

.single-post blockquote::after {
  content: "";
}

.single-post blockquote span {
  display: block;
  color: var(--color-default);
  font-style: normal;
  font-weight: bold;
  margin-top: 1em;
}

/* TABLE-GOVRN  */

.table-govrn thead {
  background: var(--color-govrn-blue);
  color: var(--color-white);
}

/* CARD-GOVRN */

.card-govrn {
  border: none;
  background: var(--color-secondary-light);
  border-radius: 0;
}

.card-govrn .card-header {
  background: var(--color-govrn-blue);
  color: var(--color-white);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 0;
  padding: 1rem;
}

.card-govrn .card-header h4 {
  padding: 0.5rem 0.5rem 0 0.5rem;
  color: var(--color-white);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-weight: bold;
}

.card-govrn .card-header h6 {
  padding: 0 0.5rem 0.5rem 0.5rem;
  color: var(--color-white);
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

.card-govrn .title {
  display: block;
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-weight: bold;
  text-transform: uppercase;
}

.card-govrn .list-group {
  padding: 10px;
}

.card-govrn .list-group-item {
  background: var(--color-secondary-light);
}

.card-govrn .list-group-item a {
  text-decoration: none;
}

.card-govrn .list-group-item a:hover {
  text-decoration: underline;
}

/* SERVICES-CENTER */

.services-center,
.services-center-mobile {
  background: var(--color-secondary-light);
  padding: 20px;
  border-top: 8px var(--color-govrn-blue) solid;
}

.services-center .nav-link {
  border: 0;
  height: 90px;
  width: 90px;
  background: var(--color-white);
  border-radius: 0.5rem;
  margin: 0 0 10px 0;
}

.services-center .nav-link i {
  font-size: 40px;
  color: var(--color-govrn-blue);
}

.services-center .nav-link.active {
  border: 0;
  height: 90px;
  width: 90px;
  background: var(--color-secondary-light);
}

.services-center .nav-link.active i {
  font-size: 40px;
  color: var(--color-govrn-blue);
}

.services-center .tab-pane.active {
  border: 0;
  height: 100%;
  width: 100%;
}

.services-center .tab-pane h3 {
  height: 80px;
  display: flex;
  align-items: center;
  margin-left: 2.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-center .tab-pane h5 {
  padding: 2rem 0 0.5rem 2.75rem;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-govrn-blue);
}

.services-center .list-group {
  margin: 2rem;
}

.services-center .list-group-item,
.services-center-mobile .list-group-item {
  background: none;
  text-decoration: none;
  padding: 15px;
}

.services-center .list-group-item:hover,
.services-center-mobile .list-group-item:hover {
  background: var(--color-govrn-blue);
  color: var(--color-white);
}

.services-center-mobile .accordion,
.services-center-mobile .accordion-item,
.services-center-mobile .accordion-header,
.services-center-mobile .accordion-button {
  border: none;
}

.services-center-mobile .accordion-item {
  margin: 15px 0;
  background: none;
}

.services-center-mobile .accordion-button {
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--font-primary);
  color: var(--color-primary);
}

.services-center-mobile .accordion-button:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.services-center-mobile .accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
  font-weight: 600;
  color: var(--color-primary);
}

.services-center-mobile .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.services-center-mobile .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.services-center-mobile h2.accordion-header {
  padding: 0;
  margin: 0;
  border: none;
}

.services-center-mobile .accordion-button i {
  font-size: 35px;
  color: var(--color-govrn-blue);
  margin: 0 1rem 0 0;
}

.services-center-mobile .accordion-button:not(.collapsed) i {
  color: var(--color-govrn-blue);
}

.services-center-mobile h5 {
  padding: 2rem 0 2rem 0.75rem;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-govrn-blue);
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

.page-link {
  border: 0;
  border-radius: 20rem;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  color: var(--color-links);
  font-weight: 500;
}

.page-link:hover {
  z-index: 2;
  color: var(--color-white);
  background: var(--color-links-hover);
}

/*
.page-link:focus {
  z-index: 3;
  color: var(--color-links);
  background: transparent;
  outline: 0;
  box-shadow: 0 0 0 0.1rem black;
}*/

.page-link.active,
.active > .page-link {
  z-index: 3;
  color: var(--color-white);
  background: var(--color-govrn-blue);
}

.page-link.disabled,
.disabled > .page-link {
  color: var(--color-links);
  opacity: 0.5;
  pointer-events: none;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 20rem;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-item .dropdown-menu {
  overflow: auto;
  min-width: 60px;
  min-height: 68px;
  max-height: 117px;
}

.page-item .dropdown-item {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# List-news - List-service
--------------------------------------------------------------*/

.list-news {
  padding: 20px 0;
  margin: 20px 0 0 0;
}

.list-news .thumbnail {
  width: 150px;
  height: 100px;
  margin: 0 0 20px 20px;
}

@media (max-width: 400px) {
  .list-news .thumbnail {
    width: 120px;
    height: 80px;
    margin: 0 0 20px 20px;
  }
}

.list-service p a {
  text-decoration: underline;
}

.tab-pane .list-news,
.tab-pane .list-service {
  padding: 0 0 1rem 0;
  margin: 0 0 2rem 0;
  border-bottom: 1px var(--bs-gray-200) solid;
}

/* BREADCRUMB-DOCS */

@media (max-width: 400px) {
  .breadcrumb-docs {
    display: flex;
    flex-direction: column;
  }
}

.breadcrumb-docs .breadcrumb-item {
  padding: 0.5rem;
}

.breadcrumb-docs .breadcrumb-item:first-child {
  padding-left: 0;
}

.breadcrumb-docs .breadcrumb-item+.breadcrumb-item::before {
  font-family: 'FontAwesome';
  content: "\f105";
  color: var(--color-secondary);
}

/* CARD-FOLDER */

.card-folder{
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.card-folder i {
 font-size: 13rem;
 color: var(--color-secondary-light);
}

.card-folder:hover i {
  color: #e1f2fc;
}

.card-folder:hover {
  transform: scale(1.05);
}

.card-folder .folder-title {
  position: absolute;
}

.card-folder .folder-title a {
  color: var(--color-primary);
  text-decoration: none;
  width: 13rem;
  height: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 0 1.5rem;
}

.card-folder .folder-title a:hover {
  color: var(--color-links);
  text-decoration: none;
}

.list-files a{
  text-decoration: none;
}

.list-files a:hover {
  color: var(--color-links-hover);
  text-decoration: underline;
}

/* LIST-DOCS */

.list-docs {
  padding: 1.5rem 0;
  border-bottom: 1px var(--bs-gray-300) solid;
}

.list-docs h5 {
  padding: 0;
  margin: 0;
}

.list-docs p {
  margin: 1rem 0 0 0;
  padding: 0;
}

.list-docs:last-child {
  border: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  overflow: hidden;
  background: var(--color-govrn-blue);
  color: var(--color-white);
  padding: 3rem 0 0 0;
}

.footer img {
  max-width: 180px;
}

.footer .social-links-footer a {
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--color-white-rgb), 0.09);
  border-radius: 50%;
  color: var(--color-white);
  line-height: 40px;
  margin: 0 3px;
}

.footer .social-links-footer a:hover {
  background-color: rgba(var(--color-white-rgb), 0.2);
}

.footer .footer-legal {
  color: var(--color-black);
  background: var(--color-govrn-yellow);
  padding: 15px 0;
  font-weight: 500;
  margin: 2rem 0 0 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.875em;
}

.footer .footer-links h6 {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer .footer-links li {
  line-height: 30px;
}

.footer .footer-links a {
  color: var(--color-white);
}

.footer .footer-links h5 a:hover,
.footer .footer-links h5 a:focus,
.footer .footer-links li a:hover,
.footer .footer-links li a:focus {
  text-decoration: underline;
}

.swiper-custom {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
}

/*--------------------------------------------------------------
# Spinner
--------------------------------------------------------------*/

.spinner-govrn {
  color: var(--color-govrn-blue);
}