/*--------------------------------------------------------------
# Principal
--------------------------------------------------------------*/

:root {
  --level-1: #8dccad;
  --level-2: #f5cc7f;
  --level-3: #7b9fe0;
  --level-4: #f27c8d;
  --black: black;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  box-sizing: border-box;
}

*::selection {
  color: #ffffff;
  background: #1265adbe;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/*--------------------------------------------------------------
# Scroll
--------------------------------------------------------------*/

::-webkit-scrollbar {
  width: 13px;
  height: 11px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-track {
  background-color: #F5F5F5;

}

::-webkit-scrollbar-thumb {
  background-color: #3960B4;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Swal
--------------------------------------------------------------*/

.swal2-popup {
  max-width: 85% !important;
}

/*--------------------------------------------------------------
# Darkmode
--------------------------------------------------------------*/

.checkbox {
  position: relative;
  width: 40px;
  height: 20px;
  margin-right: 1rem;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3960B4;
  border-radius: 12px;
  transition: background-color 0.5s ease;
  cursor: pointer;
}

.checkbox::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.checkbox:checked {
  background-color: #213764;
}

.checkbox:checked::before {
  transform: translateX(19px);
}

/* .dark-mode-text {
  color: #fff !important;
}

.dark-mode-background {
  color: #fff !important;
  background: #111828 !important;
} */

/*--------------------------------------------------------------
# Mensaje de "no resultados"
--------------------------------------------------------------*/

#noResults {
  color: #263b5e;
  display: none;
}

/*--------------------------------------------------------------
# Modal Index
--------------------------------------------------------------*/

.modal-index {
  position: fixed;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 50em;
  height: min-content;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  animation: modal 2s 3s;
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-index .modal-index-title {
  color: #263b5e;
  padding: 15px 20px;
}

.modal-index .modal-index-title h1 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 !important;
}

.modal-index .modal-index-content {
  border-top: 1px solid #e0e0e0;
  padding: 2em;
  max-height: 70.2%;
  text-align: justify;
}

@keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 435px) {
  .modal-index .modal-index-content .texto {
    font-size: 13px !important;
  }
}

/*--------------------------------------------------------------
# Modal Autoridades
--------------------------------------------------------------*/

.modal-secondary {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 70em;
  height: min-content;
  max-width: 90%;
  max-height: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-secondary .modal-secondary-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-secondary .modal-secondary-title h1 {
  color: #263b5e;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-secondary .modal-secondary-title span {
  color: #263b5e;
  font-size: 20px;
  font-weight: 500;
}

.modal-secondary .modal-secondary-content span {
  color: #263b5e;
  font-size: 16px;
  font-weight: 500;
}

.modal-secondary .modal-secondary-content {
  padding: 1em 2em;
  height: 100%;
  overflow-x: hidden;
}

.modal-secondary .modal-secondary-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  width: 100%;
}

.modal-secondary .modal-secondary-content .texto {
  text-align: justify;
}

.modal-secondary .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 777px) {
  .modal-secondary .modal-secondary-content {
    overflow: scroll;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .modal-secondary .modal-secondary-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-secondary .modal-secondary-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-secondary {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-secondary .modal-secondary-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-secondary .modal-secondary-title h1,
  .modal-secondary .modal-secondary-title span {
    font-size: 15px !important;
  }

  .modal-secondary .modal-secondary-content .texto {
    font-size: 13px !important;
  }
}

/*--------------------------------------------------------------
# Modal Gerencia
--------------------------------------------------------------*/

.modal-third {
  position: fixed;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 61em;
  height: min-content;
  min-height: min-content;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal3 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-third .modal-third-title {
  padding: 5px 0px 5px 10px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-third .modal-third-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-third .modal-third-title2 {
  padding: 5px 10px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-third .modal-third-title2 h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-third .modal-third-content {
  padding: 0px 20px 0px 18px;
  height: min-content;
  max-height: 258px;
  overflow-x: hidden;
}

.modal-third .modal-third-content .texto {
  font-size: 16px;
  text-align: justify;
}

.modal-third .modal-third-content2 {
  padding: 10px 25px;
}

.modal-third .modal-third-content2 table tr td h5 {
  margin: 10px;
  color: #263b5e;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modal-third .modal-third-content2 table tr td img {
  width: 220px;
}

.modal-third .modal-third-content2 table tr td:first-child img {
  margin-left: 0px;
}

@keyframes modal3 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .modal-third .modal-third-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-third .modal-third-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-third {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-third {
    height: 39em;
  }

  .modal-third .modal-third-content {
    padding: 0px 15px 0px 15px;
    height: 250px;
    max-height: 250px;
  }

  .modal-third .modal-third-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-third .modal-third-title,
  .modal-third .modal-third-title2 {
    padding: 10px 0px 10px 10px;
  }

  .modal-third .modal-third-title h1,
  .modal-third .modal-third-title2 h1 {
    font-size: 15px !important;
  }

  .modal-third .modal-third-content .texto {
    font-size: 13px !important;
  }

  .modal-third .modal-third-content2 table tr td h5 {
    font-size: 11px;
  }
}

.product-wap:hover .product-overlay {
  visibility: visible;
  opacity: 1;
}

.product-wap .product-overlay {
  background: rgba(0, 0, 0, .2);
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

.product-wap {
  margin: 10px;
  width: 220px;
  height: 155px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.no-gerencias {
  color: #00000060 !important;
  font-weight: 400;
}

.boton-gerencia {
  background-color: #3960B4 !important;
  border-color: #3960B4 !important;
}

.boton-gerencia:hover {
  transition: .3s;
  background-color: #2d4d91 !important;
  border-color: #2d4d91 !important;
}

/*--------------------------------------------------------------
# MODAL GERENCIAS SUBMODAL 
---------------------------------------------------------------*/

.modal-octave {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 60em;
  height: min-content;
  max-width: 83%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1001;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-octave .modal-octave-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-octave .modal-octave-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-octave .modal-octave-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 500;
}

.modal-octave .modal-octave-content {
  padding: 10px 24px 10px 24px;
  height: min-content;
  max-height: 450px;
  overflow: scroll;
  overflow-x: hidden;
}

.modal-octave .modal-octave-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 15px;
  width: 100%;
}

.modal-octave .modal-octave-content .texto {
  text-align: justify;
}

.modal-octave .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 777px) {
  .modal-octave .modal-octave-content {
    overflow: scroll;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .modal-octave .modal-octave-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-octave .modal-octave-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-octave {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 767px) {
  .modal-octave .modal-octave-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 500px) {
  .modal-octave .modal-octave-content .imagen img {
    width: 80%;
  }

  .modal-octave .modal-octave-title h1,
  .modal-octave .modal-octave-title span {
    font-size: 14px !important;
  }

  .modal-octave .modal-octave-content .texto {
    font-size: 13px !important;
  }
}

/*--------------------------------------------------------------
# MODAL FUNCIONARIOS 
---------------------------------------------------------------*/

.modal-quarter {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 70em;
  height: min-content;
  max-width: 90%;
  max-height: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-quarter .modal-quarter-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-quarter .modal-quarter-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-quarter .modal-quarter-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 500;
}

.modal-quarter .modal-quarter-content {
  padding: 1em 2em;
  height: 100%;
  overflow-x: hidden;
}

.modal-quarter .modal-quarter-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  width: 100%;
}

.modal-quarter .modal-quarter-content .texto {
  text-align: justify;
}

.modal-quarter .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 777px) {
  .modal-quarter .modal-quarter-content {
    overflow: scroll;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .modal-quarter .modal-quarter-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-quarter .modal-quarter-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-quarter {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-quarter .modal-quarter-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-quarter .modal-quarter-title h1,
  .modal-quarter .modal-quarter-title span {
    font-size: 15px !important;
  }

  .modal-quarter .modal-quarter-content .texto {
    font-size: 13px !important;
  }
}

/*--------------------------------------------------------------
# MODAL ALCALDES 
---------------------------------------------------------------*/

.modal-five {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 70em;
  height: min-content;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-five .modal-five-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-five .modal-five-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-five .modal-five-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
}

.modal-five .modal-five-content {
  padding: 1em 2em;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
}

.modal-five .modal-five-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  width: 100%;
}

.modal-five .modal-five-content .texto {
  text-align: justify;
}

.modal-five .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 777px) {
  .modal-five .modal-five-content {
    overflow: scroll;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .modal-five .modal-five-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-five .modal-five-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-five {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-five .modal-five-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-five .modal-five-title h1,
  .modal-five .modal-five-title span {
    font-size: 15px !important;
  }

  .modal-five .modal-five-content .texto {
    font-size: 13px !important;
  }
}

/*--------------------------------------------------------------
# MODAL NOTICIAS 
---------------------------------------------------------------*/

.modal-six {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 70em;
  height: min-content;
  max-width: 90%;
  max-height: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-six .modal-six-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-six .modal-six-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-six .modal-six-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 500;
}

.modal-six .modal-six-content {
  padding: 1em 2em;
  max-height: 100%;
  height: 100%;
  overflow-x: hidden;
}

.modal-six .modal-six-content .imagen img {
  box-shadow: 0px 0px 20px -10px;
  border-radius: 12px;
  width: 100%;
}

.modal-six .modal-six-content .texto {
  text-align: justify;
}

.modal-six .modal-six-content #fecha,
.modal-six .modal-six-content #periodista {
  font-weight: 500 !important;
}

.modal-six .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .modal-six .modal-six-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-six .modal-six-content .imagen img {
    width: 70%;
  }
}

@media (max-width: 325px) {
  .modal-six {
    height: 38em;
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 500px) {
  .modal-six .modal-six-content {
    padding: 0.5em 1em;
  }

  .modal-six .modal-six-content .imagen img {
    width: 90%;
  }

  .modal-six .modal-six-title h1,
  .modal-six .modal-six-title span {
    font-size: 13px !important;
  }

  .modal-six .modal-six-content .texto,
  .modal-six .modal-six-content #fecha,
  .modal-six .modal-six-content #periodista {
    font-size: 13px !important;
  }
}


/*----------------------------------------------
#Modal Comunicados
------------------------------------------------*/

.modal-nine {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 35%;
  height: min-content;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1239px) {

  .modal-nine {
    width: 50%;
  }
}

@media (max-width: 651px) {

  .modal-nine {
    width: 80%;
  }
}

@media (max-width: 850px) {

  .modal-nine #Download,
  .modal-nine #closeModal,
  .modal-nine #nombres {
    font-size: 13px;
  }
}

.modal-nine .modal-nine-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-nine .modal-nine-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-nine .modal-nine-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
}

.modal-nine .modal-nine-content {
  padding: 1em 2em;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
}

.modal-nine .modal-nine-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  width: 100%;
}

.modal-nine .modal-nine-content .texto {
  text-align: justify;
}

.modal-nine .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 777px) {
  .modal-nine .modal-nine-content {
    overflow: scroll;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .modal-nine .modal-nine-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-nine .modal-nine-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-nine {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-nine .modal-nine-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-nine .modal-nine-title h1,
  .modal-nine .modal-nine-title span {
    font-size: 15px !important;
  }

  .modal-nine .modal-nine-content .texto {
    font-size: 13px !important;
  }
}







/*----------------------------------------------
#Modal TURISMO
------------------------------------------------*/

.modal-eleven {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 70em;
  height: min-content;
  max-width: 90%;
  max-height: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-eleven .modal-eleven-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-eleven .modal-eleven-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-eleven .modal-eleven-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
}

.modal-eleven .modal-eleven-content {
  padding: 1em 2em;
  height: 100%;
  overflow-x: hidden;
}

.modal-eleven .modal-eleven-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  width: 100%;
}

.modal-eleven .modal-eleven-content .texto {
  text-align: justify;
}

.modal-eleven .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .modal-eleven .modal-eleven-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-eleven .modal-eleven-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-eleven {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-eleven .modal-eleven-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-eleven .modal-eleven-title h1,
  .modal-eleven .modal-eleven span {
    font-size: 15px !important;
  }

  .modal-eleven .modal-eleven-content .texto {
    font-size: 13px !important;
  }
}



/*----------------------------------------------
#Modal Gastronomia
------------------------------------------------*/

.modal-twelven {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 70em;
  height: min-content;
  max-width: 90%;
  max-height: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-twelven .modal-twelven-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-twelven .modal-twelven-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-twelven .modal-twelven-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
}

.modal-twelven .modal-twelven-content {
  padding: 1em 2em;
  height: 100%;
  overflow-x: hidden;
}

.modal-twelven .modal-twelven-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  width: 100%;
}

.modal-twelven .modal-twelven-content .texto {
  text-align: justify;
}

.modal-twelven .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .modal-twelven .modal-twelven-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-twelven .modal-twelven-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-twelven {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-twelven .modal-twelven-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-twelven .modal-twelven-title h1,
  .modal-twelven .modal-twelven span {
    font-size: 15px !important;
  }

  .modal-twelven .modal-twelven-content .texto {
    font-size: 13px !important;
  }
}



/*----------------------------------------------
#Modal Documentos
------------------------------------------------*/

.modal-then {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 35%;
  height: min-content;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1239px) {

  .modal-then {
    width: 50%;
  }
}

@media (max-width: 651px) {

  .modal-then {
    width: 80%;
  }
}

@media (max-width: 850px) {

  .modal-then #Download,
  .modal-then #closeModal,
  .modal-then #nombres {
    font-size: 13px;
  }
}

.modal-then .modal-then-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-then .modal-then-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-then .modal-then-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
}

.modal-then .modal-then-content {
  padding: 1em 2em;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
}

.modal-then .modal-then-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  width: 100%;
}

.modal-then .modal-then-content .texto {
  text-align: justify;
}

.modal-then .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 777px) {
  .modal-then .modal-then-content {
    overflow: scroll;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .modal-then .modal-then-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-then .modal-then-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-then {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-then .modal-then-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-then .modal-then-title h1,
  .modal-then .modal-then-title span {
    font-size: 15px !important;
  }

  .modal-then .modal-then-content .texto {
    font-size: 13px !important;
  }
}













/*----------------------------------------------
#Modal Documentos De Instrumento De Gestion
------------------------------------------------*/

.modal-tween {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 35%;
  height: min-content;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1239px) {

  .modal-tween {
    width: 50%;
  }
}

@media (max-width: 651px) {

  .modal-tween {
    width: 80%;
  }
}

@media (max-width: 850px) {

  .modal-tween #Download,
  .modal-tween #closeModal,
  .modal-tween #nombres {
    font-size: 13px;
  }
}

.modal-tween .modal-tween-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-tween .modal-tween-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-tween .modal-tween-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
}

.modal-tween .modal-tween-content {
  padding: 1em 2em;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
}

.modal-tween .modal-tween-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  width: 100%;
}

.modal-tween .modal-tween-content .texto {
  text-align: justify;
}

.modal-tween .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 777px) {
  .modal-tween .modal-tween-content {
    overflow: scroll;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .modal-tween .modal-tween-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-tween .modal-tween-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-tween {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-tween .modal-tween-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-tween .modal-tween-title h1,
  .modal-tween .modal-tween-title span {
    font-size: 15px !important;
  }

  .modal-tween .modal-tween-content .texto {
    font-size: 13px !important;
  }
}




/*----------------------------------------------
#Modal Documentos De Informe Gestion Normativo
------------------------------------------------*/

.modal-twentyone {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 35%;
  height: min-content;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1239px) {

  .modal-twentyone {
    width: 50%;
  }
}

@media (max-width: 651px) {

  .modal-twentyone {
    width: 80%;
  }
}

@media (max-width: 850px) {

  .modal-twentyone #Download,
  .modal-twentyone #closeModal,
  .modal-twentyone #nombres {
    font-size: 13px;
  }
}

.modal-twentyone .modal-twentyone-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-twentyone .modal-twentyone-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-twentyone .modal-twentyone-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
}

.modal-twentyone .modal-twentyone-content {
  padding: 1em 2em;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
}

.modal-twentyone .modal-twentyone-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  width: 100%;
}

.modal-twentyone .modal-twentyone-content .texto {
  text-align: justify;
}

.modal-twentyone .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 777px) {
  .modal-twentyone .modal-twentyone-content {
    overflow: scroll;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .modal-twentyone .modal-twentyone-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-twentyone .modal-twentyone-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-twentyone {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-twentyone .modal-twentyone-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-twentyone .modal-twentyone-title h1,
  .modal-twentyone .modal-twentyone-title span {
    font-size: 15px !important;
  }

  .modal-twentyone .modal-twentyone-content .texto {
    font-size: 13px !important;
  }
}


/*----------------------------------------------
#Modal Documentos De Informe Gestion Normativo
------------------------------------------------*/

.modal-twentytwo {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 35%;
  height: min-content;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1239px) {

  .modal-twentytwo {
    width: 50%;
  }
}

@media (max-width: 651px) {

  .modal-twentytwo {
    width: 80%;
  }
}

@media (max-width: 850px) {

  .modal-twentytwo #Download,
  .modal-twentytwo #closeModal,
  .modal-twentytwo #nombres {
    font-size: 13px;
  }
}

.modal-twentytwo .modal-twentytwo-title {
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-twentytwo .modal-twentytwo-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-twentytwo .modal-twentytwo-title span {
  color: #263b5e;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
}

.modal-twentyone .modal-twentyone-content {
  padding: 1em 2em;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
}

.modal-twentytwo .modal-twentytwo-content .imagen img {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  width: 100%;
}

.modal-twentytwo .modal-twentytwo-content .texto {
  text-align: justify;
}

.modal-twentytwo .modal-footer {
  padding: 10px 30px;
}

@keyframes modal2 {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 777px) {
  .modal-twentytwo .modal-twentytwo-content {
    overflow: scroll;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .modal-twentytwo .modal-twentytwo-content .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-twentytwo .modal-twentytwo-content .imagen img {
    width: 50%;
  }
}

@media (max-width: 325px) {
  .modal-twentyone {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 435px) {
  .modal-twentytwo .modal-twentyone-content .imagen img {
    border-radius: 15px;
    width: 70%;
  }

  .modal-twentytwo .modal-twentytwo-title h1,
  .modal-twentytwo  .modal-twentytwo-title span {
    font-size: 15px !important;
  }

  .modal-twentytwo .modal-twentytwo-content .texto {
    font-size: 13px !important;
  }
}


/*--------------------------------------------------------------
# Contenedor general
--------------------------------------------------------------*/

#contenedor {
  animation: trasparencia 2s 3s;
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}

#contenedor2 {
  /* animation: trasparencia 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}

#contenedor3 {
  /* animation: trasparencia 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}

#contenedor4 {
  /* animation: trasparencia 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}

#contenedor5 {
  /* animation: trasparencia 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}

#contenedor6 {
  /* animation: trasparencia 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}

#contenedor7 {
  /* animation: trasparencia 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
}

#contenedor8 {
  /* animation: trasparencia 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
}

#contenedor9 {
  /* animation: trasparencia 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
}

#contenedor10 {
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}

@keyframes trasparencia {
  100% {
    visibility: visible;
    opacity: 0.5;
  }
}

#contenedor11{
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}

#contenedor111{
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 1001;
}

#contenedor12 {
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}

#contenedor13 {
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}



#contenedor20{
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}
#contenedor21{
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}
#contenedor22{
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 600;
}

/*--------------------------------------------------------------
# Alertas de validación de formularios
--------------------------------------------------------------*/

.alert {
  display: block;
  padding: 12px 20px;
  background: #f8d7da;
  color: #721c24;
  margin-bottom: 10px;
  border: 1px olid #f5c6cb;
}

/*--------------------------------------------------------------
# navnar
--------------------------------------------------------------*/

@media (max-width: 1440px) {
  .navbar a {
    font-size: 12px;
  }
}

@media (max-width: 1146px) {

  .navbar .navbar-brand,
  .navbar .logo {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar-nav {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .navbar a {
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Banner principal
--------------------------------------------------------------*/

.banner-principal img,
.banner-principal-desenfoque img {
  width: 100%;
  height: auto;
}

@supports(object-fit: cover) {

  .banner-principal img,
  .banner-principal-desenfoque img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.banner-principal {
  background-image: url(../img/Fondos.jpg);
  background-size: cover;
  background-position: center center;
  height: 550px;
  position: relative;
  margin-bottom: 2rem;
}

.banner-principal-desenfoque {
  background-image: url(../img/Desenfocado.jpg);
  background-size: cover;
  background-position: center center;
  height: 550px;
  position: relative;
  margin-bottom: 2rem;
}

.banner-principal-consejo {
  background-image: url(../img/consejo.jpg);
  background-size: cover;
  background-position: center center;
  height: 550px;
  position: relative;
  margin-bottom: 2rem;
}

.banner-principal-desenfoque .titulo {
  font-size: 5rem;
  font-weight: 700 !important;
}

.banner-principal-consejo .titulo {
  font-size: 5rem;
  font-weight: 700 !important;
}

.banner-principal-desenfoque .subtitulo i {
  font-size: 25px;
}

.banner-principal-consejo .subtitulo i {
  font-size: 25px;
}

@media (max-width: 991px) {
  .banner-principal-desenfoque .titulo {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .banner-principal-desenfoque .titulo {
    font-size: 2.5rem;
  }
}

@media (max-width: 575px) {
  .banner-principal-consejo .titulo {
    font-size: 2.5rem;
  }
}

/*--------------------------------------------------------------
# general
--------------------------------------------------------------*/

.subtitulo h6,
.subtitulo h5,
.subtitulo h4,
.subtitulo h3,
.subtitulo h2,
.subtitulo h1 {
  color: #263b5e;
}

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

hr {
  border-top: 1px solid #000d581d;
  height: 2px;
}

@media (max-width: 372px) {
  .redes {
    display: none;
  }

  .topbar {
    display: none;
  }
}

@media (max-width: 325px) {
  .secciones {
    display: none !important;
  }
}

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

.new_footer_area {
  background: #fbfbfd;
}


.new_footer_top {
  padding: 60px 0px 270px;
  position: relative;
  overflow-x: hidden;
}

.new_footer_area .footer_bottom {
  padding-top: 5px;
  padding-bottom: 40px;
}

.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
  padding: 0px 0px;
}

.new_footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}

.btn_get_two:hover {
  background: transparent;
  color: #3960B4;
}

.btn_get:hover {
  color: #fff;
  background: #3960B4;
  border-color: #3960B4;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  transition: 0.3s;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: #0e25a9;
  font-weight: 400;
}

.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}

.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}

.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}

.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.ti-facebook:before {
  content: "\e741";
}

.ti-twitter-alt:before {
  content: "\e74b";
}

.ti-vimeo-alt:before {
  content: "\e74a";
}

.ti-pinterest:before {
  content: "\e731";
}

.btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #3960B4;
  border-color: #3960B4;
  color: #fff;
}

.btn_get_two:hover {
  background: transparent;
  color: #3960B4;
}

.new_footer_top .f_social_icon a:hover {
  background: #3960B4;
  border-color: #3960B4;
  color: white;
}

.new_footer_top .f_social_icon a+a {
  margin-left: 4px;
}

.new_footer_top .f-title {
  margin-top: 30px;
  margin-bottom: 30px;
  color: #263b5e;
}

.f_600 {
  font-weight: 600;
}

.f_size_18 {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #4b505e;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  color: #6a7695;
}


.new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
  width: 100%;
  height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
  width: 330px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  -webkit-animation: myfirst 22s linear infinite;
  animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}

@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

/*--------------------------------------------------------------
# SECCIÓN: NOSOTROS - ¿Quienes somos?
--------------------------------------------------------------*/

.about .icon-boxes h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
  transition: 0.3s;
}

.about .icon-boxes h3:hover {
  color: #1977cc;
}

.about .icon-boxes p {
  font-size: 14px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #8dc2f1;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #1977cc;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #1977cc;
  border-color: #1977cc;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box h3 {
  margin-left: 85px;
  margin-bottom: 15px;
}

.about .icon-box h3 {
  color: #2c4964;
  transition: 0.3s;
}

.about .icon-box h3:hover {
  color: #1977cc;
}

.about .icon-box .description {
  margin-left: 85px;
  font-size: 14px;
}

.about .video-box {
  background: url("/img/banner-1.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
  box-shadow: 0px 0px 25px -10px;
}


@media (max-width: 991px) {
  .about .icon-boxes h3 {
    margin-top: 15px;
  }
}



/*******GALLERIA VIDEO*****/

.vi {
  width: 100%;
  height: 115vh;
  background: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
  position: relative;
  padding: 0 5%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  object-fit: cover;
}

@media(max-aspect-ratio:16/9) {
  .back-video {
    width: auto;
    height: 100%;
  }
}

.con {
  text-align: center;
}

.con h1 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}

.cont a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  border: 2px solid #fff;
  padding: 14px 70px;
  border-radius: 50px;
  margin-top: 20px;
}

/*--------------------------------------------------------------
# SECCIÓN: NOSOTROS - Objetivos
--------------------------------------------------------------*/

.objetivos {
  overflow: hidden;
}

.objetivos .nav-tabs {
  border: 0;
}

.objetivos .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #2c4964;
  border-radius: 0;
  border-right: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}

.objetivos .nav-link:hover {
  color: #1977cc;
}

.objetivos .nav-link.active {
  color: #1977cc;
  border-color: #1977cc;
}

.objetivos .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.objetivos .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c4964;
}

.objetivos .details p {
  font-size: 14px;
  color: #777777;
}

.objetivos .details p:last-child {
  margin-bottom: 0;
}

.objetivos img {
  box-shadow: 0px 0px 20px -5px;
}

@media (max-width: 991px) {
  .nav-item:last-child {
    margin-bottom: 20px;
  }

  .objetivos .nav-link.active {
    background: #1977cc;
  }

  .objetivos img {
    width: 50%;
  }

  .objetivos .details h3 {
    margin-top: 35px;
  }
}

@media (max-width:450px) {
  .objetivos img {
    width: 70%;
  }
}

/*--------------------------------------------------------------
# SECCIÓN: CONTACTO - Contacto
--------------------------------------------------------------*/

.contact .contenido {
  padding: 20px;
  padding-left: 150px;
  padding-right: 150px;
  border-radius: 20px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.contact .contenido:hover {
  box-shadow: 0px 0px 15px -5px;
}

.contact .m h1 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  color: #000;
}

.contact .inf {
  padding-left: 10px;
}

.contact .inf .col {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  flex-wrap: nowrap;
}

.contact .form {
  width: 100%;
  margin-bottom: 15px;
  padding: 13px 10px;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-weight: 500;
  font-size: 13px;
  color: #536387;
  outline: none;
  resize: none;
  transition: 0.3s;
}

.form::placeholder {
  color: rgba(83, 99, 135, 0.5) !important;
}

.contact .inf:hover {
  box-shadow: 0px 8px 8px rgba(0, 0, 0, .4);
}

.contact .formulario textarea {
  max-width: 100%;
  min-width: 100%;
  min-height: 150px;
  max-height: 200px;
}

.contact .formulario input[type='text']:focus,
.contact .formulario textarea:focus {
  border-color: #6a64f1 !important;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05) !important;
}

@media (max-width: 767px) {
  .contact .subtitulo h1 {
    text-align: left;
    padding-bottom: 10px !important;
  }
}

.contact .contact-img {
  background: url("/img/banner-1.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
  box-shadow: 0px 0px 25px -10px;
}

.contact .contenido-card {
  text-align: center;
  font-size: 16px;
  padding: 10px;
  height: 45px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  background: #3960B4;
  border: 1px solid #3960B4;
  border-radius: 4px;
  transition: 0.4s;
}

.contact .contenido-card:hover {
  background: #fff;
  color: #3960B4;
}

/*--------------------------------------------------------------
# SECCIÓN: CONTACTO - Ubicación
--------------------------------------------------------------*/

.ubicacion .info {
  width: 100%;
  background: #fff;
}

.ubicacion .info i {
  font-size: 20px;
  color: #1977cc;
  float: left;
  width: 44px;
  height: 44px;
  background: #d6e9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.ubicacion .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c4964;
}

.ubicacion .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #1977cc;
}

.ubicacion .info a {
  color: #1977cc;
  text-decoration: none;
}

.ubicacion .info .email,
.ubicacion .info .phone {
  margin-top: 40px;
}

.ubicacion .info .email:hover i,
.ubicacion .info .address:hover i,
.ubicacion .info .phone:hover i {
  background: #1977cc !important;
  color: #fff !important;
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

.aviso-cookies {
  display: none;
  background: #fff;
  padding: 20px;
  width: calc(100% - 40px);
  max-width: 300px;
  line-height: 150%;
  border-radius: 12px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  padding-top: 60px;
  box-shadow: 0px 2px 20px 10px rgba(222, 222, 222, .25);
  text-align: center;
}

.aviso-cookies.activo {
  display: block;
}

.aviso-cookies .galleta {
  max-width: 100px;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo {
  margin-bottom: 15px;
}

.aviso-cookies .boton {
  width: 100%;
  background: #595959;
  border: none;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  padding: 15px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease all;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
}

.aviso-cookies .boton:hover {
  background: #000;
}

.aviso-cookies .enlace {
  color: #4DBFFF;
  text-decoration: none;
  font-size: 14px;
}

.aviso-cookies .enlace:hover {
  text-decoration: underline;
}

.fondo-aviso-cookies {
  display: none;
  background: rgba(0, 0, 0, .20);
  position: fixed;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.fondo-aviso-cookies.activo {
  display: block;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  background: #1977cc;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #298ce5;
  color: #fff;
}

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

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# SECCIÓN: MUNICIPIO - Directorios
--------------------------------------------------------------*/

table.table-bordered.dataTable th {
  border-top-width: 0;
  border-bottom-width: 1px;
}

table.table-bordered.dataTable td {
  color: #717171;
}

.directorios .tabla {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 12px;
  padding: 20px;
}

.directorios table thead {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

.directorios table thead tr {
  font-size: 18px;
  color: #2c4964;
  transition: 0.3s;
  border-radius: 20px;
}

.directorios table thead tr th {
  transition: 0.3s;
  border-bottom-width: none !important;
}

.directorios table thead tr th:hover {
  color: #1977cc;
}

.directorios table tbody tr {
  font-size: 14px;
  color: #2c4964;
  transition: 0.5s;
}

.directorios table tbody tr:hover {
  background-color: #1979cc23;
  color: black;
}

/*--------------------------------------------------------------
# SECCIÓN: MUNICIPIO - Nuestro Equipo
--------------------------------------------------------------*/

.equipo .thumb-container-gestion img {
  border-radius: 20px;
  width: 100%;
  height: 340px !important;
  object-fit: cover;
  overflow: hidden;
}

@media (max-width: 767px) {
  .equipo .thumb-container-gestion img {
    width: 100% !important;
    height: auto !important;
  }
}

.equipo {
  border: 1px solid #eee;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.equipo:hover {
  box-shadow: 0px 0px 15px -3px;
}

.servicios a,
.agenda a {
  color: #3960b4;
  font-weight: 600;
  font-size: 30px;
}

.equipo img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.equipo {
  padding: 30px;
  text-align: center;
}

.equipo .thumb-container {
  position: relative;
}

.equipo .thumb-container img {
  border-radius: 20px;
}

.equipo .thumb-container .hover-effect {
  position: absolute;
  background-color: #219e8bb5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
}

.equipo .thumb-container .hover-effect .hover-content {
  position: absolute;
  display: inline-block;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.equipo:hover .hover-effect {
  visibility: visible;
  opacity: 1;
}

.equipo h4 {
  font-size: 17px;
  color: #263b5e;
  margin-bottom: 8px;
}

.equipo span {
  display: block;
  font-size: 13px;
  color: #3960B4;
  font-weight: 600;
  margin-bottom: 20px;
}

.equipo .contenido-card {
  display: inline-block;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #3960B4;
  border: 1px solid #3960B4;
  border-radius: 4px;
  transition: all 400ms ease;
  margin-bottom: 5px;
  cursor: pointer;
}

.equipo .contenido-card:hover {
  background: #3960B4;
  color: #fff;
}

.ver-mas {
  padding: 30px;
  text-align: center;
}

.ver-mas h4 {
  font-size: 17px;
  color: #263b5e;
  margin-bottom: 8px;
}

.ver-mas span {
  display: block;
  font-size: 13px;
  color: #3960B4;
  font-weight: 600;
  margin-bottom: 20px;
}

.ver-mas .contenido-card {
  display: inline-block;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #3960B4;
  border: 1px solid #3960B4;
  border-radius: 4px;
  transition: all 400ms ease;
  margin-bottom: 5px;
  cursor: pointer;
}

.ver-mas .contenido-card:hover {
  background: #3960B4;
  color: #fff;
}

/*--------------------------------------------------------------
# SECCIÓN: MUNICIPIO - Gerencias
--------------------------------------------------------------*/

.gerencias {
  align-items: flex-end;
  border: 1px solid #eee;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.gerencias:hover {
  box-shadow: 0px 0px 15px -3px;
}

.servicios a {
  color: #3960b4;
  font-weight: 600;
  font-size: 30px;
}

.gerencias img {
  width: 100%;
  overflow: hidden;
}

.gerencias .down-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.gerencias .down-content p {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin: 10px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gerencias .thumb-container {
  position: relative;
}

.gerencias .thumb-container .hover-effect {
  position: absolute;
  background-color: #219e8bb5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
}

.gerencias .thumb-container .hover-effect .hover-content {
  position: absolute;
  display: inline-block;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.gerencias:hover .hover-effect {
  visibility: visible;
  opacity: 1;
}

.gerencias .down-content h4 {
  font-size: 20px;
  color: #263b5e;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gerencias .down-content span {
  display: block;
  font-size: 13px;
  color: #3960B4;
  font-weight: 600;
  margin-bottom: 20px;
}

.gerencias .down-content a {
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #3960B4;
  border: 2px solid #3960B4;
  border-radius: 4px;
  transition: all 400ms ease;
  margin-bottom: 5px;
  font-weight: 600;
}

.gerencias .down-content a:hover {
  background: #3960B4;
  color: #fff;
  cursor: pointer;
}

/*--------------------------------------------------------------
# SECCIÓN: MUNICIPIO - Funcionarios
--------------------------------------------------------------*/

.buscador {
  border-radius: 5px;
  padding: 13px 10px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-weight: 500;
  font-size: 15px;
  color: #536387;
  outline: none;
  resize: none;
  transition: 0.3s;
}

.buscador::placeholder {
  color: rgba(83, 99, 135, 0.5) !important;
}

.buscador:focus {
  border-color: #6a64f1 !important;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.funcionarios img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

@supports(object-fit: cover) {
  .funcionarios img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.funcionarios {
  border: 1px solid #eee;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.funcionarios:hover {
  box-shadow: 0px 0px 15px -3px;
}

.servicios a {
  color: #3960b4;
  font-weight: 600;
  font-size: 30px;
}

.funcionarios img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.funcionarios .down-content {
  padding: 30px;
  text-align: right;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.funcionarios .down-content p {
  margin-top: 20px;
  font-size: 12px;
}

.funcionarios .thumb-container {
  position: relative;
}

.funcionarios .thumb-container img {
  border-radius: 20px;
}

.funcionarios .thumb-container .hover-effect {
  position: absolute;
  background-color: #219e8bb5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
}

.funcionarios .thumb-container .hover-effect .hover-content {
  position: absolute;
  display: inline-block;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.funcionarios:hover .hover-effect {
  visibility: visible;
  opacity: 1;
}

.funcionarios .down-content h4 {
  font-size: 20px;
  color: #263b5e;
  margin-bottom: 8px;
}

.funcionarios .down-content span {
  display: block;
  font-size: 13px;
  color: #3960B4;
  font-weight: 600;
  margin-bottom: 20px;
}


.funcionarios .down-content a {
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #3960B4;
  border: 2px solid #3960B4;
  border-radius: 4px;
  transition: all 400ms ease;
  margin-bottom: 5px;
  font-weight: 600;
}

.funcionarios .down-content a:hover {
  background: #3960B4;
  color: #fff;
  cursor: pointer;
}

.funcionarios .descripcion {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin: 5px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*--------------------------------------------------------------
# SECCIÓN: MUNICIPIO - Alcaldes
--------------------------------------------------------------*/

.alcaldes {
  border: 1px solid #eee;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.alcaldes:hover {
  box-shadow: 0px 0px 15px -3px;
}

.servicios a {
  color: #3960b4;
  font-weight: 600;
  font-size: 30px;
}

.alcaldes img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.alcaldes .down-content {
  padding: 30px;
  text-align: center;
}

.alcaldes .thumb-container {
  position: relative;
}

.alcaldes .thumb-container .hover-effect {
  position: absolute;
  background-color: #219e8bb5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
}

.alcaldes .thumb-container .hover-effect .hover-content {
  position: absolute;
  display: inline-block;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.alcaldes:hover .hover-effect {
  visibility: visible;
  opacity: 1;
}

.alcaldes .down-content h4 {
  font-size: 17px;
  color: #263b5e;
  margin-bottom: 8px;
}

.alcaldes .down-content span {
  display: block;
  font-size: 13px;
  color: #3960B4;
  font-weight: 600;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# SECCIÓN: MUNICIPIO - Consejo Municipal
--------------------------------------------------------------*/

.container-card {
  width: 100%;
  display: flex;
  max-width: 1100px;
  margin: auto;
}

.title-cards {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
  color: #7a7a7a;
}

.card {
  width: 100%;
  margin: 20px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  transition: all 400ms ease-out;
  cursor: default;
}

.card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3%);
}

.card img {
  width: 100%;
  height: 210px;
}

.card .contenido-card {
  padding: 15px;
  text-align: center;
}

.card .contenido-card h3 {
  margin-bottom: 15px;
  color: #7a7a7a;
}

.card .contenido-card p {
  line-height: 1.8;
  color: #6a6a6a;
  font-size: 14px;
  margin-bottom: 5px;
}

.card .contenido-card a {
  display: inline-block;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #2fb4cc;
  border: 1px solid #2fb4cc;
  border-radius: 4px;
  transition: all 400ms ease;
  margin-bottom: 5px;
}

.card .contenido-card a:hover {
  background: #2fb4cc;
  color: #fff;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .container-card {
    flex-wrap: wrap;
  }

  .card {
    margin: 15px;
  }
}

/*--------------------------------------------------------------
# SECCIÓN: SERVICIOS - Buzón de sugerencias
--------------------------------------------------------------*/

.sugerencias img {
  width: 100%;
  border-radius: 20px;
}

.sugerencias .formbold-mb-3 {
  margin-bottom: 15px;
}

.sugerencias .formbold-img {
  display: block;
  margin: 0 auto 45px;
}

.sugerencias .formbold-input-wrapp>div {
  display: flex;
  gap: 20px;
}

.sugerencias .formbold-input-flex {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.sugerencias .formbold-form-input {
  padding: 13px 10px;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-weight: 500;
  font-size: 13px;
  color: #536387;
  outline: none;
  resize: none;
  transition: 0.3s;
}

.sugerencias .formbold-form-input::placeholder,
.sugerencias .formbold-form-input[type='date']::-webkit-datetime-edit-text,
.sugerencias .formbold-form-input[type='date']::-webkit-datetime-edit-month-field,
.sugerencias .formbold-form-input[type='date']::-webkit-datetime-edit-day-field,
.sugerencias .formbold-form-input[type='date']::-webkit-datetime-edit-year-field {
  color: rgba(83, 99, 135, 0.5) !important;
}

select.formbold-form-input {
  padding: 10px 10px !important;
}

.sugerencias .formbold-form-input:focus {
  border-color: #6a64f1 !important;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.sugerencias .formbold-form-label {
  color: #07074D;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.sugerencias .formbold-form-file-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sugerencias .formbold-form-file-flex .sugerencias .formbold-form-label {
  margin-bottom: 0;
}

.sugerencias .formbold-form-file {
  font-size: 14px;
  line-height: 24px;
  color: #536387;
}

.sugerencias .formbold-form-file::-webkit-file-upload-button {
  display: none;
}

.sugerencias .formbold-form-file:before {
  content: 'Seleccionar archivo';
  display: inline-block;
  background: #EEEEEE;
  border: 0.5px solid #FBFBFB;
  box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 7px 12px;
  outline: none;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  color: #637381;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  margin-right: 10px;
}

.sugerencias .formbold-btn {
  text-align: center;
  width: 100%;
  font-size: 16px;
  padding: 14px 25px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 25px;
  color: #fff;
  background: #3960B4;
  border: 1px solid #3960B4;
  border-radius: 4px;
  transition: 0.4s;
}

.sugerencias .formbold-btn:hover {
  background: #fff;
  color: #3960B4;
}

.sugerencias .formbold-w-45 {
  width: 45%;
}

/*--------------------------------------------------------------
# SECCIÓN: SERVICIOS - Buzón de tramites
--------------------------------------------------------------*/

.tramites img {
  width: 100%;
  border-radius: 20px;
}

.tramites .formbold-mb-3 {
  margin-bottom: 15px;
}

.tramites .formbold-img {
  display: block;
  margin: 0 auto 45px;
}

.tramites .formbold-input-wrapp>div {
  display: flex;
  gap: 20px;
}

.tramites .formbold-input-flex {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.tramites .formbold-form-input {
  padding: 13px 10px;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-weight: 500;
  font-size: 13px;
  color: #536387;
  outline: none;
  resize: none;
  transition: 0.3s;
}

.tramites .formbold-form-input::placeholder,
.tramites .formbold-form-input[type='date']::-webkit-datetime-edit-text,
.tramites .formbold-form-input[type='date']::-webkit-datetime-edit-month-field,
.tramites .formbold-form-input[type='date']::-webkit-datetime-edit-day-field,
.tramites .formbold-form-input[type='date']::-webkit-datetime-edit-year-field {
  color: rgba(83, 99, 135, 0.5) !important;
}

select.formbold-form-input {
  padding: 10px 10px !important;
}

.tramites .formbold-form-input:focus {
  border-color: #6a64f1 !important;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.tramites .formbold-form-label {
  color: #07074D;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.tramites .formbold-form-file-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tramites .formbold-form-file-flex .tramites .formbold-form-label {
  margin-bottom: 0;
}

.tramites .formbold-form-file {
  font-size: 14px;
  line-height: 24px;
  color: #536387;
}

.tramites .formbold-form-file::-webkit-file-upload-button {
  display: none;
}

.tramites .formbold-form-file:before {
  content: 'Seleccionar archivo';
  display: inline-block;
  background: #EEEEEE;
  border: 0.5px solid #FBFBFB;
  box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 7px 12px;
  outline: none;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  color: #637381;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  margin-right: 10px;
}

.tramites .formbold-btn {
  text-align: center;
  width: 100%;
  font-size: 16px;
  padding: 14px 25px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 25px;
  color: #fff;
  background: #3960B4;
  border: 1px solid #3960B4;
  border-radius: 4px;
  transition: 0.4s;
}

.tramites .formbold-btn:hover {
  background: #fff;
  color: #3960B4;
}

.tramites .formbold-w-45 {
  width: 45%;
}

@media (max-width: 372px) {
  .tramites h1 {
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# SECCIÓN: SERVICIOS - Denuncias
--------------------------------------------------------------*/

.denuncias img {
  width: 80%;
  border-radius: 20px;
}

.denuncias .formbold-mb-3 {
  margin-bottom: 15px;
}

.denuncias .formbold-img {
  display: block;
  margin: 0 auto 45px;
}

.denuncias .formbold-input-wrapp>div {
  display: flex;
  gap: 20px;
}

.denuncias .formbold-input-flex {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.denuncias .formbold-form-input {
  padding: 13px 10px;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-weight: 500;
  font-size: 13px;
  color: #536387;
  outline: none;
  resize: none;
  transition: 0.3s;
}

.denuncias .formbold-form-input::placeholder,
.denuncias .formbold-form-input[type='date']::-webkit-datetime-edit-text,
.denuncias .formbold-form-input[type='date']::-webkit-datetime-edit-month-field,
.denuncias .formbold-form-input[type='date']::-webkit-datetime-edit-day-field,
.denuncias .formbold-form-input[type='date']::-webkit-datetime-edit-year-field {
  color: rgba(83, 99, 135, 0.5) !important;
}

select.formbold-form-input {
  padding: 10px 10px !important;
}

.denuncias .formbold-form-input:focus {
  border-color: #6a64f1 !important;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.denuncias .formbold-form-label {
  color: #07074D;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.denuncias .formbold-form-file-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.denuncias .formbold-form-file-flex .denuncias .formbold-form-label {
  margin-bottom: 0;
}

.denuncias .formbold-form-file {
  font-size: 14px;
  line-height: 24px;
  color: #536387;
}

.denuncias .formbold-form-file::-webkit-file-upload-button {
  display: none;
}

.denuncias .formbold-form-file:before {
  content: 'Seleccionar archivo';
  display: inline-block;
  background: #EEEEEE;
  border: 0.5px solid #FBFBFB;
  box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 7px 12px;
  outline: none;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  color: #637381;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  margin-right: 10px;
}

.denuncias .formbold-btn {
  text-align: center;
  width: 100%;
  font-size: 16px;
  padding: 14px 25px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 25px;
  color: #fff;
  background: #3960B4;
  border: 1px solid #3960B4;
  border-radius: 4px;
  transition: 0.4s;
}

.denuncias .formbold-btn:hover {
  background: #fff;
  color: #3960B4;
}

.denuncias .formbold-w-45 {
  width: 45%;
}

@media (max-width: 372px) {
  .denuncias h1 {
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# SECCIÓN: LA CUIDAD - Turismo
--------------------------------------------------------------*/

.turismo {
  align-items: flex-end;
  border: 1px solid #eee;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.turismo:hover {
  box-shadow: 0px 0px 15px -3px;
}

.servicios a {
  color: #3960b4;
  font-weight: 600;
  font-size: 30px;
}

.turismo img {
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  overflow: hidden;
}

.turismo .down-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.turismo .down-content p {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin: 10px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.turismo .thumb-container {
  position: relative;
}

.turismo .thumb-container .hover-effect {
  position: absolute;
  background-color: #219e8bb5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
}

.turismo .thumb-container .hover-effect .hover-content {
  position: absolute;
  display: inline-block;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.turismo:hover .hover-effect {
  visibility: visible;
  opacity: 1;
}

.turismo .down-content h4 {
  font-size: 20px;
  color: #263b5e;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.turismo .down-content span {
  display: block;
  font-size: 13px;
  color: #3960B4;
  font-weight: 600;
  margin-bottom: 20px;
}

.turismo .down-content a {
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #3960B4;
  border: 2px solid #3960B4;
  border-radius: 4px;
  transition: all 400ms ease;
  margin-bottom: 5px;
  font-weight: 600;
}

.turismo .down-content a:hover {
  background: #3960B4;
  color: #fff;
  cursor: pointer;
}

/*--------------------------------------------------------------
# SECCIÓN: LA CUIDAD - Gastronomía
--------------------------------------------------------------*/

.gastronomia {
  align-items: flex-end;
  border: 1px solid #eee;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.gastronomia:hover {
  box-shadow: 0px 0px 15px -3px;
}

.servicios a {
  color: #3960b4;
  font-weight: 600;
  font-size: 30px;
}

.gastronomia img {
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  overflow: hidden;
}

.gastronomia .down-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.gastronomia .down-content p {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin: 10px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gastronomia .thumb-container {
  position: relative;
}

.gastronomia .thumb-container .hover-effect {
  position: absolute;
  background-color: #219e8bb5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
}

.gastronomia .thumb-container .hover-effect .hover-content {
  position: absolute;
  display: inline-block;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.gastronomia:hover .hover-effect {
  visibility: visible;
  opacity: 1;
}

.gastronomia .down-content h4 {
  font-size: 20px;
  color: #263b5e;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gastronomia .down-content span {
  display: block;
  font-size: 13px;
  color: #3960B4;
  font-weight: 600;
  margin-bottom: 20px;
}

.gastronomia .down-content a {
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #3960B4;
  border: 2px solid #3960B4;
  border-radius: 4px;
  transition: all 400ms ease;
  margin-bottom: 5px;
  font-weight: 600;
}

.gastronomia .down-content a:hover {
  background: #3960B4;
  color: #fff;
  cursor: pointer;
}

/***  ------ FUNDADOR ----- ***/
.test {
  height: 400px;
  width: 700px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ccc;
  border-radius: 5px;
  box-shadow: 2px 3px 5px #ccc;
}

.test .right,
.container .left {
  width: 200px;
  height: 200px;
  margin: 0;

}

.test .right img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  object-position: center;
}

.test .left .content {
  margin: 50px 10px;
  padding: 20px;
}

.test .left .content .fas {
  color: #a06b5a;
}

.test .left .content p {
  font-size: 18px;
  line-height: 1.4;
  font-family: 300;
  color: #111;
  margin-left: 20px;
}

.test .left .content {
  margin: 20px 0px;
  line-height: 1.5;
}

.test .left .content .author h2 {
  color: #a06b5a;
}

@media(max-width:1000px) {
  .test {
    width: 400px;
    min-height: 600px;
    flex-direction: column;

  }

  .test .right img {
    height: 300px;

  }

  .test .left .content {
    margin: 10px 10px;
    padding: 20px;

  }

  .container .left .content p {
    font-size: 15px;
  }
}

/*** ------  MULTI LENGUAJE  ------ ***/
.language {
  position: relative;
  width: 120px;
  z-index: 10000;
  margin-left: 40px;
  font-weight: 500;
}

.language-selected {
  display: flex;
  align-items: center;
  z-index: 10000;
  color: #fff;
  cursor: pointer;
}

.language-selected:before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-bottom: -10px;
  background-image: url(../img/español.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.language-selected-english {
  display: flex;
  align-items: center;
  z-index: 10000;
  color: #fff;
  cursor: pointer;
}

.language-selected-english:before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-bottom: -10px;
  background-image: url(../img/ingles.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.language-selected.change-br:before {
  background-image: url(../img/portugal.png);
}

.language-selected.change-en:before {
  background-image: url(../img/ingles.png);
}

.language-selected.change-es:before {
  background-image: url(../img/español.jpg);
}

.language-selected.change-de:before {
  background-image: url(../img/alemania.png);
}

.language-selected.change-fr:before {
  background-image: url(../img/francia.png);
}

.language ul {
  position: absolute;
  width: 150px;
  background-color: #fff;
  border: 1px solid #f8f8f8;
  padding: 0px !important;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.language ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
}

.language ul li a {
  display: block;
  color: #252525;
  padding: 5px 10px;
}

.language ul li:hover {
  background-color: #f8f8f8;
}

.language ul li a:before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-bottom: -10px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}

a.br:before {
  background-image: url(../img/portugal.png);
}

a.en:before {
  background-image: url(../img/ingles.png);
}

a.es:before {
  background-image: url(../img/español.jpg);
}

a.de:before {
  background-image: url(../img/alemania.png);
}

a.fr:before {
  background-image: url(../img/francia.png);
}

.language:hover ul {
  display: block;
}

@media (max-width: 550px) {

  .language,
  .contactos {
    display: none;
  }
}

/***---ESTRUCTURA ---***/
.estructura {
  background-image: url(../img/estructura.jpg);
  background-size: cover;
  background-position: center center;
  height: 3000px;
  position: relative;
  margin-bottom: 2rem;
}

/***---BANN  DE TURISMO ---***/
.slide-con {
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #4DBFFF;

}

.image-slider {
  width: 100%;
  height: 600px;
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .7s;
}

.slides-div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px 0 30px;
}

.imag {
  position: relative;
  width: 240px;
  height: 370px;
  filter: saturate(10%);
}

.button {
  position: absolute;
  width: 240px;
  height: 370px;
  transition: .5s;
  background-color: rgba(0, 0, 0, .4);
}

.button:hover {
  background-color: rgb(0, 0, 0, .2);
}

#slider-span1:target~.image-slider #img1,
#slider-span1:target~.image-slider #button-1 {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#slider-span2:target~.image-slider #img2,
#slider-span2:target~.image-slider #button-2 {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#slider-span3:target~.image-slider #img3,
#slider-span3:target~.image-slider #button-3 {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#slider-span4:target~.image-slider #img4,
#slider-span4:target~.image-slider #button-4 {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#slider-span5:target~.image-slider #img5,
#slider-span5:target~.image-slider #button-5 {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#slider-span6:target~.image-slider #img6,
#slider-span6:target~.image-slider #button-6 {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#slider-span1:target~.image-slider {
  left: 70%;
}

#slider-span1:target~.image-slider {
  left: 50%;
}

#slider-span1:target~.image-slider {
  left: 25%;
}

#slider-span1:target~.image-slider {
  left: -25%;
}

#slider-span1:target~.image-slider {
  left: -50%;
}

#slider-span1:target~.image-slider {
  left: -70%;
}

/*---AREA DE GASTRONOMIA***/

.s-c {
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;

  background: #4DBFFF
}

.i-s {
  width: 100%;
  height: 600px;
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;

}

.s-d {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px 0 30px;
}

.imag {
  position: relative;
  width: 240px;
  height: 370px;
  filter: saturate(10%);
}

.button {
  position: absolute;
  width: 240px;
  height: 370px;

  background-color: rgba(0, 0, 0, .4);
}

.button:hover {
  background-color: rgb(0, 0, 0, .2);
}



#s-p2:target~.i-s #img2,
#s-p2:target~.i-s #button-2 {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#s-p3:target~.i-s #img3,
#s-p3:target~.i-s {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#s-p4:target~.i-s #img4,
#s-p4:target~.i-s #button-4 {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#s-p5:target~.i-s #img5,
#s-p5:target~.i-s #button-5 {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#s-p6:target~.i-s #img6,
#s-p6:target~.i-s #button-6 {
  width: 380px;
  height: 585px;
  background-color: transparent;
  filter: saturate(100%);
}

#s-p1:target~.i-s {
  left: 70%;
}

#s-p1:target~.i-s {
  left: 50%;
}

#s-p1:target~.i-s {
  left: 25%;
}

#s-p1:target~.i-s {
  left: -25%;
}

#s-p1:target~.i-s {
  left: -50%;
}

#s-p1:target~.i-s {
  left: -70%;
}

/*----AREA DE VIDEO -----*/
.x {
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.x .main-video-x {
  flex: 1 1 700px;
  border-radius: 5px;
  box-shadow: 0px 0px 30px -18px;
  padding: 15px;
}

.x .main-video-x .main-video {
  margin-bottom: 7px;
  border-radius: 5px;
  width: 100%;
}

.x .main-video-x .main-vid-title {
  font-size: 20px;
  color: #263b5e;
}

.x .video-list-x {
  flex: 1 1 350px;
  height: 485px;
  max-height: 464px;
  overflow-y: scroll;
  border-radius: 5px;
  box-shadow: 0px 0px 30px -18px;
  background-color: #fff;
  padding: 15px;
}

.x .video-list-x .list {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background-color: #eee;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: .5s;
}

.x .video-list-x .list:last-child {
  margin-bottom: 0;
}

.x .video-list-x .list:hover {
  background-color: #263b5e;
}

.x .video-list-x .list:hover .list-title {
  color: #fff;
}

.x .video-list-x .list.active {
  background-color: #263b5e;
}

.x .video-list-x .list.active .list-title {
  color: #fff;
}

.x .video-list-x .list .list-video {
  width: 100px;
  border-radius: 5px;
}

.x .video-list-x .list .list-title {
  font-size: 17px;
  color: #263b5e;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width:1200px) {

  .x {
    margin: 0;
  }

}

@media (max-width:450px) {

  .x .video-list-x {
    overflow-y: scroll;
  }

  .x .main-video-x .main-vid-title {
    font-size: 15px;
    text-align: center;
  }

  .x .video-list-x .list {
    flex-flow: column;
    gap: 10px;
  }

  .x .video-list-x .list .list-video {
    width: 100%;
  }

  .x .video-list-x .list .list-title {
    font-size: 15px;
    text-align: center;
  }

}

/*--------------------------------------------------------------
# SECCIÓN: MUNICIPIO TE INFORMA - Noticias
--------------------------------------------------------------*/

.filter-item {
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.filter-item:hover {
  color: #3960B4 !important;
  transition: .3s;
}

.active-filter {
  color: #3960B4 !important;
}

.noticias {
  border: 1px solid #eee;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.noticias img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.noticias .contenido {
  padding: 20px;
}

.noticias .titulo {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #3960B4;
}

.noticias .subtitulo {
  font-size: 1.1rem;
  font-weight: 600;
  color: black;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.noticias .contenido .fecha {
  display: flex;
  font-size: 0.800rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.568);
  font-weight: 500;
  margin-top: 4px;
}

.noticias .contenido .descripcion {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin: 10px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.noticias .pie-pagina {
  padding: 0 20px 20px 20px;
  display: flex;
  justify-content: space-between;
}

.noticias .pie-pagina .imagen {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid #3960B4;
}

.noticias .pie-pagina .nombre {
  font-size: 0.82rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.noticias .pie-pagina .down-content a {
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  text-decoration: none;
  color: #3960B4;
  border: 2px solid #3960B4;
  border-radius: 4px;
  transition: all 400ms ease;
  font-weight: 600;
  text-align: center;
}

.noticias .pie-pagina .down-content a:hover {
  background: #3960B4;
  color: #fff;
  cursor: pointer;
}

/***---- NOTICIAS COMPLETAS ----***/

.post-container {
  max-width: 800px;
  margin: auto;
  width: 100%;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem !important;
}

.back-home {
  color: blue;
  font-size: 0.9rem;
}

.header-title {
  width: 90%;
  font-size: 2.6rem;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.header-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.post-content {
  margin-top: 10rem !important;
}

.sub-heading {
  font-size: 1rem;
  line-height: 1.7rem;
  margin: 1rem 0;
  text-align: justify;
}

/*--------------------------------------------------------------
# SECCIÓN: MUNICIPIO - Directorio
--------------------------------------------------------------*/

.directorio .tabla {
  box-shadow: 0px 0px 30px -18px;
  border-radius: 15px;
  padding: 20px;
}

.directorio table thead {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid #1977cc;
}

.directorio table thead tr {
  font-size: 18px;
  color: #2c4964;
  transition: 0.3s;
}

.directorio table thead tr th {
  transition: 0.3s;
}

.directorio table thead tr th:hover {
  color: #1977cc;
}

.directorio table tbody tr {
  font-size: 14px;
  color: #2c4964;
  transition: 0.5s;
}

.directorio table tbody tr:hover {
  background-color: #1979cc23;
  color: black;
}

.directorio table tbody tr td {
  padding: 12px;
  border-bottom: 1px solid #1979cc9a;
}

.directorio .pagination {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*--------------------------------------------------------------
# SECCIÓN: MUNICIPIO - Organigrama
--------------------------------------------------------------*/

.organigrama {
  padding: 25px;
  border-radius: 20px;
  height: min-content;
  box-shadow: 0px 0px 30px -22px;
}

.organigrama-video video {
  border-radius: 12px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.organigrama-video video:hover {
  box-shadow: 0px 0px 15px -3px;
}

.organigrama .seccion-imagen {
  margin: 10px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  width: 80%;
}

.organigrama .seccion-imagen .imagen {
  border-radius: 20px;
  width: 80%;
  box-shadow: 0px 0px 30px -22px;
}

.organigrama .seccion-imagen .imagen2 {
  width: 100%;
}

.organigrama .seccion-imagen .contenedor-imagen {
  background: rgba(0, 0, 0, .2);
  visibility: hidden;
  opacity: 0;
  transition: .5s;
}

.organigrama .seccion-imagen:hover .contenedor-imagen {
  visibility: visible;
  opacity: 1;
}

.boton-organigrama {
  background-color: #3960B4 !important;
  border-color: #3960B4 !important;
}

.boton-organigrama:hover {
  transition: .3s;
  background-color: #2d4d91 !important;
  border-color: #2d4d91 !important;
}

.organigrama .fecha {
  text-align: center;
  font-size: 14px;
  margin-bottom: 0px;
  color: #3960B4;
  font-weight: 600;
}

.organigrama .titulo {
  font-size: 20px;
  color: #263b5e;
  margin-bottom: 0px;
}

.organigrama .correlativo {
  font-size: 16px;
  color: #263b5e;
  margin-bottom: 0px;
  font-weight: 500 !important;
}

.organigrama .contenido {
  text-align: justify;
  font-weight: 400 !important;
}

@media (max-width: 767px) {
  .organigrama .imagen {
    width: 50%;
  }
}

.btn:focus,
.btn.focus {
  box-shadow: none !important;
}

/*--------------------------------------------------------------
# SECCIÓN: MUNICIPIO TE INFORMA - Comunicados
--------------------------------------------------------------*/

.comunicados {
  align-items: flex-end;
  border: 1px solid #eee;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.comunicados:hover {
  box-shadow: 0px 0px 15px -3px;
}

.servicios a {
  color: #3960b4;
  font-weight: 600;
  font-size: 30px;
}

.comunicados img {
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  overflow: hidden;
}

.comunicados .down-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.comunicados .down-content p {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin: 10px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.comunicados .thumb-container {
  position: relative;
}

.comunicados .thumb-container .hover-effect {
  position: absolute;
  background-color: #219e8bb5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
}

.comunicados .thumb-container .hover-effect .hover-content {
  position: absolute;
  display: inline-block;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.comunicados:hover .hover-effect {
  visibility: visible;
  opacity: 1;
}

.comunicados .down-content h4 {
  font-size: 22px;
  color: #263b5e;
  margin-bottom: 8px;
}

.comunicados .down-content span {
  display: block;
  font-size: 13px;
  color: #3960B4;
  font-weight: 600;
  margin-bottom: 20px;
}

.comunicados .down-content a {
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #3960B4;
  border: 2px solid #3960B4;
  border-radius: 4px;
  transition: all 400ms ease;
  margin-bottom: 5px;
  font-weight: 600;
}

.comunicados .down-content a:hover {
  background: #3960B4;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 767px) {
  .comunicados img {
    height: auto !important;
  }
}

/***----VIDEOCOFERENCIAS GRABADAS ---***/
.p {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.p ul {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.p ul li {
  list-style: none;
  cursor: pointer;
  margin: 10px;
}


.p ul li video {
  width: 200px;
  transition: all 0.3s;
}

.p ul li video:hover {
  transform: scale(1.1);
}

video {
  width: 100%;
  height: 100%;
}

/*COLOR DE LAS CARD*/

.c1:hover .icon {
  background: transparent;
}

.c1 .icon i {
  color: transparent;
}

.c1:hover .icon i {
  color: #fff;
}


.c2:hover .icon {
  background: transparent;
}

.c2 .icon i {
  color: transparent;
}

.c2:hover .icon i {
  color: #fff;
}


.c3:hover .icon {
  background: transparent;
}

.c3 .icon i {
  color: transparent;
}

.c3:hover .icon i {
  color: #fff;
}

/***---MESA DE PARTES---***/

.mesa video {
  border-radius: 12px;
  box-shadow: 0px 0px 30px -18px;
  transition: 0.5s;
}

.mesa video:hover {
  box-shadow: 0px 0px 15px -3px;
}

.mesa img {
  border-radius: 12px;
}

.mesa .recomendaciones {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #263b5e;
}

.col-12 {
  max-width: 100%;
}

.list-group-flush {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0;
}

.list-group-flush>.list-group-item {
  border-width: 0 0 1px;
  background-color: transparent;
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.font-weight-bold {
  font-weight: 700 ! important;
}

.badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
  transition: .15s;
}

.badge-primary {
  color: #fff;
}

.pill-list {
  vertical-align: top;
  margin-top: .25rem;
  background-color: #3960B4;
}

.badge-pill {
  padding-right: .6em;
  padding-left: .6em;
  border-radius: 10rem;
}

.list-padleft {
  padding-left: 5px;
  width: calc(100% -28px);
  display: inline-block;
}

@media (max-width: 372px) {

  .mesa h1,
  .mesas h1 {
    font-size: 25px;
  }
}

/***----  MESA DE PARTES FORM -----***/


.mesas .formbold-mb-3 {
  margin-bottom: 15px;
  text-align: center;
}

.mesas .formbold-input-wrapp>div {
  display: flex;
  gap: 20px;
  margin: 0px auto;
}

.mesas .formbold-input-flex {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.mesas .formbold-form-input {
  padding: 13px 10px;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-weight: 500;
  font-size: 13px;
  color: #536387;
  outline: none;
  resize: none;
  transition: 0.3s;
}

.mesas .formbold-form-input::placeholder,
.mesas .formbold-form-input[type='date']::-webkit-datetime-edit-text,
.mesas .formbold-form-input[type='date']::-webkit-datetime-edit-month-field,
.mesas .formbold-form-input[type='date']::-webkit-datetime-edit-day-field,
.mesas .formbold-form-input[type='date']::-webkit-datetime-edit-year-field {
  color: rgba(83, 99, 135, 0.5) !important;
}

select.formbold-form-input {
  padding: 10px 10px !important;
}

.mesas .formbold-form-input:focus {
  border-color: #6a64f1 !important;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.mesas .formbold-form-label {
  color: #07074D;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.mesas .formbold-form-file-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mesas .formbold-form-file-flex .mesas .formbold-form-label {
  margin-bottom: 0;
}

.mesas .formbold-form-file {
  font-size: 14px;
  line-height: 24px;
  color: #536387;
}

.mesas .formbold-form-file::-webkit-file-upload-button {
  display: none;
}

.mesas .formbold-form-file:before {
  content: 'Seleccionar archivo';
  display: inline-block;
  background: #EEEEEE;
  border: 0.5px solid #FBFBFB;
  box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 7px 12px;
  outline: none;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  color: #637381;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  margin-right: 10px;
}

.mesas .formbold-btn {
  text-align: center;
  width: 100%;
  font-size: 16px;
  padding: 14px 25px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 25px;
  color: #fff;
  background: #3960B4;
  border: 1px solid #3960B4;
  border-radius: 4px;
  transition: 0.4s;
}

.mesas .formbold-btn:hover {
  background: #fff;
  color: #3960B4;
}

.mesas .formbold-w-45 {
  width: 45%;
}

/***---CAPTCHA---***/

#refresh {
  position: absolute;
  width: 30px;
  height: 30px;
  margin-top: 6px;
  margin-left: 5px;
  background-color: #fff;
  border-radius: 6px;
  background-image: url('https://img.icons8.com/android/24/000000/refresh.png');
  background-position: center center;
  border: 0;
  background-repeat: no-repeat;
}

.boton-captcha {
  text-align: center;
  font-size: 16px;
  padding: 10px;
  height: 45px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  background: #3960B4;
  border: 1px solid #3960B4;
  border-radius: 4px;
  transition: 0.4s;
}

.boton-captcha:hover {
  background: transparent;
  color: #3960B4;
}

/***----BLOQUE COMUNICADPS -----***/
.w {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.q {
  flex: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px 20px;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 0 15px rgb(0, 0, 0, 0.4);
  padding: 0 auto;
  align-self: normal;

}

.q h4 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 10px 0;
}

.q .btn {
  display: inline-block;
  margin-top: auto;
  background: #0e25a9;
  color: #fff;
  text-align: center;
  color: #fff;
  padding: 0 auto;
  border-radius: 1px;


}

/***----------------------------SEARCH
--------------------------------***/
.hide {
  opacity: .3;
  margin-bottom: -64px;
}

.search {
  height: 64px;
  width: 100%;
  background-color: #3f51b5;
  position: relative;
  z-index: 0;
}

.search input {
  width: calc(100%- 180px);
  padding: 10px 15px;
  margin-right: 15px;
  font-size: 1.3rem;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 2px solid #fafafa;
  color: #fafafa;
}

.search button {
  padding: 10px 15px;
  background-color: transparent;
  border: 2px solid #fafafa;
  transition: .4s;
}

.search input::placeholder {
  color: #b2b2b2;
}

.search button:hover {
  background-color: #fafafa;
  color: #212121;
}

/***********AGENDA MUNICIPAL - CALENDAR
*************/

.padre {
  box-shadow: 0px 0px 25px -18px;
  border-radius: 20px;
  margin: 10px;
}

.agenda .contenedor {
  width: 870px;
  padding: 30px;
}

.agenda .cabecera {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agenda .cabecera .down-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.agenda .cabecera .mes {
  font-size: 20px;
  color: #263b5e;
  font-weight: 600;
  text-transform: uppercase;
}

.agenda .cabecera .down-content .botones {
  display: inline-block;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #3960B4;
  border: 1px solid #3960B4;
  border-radius: 4px;
  transition: all 400ms ease;
  margin-bottom: 5px;
  cursor: pointer;
  background-color: transparent;
}

.agenda .cabecera .down-content .botones:hover {
  background: #3960B4;
  color: #fff;
}

.agenda .semana {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #263b5e;
  font-weight: 600;
}

.agenda .calendario {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

.agenda .dias {
  width: 105.5px;
  padding: 10px;
  height: 100px;
  cursor: pointer;
  border-radius: 10px;
  background-color: white;
  margin: 5px;
  box-shadow: 0px 0px 3px #3960b471;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s;
  font-weight: 600;
  color: #263b5e;
}

.agenda .dias:hover {
  background-color: #3960B4;
  color: white;
}

.agenda .dias+#currentDay {
  background-color: orange;
}

.agenda .event {
  font-size: 10px;
  padding: 3px;
  background-color: #37bd83;
  color: white;
  border-radius: 5px;
  max-height: 55px;
  overflow: hidden;
}

.agenda .dias-none {
  cursor: default !important;
  background-color: #3960b41c !important;
  box-shadow: none !important;
}

.agenda #eventTitleInput,
.agenda #eventText,
.agenda #eventTextDetail {
  width: 100%;
  margin-bottom: 15px;
  padding: 13px 10px;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-weight: 500;
  font-size: 13px;
  color: #536387;
  outline: none;
  resize: none;
  transition: 0.3s;
}

#eventTitleInput::placeholder {
  color: rgba(83, 99, 135, 0.5) !important;
}

.agenda textarea:focus {
  border-color: #6a64f1 !important;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.agenda #eventTitleInput.error {
  border: 1px solid rgb(221, 81, 68) !important;
}

.agenda #modalBackDrop {
  /* animation: trasparencia 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}

/*--------------------------------------------------------------
# MODAL AGENDA (CREAR EVENTO)
---------------------------------------------------------------*/

.modal-crear-evento {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 22em;
  height: 18em;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-crear-evento .modal-crear-evento-title {
  padding: 5px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-crear-evento .modal-crear-evento-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-crear-evento .modal-crear-evento-content {
  padding: 0px 2em;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-crear-evento .modal-footer {
  padding: 10px 10px;
}

@media (max-width: 325px) {
  .modal-crear-evento {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 254px) {
  .modal-crear-evento {
    height: 20em;
  }

  .modal-crear-evento .modal-crear-evento-title h1 {
    font-size: 15px !important;
  }
}

/*--------------------------------------------------------------
# MODAL AGENDA (ELIMINAR EVENTO)
---------------------------------------------------------------*/

.modal-eliminar-evento {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 22em;
  height: 18em;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-eliminar-evento .modal-eliminar-evento-title {
  padding: 5px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-eliminar-evento .modal-eliminar-evento-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-eliminar-evento .modal-eliminar-evento-content {
  padding: 0px 2em;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-eliminar-evento .modal-footer {
  padding: 10px 10px;
}

@media (max-width: 325px) {
  .modal-eliminar-evento {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 254px) {
  .modal-eliminar-evento {
    height: 20em;
  }

  .modal-eliminar-evento .modal-eliminar-evento-title h1 {
    font-size: 15px !important;
  }
}

/*--------------------------------------------------------------
# MODAL AGENDA (VER DETALLE EVENTO)
---------------------------------------------------------------*/

.modal-ver-evento {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 22em;
  height: 18em;
  max-width: 90%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 1000;
  /* animation: modal2 2s 3s; */
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
}

.modal-ver-evento .modal-ver-evento-title {
  padding: 5px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-ver-evento .modal-ver-evento-title h1 {
  color: #263b5e;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.modal-ver-evento .modal-ver-evento-content {
  padding: 0px 2em;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-ver-evento .modal-footer {
  padding: 10px 10px;
}

@media (max-width: 325px) {
  .modal-ver-evento {
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 254px) {
  .modal-ver-evento {
    height: 20em;
  }

  .modal-ver-evento .modal-ver-evento-title h1 {
    font-size: 15px !important;
  }
}

/***------------------------------------ACCESIBILIDAD
-----------------------------------------------------***/
#btn-mas {
  display: none;

}

.fe {
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.ajustes a,
.btn-mas label {
  display: block;
  text-decoration: none;
  background: #3960B4;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
  transition: all 500ms ease;
}

.ajustes a:hover {
  background: #fff;
  color: #3960B4;
}

.ajustes a {
  margin-bottom: -15px;
  opacity: 0;
  visibility: hidden;
}

#btn-mas:checked~.ajustes a {
  margin-bottom: 10px;
  opacity: 1;
  visibility: visible;
}

.btn-mas label {
  cursor: pointer;
  background: #3960B4;
  font-size: 22px;
  position: left;
}

.btn-mas label:hover {
  cursor: pointer;
  background: #1977cc;
  font-size: 22px;
  position: left;
}

#btn-mas:checked~.btn-mas label {
  transform: rotate(135deg);
  font-size: 25px;
}

/*****PAGINADOR DIRECTORIOS ****/

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: .3s all;
  color: #757575 !important;
}

.page-link:hover {
  z-index: 2;
  background-color: #3960B4;
  color: #fff !important;
  text-decoration: none;
}

.page-item.active .page-link {
  z-index: 3;
  background-color: #3960B4;
  color: #fff !important;
}

.form-control {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  font-weight: 500;
  font-size: 13px;
  color: #536387;
  transition: 0.3s;
}

.form-control::placeholder {
  color: rgba(83, 99, 135, 0.5) !important;
}

.form-control:focus {
  border-color: #6a64f1 !important;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05) !important;
}


.page-link:focus,
.page-link.focus {
  box-shadow: none !important;
}

/* .dataTables_filter input:focus, input.focus {
  box-shadow: none !important;
} */

/* .form-control:focus {
  border-color: transparent !important;
} */

/****PAGINADOR DE BLOCKES AUTORIDADES, FUNCIONARIOS, GERENCIAS, NOTICIAS *****/

.paginador {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.paginador a,
.active-paginador {
  margin: 5px 5px;
  background-color: #eee;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: .3s all;
  text-align: center;
  font-weight: 600;
}

.paginador .active-paginador {
  background-color: #3960B4;
  color: #fff;
  font-weight: 600;
}

.paginador a:hover {
  background-color: #3960B4;
  color: #fff !important;
}

/***CARRITO DE COMPRAS***/
.cart {
  width: 39px;
  height: 38px;
}

.cart-products {
  position: absolute !important;
  top: 82px;
  right: -18px;
  background-color: #fff;
  padding: 0 18px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
  display: none;

  min-width: 290px;
}

.cart:hover {
  margin-bottom: 16px;
  transition-duration: .5s;
}

/*end header*/
.products {
  padding-top: 170px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.carts {
  max-width: 250px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
  padding-bottom: 34px;
  margin-bottom: 40px;
}

.carts img {
  width: 100%;
}

.carts p {
  font-family: system-ui;
  font-weight: 500;
  padding: 0 20px;
  margin-bottom: 24px;
}

.carts div p {
  position: absolute;
  top: 0;
  right: 0px;
  background-color: rgb(0, 235, 129);
  color: #fff;
  padding: 2px 7px 4px 21px;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}

.carts div {
  position: relative;
}

.carts a {
  font-family: system-ui;
  text-decoration: none;
  background: red;
  padding: 9px 23px;
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
}

.carts a:hover {
  background: #fff;
  color: red;
  border: solid 2px red;
  transition-duration: .3s;
}

/*float cart*/
.cart-products .item img {
  width: 115px;
}

.cart-products .item {
  display: flex;
  align-items: center;
  border-bottom: solid 2px red;
}

.cart-products .item .item-content {
  margin: 0 19px;
  width: 201px;
}

.cart-products .item .item-content h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  font-family: system-ui;
}

.cart-products .item .item-content h6 {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  font-family: system-ui;
}

.cart-products .item span {
  background-color: red;
  padding: 0px 5px;
  border-radius: 50%;
  color: #fff;
  font-family: system-ui;
  cursor: pointer;
}

.cart-products h3 {
  margin-bottom: 0;
}

.cart-products .item .item-content h5.cart-price {
  font-weight: 700;
}

/*stye to btn close*/
p.close-btn {
  top: -4px;
  right: 6px;
  cursor: pointer;
  color: #000;
}

/****TOOLTIP CALENDAR ****/