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

/*--------------------------------------------------------------
# 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: 4rem 0;
  overflow: hidden;
  scroll-margin-top: 70px;
}

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

.section-header {
  text-align: center;
  margin: 0 0 2rem 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
--------------------------------------------------------------*/

section.features {
  padding: 4rem 0;
}

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

/*--------------------------------------------------------------
# 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 {
  font-size: 24px;
  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;
}

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

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

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

.essencial-links a:hover,
.essencial-links button:hover,
.essencial-links button:focus,
.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);
  /* font-family: "Poppins", sans-serif; */
  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);
  padding: 4px;
  margin: 0 6px;
  /* font-weight: 500;
  text-transform: uppercase; */
}

.top-info-dia .social-links button {
  color: var(--color-primary);
  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
--------------------------------------------------------------*/

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

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

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

.sidebar .brasao {
  width: 160px;
}

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

.sidebar .offcanvas-body a {
  display: block;
  color: #fff;
  transition: 0.3s;
  padding: 15px 20px;
}

.sidebar a:hover {
  text-decoration: underline;
}

.sidebar .accordion-flush,
.sidebar .accordion-item {
  border: 0 none;
  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: none;
  outline: none;
  box-shadow: none;
}

.sidebar .accordion-button:not(.collapsed) {
  color: #fff;
  font-weight: bold;
  box-shadow: none;
}

/* 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 .list-group-item {
  background-color: var(--color-links);
  padding: 0;
  margin: 0;
}

/*remove border-radius accordion*/
.sidebar .accordion-item {
  background-color: var(--color-links);
}

.sidebar .accordion-collapse {
  padding: 0;
  margin: 0;
  background-color: var(--color-links);
}

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

.sidebar .sidebar-info i{
  width: 1.3rem;
}

.sidebar .sidebar-info button {
  color: white;
  background: none;
  border: 0;
  padding: 15px 0 0 0;
  text-align: start;
}

.sidebar .sidebar-info button:hover {
  text-decoration:underline;
}

/*--------------------------------------------------------------
# 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: "";
  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;
  }
}

/*--------------------------------------------------------------
# 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 {
  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 {
  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;
}

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

section.posts {
  padding: 4rem 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: 4rem 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 {
  margin-top: 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;
}

.single-post a:hover {
  text-decoration: underline;
}

.breadcrumb {
  margin-bottom: 35px;
}

.breadcrumb a {
  text-decoration: none;
}

/* 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;
}

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

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

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

.services-center .list-group-item a,
.services-center-mobile .list-group-item a {
  text-decoration: none;
  color: var(--color-primary-dark);
  display: block;
  padding: 15px;
}

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

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

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

/*--------------------------------------------------------------
# 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: 400;
  margin: 2rem 0 0 0;
  text-align: center;
}

.footer .footer-legal a {
  font-weight: bold;
  color: var(--color-primary);
}
.footer .footer-legal a:hover {
  text-decoration: underline;
}

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

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

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

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination-bullet {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
}

/*--------------------------------------------------------------
# accordion-govrn, accordion-govrn-inverse
--------------------------------------------------------------*/

.accordion-govrn .accordion-item,
.accordion-govrn-inverse .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,
.accordion-govrn-inverse .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;
}

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

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

.accordion-govrn-inverse .accordion-button h5 {
  font-weight: bold;
}

.accordion-govrn-inverse .accordion-button:after {
    order: -1;
    margin-left: 0; 
    margin-right: 0.5em;
}

/*change accordion arrow color black to white*/
.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");
}

.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");
}
/*accordion-govrn-inverse*/
.accordion-govrn-inverse .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");
}

.accordion-govrn-inverse .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");
}

.goog-te-gadget-simple {
  background-color: #FFF !important;
  border-left: 1px solid #D5D5D5 !important;
  border-top: 1px solid #D5D5D5 !important;
  border-bottom: 1px solid #D5D5D5 !important;
  border-right: 1px solid #D5D5D5 !important;

  font-size: 1rem !important;
  display: inline-block !important;
  padding: 0.5rem !important;
  
  cursor: pointer !important;
}

/*--------------------------------------------------------------
# Govrn Cookie Consent
--------------------------------------------------------------*/

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  padding: 1rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent.hiding {
  transform: translateY(100%);
}

.cookie-settings {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.cookie-settings.show {
  max-height: 300px;
}

.form-check-input:checked {
  background-color: var(--color-govrn-blue);
  border-color: var(--color-govrn-blue);
}